/**
 * @version     CVS: 2.0.0
 * @package     com_normas
 * @subpackage  mod_assets
 * @copyright   2021 Intercode
 * @license     GNU General Public License versão 2 ou posterior; consulte o arquivo License. txt
 * @author      Rogerio Brito <rogerio.brito@intercode.com.br>
 */
/* Loader background */
.loading {
    width: 100%;
    height: 100%;
    background-color: rgba(204, 204, 204, .98);
    /* background-color: rgba(13, 16, 21, .8); */
    /*background-color: rgba(255, 255, 255, .99);*/
    position: fixed;
    /*border: 1px solid red;*/
    z-index: 2000000000;
    display: flex;
    align-items: center;
    /*visibility: hidden;*/
    top: 0;
    left: 0;
}

.await {
    width: 180px;
    height: auto;
    padding: 5px;
    /* border: 1px solid black; */
    margin: auto;
    /* display: block; */
    /* align-items: center; */
    top: 38vh;
    /* left: 43%; */
    font-weight: bolder;
    /* position: absolute; */
}

/* Animated ellipsis*/
.animated-ellipsis {
    /* width: 20%; */
    height: 100px;
    margin: auto;
    /* top: 40vh; */
    /*left: 40%;*/
    text-align: center;
    /*display: flex;*/
    align-items: center;
    /*border: 3px solid black;*/
    position: relative;
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    /*left:  40px;*/
    width: 80px;
    height: 80px;
}

.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    /* background: #fff; */
    background: rgba(247, 79, 96, 1);
    /*background: #403340;*/
    /* animation-timing-function: cubic-bezier(0, 1, 1, 0); */
    -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    /* animation: lds-ellipsis1 0.6s infinite; */
    -webkit-animation: lds-ellipsis1 0.6s infinite;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    /* animation: lds-ellipsis2 0.6s infinite; */
    -webkit-animation: lds-ellipsis2 0.6s infinite;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    /* animation: lds-ellipsis2 0.6s infinite; */
    -webkit-animation: lds-ellipsis2 0.6s infinite;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    /* animation: lds-ellipsis3 0.6s infinite; */
    -webkit-animation: lds-ellipsis3 0.6s infinite;
    animation: lds-ellipsis3 0.6s infinite;
}

/* Internal loader of items */
.loading-items {
    width: 100%;
    /*height: auto;*/
    background-color: transparent;
    position: relative;
    z-index: 9999;
    /* display: none; */
    /*align-items: center;*/
    margin-bottom: 50px;
    margin-right: auto;
    margin-left: auto;
    /*visibility: hidden;*/
}

.loading-animated-ellipsis {
    /*width: 20%;*/
    /*height: 100px;*/
    /*margin: auto;*/
    /*top: 40vh;*/
    /*left: 40%;*/
    /*text-align: center;*/
    display: flex;
    /*display: block;*/
    align-items: center;
    /*border: 3px solid black;*/
    position: relative;
}

.loading-lds-ellipsis {
    display: inline-block;
    /* display: none; */
    position: relative;
    /*left:  40px;*/
    width: 40px;
    height: 40px;
    margin: auto;
    /*border: 2px solid black;*/
}

.loading-lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: rgb(60, 156, 169);
    -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.loading-lds-ellipsis div:nth-child(1) {
    left: 8px;
    -webkit-animation: loading-lds-ellipsis1 0.6s infinite;
    animation: loading-lds-ellipsis1 0.6s infinite;
}

.loading-lds-ellipsis div:nth-child(2) {
    left: 8px;
    -webkit-animation: loading-lds-ellipsis2 0.6s infinite;
    animation: loading-lds-ellipsis2 0.6s infinite;
}

.loading-lds-ellipsis div:nth-child(3) {
    left: 32px;
    -webkit-animation: loading-lds-ellipsis2 0.6s infinite;
    animation: loading-lds-ellipsis2 0.6s infinite;
}

.loading-lds-ellipsis div:nth-child(4) {
    left: 56px;
    -webkit-animation: loading-lds-ellipsis3 0.6s infinite;
    animation: loading-lds-ellipsis3 0.6s infinite;
}

@-webkit-keyframes loading-lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes loading-lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes loading-lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes loading-lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@-webkit-keyframes loading-lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}

@keyframes loading-lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}

#toasts {
    position: fixed;
    right: 20px;
    flex-direction: column;
    align-items: flex-end;
    bottom: 5rem;
    width: 350px;
    z-index: 10022;
}

.item-toast {
    background-color: #fff;
    padding: 1.8rem 1.7rem 1.5rem 1.7rem;
    border-radius: 5px;
    margin: 0.5rem;
    position: relative;
    font-weight: 600;
    font-size: 0.8rem;
}

.item-toast a {
    color: var(--dark-blue-variant);
}

.close-toast {
    position: absolute;
    right: 15px;
    top: 6px;
    cursor: pointer;
}

.view-notification {
    cursor: pointer;
}
