@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;900&display=swap');


body {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #2E375F;
    height: 100%;
}
.wrapper{
    display: flex;
    flex-direction: column;
    min-height: 100%;
}


main{
    flex: 1 1 auto;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6, p{
    margin-bottom: 0;
}


.py-96 {
    padding: 90px 0;
}

.pt-96 {
    padding-top: 90px;
}

.pb-96 {
    padding-bottom: 90px;
}
/* COLORS START*/
.color_white {
    color: white;
}
.color_white_80 {
    color: #FDF8F7;
}
.color_orange {
    color: #E45213;
}
.color_grey {
    color: #7A82A6;
}

.color_gray70 {
    color: #1B415D;
}

.color_info {
    color: #2C5EBB;
}

.color_info60 {
    color: #3099D4;
}
.color_black{
    color: #262829;
}


.color_primary80 {
    color: #133734;
}

.color_primary60 {
    color:#2CB5AB
}

.color_primary70 {
    color:#336D69
}

.color_primary10 {
    color: #F9FEFE;
}
.color_sec_40{
    color: #B0D1E8;
}

.color_error60 {
    color: #BB2C2C;
}

.color_succes60 {
    color: #28A126;
}

.bg-dark {
    background-color: rgb(249, 250, 251)!important;
}
/* COLORS END*/

/* TYPOGRAPHY START*/
.typography_body_18_reg {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: left;
}
.typography_body_18_bold {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: left;
}

.typography_body_12_bold {
    font-size: 12px;
    font-weight: 900;
    line-height: 11px;
    letter-spacing: 1px;
    text-align: left;
}

.typography_body_12_reg {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
}

.typography_body_14_reg {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
}

.typography_body_30_bold {
    font-size: 30px;
    font-weight: 900;
    line-height: 29px;
    letter-spacing: 0px;
    text-align: left;
}

.typography_body_16_bold {
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: left;
}

.typography_body_16_reg {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: left;
}

.typography_h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: 0px;
    text-align: left;
}

.typography_h2 {
    font-size: 24px;
    font-weight: 900;
    line-height: 36px;
    letter-spacing: 0px;
    text-align: left;
}

.typography_h2_reg {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 0px;
    text-align: left;
}

.typography_h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: left;
}

.typography_caption_reg{
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
}
/* TYPOGRAPHY END */

/* BUTTONS START */
.btn_white_fill, .btn_white_fill:hover {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 6px 24px;
    gap: 4px;
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
    box-shadow: 6px 4px 10px rgba(228, 32, 20, 0.4);
    border-radius: 20px;
    color: #E45213;
}
.btn_blue_transparent, .btn_blue_transparent:hover {
    padding: 8px 24px;
    gap: 4px;
    border: 2px solid #3099D5;
    filter: drop-shadow(4px 4px 9px rgba(123, 97, 255, 0.13));
    border-radius: 20px;
    width: max-content;
    color: #3099D5;
    text-decoration: none;
    display: inline-block;
}

.btn_blue_fill {
    background: #38D0C5;
    box-shadow: 1px 1px 10px rgba(26, 128, 134, 0.4), inset -2px -2px 10px rgba(31, 149, 175, 0.5), inset 3px 4px 10px rgba(114, 255, 247, 0.6);
    border-radius: 20px;
    padding: 8px 24px;
    gap: 4px;
    border: none;
}
.btn_blue_fill:hover{
    color: #fff !important;
}

.btn_blue_secondary{
    background: #E2EFFA;
    padding: 8px 24px;
    color: #3099D4;
    border: 1px solid transparent;
    display: inline-block;
    border-radius: 20px;
}

.btn_green_transparent{
    background: transparent;
    border: 1px solid #2CB5AB;
    color: #2CB5AB;
    padding: 12px 0;
    border-radius: 24px;

}

/* BUTTONS END */

/* NAVBAR START */
nav.navbar {
    min-height: 112px;
}

