/* Container witdh */
.ep-container-full {
    max-width: 1440px;
}

/* Toggle styles */
.toggle-path {
    transition: background 0.3s ease-in-out;
}

.toggle-circle {
    top: 0.2rem;
    left: 0.25rem;
    transition: all 0.3s ease-in-out;
}

input:checked~.toggle-circle {
    transform: translateX(100%);
}

input:checked~.toggle-path {
    background-color: #81E6D9;
}
    
/* Select2 input default appearance */
.select2-container--default .select2-selection--single {
    margin-top: 1px;
    padding: 3px !important;
    height: 44px !important;
    width: 100%;
    font-size: 1.2em;
    border: 2px solid #1787CF !important;
    border-radius: 10px !important;
}

.spinner {
    display: none;
    width: 36px;
    height: 36px;
    border: 5px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    border-left-color: #1787CF;
    animation: spin 1s ease infinite;
}

/* @keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
} */