*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --mainColor : #DD3F22;
    --mainBlue : #2196F3;
}

body{
    font-family: 'Roboto';
    font-size: 20px;
}

body{
    -ms-overflow-style: none; /* for Internet Explorer, Edge */
    scrollbar-width: none; /* for Firefox */
    overflow-y: scroll; 
}

body::-webkit-scrollbar {
    display: none;
}

::-webkit-scrollbar {
    background-color: rgb(250 247 251);
    -webkit-appearance: none;
}

::-webkit-scrollbar:vertical {
    width: 10px;
}

::-webkit-scrollbar:horizontal {
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, .5);
    border-radius: 10px;
    border: 2px solid rgb(250 247 251);
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: transparent;
}

input[type=checkbox]{
    cursor: pointer;
}

input[type=checkbox]:disabled{
    cursor: not-allowed;
}

input[type=text]{
    margin-left: 5px;
    border: 1px solid lightgray;
    border-radius: 5px;
    height: 25px;
    outline: none;
    padding: 5px;
}

select{
    cursor: pointer;
}

textarea{
    resize: none;
    background: white;
    padding: 10px;
    border-radius: 5px;
    font-family: 'Roboto';
    border: 1px solid lightgray;
}

.loader{
    display: none;
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    backdrop-filter: blur(5px);
}

.loadingBox{
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #2196F3;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #2196F3 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);
    }
}

.btn{
    border: none;
    background: var(--mainBlue);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.hiddenItem{
    display: none;
}

.icon{
    cursor: pointer;
    opacity: 0.7;
    transition: 0.4s;
}

.icon:hover{
    opacity: 1;
}

.hiddenTd{
    display: none;
}

#enseigneSelect {
    border: 1px solid lightgray;
    border-radius: 5px;
    height: 25px;
    outline: none;
    padding: 5px;
}

.loaderChoice {
    display: none;
	border: 5px solid #f3f3f3; 
	border-top: 5px solid var(--mainBlue);
	width: 40px;
	height: 40px;
    border-radius: 50%;
	animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}