.navbar-container {
    background: linear-gradient(90.36deg, #67DAD2 -9.76%, #BEEDEA 103.75%);
}
.navbar-light .navbar-nav .nav-link {
    color: #1B415D;
}
@keyframes blick {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

.header-animation {
    padding: 5px;
    border: 2px solid #00db00;
    border-radius: 5px;
    color: #00db00;
    font-weight: 600;
    animation: blick 1s infinite;
    box-shadow: 0px 0px 10px 0px rgba(0,219,0,0.59);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,219,0,0.59);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,219,0,0.59);
}
.header-animation i {
    content: '';
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 10px;
    background: #00db00;
}
/* NAVBAR END */

/* BANNER AREA START */
.banner-area {
    min-height: 360px;
}

.banners .item {
    background-size: cover;
}

.banners .owl-stage-outer {
    position: relative;
}

.banners .owl-dots {
    position: absolute;
    left: 400px;
    bottom: 0;
}

.banners .owl-theme .owl-dots .owl-dot span {
    width: 87px;
    height: 4px;
    margin: 1px 7px;
    background: #B0D1E8;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 0;
}

.banners .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #9AC3E2;
}

/* BANNER AREA END */

/* CALCULATOR SECTION START */

.calculator-section .list-group {
    flex-direction: row;
    border-radius: 16px;
    box-shadow: inset -2px -2px 10px rgba(56, 154, 208, 0.1), inset 3px 4px 6px rgba(226, 239, 250, 0.5);
    background: linear-gradient(0deg, rgba(247, 249, 252, 0.6), rgba(247, 249, 252, 0.6)), #FAFBFD;
}

.calculator-section .list-group-item {
    border-top-width: 1px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: none;
    background: transparent;
    color: #3099D5;
}

.calculator-section .list-group-item.active {
    background-color: #E2EFFA;
    border-color: #E2EFFA;
    margin-top: 0;
    box-shadow: inset -2px -2px 10px rgba(56, 154, 208, 0.1), inset 3px 4px 6px rgba(226, 239, 250, 0.5);
    color: #386DD0;
}

.calculator-section .list-group-item:first-child {
    border-radius: 16px 0 0 16px;
}

.calculator-section .list-group-item:last-child {
    border-radius: 0 16px 16px 0;
}

.calculator-section .form-group {
    flex: 1 1 auto;
    position: relative;
}

.calculator-section .form-group label {
    position: absolute;
    top: -12px;
    left: 10px;
    background: #FFFFFF;
    color: #3099D4;
    padding: 0 5px;
}
.calculator-section .form-control {
    width: 100%;
    border: 1px solid #3099D4;
    border-radius: 4px;
    color: #1B415D;
}


/* CALCULATOR SECTION END */

/* Evaluation SECTION start */

.evaluation-card-body {
    background: #FAFBFD;
    box-shadow: 0px 0px 20px rgba(8, 66, 160, 0.1);
    border-radius: 16px;
    padding: 16px 12px;
    min-height: 330px;
    overflow: hidden;
}

.evaluation-card-main .evaluation-card-body {
    min-height: 200px;
    max-height: 200px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}
.evaluation-card-main .evaluation-card-body img {
    width: 100%;
}

.evaluation-card-body img {
    width: 160px;
}

.evaluation-content-body {
    display: flex;
    flex-direction: column;
    position: absolute;
    margin-top: 60px;
    transition: .3s;
}

.evaluation-card-body a {
    display: none;
    transition-delay: 0.5s;
    padding: 6px 16px;
    width: max-content;
}

.evaluation-card-body:hover {
    background: #FFFFFF;
    box-shadow: 4px 4px 20px rgba(8, 66, 160, 0.2);
}

.evaluation-card-body:hover a {
    display: flex;
}

.evaluation-card-body:hover .evaluation-content-body {
    margin-top: 10px;
}

/* Evaluation SECTION end */

/* About SECTION start */
.about-steps {
    border-top: 2px solid #E7FAF9;
}

.about-step {
    width: 33%;
    position: relative;
}

