.lazyload-bg {
    /*width: 800px;*/
    /*height: 400px;*/
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;
}

.lazyload-bg.lazyload-nbg {
    /*width: 800px;*/
    /*height: 400px;*/
    background-color: rgba(0,0,0, 0)!important;
    background-size: cover;
    background-position: center;
}

/* Лоадер (анимированный кружок) */
.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transition: opacity 0.3s ease;
}

.loader.fade-out {
    opacity: 0;
}

/* Анимация лоадера */
@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* После загрузки плавно показываем блок */
.lazyloaded {
    opacity: 1 !important;
}

.btn-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    opacity: 0;
    transition: all .3s;
}

.btn-top-inner {
    width: 36px;
    height: 36px;
    display: inline-flex;
    border: 1px solid var(--primary-color);
    border-radius: var(--default-border-radius);
    background: #fff;
    cursor: pointer;
}

.btn-top-inner svg {
    display: inline-block;
    margin: auto;
}


.dev-helper-container {
    position: fixed;
    bottom: 150px;
    right: -132px;
    z-index: 9999;
    width: 192px;
    font-size: 12px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    transition: all .3s;
}

.dev-helper-container.show {
    right: 10px;
    transition: all .3s;
}

.dev-helper-container-btn {
    background: #fff;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    gap: 10px;
    padding: 7px;
    border: 1px solid #333;
    border-radius: 4px;
    height: 36px;
    margin-top: auto;
    margin-bottom: 6px;
    width: 36px;
    flex: none;
    margin-right: 20px;
}

.dev-helper-container-btn a {
    display: block;
    width: 20px;
    height: 20px;
    background-image: url('/local/templates/lamoda-academy/images/icons/burger-default.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.dev-helper-container-btn a.active {
    background-image: url('/local/templates/lamoda-academy/images/icons/burger-close.svg');
}

.dev-helper-container-links {
    background: #fff;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    gap: 10px;
    padding: 6px;
    width: 150px;
    border-radius: 4px;
}

body {
    font-family: 'CoFoSansLaModa', sans-serif;
    font-weight: normal;
    font-style: normal;
}

body.overlay-fix {
    overflow-y: scroll;
    position: fixed;
}

.punctuation {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.overlay-bg {
    background-color: var(--overlay-dark-color-30);
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: -1;
    top: 0;
    opacity: 0;
    transition: all .3s;
}

.overlay-bg.show {
    z-index: 400;
    opacity: 1;
    transition: all .3s;
}

.overlay-bg.show-max {
    z-index: 900;
    opacity: 1;
    transition: all .3s;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.main-wrapper {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}



.component-header {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}

.component-main-header {
    padding: 0 0 20px 0;
}

.component-header.component-header_with-detail-link {
    justify-content: space-between;
}

.detail-link {
    color: var(--link-color);
}

.detail-link:hover {
    color: var(--link-color-hover);
}

.not-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1024px;
    margin: 0 auto;
    height: 90vh;
}

.not-found img {
    width: 70%;
}

.not-found p {
    color: var(--secondary-label-color);
    font-family: "CoFoSansLaModa Regular";
    font-weight: 400;
    font-size: 20px;
    padding-top: 8px;
    padding-bottom: 20px;
}

.not-found h2 {
    font-weight: 300;
    font-size: 32px;
    font-family: 'CanelaLight', sans-serif;
    color: #171717;
}



@media (min-width: 320px) {
    .content {
        width: 100svw;
        padding: 32px 20px;
        margin-top: var(--header-height);
        margin-left: 0;
        max-width: 100%;
    }
    .content.collapsed {
        width: 100%;
        margin-left: 0;
    }
    .component-header {
        padding: 40px 0 24px 0;
    }
}

@media (min-width: 410px) {

}

@media (min-width: 640px) {

}

@media (min-width: 1024px) {
    .content {
        width: calc(100% - var(--sidebar-width));
        padding: 32px 24px;
        margin-top: calc(var(--header-height) + 40px);
        margin-left: var(--sidebar-width);
    }
    .content.collapsed {
        width: calc(100% - var(--sidebar-collapsed-width));
        margin-left: var(--sidebar-collapsed-width);
    }
    .component-header {
        padding: 64px 0 24px 0;
    }
}

@media (min-width: 1280px) {
    .content {
        margin-top: var(--header-height);
    }
}

@media (min-width: 1368px) {

}


.header-datepicker-mobile {
    display: block;
    z-index: 490;
    position: relative;
}

.header-datepicker-mobile-inner, .header-search-mobile-inner {
    background-color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: -150svh;
    min-height: calc(100svh - 72px);
    transition: all .3s;
    padding: 32px 20px;
    border-radius: 0 0 4px 4px;
    box-shadow: var(--box-shadow-catalogue-card);
    width: 100svw;
    overflow-y: scroll;

}

.header-datepicker-mobile-inner.show {
    display: block;
    top: 72px;
    transition: all .3s;
}




.cookie-disclaimer-container {
    display: block;
    max-width: 1022px;
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: var(--default-border-radius);
    position: fixed;
    z-index: 99999;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
}

.cookie-disclaimer-inner {
    display: flex;
    gap: 16px;
}

.cookie-disclaimer-inner .cookie-disclaimer-col:nth-child(1) a {
    color: #fff;
    text-decoration: underline;
}

.cookies-description-container {
    max-width: 800px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 120px;
}


.cookies-description-container h1 {
    font-size: 32px;
    line-height: 40px;
}

.cookies-description-container h2 {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.cookies-description-container p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.cookies-description-container p a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookies-description-container ul {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 14px;
}

.cookies-description-container ul li {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 10px;
    position: relative;
    list-style: disc;
}

.cookies-description-container ul li a {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (min-width: 320px) {
    .cookie-disclaimer-inner {
        flex-flow: column nowrap;
        justify-content: flex-start;
    }
    .cookie-disclaimer-container {
        bottom: 0;
    }
}

@media (min-width: 410px) {

}

@media (min-width: 640px) {
    .cookie-disclaimer-inner {
        flex-flow: row nowrap;
        justify-content: space-between;
    }

}

@media (min-width: 1024px) {
    .cookie-disclaimer-container {
        bottom: 24px;
    }
}

@media (min-width: 1280px) {

}

@media (min-width: 1440px) {

}


.cookies-main-page {
    margin-bottom: 24px;
    margin-top: 64px;
}
.cookies-item {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    gap: 16px;
    position: relative;
    align-items: center;
    margin-bottom: 56px;
}
.cookies-item__detail-link {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
}
@media (min-width: 320px) {
    .cookies-main-page {
        width: 100%;
    }
}

@media (min-width: 410px) {

}

@media (min-width: 640px) {

}

@media (min-width: 1024px) {
    .cookies-main-page {
        width: calc(50% - 12px);
    }
}

@media (min-width: 1280px) {

}

@media (min-width: 1440px) {

}



/*CUSTOM MODAL*/

.modal {
    position: fixed;
    top: 220px;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    visibility: hidden;
    transition: .2s ease;
    background: none;
    z-index: 1001;
    max-width: 800px;
    width: 90%;
}

.modal.is-open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    z-index: 10000;
}







































