:root {
    --ds-danger-200: #ff0a54;
    --ds-danger-200-rgb: 255, 10, 84;
    --ds-success-200: #07beb8;
    --ds-success-200-rgb: 7, 190, 184;
    --ds-warning-200: #ffaa00;
    --ds-warning-200-rgb: 255, 170, 0;
    --ds-info-200: #49a6d4;
    --ds-info-200-rgb: 73, 166, 212;
    --bg-modal: rgb(27, 26, 23, 0.9);

    --ds-red: #ef233c;
    --ds-blue: #013A63;
    --ds-blue-rgb: 1, 58, 99;
    --ds-yellow: #ffe94e;
    --ds-yellow-rgb: 255, 233, 78;
    --ds-green: #73E2A7;
    --ds-green-rgb: 115, 226, 167;

    --ds-blue-theme: var(--ds-blue);
    --ds-blue-theme-rgb: var(--ds-blue-rgb);

    --ds-font: "Inter";

    --ds-white: #fff;
    --ds-white-rgb: 255, 255, 255;
    --ds-light: var(--ds-white);
    --ds-light-rgb: var(--ds-white-rgb);
    --ds-black: #252627;
    --ds-black-rgb: 37, 38, 39;
    --ds-dark: var(--ds-black);
    --ds-dark-rgb: var(--ds-black-rgb);
    --ds-color-theme: "Light";
    --ds-theme-value: 0;
    --ds-light-opacity: 1;
    --ds-border-dark: 0px;

    --ds-star: var(--ds-blue);
    --ds-star-rgb: var(--ds-blue-rgb);
    --ds-alt: var(--ds-blue);
    --ds-alt-rgb: var(--ds-blue-rgb);

    --ds-shadow-system: 0 0 24px rgba(var(--ds-dark-rgb), .4);

    --ds-Celeste: #00f3ff;
}

*,
::after,
::before {
    box-sizing: border-box;
}

body,
html {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    margin: 0;
    scroll-behavior: smooth;
    background-color: var(--ds-light);
    transition: background-color .2s ease-in; 
}

/**
 * ----------------------------------------
 * COLORS
 * ----------------------------------------
 */
.ds-blue {
    color: var(--ds-blue) !important
}

.ds-blue-bg {
    background-color: var(--ds-blue) !important
}

.ds-yellow {
    color: var(--ds-yellow) !important
}

.ds-yellow-bg {
    background-color: var(--ds-yellow) !important
}

.ds-green {
    color: var(--ds-green) !important
}

.ds-green-bg {
    background-color: var(--ds-green) !important
}

.ds-blue-theme {
    color: var(--ds-blue-theme) !important
}

.ds-blue-theme-bg {
    background-color: var(--ds-blue-theme) !important
}

.ds-star {
    color: var(--ds-star) !important
}

.ds-star-bg {
    background-color: var(--ds-star) !important
}

.ds-alt {
    color: var(--ds-alt) !important
}

.ds-alt-bg {
    background-color: var(--ds-alt) !important
}

.ds-white {
    color: var(--ds-white) !important
}

.ds-white-bg {
    background-color: var(--ds-white) !important
}

.ds-black {
    color: var(--ds-black) !important
}

.ds-black-bg {
    background-color: var(--ds-black) !important
}

.ds-dark {
    color: var(--ds-dark) !important
}

.ds-dark-bg {
    background-color: var(--ds-dark) !important
}

.ds-light {
    color: var(--ds-light) !important
}

.ds-light-bg {
    background-color: var(--ds-light) !important
}

/**
 * ----------------------------------------
 * TEXT
 * ----------------------------------------
 */
.ds-text {
    word-wrap: break-word !important;
    word-break: break-word !important;
    font-family: var(--ds-font);
    font-size: 16px;
    color: var(--ds-dark);
    margin: 5px;
}

.ds-footer-alert button,
.ds-footer-alert span {
    margin: 0;
    padding: 0;
    font-family: var(--ds-font);
    color: var(--ds-dark);
    text-decoration: none;
    font-weight: 400
}

/**
 * ----------------------------------------
 * ANIMATIONS
 * ----------------------------------------
 */
.fade-in-top {
    -webkit-animation: fade-in-top .6s cubic-bezier(.39, .575, .565, 1) both;
    animation: fade-in-top .6s cubic-bezier(.39, .575, .565, 1) both
}

@-webkit-keyframes fade-in-top {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes fade-in-top {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

.fade-in-bottom {
    -webkit-animation: fade-in-bottom .6s cubic-bezier(.39, .575, .565, 1) both;
    animation: fade-in-bottom .6s cubic-bezier(.39, .575, .565, 1) both
}

@-webkit-keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

.fade-in-left {
    -webkit-animation: fade-in-left .6s cubic-bezier(.39, .575, .565, 1) both;
    animation: fade-in-left .6s cubic-bezier(.39, .575, .565, 1) both
}

@-webkit-keyframes fade-in-left {
    0% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1
    }
}

@keyframes fade-in-left {
    0% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1
    }
}