.about-steps .about-step:not(:first-child):before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    background: #38D0C5;
    top: -1.8rem;
}
.about-steps .about-step:first-child:before {
    content: '';
    background: url("/static/img/point.png") no-repeat center;
    background-size: contain;
    width: 48px;
    height: 48px;
    position: absolute;
    top: -3rem;
    left: -0.5rem;
}


/* About SECTION end */

/* OFFERS SECTION START */
.offers-card {
    max-width: 255px;
    color: unset;
    flex: 0 0 25%;

}
.offers-card:hover {
    text-decoration: none;
    color: unset;
}
.offers-card .offers-card-body:hover{
    background: #FFFFFF;
    box-shadow: 4px 4px 20px rgba(8, 66, 160, 0.2);
}
.offers-card-descr {
    padding: 0 12px;
}
.offers-card-body {
    border-radius: 16px;
    background: #FAFBFD;
    box-shadow: 0px 0px 20px rgba(8, 66, 160, 0.1);
    overflow: hidden;
    transition: .3s;
}

.offers-card img {
    width: 100%;
    object-fit: fill;
}
/* OFFERS SECTION END */

/* IN NUMBER START */
.in_number {
    overflow: hidden;
}

.in_number .container-fluid {
    background: linear-gradient(90.36deg, #67DAD2 10.24%, #BEEDEA 103.75%);
}

.in_number img {
    mix-blend-mode: luminosity;
}
/* IN NUMBER END */

/* OPEN INFO END */
.open-info-card {
    padding: 0 16px;
    background: #FFFFFF;
    border: 1px solid #38D0C5;
    border-radius: 24px;
}

.open-info-card-part-1 {
    border-right: 1px solid #38D0C5;
}

.open-info-links a {
    width: max-content;
    width: -moz-max-content;
}

.open-info-links a:hover {
    text-decoration: none;
    color: darkblue;
}

.open-info-links .col-lg-4:last-child a:hover {
    text-decoration: underline;
    color: #1B415D;
}
/* OPEN INFO END */

/* MAP SECTION START */

.leaflet-popup-close-button {
    display: none;
    z-index: 0;
}
.leaflet-popup-tip {
    display: none;
}
.leaflet-popup-content-wrapper {
    background: linear-gradient(0deg, rgba(247, 249, 252, 0.6), rgba(247, 249, 252, 0.6)), #FAFBFD;
    box-shadow: 0px 4px 20px rgba(46, 55, 95, 0.16), inset -3px -3px 9px rgba(63, 77, 143, 0.1), inset 4px 4px 5px rgba(255, 255, 255, 0.58);
    border-radius: 16px;
}

.clock_icon {
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("/static/img/clock_icon.svg");
}
.location_icon {
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("/static/img/location_icon.svg");
}
.phone_icon {
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("/static/img/phone_icon.svg");
}

.map-section .table {
    background: linear-gradient(0deg, rgba(247, 249, 252, 0.6), rgba(247, 249, 252, 0.6)), #FAFBFD;
    box-shadow: 0px 2px 20px rgba(46, 55, 95, 0.1), inset -3px -3px 9px rgba(165, 215, 212, 0.3), inset 4px 4px 5px rgba(255, 255, 255, 0.58);
    border-radius: 24px;
}

.map-section .table tr {
    border-bottom: 1px solid #E2EFFA;
}

.map-section .table tbody tr:last-child {
    border-bottom: none;
}

/* MAP SECTION END */

/* FOOTER SECTION START */

footer {
    background-color: #EFF7FF;
}

footer .nav-link {
    padding: 3px 0;
    color: #133734;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}

.home_link:hover {
    text-decoration: none;
    color: unset;
}



/* FOOTER SECTION END */


/* Services */

.list-group-item{
    padding: 10px;
}
.services--result{
    padding: 20px 15px;
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(118, 183, 178, 0.2), inset -3px -3px 9px rgba(33, 87, 83, 0.1), inset 4px 4px 5px rgba(255, 255, 255, 0.58);
    border-radius: 16px;
}

.credits{
    background: linear-gradient(0deg, rgba(247, 249, 252, 0.6), rgba(247, 249, 252, 0.6)), #FAFBFD;
}
.credits--item{
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(8, 66, 160, 0.1);
    width: fit-content;
}
.credits--img{
    border-radius: 16px 16px 0 0 ;

}
.credits--text{
    padding: 15px 20px 35px 15px;
}
@media (max-width: 575px) {
    .credits--img {
        max-width: 100%;
    }

}


/*STEP*/

.progress--bar {
    list-style: none;
    margin: 0;
    padding: 0;
    display: table;
    table-layout: fixed;
    width: 100%;
}
.progress--bar > li {
    position: relative;
    display: table-cell;
    text-align: center;
    font-size: 0.8em;
}
.progress--bar li::before {
  content: attr(data-step);
  display: flex;
    align-items: center;
    justify-content: center;
  margin: 0 auto;
  background: #fff;
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    border: 2px solid #E2EFFA;
  width: 35px;
  height: 35px;
  text-align: center;
  border-radius: 100%;
  position: relative;
  z-index: 1000;
    color: #E2EFFA;
    margin-bottom: 10px;
}
.progress--bar li.is-active span{
    color: #2CB5AB;
}
.progress--bar li.is-active::before{
    border-color: #38D0C5;
    color: #38D0C5;
}
.progress--bar li::after {
    content: '';
    position: absolute;
    display: block;
    background: #E2EFFA;
    width: 100%;
    height: 4px;
    top: 1.40em;
    left: 50%;
    margin-left: 1.5em;
    z-index: 1;
}
.progress--bar li.complete::after {
    background: #38D0C5;
}
.progress--bar li.complete::before{
    background: #38D0C5;
    border-color: #38D0C5;
    color: #FFFFFF;
}
.progress--bar li.complete span{
    color: #2CB5AB;
}
.progress--bar li:last-child::after {
      display: none;
}

.step--item{
    border: 1px solid #B0D1E8;
    border-radius: 16px;
    width: fit-content;
    display: block;
}
.step--text{
    padding: 10px;
}

/*form*/
.btn_dropdown,.c-form-group input, .c-form-group .c-input{
    border: 1px solid #3099D4;
    border-radius: 4px;
    padding: 10px 16px;
    background-color: transparent;
    width: 100%;
    text-align: left;
    position: relative;
    color: #1B415D;
    font-size: 16px;
    max-height: 44px;
    outline: none;
    box-shadow: none;
}
.c-form-group .custom-select, .select2-container--default .select2-selection--single {
    border: 1px solid #3099D4;
    border-radius: 4px;
    padding: 10px 16px;
    background-color: transparent;
    width: 100%;
    text-align: left;
    position: relative;
    color: #1B415D;
    font-size: 16px!important;
    max-height: 44px;
    outline: none;
    box-shadow: none;
    height: auto;
    display: flex;
    align-items: center;
}

.c-form-group .select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    color: #1B415D;
}
.select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
    background-color: #E2EFFA;
}
.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: #E2EFFA;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #3099d4 transparent transparent transparent;
}

