@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-Bold.ttf") format("truetype"); 
  font-weight: 700; 
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-SemiBold.ttf") format("truetype"); 
  font-weight: 600; 
}

@font-face {
  font-family: "NotoSans";
  src: url("/fonts/NotoSans-SemiBold.ttf") format("truetype");
  font-weight: 600; 
}
@font-face {
  font-family: "NotoSans";
  src: url("/fonts/NotoSans-Medium.ttf") format("truetype");
  font-weight: 500; 
}
@font-face {
  font-family: "NotoSans";
  src: url("/fonts/NotoSans-Bold.ttf") format("truetype");
  font-weight: 700; 
}

@font-face {
  font-family: "NotoSans";
  src: url("/fonts/NotoSans-Regular.ttf") format("truetype");
  font-weight: 400; 
}

#divWithWarningToRotate {
    display: none;
}

@media screen and (orientation:landscape) and (max-width: 800px) {
  #divWithWarningToRotate {
    position: fixed;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    z-index: 1000;
    font-size: 2rem;
  }
  main {
    display: none;
  }
}




:root {
  --main-blue: #053e58;
  --main-blue-hover: #3a6089;

  --main-lightgray: #F0ECEA;
}
* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-family: 'NotoSans', sans-serif;
  font-weight: 400;
  outline: none;  
  color: #333;
}

/* text */
.text-16{
  font-size: 16px;
}
.text-14{
  font-size: 14px;
}
.text-blue{
  color: var(--main-blue)
}
.text-600{
  font-weight: 600;
}
.text-700{
  font-weight: 700;
}
.text-center{
  text-align: center;
}
h2.text-header{
  color: var(--main-blue);
  font-size: 40px;
  font-weight: 700;
  font-family: 'Montserrat';
}
h3.text-header{
  color: var(--main-blue);
  font-size: 32px;
  font-weight: 700;
}

p + p {
  margin-top: 10px;
}
ul + p{
  margin-top: 10px;
}

@media (max-width: 425px) { 
  h2.text-header{
    font-size: 1.4rem;
  }
  h3.text-header{
    font-size: 1.2rem;;
  }
  h4.text-header{
    font-size: 1.2rem;;
  }
}

p{
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
}

input,textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

b, strong{
  color: var(--main-blue);
  font-weight: 700;
}

p + ul, p + ol, ul.styled{
  list-style-type: square;
  padding-left: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
p + ol, ol.styled{
  list-style-type: decimal;
}
p + p{
  margin-bottom: 5px;
}
a.styled{
  color: #000;
}
a.styled:hover{
  color: var(--main-orange-color);
}

html{
  height: 100%;
}
body{
  display: flex;
  flex-direction: column;
  height: 100%;
}

.container{
  max-width: 1300px;
  padding: 0 20px;
  margin: 0 auto;
}

.lang_selector{
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 5px;
  cursor: pointer;
}
.lang_selector:after{
  content: '';
  width: 20px;
  height: 20px;
  background: url(/img/lang_arrow.svg) no-repeat;
  background-size: cover;
}

.btn_melanoma{
  background: var(--main-blue);
    border-radius: 30px;
    padding: 10px 30px;
    display: inline-block;
    color: #fff;
    margin-top: 20px;
    cursor: pointer;
    box-shadow: 0px 2px 4px rgb(0 0 0 / 25%);
    text-decoration: none;
}

.btn_melanoma.not_active{
  background: #828282;
}
.btn_melanoma.not_active:hover{
  background: var(--main-blue);
}

#top {
  cursor: pointer;
  width: 45px;
  height: 45px;
  text-align: center;
  display: none;
  font-size: 30px;
  position: fixed;

  bottom: 20px;
  background: var(--main-blue);
  border-radius: 25px;
  z-index: 999;
  border: 1px solid #999; 
  left: 10px;
  }

#top:hover {
  cursor: pointer;
  background: var(--main-blue-hover); 
}

@media (max-width: 575.98px) { 
  #top {
    right: 20px;
  }
}

     .btn_banner{
        background: #f25050;
        border-radius: 30px;
        padding: 10px 90px;
        display: inline-block;
        color: #fff;
        margin-top: 20px;
        cursor: pointer; 
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
        text-decoration: none;
    }
     .btn_banner:after{
        content: "";
        background: url(/img/btn_chevron.svg);
        width: 17px;
        height: 17px;
        position: absolute;
        background-size: contain;
        background-repeat: no-repeat;
        margin-left: 12px;
        margin-top: 3px;
        transition-duration: 0.3s;
    }
    .btn_banner:hover{
        background: var(--main-blue-hover);
    }
    .btn_banner:hover:after{
        transition-duration: 0.3s;
        margin-left: 32px;
    }

    .table-price{
        border-collapse: collapse; 
        width: 100%;
    }
    .table-price td{
        padding: 10px;
    }
    .table-price:not(.first-none) tr:first-child td{
        background: #053e58;
        color: #fff!important;
        border: 1px solid #053e58;
    }
    .table-price:not(.first-none) tr:first-child td strong{
        color: #fff!important;
    }
    .table-price.first-col tr td:first-child{
        background: #053e58;
        color: #fff!important;
        border: 1px solid #053e58;
    }
    .table-price.first-col tr td:first-child{
        color: #fff!important;
        font-weight: 600;
    }
    .table-price .bg-blue{
      background: #2c4866;
      color: #fff!important;
      border: 1px solid #2c4866;
      border-bottom: 1px solid #fff;
    }
    .table-price td{
        border: 1px solid #7c7c7c;
    }
    
    .table-price.symp tr:first-child td{
        background: #38a7b8;
        color: #fff!important;
        border: 1px solid #38a7b8;
    }
    .table-price.symp b{
        color: #38a7b8; 
    }
    .table-price.pat tr:first-child td{
        background: #70309e;
        color: #fff!important;
        border: 1px solid #70309e;
    }
    .table-price.pat b{
        color: #70309e; 
    }
    .table-price.rad tr:first-child td{
        background: #c55912;
        color: #fff!important;
        border: 1px solid #c55912;
    }
    .table-price.rad b{
        color: #c55912; 
    }

    .table-price.mclass tr:first-child td{
        background: #099;
        color: #fff!important;
        border: 1px solid #099;
    }
    .table-price.mclass b{
        color: #099; 
    }

    .subh-row{
      font-size: 1.3rem;
      font-weight: 600;
      background: #e8e8e8;
    }

    .table-scroll{
      overflow-y: scroll;
    }

    

    