/* SPINNER */
app-spinner {
    width: 100vw;
    height: 100vh;
}

app-spinner .spinner-container {
    width: 100vw;
    height: 100vh;
    background-color: rgb(255, 255, 255);
    position: fixed;
    z-index: 9000;
}

app-spinner .spinner-container>div {
    padding-top: 45vh;
}

.lds-default {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-default div {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgb(162, 162, 162);
    border-radius: 50%;
    animation: lds-default 1.2s linear infinite;
}

.lds-default div:nth-child(1) {
    animation-delay: 0s;
    top: 37px;
    left: 66px;
}

.lds-default div:nth-child(2) {
    animation-delay: -0.1s;
    top: 22px;
    left: 62px;
}

.lds-default div:nth-child(3) {
    animation-delay: -0.2s;
    top: 11px;
    left: 52px;
}

.lds-default div:nth-child(4) {
    animation-delay: -0.3s;
    top: 7px;
    left: 37px;
}

.lds-default div:nth-child(5) {
    animation-delay: -0.4s;
    top: 11px;
    left: 22px;
}

.lds-default div:nth-child(6) {
    animation-delay: -0.5s;
    top: 22px;
    left: 11px;
}

.lds-default div:nth-child(7) {
    animation-delay: -0.6s;
    top: 37px;
    left: 7px;
}

.lds-default div:nth-child(8) {
    animation-delay: -0.7s;
    top: 52px;
    left: 11px;
}

.lds-default div:nth-child(9) {
    animation-delay: -0.8s;
    top: 62px;
    left: 22px;
}

.lds-default div:nth-child(10) {
    animation-delay: -0.9s;
    top: 66px;
    left: 37px;
}

.lds-default div:nth-child(11) {
    animation-delay: -1s;
    top: 62px;
    left: 52px;
}

.lds-default div:nth-child(12) {
    animation-delay: -1.1s;
    top: 52px;
    left: 62px;
}

@keyframes lds-default {

    0%,
    20%,
    80%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }
}

/* SPINNER SMALL */
.lds-dual-ring {
    display: inline-block;
    background: transparent !important;
}

.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 24px;
    height: 24px;
    margin-left: -5px;
    margin-top: -5px;
    border-radius: 50%;
    position: relative;
    border: 6px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

.lds-dual-ring .dot {
    display: none !important;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.rounded-tl-bl {
    border-top-left-radius: 4rem;
    border-bottom-left-radius: 4rem;
}

.drop-image-area {
    border: 2px dashed #ccc;
    border-radius: 5px;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    width: 100%;
    margin: 5px 0;
}

.drop-image-area h2 {
    font-size: medium;
}

.custom-card-dashboard {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.input-create {
    border: none !important;
    border-bottom: 1px solid gray !important;
    background: transparent !important;
    border-radius: 0 !important;
    margin: 0 !important;
}



.row-padding [class*="col-"] {
    padding-left: 12px !important;
    padding-right: 12px !important;
}

.hover-bg-lightgray:hover {
    background-color: #e3e3e3;
    transition: all 0.3s;
}

.hover-bg-darker:hover {
    background-color: rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s;
}

.circle-bg {
    width: 80px;
    height: 80px;
    background-color: rgba(108, 117, 125, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rounded-xl {
    border-radius: 1rem !important;
}

.rounded-t-xl {
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
}

.rounded-b-xl {
    border-bottom-left-radius: 1rem !important;
    border-bottom-right-radius: 1rem !important;
}

.pointer {
    cursor: pointer;
}

.font-weight-semibold {
    font-weight: 600 !important;
}

.icon-bg {
    width: 60px;
    height: 60px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.bg-warning-light {
    background-color: rgba(255, 193, 7, 0.2);
}

.bg-danger-light {
    background-color: rgba(220, 53, 69, 0.2);
}

.bg-primary-light {
    background-color: rgba(0, 123, 255, 0.2);
}

.bg-info-light {
    background-color: rgba(23, 162, 184, 0.2);
}

.bg-shadow:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    /* transform: scale(1.03) !important; */
    transition: all 0.3s;
}

.transition-all-3s{
    transition: all 0.3s;
}