@import url(https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700);

body {
    font-family: Georgia, Montserrat, "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.input-full-width input {
    width: 100%;
}

.table-requisiti th {
    padding: 0.75rem;
}

.table-requisiti td {
    padding: 0.75rem;
}


input[type="checkbox"] {
    width: 30px; /*Desired width*/
    height: 30px; /*Desired height*/
    -webkit-appearance: none;
    appearance: none;
    background: #ffffff;
    border-radius: 5px;
    box-sizing: border-box;
    position: relative;
    border-width: 1px;
    transition: all .3s linear;
    box-shadow: 0px 0px 0px 1px black;
    -webkit-box-shadow: 0px 0px 0px 1px black;
    -moz-box-shadow: 0px 0px 0px 1px black;
}

input[type="checkbox"]:checked {
    background-color: #298b0f;
}
input[type="checkbox"]:disabled{
  background: lightgray;
}
input[type="checkbox"]:disabled:checked{
  background: lightgreen;
}

.dataTables_filter{
    text-align: right;
}

.custom-table-header thead tr th{
    background: #4e73df;
}

.custom-table-header thead tr th a{
    color: white;
}


#overlay {
    position: fixed;
    top: 0;
    z-index: 10000000000;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.6);
}

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

select, input {
    max-width: 100%;
}
.select2-container {
    min-width: auto !important;
    width: 100% !important;
}


.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}