/**
 * Loading.css
 *
 * - LOADING PAGE
 */

:root {
    --bg-white: #FFFFFF;
    --bg-modal: rgb(27, 26, 23, 0.9);
}

/*------------------------------------*\
                  SECCION: LOADING PAGE
  \*------------------------------------*/
.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(--bg-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;
}