﻿.section {
    margin-top: 15px;
}

.formRow .textBox {
    float: none !important;
    max-width: 100% !important;
}

.formWrapper {
    max-width: none;
}

.formRow {
    max-width: 700px !important;
}

.button {
    background-color: #55bee6;
    border-radius: 5px;
    font-family: 'MuseoSans-700', Arial, Helvetica, Sans-Serif;
    font-size: 16px;
    color: #ffffff !important;
    border: none;
    padding: 6px 17px;
    cursor: pointer;
    display: block;
    margin-top: 5px;
}

.button.darkBlue {
    background-color: #0076ca;
}

.button:disabled {
    background-color: darkgray;
    cursor: default;
}

.buttonArrow {
    padding-left: 10px;
    font-size: 12px;
}

.confirmationModal {
    z-index: 1100;
    position: absolute;
    left: 50%;
    top: 20%;
}

.confirmationModalContent {
    background-color: #fbfbfb;
    padding: 20px;
    border-radius: 6px;
    position: relative;
    left: -50%;
}

.confirmationModal p:last-child {
    width: 103px;
}

.confirmationModalCover {
    z-index: 1000;
    background-color: black;
    opacity: 0.5;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.hidden {
    display: none;
}

@media (max-width: 1091px) {
    .siteSpacing {
        margin: 0 10px 0 10px;
    }
}

@media (max-width: 469px) {
    .textBox.hasButton {
    }
}

.formRow .section ul {
    list-style: circle;
    margin-left: 20px;
}

.formRow .section ul ul {
    list-style: disc;
    margin-left: 17px;
}

#loader {
  display: flex;
  align-items: center;
}

.loader-icon {
    border: 3px solid #f3f3f3; /* Light grey */
    border-top: 3px solid #0076ca; /* Blue */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
    margin-right: 5px;
}

/* Animation for the loading wheel */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

h2.alert {
    color: #003161;
    font-weight: bold;
    padding: 15px;
    border: 2px solid #003161;
    border-radius: 5px;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

ul ul {
    list-style-type: circle;
    margin-left: 20px;
}

li {
}
label {
    font-weight: bold;
}
