.dropzone {
    position: relative
}

.dropzone .dz-preview {
    margin: .5em;
    width: 120px
}

.dropzone .dz-preview .dz-progress {
    border: 1px solid #aaa;
    display: block;
    height: 15px
}

.dropzone .dz-preview .dz-progress .dz-upload {
    background: green;
    display: block;
    height: 100%
}

.dropzone .dz-preview .dz-error-message {
    color: red
}

.dropzone .dz-preview.dz-error .dz-error-mark,.dropzone .dz-preview.dz-error .dz-error-message,.dropzone .dz-preview.dz-success .dz-success-mark {
    display: block
}

.dropzone .dz-preview .dz-error-mark,.dropzone .dz-preview .dz-success-mark {
    display: none;
    height: 58px;
    left: 30px;
    top: 30px;
    width: 54px
}

@keyframes passing-through {
    0% {
        opacity: 0;
        transform: translateY(40px)
    }

    30%,70% {
        opacity: 1;
        transform: translateY(0)
    }

    to {
        opacity: 0;
        transform: translateY(-40px)
    }
}

@keyframes slide-in {
    0% {
        opacity: 0;
        transform: translateY(40px)
    }

    30% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }

    10% {
        transform: scale(1.1)
    }

    20% {
        transform: scale(1)
    }
}

.dropzone,.dropzone * {
    box-sizing: border-box
}

.dropzone {
    background: #fff;
    border: 2px solid rgba(0,0,0,.3);
    min-height: 150px;
    padding: 20px
}

.dropzone.dz-clickable {
    cursor: pointer
}

.dropzone.dz-clickable * {
    cursor: default
}

.dropzone.dz-clickable .dz-message,.dropzone.dz-clickable .dz-message * {
    cursor: pointer
}

.dropzone.dz-started .dz-message {
    display: none
}

.dropzone.dz-drag-hover {
    border-style: solid
}

.dropzone.dz-drag-hover .dz-message {
    opacity: .5
}

.dropzone .dz-message {
    margin: 2em 0;
    text-align: center
}

.dropzone .dz-preview {
    display: inline-block;
    margin: 16px;
    min-height: 100px;
    position: relative;
    vertical-align: top
}

.dropzone .dz-preview:hover {
    z-index: 1000
}

