@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap");
.card {
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  background-color: white;
  padding: 1rem;
}
.card p {
  margin: 0;
}
.card h1 {
  font-size: 26px;
}
.card--lg {
  padding: 2.5rem 1.8rem;
}
.card h1, .card h2, .card h3, .card h4, .card h5, .card h6 {
  margin: 0;
  margin-bottom: 0.5rem;
}

.bold {
  font-weight: bold;
}

.text-right {
  text-align: right;
}

.container-right {
  display: grid;
  justify-items: right;
}

.text-fail {
  color: red;
}

.no-margin {
  margin: 0;
}

.primary {
  color: #b90000;
}

.text-line-through {
  text-decoration: line-through !important;
}

.dynload {
  background: linear-gradient(120deg, rgba(24, 24, 24, 0.15) 0%, rgba(24, 24, 24, 0.09) 100%);
  background-size: 400% 400%;
  animation: DynLoad 1s ease infinite;
}
.dynload__pill {
  background: linear-gradient(90deg, rgba(24, 24, 24, 0.15) 0%, rgba(24, 24, 24, 0.09) 100%);
  animation: DynLoad 1s ease infinite;
  background-size: 400% 400%;
  height: 10px;
  border-radius: 5px;
  width: 100%;
  display: inline-block;
  min-width: 2em;
}
.dynload__pill--sm {
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(24, 24, 24, 0.15) 0%, rgba(24, 24, 24, 0.09) 100%);
  animation: DynLoad 1s ease infinite;
  background-size: 400% 400%;
  width: 100%;
  display: inline-block;
  min-width: 2em;
}

