.header .logo {
    width: 55px!important;
    height: 55px!important;
}

html{
    background-repeat: no-repeat;
    background-position:center;
    background-attachment:fixed;
    background-size:100% auto;
}

@media (max-width: 800px) {
    html{
        background-repeat: no-repeat;
        background-position:center;
        background-attachment:fixed;
        background-size:auto 100%;
    }
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Regular.woff") format('woff'),
        url("../fonts/Montserrat-Regular.woff2") format('woff2');
    font-weight: 400;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-SemiBold.woff") format('woff'),
        url("../fonts/Montserrat-SemiBold.woff2") format('woff2');
    font-weight: 600;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Bold.woff") format('woff'),
        url("../fonts/Montserrat-Bold.woff2") format('woff2');
    font-weight: 700;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }


  textarea:focus, input:focus{
    outline: none;
}

b{
    font-weight: 800;
}

.btn-primary{
    color:#FFFFFF!important;
    margin: 5px;
    border: none;
    background: #C0101D;
    box-shadow: 0px 10px 40px -20px rgb(192 16 29 / 25%);
    border-radius: 25px;
    color: #FFFFFF;
    margin-right: 25px;
    font-weight: 600;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    padding: 0 20px 0 20px;
}

.btn-secondary{
    margin: 5px;
    border: 1px solid #C0101D;
    background: #FFFFFF;
    box-shadow: 0px 10px 40px -20px rgb(192 16 29 / 25%);
    border-radius: 25px;
    color: #C0101D;
    margin-right: 25px;
    font-weight: 600;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    padding: 0 20px 0 20px;
}

* {
    box-sizing: border-box;
    font-family: "Montserrat";
    /*font-style: normal;*/
    color: #0D1F38;
    margin: 0;
    padding: 0;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
    letter-spacing: 0.02em;
    color: #2D71A4;
}

h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
    display: flex;
    align-items: center;
    text-align: center;
    letter-spacing: 0.02em;
    color: #2D71A4;
}

h3 {
    font-weight: 700;
    font-size: 22px;
    line-height: 130%;
}

p {
    font-size: 18px;
    line-height: 150%;
}

a {
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    cursor: pointer;
    text-decoration: none;
}

li {
    list-style-type: none;
}

ul {
    margin-left: 0;
    padding-left: 0;
}

button {
    background: none;
    border: none;
}

button:disabled{
    cursor: not-allowed;
    opacity: .5;
}

/* HEADER */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(to right, #FFFFFF 54%, #D9E7F2 99%);
}

/*
.header .logo {
    background-image: url("../images/logo.svg");
    width: 70px;
    height: 44px;
}*/

.header .list {
    display: flex;
    margin-left: 35px;
    margin-right: auto;
}

.header .list li {
    margin-right: 30px;
    text-align: center;
}

.header .list li a {
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    text-align: center;
    color: #2D71A4;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header .list li a.active {
    color: #C0101D;
}

.header .list li a:hover {
    color: #C0101D;
}