.dropzone .dz-preview.dz-file-preview .dz-image {
    background: #999;
    background: linear-gradient(180deg,#eee,#ddd);
    border-radius: 20px
}

.dropzone .dz-preview.dz-file-preview .dz-details {
    opacity: 1
}

.dropzone .dz-preview.dz-image-preview .dz-details {
    transition: opacity .2s linear
}

.dropzone .dz-preview .dz-remove {
    border: none;
    cursor: pointer;
    display: block;
    font-size: 14px;
    text-align: center
}

.dropzone .dz-preview .dz-remove:hover {
    text-decoration: underline
}

.dropzone .dz-preview:hover .dz-details {
    opacity: 1
}

.dropzone .dz-preview .dz-details {
    color: rgba(0,0,0,.9);
    font-size: 13px;
    left: 0;
    line-height: 150%;
    max-width: 100%;
    min-width: 100%;
    opacity: 0;
    padding: 2em 1em;
    position: absolute;
    text-align: center;
    top: 0;
    z-index: 20
}

.dropzone .dz-preview .dz-details .dz-size {
    font-size: 16px;
    margin-bottom: 1em
}

.dropzone .dz-preview .dz-details .dz-filename {
    white-space: nowrap
}

.dropzone .dz-preview .dz-details .dz-filename:hover span {
    background-color: hsla(0,0%,100%,.8);
    border: 1px solid hsla(0,0%,78%,.8)
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
    overflow: hidden;
    text-overflow: ellipsis
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
    border: 1px solid transparent
}

.dropzone .dz-preview .dz-details .dz-filename span,.dropzone .dz-preview .dz-details .dz-size span {
    background-color: hsla(0,0%,100%,.4);
    border-radius: 3px;
    padding: 0 .4em
}

.dropzone .dz-preview:hover .dz-image img {
    filter: blur(8px);
    transform: scale(1.05)
}

.dropzone .dz-preview .dz-image {
    border-radius: 20px;
    display: block;
    height: 120px;
    overflow: hidden;
    position: relative;
    width: 120px;
    z-index: 10
}

.dropzone .dz-preview .dz-image img {
    display: block
}

.dropzone .dz-preview.dz-success .dz-success-mark {
    animation: passing-through 3s cubic-bezier(.77,0,.175,1)
}

.dropzone .dz-preview.dz-error .dz-error-mark {
    animation: slide-in 3s cubic-bezier(.77,0,.175,1);
    opacity: 1
}

.dropzone .dz-preview .dz-error-mark,.dropzone .dz-preview .dz-success-mark {
    display: block;
    left: 50%;
    margin-left: -27px;
    margin-top: -27px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    z-index: 500
}

.dropzone .dz-preview .dz-error-mark svg,.dropzone .dz-preview .dz-success-mark svg {
    display: block;
    height: 54px;
    width: 54px
}

.dropzone .dz-preview.dz-processing .dz-progress {
    opacity: 1;
    transition: all .2s linear
}

.dropzone .dz-preview.dz-complete .dz-progress {
    opacity: 0;
    transition: opacity .4s ease-in
}

.dropzone .dz-preview:not(.dz-processing) .dz-progress {
    animation: pulse 6s ease infinite
}

.dropzone .dz-preview .dz-progress {
    background: hsla(0,0%,100%,.9);
    border-radius: 8px;
    height: 16px;
    left: 50%;
    margin-left: -40px;
    margin-top: -8px;
    opacity: 1;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    top: 50%;
    -webkit-transform: scale(1);
    width: 80px;
    z-index: 1000
}

.dropzone .dz-preview .dz-progress .dz-upload {
    background: #333;
    background: linear-gradient(180deg,#666,#444);
    bottom: 0;
    left: 0;
    position: absolute;
    top: 0;
    transition: width .3s ease-in-out;
    width: 0
}

.dropzone .dz-preview.dz-error .dz-error-message {
    display: block
}

.dropzone .dz-preview.dz-error:hover .dz-error-message {
    opacity: 1;
    pointer-events: auto
}

.dropzone .dz-preview .dz-error-message {
    background: #be2626;
    background: linear-gradient(180deg,#be2626,#a92222);
    border-radius: 8px;
    color: #fff;
    display: block;
    display: none;
    font-size: 13px;
    left: -10px;
    opacity: 0;
    padding: .5em 1.2em;
    pointer-events: none;
    position: absolute;
    top: 130px;
    transition: opacity .3s ease;
    width: 140px;
    z-index: 1000
}

.dropzone .dz-preview .dz-error-message:after {
    border-bottom: 6px solid #be2626;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    content: "";
    height: 0;
    left: 64px;
    position: absolute;
    top: -6px;
    width: 0
}

a {
    text-decoration: none
}

.permissions-container {
    padding: 10px
}

.fade-enter-active,.fade-leave-active {
    transition-duration: .25s;
    transition-property: opacity
}

.fade-enter-active {
    transition-delay: .25s
}

.fade-enter,.fade-leave-active {
    opacity: 0
}

#admin .snack {
    z-index: 500!important
}

.no-select-protect {
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    -khtml-user-select: none
}

body {
    background: #fbf7fa;
    color: #000;
    min-width: 320px
}

.page {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100vh;
    position: relative
}

.footer,.header,.page {
    margin: 0 auto;
    max-width: 1920px
}

img {
    display: block;
    height: auto;
    max-width: 100%
}

a {
    color: #ff4a64
}

input[type=checkbox] {
    accent-color: #ff4a64
}

.btn-primary {
    background-color: #ff4a64;
    color: #fff
}

.btn-primary:active,.btn-primary:focus,.btn-primary:hover {
    background-color: #f86177;
    box-shadow: none
}

.btn-primary .show>.btn-primary.dropdown-toggle,.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.btn-primary:not(:disabled):not(.disabled):active:focus {
    background-color: #f86177;
    border-color: transparent;
    box-shadow: none;
    color: #fff
}

.btn-primary.disabled,.btn-primary:disabled {
    background-color: #d7d9d9;
    border-color: #c4c5c5;
    color: #212529;
    cursor: not-allowed
}

.btn-primary span {
    vertical-align: middle
}

.btn-primary svg {
    fill: #fff
}

.btn-outline {
    border-color: #ff4a64;
    color: #ff4a64
}

.btn-outline:active,.btn-outline:focus,.btn-outline:hover,.btn-outline:link,.btn-outline:visited {
    color: #f86177
}

.btn-outline.disabled,.btn-outline:disabled {
    background-color: #d7d9d9;
    border-color: #c4c5c5;
    color: #212529;
    cursor: not-allowed
}

.btn-outline svg {
    fill: #fff
}

.btn {
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    margin-bottom: 10px;
    outline: none;
    padding: 10px 20px;
    text-transform: uppercase;
    white-space: nowrap
}

.btn-full {
    max-width: 250px;
    text-align: center;
    width: 100%
}

.btn-small {
    padding: 5px 30px;
    text-align: center
}

.btn svg {
    height: 32px;
    width: 32px
}

.navbar-expand-lg .navbar-collapse {
    justify-content: flex-end
}

.navbar {
    height: 100%;
    padding: 0 15px
}

.navbar .nav-link {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: .9px;
    line-height: normal
}

.navbar.navbar-light .navbar-toggler {
    padding: 1px 6px
}

.navbar.navbar-light button[aria-expanded=true] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 8.586 2.929 1.515 1.515 2.929 8.586 10l-7.071 7.071 1.414 1.414L10 11.414l7.071 7.071 1.414-1.414L11.414 10l7.071-7.071-1.414-1.414L10 8.586z' fill='rgba(0,0,0,0.5)'/%3E%3C/svg%3E")
}

@media(max-width: 992px) {
    .navbar {
        background-color:#fff
    }

    .navbar-expand-lg .navbar-collapse {
        bottom: 0;
        left: 0;
        overflow-y: auto;
        position: fixed;
        top: 40px;
        width: 90%
    }

    #navbarNav {
        background: #fff;
        border-radius: 0;
        box-shadow: 0 15px 20px 0 rgba(238,129,151,.07);
        margin: 0 -15px;
        padding: 0 50px
    }

    #navbarNav .navbar-nav {
        height: 100vh
    }

    #navbarNav .navbar-nav .nav-item {
        border-bottom: 1px solid #f0f0f0;
        padding: 20px 0
    }

    #navbarNav .navbar-nav .nav-item:last-child {
        border-bottom: none
    }

    #navbarNav .navbar-nav .nav-item .nav-link {
        color: #333;
        font-size: 18px
    }
}