.c-form-group input::placeholder{
    color: #1B415D;
    font-size: 16px;
}
.dropdown-toggle::after{
    border-top: .3em solid #3099D4;
    position: absolute;
    right: 18px;
    top: 20px;
}
.dropdown-menu, .select2-dropdown{
    border-color: #3099D4;
    box-shadow: 1px 1px 4px rgba(31, 117, 165, 0.05), 1px 1px 5px rgba(48, 153, 212, 0.15);
    width: 100%;
    padding: 0;
}
.dropdown-item{
    border-radius: .25rem;
}
.c-form-group{
    position: relative;
}
.c-form-group label{
    position: absolute;
    background-color: rgb(249, 250, 251);
    z-index: 2;
    top: -10px;
    left: 16px;
    font-weight: 600;
    color: #3099D4;
    width: max-content;
}
a:hover{
    text-decoration: none;
}
.btn_blue{
    padding: 10px 20px;
    background-color: #3099D4;
    color: #FFFFFF;
    border-radius: 20px;
    border: none;
}
.c-textarea{
    border: 1px solid #3099D4;
    border-radius: 4px;
    padding: 10px 16px;
    outline: none;
    box-shadow: none;
    font-size: 16px;
}
label{
    margin-bottom: 0;
}

.c-form-group .c-file-img{
    position: absolute;
    right: 16px;
    cursor: pointer;
}
.technique--item{
    border-radius: 16px;
    border: 1px solid #E2EFFA;
}

