﻿.debug {
    background-color: #ccc;
    margin: 20px;
    padding: 20px;
}

.bee-page-container {
    height: 100vh;
    overflow: auto;
}

.bee-field .label {
    font-size: 30px;
}

/*.bee-field label {
    font-size: 20px !important;
}*/

.bee-field input, .bee-field select {
    font-size: 18px !important;
    border: 1px solid black;
    padding: 10px !important;
}


label[for="multi_SnowReportDay"] {
    width: 170px;
}

input[type="checkbox"] {
    margin-top: 8px;
}

input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-top: 8px;
}

.bee-field-multi_SnowReportDay label:not(:first-child) {
    margin-right: 5px !important;
}

#loader-wrapper {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(51,51,51,.3215686274509804);
    z-index: 9999999;
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    margin-left: 45%;
    position: absolute;
    margin-top: 15%;
    z-index: 55555;
}

.hidden {
    display: none;
}

.error-div {
    text-align: center;
    margin-top: 50px;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.bee-form-row:nth-child(1) .bee-field-submit, .bee-form-row:nth-child(2) .bee-field-submit {
    margin-top: 42px !important;
}