.score-tooltip {
    display: inline-block
}

.score-tooltip .score-link {
    outline: none
}

.score-tooltip .offer-link-container {
    display: inline;
    text-align: center
}

.score-tooltip .dropdown-menu .score-button {
    min-width: 110px
}

.partners-tooltip .dropdown-toggle {
    color: #333;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    white-space: normal
}

.partners-tooltip .dropdown-toggle:after,.partners-tooltip .dropdown-toggle:before {
    content: none;
    line-height: 14px
}

.partners-tooltip .dropdown-menu {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 10px 0 rgba(0,0,0,.25);
    max-width: 440px;
    min-width: 220px;
    padding: 17px 25px;
    left: auto;
    right: 0;
}

.partners-tooltip .dropdown-menu .dropdown-menu-custom-text {
    color: #000;
    font-size: 12px;
    font-weight: 400;
    line-height: 14px
}

.offers {
    position: relative
}

.offers .offers__subtitle {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding-bottom: 65px
}

.offers__offer_of_month {
    max-width: 800px
}

.offers__item {
    border: transparent;
    cursor: pointer;
    flex-shrink: 0;
    margin: 0 auto 25px;
    max-width: 450px;
    position: relative;
    text-align: left
}

@media(min-width: 768px) {
    .offers__item {
        margin-bottom:25px;
        max-width: 100%
    }
}

.offers__item__col {
    padding: 20px
}

.offers__item__no {
    align-items: flex-start;
    background: #cccdd5;
    border-radius: 0 5px 0 0;
    display: inline-flex;
    gap: 10px;
    padding: 10px
}

.offers__item__badge {
    color: #fff;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 1.1px;
    line-height: normal
}