.fade-in-right {
    -webkit-animation: fade-in-right .6s cubic-bezier(.39, .575, .565, 1) both;
    animation: fade-in-right .6s cubic-bezier(.39, .575, .565, 1) both
}

@-webkit-keyframes fade-in-right {
    0% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1
    }
}

@keyframes fade-in-right {
    0% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1
    }
}

.fade-in-fwd {
    -webkit-animation: fade-in-fwd .6s cubic-bezier(.39, .575, .565, 1.000) both;
    animation: fade-in-fwd .6s cubic-bezier(.39, .575, .565, 1.000) both
}

@-webkit-keyframes fade-in-fwd {
    0% {
        -webkit-transform: translateZ(-80px);
        transform: translateZ(-80px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes fade-in-fwd {
    0% {
        -webkit-transform: translateZ(-80px);
        transform: translateZ(-80px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

.fade-out-top {
    -webkit-animation: fade-out-top .7s cubic-bezier(.25, .46, .45, .94) both;
    animation: fade-out-top .7s cubic-bezier(.25, .46, .45, .94) both
}

.fade-out-bottom {
    -webkit-animation: fade-out-bottom .7s cubic-bezier(.25, .46, .45, .94) both;
    animation: fade-out-bottom .7s cubic-bezier(.25, .46, .45, .94) both
}

.fade-out-bottom {
    -webkit-animation: fade-out-bottom .7s cubic-bezier(.25, .46, .45, .94) both;
    animation: fade-out-bottom .7s cubic-bezier(.25, .46, .45, .94) both
}

@-webkit-keyframes fade-out-bottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }

    100% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0
    }
}

@keyframes fade-out-bottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }

    100% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0
    }
}

.fade-out-left {
    -webkit-animation: fade-out-left .7s cubic-bezier(.25, .46, .45, .94) both;
    animation: fade-out-left .7s cubic-bezier(.25, .46, .45, .94) both
}

@-webkit-keyframes fade-out-left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
        opacity: 0
    }
}

@keyframes fade-out-left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
        opacity: 0
    }
}

.fade-out-right {
    -webkit-animation: fade-out-right .7s cubic-bezier(.25, .46, .45, .94) both;
    animation: fade-out-right .7s cubic-bezier(.25, .46, .45, .94) both
}

@-webkit-keyframes fade-out-right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
        opacity: 0
    }
}

@keyframes fade-out-right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
        opacity: 0
    }
}

.fade-out-fwd {
    -webkit-animation: fade-out-fwd .7s cubic-bezier(.25, .46, .45, .94) both;
    animation: fade-out-fwd .7s cubic-bezier(.25, .46, .45, .94) both
}

@-webkit-keyframes fade-out-fwd {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }

    100% {
        -webkit-transform: translateZ(80px);
        transform: translateZ(80px);
        opacity: 0
    }
}

@keyframes fade-out-fwd {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }

    100% {
        -webkit-transform: translateZ(80px);
        transform: translateZ(80px);
        opacity: 0
    }
}

.bounce-in-fwd {
    -webkit-animation: bounce-in-fwd 1.1s both;
    animation: bounce-in-fwd 1.1s both
}

