/* General */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box !important;
}




body {
  position: relative;

  font-family: 'Segoe UI', Monospace;

  background: #f5f5f5;

  /* Colors */
  --color-1: #fff;
  --color-2: #22a7f0;
  --color-3: #0e87c9;
  --color-4: #0b6a9d;
}
#main-container {
  max-width: 1175px;
  margin: 0 auto;
  padding-top: 15px;
  display: flex;
}

a {
  margin: 0;

  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  padding: 0;
  border: none;
  background: none;
}
ul {
  list-style-type: none;
}
input,
select,
textarea {
  outline: 0;
  border: 0;
}
input:focus,
button:focus,
textarea:focus {
  outline-width: 0;
}
textarea {
  resize: vertical;
}
/* General classes */
.styled-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 12px;
  margin: 12px;

  color: #fff;
  background-color: var(--color-2);

  font-weight: 700;
  font-size: 17px;

  border: var(--color-2) 1px solid;
  border-radius: 4px;

  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);

  transition: color 0.15s ease-in, background-color 0.15s ease-in;
}
.styled-btn:hover {
  background-color: var(--color-3);
}
.sb-red {
  background-color: #db6565 !important;
  border: #db6565 1px solid !important;
}
.sb-red:hover {
  background-color: #b52b2b !important;
}
.sb-green {
  background-color: #46c77b !important;
  border: #46c77b 1px solid !important;
}
.sb-green:hover {
  background-color: #31a25e !important;
}

/* feedback notification */
#feedback_notification {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;

  width: 500px;

  border-radius: 25px;
  overflow: hidden;
}
#feedback_notification span {
  flex-grow: 1;

  padding: 15px;

  font-size: 1.2rem;
  font-weight: 500;
}
#feedback_notification button {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;

  width: 50px;

  border-left: 2px solid rgba(56, 56, 56, 0.3);
}
#feedback_notification button:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.fn-red {
  background-color: tomato;
  color: #fff;
  border: 2px solid red;
}
.fn-green {
  background-color: green;
  color: #fff;
  border: 2px solid greenyellow;
}
.fn-yellow {
  background-color: #afbb01;
  color: #fff;
  border: 2px solid yellow;
}