.offers__item__top {
    border: 2px solid #ff4a64
}

.offers__item__top .offers__item__no {
    background: #ff4a64;
    border-radius: 0
}

.offers__item__top .offers__item__badge,.offers__item__top .offers__item__primary {
    align-items: flex-start;
    background: #ff4a64;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: inline-flex;
    gap: 10px;
    padding: 10px 20px
}

.offers__item__top .offers__item__primary {
    box-shadow: 1px 0 4px 1px rgba(0,0,0,.1);
    position: absolute;
    top: -47px;
    z-index: -1
}

.offers__item .offers__item__num {
    background-color: transparent;
    border: 1px solid #d5d5d5;
    border-radius: 50%;
    color: #333;
    display: inline-block;
    height: 45px;
    margin: 5px 0 0 5px;
    position: relative;
    width: 45px
}

.offers__item .offers__item__num span {
    display: block;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%)
}

.offers__item .offers__item__num__mobile {
    height: 30px;
    margin: 0 5px 0 0;
    padding: 5px;
    width: 30px
}

.offers__item__rating {
    text-align: right
}

.offers__item__rating__logo {
    fill: #000;
    margin: 0 auto;
    max-height: 90px;
    min-width: 100px;
    width: 130px
}

@media(min-width: 1199px) {
    .offers__item__rating__logo {
        margin-left:0;
        width: 160px
    }
}

.offers__item__rating__stars-block {
    min-width: 120px
}

.offers__item__characteristics {
    display: inline-block;
    margin: 15px 0;
    min-width: 200px;
    text-align: center
}

@media(min-width: 768px) {
    .offers__item__characteristics {
        margin:0
    }
}

.offers__item__characteristics__item {
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: .6px;
    line-height: 150%;
    margin-bottom: 12px;
    max-width: 315px;
    overflow: clip;
    text-align: left
}

.offers__item__characteristics__item__ch_arrow {
    height: 20px;
    margin-top: -5px;
    width: 20px
}

.offers__item__review {
    color: #ff4a64;
    display: block;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: .7px;
    line-height: 150%;
    text-transform: uppercase
}

.offers__item__review:hover {
    color: rgba(238,129,151,.7)
}

.offers__item__actions__visit-link {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: .7px;
    line-height: 150%;
    margin-top: 13px;
    padding: 10px 30px;
    text-transform: uppercase
}

.offers .grid-box {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(6,1fr);
    grid-template-rows: repeat(1,1fr)
}

.offers .grid-box .grid-col-1 {
    grid-column: span 3/span 3;
    grid-column-start: 1;
    grid-row-start: 1
}

.offers .grid-box .grid-col-2 {
    grid-column: span 6/span 6;
    grid-column-start: 1;
    grid-row-start: 2
}

.offers .grid-box .grid-col-3 {
    grid-column: span 3/span 3;
    grid-column-start: 4;
    grid-row-start: 1
}

@media(min-width: 768px) {
    .offers .grid-box .grid-col-1 {
        grid-column:span 2/span 2
    }

    .offers .grid-box .grid-col-2 {
        grid-column: span 2/span 2;
        grid-column-start: 3;
        grid-row-start: 1
    }

    .offers .grid-box .grid-col-3 {
        grid-column: span 2/span 2;
        grid-column-start: 5
    }
}

.offers__right_column {
    margin: 0 auto
}

.offers__recent {
    flex-shrink: 0;
    margin: 0 auto;
    max-width: 450px;
    padding: 25px 20px
}

@media(min-width: 992px) {
    .offers__recent {
        max-width:375px
    }
}

.offers__recent__main-img {
    height: auto;
    max-width: 100%
}

.offers__recent__main-title {
    color: #c6c7dd;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 1.3px;
    line-height: 150%;
    margin: 15px 0;
    text-align: center
}

.offers__recent__article {
    margin: 15px 0
}

.offers__recent__article__title {
    color: #333;
    display: block;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: .9px;
    line-height: 150%;
    margin-bottom: 10px
}

.offers__recent__article__title:active,.offers__recent__article__title:hover,.offers__recent__article__title:link,.offers__recent__article__title:visited {
    color: #333
}

