@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Cairo', sans-serif !important;
}

.colored-toast.swal2-icon-success {
    background-color: #a5dc86 !important;
}

.colored-toast.swal2-icon-error {
    background-color: #f27474 !important;
}

.colored-toast.swal2-icon-warning {
    background-color: #f8bb86 !important;
}

.colored-toast.swal2-icon-info {
    background-color: #3fc3ee !important;
}

.colored-toast.swal2-icon-question {
    background-color: #87adbd !important;
}

.colored-toast .swal2-title {
    color: white;
}

.colored-toast .swal2-close {
    color: white;
}

.colored-toast .swal2-html-container {
    color: white;
}

.nav-pills .nav-link {
    background-color: #0000000d;
}

.select2,
.select2-container {
    z-index: 1000;
    width: -webkit-fill-available !important;
}

.tile {
    height: 115px;
    position: relative;
    overflow: hidden;
}

.tile input[type="checkbox"] {
    -webkit-appearance: none;
    position: relative;
    height: 100%;
    width: 100%;
    background-color: #ffffff;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid #e5e5e5;
    outline: none;
    /* box-shadow: 0px 0px 4px #00000012; */
    transition: all ease-in-out 300ms;
    -webkit-transition: all ease-in-out 300ms;
    -moz-transition: all ease-in-out 300ms;
    -ms-transition: all ease-in-out 300ms;
    -o-transition: all ease-in-out 300ms;
}

.tile input[type="checkbox"]:after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    content: "\f111";
    font-size: 22px;
    top: 10px;
    left: 10px;
    color: #e2e6f3;
}

.tile input[type="checkbox"]:hover {
    background-color: #f1f1f1;
}

.tile input[type="checkbox"]:checked {
    background-color: #321f5a;
}

.tile input[type="checkbox"]:checked:after {
    font-weight: 900;
    content: "\f058";
    color: #fff;
}

.tile label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 80%;
    width: 100%;
    position: absolute;
    bottom: 0;
    cursor: pointer;
}

.tile label .fas {
    font-size: 410px;
    color: #321f5a;
    position: absolute;
    opacity: 0.03;
}

.tile input[type="checkbox"]:checked+label .fas {
    animation: grow 1s;
    color: #fff;
    opacity: 0.08;
    -webkit-animation: grow 1s;
}

.tile input[type="checkbox"]:checked+label h6 {
    color: #fff;
}

@keyframes grow {
    50% {
        font-size: 80px;
    }
}

.tile label h6 {
    font-size: 17px;
    font-weight: bolder;
    color: #432d71;
    z-index: 999;
}

.active-notification {
    background-color: #00000005;
}

#loading {
    background-color: #0006;
    width: 100%;
    height: 100%;
    z-index: 99999;
    position: fixed;
    overflow: hidden;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    margin: 8px;
    border: 4px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}