.header .registration::before {
    content: '';
    display: block;
    background-image: url("../images/DNKCIBwhite.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 26px;
    height: 26px;
    margin-right: 5px;
}

.header .registration {
    display: flex;
    align-items: center;
    line-height: 20px;
    padding: 15px 25px;
    background: #C0101D;
    color: #fff;
    border-radius: 25px;
}

.header_mobile {
    display: none;
}

.header .search {
    display: none;
    width: 56px;
    height: 56px;
    background-image: url("../images/Search.svg");
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}

.header .burger {
    width: 56px;
	height: 56px;
	position: relative;
	z-index: 10;
	overflow: hidden;
}

.header .burger span {
    width: 30px;
	height: 2px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #C0101D;
	transition: all 0.5s;
}

.burger span:nth-of-type(2) {
	top: calc(50% - 5px);
}

.burger span:nth-of-type(3) {
	top: calc(50% + 5px);
}

.burger_menu {
	position: absolute;
	top: 87px;
	right: 20px;
	width: 264px;
	height: fit-content;
    z-index: 11;
    background: #FFFFFF;
    box-shadow: 0px 15px 30px -22px rgba(12, 59, 95, 0.15);
    border-radius: 10px;
	transform: translateY(-150%);
	transition: transform 0.5s; 
}

.burger_menu.active {
	transform: translateY(0);
}

.burger_menu li {
	list-style-type: none;
}

.burger.active span:nth-of-type(1) {
    display: none;
}

.burger.active span:nth-of-type(2) {
    top: 50%;
    transform: translate(-50%, 0%) rotate(45deg);
}

.burger.active span:nth-of-type(3) {
    top: 50%;
    transform: translate(-50%, 0%) rotate(-45deg); 
}

.burger_list {
    padding: 20px;
    border-bottom: 1px solid #C0101D;
}

.burger_list li:not(:last-child) {
    margin-bottom: 20px;
}

.burger_list li a {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #2D71A4;
}

.burger_links {
    padding: 30px;
}

.burger_links li a {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #2D71A4;
}

.burger_links li:not(:last-child) {
    margin-bottom: 20px;
}

/* FOOTER */

.footer .content {
    max-width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 120px;
    padding: 40px 0;
    border-top: 1px solid #C0101D;;
}

.footer .content .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 45%;
}

.footer .content .top .top-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.footer .content .top .top-item .info{
    text-align: right;
}

.footer .content .top .top-item .logo {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 20px;
}

.footer .content .top .top-item .chiz {
    width: 40px;
    height: 40px;
    background-image: url("../images/footer_chiz.svg");
}

.footer .content .top .top-item .ics {
    width: 40px;
    height: 40px;
    background-image: url("../images/footer_ics.svg");
}

.footer .content .top .top-item .medco {
    width: 40px;
    height: 40px;
    background-image: url("../images/footer_medco.svg");
}

.footer .content .bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    width: 45%;
}

.footer .content .bottom .link {
    font-weight: 400;
    font-size: 16px;
    text-decoration-line: underline;
    color: #2D71A4;
}