@-webkit-keyframes bounce-in-fwd {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    38% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1
    }

    55% {
        -webkit-transform: scale(.7);
        transform: scale(.7);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    72% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    81% {
        -webkit-transform: scale(.84);
        transform: scale(.84);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    89% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    95% {
        -webkit-transform: scale(.95);
        transform: scale(.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

@keyframes bounce-in-fwd {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    38% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1
    }

    55% {
        -webkit-transform: scale(.7);
        transform: scale(.7);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    72% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    81% {
        -webkit-transform: scale(.84);
        transform: scale(.84);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    89% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    95% {
        -webkit-transform: scale(.95);
        transform: scale(.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

.bounce-in-bck {
    -webkit-animation: bounce-in-bck 1.1s both;
    animation: bounce-in-bck 1.1s both
}

@-webkit-keyframes bounce-in-bck {
    0% {
        -webkit-transform: scale(7);
        transform: scale(7);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    38% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1
    }

    55% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    72% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    81% {
        -webkit-transform: scale(1.24);
        transform: scale(1.24);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    89% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    95% {
        -webkit-transform: scale(1.04);
        transform: scale(1.04);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

@keyframes bounce-in-bck {
    0% {
        -webkit-transform: scale(7);
        transform: scale(7);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    38% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1
    }

    55% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    72% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    81% {
        -webkit-transform: scale(1.24);
        transform: scale(1.24);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    89% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    95% {
        -webkit-transform: scale(1.04);
        transform: scale(1.04);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

.bounce-in-top {
    -webkit-animation: bounce-in-top 1.1s both;
    animation: bounce-in-top 1.1s both
}

@-webkit-keyframes bounce-in-top {
    0% {
        -webkit-transform: translateY(-500px);
        transform: translateY(-500px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    38% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1
    }

    55% {
        -webkit-transform: translateY(-65px);
        transform: translateY(-65px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    72% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    81% {
        -webkit-transform: translateY(-28px);
        transform: translateY(-28px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    90% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    95% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

@keyframes bounce-in-top {
    0% {
        -webkit-transform: translateY(-500px);
        transform: translateY(-500px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    38% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1
    }

    55% {
        -webkit-transform: translateY(-65px);
        transform: translateY(-65px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    72% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    81% {
        -webkit-transform: translateY(-28px);
        transform: translateY(-28px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    90% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    95% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

.swing-in-top-bck {
    -webkit-animation: swing-in-top-bck .6s cubic-bezier(.175, .885, .32, 1.275) both;
    animation: swing-in-top-bck .6s cubic-bezier(.175, .885, .32, 1.275) both
}

@-webkit-keyframes swing-in-top-bck {
    0% {
        -webkit-transform: rotateX(70deg);
        transform: rotateX(70deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 0
    }

    100% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 1
    }
}

@keyframes swing-in-top-bck {
    0% {
        -webkit-transform: rotateX(70deg);
        transform: rotateX(70deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 0
    }

    100% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 1
    }
}

.swing-in-top-fwd {
    -webkit-animation: swing-in-top-fwd .5s cubic-bezier(.175, .885, .32, 1.275) both;
    animation: swing-in-top-fwd .5s cubic-bezier(.175, .885, .32, 1.275) both
}

@-webkit-keyframes swing-in-top-fwd {
    0% {
        -webkit-transform: rotateX(-100deg);
        transform: rotateX(-100deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 0
    }

    100% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 1
    }
}

@keyframes swing-in-top-fwd {
    0% {
        -webkit-transform: rotateX(-100deg);
        transform: rotateX(-100deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 0
    }

    100% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 1
    }
}

.bounce-top {
    -webkit-animation: bounce-top .9s both;
    animation: bounce-top .9s both
}

.bounce-top {
    -webkit-animation: bounce-top .9s both;
    animation: bounce-top .9s both
}

@-webkit-keyframes bounce-top {
    0% {
        -webkit-transform: translateY(-45px);
        transform: translateY(-45px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 1
    }

    24% {
        opacity: 1
    }

    40% {
        -webkit-transform: translateY(-24px);
        transform: translateY(-24px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    65% {
        -webkit-transform: translateY(-12px);
        transform: translateY(-12px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    82% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    93% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    25%,
    55%,
    75%,
    87% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1
    }
}

@keyframes bounce-top {
    0% {
        -webkit-transform: translateY(-45px);
        transform: translateY(-45px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 1
    }

    24% {
        opacity: 1
    }

    40% {
        -webkit-transform: translateY(-24px);
        transform: translateY(-24px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    65% {
        -webkit-transform: translateY(-12px);
        transform: translateY(-12px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    82% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    93% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    25%,
    55%,
    75%,
    87% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1
    }
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.ds-animation-spin {
    -webkit-animation-name: fa-spin;
    animation-name: fa-spin;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear
}

.ds-time {
    animation-duration: 1s !important
}

.ds-time-infinite {
    animation-iteration-count: infinite !important
}

.ds-time-xxs {
    animation-duration: 150ms !important
}

.ds-time-xs {
    animation-duration: .3s !important
}

.ds-time-sm {
    animation-duration: .6s !important
}

.ds-time-md {
    animation-duration: .9s !important
}

.ds-time-lg {
    animation-duration: 1.2s !important
}

.ds-time-xl {
    animation-duration: 3s !important
}

.ds-time-xxl {
    animation-duration: 5s !important
}

.ds-delay-time {
    animation-delay: 1s !important
}

.ds-delay-time-xxs {
    animation-delay: 150ms !important
}

.ds-delay-time-xs {
    animation-delay: .3s !important
}

.ds-delay-time-sm {
    animation-delay: .6s !important
}

.ds-delay-time-md {
    animation-delay: .9s !important
}

.ds-delay-time-lg {
    animation-delay: 1.2s !important
}

.ds-delay-time-xl {
    animation-delay: 3s !important
}

.ds-delay-time-xxl {
    animation-delay: 5s !important
}

@keyframes ds-animation-float {
    0% {
        box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .6);
        transform: translatey(0)
    }

    50% {
        box-shadow: 0 25px 15px 0 rgba(0, 0, 0, .2);
        transform: translatey(-20px)
    }

    100% {
        box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .6);
        transform: translatey(0)
    }
}


/**
 * ----------------------------------------
 * ALERTS
 * ----------------------------------------
 */
.ds-alert-container {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 8020
}

.ds-alert-app {
    --kpa-min-height: 96px;
    width: 520px;
    min-height: var(--kpa-min-height);
    border-radius: 8px;
    margin: 16px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    background-color: rgba(var(--ds-light-rgb), .7);
    backdrop-filter: blur(2rem);
    -webkit-backdrop-filter: blur(2rem);
    box-shadow: 0 0 1rem rgba(0, 0, 0, .1);
    border-radius: 3px;
    overflow: hidden
}

.ds-alert-icono {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center
}

.ds-alert-icono .ds-icono {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    color: var(--ds-danger-200) !important
}

.ds-body-alert {
    width: 0;
    flex: 1;
    display: flex;
    align-items: center
}

.ds-body-alert>code {
    font-family: var(--ds-font);
    font-size: .9rem;
    line-height: 1.2rem
}

.ds-footer-alert {
    width: auto;
    display: flex;
    margin-left: auto;
    min-height: var(--kpa-min-height);
    align-items: flex-start
}

.ds-close-alert {
    background-color: var(--ds-danger-200);
    width: auto;
    height: auto;
    cursor: pointer;
    border: 0;
    border-radius: 4px;
    color: var(--ds-white);
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--ds-font);
    font-size: .8rem
}

.ds-timer-alert {
    width: 0%;
    height: 1px;
    background-color: var(--ds-danger-200);
    position: absolute;
    bottom: 0;
    left: 0;
    animation: ds-timer-alert 5s linear
}

@keyframes ds-timer-alert {
    to {
        width: 100%
    }
}

.ds-alert-app.ds-alert-success .ds-alert-icono .ds-icono {
    color: var(--ds-success-200) !important
}

.ds-alert-app.ds-alert-success .ds-timer-alert {
    background-color: var(--ds-success-200) !important
}

.ds-alert-app.ds-alert-success .ds-close-alert {
    background-color: var(--ds-success-200) !important
}

.ds-alert-app.ds-alert-warning .ds-alert-icono .ds-icono {
    color: var(--ds-warning-200) !important
}

.ds-alert-app.ds-alert-warning .ds-timer-alert {
    background-color: var(--ds-warning-200) !important
}

.ds-alert-app.ds-alert-warning .ds-close-alert {
    background-color: var(--ds-warning-200) !important
}

.ds-alert-app.ds-alert-info .ds-alert-icono .ds-icono {
    color: var(--ds-info-200) !important
}

.ds-alert-app.ds-alert-info .ds-timer-alert {
    background-color: var(--ds-info-200) !important
}

.ds-alert-app.ds-alert-info .ds-close-alert {
    background-color: var(--ds-info-200) !important
}

@media (max-width: 575.98px) {
    .ds-alert-app {
        width: 300px
    }

    .ds-body-alert {
        font-size: .7rem
    }

    .ds-alert-app .ds-close-alert,
    .ds-alert-app .ds-close-alert .ds-icono {
        width: 32px;
        height: 32px
    }

    .ds-footer-alert {
        padding-right: 6px
    }

    .ds-alert-icono {
        width: 32px;
        height: 32px
    }

    .ds-alert-icono .ds-icono {
        width: 100%;
        height: 100%;
        font-size: .9rem
    }
}

@media (max-width: 330px) {
    .ds-alert-app {
        width: 220px;
    }
}


/**
 * ----------------------------------------
 * MODAL DE CARGA
 * ----------------------------------------
 */
.loading-page {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-page::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: var(--bg-modal);
}

.icon--loading {
    position: relative;
    width: 50%;
    max-width: 20rem;
    height: 50%;
    max-height: 20rem;
    color: var(--ds-white);
}

.layer--front,
.k--front,
.layer--back,
.k--back {
    position: absolute;
}

.oculto {
    display: none !important;
}

#BackLayer {
    -webkit-animation: rotate-center 5s linear reverse infinite;
    animation: rotate-center 5s reverse linear infinite;
}

#FrontLayer {
    -webkit-animation: rotate-center 2s linear infinite;
    animation: rotate-center 2s linear infinite;
}

@-webkit-keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.lkr-toast-container {
    overflow: hidden !important;
}

.lkr-toast {
    border-radius: 80px;
    max-height: 200px;
    padding: 3px 12px !important;
}

.lkr-toast-title {
    color: rgb(0 0 0/0.8);
    font-weight: 500;
    font-size: 16px !important;
    text-align: center !important;
}


/**
 * ----------------------------------------
 * MODAL
 * ----------------------------------------
 */
.ModalXook {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-modal);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;

    /* Por defecto oculto */
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;

    overflow-y: auto;
}

.ModalXook.activo {
    visibility: visible;
    opacity: 1;
}

.ModalContenido {
    background: white;
    padding: 30px;
    border-radius: 10px !important;
    width: auto !important;
    text-align: center;
    box-shadow: 0 0 80px var(--ds-light);
    margin: 20px !important;
    min-width: 500px !important;
}

@media (max-width: 550px) {
    .ModalContenido {
        min-width: auto !important;
    }
}

.BtnCerrarModal {
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    height: 30px;
    border: 2px solid var(--ds-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 5px;
    z-index: 2;
    background: var(--ds-light);
}

.BtnCerrarModal i {
    color: var(--ds-red);
}

.BtnsAccionModal {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.BtnsAccionModal button {
    background-image: linear-gradient(to right, var(--ds-blue), #00638a, #008ea3, #00b9ab, var(--ds-green));
    background-color: var(--ds-star);
    color: var(--ds-white);
    height: 30px;
    width: 100px;
    border-radius: 9px;
    outline: 0;
    border: 0;
    font-size: 14px;
    cursor: pointer;
    transition: all .3s ease;
    margin: 5px 10px;
}

.BtnOpcRed {
    background-image: linear-gradient(to right, #8a0000, #a30000, #b90000, var(--ds-red)) !important;
}

.linkNotificacion {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}

/**
 * ----------------------------------------
 * ICONOS
 * ----------------------------------------
 */
.ds-icono {
    width: 48px;
    height: 48px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    font-size: 1.25rem;
    overflow: hidden;
    position: relative
}

.ds-icono svg {
    width: 100%;
    transform-origin: center;
    fill: currentColor;
    display: inline-block;
    font-size: inherit;
    height: 1em;
    overflow: visible;
    vertical-align: -.125em
}

.ds-icono.ds-xxs {
    width: 24px;
    height: 24px;
    font-size: .75rem
}

.ds-icono.ds-xs {
    width: 32px;
    height: 32px;
    font-size: 1rem
}

.ds-icono.ds-sm {
    width: 56px;
    height: 56px;
    font-size: 1.5rem
}

.ds-icono.ds-md {
    width: 64px;
    height: 64px;
    font-size: 2.5rem
}

.ds-icono.ds-lg {
    width: 96px;
    height: 96px;
    font-size: 3.5rem
}

.ds-icono.ds-xl {
    width: 128px;
    height: 128px;
    font-size: 5rem
}

.ds-icono.ds-xxl {
    width: 256px;
    height: 256px;
    font-size: 10rem
}

.ds-icono img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.ds-object-contain {
    object-fit: contain !important
}

.ds-circle {
    border-radius: 50%
}

.ds-icono.ds-circle,
.ds-icono.ds-circle img {
    border-radius: 50%
}

.ds-ring {
    box-shadow: 0 0 0 4px
}

.ds-gradient-icono svg {
    fill: url('#kmk-gradient-color')
}

.ds-gradient-orange-icono svg {
    fill: url('#kmk-gradient-orange-color') !important
}

.ds-gradient-text {
    background: -webkit-linear-gradient(45deg, var(--ds-star), var(--ds-alt));
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.ds-white svg {
    fill: currentColor !important
}

.ds-light-icono {
    color: rgba(var(--ds-dark-rgb), .2) !important
}

.ds-icons-header-selected {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 320px
}

.ds-lista-icons-system .ds-item {
    position: relative;
    z-index: 1;
    margin: 4px;
    border: 1px rgba(var(--ds-dark-rgb), .3) dashed
}

.ds-lista-icons-system .ds-icono {
    cursor: pointer
}

.ds-icono.ds-gradient-app svg {
    fill: url('#kmk-gradient-app');
}

/**
 * ----------------------------------------
 * LISTAS
 * ----------------------------------------
 */
.ds-lista-items {
    list-style: none;
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    overflow: visible
}

.ds-lista-items .ds-item {
    position: relative;
    display: flex;
    flex-direction: column
}

.ds-lista-items .ds-link {
    font-family: var(--ds-font);
    align-items: center
}

.ds-lista-items .ds-link {
    text-decoration: none;
    color: rgba(var(--ds-dark-rgb), .8);
    display: inline-flex;
    font-size: 16px;
    margin: 0;
    padding: 3px 18px
}

.ds-options-sidebar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../IMAGENES/FondoUtiles.png);
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.1;
}


/**
 * ----------------------------------------
 * APP
 * SYSTEM
 * ----------------------------------------
 */
.ds-spacer-h {
    height: 0;
    flex: 1
}

.ds-system-box {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    --height-topbar: 88px;
    /* --width-sidebar: 292px; */
    --width-sidebar: 240px;
    overflow: hidden
}

.ds-main-box-system {
    width: 100%;
    height: 0;
    display: flex;
    position: relative;
    z-index: 1;
    flex: 1;
    overflow: hidden;
}

.ds-main-view-system {
    width: 100%;
    position: relative;
    z-index: 1;
    /* padding: 12px 16px; */
    padding: 0 16px;
    height: 100%;
    flex: 1;
    overflow-y: auto;
}

.ds-lista-path {
    flex-direction: row;
    align-items: center;
    position: relative;
    z-index: 0;
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-top: 16px;
}



.ds-lista-path .ds-link {
    min-width: 96px;
    height: 40px;
    position: relative;
    z-index: 0;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    justify-content: center;
    font-size: .825rem;
    color: var(--ds-dark);
    text-transform: uppercase;
}

.ds-lista-path .ds-link.ds-active {
    color: var(--ds-green);
}

.ds-lista-path .ds-item:not(:last-child) .ds-link::after {
    content: '/';
    color: var(--ds-green);
    font-family: var(--ds-font);
    font-weight: 600;
    font-size: 1rem;
    position: absolute;
    right: 0;
}

.ds-header-text {
    display: flex;
    flex-direction: column
}

.ds-title-header-sys {
    font-size: 1.5rem;
    font-weight: 400
}

.ds-subtitle-header-sys {
    font-size: .9rem
}

.ds-gradient-path,
.ds-gradient-path::before {
    position: fixed;
    bottom: 0;
    right: 0;
    width: calc(100% - var(--width-sidebar));
    height: 100%;
    z-index: -1;
    overflow: hidden;
    transition: all .3s cubic-bezier(0.18, 0.89, 0.32, 1.28)
}

.ds-gradient-path::before {
    content: '';
    width: 64px;
    height: 64px;
    position: absolute;
    inset: 0;
    margin: auto;
    background-image: linear-gradient(rgba(var(--ds-star-rgb), .15), var(--ds-star), var(--ds-alt), transparent, transparent);
    transform: scale(24);
    opacity: .1
}

@media (max-width: 575.98px) {
    .ds-lista-path .ds-link {
        padding: 4px 12px;
        font-size: .7rem;
        height: auto;
        min-width: unset
    }

    .ds-lista-path .ds-item:not(:last-child) {
        display: none
    }

    #ButtonToggleTheme:not(.ds-item-theme) {
        display: none
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .ds-lista-path .ds-link {
        padding: 4px 12px;
        font-size: .7rem;
        height: auto;
        min-width: unset
    }
}

/**
 * ----------------------------------------
 * TOPBAR
 * ----------------------------------------
 */
.ds-topbar-system {
    --ht: 96px;
    --br: 12px;
    --mt: 12px;
    width: 100%;
    display: flex;
    padding: 0 12px;
    margin: 0;
    background-color: var(--ds-white);
    flex-direction: column;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 3020;
    flex-wrap: wrap;
    min-height: var(--ht);
    overflow: hidden;
    --aph: .9275;
    --gb: linear-gradient(rgba(var(--ds-blue-rgb), var(--aph)), rgba(var(--ds-blue-rgb), var(--aph)));
    border-radius: var(--br);
    box-shadow: var(--ds-shadow-system);

    align-items: center;
}

.ds-topbar-system.ds-locked {
    pointer-events: none;
    opacity: .2
}

.ds-topbar-system::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../IMAGENES/FondoUtiles.png);
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.1;
}

.ds-topbar-options {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--ds-dark);
    margin: 6px;
    border-radius: 9px;
    box-shadow: 0 0 4px rgba(var(--ds-black-rgb), .2);
    padding: 7px;
    position: relative;
    border: var(--ds-border-dark) rgba(var(--ds-white-rgb), .3) solid;
    justify-content: center;
    background-color: var(--ds-light);
    margin-left: auto;
    z-index: 4021;
    height: 56px;
    order: 3
}

.ds-topbar-ground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: inherit;
    overflow: hidden
}

.ds-topbar-ground::before {
    content: '';
    width: 32px;
    height: 28px;
    clip-path: var(--atom-path);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: scale(4);
    opacity: .1;
    transform-origin: top;
    background-image: linear-gradient(var(--ds-star), var(--ds-star), var(--ds-alt), transparent, transparent, transparent);
    outline: 0;
    transition: all .3s ease;
    z-index: -1
}

.ds-topbar-options .ds-icono {
    width: 32px;
    height: 32px;
    user-select: none
}

.ds-user-topbar {
    color: var(--ds-dark);
    font-weight: 400;
    font-family: var(--ds-font);
    font-size: 1rem;
    margin: 9px;
    max-width: 172px;
    word-break: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    user-select: none
}


.ds-topsys-items,
.ds-middlesys-items {
    width: 100%;
    min-height: 48px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ds-middlesys-items {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    left: 0;
}


.ds-link[role="user-options"] {
    color: var(--ds-light);
    display: flex;
    align-items: center;
    width: 192px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.ds-link[role="user-options"] .ds-text {
    background-color: var(--ds-white);
    margin-left: 7px;
    padding: 0 6px;
    color: var(--ds-blue);
    font-weight: 700;
    border-radius: 4px;
}

.ds-link[role="user-options"] .ds-icono {
    width: 32px;
    height: 32px;
}

.ds-notificaciones-button {
    width: 40px;
    height: 40px;
    background-color: var(--ds-blue);
    border: 0;
    color: var(--ds-light);
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ds-canvas-topbar {
    height: calc(100% - 24px);
    background-color: var(--ds-light);
    position: fixed;
    z-index: 4020;
    top: 0;
    right: 0;
    box-shadow: 0 0 24px rgba(var(--ds-black-rgb), .1);
    padding: 24px;
    animation-duration: .2s;
    margin: 12px;
    border-radius: 12px;
    box-shadow: var(--ds-shadow-system);
}

.ds-canvas-topbar:not(.ds-active) {
    display: none;
}

.ds-canvas-title {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    padding: 0 16px;
    color: var(--ds-star);
    background: -webkit-linear-gradient(360deg, var(--ds-blue), #00638a, #008ea3, #00b9ab, var(--ds-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ds-lista-canvas {
    margin-top: 24px;
    flex-direction: column;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.ds-lista-canvas::before {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(90deg, transparent, var(--ds-dark), transparent);
    filter: blur(4px);
}

.ds-lista-canvas .ds-link {
    background: -webkit-linear-gradient(360deg, var(--ds-blue), #00638a, #008ea3, #00b9ab, var(--ds-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    height: 48px;
}

.ds-canvas-topbar .ds-link[role="user-profile"] {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
    padding: 12px;
    justify-content: space-around;
    align-items: center;
    min-height: 120px;
}

.ds-backdrop-canvas {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 4019;
    top: 0;
    left: 0;
    background-color: rgba(var(--ds-black-rgb), .4);
    animation: fade-in-fwd .4s cubic-bezier(.39, .575, .565, 1.000) both;
}

@media (min-width: 576px) and (max-width: 767.98px) {}

@media (max-width: 1199.98px) {}

@media (max-width: 575.98px) {}

@media (min-width: 576px) {}

/**
 * ----------------------------------------
 * SIDEBAR
 * ----------------------------------------
 */
.ds-sidebar-system {
    width: var(--width-sidebar);
    height: calc(100% - 24px);
    position: relative;
    z-index: 3;
    border: var(--ds-border-dark) rgba(var(--ds-white-rgb), .3) solid;
    transition: width .2s ease;
    display: flex;
    flex-direction: column;
    margin: 12px;
    margin-right: 0;
    box-shadow: var(--ds-shadow-system);
    border-radius: var(--brs);
    --brs: 12px;
}

.ds-sidebar-system.ds-locked {
    pointer-events: none;
    opacity: .2;
    z-index: 1
}

.ds-sidebar-system.ds-side-min {
    overflow: visible
}

.ds-brand-box {
    display: flex;
    align-items: center;
    padding: 0;
    cursor: pointer;
    color: var(--ds-white);
    width: var(--width-sidebar);
    position: relative;
    z-index: 2;
    justify-content: flex-start;
}

.ds-brand-name {
    font-family: var(--ds-font);
    font-size: 1.15rem;
    user-select: none;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--ds-green);
}

.ds-plantel-app {
    width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 12px;
    justify-content: center;
    margin-top: 15px;
    text-align: center;
}

.ds-plantel-app * {
    color: var(--ds-white);
}

.ds-plantel-app [data-text="title"] {
    font-size: 1.25rem;
    font-weight: 600;
    background: -webkit-linear-gradient(360deg, var(--ds-blue), #00638a, #008ea3, #00b9ab, var(--ds-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fade-in-bottom .3s cubic-bezier(.39, .575, .565, 1) both;
    font-family: var(--ds-font);
}

.ds-plantel-app [data-text="subtitle"] {
    font-size: .9725rem;
    color: var(--ds-blue);
    padding: 2px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-family: var(--ds-font);
}

.ds-bottomsys-items {
    width: 100%;
    height: 48px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.ds-sidebar-system.ds-side-min .ds-brand-box {
    justify-content: center;
}

.ds-sidebar-system.ds-side-min .ds-brand-name {
    display: none
}

.ds-sidebar-system.ds-side-min::before {
    display: none
}

.ds-sidebar-header {
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    z-index: 0;
    overflow: hidden;
    border-top-left-radius: var(--brs);
    border-top-right-radius: var(--brs);
    font-family: var(--ds-font);
}

.ds-sidebar-header::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--ds-star);
    z-index: -1;
    opacity: .825;
}

.ds-plantel-image {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    margin: auto;
    object-fit: cover;
    z-index: -2;
}

.ds-options-sidebar {
    width: 100%;
    flex-direction: column;
    height: 0;
    flex: 1;
    flex-wrap: nowrap;
    overflow-y: auto;
    padding: 16px 0;
}

.ds-options-sidebar .ds-link {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    margin: 0;
    transition: all .2s ease;
    position: relative;
    z-index: 0;
}

.ds-options-sidebar .ds-link>.ds-icono {
    width: 48px;
    height: 48px;
    transition: all .2s ease;
    position: relative;
    z-index: 1
}

.ds-options-sidebar .ds-link>.ds-icono>img {
    transform: scale(.7);
    box-shadow: 0 0 0 4px var(--ds-star)
}

.ds-options-sidebar .ds-link>.ds-text {
    padding: 0 8px;
    word-break: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-flex;
    white-space: nowrap;
    height: 24px;
    user-select: none;
    font-size: 1rem;
    width: 0;
    flex: 1;
    align-items: center;
    /* justify-content: center; */
    height: 41px;
    border-radius: 4px;
    margin-left: 12px;
    color: var(--ds-blue);
}

.ds-options-sidebar .ds-link:hover>.ds-icono {
    color: var(--ds-star);
}

.ds-options-sidebar .ds-link.ds-active {
    border-radius: 9px;
    background: -webkit-linear-gradient(360deg, var(--ds-blue), #00638a, #008ea3, #00b9ab, var(--ds-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.ds-sidebar-system.ds-side-min .ds-options-sidebar {
    align-items: center;
}

.ds-sidebar-system.ds-side-min .ds-options-sidebar .ds-link {
    padding: 0;
}

.ds-options-sidebar .ds-link .ds-icono-stack {
    border-radius: 50%;
    overflow: hidden;
}

.ds-options-sidebar .ds-link.ds-active .ds-icono-stack {
    box-shadow: inset 0 0 7px rgba(var(--ds-black-rgb), .3);
}

.ds-options-sidebar .ds-link.ds-active .ds-icono {
    color: var(--ds-blue);
    animation: fade-in-left .3s cubic-bezier(.39, .575, .565, 1) both;
}

.ds-options-sidebar .ds-link.ds-active [data-view="regular"] {
    display: none;
}

.ds-options-sidebar .ds-link:not(.ds-active) [data-view="solid"] {
    display: none;
}

.ds-options-sidebar .ds-link.ds-active>.ds-text {
    font-weight: 600;
    color: var(--ds-light);
}


.ds-options-sidebar .ds-link .ds-icono {
    width: 40px;
    height: 40px;
    font-size: .9rem;
}

.ds-sidebar-system.ds-side-min .ds-options-sidebar .ds-link>.ds-text {
    position: fixed;
    left: -248px;
    transition: all .2s ease;
    font-weight: 600;
    color: var(--ds-star);
    border-radius: 16px;
    background-color: var(--ds-dark);
    z-index: -1
}

.ds-sidebar-system.ds-side-min .ds-options-sidebar .ds-link>.ds-icono:hover+.ds-text {
    left: 80px
}

.ds-mt-auto {
    margin-top: auto !important
}



/**
 * ----------------------------------------
 * LOGOS
 * ----------------------------------------
 */

/* .IconoGorro {
    position: absolute;
    font-size: 150px;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--ds-green);
    opacity: 0.8;
    pointer-events: none;
}

.IconoBoock {
    position: absolute;
    font-size: 100px;
    left: 10px;
    color: var(--ds-Celeste);
    opacity: 0.8;
    pointer-events: none;
    transform: rotate(45deg);
    z-index: -1;
}

.IconoMobile {
    position: absolute;
    font-size: 100px;
    right: 10px;
    color: var(--ds-Celeste);
    opacity: 0.8;
    pointer-events: none;
    transform: rotate(-20deg);
    z-index: -1;
} */

/**
 * ----------------------------------------
 * BOTON TOOLTIP
 * ----------------------------------------
*/

.BtnTooltip {
    position: relative;
    display: inline-block;
}

.BtnTooltip .TextTooltip {
    visibility: hidden;
    width: max-content;
    background-color: var(--ds-blue);
    color: var(--ds-white);
    text-align: center;
    border-radius: 6px;
    padding: 5px 8px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    /* arriba del botón */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.BtnTooltip:hover .TextTooltip {
    visibility: visible;
    opacity: 1;
}

.TooltipAbajo {
    bottom: -125% !important;
}

.CerrarSesionModal{
    position: relative;
    border: 3px solid var(--ds-Celeste);
    z-index: 1;
}

.TituloSalida {
    font-size: 50px;
    font-weight: 600;
    background: -webkit-linear-gradient(360deg, var(--ds-blue), #00638a, #008ea3, #00b9ab, var(--ds-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fade-in-bottom .3s cubic-bezier(.39, .575, .565, 1) both;
    font-family: var(--ds-font);
}

.PeticionSalida {
    font-family: var(--ds-font);
    font-size: 18px;
    text-align: center;
    color: var(--ds-success-200);
}

.CerrarSesionModal::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../IMAGENES/Salida.png);
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.1;
}