.offers__recent__article__text {
    color: #333;
    display: block;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: .7px;
    line-height: 150%
}

.offers__recent__article__text:active,.offers__recent__article__text:hover,.offers__recent__article__text:link,.offers__recent__article__text:visited {
    color: #333
}

.offers-bottom-text-section .offers-bottom-text-wrapper {
    margin: 0 auto;
    padding-bottom: 40px;
    width: 100%
}

@media(min-width: 768px) {
    .offers-bottom-text-section .offers-bottom-text-wrapper .main-section {
        padding-bottom:120px
    }
}

.offer {
    position: relative
}

.offer .offer-container {
    margin-bottom: 25px;
    padding: 25px 10px
}

.offer .offer-container__color-text {
    color: #676aa7
}

.offer__item {
    align-items: center;
    flex-wrap: wrap;
    justify-content: center
}

@media(min-width: 360px) {
    .offer__item {
        justify-content:space-between
    }
}

.offer__best {
    margin-bottom: 15px;
    padding: 15px
}

.offer__best__stars-block {
    min-width: 170px;
    text-align: right
}

.offer__best__score-block .score-link {
    display: inline-block;
    vertical-align: middle
}

.articles {
    position: relative
}

.articles__inner {
    margin: 0 auto;
    width: 90%
}

.articles__item {
    flex-shrink: 0;
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 15px;
    position: relative;
    text-align: left;
    width: 100%
}

.articles__item__image {
    height: 212px;
    width: 100%
}

.articles__item__image img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.articles__item__info {
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 1.3px;
    line-height: 1;
    width: 100%
}

@media(min-width: 1200px) {
    .articles__item__info {
        font-size:26px;
        line-height: 31px
    }
}

@media(max-width: 575px) {
    .articles__item__info {
        align-items:center
    }
}

.article {
    position: relative
}

.article .article-container {
    margin-bottom: 25px;
    padding: 25px 10px
}

.article .article-container__color-text {
    color: #676aa7
}

.article .offer__item {
    justify-content: center
}

@media(min-width: 1199px) {
    .article .offer__item {
        justify-content:space-between
    }
}

.article__best {
    padding: 15px
}

.article__best__main-title {
    color: #c6c7dd;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 1.25px;
    line-height: 150%;
    padding: 0;
    text-align: center
}

.article__best__image {
    height: auto;
    max-width: 130px;
    -o-object-fit: cover;
    object-fit: cover
}

.article__best__text {
    color: #333;
    display: inline-block;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: .7px;
    line-height: 150%
}

.article__best__text:active,.article__best__text:hover,.article__best__text:link,.article__best__text:visited {
    color: #333
}

.article__best__blog-link {
    font-weight: 700;
    text-transform: uppercase
}

.retargeting {
    position: relative
}

.retargeting .retargeting-container {
    max-width: 1200px;
    padding: 25px 10px
}

.retargeting .retargeting-container__main-image {
    border: 10px solid #fff;
    box-shadow: 0 5px 15px 0 rgba(238,129,151,.07);
    height: auto;
    margin: 0 auto;
    max-height: 800px;
    max-width: 100%
}

.retargeting .retargeting-container__button-link {
    min-width: 270px
}

.wysiwyg-html-container {
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: .8px;
    line-height: 150%
}

.wysiwyg-html-container h1 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 1.3px
}

.wysiwyg-html-container h2 {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .9px
}

.wysiwyg-html-container a,.wysiwyg-html-container a:active,.wysiwyg-html-container a:hover,.wysiwyg-html-container a:link,.wysiwyg-html-container a:visited {
    color: #676aa7
}

.wysiwyg-html-container ul {
    list-style: url(../img/characteristic_arrow.svg)
}

.wysiwyg-html-container ol li,.wysiwyg-html-container ul li {
    margin: 10px 0
}

.reviews {
    position: relative
}

.reviews__item {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 15px 20px 0 rgba(238,129,151,.07);
    padding: 15px
}

.reviews__item:not(:last-child) {
    margin-bottom: 15px
}

.reviews__item__review-link {
    color: #ff4a64;
    display: block;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: .7px;
    line-height: 150%;
    text-transform: uppercase
}

