@font-face {
  font-family: 'Roboto';
  src:
  url('../fonts/RobotoRegular.woff') format('woff'),
  url('../fonts/RobotoRegular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src:
  url('../fonts/RobotoMedium.woff') format('woff'),
  url('../fonts/RobotoMedium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src:
  url('../fonts/RobotoBold.woff') format('woff'),
  url('../fonts/RobotoBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
html, body {
  height: 100%;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.wrapper {
}
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

body {
  position: relative;
  margin: 0;
  width: 100%;
  height: 100%;
  font-family: 'Roboto', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2.2rem;
  color: #000000;
  background: #F9FAFC;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;

  opacity: 0;
  -webkit-animation: fadeIn .7s .5s forwards;
  animation: fadeIn .7s .5s forwards;
}

*, ::after, ::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.container {
  width: 1450px;
  padding-left: 15px;
  padding-right: 15px;
  margin-right: auto;
  margin-left: auto;
}

.wrapper {
  padding-top: 40px;
  min-width: 320px;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
}

.sr-only {
  height: 0;
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

ul li {
  list-style: none;
}

ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 17px;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color .2s;
  -o-transition: color .2s;
  transition: color .2s;
}

a:hover, a:focus {
  text-decoration: none;
  color: #1495D6;
  outline: none;
}

p {
  margin-bottom: 0;
  margin-top: 0;
}

video {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
}

input {
  outline: none;
  border: none;
  max-width: 100%;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  outline: none !important;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

button i, button img {
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.bold {
  font-weight: 700;
}

.accent {
  color: #1495D6;
}

.uppercase {
  text-transform: uppercase;
}

.checkbox {
  margin-top: 0;
  margin-bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.checkbox input[type="checkbox"] {
  position: absolute;
  left: -9999px;
}

.checkbox label {
  padding: 0;
  position: relative;
  display: inline-block !important;
  margin-top: 0;
  margin-right: 1.6rem;
  margin-bottom: 0;
  width: 2.5rem !important;
  height: 2.5rem;
  vertical-align: top;
  outline: none;
  cursor: pointer;
  border: 1px solid #fff;
  background-color: transparent;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
          flex-shrink: 0;
}

.checkbox label:after {
  position: absolute;
  display: block;
  content: '';
  top: 0.4rem;
  left: 0.4rem;
  width: 1.5rem;
  height: 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  -webkit-border-radius: 3px;
          border-radius: 3px;
}

.checkbox.warning label {
  border-color: red;
}

.checkbox input[type="checkbox"]:checked + label:after {
  background: #FAE644;
}

.checkbox label + span {
  font-size: 16px;
  line-height: 143.2%;
}

.checkbox a {
  font-size: 16px;
  line-height: 143.2%;
  text-decoration: underline;
  color: inherit;
}

.checkbox a:hover {
  text-decoration: none;
  color: inherit;
}

.radio {
  margin-top: 0;
  margin-bottom: 0;
}

.radio input[type="radio"] {
  position: absolute;
  left: -9999px;
}

.radio label {
  padding: 0;
  position: relative;
  display: inline-block !important;
  margin-top: 0;
  margin-bottom: 0;
  width: 2.5rem !important;
  height: 2.5rem;
  vertical-align: top;
  outline: none;
  cursor: pointer;
  border: 1px solid #fff;
  background-color: transparent;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
          flex-shrink: 0;
}

.radio label:after {
  position: absolute;
  display: block;
  content: '';
  top: 0.5rem;
  left: 0.5rem;
  width: 1.3rem;
  height: 1.3rem;
  background: rgba(255, 255, 255, 0.5);
  -webkit-border-radius: 50%;
          border-radius: 50%;
}

.radio input[type="radio"]:checked + label:after {
  background: #FAE644;
}

.radio_2 {
  margin-top: 0;
  margin-bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.radio_2 input[type="radio"] {
  position: absolute;
  left: -9999px;
}

.radio_2 label {
  padding: 0;
  position: relative;
  display: inline-block !important;
  margin-top: 0;
  margin-right: 1.6rem;
  margin-bottom: 0;
  width: 2.5rem !important;
  height: 2.5rem;
  vertical-align: top;
  outline: none;
  cursor: pointer;
  border: 1px solid #fff;
  background-color: transparent;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.radio_2 label:after {
  position: absolute;
  display: block;
  content: '';
  top: 0.4rem;
  left: 0.4rem;
  width: 1.5rem;
  height: 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.radio_2.warning label {
  border-color: red;
}

.radio_2 input[type="radio"]:checked + label:after {
  background: #FAE644;
}

.radio_2 label + span {
  font-size: 2rem;
  line-height: 110%;
}

.radio_2 a {
  font-size: 2rem;
  line-height: 110%;
  text-decoration: underline;
  color: inherit;
}

.radio_2 a:hover {
  text-decoration: none;
  color: inherit;
}

.blue_btn {
    border-radius: 2rem;
    padding: 1.5rem 2.7rem 1.5rem;
    height: 4.7rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    background: #1495D6;
    border: 1px solid #1495D6;
    -webkit-border-radius: 1.5rem;
    border-radius: 1.5rem;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}
.blue_btn:hover {
    color: #000;
    border-color: #000;
    background: transparent;
    text-decoration: none;
}
.blue_btn:focus {
    color: #000;
}

html {
  font-size: 10px;
}

.visible_mob {
  display: none !important;
}

.lang_select {
  padding-left: 10px;
  position: relative;
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: #000000;
  background-color: #fff;
}

.lang_select.active ul {
  display: block;
  pointer-events: auto;
}

.lang_select .active_lang {
  position: relative;
  text-transform: uppercase;
  color: #000;
  padding-left: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.lang_select .active_lang:before {
  position: absolute;
  display: block;
  content: '';
  top: 12px;
  left: 0;
  width: 10px;
  height: 10px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background: #1495D6;
}

.lang_select .active_lang img {
  margin-left: 7px;
  position: relative;
  top: -1px;
}

.lang_select a {
  position: relative;
  padding-left: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: block;
}

.lang_select a:hover:before {
  background: #1495D6;
}

.lang_select a:before {
  position: absolute;
  display: block;
  content: '';
  top: 12px;
  left: 0;
  width: 10px;
  height: 10px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background: #D1D1D1;
}

.lang_select ul {
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  background-color: #fff;
  position: absolute;
  z-index: 20;
  top: 100%;
  left: 0;
  display: none;
  color: #000;
  pointer-events: none;
}

.lang_select ul a {
  color: #000;
}

.page_wrapper {
  display: none;
}

.page_wrapper.active {
  display: block;
}

.modal_open .wrapper, .modal_open .main_footer {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

.mfp-bg {
  opacity: .4;
  background: #000;
}

.mfp-wrap {
  top: 0 !important;
  position: fixed !important;
}

.mfp-container {
  padding-top: 30px;
  padding-bottom: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mfp-content {
  position: relative;
  margin-top: 0;
  max-height: 100%;
  width: auto !important;
}

.mfp-content .popup_default {
  display: block;
}

.mfp-close {
  position: absolute;
  right: -52px;
  top: -12px;
  opacity: 1;
}

.mfp-close:active {
  top: -12px;
}

button.mfp-close {
  font-size: 0;
  background: transparent url(../img/close.svg) no-repeat center;
}

.popup_default {
  display: none;
  font-size: 16px;
  line-height: 40px;
  text-align: justify;
}

.popup_default .popup_inner {
  padding: 80px;
  height: auto;
  max-height: -webkit-calc(100vh - 60px);
  max-height: calc(100vh - 60px);
  width: 109rem;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  overflow-x: hidden;
}

.popup_default .popup_title {
  margin-bottom: 6rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 12px 20px;
  font-weight: 500;
  font-size: 25px;
  line-height: 29px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
  color: #000;
  background: #FDE92A;
  border-radius: 10em;
}

.popup_default a {
  color: #1495D6;
  text-decoration: none;
  white-space: nowrap;
}

.popup_default a:hover {
  text-decoration: underline;
}

.popup_default .divider {
  margin-top: 30px;
  margin-bottom: 30px;
  width: 100%;
  height: 1px;
  background: rgba(184, 184, 184, 0.3);
}

.popup_default .btn {
  margin-top: 20px;
  margin-bottom: 30px;
  width: 264px;
  display: block;
  position: relative;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
}

.popup_default .btn:hover, .popup_default .btn:focus {
  color: #fff;
  text-decoration: none;
}

.popup_default .btn:hover .inner, .popup_default .btn:focus .inner {
  top: -2px;
}

.popup_default .btn .inner {
  position: relative;
  z-index: 10;
  top: -4px;
  width: 264px;
  height: 63px;
  background: #1495D6;
  -webkit-border-radius: 15px;
          border-radius: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.popup_default .btn:before {
  position: absolute;
  content: '';
  display: block;
  width: 264px;
  height: 63px;
  left: 0;
  top: 0;
  background: #007AB8;
  -webkit-border-radius: 15px;
          border-radius: 15px;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.popup_default .btn img {
  margin-left: 9px;
}

.popup_default ul li:before {
  content: '- ';
}

.popup_default ul.styled.styled li {
  margin-bottom: 30px;
  position: relative;
  padding-left: 25px;
}

.popup_default ul.styled.styled li:last-child {
  margin-bottom: 0;
}

.popup_default ul.styled.styled li:before {
  position: absolute;
  display: block;
  content: '';
  top: 8px;
  left: 0;
  width: 12px;
  height: 12px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background: #1495D6;
}

.popup_default ul.styled.blue li:before {
  background: #1495D6;
}

.popup_default ul.styled.yellow li:before {
  background: #FDE92A;
}

.popup_default ul.styled.red li:before {
  background: #E65655;
}

.green_popup .popup_title {
  background: #78BC60;
  color: #fff;
}

.red_popup .popup_title {
  background: #E65655;
  color: #fff;
}
.red_popup .buy_list {
  display: none;
}
.yellow_popup {
  line-height: 3rem;
}
.yellow_popup a.buy_btn {
  margin-top: 0;
  margin-bottom: 3rem;
}
.yellow_popup a.buy_insure {
  padding: 1.5rem 2.7rem 1.5rem;
  height: 4.7rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
    background: #1495D6;
  border: 1px solid #1495D6;
  -webkit-border-radius: 10em;
  border-radius: 10em;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}
.yellow_popup a.buy_insure:hover {
    color: #000;
    border-color: #000;
    background: transparent;
    text-decoration: none;
}
.yellow_popup a.buy_insure:focus {
  background: #1495D6;
  border-color: #1495D6;
  text-decoration: none;
    color: #000;
    text-decoration: none;
}
.yellow_popup .buy_list {
  display: none;
  margin-bottom: 3rem;
}

.diya_popup .popup_title {
  background: #EBF9EE;
  color: #000;
}

.diya_popup .title {
  font-weight: 500;
  font-size: 25px;
  line-height: 29px;
}

.diya_app_guide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.diya_app_guide .left {
  padding-right: 8.5rem;
}

.diya_app_guide .download {
  width: 182px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  line-height: 21px;
  text-align: center;
}

.diya_app_guide .download p {
  margin-bottom: 15px;
}

.diya_app_guide .qr_code {
  margin-bottom: 25px;
}

.diya_app_guide .download_btn {
  display: block;
  margin-bottom: 15px;
}

.public_popup {
  font-size: 18px;
  line-height: 30px;
}

.public_popup ul li {
  margin-bottom: 30px;
  position: relative;
  padding-left: 25px;
}

.public_popup ul li:last-child {
  margin-bottom: 0;
}

.public_popup .important_info {
  margin-top: 10px;
  padding: 50px;
  background: #FFF8F8;
  -webkit-border-radius: 5px;
          border-radius: 5px;
}

.public_popup .important_info .title {
  margin-bottom: 30px;
  padding: 13px 18px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-weight: bold;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #E65655;
  color: #fff;
}

.public_popup .important_info ul li {
  margin-bottom: 20px !important;
}

.public_popup .important_info ul li:last-child {
  margin-bottom: 0 !important;
}

.abroad_popup {
  font-size: 18px;
  line-height: 30px;
}

.abroad_popup .popup_title {
  margin-bottom: 30px;
}

.abroad_popup .title {
  font-size: 25px;
  line-height: 29px;
}

.pdf_popup .popup_inner {
  padding: 0;
  height: auto;
  max-height: none;
}

.pdf_popup iframe, .pdf_popup embed {
  display: block;
  width: 100%;
  height: -webkit-calc(100vh - 60px);
  height: calc(100vh - 60px);
}

.insure_for_aged .popup_inner {
  width: 60rem;
}

.p_inUkraine .s_order {
    margin-top: 5rem;
}
.p_inUkraine .s_order .insurance_banner {
    margin-top: 0;
    margin-bottom: 0;
}
@media (max-width: 991.98px) {
    .p_inUkraine .s_order {
        margin-top: -80px;
    }
}
@media (max-width: 767.98px) {
    .p_inUkraine .s_order {
        margin-top: -140px;
    }
}
@media (max-width: 575.98px) {

    .p_inUkraine .s_order {
        margin-top: 80px;
    }
}

.main_header {
  position: relative;
  z-index: 30;
  margin-top: 4rem;
  margin-bottom: 1rem;
}

.main_header .logo {
  position: relative;
    width: 29rem;
    margin-top: -0.8rem;
}

.main_header .contacts_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
    white-space: nowrap;
}
.main_header .contacts_item a {
  margin-right: 3rem;
}
.main_header .contacts_item:last-child a {
  margin-right: 0;
}
.main_header .red_line {
  margin-left: auto;
  /*margin-right: auto;*/
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
    white-space: nowrap;
}

.main_header .red_line p {
  margin-right: 10px;
}
.main_header .red_line i {
  position: relative;
  top: -1px;
  margin-right: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.main_header .red_line a {
  margin-right: 3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.main_header .red_line a:hover {
  color: #000;
}
.main_header .red_line a img {
  position: relative;
  top: -1px;
  margin-right: 8px;
}
@media (max-width: 480.98px) {
    .header_inner {
        flex-wrap: wrap;
    }
}

.header_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

body.menu_open {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.main_header {
    font-size: 14px;
}
@media (max-width: 991px) {
    .main_header {
        margin-top: 0!important;
        margin-bottom: 0;
        padding-top: 15px;
        position: relative;
        height: auto;
    }
    .main_header .logo {
        top: auto;
        width: 145px;
    }
}

.header_links {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header_links_desktop {
    margin-right: 6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.header_links_desktop .header_contacts {
    margin-right: 0;
}
.header_links_desktop .contacts_item:first-child {
    margin-right: 3rem;
}
.header_links_desktop .contacts_item i {
    display: block;
    flex-shrink: 0;
}
.header_links_desktop .contacts_item img {
    display: block;
    flex-shrink: 0;
}
.header_links_desktop .contacts_item a {
    margin-right: 2rem;
    flex-shrink: 0;
}
.header_links_desktop .contacts_item:last-child a {
    margin-right: 2rem;
}
.header_links_title {
    /*margin-left: 2rem;*/
}


@media (max-width: 991.98px) {
    .header_links {
        margin-left: 0 !important;
        width: 100%;
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }
}

@media (max-width: 479.98px) {
    .p_non-return .header_links {
        width: 100%;
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }
}

.header_menu {
    margin-right: 6rem;
}
.header_menu a {
  margin-right: 2rem;
}
.header_menu a:last-child {
  margin-right: 0;
}

@media (max-width: 991.98px) {
  .header_menu {
      margin-right: 0;
  }
  .header_menu a {
    margin-right: 0;
  }
}

.header_contacts {
    margin-left: auto;
    margin-right: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 991.98px) {
    .header_contacts {
        margin-right: 0;
    }
}

.contacts_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 991.98px) {
    .contacts_item {
        margin-right: 0;
    }
}

.contacts_item i {
    margin-right: 8px;
}

.contacts_item img {
    display: block;
    flex-shrink: 0;
}

.contacts_item a:hover {
    color: #000;
}

.in_out_select {
    margin-right: 4rem;
    position: relative;
    padding: 2px;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 10em;
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
}

.in_out_select ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.in_out_select li {
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.in_out_select a {
    color: #000;
}

.in_out_select li:nth-child(1) .item.active {
    background: #1495D6;
}

.in_out_select li:nth-child(2) .item.active {
    background: #FDE92A;
    color: #000;
}

.in_out_select .item {
    width: 12.2rem;
    height: 3.5rem;
    border-radius: 10em;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.in_out_select .item.active {
    color: #FFFFFF;
    pointer-events: none;
}

.menu_btn {
    display: none;
}
@media (max-width: 991.98px) {
    .in_out_select {
        display: none;
    }
    .menu_btn {
        margin-right: 5px;
        position: relative;
        z-index: 110;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        margin-left: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 28px;
        height: 16px;
    }
    .menu_btn.active .ic_open {
        display: none;
    }
    .menu_btn.active .ic_close {
        display: block;
    }
    .menu_btn .ic_close {
        display: none;
    }
    .menu_btn img {
        display: block;
    }
}

.top_menu_mob {
    display: none;
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    color: #FFFFFF;
    text-align: center;
    pointer-events: none;
    -webkit-transition: background .2s;
    -o-transition: background .2s;
    transition: background .2s;
    background: transparent;
}

@media (max-width: 991.98px) {
    .top_menu_mob {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
    .top_menu_mob.active {
        background: rgba(0, 0, 0, 0.4);
        pointer-events: auto;
    }
    .top_menu_mob.active .inner {
        -webkit-transform: translateX(0vw);
        -ms-transform: translateX(0vw);
        transform: translateX(0vw);
    }
    .top_menu_mob .inner {
        padding: 110px 20px 110px;
        width: 80%;
        height: 100%;
        overflow-y: auto;
        background: #191919;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-transform: translateX(100vw);
        -ms-transform: translateX(100vw);
        transform: translateX(100vw);
        -webkit-transition: -webkit-transform .5s ease-in-out;
        transition: -webkit-transform .5s ease-in-out;
        -o-transition: transform .5s ease-in-out;
        transition: transform .5s ease-in-out;
        transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out;
    }
    .top_menu_mob .lang_select {
        background: #191919;
    }
    .top_menu_mob .lang_select .active_lang {
        color: #FFFFFF;
    }
    .top_menu_mob .lang_select ul {
        background: #191919;
    }
    .top_menu_mob .lang_select ul a {
        color: #FFFFFF;
    }
}

.top_menu_mob .logo {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
    margin-right: 0;
    margin-bottom: 30px;
}
.top_menu_mob .in_out_select {
    display: block!important;
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
    margin-right: 0;
    margin-bottom: 50px;
}

@media (max-width: 575.98px) {
    .top_menu_mob .in_out_select li.active {
        display: block;
    }
}

.top_menu_mob .header_menu {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
    margin-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.top_menu_mob .header_menu a {
    margin-bottom: 50px;
}

.top_menu_mob .header_menu a:hover {
    color: #ffffff;
}

.top_menu_mob .header_menu a:last-child {
    margin-bottom: 0;
}

.top_menu_mob .header_menu a:first-child {
    margin-bottom: 50px;
}

.top_menu_mob .header_contacts {
    margin-right: auto;
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.top_menu_mob .lang_select {
    margin-bottom: 145px;
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
    margin-right: 0;
    flex-shrink: 0;
}

.top_menu_mob .header_diya {
    margin-top: 80px;
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.top_menu_mob .header_diya a {
    margin-left: 4px;
    margin-right: 4px;
}

.top_menu_mob .header_links {
    margin-bottom: 50px;
    margin-left: 0;
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.top_menu_mob .contacts_item {
    margin-bottom: 30px;
}

.top_menu_mob .contacts_item:last-child {
    margin-bottom: 0;
}

.top_menu_mob .contacts_item:first-child {
    margin-bottom: 30px;
}

.top_menu_mob .contacts_item a {
    margin-right: 0 !important;
}

.top_menu_mob .contacts_item a:hover {
    color: #ffffff !important;
}

.s_top .buy_btn {
    position: absolute;
    left: 0;
    bottom: -9rem;
    padding: 1.5rem 2.7rem 1.5rem;
    height: 6rem;
    color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    white-space: nowrap;
    background: #1495D6;
    border: 1px solid #1495D6;
    -webkit-border-radius: 10em;
    border-radius: 10em;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}
.s_top .buy_btn:hover {
    color: #000;
    border-color: #000;
    background: transparent;
}
.s_top .buy_btn:focus {
    color: #000;
}
@media (max-width: 991.98px) {
    .s_top .buy_btn {
        font-size: 14px;
    }
}
@media (max-width: 575.98px) {
    .s_top .buy_btn {
        left: 0;
    }
}

.s_top_inner {
  min-height: 642px;
}
.s_top .content {
  margin-top: -3rem;
  position: relative;
  z-index: 20;
  font-size: 14px;
  line-height: 30px;
}

.s_top .map_mob {
  display: none;
}

.s_top .map {
  position: relative;
  z-index: 10;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 75rem;
}

.s_top .map .inner {
  position: relative;
  margin-left: -5rem;
}

.s_top .map .image {
  position: relative;
  z-index: 10;
  width: 90rem;
}

.s_top .map .image img + img {
  display: none;
}

.s_top .map .circles {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -49.5rem;
  margin-top: -54.5rem;
  width: 105rem;
  height: 105rem;
}

.s_top .map .circles img {
  width: 100%;
}

.s_top .page_title {
  margin-bottom: 5rem;
  font-weight: 500;
  font-size: 4rem;
  line-height: 4.5rem;
  text-transform: uppercase;
}

.s_top .text-1 {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  margin-bottom: 3rem;
  padding: 30px;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #FFFFFF;
  box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.04);
  -webkit-border-radius: 1rem;
  border-radius: 1rem;
}

.s_top .text-1 img {
  position: absolute;
  top: -16px;
  right: -24px;
}

.s_top ul li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 34px;
}

.s_top ul li:last-child {
  margin-bottom: 0;
}

.s_top ul li:before {
  position: absolute;
  display: block;
  content: '';
  top: 4px;
  left: 0;
  width: 11px;
  height: 11px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background: #1495D6;
}

.s_top_inner {
  position: relative;
  height: 100%;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.s_insurance {
  margin-bottom: 150px;
  position: relative;
  z-index: 20;
  padding-top: 3rem;
}

.p_inUkraine .s_insurance {
  margin-top: 5rem;
}

.s_insurance .insurance_items {
  margin-left: -4.5rem;
  margin-right: -4.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.insurance_item {
  position: relative;
  width: 50%;
  margin-left: 4.5rem;
  margin-right: 4.5rem;
  -webkit-border-radius: 2rem;
  border-radius: 2rem;
  -webkit-box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.04);
  box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.insurance_item.yellow {
  width: 100%;
}
.insurance_item.yellow .head {
  background: #FDE92A;
  font-weight: 700;
  color: #000;
  white-space: normal;
  height: 8.6rem;
  font-size: 3rem;
  line-height: 3.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.insurance_item.yellow .body {
  padding: 5rem 20rem;
  background: #F9F9F9;
  text-align: center;
}
.insurance_item.yellow .body .title {
  font-size: 2rem;
  font-weight: 500;
}
.insurance_item.yellow .text {
  margin-bottom: 4rem;
  font-size: 1.6rem;
  line-height: 3rem;
}
.insurance_item.yellow .buy {
  justify-content: center;
}
.insurance_item.yellow .details {
  color: #000;
}
.insurance_item.yellow .details:hover {
  color: #000;
}
.insurance_item.yellow a.buy_btn {
  margin-right: 40px;
  border-radius: 10em;
    background: #1495D6;
    border-color: #1495D6;
    color: #fff;
}
.insurance_item.yellow a.buy_btn:hover {
    color: #000;
    border-color: #000;
    background: transparent;
}
.insurance_item.yellow a.buy_btn:focus {
    color: #000;
}

.insurance_item.green .head {
  background: #78BC60;
}

.insurance_item.green .body {
  background: #F7FFF4;
}

.insurance_item.green a {
  color: #78BC60;
}

.insurance_item.green a:hover {
  color: #78BC60;
  text-decoration: underline;
}

.insurance_item.green a:focus {
  color: #78BC60;
}

.insurance_item.green a.buy_btn:hover {
  background: #78BC60;
  border-color: #78BC60;
}

.insurance_item.red .head {
  background: #E65655;
}

.insurance_item.red .body {
  background: #FFF8F8;
}

.insurance_item.red a {
  color: #E65655;
}

.insurance_item.red a:hover {
  color: #E65655;
  text-decoration: underline;
}

.insurance_item.red a:focus {
  color: #E65655;
}

.insurance_item.red a.buy_btn:hover {
  color: #fff;
  background: #E65655;
  border-color: #E65655;
}

.insurance_item .head {
  padding: 12px 2rem;
  color: #fff;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 2.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.insurance_item .body {
  height: 100%;
  padding: 5rem;
  color: #000000;
  -webkit-border-radius: 0 0 5px 5px;
          border-radius: 0 0 5px 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.insurance_item .text {
  margin-bottom: 4.5rem;
  font-size: 2rem;
  line-height: 1.5;
}

.insurance_item .buy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.insurance_item a.buy_btn {
  padding: 1.5rem 2.7rem 1.5rem;
  height: 4.7rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #000000;
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  border: 1px solid #000000;
  -webkit-border-radius: 10em;
          border-radius: 10em;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.insurance_item a.buy_btn:hover {
  color: #000000;
  text-decoration: none;
}

.insurance_item a.details {
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.insurance_item a.details:hover {
  text-decoration: none;
}

.insurance_item a.details:hover img {
  -webkit-transform: translateX(10px);
      -ms-transform: translateX(10px);
          transform: translateX(10px);
}

.insurance_item a.details img {
  margin-bottom: 2px;
  margin-left: 20px;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.pcr_test_disabled .remote_pcr {
  display: none;
}
.pcr_test_disabled .s_form .show_test_form {
  display: none;
}
.pcr_test_disabled .pcr_form_wrap {
  display: none!important;
}
.pcr_test_disabled .insurance_form_discount_banner {
  display: none;
}

.s_order {
  margin-top: 22rem;
  margin-bottom: 22rem;
}

.s_order .order_test {
  padding-left: 10rem;
  padding-right: 10rem;
  height: 5rem;
  width: 100%;
  background: #FDE92A;
  font-size: 2.5rem;
  line-height: 2.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.s_order .order_test a {
  color: #0070A9;
  text-decoration: underline;
}
.s_order .order_test a:hover,
.s_order .order_test a:focus {
  text-decoration: none;
}
.insurance_banner {
  position: relative;
  margin-top: 22rem;
  margin-bottom: 22rem;
  background: #1495D6;
  padding: 4.5rem 10rem 4.5rem 11rem;
  color: #fff;
  -webkit-border-radius: 2rem;
  border-radius: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.insurance_banner .bd_img {
  position: absolute;
  top: 50%;
  margin-top: -81px;
  left: 5.2rem;
}

.insurance_banner .content {
  position: relative;
  padding-right: 5rem;
  z-index: 10;
}

.insurance_banner .s_title {
  margin-bottom: 1.6rem;
  font-weight: bold;
  font-size: 3rem;
  line-height: 3rem;
  text-transform: uppercase;
}

.insurance_banner .text-1 {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2.1rem;
}

.insurance_banner .text-2 {
  font-size: 14px;
  line-height: 16px;
}

.insurance_banner .btn {
  margin-top: 4px;
  display: block;
  position: relative;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #1495D6;
}

.insurance_banner .btn:hover .inner, .insurance_banner .btn:focus .inner {
  top: -2px;
}

.insurance_banner .btn .inner {
  position: relative;
  z-index: 10;
  top: -4px;
  width: 264px;
  height: 63px;
  background: #FFFFFF;
  -webkit-border-radius: 10em;
          border-radius: 10em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.insurance_banner .btn:before {
  position: absolute;
  content: '';
  display: block;
  width: 264px;
  height: 63px;
  left: 0;
  top: 0;
  background: #007AB8;
  -webkit-border-radius: 10em;
          border-radius: 10em;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.s_video {
  margin-bottom: 24rem;
}
.s_video .inner {
  position: relative;
  width: 100%;
}
.video_frame{
  overflow:hidden;
  position:relative;
  padding-bottom:54.15%;
  padding-top:30px;
  height:0;
}
.video_frame iframe {
  position:absolute;
  width:100%;
  height:100%;
  left:0;
  top:0;
}

@media (max-width: 1600px) {
  .video_frame {
    padding-bottom:54%;
  }
}
@media (max-width: 1440px) {}
@media (max-width: 1366px) {
  .video_frame {
    padding-bottom:53.65%;
  }
}
@media (max-width: 991px) {
  .s_insurance {
    margin-bottom: 50px;
  }
  .s_video {
    margin-bottom: 66px;
  }
  .video_frame {
    padding-bottom: 52.2%;
  }
}
@media (max-width: 480px) {
  .video_frame {
    padding-bottom: 48.2%;
  }
}

.rules_title {
  font-weight: bold;
  font-size: 3rem;
  line-height: 3.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.rules_title .inner {
  padding: 11px 20px 11px 17px;
  background: #FDE92A;
  -webkit-border-radius: 10em;
  border-radius: 10em;
}

.rules_city {
    margin-bottom: 22rem;
}

.rules_city .rules_title {
  margin-bottom: 6.5rem;
}

.rules_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.rules_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.rules_item .image {
  position: relative;
  margin-bottom: 2.2rem;
  width: 13.6rem;
  height: 13.6rem;
  border-radius: 50%;
  box-shadow: -3px 2px 10px rgb(0 0 0 / 8%);
}
.rules_item .image:after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 5px solid #FFFFFF;
  z-index: 10;
}

.rules_item .text {
  width: 25rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 1.8rem;
  line-height: 2.1rem;
  text-align: center;
}

.rules_item_2 {
  padding-left: 2.4rem;
  padding-right: 2.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.rules_item_2 .image {
  position: relative;
  margin-bottom: 1.3rem;
  width: 13.6rem;
  height: 13.6rem;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  box-shadow: -3px 2px 10px rgb(0 0 0 / 8%);
}
.rules_item_2 .image:after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid #FFFFFF;
  z-index: 10;
}

.rules_item_2 .text {
  padding-top: 9px;
  padding-bottom: 13px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 1.8rem;
  line-height: 2.1rem;
  text-align: center;
  background: #FFFFFF;
  /*border: 3px solid #C6E8F9;*/
  -webkit-border-radius: 10em;
          border-radius: 10em;
  box-shadow: -3px 2px 10px rgb(0 0 0 / 8%);
}

.city_transport {
    margin-bottom: 22rem;
}
.city_transport_inner {
  border-radius: 2rem;
  background: #FDE92A;
}
.city_transport_row {
    padding: 4rem 12.5rem 4.2rem 10rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.city_transport .rules_title {
    margin-bottom: 4rem;
    letter-spacing: normal;
}
.city_transport .rules_title .inner {
    background-color: #fff;
    -webkit-border-radius: 10em;
    border-radius: 10em;
}
.city_transport .rules_title .inner span {
    color: #1495D6;
}
.city_transport .text {
    font-size: 1.8rem;
    line-height: 135.69%;
    letter-spacing: 0.1em;
}
.city_transport .icon {
    margin-bottom: 3rem;
}
.city_transport_col:nth-child(1) {
    padding-right: 11rem;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.city_transport_col:nth-child(2) {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.city_transport .blue_btn {
    height: 4.1rem;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 2.1rem;
    text-transform: none;
    white-space: nowrap;
    border-radius: 10em;
}

@media (max-width: 991.98px) {
    .city_transport .rules_title {
        margin-bottom: 30px;
        width: 100%;
    }
    .city_transport .rules_title br {
        display: none;
    }
    .city_transport_col:nth-child(1) {
        margin-bottom: 40px;
        padding-right: 0;
        width: 100%;
    }
    .city_transport_row {
        padding: 30px 20px 50px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background: none;
    }
    .city_transport .text {
        font-size: 16px;
    }
    .city_transport .blue_btn {
        font-size: 16px;
        line-height: 18px;
    }
}
@media (max-width: 479.98px) {
}

.rules_hotels {
  margin-bottom: 22rem;
}

.rules_hotels .rules_hotels_inner {
  padding: 6rem 0 6.5rem 7rem;
  border-radius: 2rem;
  box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.04);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #FFFFFF url(../img/people.svg) no-repeat bottom right 10px;
  -webkit-background-size: 90rem auto;
          background-size: 90rem auto;
}

.rules_hotels .left {
  width: 50rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.rules_hotels .rules_title {
  margin-bottom: 6rem;
}
.rules_hotels .rules_title .inner {
  background: #FFFFFF;
  padding-left: 0;
}

.rules_hotels .text-1 {
  margin-bottom: 7rem;
  font-size: 2.5rem;
  line-height: 2.9rem;
}

.rules_hotels .details {
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
}

.rules_hotels .details:hover {
  text-decoration: none;
}

.rules_hotels .details:hover img {
  -webkit-transform: translateX(10px);
      -ms-transform: translateX(10px);
          transform: translateX(10px);
}

.rules_hotels .details img {
  margin-bottom: 2px;
  margin-left: 20px;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.rules_hotels .rules_wrap {
  margin-top: 3rem;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.rules_what_if {
  margin-bottom: 22rem;
}

.rules_what_if .rules_hotels_inner {
  padding: 6rem 0 6.5rem 7rem;
  border-radius: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.04);
  background: #FFFFFF url(../img/people-2.svg) no-repeat bottom right 6px;
}

.rules_what_if .left {
  width: 52rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.rules_what_if .rules_title {
  margin-bottom: 6rem;
}
.rules_what_if .rules_title .inner {
  background: #FFFFFF;
  padding-left: 0;
}

.rules_what_if .text-1 {
  margin-bottom: 7rem;
  font-size: 2.5rem;
  line-height: 2.9rem;
}

.rules_what_if .details {
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
}

.rules_what_if .details:hover {
  text-decoration: none;
}

.rules_what_if .details:hover img {
  -webkit-transform: translateX(10px);
      -ms-transform: translateX(10px);
          transform: translateX(10px);
}

.rules_what_if .details img {
  margin-bottom: 2px;
  margin-left: 20px;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.covid_sert {
  margin-bottom: 18rem;
}

.covid_sert .covid_sert_inner {
  padding: 10rem 0 6.5rem 7rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #FDE92A url(../img/covid-sert-img.svg) no-repeat bottom 57px right 44px;
  -webkit-border-radius: 2rem;
  border-radius: 2rem;
}

.covid_sert .left {
  width: 52rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.covid_sert .rules_title {
  margin-bottom: 3rem;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.covid_sert .rules_title .inner {
  background: #fff;
  -webkit-border-radius: 10em;
  border-radius: 10em;
}

.covid_sert .text-1 {
  margin-bottom: 7rem;
  font-size: 2.5rem;
  line-height: 2.9rem;
}

.covid_sert .details {
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000;
}

.covid_sert .details:hover {
  text-decoration: none;
}

.covid_sert .details:hover img {
  -webkit-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}

.covid_sert .details img {
  margin-bottom: 2px;
  margin-left: 20px;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.rules_public {
  margin-bottom: 16rem;
}

.rules_public .rules_title {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 4rem;
}
.rules_public .rules_title .inner {
  padding-left: 5rem;
  padding-right: 5rem;
}

.rules_public .rules_public_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.rules_public .rules_wrap {
  padding-left: 20px;
  padding-right: 20px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.rules_public .rules_item {
  padding-left: 2.4rem;
  padding-right: 2.4rem;
  margin-bottom: 60px;
  width: 50%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.remote_pcr {
  margin-bottom: 20rem;
  display: none;
}
.remote_pcr .s_title {
  margin-bottom: 8rem;
  font-weight: bold;
  font-size: 3rem;
  line-height: 3.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.remote_pcr .inner {
  padding: 11px 20px 11px 17px;
  background: #FDE92A;
}
.remote_pcr_wrap {
  width: 111rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.remote_pcr .buttons_wrap {
  margin-top: 8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.remote_pcr_item {
  position: relative;
  width: 26rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.remote_pcr_item .image:after {
  position: absolute;
  display: block;
  content: '';
  top: 50%;
  left: 100%;
  margin-top: -1.4rem;
  margin-left: 1rem;
  width: 16.9rem;
  height: 2.5rem;
  background: url(../img/curve-1.svg) no-repeat center;
  -webkit-background-size: contain;
  background-size: contain;
  -webkit-transform: rotateZ(4deg);
  -ms-transform: rotate(4deg);
  transform: rotateZ(4deg);
}
.remote_pcr_item:nth-child(2n) .image:after {
  width: 16.8rem;
  height: 2.7rem;
  background-image: url(../img/curve-2.svg);
  -webkit-transform: rotateZ(0deg);
  -ms-transform: rotate(0deg);
  transform: rotateZ(0deg);
}
.remote_pcr_item:last-child .image:after {
  display: none;
}

.remote_pcr_item .step {
  position: absolute;
  top: 1.2rem;
  left: -2.5rem;
  font-weight: bold;
  font-size: 9.6rem;
  line-height: 11.2rem;
  text-transform: uppercase;
  color: #BDD2DF;
}
.remote_pcr_item .image {
  position: relative;
  margin-bottom: 2.2rem;
  width: 13.6rem;
  height: 13.6rem;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  box-shadow: -3px 2px 10px rgb(0 0 0 / 8%);
}
.remote_pcr_item .image:before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid #FFFFFF;
  z-index: 10;
}
.remote_pcr_item .image img {
  display: block;
}
.remote_pcr_item .text {
  font-size: 1.8rem;
  line-height: 2.1rem;
  text-align: center;
}
.remote_pcr .details {
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000;
}
.remote_pcr .details:hover {
  text-decoration: none;
}
.remote_pcr .details:hover img {
  -webkit-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}
.remote_pcr .details img {
  margin-bottom: 2px;
  margin-left: 20px;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.prohibition {
  margin-right: 5rem;
  padding: 4.5rem 7rem 4.2rem 5rem;
  box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.04);
  background: #FFFFFF;
  -webkit-border-radius: 2rem;
          border-radius: 2rem;
  font-size: 1.8rem;
  line-height: 3rem;
}

.prohibition .title {
  margin-bottom: 3rem;
  padding: 1.3rem 1.8rem;
  background: #E65655;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 2.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 1rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.prohibition .prohibition_item {
  position: relative;
  padding-left: 27px;
  margin-bottom: 4rem;
}

.prohibition .prohibition_item:last-child {
  margin-bottom: 0;
}

.prohibition .prohibition_item:before {
  position: absolute;
  display: block;
  content: '';
  top: 9px;
  left: 0;
  width: 12px;
  height: 12px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background: #E65655;
}

.prohibition .details {
  margin-top: 5rem;
  padding-left: 27px;
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
}

.prohibition .details:hover {
  text-decoration: none;
}

.prohibition .details:hover img {
  -webkit-transform: translateX(10px);
      -ms-transform: translateX(10px);
          transform: translateX(10px);
}

.prohibition .details img {
  margin-bottom: 2px;
  margin-left: 20px;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.s_form .show_form {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  margin-bottom: 5rem;
  width: 264px;
  display: block;
  position: relative;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
}
.s_form .show_test_form {
  color: #262525;
}
.show_form_btns {
  margin-bottom: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p_fromUkraine .s_form .show_form {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5rem;
}
.p_fromUkraine .main_form {
  display: none;
}
.p_fromUkraine .show_form.shown .main_form {
  display: block;
}

.s_form .show_form:hover, .s_form .show_form:focus {
  color: #fff;
}
.s_form .show_test_form:hover, .s_form .show_test_form:focus {
  color: #262525;
}

.s_form .show_form:hover .inner, .s_form .show_form:focus .inner {
  top: -2px;
}

.s_form .show_form.shown img {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.s_form .show_form.shown ~ .main_form {
  display: block;
  opacity: 0;
  -webkit-animation: fadeIn .2s forwards;
  animation: fadeIn .2s forwards;
}

.s_form .show_form .inner {
  pointer-events: none;
  position: relative;
  z-index: 10;
  top: -4px;
  width: 264px;
  height: 63px;
  background: #1495D6;
  -webkit-border-radius: 10em;
          border-radius: 10em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.s_form .show_form:before {
  position: absolute;
  content: '';
  display: block;
  width: 264px;
  height: 63px;
  left: 0;
  top: 0;
  background: #007AB8;
  -webkit-border-radius: 10em;
          border-radius: 10em;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.s_form .show_test_form .inner {
  background: #FDE92A;
}

.s_form .show_test_form:before {
  background: #B6A71A;
}

.s_form .show_form.disabled {
  opacity: .6;
  pointer-events: none;
}

.s_form .show_form img {
  margin-left: 9px;
}

.s_form .partner_link {
  padding-top: 1.5rem;
  display: none;
  font-size: 1.6rem;
}

.s_form .partner_link a {
  color: #1495D6;
}

.s_form .partner_link a:hover {
  text-decoration: underline;
}

.s_form .show_form.shown ~ .partner_link {
  display: block;
}

.s_diya {
  margin-bottom: 28rem;
}

.s_diya .s_diya_inner {
  position: relative;
  height: 47.5rem;
  background: #FFFFFF;
  box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.04);
  border-radius: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.s_diya .bg_circle {
  position: absolute;
  width: 79.4rem;
  height: 47.5rem;
  overflow: hidden;
  right: 0;
  bottom: 0;
}

.s_diya .bg_circle .inner {
  position: absolute;
  width: 84.2rem;
  height: 84rem;
  right: -9rem;
  bottom: -35.5rem;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background: #EBF9EE;
}

.s_diya .icons {
  margin-bottom: 9.8rem;
  margin-top: -44px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.s_diya .icons i {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 15px;
}

.s_diya .s_title {
  margin-bottom: 3.3rem;
  font-weight: 500;
  font-size: 4rem;
  line-height: 4.5rem;
  text-transform: uppercase;
}

.s_diya .details {
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
}

.s_diya .details:hover {
  text-decoration: none;
}

.s_diya .details:hover img {
  -webkit-transform: translateX(10px);
      -ms-transform: translateX(10px);
          transform: translateX(10px);
}

.s_diya .details img {
  margin-bottom: 2px;
  margin-left: 20px;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.s_diya .download {
  padding: 2.7rem 6.5rem 1.5rem;
  text-align: center;
  font-size: 1.8rem;
  line-height: 2.1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.s_diya .download .text {
  margin-bottom: 1.5rem;
}

.s_diya .download .qr_code {
  margin-bottom: 2.8rem;
}

.s_diya .download .download_btn {
  margin-bottom: 1.8rem;
}

.diya_info {
  position: relative;
  z-index: 10;
  padding-left: 7rem;
  padding-bottom: 9.5rem;
  width: 52rem;
}

.diya_info .text {
  margin-bottom: 8rem;
  font-size: 2.5rem;
  line-height: 2.9rem;
}

.diya_app {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.diya_app .smart {
  -webkit-box-shadow: 0px 4px 50px rgba(17, 17, 17, 0.25);
          box-shadow: 0px 4px 50px rgba(17, 17, 17, 0.25);
  background: #1c1c1c;
  border: 10px solid #1c1c1c;
  -webkit-border-radius: 30px;
          border-radius: 30px;
  overflow: hidden;
}

.diya_app .smart img {
  display: block;
}

.form_preload {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  background: rgba(255,255,255, 0.5);
  opacity: 0;
  pointer-events: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}
.form_preload.active {
  opacity: 1;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
  pointer-events: auto;
}
.form_preload img {
  display: block;
  width: 66px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.main_form {
  position: relative;
  /*display: none;*/
  padding: 7rem 15rem 8rem;
  background: #1495D6;
  color: #FFFFFF;
  border-radius: 2rem;
  box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.04);
}

.main_form .head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.main_form .head_2 {
  width: 100%;
  margin-bottom: 4rem;
  padding: 2.2rem 3.5rem;
  font-weight: 500;
  font-size: 4rem;
  line-height: 4.5rem;
  text-align: center;
  text-transform: uppercase;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.main_form .form_title {
  margin-bottom: 3rem;
  font-weight: 500;
  font-size: 4rem;
  line-height: 4.5rem;
  text-transform: uppercase;
}

.main_form .insurance_select {
  position: relative;
  width: 100% !important;
  margin-bottom: 5rem;
  padding: 2.2rem;
  /*display: -webkit-box;*/
  /*display: -webkit-flex;*/
  /*display: -ms-flexbox;*/
  /*display: flex;*/
  /*-webkit-box-align: center;*/
  /*-webkit-align-items: center;*/
      /*-ms-flex-align: center;*/
          /*align-items: center;*/
  /*-webkit-box-pack: justify;*/
  /*-webkit-justify-content: space-between;*/
      /*-ms-flex-pack: justify;*/
          /*justify-content: space-between;*/
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
}
.main_form .insurance_select .slick-track {
  position: static;
  min-width: 100%;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.main_form .insurance_select .slick-track:before,
.main_form .insurance_select .slick-track:after {
  display: none;
}
.slick-arrow {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -7px;
  font-size: 0;
  width: 8px;
  height: 15px;
  background-color: #000;
  cursor: pointer;
  z-index: 100;
  opacity: 1;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.slick-arrow.slick-disabled {
  opacity: 0.3;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: auto;
}
.slick-prev {
  left: 0px;
  background: url(../img/arrow-2-left.svg) no-repeat center;
}
.slick-next {
  right: 0px;
  background: url(../img/arrow-2-right.svg) no-repeat center;
}

.main_form .insurance_comp {
  min-width: 250px;
  /*min-width: 33%;*/
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.main_form .insurance_comp.disabled {
  pointer-events: none;
  opacity: 0.3;
}
.main_form .insurance_comp.slick-slide {
  outline: none;
}

.main_form .insurance_comp .radio {
  margin-right: 17px;
}

.main_form .comp_logo {
  cursor: pointer;
}

.main_form .body {
  padding-top: 3rem;
  display: none;
}

.main_form .body.active {
  display: block;
}

.main_form .text-1 {
  margin-bottom: 2.4rem;
  font-size: 2rem;
  line-height: 143.2%;
}

.main_form .attention_text.active {
  text-decoration: underline;
}

@media (min-width: 200px) and (max-width: 425px) {
    .pcr_form {
        height: 1550px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
}

@media (min-width: 426px) and (max-width: 823px) {
    .pcr_form {
        height: 1400px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
}

@media (min-width: 825px) and (max-width: 1439px) {
    .pcr_form {
        height: 1200px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
}



@media (min-width: 1440px) and (max-width: 2000px) {
    .pcr_form {
        height: 810px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
}

#carinsframe {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
	border-radius: 15px;
    border: 1px solid #888;
}

.pcr_form .attention_text {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 143.2%;
  color: #FDE92A;
}

.main_form .text-2 {
  font-size: 2.2rem;
  line-height: 2.6rem;
  text-align: center;
}
.main_form .text-2 a {
  color: #fff;
}

.main_form .inputs {
  position: relative;
  margin-bottom: 1.5rem;
  width: -webkit-calc(100% + 12rem);
  width: calc(100% + 12rem);
  margin-left: -6rem;
  margin-right: -6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.main_form .inputs .cols {
  padding-left: 6rem;
  padding-right: 6rem;
  width: 50%;
  max-width: 50%;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}

.main_form .tests_count {
  position: relative;
  margin-bottom: 1rem;
  width: -webkit-calc(100% + 12rem);
  width: calc(100% + 12rem);
  margin-left: -6rem;
  margin-right: -6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.main_form .tests_count .cols {
  padding-left: 6rem;
  padding-right: 6rem;
  width: 50%;
  max-width: 50%;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}

.main_form .form_field {
  position: relative;
  margin-bottom: 2.4rem;
  padding: 6px 12px;
  border: 1px solid transparent;
  border-bottom-color: #fff;
}

.main_form .form_field .notes {
  position: absolute;
  /*max-width: 200px;*/
  text-align: center;
  top: 0;
  right: 0;
  font-size: 14px;
  line-height: 120%;
  color: rgba(255, 255, 255, 0.87);
}
.main_form .form_field.citizenship .notes {
  right: 12px;
}

.main_form .form_field .lang_warning {
  margin-top: 10px;
  position: absolute;
  width: 100%;
  background: #1495D6;
  z-index: 20;
  top: 100%;
  left: 0;
  font-size: 14px;
  color: #000;
  display: none;
}

.main_form .form_field label {
  position: relative;
  width: 100%;
  display: block;
}

.main_form .form_field input {
  width: 100%;
  font-size: 2rem;
  line-height: 143.2%;
  background-color: transparent;
  color: #fff;
}

.main_form .form_field input:focus + .notes {
  display: none;
}

.main_form .form_field input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.main_form .form_field input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.main_form .form_field input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.main_form .form_field input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.main_form .form_field input:-webkit-autofill,
.main_form .form_field input:-webkit-autofill:hover,
.main_form .form_field input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  -o-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(0, 174, 255, 0.04) 50%, rgba(255, 255, 255, 0) 51%, rgba(0, 174, 255, 0.03) 100%);
  -webkit-text-fill-color: #fff;
}

.main_form .form_field.err {
  border-color: red;
}

.main_form .form_field.err-empty {
  border-color: red;
}

.main_form .form_field.filled {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.main_form .form_field.filled label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.main_form .checks {
  margin-bottom: 5rem;
}

.main_form .checks .checkbox {
  margin-bottom: 1.6rem;
}

.main_form .checks .checkbox:last-child {
  margin-bottom: 0;
}

.main_form .insurance_form.full {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.insurance_form.full .bottom {
  order: 8;
  margin-top: 8.5rem;
}
.insurance_form.full .buttons_wrap {
  order: 9;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.insurance_form.full .bottom_2 {
  order: 9;
}
.insurance_form.full .add_person_show {
  display: none;
}
.main_form .buttons_wrap {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.main_form .buttons_wrap .btn {
  margin-right: 6rem;
}
.main_form .add_person_show {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  line-height: 143.2%;
  text-decoration: underline;
}
.main_form .add_person_show:hover,
.main_form .add_person_show:focus {
  text-decoration: none;
  color: #fff;
}
.main_form .add_person_show .notice {
  position: absolute;
  bottom: -20px;
  left: 0;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  opacity: 0;
  white-space: nowrap;
}
.main_form .add_new_person {
  font-size: 18px;
  font-weight: 700;
  line-height: 143.2%;
  text-decoration: underline;
}
.main_form .add_new_person:hover,
.main_form .add_new_person:focus {
  text-decoration: none;
  color: #fff;
}

.main_form .additional_person .person_fields {
  position: relative;
}
.main_form .delete_person {
  position: absolute;
  right: -8rem;
  top: 0.6rem;
  width: 3rem;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.main_form .delete_person img {
  width: 2rem;
}
.main_form .additional_persons {
  padding-top: 5rem;
  display: none;
  width: 100%;
}
.main_form .add_person_show.disabled {
  pointer-events: none;
  opacity: 0;
}
.main_form .additional_persons .title {
  margin-bottom: 2rem;
  font-size: 3rem;
  font-weight: 700;
  line-height: 143.2%;
}
.main_form .additional_persons .title-2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 143.2%;
}
.main_form .persons_list {
  margin-bottom: 7rem;
}
.main_form .additional_person:first-child .form_field {
  pointer-events: none;
}
.main_form .person_fields {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.main_form .person_fields .form_field {
  width: 15%;
  margin-right: 5%;
}
.main_form .person_fields .phone_field {
  width: 20%;
  margin-right: 5%;
}
/*.main_form .person_fields .birthday_field {*/
  /*width: 20%;*/
/*}*/
.main_form .person_fields .form_field:last-child {
  margin-right: 0;
}
.main_form .person_fields input {
  font-size: 1.6rem;
}
.main_form .person_fields input::placeholder {
  font-size: 1.6rem;
}

@media (max-width: 1365.98px) {
  .main_form .person_fields input {
    font-size: 12px;
  }
  .main_form .person_fields input::placeholder {
    font-size: 12px;
  }
}
@media (max-width: 991.98px) {
  .main_form .additional_persons {
    padding-top: 0;
  }
  .main_form .additional_persons .title {
    font-size: 25px;
    line-height: 1.2;
  }
  .main_form .additional_persons .title-2 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .main_form .additional_person {
    margin-bottom: 20px;
  }
  .main_form .persons_list {
    padding-right: 4rem;
    margin-bottom: 2rem;
  }
  .main_form .delete_person {
    right: -5rem;
  }
  .insurance_form.full .bottom {
    margin-top: 5rem;
  }
  .main_form .person_fields .phone_field {
    width: 25%;
  }
  .main_form .buttons_wrap {
    width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .main_form .buttons_wrap .btn {
    margin-left: 0;
  }
}

@media (max-width: 767.98px) {
  .main_form .delete_person {
    right: -6px;
    top: -4px;
  }
  .main_form .additional_persons {
    width: 100%;
  }
  .main_form .additional_person {
    position: relative;
  }
  .main_form .additional_person .person_fields {
    position: static;
  }
  .main_form .person_fields {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .main_form .person_fields .form_field {
    width: 100%;
    margin-right: 0;
  }
}
@media (max-width: 574.98px) {
  .main_form .buttons_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .main_form .add_person_show {
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .main_form .buttons_wrap .btn {
    margin-right: 0;
  }
}

.main_form .btn {
  margin-top: 4px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  text-decoration: none;
  color: #008DD4;
}

.main_form .btn:hover, .main_form .btn:focus {
  color: #008DD4;
}

.main_form .btn:hover .inner, .main_form .btn:focus .inner {
  top: -2px;
}

.main_form .btn .inner {
  pointer-events: none;
  position: relative;
  z-index: 10;
  top: -4px;
  width: 264px;
  height: 63px;
  background: #FFFFFF;
  -webkit-border-radius: 10em;
          border-radius: 10em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.main_form .btn:before {
  pointer-events: none;
  position: absolute;
  content: '';
  display: block;
  width: 264px;
  height: 63px;
  left: 0;
  top: 0;
  background: #007AB8;
  -webkit-border-radius: 10em;
          border-radius: 10em;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.main_form .btn.disabled {
  opacity: .6;
  pointer-events: none;
}
.main_form .btn.active {
  opacity: 1;
  pointer-events: unset;
}

.main_form .btn-2 {
  padding: 10px 15px;
  position: relative;
  width: 264px;
  height: 63px;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  -webkit-border-radius: 15px;
          border-radius: 15px;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.main_form .btn-2:hover, .main_form .btn-2:focus {
  color: #1495D6;
  background-color: #fff;
}

.main_form a {
  text-decoration: underline;
}

.main_form a:hover {
  text-decoration: none;
  color: #fff;
}

.main_form .code_check {
  padding-top: 8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.main_form .code_check .form_field {
  max-width: 50rem;
  padding-top: 0;
  padding-bottom: 0;
}

.main_form .code_check input {
  text-align: center;
  font-size: 25px;
  line-height: 143.2%;
}

.main_form .code_check input::-webkit-input-placeholder {
  color: #fff;
}

.main_form .code_check input::-moz-placeholder {
  color: #fff;
}

.main_form .code_check input::-ms-input-placeholder {
  color: #fff;
}

.main_form .code_check input::placeholder {
  color: #fff;
}

.main_form .code_check .error {
  display: none;
  position: absolute;
  margin-top: 5px;
  top: 100%;
  left: 0;
  width: 100%;
  text-align: center;
  color: #000;
  font-size: 1.6rem;
  line-height: 143.2%;
}

.main_form .send_again {
  margin-top: 0;
  margin-bottom: 5rem;
  display: block;
  font-size: 1.6rem;
  line-height: 143.2%;
}

.main_form .back {
  margin-bottom: 7rem;
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}

.main_form .back:hover img {
  -webkit-transform: translateX(-10px);
      -ms-transform: translateX(-10px);
          transform: translateX(-10px);
}

.main_form .back img {
  margin-bottom: 2px;
  margin-right: 2rem;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}


.radio_group {
  /*display: none!important;*/

  margin-bottom: 5.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.radio_item {
  cursor: pointer;
  margin-right: 2rem;
  margin-left: 2rem;
  padding: 2.4rem 3.4rem 2.4rem 3rem;
  height: 9rem;
  width: 29rem;
  background-color: #fff;
  -webkit-border-radius: 1.5rem;
  border-radius: 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.radio_item input[type="radio"] {
  position: absolute;
  left: -9999px;
}

.radio_item label {
  padding: 0;
  position: relative;
  display: inline-block !important;
  margin-top: 0;
  margin-bottom: 0;
  width: 2.5rem !important;
  height: 2.5rem;
  vertical-align: top;
  outline: none;
  cursor: pointer;
  border: 1px solid #AFAFAF;
  background-color: transparent;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.radio_item label:after {
  position: absolute;
  display: block;
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  left: 0.4rem;
  top: 0.4rem;
  background: #AFAFAF;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.radio_item input[type="radio"]:checked + label:after {
  background: #FDE92A;
}

.radio_item img {
  /*max-width: 17rem;*/
}

@media (max-width: 991.98px) {
  .radio_item {
    padding: 15px 15px;
    width: 240px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .radio_item img {
    margin-left: 20px;
    max-width: 170px;
    width: auto !important;
    /*height: 38px;*/
  }
  .radio_group {
    /*display: none!important;*/

    margin-bottom: 40px;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.main_form .success_icon {
  margin-bottom: 5.5rem;
}

.main_form .step_3 .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.main_form .step_3 .text-2 + .text-2 {
  margin-bottom: 10rem;
}

.main_form .download_policy {
  margin-bottom: 2rem;
  width: 38rem;
}

.main_form .download_policy:before {
  width: 100%;
}

.main_form .download_policy .inner {
  width: 100%;
  max-width: 100%;
}

.main_form .insure_more {
  width: 38rem;
  max-width: 100%;
  text-align: center;
}

.main_form .bottom {
  width: -webkit-calc(100% + 12rem);
  width: calc(100% + 12rem);
  margin-left: -6rem;
  margin-right: -6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.main_form .bottom .column {
  padding-left: 6rem;
  padding-right: 6rem;
  width: 50%;
}
.main_form .bottom .column {
  padding-left: 6rem;
  padding-right: 6rem;
  width: 50%;
}

.main_form .link_mob {
  display: none!important;
}
.main_footer .link_mob {
  display: none!important;
}

.main_form .checks {
  padding-left: 6rem;
  padding-right: 6rem;
  width: 50%;
}

.main_form .bottom_2 {
  width: -webkit-calc(100% + 12rem);
  width: calc(100% + 12rem);
  margin-left: -6rem;
  margin-right: -6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.main_form .bottom_2 .column {
  padding-left: 6rem;
  padding-right: 6rem;
  width: 50%;
}
.main_form .bottom_2 .column {
  padding-left: 6rem;
  padding-right: 6rem;
  width: 50%;
}

.main_form .price {
  padding-left: 6rem;
  padding-right: 6rem;
  width: 50%;
}
.main_form .price .t1 {
  margin-bottom: 6px;
  font-size: 2.2rem;
  line-height: 2.6rem;
  color: #FFFFFF;
}
.main_form .price .price_value {
  font-weight: 700;
}

.main_form .price .t2 {
  font-size: 14px;
  line-height: 143.2%;
  color: #FFFFFF;
  opacity: 0.87;
}
.main_form .price .t3 {
  display: none;
  font-size: 14px;
  line-height: 143.2%;
  color: #FFFFFF;
  opacity: 0.87;
}
.main_form .price .t4 {
  display: none;
  font-size: 14px;
  line-height: 143.2%;
  color: #FFFFFF;
  opacity: 0.87;
}
.main_form .price .t5 {
    display: none;
    font-size: 14px;
    line-height: 143.2%;
    color: #FFFFFF;
    opacity: 0.87;
}

.extended_coverage {
  margin-bottom: 1.6rem;
  display: none;
}
.extended_coverage.show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.extended_coverage.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.extended_coverage .text {
  position: relative;
  width: 100%;
}
.extended_coverage .text a {
  /*text-decoration: none;*/
}
.extended_coverage:hover .notes {
  opacity: 1;
  color: #000;
}
.extended_coverage .notes {
  position: absolute;
  top: 100%;
  left: 0;
  font-size: 12px;
  line-height: 1.2;
  opacity: 0;
  transition: opacity .2s;
}

.financial_risks {
  margin-bottom: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.financial_risks.active .form_field {
  display: block;
}
.financial_risks .checkbox {
  margin-right: 4rem;
}
.financial_risks .checkbox a {
  white-space: nowrap;
  text-decoration: none;
}
.financial_risks .checkbox a:hover {
  text-decoration: underline;
}
.financial_risks .form_field {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  min-width: 17rem;
  display: none;
  /*opacity: 0;*/
}
.financial_risks .form_field input {
  line-height: 110%;
  font-size: 1.6rem;
}
.insure_terms_fin_risks {
  display: none;
}

.price_extended {
  display: none;
}
.insure_terms_extended {
  display: none;
}

.main_form .full_age_coverage {
  font-size: 16px;
  line-height: 143.2%;
  opacity: 0;
  pointer-events: none;
}
.main_form .full_age_coverage.active {
  opacity: 1;
}
.main_form .full_age_coverage.disabled {
  opacity: 0.5;
}

.main_form .insure_terms a {
  display: none;
}

.main_form .insure_terms a.active {
  display: block;
}

.main_form_dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.main_form_dots .dot {
  display: block;
  cursor: inherit;
  width: 11px;
  height: 11px;
  background: #7CC8EF;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  margin-right: 14px;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.main_form_dots .dot:last-child {
  margin-right: 0;
}

.main_form_dots .dot.active {
  background: #fff;
}

/*.main_form .checkbox label {*/
/*  border: 1px solid #FFFFFF;*/
/*}*/
/*.main_form .checkbox label:after {*/
/*  background: #FFFFFF;*/
/*  opacity: 0.5;*/
/*}*/
/*.main_form .checkbox input[type="checkbox"]:checked + label:after {*/
/*  background: #FDE92A;*/
/*  opacity: 1;*/
/*}*/
/*.main_form .radio label {*/
/*  border: 1px solid #FFFFFF;*/
/*}*/
/*.main_form .radio label:after {*/
/*  background: #FFFFFF;*/
/*  opacity: 0.5;*/
/*}*/
/*.main_form .radio input[type="radio"]:checked + label:after {*/
/*  background: #FDE92A;*/
/*  opacity: 1;*/
/*}*/

.pcr_test {
  margin-bottom: 22rem;
}
.pcr_test_inner {
  position: relative;
  padding-right: 50px;
  padding-top: 2.7rem;
  background: #F9F9F9 url(../img/virus-1.svg) no-repeat top 17px left -20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pcr_test_inner .bg_img {
  position: absolute;
  bottom: 73px;
  right: 17px;
  opacity: 0.7;
  filter: blur(2px);
}
.pcr_test .s_title {
  margin-bottom: 4.5rem;
  font-weight: bold;
  font-size: 4.5rem;
  line-height: 1;
  text-transform: uppercase;
  color: #181818;
}
.pcr_test .left {
  padding-left: 20rem;
  padding-right: 20rem;
}
.pcr_test .s_title span {
  color: #2890DE;
}
.pcr_test .right {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.pcr_test_item {
  width: 32rem;
  border-radius: 1.5rem 1.5rem 0 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.pcr_test_item.item-1 {
  background: rgba(230, 86, 85, 0.8);
}
.pcr_test_item.item-2 {
  background: rgba(120, 188, 96, 0.8);
}
.pcr_test_item .image {
  padding-top: 1.5rem;
  height: 27rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.pcr_test_item.item-2 .image {
  padding-top: 0;
}
.pcr_test_item.item-1 .image img {
  width: 24rem;
}
.pcr_test_item.item-2 .image img {
  width: 24.2rem;
}
.pcr_test_item .item_check {
  width: 100%;
  border-radius: 1.5rem 1.5rem 0 0;
  padding: 1.8rem;
  color: #fff;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2.1rem;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.pcr_test_item .item_check label + span {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2.1rem;
}
.pcr_test_item.item-1 .item_check {
  background: #C65655;
}
.pcr_test_item.item-2 .item_check {
  background: #6BA457;
}
.pcr_test_item .checkbox input[type="checkbox"]:checked + label:after {
  background: #fff;
}
.pcr_test .send_code {
  width: 264px;
  display: block;
  position: relative;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  text-decoration: none;
  color: #f9f9f9;
}
.pcr_test .mob_btns {
  display: none;
}
.pcr_test .send_code:hover, .pcr_discount .send_code:focus {
  color: #fff;
}
.pcr_test .send_code:hover .inner, .pcr_discount .send_code:focus .inner {
  top: -2px;
}
.pcr_test .send_code .inner {
  position: relative;
  z-index: 10;
  top: -4px;
  width: 264px;
  height: 63px;
  background: #1495D6;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}
.pcr_test .send_code:before {
  position: absolute;
  content: '';
  display: block;
  width: 264px;
  height: 63px;
  left: 0;
  top: 0;
  background: #007AB8;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.pcr_discount_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.pcr_discount_bottom {
  height: 5rem;
  width: 100%;
  background: #FFF69C;
  font-size: 2.5rem;
  line-height: 2.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pcr_discount_bottom a {
  color: #0070A9;
  text-decoration: underline;
}
.pcr_discount_bottom a:hover,
.pcr_discount_bottom a:focus {
  text-decoration: none;
}
.pcr_discount_code {
  position: relative;
  z-index: 10;
  padding-left: 30px;
  padding-right: 30px;
  width: 65rem;
  background: #EADB4F;
  box-shadow: -10px 0px 21px rgba(0, 0, 0, 0.1);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pcr_discount_code .text {
  margin-bottom: 2rem;
  font-weight: bold;
  font-size: 3.4rem;
  line-height: 4.2rem;
  text-transform: uppercase;
  color: #181818;
  opacity: 0.6;
}
.pcr_discount_code .code_field {
  margin-bottom: 3rem;
  padding: 3rem;
  width: 47rem;
  height: 9.8rem;
  background: #fff url(../img/dashed.svg) no-repeat left top;
  -webkit-background-size: contain;
  background-size: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pcr_discount_code .code_field .code_field_inner {
  padding-top: 5px;
  padding-bottom: 5px;
  width: 100%;
  border-bottom: 1px solid #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pcr_discount_code .code_field .code_field_inner span {
  padding-left: 1rem;
  padding-right: 1rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 2rem;
  line-height: 143.2%;
  color: #000000;
  opacity: 0.5;
}
.pcr_discount_code .code_field input {
  width: 100%;
  font-size: 2rem;
  line-height: 143.2%;
  color: #000000;
  text-align: center;
}

.pcr_discount_banner {
  position: relative;
  padding-left: 15rem;
  padding-top: 5rem;
  padding-bottom: 4.8rem;
  width: 100%;
  font-weight: bold;
  font-size: 5rem;
  line-height: 5rem;
  background: #FDE92A url(../img/pcr_banner-2.svg) no-repeat bottom -3px right 9rem;
  border-radius: 2rem 2rem 0 0;
  /*display: -webkit-box;*/
  /*display: -ms-flexbox;*/
  /*display: flex;*/
  /*-webkit-box-align: center;*/
  /*-ms-flex-align: center;*/
  /*align-items: center;*/
}
.pcr_discount_banner .bg_img {
  width: 24rem;
  position: absolute;
  top: 2.7rem;
  right: -2rem;
}
.pcr_discount_banner .t1 {
  /*font-weight: bold;*/
  /*font-size: 5rem;*/
  /*line-height: 5rem;*/
  text-transform: uppercase;
  color: #1495D6;
}
.pcr_discount_banner .t2 {
  /*font-weight: bold;*/
  /*font-size: 5rem;*/
  /*line-height: 5rem;*/
  text-transform: uppercase;
  color: #181818;
}
/*.pcr_discount_banner .t3 {*/
  /*font-weight: 900;*/
  /*font-size: 10rem;*/
  /*line-height: 4.4rem;*/
  /*text-transform: uppercase;*/
  /*color: #2890DE;*/
/*}*/
.pcr_discount_banner img {
  width: 37.6rem;
}
.pcr_discount_banner .discount {
  margin-top: 2.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pcr_discount .send_code {
  width: 264px;
  display: block;
  position: relative;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
}
.pcr_discount .send_code:hover, .pcr_discount .send_code:focus {
  color: #fff;
}
.pcr_discount .send_code:hover .inner, .pcr_discount .send_code:focus .inner {
  top: -2px;
}
.pcr_discount .send_code .inner {
  position: relative;
  z-index: 10;
  top: -4px;
  width: 264px;
  height: 63px;
  background: #1495D6;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}
.pcr_discount .send_code:before {
  position: absolute;
  content: '';
  display: block;
  width: 264px;
  height: 63px;
  left: 0;
  top: 0;
  background: #007AB8;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.insurance_form_discount_banner {
  margin-top: 8rem;
  margin-left: -15rem;
  margin-right: -15rem;
  margin-bottom: -8rem;
  position: relative;
  padding-left: 9rem;
  padding-top: 6.5rem;
  padding-bottom: 5rem;
  background: #FDE92A url(../img/virus-5.svg) no-repeat bottom right 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.insurance_form_discount_banner .discount_banner_inner {
  /*margin-right: 10.2rem;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.insurance_form_discount_banner .t1 {
  margin-bottom: 3.5rem;
  font-weight: bold;
  font-size: 8rem;
  line-height: 4.4rem;
  text-transform: uppercase;
  color: #1495D6;
}
.step_3 .insurance_form_discount_banner {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}
.step_3 .insurance_form_discount_banner .t1 {
  font-size: 3.5rem;
  line-height: 3.3rem;
  margin-bottom: 1.5rem;
}
.step_3 .insurance_form_discount_banner .t1 span {
  color: #1D1D1D;
}
.step_3 .insurance_form_discount_banner img {
  width: 25.5rem;
}
.insurance_form_discount_banner .t2 {
  margin-right: 1.7rem;
  font-weight: bold;
  font-size: 3.9rem;
  line-height: 4.2rem;
  text-transform: uppercase;
  color: #181818;
}
.insurance_form_discount_banner .t3 {
  font-weight: 900;
  font-size: 10rem;
  line-height: 4.4rem;
  text-transform: uppercase;
  color: #2890DE;
}
.insurance_form_discount_banner .discount {
  margin-top: 2.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.insurance_form_discount_banner .order_test {
  width: 264px;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -132px;
  margin-top: -32px;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
}
.insurance_form_discount_banner .order_test:hover, .insurance_form_discount_banner .order_test:focus {
  color: #fff;
}
.insurance_form_discount_banner .order_test:hover .inner, .insurance_form_discount_banner .order_test:focus .inner {
  top: -2px;
}
.insurance_form_discount_banner .order_test .inner {
  position: relative;
  z-index: 10;
  top: -4px;
  width: 264px;
  height: 63px;
  background: #1495D6;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}
.insurance_form_discount_banner .order_test:before {
  position: absolute;
  content: '';
  display: block;
  width: 264px;
  height: 63px;
  left: 0;
  top: 0;
  background: #007AB8;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.pcr_form input {
  background-color: transparent!important;
}

.back_pcr {
    margin-top: 2em!important;
    margin-bottom: 3rem!important;
}

.pcr_form .virus-1 {
  position: absolute;
  width: 11rem;
  top: 8rem;
  right: 12px;
}
.pcr_form .virus-2 {
  position: absolute;
  width: 7.3rem;
  top: 53.5rem;
  left: 14px;
  filter: blur(1px);
}
.pcr_form .virus-1 img,
.pcr_form .virus-2 img {
  width: 100%;
}

.pcr_form_wrap {
  display: none;
}
.insurance_form_wrap.shown,
.pcr_form_wrap.shown {
  display: block;
}
.pcr_form .head {
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.pcr_form .form_title {
  margin-bottom: 0;
  max-width: 68rem;
  text-align: center;
}
.pcr_form .body {
  padding-top: 4.5rem;
}
.pcr_form .body.step_2 {
  padding-top: 0;
}
.pcr_form .inputs {
  margin-bottom: 0;
}
.pcr_form .bottom {
  /*flex-wrap: wrap;*/
}
.pcr_form .buttons_wrap {
  width: 100%;
}
.pcr_form .buttons_wrap .left {
  width: 50%;
}
.pcr_form .buttons_wrap .right {
  width: 50%;
  padding-left: 6rem;
}
.pcr_form .hospital_field {
  position: relative;
  margin-bottom: 4rem;
  padding: 6px 12px;
  border: 1px solid transparent;
  border-bottom-color: #fff;
  font-size: 20px;
  line-height: 143.2%;
  color: rgba(255, 255, 255, 0.75);
}
.pcr_form .hospital_field .error {
  width: 100%;
  margin-top: 10px;
  position: absolute;
  top: 100%;
  left: 12px;
  font-size: 14px;
  color: #000;
  display: none;
}
.pcr_form .hospital_select {
  /*padding-right: 12px;*/
  width: 100%;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pcr_form .hospital_select:focus,
.pcr_form .hospital_select:hover {
  color: rgba(255, 255, 255, 0.75);
}
.pcr_form .hospital_select .hospital_place {
  width: 50%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pcr_form .hospital_select .hospital_place .number {
  font-weight: bold;
  margin-right: 3rem;
}
.pcr_form .hospital_select .schedule {
  width: 50%;
  padding-left: 6rem;
  color: #fff;
}
.pcr_form .hospital_select .schedule span {
  padding-left: 12px;
}


.pcr_form .hospital_field .arrow {
  position: absolute;
  top: 7px;
  right: 12px;
}
.pcr_form .insure_terms a {
  display: block;
}

.pcr_form .bottom {
  position: relative;
  margin-bottom: 1rem;
  width: -webkit-calc(100% + 12rem);
  width: calc(100% + 12rem);
  margin-left: -6rem;
  margin-right: -6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.pcr_form .bottom .cols {
  padding-left: 6rem;
  padding-right: 6rem;
  width: 50%;
  max-width: 50%;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.pcr_form .bottom .checkbox {
  margin-bottom: 2rem;
}
.pcr_info {
  margin-top: 2.5rem;
  height: 9.8rem;
  font-size: 14px;
  line-height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pcr_info_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.pcr_info img {
  position: relative;
  margin-right: 12px;
  top: 3px;
}
.pcr_info a {
  text-decoration: none;
}
.pcr_info a:focus {
  color: #fff;
}
.pcr_info a:hover {
  text-decoration: underline;
}
.pcr_price {
  padding-top: 2.5rem;
  padding-bottom: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.pcr_price_item {
  padding: 2rem 1.8rem 2.2rem;
  width: calc(50% - 1.2rem);
  border: 1px solid #FFFFFF;
  border-radius: 15px;
  font-size: 14px;
  line-height: 16px;
}
.pcr_price_item_top {
  margin-bottom: 1rem;
  font-size: 2.2rem;
  line-height: 2.6rem;
}
.pcr_price_info {
  padding-top: 4.8rem;
  font-size: 2.2rem;
  line-height: 2.6rem;
  color: #FFFFFF;
}
.pcr_price_sum {
  margin-bottom: 6px;
}
.pcr_price_sum .val {
  font-weight: 700;
}
.pcr_commission {
  font-size: 16px;
}
.pcr_commission .t2 {
  display: none;
}

/*
.pcr_form .price_discount {
  position: relative;
  top: -2px;
  display: none;
  font-size: 2.2rem;
  line-height: 2.6rem;
}
.pcr_form .price_discount .t2 {
  font-size: 14px;
  line-height: 143.2%;
  color: #FFFFFF;
  opacity: 0.87;
}
.pcr_form .price_discount.active {
  display: block;
}
.pcr_form .bottom .price_discount {
  display: none;
}
.pcr_form .price_discount .price_value {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 2.8rem;
}
*/

.main_form .price .discount_val {
  display: none;
  margin-top: 1.5rem;
  font-size: 2.2rem;
  line-height: 2.6rem;
}
.main_form .price.disabled .t2 {
  display: none;
}
.main_form .price.disabled .discount_val {
  display: block;
}
.main_form .price.disabled .price_value {
  position: relative;
  color: #ACE3FF;
}
.main_form .price.disabled .price_value:after {
  position: absolute;
  display: block;
  content: '';
  top: 50%;
  left: 0;
  margin-top: -1px;
  width: 100%;
  height: 2px;
  background: red;
  -webkit-transform: rotateZ(-5deg);
  transform: rotateZ(-5deg);
}

.pcr_request_popup .popup_inner {
  width: 80.6rem;
}
.pcr_request_popup .popup_title {
  margin-bottom: 3rem;
  padding: 0;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.pcr_request_popup .text-1 {
  margin-bottom: 2.5rem;
  text-align: center;
}
.pcr_request_popup .popup_title span {
  padding: 12px 20px;
  background: #D5F1FF;
}
.pcr_request_popup .form_field {
  margin-bottom: 2.3rem;
  padding: 6px 12px;
  border-bottom: 1px solid #000;
}
.pcr_request_popup .form_field .iti__selected-flag {
  padding-left: 0;
}
.pcr_request_popup .form_field label {
  width: 100%;
}
.pcr_request_popup input {
  display: block;
  font-size: 2rem;
  line-height: 143.2%;
  color: rgba(0,0,0,0.5);
  width: 100%;
}
.pcr_request_popup .checkbox {
  margin-top: 5rem;
  margin-bottom: 8rem;
}
.pcr_request_popup .checkbox label {
  border-color: #7d7d7d;
}
.pcr_request_popup .checkbox input[type="checkbox"] + label:after {
  background: rgba(0,0,0,0.2);
}
.pcr_request_popup .checkbox input[type="checkbox"]:checked + label:after {
  background: #1495D6;
}
.pcr_request_popup .checkbox a {
  color: #000000;
  font-size: 1.6rem;
  line-height: 143.2%;
  text-decoration: underline;
}
.pcr_request_popup .checkbox a:hover,
.pcr_request_popup .checkbox a:focus {
  color: #000000;
  text-decoration: none;
}
.pcr_request_popup .btn {
  margin-left: auto;
  margin-right: auto;
}
.pcr_request_popup .link_mob {
  display: none!important;
}


.hospital_select_popup .popup_title {
  padding: 0;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.hospital_select_popup .popup_title span {
  padding: 12px 20px;
  background: #D5F1FF;
}
.hospital_select_popup .radio label {
  border-color: #7D7D7D;
  border-radius: 5px;
}
.hospital_select_popup .radio label:after {
  background: rgba(0,0,0,0.2);
  border-radius: 3px;
  width: 1.5rem;
  height: 1.5rem;
  top: 0.4rem;
  left: 0.4rem;
}
.hospital_select_popup .radio input[type="radio"]:checked + label:after {
  background: #1495D6;
}
.hospital_item {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.hospital_item:last-child {
  margin-bottom: 0;
}
.hospital_item .radio {
  position: relative;
  top: 1px;
  margin-right: 1.5rem;
}
.hospital_item .text {
  font-size: 20px;
  line-height: 143.2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.hospital_item .number {
  margin-bottom: 1rem;
  font-weight: 700;
  width: 100%;
}
.hospital_item .address {
  width: 50%;
  padding-right: 5rem;
}
.hospital_item .schedule {
  width: 50%;
}

.datepicker {
  border-radius: 0;
  border-color: #fff;
  color: #000;
  margin-top: 5px;
  margin-left: -13px;
  width: 500px;
}
.datepicker--pointer {
  border-color: #fff;
}
.datepicker--nav-title {
  border-radius: 0;
}
.datepicker--nav-action {
  border-radius: 0;
}
.datepicker--nav-action path {
  stroke: #000;
  stroke-width: 1px;
}
.datepicker--days-names {
  margin-bottom: 6px;
}
.datepicker--cell {
  border-radius: 0;
  height: 37px;
}
.datepicker--day-name {
  color: #1495D6;
}
.datepicker--cell.-current- {
  color: #1495D6;
}
.datepicker--cell.-selected-, .datepicker--cell.-selected-.-current- {
  background: #1495D6;
}
.datepicker--cell.-focus- {
  background: #45bced;
  color: #fff;
}
.datepicker--cell.-current-.-focus- {
  color: #fff;
}
.datepicker--cell.-other-month-.-focus- {
  color: #000;
}
.datepicker--cell-day.-other-month-, .datepicker--cell-year.-other-decade- {
  color: #9c9c9c;
}
.datepicker--cell.-selected-.-focus- {
  background: #1495D6;
}

.partners {
  padding-top: 4.7rem;
  margin-bottom: 7rem;
}

.partners .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.partners_item {
  padding-left: 10px;
  padding-right: 10px;
  font-size: 1.8rem;
  line-height: 2.1rem;
  text-align: center;
  max-width: 240px;
}

.partners_item .image {
  height: 13.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.partners_item .image img {
  max-height: 100%;
}
.partners_item a {
  color: #0F5C98;
  text-transform: uppercase;
}
.partners_item a:hover,
.partners_item a:focus {
  text-decoration: none;
}

.insurance_form .citizenship {
  padding-left: 0;
  padding-right: 0;
}

.insurance_form .citizenship input {
  padding-left: 12px;
}

.insurance_form .phone_field {
  padding-left: 0;
  padding-right: 0;
}
.insurance_form .phone_field .error {
  left: 12px;
}

.country-select {
  width: 100%;
}

.country-select input, .country-select input[type=text] {
  width: 100%;
}

.country-select.inside input, .country-select.inside input[type=text] {
  padding-left: 12px;
}

.country-select .flag-dropdown {
  width: 100%;
}

.country-select .selected-flag {
  padding-left: 0;
  width: 0;
  opacity: 0;
}

.country-select.inside .selected-flag {
  width: 100%;
}

.country-select .country-list {
  margin-top: 6px;
  width: 100% !important;
  color: #000;
}

.iti {
  width: 100%;
}

.iti__flag-container {
  /*width: 100%;*/
}

.iti__selected-flag {
  padding-left: 12px;
  padding-right: 10px;
  background: transparent !important;
  outline: none !important;
}

.iti__arrow {
  border-top-color: #fff;
}

.iti__arrow--up {
  border-bottom-color: #fff;
}

.iti__country-list {
  color: #000;
  width: 500px;
  margin-top: 6px;
}

.iti--allow-dropdown input, .iti--allow-dropdown input[type=tel], .iti--allow-dropdown input[type=text], .iti--separate-dial-code input, .iti--separate-dial-code input[type=tel], .iti--separate-dial-code input[type=text] {
  padding-left: 60px;
}

.iti__flag {
  background-image: url("../img/iti-flags.png");
}

/*FRAME FORM*/

.frame_form {
  height: auto;
  display: block;
}
.frame_form_inner .container {
  width: 100%;
  background: #1495D6;
}
.frame_form_wrap .main_form {
  position: relative;
  display: block;
  min-height: 100vh;
}
/*.frame_form_wrap .main_form_dots {*/
  /*-webkit-box-pack: center;*/
  /*-ms-flex-pack: center;*/
  /*justify-content: center;*/
/*}*/
.frame_form_wrap .main_form .form_title {
  text-align: left;
}
.frame_form_wrap .main_form .head {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.frame_form_wrap .lang_select {
  background: transparent;
  color: #fff;
  margin-bottom: 3rem;
}
.frame_form_wrap .lang_select .active_lang {
  color: #fff;
}
.frame_form_wrap .lang_select .active_lang:before {
  background-color: #fff;
}
.frame_form_wrap .lang_select ul {
  background: transparent;
  color: #fff;
}
.frame_form_wrap .lang_select ul a {
  color: #fff;
}
.frame_form_wrap .lang_select a:before {
  display: none;
}

.agent_select {
  position: absolute;
  right: 30px;
  bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
  color: #BFE3F4;
}
.agent_select p {
  margin-right: 5px;
}
.agent_select select {
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  margin-top: -1px;
  display: block;
  color: #fff;
  height: 30px;
  font-size: 14px;
  line-height: 30px;
  cursor: pointer;
  border: none;
  background: transparent;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.agent_select select:focus {
  outline: none;
}
.agent_select select option {
  border: none;
  color: #000;
}

@media (max-width: 991.98px) {
  .frame_form_wrap .main_form {
    padding-bottom: 70px;
  }
  .frame_form_wrap .lang_select {
    margin-bottom: 17px;
  }
  .agent_select {
    right: 15px;
    bottom: 15px;
  }
  .agent_select select {
    margin-top: -2px;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("../img/iti-flags@2x.png");
  }
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

.form_field .error {
  width: 100%;
  margin-top: 10px;
  position: absolute;
  top: 100%;
  left: 0;
  font-size: 14px;
  color: #000;
  display: none;
}

/****************** PAGE FROM UKRAINE *********************/

.s_top .text-1 .label {
  padding: 1rem 2rem;
  position: absolute;
  right: -4rem;
  bottom: -4.5rem;
  height: 6rem;
  color: #FFFFFF;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 2.1rem;
  -webkit-box-shadow: -15px 4px 45px rgba(0, 61, 92, 0.28);
  box-shadow: -15px 4px 45px rgba(0, 61, 92, 0.28);
  background: #1495D6;
  text-transform: none;
  -webkit-transform: rotateZ(-5deg);
  -ms-transform: rotate(-5deg);
  transform: rotateZ(-5deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.s_top .text-1 .label span:nth-child(1) {
  font-weight: bold;
  font-size: 2.7rem;
  line-height: 3.2rem;
  text-transform: uppercase;
  opacity: 0.7;
}

.s_top .text-1 .label span:nth-child(2) {
  font-weight: bold;
  font-size: 3rem;
  line-height: 3.5rem;
}

.s_top .text-1 .label span:nth-child(3) {
  -ms-flex-item-align: end;
  align-self: flex-end;
  line-height: 3.4rem;
}

.s_top .map .arrow {
  position: absolute;
  z-index: 20;
  top: 50%;
  left: 50%;
  margin-top: -19.5rem;
  margin-left: -8rem;
  width: 25.1rem;
}

.s_top .map .arrow img {
  display: block;
}

.s_top .map_mob .arrow {
  position: absolute;
  z-index: 20;
  top: 50%;
  left: 50%;
  margin-top: -19.5rem;
  margin-left: -8rem;
  width: 25.1rem;
}

.s_top .map_mob .arrow img {
  display: block;
}

.p_fromUkraine .s_top .map .arrow {
  width: 22.8rem;
  margin-top: -23rem;
  margin-left: -5.5rem;
}
.p_fromUkraine .in_out_select {
    display: block;
}

.p_fromUkraine .s_top .map_mob .arrow {
  width: 22.8rem;
  margin-top: -23rem;
  margin-left: -5.5rem;
}

.countries_information {
  margin-top: 8rem;
  /*margin-bottom: 8.5rem;*/
  position: relative;
  z-index: 10;
}
.countries_information.on_main {
  margin-bottom: 50px;
}

.countries_information .s_title {
  margin-bottom: 5.7rem;
  font-weight: bold;
  font-size: 3rem;
  line-height: 3.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.countries_information .s_title .inner {
  padding: 11px 20px 11px 17px;
  background: #FDE92A;
  -webkit-border-radius: 10em;
  border-radius: 10em;
}

.countries_information .container {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 13.4rem;
  /*background: url(../img/Earth-grey.png) no-repeat top center;*/
  /*background-size: contain;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.countries_information .search {
  position: relative;
  margin-bottom: 9rem;
  width: 73rem;
  max-width: 100%;
  background: #FFFFFF;
  border: 1px solid #D0D0D0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10em;
  -webkit-filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.18));
  filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.18));
}

.countries_information .search input {
  padding: 1rem 5rem 1rem 3rem;
  height: 6rem;
  width: 100%;
  font-size: 14px;
  line-height: 16px;
  background: transparent;
  border: none;
  border-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.countries_information .search input::-webkit-input-placeholder {
  font-size: 14px;
  line-height: 16px;
  opacity: 0.5;
}

.countries_information .search input::-moz-placeholder {
  font-size: 14px;
  line-height: 16px;
  opacity: 0.5;
}

.countries_information .search input:-ms-input-placeholder {
  font-size: 14px;
  line-height: 16px;
  opacity: 0.5;
}

.countries_information .search input::-ms-input-placeholder {
  font-size: 14px;
  line-height: 16px;
  opacity: 0.5;
}

.countries_information .search input::placeholder {
  font-size: 14px;
  line-height: 16px;
  opacity: 0.5;
}

.countries_information .search .btn_search {
  position: absolute;
  top: 50%;
  margin-top: -1.2rem;
  right: 2rem;
  height: 2.4rem;
  width: 2.4rem;
}

.countries_information .countries_list {
  padding-left: 2rem;
  padding-right: 2rem;
}

.countries_information .countries_list ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.countries_information .country {
  display: none;
  margin-bottom: 4rem;
  margin-left: 1.1rem;
  margin-right: 1.1rem;
}
.countries_information .country.red a:hover {
  /*background: #E65655;*/
  background: #1495D6;
}
.countries_information .country.green a:hover {
  /*background: #78BC60;*/
  background: #1495D6;
}
.countries_information .free_list .country a:hover {
  background: #1495D6;
}

.countries_information .country.show {
  display: block;
}

.countries_information .country a {
  padding-left: 2rem;
  padding-right: 2rem;
  height: 3.5rem;
  font-size: 16px;
  line-height: 15px;
  color: #333333;
  background: #E2F0F7;
  border-radius: 10em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.countries_information .country a:hover {
  background: #1495D6;
  color: #fff;
}

.countries_information .btns_wrap {
  margin-top: 6rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.countries_information .show_all {
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000;
}

.countries_information .show_all:hover {
  text-decoration: none;
}

.countries_information .show_all:hover img {
  -webkit-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.countries_information .show_all img {
  margin-bottom: 2px;
  margin-left: 20px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.country_info_popup {
  font-size: 18px;
  line-height: 30px;
}

.country_info_popup .popup_inner {
  max-height: calc(100vh - 60px);
  scrollbar-width: none;
}

.country_info_popup .popup_inner::-webkit-scrollbar {
  width: 0;
}
.country_info_popup .popup_title {
  margin-bottom: 5rem;
  padding: 0;
  background: transparent;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.country_info_popup.green .country_name {
  /*background: #78BC60;*/
  background: #FDE92A;
}
.country_info_popup .country_zone_green {
  color: #78BC60;
  /*display: none;*/
  display: none !important;
}
.country_info_popup.green .country_zone_green {
  display: block;
}
.country_info_popup.red .country_name {
  /*background: #E65655;*/
  background: #FDE92A;
}
.country_info_popup .country_zone_red {
  color: #E65655;
  /*display: none;*/
  display: none !important;
}
.country_info_popup.red .country_zone_red {
  display: block;
}
.country_info_popup.yellow .country_name {
  background: #FDE92A;
  color: #000;
}
.country_info_popup .popup_title img {
  margin-right: 3rem;
  height: 53px;
}
.country_info_popup .popup_title .country_name {
  margin-right: 2rem;
  padding: 12px 20px;
  /*color: #fff;*/
  color: #000;
}

.country_info_popup_2 {
  font-size: 18px;
  line-height: 30px;
}

.country_info_popup_2 .popup_inner {
  min-height: 60rem;
  max-height: calc(100vh - 60px);
  scrollbar-width: none;
}

.country_info_popup_2 .popup_inner::-webkit-scrollbar {
  width: 0;
}
.country_info_popup_2 .popup_title {
  margin-bottom: 5rem;
  padding: 0;
  background: transparent;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.country_info_popup_2.green .country_name {
  /*background: #78BC60;*/
  background: #FDE92A;
}
.country_info_popup_2 .country_zone_green {
  color: #78BC60;
  /*display: none;*/
  display: none !important;
}
.country_info_popup_2.green .country_zone_green {
  display: block;
}
.country_info_popup_2.red .country_name {
  /*background: #E65655;*/
  background: #FDE92A;
}
.country_info_popup_2 .country_zone_red {
  color: #E65655;
  /*display: none;*/
  display: none !important;
}
.country_info_popup_2.red .country_zone_red {
  display: block;
}
.country_info_popup.yellow .country_name {
  background: #FDE92A;
  color: #000;
}
.country_info_popup_2 .popup_title img {
  margin-right: 3rem;
  height: 53px;
}
.country_info_popup_2 .popup_title .country_name {
  margin-right: 2rem;
  padding: 12px 20px;
  /*color: #fff;*/
  color: #000;
}

.country_info_items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.country_info_items li:before {
  display: none;
}
.country_info_popup .country_info_item {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.country_info_item {
  margin-top: 3rem;
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.country_info_item .item_icon {
  margin-right: 3rem;
  width: 8.3rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.country_info_item .item_icon img {
  display: block;
}
.country_info_item .item_text {
  padding-top: 1rem;
  font-size: 1.6rem;
  line-height: 2.5rem;
}
.country_info_item .item_title {
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 2.8rem;
}
.country_info_item a.buy_btn {
  margin-top: 1.8rem;
  padding: 1.5rem 2.7rem 1.5rem;
  height: 4.7rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  border: 1px solid #1495D6;
    background: #1495D6;
  -webkit-border-radius: 10em;
  border-radius: 10em;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}
.country_info_item a.buy_btn {
  margin-right: 40px;
  border-radius: 10em;
}
.country_info_item a.buy_btn:hover {
    color: #000;
    border-color: #000;
    background: transparent;
    text-decoration: none;
}
.country_info_item a.buy_btn:focus {
    color: #000;
    text-decoration: none;
}

.country_info_tabs {
  margin-bottom: 5rem;
  margin-top: 5rem;
}

.country_info_tabs .tab_item {
  padding-left: 0;
  margin-bottom: 3rem;
}

.country_info_tabs .tab_item:before {
  display: none;
}

.country_info_tabs .tab_item.active .arrow {
  background-image: url(../img/arrow-tab-active.svg);
}

.country_info_tabs .tab_item.active .tab_body {
  display: block;
}

.country_info_tabs .tab_link {
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 2.9rem;
  color: #000;
  text-decoration: none !important;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.country_info_tabs .tab_link .arrow {
  margin-left: 5px;
  width: 14px;
  height: 14px;
  background: url(../img/arrow-tab.svg) no-repeat center;
}

.country_info_tabs .tab_body {
  display: none;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.countries_popup .popup_inner {
  scrollbar-width: none;
}

.countries_popup .popup_inner::-webkit-scrollbar {
  width: 0;
}

.countries_popup .search {
  position: relative;
  margin-bottom: 5rem;
  width: 100%;
  max-width: 100%;
  background: #FFFFFF;
  border: 1px solid #D0D0D0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10em;
  -webkit-filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.18));
  filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.18));
}

.countries_popup .search input {
  padding: 1rem 5rem 1rem 3rem;
  height: 6rem;
  width: 100%;
  font-size: 14px;
  line-height: 16px;
  background: transparent;
  border: none;
  border-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.countries_popup .search input::-webkit-input-placeholder {
  font-size: 14px;
  line-height: 16px;
  opacity: 0.5;
}

.countries_popup .search input::-moz-placeholder {
  font-size: 14px;
  line-height: 16px;
  opacity: 0.5;
}

.countries_popup .search input:-ms-input-placeholder {
  font-size: 14px;
  line-height: 16px;
  opacity: 0.5;
}

.countries_popup .search input::-ms-input-placeholder {
  font-size: 14px;
  line-height: 16px;
  opacity: 0.5;
}

.countries_popup .search input::placeholder {
  font-size: 14px;
  line-height: 16px;
  opacity: 0.5;
}

.countries_popup .search .btn_search {
  position: absolute;
  top: 50%;
  margin-top: -1.2rem;
  right: 2rem;
  height: 2.4rem;
  width: 2.4rem;
}

.countries_popup .countries_list {
  margin-left: -1rem;
  margin-right: -1rem;
}

.countries_popup .countries_list ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.countries_popup .countries_list li {
  padding-left: 0;
}

.countries_popup .countries_list li:before {
  display: none;
}

.countries_popup .country {
  display: none;
  margin-bottom: 2rem;
  margin-left: 1rem;
  margin-right: 1rem;
}
.countries_popup .country.red a:hover {
  /*background: #E65655;*/
  background: #1495D6;
}
.countries_popup .country.green a:hover {
  /*background: #78BC60;*/
  background: #1495D6;
}

.countries_popup .country.show {
  display: block;
}

.countries_popup .country a {
  padding-left: 2rem;
  padding-right: 2rem;
  height: 3.5rem;
  font-size: 16px;
  line-height: 15px;
  color: #333333;
  background: #E2F0F7;
  border-radius: 10em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.countries_popup .country a:hover {
  background: #1495D6;
  color: #fff;
  text-decoration: none;
}

.insurance_banner_2 {
  margin-top: 22rem;
  margin-bottom: 22rem;
  position: relative;
  padding: 7rem 10rem 6.6rem;
  background: #1495D6;
  -webkit-border-radius: 2rem;
  border-radius: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.insurance_banner_2 .s_title {
  margin-bottom: 3.5rem;
  font-weight: 700;
  font-size: 3rem;
  line-height: 3.5rem;
  text-transform: uppercase;
  color: #FFFFFF;
}

.insurance_banner_2 .left {
  margin-right: 4rem;
  position: relative;
  z-index: 10;
  width: 46rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.insurance_banner_2 .right {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.insurance_banner_2 .bg_img {
  position: absolute;
  width: 23.3rem;
  left: 7rem;
}

.insurance_banner_2 .bg_img img {
  display: block;
  width: 100%;
}

.insurance_banner_2 .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.insurance_banner_2 .item_icon {
  margin-bottom: 1.4rem;
  width: 13.6rem;
}

.insurance_banner_2 .item_icon img {
  display: block;
}

.insurance_banner_2 .item_text {
  border: 3px solid rgba(198, 232, 249, 0.8);
  border-radius: 200px;
  overflow: hidden;
}

.insurance_banner_2 .inner {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  height: 4.2rem;
  font-size: 1.8rem;
  line-height: 2.1rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.insurance_banner_2 .btn {
  display: block;
  position: relative;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #1495D6;
  width: 264px;
}

.insurance_banner_2 .btn:hover .inner, .insurance_banner_2 .btn:focus .inner {
  top: -2px;
}

.insurance_banner_2 .btn .inner {
  position: relative;
  z-index: 10;
  top: -4px;
  width: 264px;
  height: 63px;
  background: #FFFFFF;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.insurance_banner_2 .btn:before {
  position: absolute;
  content: '';
  display: block;
  width: 264px;
  height: 63px;
  left: 0;
  top: 0;
  background: #007AB8;
  border-radius: 15px;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.insurance_plans {
  margin-bottom: 22rem;
}

.insurance_plans_tab_links {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: stretch;
}
.insurance_plans_tab_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2rem;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #000000;
  background: #FFFFFF;
  border: 1px solid #000000;
  box-sizing: border-box;
  border-radius: 2rem 2rem 0 0;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}
.insurance_plans_tab_link:hover {
  color: #000;
}
.insurance_plans_tab_link.active {
  color: #fff;
  background: #1495D6;
  border-color: #1495D6;
  border-radius: 1.5rem 1.5rem 0 0;
}
.insurance_plans_tab_link.active .check {
  border-color: #fff;
}
.insurance_plans_tab_link.active .check:after {
  background: #FAE644;
}
.insurance_plans_tab_link .check {
  position: relative;
  margin-right: 1.3rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #AFAFAF;
  border-radius: 0.5rem;
  flex-shrink: 0;
}
.insurance_plans_tab_link .check:after {
  position: absolute;
  display: block;
  content: '';
  top: 0.4rem;
  left: 0.4rem;
  width: 1.5rem;
  height: 1.5rem;
  background: #AFAFAF;
  border-radius: 0.3rem;
}

.insurance_plans .s_title {
  position: relative;
  margin-bottom: 3.6rem;
  height: 5.9rem;
  font-weight: bold;
  font-size: 3rem;
  line-height: 3.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.insurance_plans .s_title:before {
  position: absolute;
  display: block;
  content: '';
  top: 0;
  left: 0;
  height: 100%;
  width: 100vw;
  background: #FDE92A;
}

.insurance_plans .s_title .inner {
  position: relative;
  z-index: 10;
  padding: 0px 20px 0px 3rem;
  background: #FDE92A;
}

.insurance_plans .insurance_plans_inner {
  position: relative;
  padding-bottom: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow: hidden;
}
.insurance_plans_wrap {
  display: none;
  opacity: 0;
}
.insurance_plans_wrap.active {
  display: block;
  -webkit-animation: fadeIn .3s forwards;
  animation: fadeIn .3s forwards;
}

.insurance_plans .insurance_plans_inner:before {
  position: absolute;
  display: block;
  content: '';
  top: 8rem;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F9F9F9;
}

.insurance_plans .left {
  position: relative;
  z-index: 10;
  padding-top: 7.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.insurance_plans .left .image {
  width: 44.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.insurance_plans .left .image img {
  margin-left: 1rem;
  display: block;
}

.insurance_plans .buy_btn {
  position: relative;
  margin-top: -1rem;
  padding: 1.5rem 3rem 1.5rem;
  height: 4.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #000000;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid #000000;
  border-radius: 10em;
  background: #fff;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.insurance_plans .buy_btn:hover {
  background: #1495D6;
  border-color: #1495D6;
  color: #fff;
  text-decoration: none;
}

.insurance_plans .right {
  position: relative;
  z-index: 10;
  width: 65rem;
  margin-right: 13rem;
}

.insurance_plans .right .caption {
  margin-top: 2rem;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.9rem;
  color: #1495D6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.insurance_plans .right .caption img {
  margin-right: 1.5rem;
}

.insurance_plans .right .buy_btn {
  width: 270px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.dtb {
  display: table;
}

.dtb .dtr {
  display: table-row;
}

.dtb .dtc {
  display: table-cell;
  vertical-align: top;
}

.dtb .dtc .inner {
  padding-left: 3rem;
  padding-right: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.tb_insurance_plans {
  position: relative;
  z-index: 10;
  width: 100%;
}

.tb_insurance_plans .bold {
  font-weight: 700;
}

.tb_insurance_plans .dtr.th {
  font-size: 1.6rem;
  line-height: 1.9rem;
}

.tb_insurance_plans .dtr.th .inner {
  display: block;
  max-width: 28rem;
  padding-bottom: 1.5rem;
}

.tb_insurance_plans .dtr.th .bold {
  text-transform: uppercase;
}

.tb_insurance_plans .start_price {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 2.9rem;
}

.tb_insurance_plans .start_price .dtc {
  padding-bottom: 2.5rem;
}

.tb_insurance_plans .start_price .inner {
  height: 5.9rem;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.tb_insurance_plans .plan_period {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #D42600;
  white-space: nowrap;
}

.tb_insurance_plans .plan_period .dtc {
  padding-bottom: 1rem;
}

.tb_insurance_plans .plan_period .inner {
  padding-left: 0;
  padding-right: 0;
}

.tb_insurance_plans .plan_item {
  position: relative;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.1rem;
  color: rgba(0, 0, 0, 0.65);
}

.tb_insurance_plans .plan_item .inner {
  height: 10.9rem;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.tb_insurance_plans .plan_item .inner span {
  font-size: 2.5rem;
  line-height: 2.9rem;
}

.tb_insurance_plans .plan_item.active {
  color: #000;
}

.tb_insurance_plans .plan_item.active .inner {
  height: 8rem;
  background-color: #FDE92A;
}

.tb_insurance_plans .plan_item.active .inner span {
  font-weight: 700;
}

.tb_insurance_plans .plan_item.active .dtc:first-child .inner:before {
  width: 2rem;
  opacity: 1;
}

.tb_insurance_plans .plan_item.active .dtc:last-child .inner:before {
  width: 2rem;
  opacity: 1;
}

.tb_insurance_plans .plan_item .dtc:first-child .inner:before {
  position: absolute;
  display: block;
  content: '';
  right: 100%;
  height: 100%;
  width: 0;
  opacity: 0;
  background: #FDE92A;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.tb_insurance_plans .plan_item .dtc:last-child .inner:before {
  position: absolute;
  display: block;
  content: '';
  left: 100%;
  height: 100%;
  width: 0;
  opacity: 0;
  background: #FDE92A;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.tb_insurance_plans .plan_item .inner {
  position: relative;
  height: 7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.tb_insurance_plans .plan_item .icon:hover img {
  display: none;
}

.tb_insurance_plans .plan_item .icon:hover img + img {
  display: block;
}

.tb_insurance_plans .plan_item .icon .inner {
  position: relative;
  padding-left: 0;
  padding-right: 5rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tb_insurance_plans .plan_item .icon .inner:hover .age {
  z-index: 10;
  opacity: 1;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.tb_insurance_plans .plan_item .icon img {
  display: block;
}

.tb_insurance_plans .plan_item .icon img + img {
  display: none;
}

.tb_insurance_plans .plan_item .age {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5.7rem;
  padding-top: 2.4rem;
  padding-bottom: 2rem;
  width: 18rem;
  font-size: 1.6rem;
  line-height: 1.9rem;
  font-weight: 400;
  color: #000;
  background: url(../img/tooltip.svg) no-repeat top center;
  background-size: contain;
  opacity: 0;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.tb_insurance_plans .plan_item .age span {
  margin-right: 5px;
  margin-left: 5px;
  font-size: 1.8rem;
  font-weight: 700;
}

.p_fromUkraine .main_form .bottom .right {
  position: relative;
  padding-left: 6rem;
  padding-right: 6rem;
  width: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p_fromUkraine .main_form .bottom .right .checks {
  margin-top: 0;
  margin-bottom: 1.5rem;
  padding: 0;
  width: 100%;
}

.p_fromUkraine .main_form .price {
  position: relative;
  bottom: -56px;
  padding: 0;
  width: 100%;
}

.p_fromUkraine .main_form .insurance_term {
  padding-top: 2px;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  line-height: 143.2%;
}

.p_fromUkraine .main_form .insurance_term span {
  margin-right: 1.5rem;
}

.p_fromUkraine .main_form .insurance_term input {
  max-width: 3.2rem;
  width: auto;
  text-align: center;
  font-size: 16px;
  line-height: 143.2%;
  color: #fff;
  background: transparent;
}

.p_fromUkraine .main_form .select_field {
  padding-top: 3px;
  padding-bottom: 3px;
  padding-right: 0;
  padding-top: 8px;
  width: 100%;
}
.p_fromUkraine .main_form .select_field label {
  margin-left: -2px;
  margin-right: -2px;
}

.p_fromUkraine .main_form select {
  width: 100%;
  padding: 0;
  font-size: 1.4rem;
  line-height: 143.2%;
  height: calc(3rem + 6px);
  color: #fff;
  border: none;
  outline: none;
  background: transparent;
  /*word-wrap: break-word;*/
  /*white-space: -moz-pre-wrap;*/
  /*white-space: pre-wrap;*/
}

.p_fromUkraine .main_form select option {
  color: #000;
  font-size: 1.6rem;
  line-height: 2;
  height: 2.8rem;
}

.p_fromUkraine .main_form .insurance_select {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p_fromUkraine .main_form .insurance_comp {
  width: auto;
}

.checkbox.extreme label + a {
  text-decoration: underline;
}

.checkbox.extreme label + a:hover {
  text-decoration: none;
}

.extreme_popup {
  font-size: 18px;
  line-height: 30px;
}

.extreme_popup .title {
  font-size: 21px;
  line-height: 34px;
  margin-bottom: 10px;
}

.extended_coverage_popup {
  line-height: 30px;
}
.extended_coverage_popup ul.styled.styled li {
  margin-bottom: 20px;
}

.pcr_info_popup {
  line-height: 30px;
}
.pcr_info_popup ul.styled.styled li {
  margin-bottom: 20px;
}

.about_us_popup {
  font-size: 18px;
  line-height: 30px;
}

.about_us_popup .title {
  font-weight: 700;
}

.about_us_popup .accent {
  color: #1495D6;
}

.covid_sert_popup {
  font-size: 18px;
  line-height: 30px;
}

.covid_sert_popup .title {
  font-weight: 700;
}
.covid_sert_popup .title-2 {
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 25px;
  line-height: 29px;
  text-transform: uppercase;
}

.covid_sert_popup .accent {
  color: #1495D6;
}

.covid_sert_popup ul.styled.styled li {
  margin-bottom: 2rem;
}
.covid_sert_popup ul.styled.styled li:before {
  top: 8px;
}
.covid_sert_popup video {
  margin-left: 6rem;
  margin-bottom: 4rem;
  float: right;
  max-height: 80vh;
}

.faqs_popup {
  font-size: 18px;
  line-height: 30px;
}
.faqs_popup .popup_title {
  text-transform: none;
}

.faqs_popup .question {
  margin-bottom: 5px;
  font-weight: 700;
}

.faqs_popup .accent {
  color: #1495D6;
}

.list_numbered li:before {
  display: none;
}

.list_numbered li span {
  font-weight: 700;
  margin-right: 10px;
}

.main_footer {
  position: relative;
  z-index: 10;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 0;
  background: #231F20;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}

.main_footer .socials {
  margin-bottom: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main_footer .socials a {
  margin-right: 5rem;
}

.main_footer .socials a:last-child {
  margin-right: 0;
}

.main_footer .main_footer_inner {
  padding-top: 5rem;
  padding-bottom: 3.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.main_footer_links {
  margin-bottom: 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.main_footer_bottom {
  padding: 1.5rem;
  padding-bottom: 1.5rem;
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.main_footer .logo img {
  mix-blend-mode: difference;
}

.copyright {
  /*margin-left: 30px;*/
  /*margin-right: 30px;*/
}

.main_footer .icons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.main_footer .payment {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.main_footer .payment i {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 1rem;
}
.main_footer .payment i:last-child {
  margin-right: 0;
}

.main_footer .icons i {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 8px;
}

.main_footer .icons i:last-child {
  margin-right: 0;
}

.main_footer .icons a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.main_footer .contacts {
  margin-right: 10rem;
}
.main_footer .contacts_item {
  margin-bottom: 3.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}
.main_footer .contacts_item:last-child {
  margin-bottom: 0;
}

.main_footer .contacts_item a:hover,
.main_footer .contacts_item a:focus {
  color: #fff;
}

.main_footer .contacts_item i {
  margin-right: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.main_footer .email {
  margin-right: 35px;
}

.main_footer .email a {
  color: #fff;
}

.main_footer .red_line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.main_footer .red_line p {
  margin-right: 10px;
}

.main_footer .red_line a {
  margin-right: 10px;
  color: #ADADAD;
}

.main_footer .red_line a:hover {
  color: #ADADAD;
}

.main_footer .container {
  width: 100%;
  padding-left: 12rem;
  padding-right: 12rem;
}
.main_footer .about-us {
  color: #fff;
  margin-right: 4rem;
}
.main_footer .about-us:hover, .main_footer .about-us:focus {
  color: #fff;
}
.main_footer .faqs {
  color: #fff;
  /*padding-left: 15px;*/
  padding-right: 15px;
}
.main_footer .faqs:hover, .main_footer .faqs:focus {
  color: #fff;
}
.main_footer .refund_policy {
  color: #fff;
  margin-right: 4rem;
}
.main_footer .refund_policy a {
  color: #fff;
}
.main_footer .refund_policy a:hover {
  color: #fff;
}
.main_footer .public_contract {
  color: #fff;
  /*margin-right: 4rem;*/
}
.main_footer .public_contract a {
  color: #fff;
}
.main_footer .public_contract a:hover {
  color: #fff;
}

.s_faqs {
  margin-bottom: 26rem;
}
.p_fromUkraine .s_faqs {
    margin-top: 0;
  margin-bottom: 26rem;
}
.s_faqs_inner {
  position: relative;
  padding: 5rem 10.5rem 6.5rem;
  color: #fff;
  background: #1495D6;
  border-radius: 2rem;
}
.s_faqs_ctn {
  position: relative;
  z-index: 10;
  min-height: 14.4rem;
}
.s_faqs .bg_img {
  position: absolute;
  bottom: -0.6rem;
  right: 4.5rem;
  width: 65.7rem;
}
.s_faqs .s_title {
  margin-bottom: 3.5rem;
  font-weight: 700;
  font-size: 5rem;
  line-height: 5.4rem;
  text-transform: uppercase;
}
.s_faqs .btn {
  margin-top: 4px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: #1495D6;
}

.s_faqs .btn:hover .inner, .s_faqs .btn:focus .inner {
  top: -2px;
}

.s_faqs .btn .inner {
  padding-left: 3.6rem;
  padding-right: 3.6rem;
  position: relative;
  z-index: 10;
  top: -4px;
  width: auto;
  height: 54px;
  background: #FFFFFF;
  -webkit-border-radius: 10em;
  border-radius: 10em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.s_faqs .btn:before {
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 54px;
  left: 0;
  top: 0;
  background: #007AB8;
  -webkit-border-radius: 10em;
  border-radius: 10em;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.top-line {
  background: #1a1818;
  justify-content: space-between;
  padding: 10px 64px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.top-line, .top-line__left, .top-line__right {
  display: flex;
  align-items: center;
}
.top-line__left {
  /*padding-right: 50px;*/
}
.top-line__icon {
  margin-right: 12px;
}
.top-line__text, .top-line__link {
  font-size: 14px;
  line-height: 17px;
}
.top-line__text {
  color: #ffffff;
}
.top-line__link-caption {
  white-space: pre;
}
.top-line__link {
  color: #fff302;
  font-weight: bold;
  text-decoration: underline;
  margin-left: 4px;
}

@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 500px) {
}
@media (max-width: 1899.98px) {
  .p_fromUkraine .main_form select {
    word-wrap: break-word;
    white-space: -moz-pre-wrap;
    white-space: pre-wrap;
  }
}

@media (max-width: 1599.98px) {
  .extreme_popup, .about_us_popup, .faqs_popup, .covid_sert_popup {
    font-size: 16px !important;
    line-height: 26px !important;
  }
  .covid_sert_popup .title-2 {
    font-size: 20px;
    line-height: 25px;
  }
}

@media (max-width: 1365.98px) {
  .in_out_select {
    margin-right: 5rem;
  }
  .insurance_banner_2 {
    padding: 5rem 6rem;
  }
  .insurance_plans .right {
    margin-right: 5rem;
  }
  .p_fromUkraine .main_form {
    padding-left: 50px;
    padding-right: 50px;
  }
  .partners_item {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 991.98px) {
  .wrapper {
    padding-top: 0;
  }
  .top-line {
    flex-direction: column;
    padding: 24px 25px 14px 25px;
    position: relative;
  }
  .top-line__left {
    align-items: flex-start;
    padding-right: 0;
  }
  .top-line__right {
    margin-top: 12px;
  }
  .top-line__text, .top-line__link {
    line-height: 20px;
  }
  .top-line__link-caption {
    display: none;
  }
  .in_out_select {
    margin-right: 0;
    margin-left: 0;
    border-radius: 12px;
  }
  .in_out_select ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .in_out_select .item {
    padding-left: 15px;
    padding-right: 15px;
    width: auto;
    height: 30px;
    border-radius: 10px;
  }
  .p_fromUkraine .s_top .s_top_inner {
    padding-top: 70px;
  }
  .s_top .text-1 .label {
    bottom: -50px;
    right: -30px;
  }
  .s_top .text-1 .label span:nth-child(1) {
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
  }
  .s_top .text-1 .label span:nth-child(2) {
    font-weight: 700;
    font-size: 22px;
    line-height: 25px;
  }
  .s_top .text-1 .label span:nth-child(3) {
    font-size: 12px;
    line-height: 31px;
  }
  .countries_information {
    margin-bottom: 0;
    margin-top: 0;
    padding-top: 0;
  }
  .countries_information.on_main {
    /*margin-top: -90px;*/
    margin-bottom: 0;
  }
  .countries_information .container {
    padding-top: 0;
    padding-bottom: 70px;
    background-size: cover;
  }
  .countries_information .s_title .inner {
    padding: 11px 16px;
    width: 100%;
  }
  .countries_information .s_title {
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 40px;
  }
  .countries_information .search {
    margin-bottom: 30px;
  }
  .countries_popup .search {
    margin-bottom: 30px;
  }
  .countries_information .search input {
    height: 40px;
  }
  .countries_popup .search input {
    height: 40px;
  }
  .countries_information .country {
    margin-bottom: 20px;
  }
  .countries_popup .country {
    margin-bottom: 20px;
    margin-left: 5px;
    margin-right: 5px;
  }
  .countries_information .country a {
    font-size: 14px;
    padding-left: 15px;
    padding-right: 15px;
    height: 30px;
  }
  .countries_popup .country a {
    font-size: 14px;
    padding-left: 15px;
    padding-right: 15px;
    height: 30px;
  }
  .countries_information .btns_wrap {
    margin-top: 30px;
  }

  .countries_popup .countries_list {
    margin-left: -5px;
    margin-right: -5px;
  }

  .country_info_tabs {
    line-height: 25px;
  }
  .country_info_tabs .tab_item {
    margin-bottom: 20px;
  }
  .country_info_tabs .tab_link {
    font-size: 20px;
    line-height: 25px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .country_info_tabs .tab_body {
    padding-top: 20px;
    padding-bottom: 15px;
  }
  .country_info_tabs .tab_link .arrow {
    position: relative;
    top: 6px;
  }

  .country_info_item {
    width: 100%;
  }

  .insurance_banner_2 {
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 40px 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .insurance_banner_2 .s_title {
    font-size: 20px;
    line-height: 30px;
  }
  .insurance_banner_2 .left {
    margin-bottom: 40px;
    margin-right: 0;
    width: 100%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .insurance_banner_2 .right {
    position: relative;
    z-index: 10;
  }
  .insurance_banner_2 .bg_img {
    display: none;
    top: 20px;
    left: 50%;
    margin-left: -12rem;
  }
  .insurance_plans {
    margin-bottom: 60px;
  }
  .insurance_plans .insurance_plans_inner {
    background-color: #f9f9f9;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .insurance_plans .insurance_plans_inner:before {
    display: none;
  }
  .insurance_plans .s_title {
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 40px;
    width: 100%;
  }
  .insurance_plans .s_title .inner {
    padding: 11px 16px;
  }
  .insurance_plans .left {
    padding-top: 0;
    width: 100%;
  }
  .insurance_plans .left .buy_btn {
    display: none;
  }
  .insurance_plans .left .image {
    display: none;
  }
  .insurance_plans .right {
    margin-right: 0;
  }
  .insurance_plans_tab_links {
    position: relative;
    margin-bottom: -1px;
    width: 100%;
    background-color: #fff;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
  .insurance_plans_tab_link {
    border-bottom: none;
  }
  .tb_insurance_plans .start_price .inner {
    background: #FDE92A;
  }
  .p_fromUkraine .main_form .bottom .right {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
  .p_fromUkraine .main_form {
    padding-left: 20px;
    padding-right: 20px;
  }
  .p_fromUkraine .main_form .inputs {
    margin-bottom: 0;
  }
  .p_fromUkraine .main_form select {
    width: 100%;
  }
  .p_fromUkraine .main_form .bottom .right .checks {
    margin-bottom: 25px;
  }
  .p_fromUkraine .main_form .price {
    bottom: auto;
  }
}

@media (max-width: 767.98px) {
  .countries_information .countries_list {
    padding-left: 0;
    padding-right: 0;
    margin-left: -5px;
    margin-right: -5px;
  }
  .countries_information .country {
    margin-left: 5px;
    margin-right: 5px;
  }
  .insurance_banner_2 .right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .insurance_banner_2 .item {
    margin-bottom: 30px;
  }
  .insurance_banner_2 .item:last-child {
    margin-bottom: 10px;
  }
  .insurance_plans .right {
    width: 100%;
  }
  .insurance_plans .right .caption {
    padding-left: 30px;
    padding-right: 30px;
  }
  .tb_insurance_plans .plan_item .icon .inner {
    padding-left: 10px;
    padding-right: 10px;
  }
  .tb_insurance_plans .plan_item .icon .inner img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}

@media (max-width: 575.98px) {
  .top-line {
    padding: 20px 20px 14px 20px;
  }
  .top-line__text, .top-line__link {
    font-size: 12px;
    line-height: 17px;
  }
  .in_out_select {
    margin-left: 10px;
    margin-right: 5px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 15px;
  }
  .in_out_select .item {
    padding-left: 5px;
    padding-right: 5px;
    height: 25px;
    border-radius: 8px;
  }
  .in_out_select li.active {
    display: none;
  }
  .p_fromUkraine .s_top .s_top_inner {
    padding-top: 0;
  }
  .p_fromUkraine .s_top .map_mob {
    right: -400px;
    bottom: -270px;
    overflow: hidden;
  }
  .p_fromUkraine .s_top .map_mob img {
    width: 1000px;
    max-width: none;
    position: relative;
    right: 0;
  }
  .p_fromUkraine .s_top .map_mob .arrow {
    width: 150px;
    margin-top: -170px;
    margin-left: -51px;
  }
  .p_fromUkraine .s_top .map_mob .arrow img {
    max-width: 100%;
  }
  .s_top .map_mob .arrow {
    width: 150px;
    margin-top: -130px;
    margin-left: -30px;
  }
  .s_top .text-1 .label {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: auto;
  }
  .s_top .text-1 .label span:nth-child(3) {
    width: 100%;
  }
  .countries_information {
    margin-top: 170px;
  }
  .insurance_banner_2 .inner {
    font-size: 1.6rem;
    line-height: 1.9rem;
  }
  .insurance_plans .buy_btn {
    padding: 1.5rem;
  }
  .dtb .dtc:last-child {
    min-width: 30%;
  }
  .dtb .dtc .inner {
    padding-left: 10px;
    padding-right: 10px;
    height: 50px;
  }
  .tb_insurance_plans .plan_period .dtc {
    position: relative;
    height: 30px;
  }
  .tb_insurance_plans .plan_period .inner {
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
  }
  .tb_insurance_plans .dtr.th .dtc {
    width: 50%;
    text-align: center;
    font-size: 14px;
    line-height: 16px;
  }
  .tb_insurance_plans .dtr .dtc:nth-child(2) .inner {
    width: 40px;
  }
  .tb_insurance_plans .dtr.th .dtc:nth-child(2) {
    width: 0;
  }
  .tb_insurance_plans .dtr.th .inner {
    max-width: 100%;
    height: auto;
    padding-bottom: 10px;
  }
  .tb_insurance_plans .start_price .inner {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .tb_insurance_plans .start_price {
    font-size: 18px;
    line-height: 21px;
  }
  .tb_insurance_plans .start_price .dtc {
    padding-bottom: 20px;
  }
  .tb_insurance_plans .plan_item.active .inner {
    height: 60px;
  }
  .tb_insurance_plans .plan_item .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .tb_insurance_plans .plan_item {
    font-size: 14px;
    line-height: 15px;
  }
  .tb_insurance_plans .plan_item .inner span {
    font-size: 18px;
    line-height: 21px;
  }
  .insurance_plans .right .caption {
    font-size: 14px;
    line-height: 16px;
  }
  .p_fromUkraine .main_form select {
    width: 100%;
    font-size: 10px;
  }
  .p_fromUkraine .main_form select option {
    font-size: 12px;
  }
}


/******************** END FROM UKRAINE PAGE ************************/


@media (max-width: 1900px) {
  html {
    font-size: 9px;
  }
  .s_top_inner {
    min-height: 576px;
  }
  .container {
    width: 1400px;
  }
  .rules_what_if .rules_hotels_inner {
    -webkit-background-size: 830px auto;
            background-size: 830px auto;
  }
  .covid_sert .covid_sert_inner {
    -webkit-background-size: 830px auto;
            background-size: 830px auto;
    background-position: center right 20px;
  }
  .iti__country-list {
    width: 500px;
  }

  .datepicker {
    width: 496px;
  }

  .main_footer .container {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

@media (max-width: 1679.98px) {
  html {
    font-size: 8.5px;
  }
  .s_top_inner {
    min-height: 545px;
  }
  .container {
    width: 1350px;
  }
  .insurance_banner .bd_img {
    left: 4.2rem;
  }

  .datepicker {
    width: 481px;
  }
  .datepicker--days-names {
    margin-bottom: 5px;
  }
  .datepicker--cell {
    height: 34px;
  }
  .main_footer {
    font-size: 12px;
  }
}

@media (max-width: 1599.98px) {
  .s_top .text-1 {
    padding: 20px;
    font-size: 14px;
    line-height: 17px;
  }
  .s_top ul li {
    margin-bottom: 12px;
    padding-left: 30px;
  }
  .s_top ul li:last-child {
    margin-bottom: 0;
  }
  .s_insurance {
    /*padding-top: 40px;*/
  }
  .s_diya {
    margin-bottom: 220px;
  }
  .s_diya .s_diya_inner {
    height: 56rem;
  }
  .insurance_banner {
    margin-top: 160px;
    margin-bottom: 160px;
  }
  .rules_hotels, .rules_city, .city_transport {
    margin-bottom: 160px;
  }
  .rules_public {
    margin-bottom: 110px;
  }
  .rules_what_if {
    margin-bottom: 160px;
  }
  .covid_sert {
    margin-bottom: 160px;
  }
  .popup_default {
    font-size: 14px;
    line-height: 34px;
  }
  .popup_default .popup_inner {
    padding: 60px;
    width: 109rem;
  }
  .popup_default .popup_title {
    font-size: 20px;
    line-height: 24px;
  }
  .country_info_popup .popup_title img {
    height: 48px;
  }
  .country_info_popup_2 .popup_title img {
    height: 48px;
  }
  .popup_default .divider {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .popup_default .btn {
    margin-bottom: 24px;
  }
  .diya_popup .title {
    font-size: 20px;
    line-height: 24px;
  }
  .diya_app_guide .left {
    padding-right: 6.5rem;
  }
  .diya_app_guide .download {
    width: 162px;
  }
  .diya_app_guide .download p {
    margin-bottom: 12px;
  }
  .diya_app_guide .qr_code {
    margin-bottom: 21px;
  }
  .diya_app_guide .download_btn {
    margin-bottom: 12px;
  }
  .public_popup {
    font-size: 16px;
    line-height: 26px;
  }
  .public_popup ul li {
    margin-bottom: 24px;
  }
  .public_popup .important_info {
    padding: 40px;
  }
  .public_popup .important_info .title {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 18px;
  }
  .public_popup .important_info ul li {
    margin-bottom: 16px !important;
  }
  .public_popup .important_info ul li:last-child {
    margin-bottom: 0 !important;
  }
  .abroad_popup {
    font-size: 16px;
    line-height: 25px;
  }
  .abroad_popup .popup_title {
    margin-bottom: 25px;
  }
  .abroad_popup .title {
    font-size: 20px;
    line-height: 25px;
  }
  .pdf_popup .popup_inner {
    padding: 0;
  }
  .insure_for_aged .popup_inner {
    width: 60rem;
  }
  .rules_what_if .rules_hotels_inner {
    -webkit-background-size: 750px auto;
            background-size: 750px auto;
  }
  .covid_sert .covid_sert_inner {
    -webkit-background-size: 750px auto;
            background-size: 750px auto;
  }
  .main_footer {
    font-size: 11px;
  }
  .main_footer .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .main_footer .icons i {
    height: 27px;
    width: 27px;
  }
  .main_footer .icons .payment i {
    height: 27px;
    width: auto;
  }
}

@media (max-width: 1439.98px) {
  html {
    font-size: 8px;
  }
  .s_top_inner {
    min-height: 513px;
  }
  .container {
    width: 1200px;
    max-width: 100%;
  }
  .insurance_item a.buy_btn {
    height: 4.7rem;
    font-size: 12px;
  }
  .insurance_item a.details {
    font-size: 12px;
  }
  .insurance_item a.details img {
    width: 40px;
  }
  .diya_app .smart {
    width: 300px;
  }
  .iti__country-list {
    width: 417px;
  }

  .datepicker {
    width: 417px;
  }
  .datepicker--days-names {
    margin-bottom: 3px;
  }
  .datepicker--cell {
    height: 32px;
  }

  .s_form .partner_link {
    font-size: 14px;
    line-height: 17px;
  }

  .main_footer {
    font-size: 10px;
  }
}

.android #pd_consent {
  display: none !important;
}
.android #terms_ecta {
  display: none !important;
}
.android #terms_vuso {
  display: none !important;
}

@media (max-width: 1365.98px) {
  .rules_item_2 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .rules_item_2 .text {
    padding-left: 10px;
    padding-right: 10px;
  }
  .rules_hotels .rules_wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .main_form .form_field.citizenship .notes {
    right: 12px;
  }
  .main_form .form_field .notes {
    font-size: 12px;
    right: 0;
  }
  .code_check .radio_group {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .code_check .radio_item {
    margin-bottom: 20px;
  }

  .insurance_form .phone_field .notes {
    max-width: 115px;
  }

  .main_footer {
    font-size: 11px;
  }
  /*.main_footer .main_footer_inner {*/
    /*flex-wrap: wrap;*/
  /*}*/
  /*.main_footer_inner > div,*/
  /*.main_footer_inner > a {*/
    /*-webkit-box-ordinal-group: 3;*/
    /*-ms-flex-order: 2;*/
    /*order: 2;*/
  /*}*/
  /*.main_footer .icons {*/
    /*margin-bottom: 10px;*/
    /*margin-left: auto;*/
    /*margin-right: auto;*/
    /*width: 100%;*/
    /*-webkit-box-ordinal-group: 2;*/
    /*-ms-flex-order: 1;*/
    /*order: 1;*/
    /*-webkit-box-pack: center;*/
    /*-webkit-justify-content: center;*/
    /*-ms-flex-pack: center;*/
    /*justify-content: center;*/
  /*}*/

  .pcr_test .left {
    padding-left: 10rem;
    padding-right: 10rem;
  }
}

@media (max-width: 1259.98px) {
  html {
    font-size: 8px;
  }
  .s_insurance {
    /*padding-top: 50px;*/
  }
  .s_diya {
    margin-bottom: 120px;
  }
  .diya_app .smart {
    width: 250px;
  }
  .insurance_banner {
    margin-top: 120px;
    margin-bottom: 120px;
  }
  .rules_hotels, .rules_city, .city_transport {
    margin-bottom: 120px;
  }
  .rules_public {
    margin-bottom: 100px;
  }
  .rules_what_if {
    margin-bottom: 120px;
  }
  .covid_sert {
    margin-bottom: 120px;
  }
  .rules_what_if .rules_hotels_inner {
    -webkit-background-size: 620px auto;
            background-size: 620px auto;
  }
  .covid_sert .covid_sert_inner {
    -webkit-background-size: 620px auto;
            background-size: 620px auto;
  }
  .iti__country-list {
    width: 329px;
  }

  .datepicker {
    width: 329px;
  }
}

@media (min-width: 992px) and (max-width: 1259.98px) {
  .tablet .mfp-container {
    padding: 40px 20px 10px;
  }
  .tablet .popup_default {
    width: 100%;
  }
  .tablet .popup_default .popup_inner {
    padding: 30px 20px;
    width: 100%;
    height: auto;
    max-height: -webkit-calc(100vh - 50px);
    max-height: calc(100vh - 50px);
  }
  .tablet .mfp-close {
    right: -9px;
    top: -48px;
  }
  .tablet .mfp-close:active {
    top: -48px;
  }
  .main_header {
    margin-top: 3rem;
    margin-bottom: 0;
  }
  .s_top .content {
    width: 510px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .s_top .map {
    margin-left: -100px;
    -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
            transform: scale(0.8);
  }
  .insurance_item {
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .s_insurance .insurance_items {
    width: -webkit-calc(100% + 40px);
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }
  .insurance_item .head {
    font-size: 18px;
    line-height: 140%;
  }

  .insurance_form_discount_banner .t1 {
    font-size: 57px;
    line-height: 44px;
  }
  .insurance_form_discount_banner .t2 {
    font-size: 26px;
    line-height: 27px;
    margin-right: 29px;
  }
  .insurance_form_discount_banner .t3 {
    font-size: 67px;
    line-height: 44px;
  }
  .insurance_form_discount_banner img {
    width: 270px;
  }
  .main_footer {
    font-size: 12px;
  }
  .main_footer .main_footer_inner {
    /*justify-content: center;*/
  }
  .main_footer .contacts {
    margin-right: 5rem;
     /*margin-left: auto;*/
     /*margin-right: auto;*/
     /*width: 100%;*/
     /*justify-content: center;*/
     /*margin-top: 5px;*/
   }
}

@media (min-width: 992px) and (max-width: 1280px) and (orientation: portrait) {
  html {
    font-size: 10px;
  }
}

@media (max-width: 991.98px) {
  .main_header .logo {
  }
  .main_header .red_line {
  }
  .main_header .red_line a {
    /*margin-right: 10px;*/
  }
  /*.main_header .contacts_item:last-child a {*/
  /*  margin-right: 3rem;*/
  /*}*/

  .s_top_inner {
    min-height: 642px;
  }
  .visible_mob {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .hidden_mob {
    display: none !important;
  }
  .mobile.android .s_diya .download_btn.ios {
    display: none;
  }
  .mobile.android .s_diya .download_btn.android {
    display: inline-block;
  }
  .mobile.android .diya_app_guide .download_btn.android {
    display: block;
  }
  .mobile.android .diya_app_guide .download_btn.ios {
    display: none;
  }
  .mobile.ios .s_diya .download_btn.ios {
    display: inline-block;
  }
  .mobile.ios .s_diya .download_btn.android {
    display: none;
  }
  .mobile.ios .diya_app_guide .download_btn.ios {
    display: inline-block;
  }
  .mobile.ios .diya_app_guide .download_btn.android {
    display: none;
  }
  html {
    font-size: 10px;
  }
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .s_top {
    margin-top: -120px;
  }
  .s_top .map {
    margin-left: -10vw;
    -webkit-transform: scale(0.5);
        -ms-transform: scale(0.5);
            transform: scale(0.5);
  }
  .s_top .content {
    margin-top: 0;
    width: 320px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .s_top .text-1 {
    line-height: 16px;
    margin-bottom: 0;
  }
  .s_top .page_title {
    margin-bottom: 38px;
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
  }
  .mfp-content {
    width: 100% !important;
  }
  .mfp-container {
    padding: 40px 20px 10px;
  }
  .mfp-close {
    right: -9px;
    top: -48px;
  }
  .mfp-close:active {
    top: -48px;
  }
  .popup_default {
    font-size: 14px;
    line-height: 30px;
    width: 100%;
  }
  .popup_default .popup_inner {
    padding: 30px 20px;
    width: 100%;
    height: auto;
    max-height: -webkit-calc(100vh - 50px);
    max-height: calc(100vh - 50px);
  }
  .popup_default .popup_title {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 21px;
  }
  .country_info_popup .popup_title img {
    height: 45px;
  }
  .country_info_popup_2 .popup_title img {
    height: 45px;
  }
  .popup_default .divider {
    margin-top: 21px;
    margin-bottom: 21px;
  }
  .popup_default .btn {
    margin-bottom: 21px;
  }
  .popup_default .btn:before {
    height: 52px;
  }
  .popup_default .btn .inner {
    height: 52px;
  }
  .diya_popup .title {
    font-size: 18px;
    line-height: 21px;
  }
  .diya_app_guide .left {
    padding-right: 30px;
  }
  .diya_app_guide .download {
    width: 162px;
  }
  .diya_app_guide .qr_code {
    margin-top: 12px;
    margin-bottom: 21px;
  }
  .diya_app_guide .download_btn {
    margin-bottom: 0;
  }
  .public_popup {
    font-size: 16px;
    line-height: 25px;
  }
  .public_popup ul li, .public_popup ul.styled li {
    margin-bottom: 25px !important;
  }
  .public_popup .important_info {
    padding: 20px;
  }
  .public_popup .important_info .title {
    margin-bottom: 25px;
  }
  .public_popup .important_info ul li {
    margin-bottom: 15px !important;
  }
  .public_popup .important_info ul li:last-child {
    margin-bottom: 0 !important;
  }
  .abroad_popup {
    font-size: 16px;
    line-height: 25px;
  }
  .abroad_popup .popup_title {
    margin-bottom: 25px;
  }
  .abroad_popup .title {
    font-size: 20px;
    line-height: 25px;
  }
  .covid_sert_popup video {
    margin-left: 0;
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
  .s_insurance {
    padding-top: 100px;
    margin-bottom: 66px;
  }
  .p_inUkraine .s_insurance {
    padding-top: 0;
    margin-top: 0;
  }
  .insurance_item .head {
    height: 66px;
    font-size: 18px;
    line-height: 21px;
    white-space: normal;
    text-align: left;
  }
  .insurance_item.yellow .head {
    height: 66px;
    font-size: 18px;
    line-height: 21px;
  }
  .insurance_item {
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .s_insurance .insurance_items {
    width: -webkit-calc(100% + 40px);
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }
  .insurance_item .body,
  .insurance_item.yellow .body {
    padding: 20px 20px 30px;
  }
  .insurance_item.yellow .buy {
    flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .insurance_item.yellow .buy .details {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin-bottom: 0;
  }

  .insurance_item.yellow .buy .buy_btn {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .insurance_item .text {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 25px;
  }
  .insurance_item .buy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .insurance_item .buy_btn {
    margin-top: 20px;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .insurance_item a.buy_btn {
    font-size: 14px;
  }
  .insurance_item .buy .details {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 20px;
  }
  .insurance_item .buy .buy_btn {
    margin-top: 0;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    font-size: 14px;
    line-height: 16px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .s_faqs {
    margin-bottom: 60px;
  }
  .p_fromUkraine .s_faqs {
    margin-bottom: 66px;
  }
  .s_faqs_inner {
    padding: 44px 25px 50px;
  }
  .s_faqs .bg_img {
    width: auto;
    bottom: auto;
    top: 24px;
    right: 25px;
  }
  .s_faqs .s_title {
    margin-bottom: 40px;
  }
  .s_faqs .btn {
    width: 100%;
    max-width: 290px;
  }
  .s_faqs .btn .inner {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    height: 47px;
  }
  .s_faqs .btn:before {
    height: 47px;
  }
  .s_faqs_ctn {
    min-height: 1px;
  }
  .s_diya .bg_circle {
    width: 600px;
    height: 473px;
  }
  .s_diya .bg_circle .inner {
    width: 600px;
    height: 600px;
    right: -90px;
    bottom: -150px;
  }
  .s_diya .s_diya_inner {
    height: 473px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .diya_app .smart {
    width: 228px;
    margin-top: 0;
  }
  .s_diya .icons {
    margin-top: -25px;
    margin-bottom: 30px;
    height: 51px;
  }
  .s_diya .icons i {
    width: 51px;
    max-height: 51px;
  }
  .s_diya .icons img {
    width: 100%;
  }
  .s_diya .s_title {
    font-size: 30px;
    line-height: 45px;
    margin-bottom: 10px;
  }
  .diya_info {
    padding-left: 20px;
    padding-right: 20px;
  }
  .diya_info .text {
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 48px;
    max-width: 300px;
  }
  .s_diya {
    margin-bottom: 56px;
  }
  .s_diya .download {
    margin-bottom: 50px;
    padding: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .s_diya .download .download_btn {
    margin-bottom: 0;
    width: 144px;
  }
  .diya_app {
    padding-right: 20px;
  }
  .diya_app .download {
    display: none;
  }
  .rules_title {
    font-size: 18px;
    line-height: 21px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .rules_title .inner {
    padding: 11px 16px;
    width: 100%;
  }
  .rules_wrap {
    display: block;
  }
  .rules_item {
    margin-bottom: 30px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .rules_item:last-child {
    margin-bottom: 0;
  }
  .rules_item .image {
    margin-bottom: 0;
    margin-top: 4px;
    width: 12px;
    height: 12px;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    background: #1495D6;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .rules_item .image img {
    display: none;
  }
  .rules_item .text {
    width: 100%;
    text-align: left;
  }
  .rules_item .text br {
    display: none;
  }
  .rules_item_2 .text {
    padding-left: 25px;
    padding-right: 25px;
  }
  .rules_city .rules_title {
    margin-bottom: 40px;
  }
  .s_order {
    margin-top: 70px;
    margin-bottom: 30px;
  }
  .s_order .order_test {
    padding: 10px 20px;
    font-size: 20px;
    line-height: 23px;
    height: auto;
    text-align: center;
  }
  .insurance_banner {
    margin-top: 70px;
    margin-bottom: 30px;
    padding: 30px 20px;
    display: block;
  }
  .insurance_banner .content {
    margin-bottom: 20px;
  }
  .insurance_banner .bd_img {
    left: auto;
    top: 30px;
    margin-top: 0;
    right: 20px;
  }
  .insurance_banner .s_title {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 30px;
  }
  .insurance_banner .s_title br {
    display: none;
  }
  .insurance_banner .text-1 {
    font-weight: 400;
  }
  .insurance_banner .btn:before {
    height: 47px;
    /*width: 206px;*/
  }
  .insurance_banner .btn .inner {
    /*width: 206px;*/
    height: 47px;
  }

  .s_order {
    margin-top: 40px;
    margin-bottom: 60px;
  }
  .rules_hotels, .rules_city, .city_transport {
    margin-bottom: 60px;
  }
  .rules_hotels .rules_hotels_inner {
    padding: 30px 20px 50px;
    background-position: top left;
  }
  .rules_hotels .left {
    width: 100%;
  }
  .rules_hotels .rules_title {
    margin-bottom: 10px;
  }
  .rules_hotels .text-1 {
    margin-bottom: 31px;
    font-size: 18px;
    line-height: 21px;
  }
  .rules_hotels .rules_wrap {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .rules_item_2 {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 30px;
  }
  .rules_item_2:last-child {
    margin-bottom: 0;
  }
  .rules_public {
    margin-bottom: 30px;
  }
  .rules_public .rules_title {
    margin-bottom: 30px;
  }
  .rules_public .rules_wrap {
    margin-bottom: 40px;
    padding-left: 0;
    padding-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .rules_public .rules_item {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 30px;
    width: 100%;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .rules_public .rules_item .image {
    margin-top: 4px;
  }
  .rules_public .rules_item:last-child {
    margin-bottom: 0;
  }
  .remote_pcr .s_title {
    margin-bottom: 50px;
    font-size: 18px;
    line-height: 21px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .remote_pcr .s_title .inner {
    padding: 11px 16px;
    width: 100%;
  }
  .remote_pcr_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .remote_pcr_item {
    margin-bottom: 40px;
  }
  .remote_pcr_item .image:after {
    display: none;
  }
  .remote_pcr_item:last-child {
    margin-bottom: 0;
  }
  .remote_pcr_item .step {
    top: -8px;
    left: 50%;
    margin-left: -100px;
    font-size: 50px;
    line-height: 1;
  }
  .prohibition {
    margin-right: 0;
    padding: 20px 20px 40px;
    font-size: 14px;
    line-height: 30px;
  }
  .prohibition .title {
    margin-bottom: 20px;
    padding: 8px 10px;
    font-size: 14px;
    line-height: 16px;
  }
  .prohibition .details {
    margin-top: 40px;
  }
  .prohibition .prohibition_item {
    padding-left: 22px;
  }
  .prohibition .prohibition_item:before {
    top: 8px;
  }

  .rules_what_if .image {
    margin-top: 10px;
    margin-bottom: 40px;
  }
  .rules_what_if .left {
    width: 100%;
  }
  .rules_what_if .rules_hotels_inner {
    padding: 30px 20px 40px;
    background-image: none;
  }
  .rules_what_if .rules_title {
    margin-bottom: 30px;
  }
  .rules_what_if .text-1 {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 21px;
  }

  .covid_sert {
    background: #FDE92A;
  }
  .covid_sert .image {
    margin-top: 30px;
    margin-bottom: 40px;
  }
  .covid_sert .left {
    width: 100%;
  }
  .covid_sert .covid_sert_inner {
    padding: 30px 20px 40px;
    background-image: none;
  }
  .covid_sert .rules_title .inner {
    padding: 11px 20px 11px 17px;
    background: #fff;
  }
  .covid_sert .rules_title br {
    display: none;
  }
  .covid_sert .text-1 {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 21px;
  }

  .s_form .show_form {
    /*display: none;*/
    margin-bottom: 30px;
  }
  .show_form_btns {
    margin-bottom: 30px;
  }
  .s_form .partner_link {
    padding-top: 10px;
    display: block;
  }
  .main_form {
    display: block !important;
    padding: 41px 20px 50px;
  }
  .main_form .head_2 {
    margin-bottom: 20px;
    padding: 30px;
    font-size: 25px;
    line-height: 30px;
  }
  .main_form .form_title {
    margin-bottom: 17px;
    font-size: 18px;
    line-height: 23px;
    text-align: center;
  }
  .pcr_form .head {
    padding-bottom: 20px;
  }
  .pcr_form .form_title {
    margin-bottom: 0;
  }
  .pcr_form .body {
    padding-top: 20px;
  }
  .main_form .form_title span {
    white-space: nowrap;
  }
  .main_form .insurance_select {
    margin-bottom: 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main_form .insurance_comp {
    width: 230px;
    /*margin-bottom: 35px;*/
  }
  .main_form .insurance_comp:last-child {
    margin-bottom: 0;
  }
  .main_form .text-1 {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 21px;
  }
  .main_form .text-1 br {
    display: none;
  }
  .main_form .text-2 {
    font-size: 18px;
    line-height: 21px;
  }
  .main_form .text-2 br {
    display: none;
  }
  .main_form .inputs {
    margin-bottom: 40px;
    display: block;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .main_form .inputs .cols {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .main_form .tests_count {
    margin-bottom: 20px;
    display: block;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .main_form .tests_count .cols {
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .main_form .form_field {
    margin-bottom: 22px;
  }
  .pcr_form .bottom {
    /*margin-bottom: 40px;*/
    display: block;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .pcr_form .bottom .cols {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .pcr_price {
    padding-top: 0;
  }
  .pcr_info {
    height: auto;
    margin-bottom: 30px;
  }
/*  .main_form .form_field:last-child .notes {
    margin-top: 10px;
    right: auto;
    left: 0;
    top: 100%;
  }*/
  .main_form .form_field .notes {
    right: 0;
  }
  .main_form .btn {
    margin-left: auto;
    margin-right: auto;
    width: 208px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .main_form .btn:before {
    width: 100%;
  }
  .main_form .download_policy {
    width: 380px;
    max-width: 100%;
  }
  .main_form .download_policy:before {
    width: 380px;
    max-width: 100%;
  }
  .main_form .code_check {
    padding-top: 50px;
  }
  .main_form .code_check input {
    padding: 7px;
    font-size: 20px;
    line-height: 143.2%;
  }
  .main_form .code_check .form_field {
    margin-bottom: 30px;
  }
  .main_form .send_again {
    margin-top: 0;
    margin-bottom: 60px;
  }
  .main_form .back {
    margin-bottom: 50px;
  }
  .main_form .success_icon {
    width: 65px;
    margin-top: 5px;
    margin-bottom: 20px;
  }
  .main_form .step_3 .text-2 + .text-2 {
    margin-bottom: 40px;
  }
  .main_form .bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .main_form .bottom .checks {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    padding: 0;
    width: 100%;
  }
  .main_form .bottom .price {
    margin-bottom: 40px;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    padding: 0;
    width: 100%;
  }
  .main_form .bottom_2 {
    display: block;
  }
  .main_form .bottom_2 .column {
    width: 100%;
  }
  .main_form .bottom_2 .price_extended {
    order: 1;
  }
  .main_form .bottom_2 .buttons_wrap {
    order: 2;
  }
  .price_extended {
    display: none!important;
  }
  .price_standard {
    display: block!important;
  }
  .extended_coverage {
    margin-bottom: 30px;
  }
  .financial_risks .checkbox {
    margin-bottom: 10px;
  }
  .financial_risks {
    display: block;
  }
  .main_form .extended_coverage .text a.popup_btn {
    display: block!important;
  }
  .main_form .financial_risks .text a.popup_btn {
    display: block!important;
  }

  .checkbox label + a,
  .checkbox label + span {
    font-size: 14px;
  }
  .partners {
    padding-top: 30px;
    margin-bottom: 20px;
    overflow: hidden;
  }
  .partners .inner {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .partners_item {
    margin-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
    width: 340px;
    text-align: center;
    max-width: 50%;
  }
  .partners_item p {
    display: none;
  }

  .main_footer {
    font-size: 14px;
  }
  .main_footer .logo {
    display: none;
  }
  .main_footer_links {
    display: block;
    text-align: center;
  }
  .main_footer .main_footer_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .main_footer .contacts {
    margin-bottom: 30px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .main_footer .copyright {
    /*margin-bottom: 30px;*/
  }
  .main_footer .email {
    margin-bottom: 30px;
    width: 100%;
    margin-right: 0;
    text-align: center;
  }
  .main_footer .contacts_item:last-child {
    margin-right: 0;
  }
  .main_footer .red_line p {
    display: none;
  }

  .main_footer .about-us {
    display: block;
    margin-right: 0;
    margin-bottom: 30px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .main_footer .faqs {
    margin-right: 0;
    margin-bottom: 30px;
    padding-left: 15px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .main_footer .copyright {
    /*-webkit-box-ordinal-group: 3;*/
    /*-ms-flex-order: 2;*/
    /*order: 2;*/
  }
  .main_footer .contacts {
    display: block;
    margin-right: 0;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    text-align: center;
  }
  .main_footer .contacts_item {
    margin-bottom: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .main_footer .icons {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .main_footer .refund_policy {
    margin-right: 0;
    margin-bottom: 30px;
    padding-right: 0;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .main_footer .refund_policy a.popup_btn {
    display: none!important;
  }
  .main_footer .public_contract {
    margin-right: 0;
    margin-bottom: 30px;
    padding-right: 0;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .main_footer .public_contract a.popup_btn {
    display: none!important;
  }
  .main_footer .link_mob {
    display: block!important;
  }
  .main_footer .payment {
    margin-left: 0;
  }

  .iti-mobile .iti__country-list {
    width: calc(100% - 80px);
    margin-left: 9px;
  }

  .main_form .bottom a.popup_btn {
    display: none!important;
  }
  .pcr_form .pcr_info a.popup_btn {
    display: block!important;
  }
  .main_form .link_mob {
    display: block!important;
  }
  .insure_terms .link_mob {
    display: none!important;
  }
  .insure_terms .link_mob.active {
    display: block!important;
  }
  #pd_consent, #terms_ecta, #terms_vuso {
    display: none !important;
  }

  .pcr_test_disabled .insurance_form_wrap {
    display: block!important;
  }
  .pcr_test_disabled .show_form_btns {
    display: none;
  }

  .pcr_test {
    margin-bottom: 40px;
  }
  .pcr_test_inner {
    padding-bottom: 50px;
    padding-right: 0;
    background: #F9F9F9;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .pcr_test_inner .bg_img {
    top: 17px;
    right: 15px;
    bottom: auto;
    opacity: 1;
    width: 65px;
  }
  .pcr_test_inner .bg_img img {
    width: 100%;
  }
  .pcr_test .left {
    width: 100%;
    padding-right: 0;
    padding-left: 40px;
  }
  .pcr_test .s_title {
    margin-bottom: 40px;
    font-size: 30px;
    line-height: 35px;
  }
  .pcr_test .right {
    padding-left: 40px;
    padding-right: 40px;
  }
  .pcr_test .left .send_code {
    display: none;
  }
  .pcr_test .mob_btns {
    margin-top: 54px;
    padding-left: 40px;
    padding-right: 40px;
    display: block;
  }
  .pcr_test_item {
    border-radius: 15px;
  }

  .pcr_discount_top {
    display: block;
  }
  .pcr_discount_banner {
    padding: 35px 30px;
    font-size: 37px;
    line-height: 33px;
    text-align: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    background-image: none;
  }
  .pcr_discount_banner .t1 {
    margin-bottom: 10px;
    display: block;
    font-size: 37px;
    line-height: 33px;
  }
  .pcr_discount_banner .t2 {
    display: block;
    font-size: 37px;
    line-height: 33px;
  }
  .pcr_discount_banner .t3 {
    font-size: 67px;
    line-height: 44px;
  }
  .pcr_discount_banner img {
    width: 270px;
  }
  .pcr_discount_code {
    width: 100%;
    padding: 30px 30px 40px;
  }
  .pcr_discount_code .text {
    font-size: 26px;
    line-height: 27px;
  }
  .pcr_discount_bottom {
    padding: 10px 20px;
    font-size: 20px;
    line-height: 23px;
    height: auto;
    text-align: center;
  }

  .pcr_request_popup a {
    display: none!important;
  }
  .pcr_request_popup .link_mob {
    display: block!important;
  }
  .main_form .checkbox.extreme a.popup_btn {
    display: block !important;
  }
  .pcr_request_popup .submit {
    display: block!important;
  }

  .pcr_form .virus-1,
  .pcr_form .virus-2 {
    display: none;
  }
  .pcr_form .hospital_field {
    font-size: 16px;
  }

  .insurance_form_discount_banner {
    background-image: url(../img/virus-8.svg);
    background-position: bottom 0 right 8%;
    padding-left: 0;
    padding-top: 5rem;
    margin-left: -20px;
    margin-right: -20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .insurance_form_discount_banner .t1 {
    font-size: 57px;
    line-height: 44px;
  }
  .insurance_form_discount_banner .t2 {
    font-size: 26px;
    line-height: 27px;
    margin-right: 29px;
  }
  .insurance_form_discount_banner .t3 {
    font-size: 67px;
    line-height: 44px;
  }
  .insurance_form_discount_banner img {
    width: 270px;
  }
  .step_3 .insurance_form_discount_banner .t1 {
    font-size: 37px;
    line-height: 44px;
  }
  .step_3 .insurance_form_discount_banner img {
    width: 270px;
  }

  .insurance_form_discount_banner .order_test {
    position: relative;
    top: auto;
    left: auto;
    margin-top: 40px;
    margin-left: 0;
  }
  .hospital_item .text {
    padding-top: 3px;
    font-size: 16px;
  }
  .hospital_item .number {
    margin-bottom: 5px;
    font-size: 20px;
  }
  .hospital_item .address {
    width: 100%;
    margin-bottom: 5px;
    padding-right: 0;
  }
  .hospital_item .schedule {
    width: 100%;
  }
  .pcr_form .bottom .checks {
    order: 3;
  }
  .pcr_form .bottom .price {
    order: 1;
  }
  .pcr_form .bottom .price_discount {
    order: 2;
    margin-bottom: 40px;
  }
  .pcr_form .bottom .price_discount.active {
    display: block;
  }
  .pcr_form .buttons_wrap .price_discount {
    display: none;
  }
  .pcr_form .insure_terms .link_mob {
    display: block!important;
  }
  .pcr_form .buttons_wrap .left {
    width: auto;
  }
  .pcr_form .tests_count .radio_2 span {
    font-size: 16px;
  }
}

@media (max-width: 850.98px) {
  .s_top .map {
    margin-left: -17vw;
  }
}

@media (max-width: 767.98px) {
  .main_header {
    margin-bottom: 30px;
  }
  /*.main_header .red_line {*/
  /*  position: absolute;*/
  /*  top: 100%;*/
  /*  left: 26px;*/
  /*  margin-top: 10px;*/
  /*}*/
  .main_header .red_line a {
    margin-right: 10px;
  }
  .diya_app_guide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .diya_app_guide .left {
    padding-right: 0;
  }
  .diya_app_guide .download {
    padding-top: 30px;
    width: 182px;
    font-size: 16px;
  }
  .s_top {
    margin-top: -180px;
  }
  .s_top_inner {
    min-height: 742px;
  }
  .s_top .map {
    margin-top: 100px;
    margin-left: -200px;
    -webkit-transform: scale(0.35);
        -ms-transform: scale(0.35);
            transform: scale(0.35);
  }
  .s_insurance {
    margin-top: -230px;
    padding-top: 30px;
  }
  .p_inUkraine .s_insurance {
    padding-top: 0;
    margin-top: -60px;
  }
  .s_insurance .insurance_items {
    width: 100%;
    margin: 0;
    display: block;
  }
  .insurance_item {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
  }
  .insurance_item:last-child {
    margin-bottom: 0;
  }
  .insurance_item .head {
    height: auto;
  }
  .insurance_item.yellow .buy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .insurance_item.yellow .buy .details {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 20px;
  }
  .insurance_item.yellow .buy .buy_btn {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    font-size: 14px;
    line-height: 16px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .insurance_item.yellow a.buy_btn {
    margin-right: 0;
  }
  .s_diya .bg_circle {
    width: 387px;
    height: 386px;
  }
  .s_diya .bg_circle .inner {
    width: 387px;
    height: 386px;
    right: -90px;
    bottom: -83px;
  }
  .rules_hotels .rules_hotels_inner {
    background-position: top 55px left;
    -webkit-background-size: 700px auto;
            background-size: 700px auto;
  }
  .rules_what_if .image {
    overflow: hidden;
  }
  .covid_sert .image {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .rules_what_if .image img {
    height: 295px;
    width: auto;
    max-width: none;
  }
  .covid_sert .image img {
    height: 295px;
    width: auto;
    max-width: none;
  }
  .partners_item .image {
    height: 10rem;
  }

  .show_form_btns {
    display: block;
  }
  .s_form .show_form {
    margin-left: auto;
    margin-right: auto;
  }
  .show_insurance_form {
    margin-bottom: 20px;
  }
  .pcr_test .right {
    display: block;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
  .pcr_test .mob_btns {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
  .pcr_discount_bottom {
    display: block;
    text-align: center;
  }
  .pcr_form .hospital_field {
    font-size: 12px;
  }
  .pcr_price {
    padding-bottom: 30px;
    display: block;
  }
  .pcr_price_item {
    width: 100%;
    margin-bottom: 20px;
  }
  .pcr_discount_banner {
    background: #FDE92A;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .pcr_price_info {
    padding-top: 30px;
  }
    .blue_btn {
        font-size: 14px;
        line-height: 16px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 660px) {
  .s_top .map {
    margin-left: -250px;
  }

  .pcr_discount_code .code_field {
    background-image: none;
    border: 1px dashed;
  }
}

@media (max-width: 575.98px) {
  .popup_default {
    text-align: left;
  }
  .popup_default a {
    white-space: normal;
  }
  .s_top_inner {
    min-height: 292px;
  }
  .s_top .text-1 {
    width: 255px;
  }
  .s_top .text-1 ul {
    width: 100%;
  }
  .s_top .map {
    margin-left: -320px;
  }
  .p_inUkraine .s_insurance {
    padding-top: 0;
    margin-top: 170px;
  }
  .insurance_banner .content {
    padding-right: 0;
  }
  .diya_info {
    width: 235px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .s_diya .bg_circle {
    right: auto;
    left: 144px;
    width: -webkit-calc(100% - 144px);
    width: calc(100% - 144px);
  }
  .s_diya .bg_circle .inner {
    right: auto;
    left: 0;
  }
  .main_form .form_field input {
    font-size: 16px;
  }
  .main_form .form_field .notes {
    font-size: 12px;
  }
  .s_top {
    margin-top: 30px;
  }
  .s_top .map_mob {
    position: absolute;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    right: -20px;
    bottom: -80px;
  }
  .s_top_inner {
    position: relative;
  }
  .s_top .map {
    display: none;
    position: absolute;
    z-index: 50;
    right: 0;
    bottom: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    margin-left: auto;
  }
  .s_top .map_mob {
    display: block;
  }
  .s_top .map .image img {
    display: none;
  }
  .s_top .map .image img + img {
    display: block;
  }
  .s_top .map .circles {
    display: none;
  }
  .s_insurance {
    margin-top: 0;
  }
  .s_faqs .s_title {
    margin-bottom: 30px;
    font-size: 38px;
    line-height: 42px;
    height: 84px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .s_faqs .bg_img {
    width: 80px;
  }
  .s_faqs_inner {
    padding: 35px 25px 40px;
  }
  .rules_hotels .rules_hotels_inner {
    background-position: top 68px left;
  }

  .main_form .form_field input::placeholder {
    font-size: 15px;
  }
  .main_form .btn .inner {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .datepicker {
    width: calc(100vw - 80px);
  }
  .datepicker--days-names {
    margin-bottom: 5px;
  }
  .datepicker--cell {
    height: 34px;
  }

  .countries_information.on_main {
    margin-top: 100px;
  }
  .country_info_popup_2 .popup_title {
    font-size: 16px;
    line-height: 18px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .country_info_popup_2 .popup_title img {
    height: 40px;
    margin-right: 10px;
  }
  .country_info_popup_2 .popup_title .country_name {
    height: 40px;
    margin-right: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .country_info_popup_2 .country_zone_red,
  .country_info_popup_2 .country_zone_green {
    width: 100%;
    margin-top: 10px;
  }
  .country_info_popup .popup_title {
    font-size: 16px;
    line-height: 18px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .country_info_popup .popup_title img {
    height: 40px;
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .country_info_popup .popup_title .country_name {
    height: 40px;
    margin-right: 10px;
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .country_info_popup .country_zone_red,
  .country_info_popup .country_zone_green {
    width: 100%;
  }
  .pcr_discount_code .code_field {
    width: 100%;
  }
  .pcr_discount_top {
    overflow: hidden;
  }
  .pcr_test {
    overflow: hidden;
  }
  .pcr_form .hospital_select {
    display: block;
  }
  .pcr_form .hospital_select .hospital_place {
    width: 100%;
  }
  .pcr_form .hospital_select .schedule {
    width: 100%;
    padding-left: 0;
  }
  .pcr_form .hospital_select .schedule span {
    padding-left: 0;
  }

  .pcr_form .buttons_wrap {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (max-width: 479.98px) {
  .main_form .insure_more {
    font-size: 14px;
    line-height: 16px;
  }
  .rules_hotels .rules_hotels_inner {
    background-position: top 88px left;
  }

  .main_form .form_field .notes {
    font-size: 10px;
  }
  .main_form .form_field input::placeholder {
    font-size: 12px;
  }
  .datepicker--days-names {
    margin-bottom: 3px;
  }
  .datepicker--cell {
    height: 32px;
  }

  .main_form .insurance_comp {
    min-width: 230px;
  }

  .main_form .btn {
    width: 100%;
  }
  .main_form .btn .inner {
    width: 100%;
  }

  .checkbox a {
    font-size: 14px;
  }
  .extended_coverage {
    margin-bottom: 55px;
  }
  .extended_coverage .notes {
    font-size: 12px;
    background: #1495D6;
  }
  .partners_item {
    padding-left: 10px;
    padding-right: 10px;
  }

  .remote_pcr_wrap {
    padding-left: 0;
  }

  .insurance_form .phone_field .notes {
    max-width: 100px;
  }
  .pcr_test .right {
    padding: 0 10px;
  }
  .pcr_test_item {
    width: 100%;
  }
  .pcr_test .mob_btns {
    padding: 0 10px;
    width: 100%;
    position: relative;
  }

  .pcr_test .send_code {
    width: 100%;
  }
  .pcr_test .send_code .inner {
    width: 100%;
  }
  .pcr_test .send_code:before {
    width: 100%;
  }

  .pcr_form .buttons_wrap .left {
    width: 100%;
  }


  .insurance_plans_tab_link {
    padding: 15px;
    font-size: 12px;
  }
}

@media (max-width: 374.98px) {
  /*.main_header .red_line {*/
  /*  margin-top: 5px;*/
  /*  font-size: 12px;*/
  /*}*/
  .s_top .content {
    width: 280px;
  }
  .diya_info {
    padding-right: 10px;
    width: 205px;
  }
  .main_form .insure_more {
    font-size: 12px;
  }
  .main_form .form_field input {
    font-size: 16px;
  }
  .rules_hotels .rules_hotels_inner {
    background-position: top 128px left;
  }
  .iti__country-list {
    width: 240px;
  }
  .main_form .insurance_comp {
    min-width: 195px;
  }

  .pcr_request_popup .submit,
  .pcr_request_popup .submit:before,
  .pcr_request_popup .submit .inner {
    width: 100%;
  }
}

.phone_icon_header {
    width: 15px!important;
    height: 15px!important;
}

.radiation {
    margin-bottom: 1.6rem;
    /*display: none;*/
}
.radiation.show {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.radiation.disabled {
    pointer-events: none;
    opacity: 0.5;
}
.radiation .text {
    position: relative;
    width: 100%;
}
.radiation .text a {
    /*text-decoration: none;*/
}
.radiation:hover .notes {
    opacity: 1;
    color: #000;
}
.radiation .notes {
    position: absolute;
    top: 100%;
    left: 0;
    font-size: 12px;
    line-height: 1.2;
    opacity: 0;
    transition: opacity .2s;
}

.radiation_popup {
    line-height: 30px;
}
.radiation_popup ul.styled.styled li {
    margin-bottom: 20px;
}

.radiation {
    margin-bottom: 30px;
}

.main_form .radiation .text a.popup_btn {
    display: block!important;
}

.radiation {
    margin-bottom: 55px;
}
.radiation .notes {
    font-size: 12px;
    background: #1495D6;
}

.btn_send {
    background-color: #1CAEFF;
    width: 300px;
    height: 65px;
    border-radius: 50px;
    color: #fff;
    font-size: 18px;
    border: 2px solid transparent; /* Додаємо початкову прозору границю */
    cursor: pointer;
}

.btn_send:hover {
    background-color: #fff;
    color: 	#000000;
    border-color: #000000; /* Змінюємо колір границі при наведенні */
}

.btn_send:focus {
    outline: none; /* Видаляємо рамку при фокусі */
}

.btn_send:active {
    transform: scale(0.94); /* Зменшимо розмір кнопки при натисканні */
}
