﻿.tabAnim {
    z-index: -9;
}

#cust:checked ~ div {
    --tw-translate-x: 100%;
}

#ncust:checked ~ div {
    --tw-translate-x: 100%;
}

#stf:checked ~ div {
    --tw-translate-x: 200%;
}




.mask-gradient {
    -webkit-mask-image: radial-gradient(circle at 0% 30%, rgba(0,0,0,1) 15%, rgba(0,0,0,0.6) 45%, rgba(0,0,0,0) 75%);
    mask-image: radial-gradient(circle at 0% 30%, rgba(0,0,0,1) 15%, rgba(0,0,0,0.6) 45%, rgba(0,0,0,0) 75%);
}

.mainClass {
    margin: 0;
    height: 100%;
}

/**/

.notiflix-notify {
    z-index: 9999 !important; /* Use a value higher than any overlapping elements */
}

/* tooltip */
.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

    .tooltip .tooltip-text {
        visibility: hidden;
        background-color: #000;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px;
        position: absolute;
        z-index: 1;
        bottom: 125%;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
        transition: opacity 0.3s;
        width: max-content;
    }

        .tooltip .tooltip-text::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #000 transparent transparent transparent;
        }

    .tooltip:hover .tooltip-text {
        visibility: visible;
        opacity: 1;
    }


/* animation */
.space-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.star {
    content: url(https://localhost:44357/Content/images/cblogo.png);
    height: 100px;
    width: 100px;
    position: absolute;
    background: transparent;
    border-radius: 0%;
    animation: twinkle var(--duration) ease-in-out infinite;
    opacity: 0;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0;
    }

    50% {
        opacity: 0.2;
    }
}

.ufo-beam {
    animation: beam 2s ease-in-out infinite;
    transform-origin: top;
}

@keyframes beam {
    0%, 100% {
        transform: scaleY(0.8);
        opacity: 0.3;
    }

    50% {
        transform: scaleY(1.1);
        opacity: 0.7;
    }
}