.reviews__item__review-link:hover {
    color: #f86177
}

.reviews-row {
    background-color: #f6cbd2;
    border-radius: 10px;
    height: 100%;
    margin: 0 auto;
    padding: 15px;
    text-align: center;
    width: 80%
}

@media(min-width: 766px) {
    .reviews-row {
        width:100%
    }
}

.reviews-row__subtitle {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase
}

@media(min-width: 768px) {
    .reviews-row__subtitle {
        font-size:18px;
        line-height: 27px
    }
}

#carousel:not(.slick-initialized) {
    display: none;
    opacity: 0
}

.slick-slider .slick-next,.slick-slider .slick-prev {
    height: 30px;
    width: 30px
}

.slick-slider .slick-prev {
    left: -50px
}

.slick-slider .slick-next {
    right: -50px
}

.slick-slider .slick-next:before,.slick-slider .slick-prev:before {
    font-size: 30px
}

.slider-section {
    padding: 50px 0;
    text-align: center
}

.slider-section__text {
    flex-grow: 1
}

.slider__item {
    background-color: #fff;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
    text-align: left
}

.offers-popup-banner {
    background: #fff;
    background: linear-gradient(90deg,#faf6f6,#e1e1f5 50%,#faf6f6);
    bottom: 0;
    display: none;
    left: 0;
    padding: 40px 0;
    position: fixed;
    right: 0;
    z-index: 10
}

.offers-popup-banner__inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 992px;
    padding: 0 10px 0 150px;
    position: relative
}

@media(min-width: 1024px) {
    .offers-popup-banner__inner {
        padding:0 10px 0 200px
    }
}

.offers-popup-banner__text {
    font-size: 20px;
    font-weight: 600;
    line-height: 23px
}

.offers-popup-banner__img {
    bottom: -40px;
    height: 196px;
    left: 0;
    position: absolute;
    width: 138px
}

.offers-popup-banner__btn-close {
    background-color: #fff;
    border-color: rgba(0,0,0,.9);
    border-radius: 50%;
    cursor: pointer;
    height: 30px;
    padding: 5px;
    position: absolute;
    right: 90px;
    top: -15px;
    width: 30px
}

.offers-popup-banner__btn-close span {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 8.586 2.929 1.515 1.515 2.929 8.586 10l-7.071 7.071 1.414 1.414L10 11.414l7.071 7.071 1.414-1.414L11.414 10l7.071-7.071-1.414-1.414L10 8.586z' fill='rgba(0,0,0,0.5)'/%3E%3C/svg%3E");
    background-position: 50%;
    background-repeat: no-repeat;
    display: block;
    height: 20px;
    width: 20px
}

