:root{
    --colore-accento: #025585;
    --colore-light: #e0e0e0;
    --colore-sfondo: #f5f6fa;
}

/* Ajax loader */
.dro-loader{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 99999999999;
    background-color: white;
}
.dro-loader.main-loader{
    position: fixed;
    width: 100vw;
    height: 100vh;
}
.dro-loader-item {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    position: relative;
    margin: 0 auto;
}

.dro-loader-item:before,
.dro-loader-item:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 3px solid var(--colore-accento);
    border-top-color: var(--colore-light);
}

.dro-loader-item:before {
    z-index: 100;
    -webkit-animation: spin 1s infinite;
    animation: spin 1s infinite;
}

.dro-loader-item:after {
    border: none;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/* */

/* Generali */
html{
    font-size: 100%;
}
.br-5{
    border-radius: 5px;
}
.b-sh{
    -webkit-box-shadow: 0px 0px 30px 0px rgba(47, 112, 161, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(47, 112, 161, 0.1);
}
a{
    color: var(--colore-accento);
}
a:hover{
    text-decoration: underline;
}
.btn.btn-primary{
    background-color: var(--colore-accento);
    color: white;
    border: 1px solid var(--colore-accento);
    padding: .5rem 3rem;
}
.form-row{
    margin-right: 0;
    margin-left: 0;
}
.input-group-text{
    min-width: 45px;
}
h1{
    font-size: 1.5rem;
    background: var(--colore-accento);
    color: white;
}
header#masthead{
    background-color: var(--colore-accento);
}
header#masthead a:hover{
    color: white;
}
.navbar-brand img{
    /*max-width: 70px;*/
    max-width: 500px;
}
.navbar-brand .logo-text > p:first-child {
    margin-bottom: 0;
    font-weight: 600;
}
.navbar-brand .logo-text > p:first-child span {
    font-size: .6rem;
}
.navbar-brand .logo-text > p:last-child {
    margin-bottom: 0;
    font-size: 1.8rem;
    font-weight: 700;
}
@media screen and (max-width: 768px){
    .navbar-brand .logo-text > p:first-child {
        font-size: .8rem;
    }
    .navbar-brand .logo-text > p:first-child span {
        display: none;
    }
    .navbar-brand .logo-text > p:last-child {
        font-size: 1rem;
    }
}
#content.site-content{
    background-color: var(--colore-sfondo);
}
.form-container{
    background-color: white;
}
#footer-widget{
    background-color: var(--colore-accento) !important;
}
#footer-widget p,
#footer-widget a
{
    color: white;
}
#footer-widget a{
    text-decoration: underline;
}

/* */
