﻿/*body {
    margin: 0;
    font-family: Lato,Helvetica,Arial,sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff
}*/

footer {
    position: relative;
    width: 100%;
    bottom:0;
    display:block;
}

header {
    position: relative;
    width: 100%;
    top: 0;
    display: block;
}

main {
    width: 100%;
    display:block
}
body {

    width:100%;
}

app {
    position: relative;
    display: block;
}

.sq-form-submit:disabled, input[type=submit]:disabled {
    background-color: #cccccc;
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}