.search-bar {
    display: flex;
}
.search-bar > * {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    height: 60px;
    color: var(--grey-menu);
    background-color: var(--grey-menu-light);
    border: none;
    padding: calc(var(--space-standard) * 2.5) calc(var(--space-standard) * 3.75);
}
.search-bar > input {
    flex: 1;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
.search-bar > input:focus,
.search-bar > input:focus-visible {
    border: none;
    outline: none;
}
.search-bar > button {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    cursor: pointer;
}
.tag-label {
    font-size: 16px;
    line-height: 20px;
    background-color: var(--grey-menu-light);
    border: none;
    border-radius: 20px;
    padding: 10px 36px;
    cursor: pointer;
}

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

/* ***** */
/* MODAL */
/* ***** */
.modal {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, .3);
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    overflow: auto;
}
.modal.visible {
    /* animation: fadeIn .2s ease-in 0s 1; */
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal.fade-in {
    animation: fadeIn .2s ease-in 0s 1;
}
.modal.fade-out {
    animation: fadeIn .2s ease-in 0s 1 reverse;
}
.modal .modal-body {
    width: 90%;
    max-width: 872px;
    border-radius: 25px;
    padding: 55px 35px;
    position: relative;
}
.modal-body .modal-dismiss {
    position: absolute;
    top: 21px;
    right: 15px;
}
.modal-body .modal-ill {
    max-width: 60%;
}
.modal-body .modal-box-bg {
    font-weight: 700 !important;
    border-radius: 10px;
    padding: 15px 20px;
}
.modal-body .modal-msg {
    font-size: 10px;
    line-height: 13px;
    margin-top: 8px;
}
@media (max-width: 767.98px) {
    .modal-body .modal-dismiss {
        width: 28px;
    }
}
@media (min-width: 768px) {
    .modal .modal-body {
        border-radius: 50px;
        padding: 110px 180px;
    }
    .modal-body .modal-dismiss {
        top: 47px;
        right: 65px;
    }
    .modal-body .modal-box-bg {
        border-radius: 20px;
        padding: 30px 40px;
    }
    .modal-body .modal-msg {
        font-size: 20px;
        line-height: 25px;
        margin-top: 20px;
    }
}
/* ********* */
/* MODAL end */
/* ********* */

/* ****** */
/* SLIDER */
/* ****** */
.hero-carousel {
    position: relative;
}
.hero-carousel .hero-content {
    height: 0;
    padding-bottom: 88.8%;
    position: relative;
}
.hero-carousel .hero-content img.cover {
    position: absolute;
    top: 0;
    left: 0;
}
.hero-carousel .hero-button-prev,
.hero-carousel .hero-button-next {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
}
.hero-carousel .hero-button-prev {
    left: 0;
}
.hero-carousel .hero-button-next {
    right: 0;
}
.hero-carousel .hero-descr {
    max-width: calc(100% - 100px);
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.common-carousel {
    --bullet-size: 9px;
    --bullet-size-active: 12px;
    padding-top: 32px;
}
.common-carousel .swiper-pagination {
    width: 100%;
    height: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
}
.common-carousel .swiper-pagination .swiper-pagination-bullet {
    width: var(--bullet-size);
    height: var(--bullet-size);
    background-color: #DADADA;
    opacity: 1;
}
.common-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: var(--bullet-size-active);
    height: var(--bullet-size-active);
    background-color: var(--blue-deep);
}
.carousel-wrapper-creative {
    max-width: 449px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) {
    .hero-carousel .hero-descr {
        max-width: calc(936px + var(--gutter));
        padding-left: var(--gutter);
        padding-right: var(--gutter);
    }
    .hero-carousel .hero-content {
        padding-bottom: 728px;
    }
    .common-carousel {
        --bullet-size: 12px;
        --bullet-size-active: 17px;
        padding-top: 44px;
    }
    .common-carousel .swiper-pagination {
        height: 17px;
    }
}
/* ********** */
/* SLIDER end */
/* ********** */

/* ******* */
/* VARIOUS */
/* ******* */
.btt-btn {
    --size: 45px;
    width: var(--size);
    height: var(--size);
    color: var(--blue-deep);
    position: fixed;
    display: block;
    z-index: 100;
}
.btt-btn.smooth-transition {
    transition: all .2s ease-in;
}
.intro-icon {
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.intro-icon > div {
    max-width: 226px;
}
#where-to-start .text-body-2 {
    max-width: 300px;
}
.creative-title {
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0em;
    padding-top: 13px;
    position: relative;
}
.creative-title::before {
    content: "";
    width: 126px;
    height: 46px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}
.creative-title .creative-icons {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.creative-title .creative-title-on-top {
    position: relative;
    z-index: 1;
}
.creative-descr {
    margin-top: 45px;
}
.bg-blue .creative-title::before,
.bg-green .creative-title::before,
.bg-green-alt .creative-title::before,
.bg-yellow .creative-title::before {
    background-color: var(--white);
}
.bg-lilla-light .creative-title::before {
    background-color: var(--red);
}
.bg-grey-light .creative-title::before {
    background-color: var(--yellow);
}
.section-creative .creative-title h2,
.section-creative .creative-descr,
.section-creative .title-1 {
    color: var(--blue-deep);
}
.row.creative-tab > .col {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.creative-tab :not(.btn-large) {
    font-size: 14px;
    font-weight: 700;
    line-height: 17px;
    color: var(--blue-deep);
}
.creative-tab > .col > div {
    height: 64px;
    display: flex;
    align-items: center;
}
.creative-tab > .col:first-child > div {
    border-bottom: 1px solid var(--blue-deep);
}
.creative-tab > .col:last-child > div {
    max-width: 300px;
}
.creative-tab > .col .btn-large {
    margin-bottom: 0;
}
.progress-bar {
    width: 100%;
}
.progress-bar > .bar {
    height: 33px;
    background-color: var(--red);
    display: flex;
    justify-content: center;
    align-items: center;
}
.creative-calendar {
    --circle-size: 25px;
    --voice-spacing: 33px;
}
.creative-calendar-legend {
    display: flex;
    flex-direction: column;
}
.creative-calendar-legend .legend-voice {
    display: flex;
    align-items: center;
    margin-top: var(--voice-spacing);
}
.creative-calendar .legend-color {
    width: var(--circle-size);
    height: var(--circle-size);
    border-radius: 50%;
    margin-right: 30px;
}
.creative-calendar-legend .legend-descr {
    font-size: 14px;
    line-height: 17px;
    color: var(--blue-deep);
}
.creative-calendar-legend {
    align-items: center;
}
.creative-calendar-legend .legend-voice {
    width: 50%;
}
.creative-calendar-wrapper {
    max-width: 100%;
    overflow: auto;
}
.creative-calendar table {
    width: 100%;
}
.creative-calendar table th,
.creative-calendar table td {
    text-align: center;
    color: var(--blue-deep);
    padding: 8px 10px;
}
.creative-calendar table .legend-color {
    margin: 0;
}
.creative-calendar .legend-color.half {
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
}
.creative-print-detail .print-voice {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 35px;
}
.creative-print-detail .print-voice * {
    color: var(--blue-deep);
}
.creative-print-detail .print-voice h4 {
    max-width: 100%;
    width: 164px;
    margin: 0;
}
.creative-print-detail .print-voice .title-2 {
    max-width: 100%;
    width: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.creative-print-detail .print-voice .is-svg {
    margin-right: 20px;
}
.nl-subscribe {
    width: 100%;
    max-width: 1440px;
    background-image: url("../../images/bg-nl.png");
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 100px;
    margin-left: auto;
    margin-right: auto;
}
.nl-subscribe :not(button) {
    color: var(--blue-deep);
}
.nl-subscribe .sub-message {
    position: relative;
}
.nl-subscribe .sub-message > div,
.form-message-title {
    font-size: 22px;
    font-weight: 800;
    line-height: 27px;
    position: relative;
    z-index: 1;
}
.nl-subscribe .sub-message::before {
    content: "";
    width: 169px;
    height: 62px;
    background-color: var(--yellow);
    position: absolute;
    display: block;
}
.form-content {
    position: relative;
}
.form-message {
    width: 100%;
    background-color: var(--yellow);
    position: absolute;
    top: 0;
    left: 0;
    padding: 100px 14.9%;
    z-index: 2;
    pointer-events: all;
}
.form-message-dismiss {
    width: 19px;
    position: absolute;
    top: 33px;
    right: 28px;
    padding: 0;
}
.disable-click {
    pointer-events: none;
}
.breadcrumbs {
    font-size: 12px;
    line-height: 15px;
    display: flex;
    padding: 0;
}
.breadcrumbs * {
    color: var(--blue-deep);
}
.breadcrumbs a {
    text-decoration: none;
}
.breadcrumbs li + li::before {
    content: "/";
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
}
.read-more-intro .text-blue-deep > :first-child + * {
    margin-top: 30px;
}
.read-more-content {
    background-color: #F2F2F2;
    position: relative;
}
.read-more-content,
.read-more-intro.hidden {
    display: none;
}
.read-more-content.visible {
    display: block;
}
.read-more-intro.fade-out,
.read-more-content.fade-out {
    animation: fadeOut .2s ease-in 0s 1;
}
.read-more-intro.fade-in,
.read-more-content.fade-in {
    animation: fadeIn .2s ease-in 0s 1;
}
.read-more-content .read-more {
    width: 19px;
    position: absolute;
    top: 40px;
    right: 25px;
    padding: 0;
}
.read-more-content * {
    color: var(--blue-deep);
}
.read-more-section {
    margin-top: 40px;
}
.read-more-section .read-more-section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}
.read-more-section .read-more-section-title > :first-child {
    margin-right: 6.25%;
}
.read-more-section .read-more-section-title::after {
    content: "";
    height: 2px;
    background-color: var(--blue-deep);
    display: block;
    flex: 1;
}
.read-more-content p {
    margin-bottom: 30px;
}
.read-more-content p:last-child {
    margin-bottom: 0;
}
.read-more-content p + ul {
    margin-top: -30px;
}
.read-more-content ul {
    padding-left: 14px;
}
.read-more-content ul li {
    list-style: disc;
}
.filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow-x: auto;
    padding: 2px 0;
}
.filters > * {
    width: auto;
    flex: 0 0 auto;
}
.filters > * + * {
    margin-left: 30px;
}
.filter-intro {
    font-size: 22px;
    font-weight: 800;
    line-height: 27px;
    color: var(--blue-deep);
}
.select-control {
    background-color: var(--grey-mid);
}
.select-control select {
    font-size: 14px;
    line-height: 17px;
    color: var(--blue-deep);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("../../images/ico-dropdown.svg");
    background-size: 15px 9px;
    background-position: calc(100% - 13px) center;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    padding: 7px 35px 7px 20px;
    margin: 0;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    cursor: inherit;
    line-height: inherit;
    outline: none;
}
.filter-switch {
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.01em;
    color: var(--blue-deep);
    display: flex;
    align-items: center;
}
.filter-switch .switch {
    margin-left: 15px;
}
.switch {
    --width: 80px;
    --height: 34px;
    width: var(--width);
    height: var(--height);
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.switch input {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
}
.switch .track {
    width: 100%;
    height: 100%;
    background-color: var(--grey-mid);
    border-radius: 20px;
    transition: all .2s ease-in;
}
.switch .slider {
    width: calc(var(--height) * .7);
    height: calc(var(--height) * .7);
    background-color: var(--white);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 6px;
    transform: translateY(-50%);
    transition: all .2s ease-in;
}
.switch input:checked + .track {
    background-color: #FF6364;
}
.switch input:checked + .track + .slider {
    left: calc(100% - var(--height) * .7 - 6px);
}
.products-wrapper > * {
    margin-bottom: 80px;
}
.product {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.product .img {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    margin-bottom: 30px;
    position: relative;
}
.product .img img {
    position: absolute;
    top: 0;
    left: 0;
}
.product .img .fav {
    color: transparent;
    position: absolute;
    top: 6.38%;
    right: 8%;
    display: flex;
    width: 36px;
    height: 36px;
}
.product .img .fav .is-svg {
    color: var(--blue-deep);
}
.product .img .fav:not(.like) .is-svg.full,
.product .img .fav.like .is-svg.empty {
    display: none;
}
.product .img .fav.like .is-svg.full,
.product .img .fav:not(.like) .is-svg.empty {
    display: block;
}
.product .img > .status {
    width: 118px;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    padding: 7px;
    position: absolute;
    bottom: 5.5555%;
    left: 8.3333%;
}
.product .img > .status.right {
    left: auto;
    right: 8.3333%;
}
.product .descr {
    width: 360px;
    max-width: 100%;
    margin-bottom: 30px;
}
.product .descr * {
    color: var(--blue-deep);
}
.product .cta {
    max-width: 100%;
    margin-top: auto;
}
.cta-product {
    width: 360px;
    height: 60px;
    max-width: 100%;
    font-size: 14px;
    line-height: 17px;
    text-decoration: none;
    color: var(--blue-deep);
    border: 2px solid var(--blue-deep);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .2s ease-in;
}
.cta-product:hover {
    color: var(--white);
    background-color: var(--blue-deep);
}
.btn-load-more > .is-svg {
    transform: rotate(180deg);
}
@media (max-width: 767.98px) {
    .btt-btn {
        left: calc(var(--container-size) - var(--gutter) / 2);
    }
    #where-to-start .is-svg {
        max-width: 27px;
    }
    .creative-title {
        padding-right: 60px;
    }
    .visible-tab.creative-tab > .col.align-items-center > div {
        max-width: 170px;
    }
    .creative-title .creative-icons .is-svg {
        width: 27px;
    }
    .creative-title .creative-icons .is-svg + .is-svg {
        margin-top: 40px;
    }
    .nl-subscribe h2 img {
        max-width: 177px;
        margin-bottom: 12px;
    }
    .read-more-content {
        width: 100%;
    }
}
@media (max-width: 639.98px) {
    .btt-btn {
        left: calc(var(--container-size) - var(--gutter) / 2 - var(--size) / 2);
    }
}
@media (min-width: 768px) {
    .btt-btn {
        --size: 62px;
        /* right: calc((100% - var(--container-size)) / 2); */
        right: 50px;
    }
    .intro-icon {
        font-size: 20px;
        line-height: 24px;
    }
    .creative-title::before {
        width: 168px;
        height: 62px;
    }
    .creative-title,
    .creative-descr {
        padding-left: 21px;
    }
    .creative-title {
        padding-right: 50px;
    }
    .creative-descr {
        font-size: 20px;
        line-height: 24px;
        padding-right: 21px;
        margin-top: 25px;
    }
    .section-creative {
        position: relative;
    }
    .section-creative::before {
        content: "";
        width: 2px;
        height: 90px;
        background-color: var(--blue-deep);
        display: block;
        position: absolute;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
    }
    .creative-tab > .col > div {
        height: 90px;
    }
    .creative-tab > .col:first-child > div {
        border-bottom: 2px solid var(--blue-deep);
    }
    .creative-tab :not(.btn-large),
    .form-message-title {
        font-size: 24px;
        font-weight: 700;
        line-height: 29px;
    }
    .progress-bar > .bar {
        height: 50px;
    }
    .creative-calendar {
        --circle-size: 33px;
        --voice-spacing: 25px;
    }
    .creative-calendar-legend .legend-descr {
        font-size: 20px;
        font-weight: 400;
        line-height: 24px;
    }
    .creative-calendar table th,
    .creative-calendar table td {
        text-align: center;
        padding: 12px 20px;
    }
    .creative-print-detail .print-voice {
        margin-top: 70px;
    }
    .nl-subscribe .form-content > :first-child {
        order: 3;
    }
    .form-message {
        padding: 42px 27.5%;
    }
    .form-message-dismiss {
        width: 23px;
        top: 18px;
        right: 18px;
    }
    .breadcrumbs {
        font-size: 14px;
        line-height: 17px;
    }
    .filter-intro {
        font-size: 24px;
        font-weight: 700;
        line-height: 29px;
    }
    .select-control select {
        font-size: 16px;
        line-height: 19px;
    }
    .row.products-wrapper > .col {
        width: calc(100% / 2);
        flex: 0 0 auto;
    }
}
@media (max-width: 1439.98px) {
    .creative > .col {
        width: 100%;
        flex: 0 0 auto;
        margin-top: 25px;
        margin-bottom: 25px;
    }
    .visible-tab.creative-tab > .col.align-items-center > div {
        width: 100%;
    }
    .creative-print-detail {
        display: flex;
    }
    .creative-print-detail .print-voice {
        width: 50%;
        flex-direction: column;
    }
    .creative-print-detail .print-voice > * {
        flex: 0 0 auto;
        margin-top: 30px;
    }
    .creative-print-detail .print-voice h4 {
        text-align: center;
    }
    .creative-print-detail .print-voice .title-2 {
        justify-content: flex-start;
    }
    .read-more-content {
        padding-top: 38px;
        padding-bottom: 120px;
    }
    .read-more-content {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (min-width: 768px) and (max-width: 1439.98px) {
    .visible-tab.creative-tab > .col.align-items-center > div {
        max-width: 230px;
    }
}
@media (max-width: 1023.98px) {
    .nl-subscribe .sub-message::before {
        top: -33px;
        left: 50%;
        transform: translateX(-50%);
    }
}
@media (min-width: 1024px) {
    .nl-subscribe .sub-message {
        width: 230px;
        padding-left: 40px;
    }
    .nl-subscribe .sub-message > div {
        font-size: 24px;
        font-weight: 700;
        line-height: 29px;
    }
    .nl-subscribe .sub-message::before {
        width: 142px;
        height: 59px;
    }
    .nl-subscribe .sub-message::before {
        top: -3px;
        right: -36px;
    }
}
@media (min-width: 1440px) {
    .creative {
        position: relative;
        padding-left: 25px;
        padding-right: 25px;
    }
    .bar-left::before,
    .bar-right::before {
        content: "";
        width: 2px;
        height: 70%;
        background-color: var(--blue-deep);
        display: block;
        position: absolute;
        top: 15%;
    }
    .bar-left::before {
        left: 0;
    }
    .bar-right::before {
        right: 0;
    }
    .creative.invert-order > .col:first-child {
        order: 2;
    }
    .creative.invert-order > .col:filastrst-child {
        order: 1;
    }
    .creative-title,
    .creative-descr {
        width: 442px;
    }
    .creative-title.fluid,
    .creative-descr.fluid {
        width: 100%;
    }
    .creative.invert-order .creative-title,
    .creative.invert-order .creative-descr {
        margin-left: auto;
    }
    .creative-title.icon-left {
        padding-left: 84px;
        padding-right: 0;
    }
    .creative-title.icon-left::before {
        left: 70px;
    }
    .creative-title.icon-left .creative-icons {
        left: 0;
        right: auto;
    }
    .read-more-content {
        padding: 45px 100px;
    }
    .read-more-content .read-more {
        width: 24px;
        right: 20px;
    }
    .filters > * + * {
        margin-left: 20px;
    }
    .row.products-wrapper > .col {
        width: calc(100% / 3);
    }
    .product .descr {
        padding-left: 10px;
        padding-right: 10px;
    }
    .cta-product {
        height: 78px;
        font-size: 20px;
        line-height: 24px;
    }
}

#blocker {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: 9999;
    background: url(ajax-loader.gif) center center no-repeat;
}
/* *********** */
/* VARIOUS end */
/* *********** */