@keyframes DynLoad {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.control-nav {
  background-color: #242424;
  color: white;
  box-shadow: 3px 44px 49px -33px rgba(0, 0, 0, 0.49);
}
.control-nav__account {
  padding: 0.2rem 0.4rem;
  grid-column-gap: 0.8rem;
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  grid-template-areas: "b d" "c d";
  align-items: center;
}
.control-nav__account .icon, .control-nav__account .fad, .control-nav__account .fas, .control-nav__account .fal, .control-nav__account .far, .control-nav__account .fa-code, .control-nav__account .svg-inline--fa {
  grid-area: d;
  font-size: 22px;
  color: #b90000;
  text-align: center;
}
.control-nav__account__companyName {
  grid-area: b;
  font-size: 12px;
}
.control-nav__account__name {
  font-weight: 700;
  grid-area: c;
}
.control-nav__account__icon {
  display: none;
  grid-area: a;
  width: 40px;
  height: 40px;
}
@media screen and (min-width: 950px) {
  .control-nav__account__icon {
    display: block;
  }
}
.control-nav__account__icon__image {
  margin: 0;
  padding: 0;
  height: 40px;
  width: 40px;
  border-radius: 20px;
}
@media screen and (min-width: 950px) {
  .control-nav__account {
    grid-template-columns: 40px 1fr 0.5fr;
    grid-template-areas: "a b d" "a c d";
  }
}
.control-nav__account--login {
  padding: 0.7rem 1rem;
  grid-template-columns: 1fr 0.5fr;
  grid-template-areas: "c d" "c d";
}
.control-nav__account {
  color: black;
  background-color: white;
  padding: 1rem;
}
.control-nav__account .icon, .control-nav__account .fad, .control-nav__account .fas, .control-nav__account .fal, .control-nav__account .far, .control-nav__account .fa-code, .control-nav__account .svg-inline--fa {
  color: #b90000;
}
.control-nav__account__companyName {
  font-size: 12px;
}
.control-nav__account__icon {
  width: 40px;
  height: 40px;
}
.control-nav__account__icon__image {
  height: 40px;
  width: 40px;
  border-radius: 20px;
}
.control-nav__account:link, .control-nav__account:visited {
  color: black;
  text-decoration: none;
}
.control-nav__items {
  margin: 1rem 0;
  display: grid;
  grid-row-gap: 1rem;
}
.control-nav__item {
  display: grid;
  align-items: center;
  justify-items: center;
  cursor: pointer;
}
.control-nav__item__text, .control-nav__item__pointer {
  display: none;
}
@media screen and (min-width: 950px) {
  .control-nav__item {
    padding: 0.3rem 1rem;
    grid-column-gap: 1rem;
    grid-template-columns: 30px 1fr 30px;
  }
  .control-nav__item__text, .control-nav__item__pointer {
    display: block;
  }
}
.control-nav__item--active {
  background-color: white;
  color: black;
}
.control-nav__item--active .control-nav__item__icon, .control-nav__item--active .control-nav__item__pointer {
  color: #b90000 !important;
}
.control-nav__item:hover {
  background-color: white;
  color: black;
}
.control-nav__item:hover .control-nav__item {
  color: black;
}
.control-nav__item:hover .control-nav__item__icon, .control-nav__item:hover .control-nav__item__pointer {
  color: #b90000 !important;
}
.control-nav__item:link, .control-nav__item:visited {
  color: white;
  text-decoration: none;
}
.control-nav__item__text {
  font-size: 20px;
  font-weight: 600;
}
.control-nav__item__icon, .control-nav__item__pointer {
  color: white;
  font-size: 30px;
}

.control-header {
  display: grid;
  grid-template-columns: 18vw 1fr;
  box-shadow: 21px 13px 49px -33px rgba(0, 0, 0, 0.49);
}
.control-header__title {
  margin-left: 1.5rem;
  margin-right: 0.5rem;
  line-height: 80px;
  display: inline-block;
  font-weight: 600;
  font-size: 26px;
}
.control-header__sub-title {
  margin-left: 0.5rem;
  display: inline-block;
  line-height: 80px;
  font-size: 26px;
  font-weight: 400;
}
.control-header__img-container {
  display: grid;
  justify-items: center;
  align-items: center;
}
.control-header img {
  margin: 0.5rem 1rem;
  height: calc(100% - 1.5rem);
  width: auto;
}

.control-page {
  display: grid;
  width: 100vw;
  height: 100vh;
  grid-template-columns: 18vw 1fr;
  grid-template-rows: 80px 1fr;
  grid-template-areas: "b b" "a c";
}
.control-page .control-nav {
  grid-area: a;
}
.control-page__root {
  grid-area: c;
}
.control-page .control-header {
  grid-area: b;
}

.control-table__head {
  border-top: rgba(20, 20, 20, 0.5) 1px solid;
  display: flex;
  padding: 0.6rem 1rem;
}
.control-table__head .button {
  margin-right: 1rem;
  font-size: 14px;
  padding: 0.3rem 0.8rem;
}
.control-table__header {
  font-weight: 600;
  line-height: 22px;
  background-color: rgba(204, 204, 204, 0.65);
  border-top: rgba(20, 20, 20, 0.5) 1px solid;
  border-bottom: rgba(20, 20, 20, 0.5) 1px solid !important;
  text-transform: uppercase;
}
.control-table__column {
  border-bottom: rgba(20, 20, 20, 0.2) 1px solid;
  display: block;
  min-height: content-box;
  word-break: break-all;
  padding: 0.5rem 0.2rem;
}
.control-table__column--striped {
  background-color: rgba(24, 25, 24, 0.07);
}
.control-table__column--first {
  padding-left: 1rem;
}
.control-table__column--last {
  padding-right: 1rem;
}
.control-table__row {
  display: grid;
  grid-template-rows: 1fr;
}

.frontPageHeader {
  background-color: white;
  border-bottom: 1px solid rgba(204, 204, 204, 0.47);
  margin: 0 1rem;
  width: calc(100vw - 4rem);
  padding-bottom: 1rem;
}
@media screen and (min-width: 950px) {
  .frontPageHeader {
    padding-bottom: 0;
    height: 50px;
  }
}
.frontPageHeader__logo {
  max-height: 40px;
  margin: 5px 0;
}
.frontPageHeader__content {
  display: grid;
  grid-gap: 0.2rem;
  align-items: center;
}
@media screen and (min-width: 950px) {
  .frontPageHeader__content {
    grid-template-columns: 1fr 4fr 1fr;
    height: 50px;
  }
}
.frontPageHeader__account {
  padding: 0.2rem 0.4rem;
  grid-column-gap: 0.8rem;
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  grid-template-areas: "b d" "c d";
  align-items: center;
}
.frontPageHeader__account .icon, .frontPageHeader__account .fad, .frontPageHeader__account .fas, .frontPageHeader__account .fal, .frontPageHeader__account .far, .frontPageHeader__account .fa-code, .frontPageHeader__account .svg-inline--fa {
  grid-area: d;
  font-size: 22px;
  color: #b90000;
  text-align: center;
}
.frontPageHeader__account__companyName {
  grid-area: b;
  font-size: 12px;
}
.frontPageHeader__account__name {
  font-weight: 700;
  grid-area: c;
}
.frontPageHeader__account__icon {
  display: none;
  grid-area: a;
  width: 40px;
  height: 40px;
}
@media screen and (min-width: 950px) {
  .frontPageHeader__account__icon {
    display: block;
  }
}
.frontPageHeader__account__icon__image {
  margin: 0;
  padding: 0;
  height: 40px;
  width: 40px;
  border-radius: 20px;
}
@media screen and (min-width: 950px) {
  .frontPageHeader__account {
    grid-template-columns: 40px 1fr 0.5fr;
    grid-template-areas: "a b d" "a c d";
  }
}
.frontPageHeader__account--login {
  padding: 0.7rem 1rem;
  grid-template-columns: 1fr 0.5fr;
  grid-template-areas: "c d" "c d";
}
.frontPageHeader__account {
  background-color: rgba(204, 204, 204, 0.22);
  border-radius: 4px;
}
.frontPageHeader__account .icon, .frontPageHeader__account .fad, .frontPageHeader__account .fas, .frontPageHeader__account .fal, .frontPageHeader__account .far, .frontPageHeader__account .fa-code, .frontPageHeader__account .svg-inline--fa {
  color: #b90000;
}
.frontPageHeader__account__companyName {
  font-size: 12px;
}
.frontPageHeader__account__icon {
  width: 40px;
  height: 40px;
}
.frontPageHeader__account__icon__image {
  height: 40px;
  width: 40px;
  border-radius: 20px;
}
.frontPageHeader__account:link, .frontPageHeader__account:visited {
  color: black;
  text-decoration: none;
}
.frontPageHeader__items {
  display: block;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-content: center;
}
@media screen and (min-width: 950px) {
  .frontPageHeader__items {
    display: flex;
  }
}
.frontPageHeader__item {
  display: block;
  margin: 0.5rem 0;
  font-weight: 700;
  font-size: 18px;
}
.frontPageHeader__item:hover {
  color: #b90000;
  cursor: pointer;
}
.frontPageHeader__itema, .frontPageHeader__item:link, .frontPageHeader__item:visited {
  text-decoration: none;
  color: black;
}

.frontPageFooter {
  background-color: #242424;
  padding: 2em 0;
  color: rgba(255, 255, 255, 0.6);
}
.frontPageFooter h1, .frontPageFooter h2, .frontPageFooter h3, .frontPageFooter h4, .frontPageFooter h5, .frontPageFooter h6 {
  color: white;
  margin: 0;
}
.frontPageFooter .icon, .frontPageFooter .fad, .frontPageFooter .fas, .frontPageFooter .fal, .frontPageFooter .far, .frontPageFooter .fa-code, .frontPageFooter .svg-inline--fa {
  color: white;
}
.frontPageFooter__center {
  font-weight: bold;
  color: white;
  text-align: center;
}
.frontPageFooter__items {
  display: grid;
}
@media screen and (min-width: 950px) {
  .frontPageFooter__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1170px) {
  .frontPageFooter__items {
    grid-template-columns: repeat(4, 1fr);
  }
}

.fbutton {
  color: white;
  font-size: 24px;
  border: none;
  background-color: #b90000;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  padding: 0.4rem 2rem;
}
.fbutton:hover, .fbutton:focus {
  cursor: pointer;
  background-color: #d30000;
}
.fbutton:link, .fbutton:visited {
  color: white;
  text-decoration: none;
}
.fbutton--outline {
  background-color: white;
  color: #b90000 !important;
  border: 4px solid #b90000;
  padding: calc(.4rem - 3px ) calc(2rem - 3px);
}
.fbutton--outline:hover, .fbutton--outline:focus {
  cursor: pointer;
  color: #b90000 !important;
  background-color: #f2f2f2;
}
.fbutton--sm {
  border-width: 3px;
  font-size: 18px;
  padding: 0.4rem 1.8rem;
}

.login__page {
  background: url("/assets/img/login-bg.jpg") no-repeat center;
  background-size: cover;
  width: 100vw;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
}
.login__button {
  text-align: center;
  border-radius: 10px;
  background: #b90000;
  font-size: 22px;
  font-weight: bold;
  color: white;
  padding: 0.4rem 1rem;
  box-shadow: 13px 14px 45px -13px rgba(0, 0, 0, 0.34);
}
.login__privacy {
  padding-top: 1rem;
  color: #bfbfbf;
  margin: 0;
  text-align: left;
  font-weight: 200;
}
.login__input {
  border: 1px solid #bfbfbf;
  display: block;
  width: calc(100%);
  height: 40px;
  font-size: 18px;
  padding: 1.6rem;
}
.login__input:focus {
  border-color: #b90000;
  outline: none;
}
.login__input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #bfbfbf;
  font-family: "Montserrat", sans-serif;
}
.login__input::-moz-placeholder {
  /* Firefox 19+ */
  color: #bfbfbf;
  font-family: "Montserrat", sans-serif;
}
.login__input:-ms-input-placeholder {
  /* IE 10+ */
  color: #bfbfbf;
  font-family: "Montserrat", sans-serif;
}
.login__input:-moz-placeholder {
  /* Firefox 18- */
  color: #bfbfbf;
  font-family: "Montserrat", sans-serif;
}
.login__input--password {
  border-top-width: 1px;
  border-radius: 0 0 4px 4px;
  margin-bottom: 1rem;
}
.login__input--username {
  border-bottom-width: 0;
  border-radius: 4px 4px 0 0;
}
.login__container {
  box-shadow: 12px 24px 34px -17px rgba(0, 0, 0, 0.54);
  overflow-y: scroll;
  padding-bottom: 1.5em;
  width: 85vw;
  margin: auto;
  height: 85vh;
  margin-top: 2em;
  background-color: white;
  border-radius: 10px;
}
.login__container__content {
  margin: 2.2rem;
  margin-bottom: 0;
}
@media screen and (min-width: 950px) {
  .login__container {
    width: 55vw;
  }
}
@media screen and (min-width: 1170px) {
  .login__container {
    width: 35vw;
  }
}
.login__container--large {
  width: 90vw;
}
@media screen and (min-width: 950px) {
  .login__container--large {
    width: 85vw;
  }
}
@media screen and (min-width: 1170px) {
  .login__container--large {
    width: 70vw;
  }
}
.login__container__img img {
  padding-top: 1em;
  display: block;
  margin: auto;
  width: 280px;
  height: auto;
}

