

/* Start:/local/templates/ceotv/template_styles.css?17730819145927*/
body{
    display: block !important;
}
main{
    display: block;
    height: fit-content;
}

.bx-cstm-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #000;
    opacity: 0;
    top: 0;
    left: 0;
    transition: 0.4s opacity;
}

.bx-cstm-loader--relative {
    position: relative;
    width: 50px;
    height: 50px;
}

.loader {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background:
            radial-gradient(farthest-side, #ff5850 44%, #0000) top/4px 4px no-repeat,
            conic-gradient(#0000 30%, #ff5850);
    -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 4px), #000 0);
    animation: spinner-ub 0.8s infinite linear;
}

.loader:before{
    background-color: rgba(255, 255, 255, .8)
}

@keyframes spinner-ub {
    100% {
        transform: rotate(1turn);
    }
}

.loader-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.bx-cstm-loader.animated {
    opacity: 0.7;
}

.empty-result{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}

.catalog__detail-text{
    display: flex;
    gap: 18px;
    flex-direction: column;
}

.auth-header .logo{
    margin-bottom: 16px;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    pointer-events: none;
}

.toast {
    background: #0c111a;
    border: 1px solid #171b22;
    border-radius: 8px;
    padding: 16px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    position: relative;
    overflow: hidden;
    pointer-events: auto;
    animation: toastSlideIn 0.3s ease-out;
    opacity: 0;
    transform: translateX(100%);
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast.error {
    border-left: 3px solid #ff5850;
}

.toast.success {
    border-left: 3px solid #4CAF50;
}

.toast.warning {
    border-left: 3px solid #ffa500;
}

.toast.info {
    border-left: 3px solid #2196F3;
}

.toast__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.toast.error .toast__icon {
    color: #ff5850;
}

.toast.success .toast__icon {
    color: #4CAF50;
}

.toast.warning .toast__icon {
    color: #ffa500;
}

.toast.info .toast__icon {
    color: #2196F3;
}

.toast__content {
    flex: 1;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
}

.toast__close {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #85888e;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
    margin-top: -2px;
}

.toast__close:hover {
    color: #fff;
}

.toast__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #ff5850;
    width: 100%;
    transform-origin: left;
    animation: toastProgress linear;
}

.toast.error .toast__progress {
    background: #ff5850;
}

.toast.success .toast__progress {
    background: #4CAF50;
}

.toast.warning .toast__progress {
    background: #ffa500;
}

.toast.info .toast__progress {
    background: #2196F3;
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes toastProgress {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}

@media (max-width: 640px) {
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .toast {
        min-width: auto;
        max-width: none;
    }
}

.checkbox-group input[type="checkbox"]{
	z-index: 12;
}

.catalog__detail-article{
    gap: 32px;
}

.article-text{
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.article-section ol,
.article-section ul{
    list-style: auto;
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 12px 0;
}
.article-section ul{
    list-style-type: disc;
}
.article-section li{
    font-size: 18px;
    line-height: 1.2;
}
.profile__aside-link.active{
    background-color: #13161B;
    border-radius: 5px;
}
.end-discount{
    color: var(--colors-text-text-primary-900, #F7F7F7);
    /* Text sm/Regular */
    font-family: var(--Font-family-font-family-body, Inter);
    font-size: var(--Font-size-text-sm, 14px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--Line-height-text-sm, 20px); /* 142.857% */
    padding: 2px 6px;
    border-radius: var(--radius-xs, 4px);
    background: var(--Colors-Background-bg-brand-solid, #FF5850);
}
.old-price{
    color: var(--colors-text-text-tertiary-600, #94979C);
    /* Display xs/Regular */
    font-family: var(--Font-family-font-family-display, Inter);
    font-size: var(--Font-size-display-xs, 24px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--Line-height-display-xs, 32px); /* 133.333% */
    text-decoration-line: line-through;
}

.price-container{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-container .price-outer{
    display: flex;
    align-items: center;
    gap: 22px;
}

html .catalog__detail-content{
    gap: 32px;
}

.catalog__detail-chapters {
    color: var(--color-label);
    font-size: 16px;
    line-height: 30px;
}

.catalog__detail-chapter {
    padding: 30px 0 0 0;
}

li.catalog__detail-chapters-item {
    display: flex;
    gap: 0.3rem;
}
.chapters-time {
    cursor: pointer;
}
/* End */
/* /local/templates/ceotv/template_styles.css?17730819145927 */