.footer .content .bottom .vk {
    display: block;
    width: 32px;
    height: 32px;
    background-image: url("../images/vk.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

.footer .content .bottom .youtube {
    display: block;
    width: 32px;
    height: 32px;
    background-image: url("../images/youtube.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

@media (max-width: 1320px) {
    .header .list {
        display: none;
    }

    .header .registration {
        display: none;
    }

    .header .header_mobile {
        display: flex;
    }

    .header .header_mobile .search {
        display: block;
    }


}

@media (max-width: 1200px) {
    .content {
        max-width: 780px;
    }

    .footer .content .top,
    .footer .content .bottom {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .content {
        padding: 0 10px;
    }
}

/*Wizard*/


.hide {
    display: none;
  }
    .wizard{
      max-height: 100%;
      font-family: 'Myriad Pro'!important;
      position:fixed;
      top: 50%;
      /*bottom: 0;*/
      left: 0;
      right: 0;
      width: 600px;
      max-width: 90vw;
      /*height: 90vh;*/
      background-color: #ffffff;
      z-index: 90;
      margin-top: auto;
      margin-bottom: auto;
      margin-left: auto;
      margin-right: auto;
      /*margin-top: 75px;*/
      border-radius: 2px;
      opacity: .99;
      overflow: auto;
      -webkit-transform: translate(0, -50%);
      transform: translate(0, -50%);
      -moz-user-select: none;
      -khtml-user-select: none;
      user-select: none;
      border: 2px solid #1d50769e;
    border-radius: 15px;
    box-shadow: 2px 2px 2px 1px #1d50769e;
  }
  
  .wizard p{
      margin-bottom: 5px;
  }
  
  .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: 85;
      background-color: rgb(0 0 0 / 80%);
  }
  
  .wizard-row{
      width: auto;
      height: auto;
      margin: 20px 40px 20px 40px;
  }
  
  .wizard-row h1, h2, h3, h4, h5, h6{
    margin-bottom: 10px;
  }
  
  .btn_pay-primary {
      background-color: #22557B;
      width: 100%;
      border-radius: 8px;
      border-style: none;
      box-sizing: border-box;
      color: #FFFFFF;
      cursor: pointer;
      display: inline-block;
      font-size: 20px;
      font-weight: 500;
      min-height: 56px;
      line-height: 20px;
      list-style: none;
      margin: 5px;
      outline: none;
      padding: 10px 16px;
      position: relative;
      text-align: center;
      text-decoration: none;
      transition: color 100ms;
      vertical-align: baseline;
      user-select: none;
      -webkit-user-select: none;
      touch-action: manipulation;
  }
  
  
  .btn_pay-gray, .btn-gray {
    background-color: #4b4b4b;
    width: 100%;
    border-radius: 8px;
    border-style: none;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    min-height: 56px;
    line-height: 20px;
    list-style: none;
    margin: 5px;
    outline: none;
    padding: 10px 16px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: color 100ms;
    vertical-align: baseline;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }
  
  .btn-warn {
    background-color: #930000;
    width: 100%;
    border-radius: 8px;
    border-style: none;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    min-height: 56px;
    line-height: 20px;
    list-style: none;
    margin: 5px;
    outline: none;
    padding: 10px 16px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: color 100ms;
    vertical-align: baseline;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }
  
  .stepper-wrapper {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    font-weight: bold;
    color:#707070;
  }
  
  .stepper-item::before {
    position: absolute;
    content: "";
    border-bottom: 2px solid #C0101D;
    width: 100%;
    top: 20px;
    left: -50%;
    z-index: 2;
  }
  
  .stepper-item::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #C0101D;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 2;
  }
  
  .stepper-item .step-counter {
    border: 2px solid #C0101D;
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #FFFFFF;
    margin-bottom: 6px;
  }
  
  
  .stepper-item.completed .step-counter {
    background-color: #C0101D;
    color: #FFFFFF;
  }
  
  .stepper-item.completed::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #C0101D;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 3;
  }
  
  .stepper-item:first-child::before {
    content: none;
  }
  .stepper-item:last-child::after {
    content: none;
  }


  .close {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 32px;
    height: 32px;
    opacity: 0.3;
  }
  .close:hover {
    opacity: 1;
  }
  .close:before, .close:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 33px;
    width: 2px;
    background-color: #333;
  }
  .close:before {
    transform: rotate(45deg);
  }
  .close:after {
    transform: rotate(-45deg);
  }


  /*
  DROPDOWN
  */

  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 278;
  }

  .dropdown-content-user {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 278;
    border-radius: 10px;
    background: #f9f9f9;
    top: 75px;
    right: 20px;
  }
  
  .dropdown-content p{
    font-weight: 600;
    font-size: 13px;
    line-height: 25px;
    text-align: center;
    color: #2D71A4;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .dropdown-content-user p{
    font-weight: 600;
    font-size: 16px;
    line-height: 200%;
    text-align: center;
    color: #C0101D;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .dropdown-content p:hover{
    color: #C0101D;
  }

  input[type="radio"]{
    margin: 10px;
  }

  .flex-space{
    display: flex;
    justify-content: space-between;
  }

  .btn-white{
    margin: 3px;
    border: 2px solid #FFFFFF;
    background: #C0101D;
    box-shadow: 0px 10px 40px -20px rgb(192 16 29 / 25%);
    border-radius: 25px;
    color: #FFFFFF;
    font-size: 11px!important;
    margin-right: 25px;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
    padding: 0 10px 0 10px;
  }


  @media (max-width: 512px){
  .footer .content .top, .footer .content {
      width: 100%;
      flex-direction: column;
      justify-content: center;
      align-items: center;
  }

    .footer .content .top, .footer .content .bottom {
        width: 100%;
        flex-wrap: wrap-reverse;
    }
  }