

/* Start:/local/templates/ceotv/template_styles.css?17682222934112*/
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;
}


/* End */
/* /local/templates/ceotv/template_styles.css?17682222934112 */
