
body {
    font-family: 'Quicksand'
}

.vertical-alignment-helper {
    display: table;
    height: 100%;
    width: 100%;
    pointer-events: none;
}

.vertical-align-center {
    /* To center vertically */
    display: table-cell;
    vertical-align: middle;
    pointer-events: none;
}

.modal-content {
    /* Bootstrap sets the size of the modal in the modal-dialog class, we need to inherit it */
    width: inherit;
    max-width: inherit; /* For Bootstrap 4 - to avoid the modal window stretching full width */
    height: inherit;
    /* To center horizontally */
    margin: 0 auto;
    pointer-events: all;
    box-shadow: none;
    border: none;
    background-color: transparent;
}

.loader {
    /*position: absolute;*/
    left: 50%;
    top: 40%;
    z-index: 1;
    width: 70px;
    height: 70px;
    /*margin: -75px 0 0 -75px;*/
    border: 16px solid #f3f3f3;
    border-top: 16px solid blue;
    border-right: 16px solid green;
    border-bottom: 16px solid red;
    border-radius: 50%;
    -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);
    }
}

.content {
    margin: auto;
    width: 600px;
}

@media only screen and (max-width: 1280px) {
    .content {
        margin: auto;
        width: 400px
    }
}


.row {
    margin: 0px !important
}

.form-control {
    font-size: 18px;
    height: 44px;
}