.address-selector {
  display: grid;
  grid-template-areas: "a a a a a a" "b b c c c d" "e e e f f f" "g g g g g g";
  grid-gap: 0.8rem;
}
.address-selector--country {
  grid-area: a;
}
.address-selector--thoroughfare {
  grid-area: b;
}
.address-selector--premise {
  grid-area: c;
}
.address-selector--sub-premise {
  grid-area: d;
}
.address-selector--postal-code {
  grid-area: e;
}
.address-selector--locality {
  grid-area: f;
}
.address-selector--province {
  grid-area: g;
}

.home section {
  padding: 3em 15px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.47);
}
.home section.section__dark {
  color: white;
  background-color: #242424;
}
.home section h1 {
  font-size: 34px;
}
.home section:last-child {
  border-bottom: none;
}
.home .homeLocations img {
  width: calc(100% - 8em);
  margin: 0 4em;
}
.home .homeLocations__list {
  display: grid;
  justify-items: center;
}
.home .homeLocations__list h1, .home .homeLocations__list h2, .home .homeLocations__list h3, .home .homeLocations__list h4, .home .homeLocations__list h5, .home .homeLocations__list h6 {
  font-weight: 300;
}
.home .homeLocations__list .icon, .home .homeLocations__list .fad, .home .homeLocations__list .fas, .home .homeLocations__list .fal, .home .homeLocations__list .far, .home .homeLocations__list .fa-code, .home .homeLocations__list .svg-inline--fa {
  color: #b90000;
}
@media screen and (min-width: 950px) {
  .home .homeLocations__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1170px) {
  .home .homeLocations__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.home__icons {
  display: grid;
  justify-items: center;
  justify-content: center;
  grid-gap: 2em;
}
@media screen and (min-width: 950px) {
  .home__icons {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1170px) {
  .home__icons {
    grid-template-columns: repeat(5, 1fr);
  }
}
.home__icons__title {
  font-weight: 600;
  font-size: 22px;
}
.home__icons__item {
  text-align: center;
  font-weight: 400;
}
.home__icons__item .icon, .home__icons__item .fad, .home__icons__item .fas, .home__icons__item .fal, .home__icons__item .far, .home__icons__item .fa-code, .home__icons__item .svg-inline--fa {
  font-size: 80px;
  color: #b90000;
}
.home .homeSection {
  display: grid;
  justify-items: center;
}
@media screen and (min-width: 950px) {
  .home .homeSection {
    grid-template-columns: 1fr 1fr;
  }
}
.home .homeSection h1, .home .homeSection h2, .home .homeSection h3, .home .homeSection h4, .home .homeSection h5, .home .homeSection h6 {
  margin: 0;
}
.home .homeSection .icon, .home .homeSection .fad, .home .homeSection .fas, .home .homeSection .fal, .home .homeSection .far, .home .homeSection .fa-code, .home .homeSection .svg-inline--fa {
  font-size: 200px;
  color: #b90000;
}
.home .homeSection h1 {
  font-size: 50px;
}
.home .homeSection h2 {
  font-weight: 200;
  font-size: 30px;
}
.home__sechdule-call {
  margin: 1rem 0;
}
@media screen and (min-width: 950px) {
  .home__sechdule-call {
    margin: 1rem 8em;
  }
}
.home .homeSolutions {
  display: grid;
  grid-gap: 2em;
}
.home .homeSolutions h1, .home .homeSolutions h2, .home .homeSolutions h3, .home .homeSolutions h4, .home .homeSolutions h5, .home .homeSolutions h6 {
  margin-bottom: 0.7rem;
}
.home .homeSolutions .icon, .home .homeSolutions .fad, .home .homeSolutions .fas, .home .homeSolutions .fal, .home .homeSolutions .far, .home .homeSolutions .fa-code, .home .homeSolutions .svg-inline--fa {
  color: #b90000;
}
.home .homeSolutions .fbutton {
  margin-top: 0.7rem;
  text-align: center;
}
.home .homeSolutions .card {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
@media screen and (min-width: 950px) {
  .home .homeSolutions {
    grid-template-columns: repeat(3, 1fr);
  }
}
.home__why-us__items {
  display: grid;
  grid-gap: 4em;
}
.home__why-us__item {
  grid-row-gap: 1.5em;
  grid-column-gap: 4em;
  align-items: center;
  justify-items: center;
  display: grid;
  grid-template-areas: "a b" "a c";
  padding-left: 5%;
}
@media screen and (max-width: 950px) {
  .home__why-us__item {
    padding-left: 10%;
  }
}
@media screen and (min-width: 950px) {
  .home__why-us__item {
    padding-left: 20%;
  }
}
.home__why-us__item:nth-child(even) {
  padding-left: 0;
  padding-right: 5%;
  grid-template-areas: "b a" "c a";
}
@media screen and (max-width: 950px) {
  .home__why-us__item:nth-child(even) {
    padding-right: 10%;
  }
}
@media screen and (min-width: 950px) {
  .home__why-us__item:nth-child(even) {
    padding-right: 20%;
  }
}
.home__why-us__item__icon {
  color: #b90000;
  grid-area: a;
  font-size: 77px;
}
.home__why-us__item__title {
  grid-area: b;
  font-weight: 600;
  font-size: 28px;
}
.home__why-us__item__content {
  grid-area: c;
}
.home .homeBenefits__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1em;
}
.home .homeBenefits__item {
  font-size: 16px;
}
.home .homeBenefits__item .icon, .home .homeBenefits__item .fad, .home .homeBenefits__item .fas, .home .homeBenefits__item .fal, .home .homeBenefits__item .far, .home .homeBenefits__item .fa-code, .home .homeBenefits__item .svg-inline--fa {
  margin-right: 1rem;
  font-size: 24px;
  color: #b90000;
}
.home .homeBenefits__item span {
  margin-right: 1rem;
  font-size: 20px;
  font-weight: bold;
}

.badge {
  display: inline-grid;
  margin: 0 0.2rem;
  padding: 0 0.4rem;
  align-items: center;
  justify-items: center;
  font-weight: 700;
  grid-template-columns: repeat(2, auto);
  grid-gap: 0.15rem;
  background-color: rgba(185, 0, 0, 0.2);
  color: #b90000;
  border-color: #b90000;
}
.badge *:nth-child(2) {
  padding-left: 0.15rem;
  border-left-style: solid;
  border-left-width: 1px;
}
.badge--sm {
  font-size: 14px;
  height: 22px;
  line-height: 14px;
  border-radius: 11px;
  padding: 0 1rem;
}
.badge--lg {
  padding: 0 1rem;
  font-size: 18px;
  height: 28px;
  line-height: 18px;
  border-radius: 14px;
}
.badge--warning {
  background-color: rgba(255, 165, 0, 0.45);
  color: orange;
  border-color: orange;
}
.badge--fail {
  background-color: rgba(185, 0, 0, 0.45);
  color: #b90000;
  border-color: #b90000;
}
.badge--success {
  background-color: rgba(0, 185, 0, 0.45);
  color: #00b900;
  border-color: #00b900;
}

.footer {
  border-top: 0.4rem solid #b90000;
  background-color: #242424;
  color: white;
  padding: 2rem 0;
  margin-top: 1rem;
}
.footer h1, .footer h2, .footer h3, .footer h4, .footer h5, .footer h6 {
  margin: 0;
}
.footer__social .icon, .footer__social .fad, .footer__social .fas, .footer__social .fal, .footer__social .far, .footer__social .fa-code, .footer__social .svg-inline--fa {
  font-size: 32px;
  color: white;
  margin-right: 1rem;
}
.footer__copyright {
  margin-top: 0;
  border-top: none;
  background-color: black;
  color: white;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
}
.footer__content {
  display: grid;
  grid-gap: 2em;
}
.footer__content img {
  width: 100%;
  height: auto;
}
.footer__content a {
  cursor: pointer;
  color: white;
  text-decoration: underline;
}
@media screen and (min-width: 950px) {
  .footer__content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1170px) {
  .footer__content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.alert {
  display: grid;
  padding: 0 0.4rem;
  align-items: center;
  justify-items: center;
  font-weight: 500;
  grid-template-columns: repeat(2, auto);
  grid-gap: 0.15rem;
  border: 3px solid #007bff;
  background-color: rgba(0, 123, 255, 0.5);
  color: #007bff;
  border-radius: 4px;
  width: max-content;
  margin: auto;
  margin-top: 1rem;
}
.alert *:nth-child(1) {
  font-weight: 800;
}
.alert *:nth-child(2) {
  padding-left: 0.15rem;
}
.alert--sm {
  font-size: 17px;
  line-height: 17px;
  padding: 0.3rem 1rem;
}
.alert--lg {
  font-size: 20px;
  line-height: 18px;
  padding: 0.5rem 1.5rem;
}
.alert--warning {
  background-color: rgba(255, 165, 0, 0.45);
  color: orange;
  border-color: orange;
}
.alert--fail {
  background-color: rgba(185, 0, 0, 0.45);
  color: #b90000;
  border-color: #b90000;
}
.alert--success {
  background-color: rgba(0, 185, 0, 0.45);
  color: #00b900;
  border-color: #00b900;
}

.grid {
  display: grid;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.grid-2-r {
  display: grid;
}
@media screen and (min-width: 950px) {
  .grid-2-r {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-gap-1 {
  grid-gap: 1rem;
}

.grid-gap-2 {
  grid-gap: 2rem;
}

.grid-gap-3 {
  grid-gap: 3rem;
}

.grid-gap-4 {
  grid-gap: 4rem;
}

.grid-justify-center {
  justify-items: center;
}

.grid-align-center {
  align-items-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.input, .select, .input-fixed {
  border-radius: 4px 4px;
  border: 1px solid #bfbfbf;
  display: block;
  width: calc(100%);
  height: 40px;
  font-size: 18px;
  padding: 0.8rem 1rem;
  font-family: "Montserrat", sans-serif;
}
.input:focus, .select:focus, .input-fixed:focus {
  border-color: #b90000;
  outline: none;
}
.input:focus::-webkit-input-placeholder, .select:focus::-webkit-input-placeholder, .input-fixed:focus::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #656565;
}
.input:focus::-moz-placeholder, .select:focus::-moz-placeholder, .input-fixed:focus::-moz-placeholder {
  /* Firefox 19+ */
  color: #656565;
}
.input:focus:-ms-input-placeholder, .select:focus:-ms-input-placeholder, .input-fixed:focus:-ms-input-placeholder {
  /* IE 10+ */
  color: #656565;
}
.input:focus:-moz-placeholder, .select:focus:-moz-placeholder, .input-fixed:focus:-moz-placeholder {
  /* Firefox 18- */
  color: #656565;
}
.input::-webkit-input-placeholder, .select::-webkit-input-placeholder, .input-fixed::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #bfbfbf;
  font-family: "Montserrat", sans-serif;
}
.input::-moz-placeholder, .select::-moz-placeholder, .input-fixed::-moz-placeholder {
  /* Firefox 19+ */
  color: #bfbfbf;
  font-family: "Montserrat", sans-serif;
}
.input:-ms-input-placeholder, .select:-ms-input-placeholder, .input-fixed:-ms-input-placeholder {
  /* IE 10+ */
  color: #bfbfbf;
  font-family: "Montserrat", sans-serif;
}
.input:-moz-placeholder, .select:-moz-placeholder, .input-fixed:-moz-placeholder {
  /* Firefox 18- */
  color: #bfbfbf;
  font-family: "Montserrat", sans-serif;
}

.select, .input-fixed {
  font-size: 17px;
  padding: 0.5rem 1rem;
  height: max-content;
}

.search-dropdown__content {
  border-radius: 0 0 4px 4px;
  border: 1px solid #bfbfbf;
  border-top: none;
}
.search-dropdown__item {
  cursor: pointer;
  font-weight: 600;
  padding: 0.6rem;
  border-bottom: 1px solid #bfbfbf;
}
.search-dropdown__item:last-child {
  border-bottom: none;
}
.search-dropdown .input {
  border-radius: 4px 4px 0 0;
}

.button {
  border-radius: 4px;
  font-weight: 600;
  font-size: 18px;
  display: inline-block;
  padding: 0.5rem 1rem;
  marign: 0.5rem 1rem;
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(25, 25, 25, 0.2);
  background-color: #fefefe;
}
.button:link, .button:visited {
  text-decoration: none;
  color: black;
}
.button:hover {
  cursor: pointer;
  background-color: #fafafa;
}
.button--primary {
  background-color: #b90000;
  color: white;
}
.button--primary:hover {
  background-color: #cd0000;
}
.button--danger {
  background-color: white;
  border: 2px solid red;
  color: red;
  padding: calc(.5rem - 2px) calc(1rem - 2px);
}
.button--danger:hover {
  background-color: #f7f7f7;
}

.button-group {
  display: flex;
  width: calc(100% - 2rem);
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.08);
  margin: 0.5rem 1rem;
  text-align: center;
  border: 1px solid rgba(25, 25, 25, 0.2);
}
.button-group .button {
  border: none;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  border-right: 1px solid rgba(24, 24, 24, 0.2);
}
.button-group .button:first-child {
  border-radius: 4px 0 0 4px;
}
.button-group .button:last-child {
  border-right: none;
  border-radius: 0 4px 4px 0;
}

body {
  font-family: "Open Sans", "Arial", sans-serif;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 0;
}

* {
  box-sizing: border-box;
}

.control-container {
  margin: 0 1rem;
}

.fake_link {
  color: -webkit-link;
  cursor: pointer;
  text-decoration: underline;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 950px) {
  .container {
    max-width: 840px;
  }
}
@media screen and (min-width: 950px) {
  .container {
    max-width: 950px;
  }
}
@media screen and (min-width: 1170px) {
  .container {
    max-width: 1170px;
  }
}

/*# sourceMappingURL=style.css.map */
