
.modal {
    display: none;
    padding: 0 1em;
    z-index: 1000000;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
}

@media (min-width: 43.75em) {

    .modal {
        padding: 1em 2em;
        /*text-align: right;*/
    }
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    height: 90%;
    overflow: auto;
}

.modal-content-upload {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 30%;
    height: 20%;
    overflow: auto;
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 60px;
    height: 60px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

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

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.myCheckbox input {
    position: relative;
    z-index: -9999;
}

.myCheckbox span {
    position: absolute;
    width: 12px;
    height: 12px;
    background: url(/assets/img/corps/off.png) no-repeat 0 0;
    background-color: transparent;
    background-image: url("/assets/img/corps/off.png");
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: 0px 0px;
    background-clip: border-box;
    background-origin: padding-box;
    background-size: auto auto;

}

.myCheckbox input:checked + span {
    position: absolute;
    width: 12px;
    height: 12px;
    background: url("/assets/img/corps/on.png") no-repeat 0 0;
    background-color: transparent;
    background-image: url("/assets/img/corps/on.png");
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: 0px 0px;
    background-clip: border-box;
    background-origin: padding-box;
    background-size: auto auto;
}

.custom-file-upload {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
}