.cookies-popup-banner {
    background: #fff;
    background: linear-gradient(90deg,#f5f1f1,#d8d8ea 50%,#f5f1f1);
    bottom: 0;
    left: 0;
    max-width: 100%;
    position: fixed;
    right: 0;
    width: 100%;
    z-index: 20
}

.cookies-popup-banner__inner {
    position: relative
}

.cookies-popup-banner__text {
    font-size: 11px;
    font-weight: 600;
    line-height: 23px;
    padding: 5px 0 6px
}

.cookies-popup-banner__text .dropdown-toggle {
    color: #ee8197
}

.cookies-popup-banner__img {
    bottom: -40px;
    height: 172px;
    left: 0;
    position: relative;
    width: 167px
}

.cookies-popup-banner__btn-close {
    cursor: pointer;
    height: 30px;
    padding: 5px;
    position: absolute;
    right: 0;
    top: 2px;
    width: 30px
}

.cookies-popup-banner__btn-close:hover {
    background-color: hsla(0,0%,100%,.7);
    border-radius: 50%
}

.cookies-popup-banner__btn-close span {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 8.586 2.929 1.515 1.515 2.929 8.586 10l-7.071 7.071 1.414 1.414L10 11.414l7.071 7.071 1.414-1.414L11.414 10l7.071-7.071-1.414-1.414L10 8.586z' fill='rgba(0,0,0,0.7)'/%3E%3C/svg%3E");
    background-position: 50%;
    background-repeat: no-repeat;
    display: block;
    height: 20px;
    width: 20px
}

.quiz-main {
    background-color: #ff4a64;
    border-radius: 10px;
    color: #fff
}

.quiz-main__title {
    font-size: 20px;
    font-weight: 700
}

.quiz-main .btn-quiz {
    background-color: #fff;
    color: #000
}

.quiz-main .btn-quiz:active,.quiz-main .btn-quiz:hover {
    background-color: #fcdde2;
    border: none;
    box-shadow: 0 0 3px 3px #f64760;
    color: #2d1515
}

.hidden {
    overflow: hidden
}

.main {
    flex: 1 1 auto
}

.additional-section,.main-section {
    width: 100%;
    z-index: 0
}

.additional-section-bg,.main-section-bg {
    background-image: url(/img/background/main_htd.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover
}

.additional-section__inner,.main-section__inner {
    padding: 10px 0 0;
    position: relative;
    z-index: 8
}

@media(min-width: 768px) {
    .additional-section__inner,.main-section__inner {
        padding:50px 0 0
    }
}

.additional-section__content,.main-section__content {
    max-width: 100%;
    padding-bottom: 70px;
    position: relative;
    text-align: left
}

@media(min-width: 450px) {
    .additional-section__content,.main-section__content {
        padding-bottom:90px
    }
}

@media(min-width: 576px) {
    .additional-section__content,.main-section__content {
        padding-bottom:150px
    }
}

@media(min-width: 768px) {
    .additional-section__content,.main-section__content {
        padding-bottom:240px
    }
}

@media(min-width: 992px) {
    .additional-section__content,.main-section__content {
        padding-bottom:350px
    }
}

@media(max-width: 500px) {
    .additional-section__content .page-subtitle,.main-section__content .page-subtitle {
        font-size:10px
    }
}

.additional-section__content .btn,.main-section__content .btn {
    font-size: 11px;
    padding: 10px
}

@media(min-width: 450px) {
    .additional-section__content .btn,.main-section__content .btn {
        font-size:14px
    }
}

.additional-section .rating-star,.main-section .rating-star {
    display: inline-block;
    flex-shrink: 0;
    height: 15px;
    width: 15px
}

@media(min-width: 768px) {
    .additional-section .rating-star,.main-section .rating-star {
        height:21px;
        width: 21px
    }
}

@media(min-width: 1199px) {
    .additional-section .rating-star,.main-section .rating-star {
        height:24px;
        width: 24px
    }
}

.additional-section .rating-num,.main-section .rating-num {
    background-color: #106197;
    border-radius: 5px;
    color: #fff;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    min-width: 42px;
    padding: 3px;
    text-align: center
}

@media(min-width: 1199px) {
    .additional-section .rating-num,.main-section .rating-num {
        font-size:32px
    }
}

.additional-section .text-white .partners-tooltip .dropdown-toggle,.main-section .text-white .partners-tooltip .dropdown-toggle {
    color: #e5e5e5
}

.additional-section .rating-text,.main-section .rating-text {
    color: #106197;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    text-align: right
}

.additional-section .score-link,.additional-section .score-link:active,.additional-section .score-link:hover,.additional-section .score-link:link,.additional-section .score-link:visited,.main-section .score-link,.main-section .score-link:active,.main-section .score-link:hover,.main-section .score-link:link,.main-section .score-link:visited {
    text-decoration: none
}

.additional-section .score-text,.main-section .score-text {
    color: #9898a3;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: .5px;
    line-height: normal;
    text-transform: uppercase
}

.additional-section .score-icon,.main-section .score-icon {
    display: inline;
    height: 18px;
    margin-top: -3px;
    width: 18px
}

.home-article-section {
    margin-top: -50px
}

@media(min-width: 450px) {
    .home-article-section {
        margin-top:-65px
    }
}

@media(min-width: 576px) {
    .home-article-section {
        margin-top:-110px
    }
}

@media(min-width: 768px) {
    .home-article-section {
        margin-top:-190px
    }
}

@media(min-width: 992px) {
    .home-article-section {
        margin-top:-300px
    }
}

.main-content {
    padding-top: 40px
}

@media(min-width: 992px) {
    .main-content {
        padding-top:70px
    }
}

.advantages-item {
    height: 100%;
    overflow: hidden;
    position: relative;
    text-align: left
}

.advantages-item_painted {
    align-items: flex-start;
    background-color: #ff4a64;
    border-radius: 5px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.advantages-item_painted svg {
    fill: #fff;
    display: block;
    height: 68px;
    width: 68px
}

.advantages-item__content {
    background-color: #fff;
    color: #333;
    height: 100%;
    padding: 20px
}

.advantages-item__title {
    font-size: 26px;
    font-weight: 600;
    line-height: 39px
}

.advantages-item__text {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px
}

header {
    background-color: #fff;
    bottom: 0;
    box-shadow: 0 4px 4px 0 rgba(0,0,0,.25);
    height: 40px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10
}

@media(min-width: 992px) {
    header {
        height:70px
    }
}

.header-container {
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: 100%
}

.logo {
    color: #ff4a64;
    font-size: 22px;
    font-weight: 700;
    line-height: 1
}

.logo:hover {
    color: #f86177;
    text-decoration: none
}

@media(min-width: 350px) {
    .logo {
        font-size:25px
    }
}

@media(max-width: 500px) {
    .navbar-toggler {
        padding:1px 6px
    }
}

.title {
    font-size: 38px;
    font-weight: 600;
    line-height: 45px
}

.subtitle,.title {
    padding-bottom: 30px
}

.subtitle {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px
}

.text-fw-6 {
    color: #333;
    font-weight: 600;
    text-decoration: none
}

.card {
    background-color: transparent;
    border: none;
    height: 100%;
    margin: 0 auto;
    max-width: 255px
}

.card__title {
    font-size: 18px;
    font-weight: 600;
    line-height: 27px
}

.card__image {
    border-radius: 50%;
    height: 200px;
    margin: 0 auto;
    overflow: hidden;
    width: 200px
}

.card__image img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.card-body {
    background-color: #fff;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    margin-top: -55px;
    padding: 20px
}

.card-title {
    color: #333;
    flex-grow: 1
}

.white__box {
    background: #fff;
    border-radius: 5px;
    box-shadow: 1px 3px 4px 1px rgba(0,0,0,.1)
}

.page-title-container {
    background: transparent;
    padding: 20px 0
}

@media(max-width: 768px) {
    .page-title-container {
        padding:15px 0 5px
    }
}

.page-title-container__title-block {
    padding: 0 20px 0 0
}

.page-title-container__title-block .page-subtitle {
    font-size: 30px;
    padding-bottom: 0
}

@media(max-width: 768px) {
    .page-title-container__title-block .page-subtitle {
        font-size:18px
    }

    .page-title-container__title-block .page-subtitle p {
        margin-bottom: 0
    }
}

.page-title-container__best-review {
    max-width: 375px;
    min-width: 375px;
    padding: 10px 0
}

@media(max-width: 1024px) {
    .page-title-container__best-review {
        display:none
    }
}

.page-title-container__best-review__main-img {
    border: 5px solid #f1f0f0;
    margin-left: auto
}

.page-title {
    color: #000;
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    margin: 0;
    padding-bottom: 15px;
    position: relative;
    text-transform: uppercase
}

@media(min-width: 576px) {
    .page-title {
        font-size:40px;
        line-height: 60px
    }
}

.page-subtitle {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding-bottom: 30px;
    position: relative
}

.page-subtitle_small {
    font-size: 11px;
    font-weight: 600;
    line-height: 17px;
    position: relative
}

.footer {
    background-color: #280208;
    color: #fff;
    padding: 30px 0;
    position: relative;
    width: 100%
}

.footer .logo {
    color: #fff;
    height: 90px;
    padding-bottom: 24px
}

.footer__list {
    list-style: none;
    padding: 0
}

.footer__item {
    padding: 10px
}

.footer__item a {
    color: #fff;
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    text-decoration: none;
    transition: color .3s linear
}

.footer__item:hover a {
    color: #756e6e
}

.footer .sub-footer {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px
}

.text-white-shadow-gray {
    color: #fff;
    text-shadow: 0 0 1px gray
}


.white__box.offer-container{
    padding-left: 0;
    padding-right: 0;
}

ul.nomark {
    list-style: none;
    padding-left: 20px;
}