.hidden-link {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.error-container:hover .hidden-link {
    opacity: 1;
}

.meteor {
    position: absolute;
    width: 2px;
    height: 2px;
    background: linear-gradient(45deg, #ffffff, transparent);
    animation: meteor 2s linear infinite;
    transform: rotate(45deg);
}

@keyframes meteor {
    0% {
        transform: translate(0, 0) rotate(45deg);
        opacity: 1;
    }

    100% {
        transform: translate(-100px, 100px) rotate(45deg);
        opacity: 0;
    }
}

.astronaut-wave {
    animation: wave 2s ease-in-out infinite;
    transform-origin: 70% 70%;
}

@keyframes wave {
    0%, 100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(20deg);
    }
}

.portal {
    animation: portal-spin 8s linear infinite;
}

@keyframes portal-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* loader css */

.containerxx {
    --uib-size: 150px;
    --uib-speed: 1.2s;
    --uib-dot-size: calc(var(--uib-size) * 0.1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: calc(var(--uib-size) * 0.64);
    width: calc(var(--uib-size) * 0.64);
}

@keyframes jump {
    0%, 100% {
        transform: translateY(120%);
    }

    50% {
        transform: translateY(-120%);
    }
}

.dot {
    --uib-d1: -0.48;
    --uib-d2: -0.4;
    --uib-d3: -0.32;
    --uib-d4: -0.24;
    --uib-d5: -0.16;
    --uib-d6: -0.08;
    --uib-d7: -0;
    position: absolute;
    bottom: calc(var(--uib-bottom) + var(--uib-dot-size) / 2);
    right: calc(var(--uib-right) + var(--uib-dot-size) / 2);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: var(--uib-dot-size);
    width: var(--uib-dot-size);
    animation: jump var(--uib-speed) ease-in-out infinite;
    opacity: var(--uib-scale);
    will-change: transform;
    backface-visibility: hidden;
}

    .dot::before {
        content: "";
        height: 100%;
        width: 100%;
        background-color: var(--uib-color);
        border-radius: 50%;
        transform: scale(var(--uib-scale));
        transition: background-color 0.3s ease;
    }

    .dot:nth-child(1) {
        --uib-bottom: 24%;
        --uib-right: -35%;
        animation-delay: calc(var(--uib-speed) * var(--uib-d1));
    }

    .dot:nth-child(2) {
        --uib-bottom: 16%;
        --uib-right: -6%;
        animation-delay: calc(var(--uib-speed) * var(--uib-d2));
    }

    .dot:nth-child(3) {
        --uib-bottom: 8%;
        --uib-right: 23%;
        animation-delay: calc(var(--uib-speed) * var(--uib-d3));
    }

    .dot:nth-child(4) {
        --uib-bottom: -1%;
        --uib-right: 51%;
        animation-delay: calc(var(--uib-speed) * var(--uib-d4));
    }

    .dot:nth-child(5) {
        --uib-bottom: 38%;
        --uib-right: -17.5%;
        animation-delay: calc(var(--uib-speed) * var(--uib-d2));
    }

    .dot:nth-child(6) {
        --uib-bottom: 30%;
        --uib-right: 10%;
        animation-delay: calc(var(--uib-speed) * var(--uib-d3));
    }

    .dot:nth-child(7) {
        --uib-bottom: 22%;
        --uib-right: 39%;
        animation-delay: calc(var(--uib-speed) * var(--uib-d4));
    }

    .dot:nth-child(8) {
        --uib-bottom: 14%;
        --uib-right: 67%;
        animation-delay: calc(var(--uib-speed) * var(--uib-d5));
    }

    .dot:nth-child(9) {
        --uib-bottom: 53%;
        --uib-right: -0.8%;
        animation-delay: calc(var(--uib-speed) * var(--uib-d3));
    }

    .dot:nth-child(10) {
        --uib-bottom: 44.5%;
        --uib-right: 27%;
        animation-delay: calc(var(--uib-speed) * var(--uib-d4));
    }

    .dot:nth-child(11) {
        --uib-bottom: 36%;
        --uib-right: 55.7%;
        animation-delay: calc(var(--uib-speed) * var(--uib-d5));
    }

    .dot:nth-child(12) {
        --uib-bottom: 28.7%;
        --uib-right: 84.3%;
        animation-delay: calc(var(--uib-speed) * var(--uib-d6));
    }

    .dot:nth-child(13) {
        --uib-bottom: 66.8%;
        --uib-right: 15%;
        animation-delay: calc(var(--uib-speed) * var(--uib-d4));
    }

    .dot:nth-child(14) {
        --uib-bottom: 58.8%;
        --uib-right: 43%;
        animation-delay: calc(var(--uib-speed) * var(--uib-d5));
    }

    .dot:nth-child(15) {
        --uib-bottom: 50%;
        --uib-right: 72%;
        animation-delay: calc(var(--uib-speed) * var(--uib-d6));
    }

    .dot:nth-child(16) {
        --uib-bottom: 42%;
        --uib-right: 100%;
        animation-delay: calc(var(--uib-speed) * var(--uib-d7));
    }

    .dot:nth-child(3) {
        --uib-scale: 0.98;
    }

    .dot:nth-child(2),
    .dot:nth-child(8) {
        --uib-scale: 0.96;
    }

    .dot:nth-child(1),
    .dot:nth-child(7) {
        --uib-scale: 0.94;
    }

    .dot:nth-child(6),
    .dot:nth-child(12) {
        --uib-scale: 0.92;
    }

    .dot:nth-child(5),
    .dot:nth-child(11) {
        --uib-scale: 0.9;
    }

    .dot:nth-child(10),
    .dot:nth-child(16) {
        --uib-scale: 0.88;
    }

    .dot:nth-child(9),
    .dot:nth-child(15) {
        --uib-scale: 0.86;
    }

    .dot:nth-child(14) {
        --uib-scale: 0.84;
    }

    .dot:nth-child(13) {
        --uib-scale: 0.82;
    }

    .dot:nth-child(1) {
        --uib-color: #408fe9;
    }

    .dot:nth-child(2) {
        --uib-color: #408fe9;
    }

    .dot:nth-child(3) {
        --uib-color: #408fe9;
    }

    .dot:nth-child(4) {
        --uib-color: #408fe9;
    }

    .dot:nth-child(5) {
        --uib-color: #408fe9;
    }

    .dot:nth-child(6) {
        --uib-color: #408fe9;
    }

    .dot:nth-child(7) {
        --uib-color: #408fe9;
    }

    .dot:nth-child(8) {
        --uib-color: #408fe9;
    }

    .dot:nth-child(9) {
        --uib-color: #e9f35b;
    }

    .dot:nth-child(10) {
        --uib-color: #e9f35b;
    }

    .dot:nth-child(11) {
        --uib-color: #e9f35b;
    }

    .dot:nth-child(12) {
        --uib-color: #e9f35b;
    }

    .dot:nth-child(13) {
        --uib-color: #e9f35b;
    }

    .dot:nth-child(14) {
        --uib-color: #e9f35b;
    }

    .dot:nth-child(15) {
        --uib-color: #e9f35b;
    }

    .dot:nth-child(16) {
        --uib-color: #e9f35b;
    }
