/* стилизация промобара */
.xyz-info-notification {
    position: fixed;
    bottom: 0;
    left: 10px;
    width: calc(100% - 10px);
    height: 70px;
    background: #8080ff;
    border-radius: 16px 16px 0 0;
    animation: 2s ease promobar-fadein;
    z-index: 997;
}

@keyframes promobar-fadein {
    from {
        opacity: 0;
    }
    70% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.xyz-info-notification__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1160px;
    height: 100%;
    margin: 0 auto;
    column-gap: 16px;
}

.xyz-info-notification__container_left {
    display: flex;
    height: inherit;
    align-items: center;
    column-gap: 16px;
}

.xyz-info-notification__image {
    width: 142px;
    height: 100%;
    background: url(https://static.tildacdn.com/tild6561-3264-4338-a564-396139643931/comp_1_1.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.xyz-info-notification__info-wrap {
    display: flex;
    align-items: center;
    column-gap: 16px;
}

.xyz-info-notification__discount {
    font: 300 40px/1 'BebasRoboto', Arial, sans-serif;
    color: #fff;
    min-width: fit-content;
}

.xyz-info-notification__title, .xyz-info-notification__text {
    font: 400 16px/1.25 'BebasRoboto', Arial, sans-serif;
    color: #fff;
}

.xyz-info-notification__text {
    display: none;
}

.xyz-info-notification__container_right {
    display: flex;
    align-items: center;
    column-gap: 24px;
}

.xyz-info-notification .xyz-info-notification__timer {
    display: flex;
    justify-content: center;
    background: rgb(255 255 255 / 15%);
    font: 400 16px/1 'BebasRoboto', Arial, sans-serif;
    color: #fff;
    min-width: 136px;
    padding: 8px;
    border-radius: 8px;
    box-sizing: border-box;
}

.xyz-info-notification__linkBtn {
    background: #fff;
    font: 400 14px/1.6 'BebasRoboto', Arial, sans-serif;
    color: #17171b;
    text-decoration: none;
    padding: 8px 28px;
    margin-right: 24px;
    border: 1px solid #fff;
    border-radius: 30px;
    transition: .2s ease;
    cursor: pointer;
}

.xyz-info-notification__linkBtn:hover {
    background: transparent;
    color: #fff;
}

.xyz-info-notification__close-btn {
    display: flex;
    background: none;
    border: none;
    padding: 0;
    height: fit-content;
    cursor: pointer;
}

.xyz-info-notification__close-btn svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 1199px) {
    .xyz-info-notification {
        left: 0;
        width: 100%;
        height: 62px;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .xyz-info-notification__container {
        width: 100%;
    }
    
    .xyz-info-notification__discount {
        font-size: 32px;
    }
    
    .xyz-info-notification__linkBtn {
        margin: 0;
    }
}

@media (max-width: 959px) {
    .xyz-info-notification__discount, .xyz-info-notification__title {
        display: none;
    }
    
    .xyz-info-notification__text {
        display: block;
    }
}

@media (max-width: 639px) {
    .xyz-info-notification {
        height: 64px;
        padding: 0 16px 0 10px;
        border-radius: 8px 8px 0 0;
    }
    
    .xyz-info-notification__container {
        column-gap: 16px;
    }
    
    .xyz-info-notification__container_left {
        width: calc(50% + 36px);
        column-gap: 8px;
    }
    
    .xyz-info-notification__image {
        width: 72px;
        flex-shrink: 0;
        background-size: 150%;
    }
    
    .xyz-info-notification__text {
        font-size: 14px;
    }
    
    .xyz-info-notification__container_right {
        column-gap: 16px;
    }
    
    .xyz-info-notification .xyz-info-notification__timer {
        display: none;
    }
    
    .xyz-info-notification__linkBtn {
        font-size: 12px;
        padding: 4px 11px;
    }
    
    .xyz-info-notification__close-btn svg {
        width: 14px;
        height: 14px;
    }
}
/* end стилизация промобара */

::selection {
    color: #ffffff;
    background-color: #8080ff;
}

/* зачеркивание цен */
.xyz-course-oldPrice h3, .xyz-course-price h3, .xyz-course-baseInstalmentMonthlyAmount h3 {
    text-decoration: line-through !important;
}