.custom-checkbox {
    display: inline-block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 16px;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border: 2px solid #2196F3;
    border-radius: 6px;
}


/* Style de l'icône à l'intérieur de la checkbox */

.checkmark i {
    display: none;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* Lorsque la case est cochée, changer la couleur de fond et afficher l'icône */

.costum-checkbox input:checked~.checkmark {
    background-color: #2196F3;
}

.costum-checkbox input:checked~.checkmark i {
    display: block;
}

.job-cat-block-hpage-6 .costum-checkbox {
    position: absolute;
    top: 8px;
    right: 20px;
}

.shadow-double {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset !important;
}

.animated-icon {
    display: inline-block;
    transform: translateY(-50%);
    animation: arrow-animation 1s linear infinite;
}

@keyframes arrow-animation {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(0);
    }
}

.scroll-down {
    position: relative;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 40px;
    z-index: 1000;
}


/* Style de l'icône */

.scroll-down-icon {
    width: 40px;
    height: 40px;
    background-color: #e2ebfc;
    border-radius: 5px;
    animation: scroll-down-animation 1s ease-in-out infinite alternate;
}


/* Animation de défilement vers le bas */

@keyframes scroll-down-animation {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(10px);
    }
}

.btn-shoot {
    height: 40px;
    width: 40px;
    border: none;
    background-color: #ffffff;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
    border-radius: 100%;
    color: #2196F3;
    text-align: center;
    transition: 1s all;
    position: absolute;
    right: -5px;
    bottom: -5px;
}

.btn-shoot:hover {
    height: 42px;
    width: 42px;
    border: none;
    background-color: #2196F3;
    border-radius: 100%;
    color: #FFFFFF;
    text-align: center;
}

.btn-shoot.active {
    height: 42px;
    width: 42px;
    border: none;
    background-color: #2196F3;
    border-radius: 100%;
    color: #FFFFFF;
    text-align: center;
}