
/*------------------------------CHECKBOX----------------------------------*/

.customcheck {
    display: block;
    position: relative;
    cursor: pointer;
    font-size: 1em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-left: -1.5em;
}


.customcheck input {
    position: absolute;
    opacity: 0;
    top: -1em;
    left: 1.7em;
}

.checkmark {
    position: absolute;
    top: -0.8em;
    left: 2em;
    height: 1em;
    width: 1em;
    background-color: transparent;
    border: 0.1em solid #333;
    border-radius: 5px;
}

.customcheck:hover input ~ .checkmark {
    box-shadow: 0px 0px 0.5em 0.1em rgba(0,0,0,0.25);
}

.customcheck input:checked ~ .checkmark {
    background-color: #333;
    border-radius: 5px;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.customcheck input:checked ~ .checkmark:after {
    display: block;
}


.customcheck .checkmark:after {
    left: 0.2em;
    bottom: 0.1em;
    width: 4px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#icone{width: 3em;}

@media only screen and (min-width: 1500px) {header{padding-bottom: 18em;padding-top: 1em;}}