.technique--item button {
    background: none;
    border: none;
}

.technique--item:hover, .technique--item.active{
    border-color: #3099D4;
    cursor: pointer;
}
.form-check-input{
    width: 20px;
    height: 20px;
    margin-top: .2rem;
    margin-left: -2rem;
}
.form-check-label{
    cursor: pointer;
}

/* main banner */

.about-img img{
    max-width: 100%;
}
.map-block{
    height: 600px;
}
.active-zone{
    display: none;
}
.preview-container{
    position: relative;
}
.preview-container .preview-content{
    position: relative;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #3099D4;
    width: 150px;
    max-height: 170px;
    margin: 15px 0;
}
.preview-container .preview-content .delete-button{
    background: transparent;
    border: none;
    position: absolute;
    top: 2px;
    right: 2px;
    cursor: pointer;
}

/* Акордеон */
.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #212529;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

/* Карточки */
.card {
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

@media (max-width: 1199px) {
    .step--navtabs {
        justify-content: center !important;
    }
    .step--navtabs .nav-item{
        margin-top: 10px;
        margin-left: 10px;

    }

}
@media (max-width: 991px) {
    /*.navbar-container .navbar-nav{*/
    /*    margin: 32px 0 !important;*/
    /*}*/
    .container{
        max-width: 100%;
        padding: 0 20px;
    }
    .navbar-collapse{
        margin: 0 -20px;
        background: linear-gradient(0deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), linear-gradient(90.36deg, #67DAD2 -9.76%, #BEEDEA 103.75%);
    }
    .banner-area .banner-content{
        left: 5%;
    }
    .banner-area img{
        height: 200px;
        object-fit: cover;

    }
    .offers .offers-card{
        max-width: 33.3%;
        flex: 0 0 33.3%;
        margin-right: 20px;
        margin-bottom: 20px;
    }
    .in_number img{
        object-fit: cover;
        height: 100%;
    }
    .calculator-section .table{
        width: 1000px;
    }
    .step-select-width {
        width: 100%;
    }
    .navbar-nav, .navbar-phone{
        align-items: center;
    }
    .navbar-phone{
        padding-top: 30px;
        padding-bottom: 20px;
    }
}
@media (max-width: 767px) {
    .calculator-section .list-group-item{
        white-space: nowrap;
    }
    .calculator-section .list-group{
        overflow-x: auto;
    }
    .calculator-section .main-form{
        flex-direction: column;
    }
    .calculator-section .main-form .form-group{
        width: 100%;
    }
    .offer-row{
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    .offers .offers-card{
        max-width: 100%;
        min-width: 250px;
        flex: 1 1 0;
    }
    .img-cart{
        margin-left: -40px;
    }
    .py-96{
        padding: 60px 0;
    }
    .open-info-card-part-1{
        border-right: none;
        border-bottom: 1px solid #38D0C5;
    }
    .open-info-card{
        padding: 0 5px;
    }
    .map-block {
        height: 400px;
    }
    .step--item{
        width: 100%;
        text-align: center;
    }
    .step--item .step--text p{
        text-align: center;
    }

}

@media (max-width: 630px) {
    .banners{
        display: none;
    }
    .calculator-section table{
        width: 100% !important;
    }
    .calculator-section table thead{
        display: none;
    }
    .calculator-section table tbody tr{
        display: block;
    }
    .calculator-section table tbody tr td, .calculator-section table tbody tr th{
        display: flex;
        width: 100%;
    }
    .calculator-section table tbody tr td span{
        text-align: right;
    }
    .calculator-section table tbody .table-m{
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .calculator-section table tbody .table-m::before{
       content: attr(data-label) !important;
        font-weight: bold;
        text-align: left;
        margin-right: 20px;
        width: 100px;
        position: relative;
    }
    .blank .offers-card{
        width: 250px;
        display: inline-block;
    }



}
@media (max-width: 575px) {
    .steps-const{
        overflow-x: scroll;
    }
    .step--navtabs {
        justify-content: initial !important;
        width: 1100px;
    }
    .step--navtabs .nav-item{
        margin-top: 10px;
        margin-left: 10px;

    }
    .progress--bar{
        width: 600px;
    }
    .select2-container--default .select2-selection--single{
        max-width: 100%;
    }
    .select2-container{
        width: 100% !important;
    }
    .w-50{
        width: 100% !important;
    }

    .about-steps {
        border-top: none;
        border-left: 2px solid #E7FAF9;
    }
    .about-steps .about-step{
        width: 100%;
        margin-bottom: 20px;
    }
    .about-steps .about-step:last-child{
        margin-bottom: 0;
    }
    .about-steps .about-step:first-child::before{
        top: -.8rem;
        left: -1.5rem;
    }
    .about-steps .about-step:not(:first-child)::before{
        top: .5rem;
        left: -.3rem;
    }
    .step .btn_blue_transparent span{
        display: none;
    }
    .back-btn{
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px 10px;
    }
    .open-info-links a.typography_body_18_reg, .open-info-card a.typography_body_18_reg{
        font-size: 12px;
        font-weight: 700;
    }
    .open-info-links .btn_blue_fill img, .open-info-card .btn_blue_fill img {
        width: 20px;
    }
    .open-info .btn_blue_fill, .open-info-links .btn_blue_fill {
        padding: 6px 12px;
    }

}

.c-input-upload{
    padding: 8px 35px 5px 10px;
    display: inline-block;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
}
.c-input-upload input{
    display: none;
}
#file-name{
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}
#clear-icon {
    display: none;
}
#upload-icon.active {
    display: none;
}

#upload-icon.active + #clear-icon {
    display: inline-block;
}
.errorlist{
    padding-left: 0;
    list-style-type: none;
}
.errorlist li{
    font-size: 14px;
    line-height: 16px;
    color: #BB2C2C;
    margin-top: 10px;
    padding-left: 10px;
}

