input[type="checkbox"] + label {
    font-size: 14px;
}

/*STYLE-FOR-LOADER*/
#wrap-loader {
    display: none;
    width: 100%;
    position: fixed;
    height: 100%;
    top: 0;
    left: 50%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 10000;
    transform: translate(-50%);
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -o-transform: translate(-50%)
}

.loader-pr {
    margin: 10px auto;
    border: 6px solid #f3f3f3;
    border-radius: 50%;
    border-top: 6px solid #b50905;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    position: relative;
    top: 50%;
    margin-top: -25px; /* half of the height */
    margin-left: auto;
    margin-right: auto;
}

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

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/*END-STYLE-FOR-LOADER*/
