html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: "Montserrat", sans-serif, -apple-system, system-ui;
  font-style: normal;
  font-weight: 500;
}

body.open-region {
  overflow: hidden !important;
}

.landing_info-region-container {
  position: relative;
  padding-left: 50px;
}

.landing_info-region-select_title_container {
  display: flex;
  margin-top: 10px;
  align-items: center;
}

.landing_info-region-select_toggle {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 30px;
  color: #98b6de;
  user-select: none;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  height: 30px;
  max-width: 75%;
  -webkit-line-clamp: 1; /* number of lines to show */
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.landing_info-region-select_title {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 30px;
  color: rgba(60, 67, 77, 0.4);
  margin-right: 5px;
}

.region-chevron-icon {
  display: inline-block;
  content: "";
  margin-left: 7px;
  width: 12px;
  height: 10px;
  background-image: url("/static/images/chevron-down.svg");
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease-in;
}

.region-chevron-icon.open {
  transform: rotate(-180deg);
  transition: transform 0.3s ease-out;
}

.region-select-popup {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in;
  width: 350px;
  box-sizing: border-box;
  background: #ffffff;
  padding: 18px 38px;
  box-shadow: 0px 2px 80px rgba(0, 0, 0, 0.3);
  font-weight: 500;
  font-size: 18px;
  line-height: 40px;
  position: absolute;
  top: 35px;
}

.region-select-popup.open {
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.3s ease-out;
}

.region-select-popup > h4 {
  font-weight: 600;
  font-size: 14px;
  line-height: 40px;
  margin: 0;
}
.region-select-popup_buttons {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.region-select-popup_buttons > button {
  width: 130px;
  height: 36px;
  background: #ffffff;
  border-radius: 30px;
  font-weight: bold;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
  color: #2790d4;
  border: 1px solid #2790d4;
  cursor: pointer;
  text-transform: uppercase;
}

.region-select-popup_buttons > button.yes {
  border: none;
  background: #2790d4;
  color: white;
}

.region-select-modal {
  z-index: 3;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  position: absolute;
  background: #ffffff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in;
  box-sizing: border-box;
  display: none;
}

.region-select-modal.open {
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.3s ease-out;
  padding: 79px 247px;
  display: block;
}

.region-select-modal_control_back {
  height: 30px;
  width: 105px;
  cursor: pointer;
  background: #fff;
  border: 1px solid #2790d4;
  box-sizing: border-box;
  border-radius: 30px;
  font-weight: 700;
  font-size: 11px;
  text-align: center;
  color: #2790d4;
  padding-left: 10px;
  padding-right: 10px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}

i.arrow-back {
  display: inline-block;
  content: "";
  width: 16px;
  height: 12px;
  margin-right: 8px;
  background-image: url("/static/images/arrow-left.svg");
  background-position: center;
  background-repeat: no-repeat;
}

.region-select-modal a {
  color: #2790d4;
  line-height: 1.75;
}

.region-select-modal_content {
  height: calc(100vh - 290px);
  overflow-y: auto;
  overflow-x: hidden;
  margin-top: 50px;
  padding-bottom: 50px;
  padding-right: 2rem;
  display: flex;
  justify-content: space-evenly;
}

.region-select-modal_content_col_letter-group > h4 {
  margin-top: 4px;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 22px;
  line-height: 32px;
  color: #69d0a5;
}

.region-select-modal_content_col_letter-group > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #2790d4;
}

.cookie-popup_wrapper {
  position: fixed;
  width: 100%;
  bottom: 37px;
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease-in;
  pointer-events: none;
  z-index: 2;
}

.cookie-popup_wrapper.open {
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.3s ease-out;
}

.cookie-popup {
  max-width: 900px;
  background: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  padding: 25px 14px;
  display: flex;
}

.cookie-popup-text {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #3c434d;
}
.cookie-popup-button_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.cookie-popup-button {
  background: #69d0a5;
  border-radius: 30px;
  padding-left: 25px;
  padding-right: 25px;
  height: 30px;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  cursor: pointer;
}

@media screen and (min-width: 961px) {
  .region-select-modal_content_col:not(:first-child) {
    margin-left: 45px;
  }
}

@media screen and (max-width: 1240px) {
  .region-select-modal {
    padding-left: 120px !important;
    padding-right: 120px !important;
  }
}

@media screen and (max-width: 960px) {
  .region-select-modal {
    padding: 0 !important;
  }

  .region-select-modal_content_col {
    margin-left: 15px;
    font-weight: bold !important;
    font-size: 14px !important;
    line-height: 32px !important;
  }

  .region-select-modal_control,
  .region-select-modal_control_back {
    background-color: #f1f1f2;
  }

  .region-select-modal_control_back {
    border: none !important;
    font-weight: 600;
    font-size: 9px;
    line-height: 30px;
    height: auto;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
  }

  .arrow-back {
    height: 9px !important;
    width: 9px !important;
    background-size: 9px 9px !important;
    margin-right: 7px;
  }
  .cookie-popup_wrapper {
    box-shadow: 0px -6px 6px rgba(0, 0, 0, 0.15);
    bottom: 0 !important;
  }
  .cookie-popup {
    flex-direction: column;
    padding: 15px;
  }
  .cookie-popup-text {
    font-style: normal;
    font-weight: 500;
    font-size: 11px;
    line-height: 13px;
    color: #3c434d;
    font-weight: bold;
    margin-bottom: 15px;
  }

  .cookie-popup-button_wrapper {
    width: 100%;
  }

  .cookie-popup-button {
    background: #2790d3;
    font-weight: bold;
    width: 100%;
  }

  .region-select-popup {
    position: absolute;
    bottom: unset;
    left: 0;
    width: 100vw;
    transform: none;
    box-shadow: none;
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
  .region-select-popup_buttons > button {
    width: 100%;
  }
  .region-select-popup_buttons > button:first-of-type {
    margin-right: 18px;
  }
}

/* Form controls */
input::-webkit-input-placeholder,
::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #7a7a7a;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.input-required::before {
  position: absolute;
  right: 0px;
  content: "*";
  color: #7a7a7a;
}

.input-required.alt::before {
  top: 40%;
}

.form-control {
  box-sizing: border-box;
  width: 100%;
  border: none;
  padding-top: 16px;
  padding-bottom: 16px;
  border-radius: 0;
  border-bottom: 1px solid #e3e5eb;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 21px;
  transition: border 0.3s ease-out;
  outline: none;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
}

select.form-control {
  background: transparent;
  background-image: url("/static/images/select_arrow.svg");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 50%;
  color: black;
}

select.form-control.empty {
  color: #7a7a7a;
}

select.form-control option[value=""][disabled] {
  display: none;
}

.form-control:focus {
  border-bottom-color: #99ccff;
  transition: border 0.3s ease-in;
}

input.form-control.invalid,
input:not(:placeholder-shown):invalid {
  border-bottom: 1px solid red !important;
}