.custom-control-input:checked~.custom-control-label::before {
  background-color: transparent !important;
  border-color: #2CB5AB !important;
}

.custom-control-input:checked~.custom-control-label::after {
  background-color: #2CB5AB !important;
  border-color: #2CB5AB !important;
}
.step{
    background-color: #FAFBFD;
}
.step .nav-tabs{
    border-bottom: none;
}
.step img{
    max-width: 100%;
}
.step .nav-tabs .nav-link{
    border: 1px solid #B0D1E8;
}
.step_link-tab{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 600 ;
    color: #1B415D;
    border-radius: 16px !important;
}
.step_link-tab:hover{
    cursor: pointer;
}
.step_link-tab.active{
    font-weight: 700;
    background-color: transparent !important;
}
.step .nav-tabs .nav-link.active{
    border-color: #3099D4;
}
.step_link-tab span{
    margin-top: 20px;
}
.tab-content-elite{
    margin-top: 60px;
}
.step--container .select2-container{
    width: 100% !important;
}


.file-zone-upload{
    border: 1px solid #3099D4;
    border-radius: 16px;
    background-color: #EFF7FF;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.c-text-area{
    border: 1px solid #3099D4;
    border-radius: 4px;
    padding: 10px 16px;
    background-color: transparent;
    width: 100%;
    text-align: left;
    position: relative;
    color: #1B415D;
    font-size: 16px;
    height: 100%;
    outline: none;
    box-shadow: none;
}










