/* Global Defaults */
body {
    font-family: 'Open Sans', sans-serif;
}

a {
    text-decoration: none;
}

label {
    color: #af936c;
    font-weight: bold;
}


/* Main Layout Positioning */
main {
    min-height: 100vh;
    position: relative;
}

footer {
    position: relative;
}


/* Stylings */
.frm-card-body {
    /* Overrides Bootstrap UI */
    background-color: rgba(33, 37, 41, 0.03);
}

.frm-card-body:not(:last-child) {
    /* Overrides Bootstrap UI */
    border-bottom: 1px solid rgba(0, 0, 0, 0.17);
}

.frm-card-header {
    /* Overrides Bootstrap UI */
    background-color: gainsboro;
    font-size: 17px;
    font-weight: 600;
}

.frm-card-footer {
    /* Overrides Bootstrap UI */
    background-color: rgba(33, 37, 41, 0.03);
    border-top: 1px solid transparent;
    padding-top: 1.5rem;
}

.frm-container-dark {
    background-color: gainsboro;
    border: transparent;
    border-radius: 0.375rem;
    padding: .55rem .75rem;
}

.frm-container-light {
    background-color: whitesmoke;
    border: transparent;
    border-radius: 0.375rem;
    padding: .55rem .75rem;
}

.frm-container-outlined {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: .55rem .75rem;
}

.frm-container-narrow {
    max-width: 768px;
}

.frm-element-selectable {
    cursor: pointer;
}

.frm-label-checkbox {
    color: black;
    display: inline;
    font-weight: normal;
    padding-left: .5rem;
}


/* Furama Custom styles: Buttons */
.frm-btn-teal {
    color: white;
    background-color: #5c9e97;
    border-color: #5c9e97;
}

.frm-btn-teal:active,
.frm-btn-teal:hover {
    color: white !important;
    background-color: #3e7771 !important;
    border-color: #3e7771 !important;
}

.frm-btn-gold {
    color: white;
    background-color: #b28a36;
    border-color: #b28a36;
}

.frm-btn-gold:active,
.frm-btn-gold:hover,
.frm-btn-gold:visited {
    color: white !important;
    background-color: #836525 !important;
    border-color: #836525 !important;
}


/* Component: Header Logo */
#frmid-logo img {
    width: 168px;
}

/* Component: Page Title */
#frmid-title h1 {
    color: #b28a36;
    font-size: 2.8rem;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 0.1;
}

#frmid-title h4 {
    font-style: italic;
    margin-bottom: 0;
    margin-top: .5rem;
}

/* Component: Event Description */
#frmid-description .frm-description-text {
    font-size: 14px;
}

/* Component: I Agree */
#frmid-iagree .frm-iagree-text {
    font-size: 13px;
}

/* Component: Form */
#frmid-form .frm-form-text {
    font-size: 13px;
}

/* Ensure select dropdowns have visible dropdown arrow */
#frmid-form select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

#frmid-form select.form-control:disabled {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236c757d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

#frmid-form .frm-form-summary-list {
    line-height: 1.7rem;
    list-style-type: none;
    padding-left: 1rem;
}



.frm-playsession-radio {
    margin-right: 1rem;
}

.frm-text-red {
    color: red;
}

.frm-errorbanner {
    background-color: lightpink;
    border: 1px solid red;
    border-radius: 10px;
    margin: 15px;
    padding: 15px;
}


/* Component: Footer */
footer {
    background-color: #444;
    color: white;
    font-size: 13px;
    padding: 30px 0;
    position: relative;
}

footer a {
    color: white;
}

footer img {
    height: 25px;
    margin-bottom: 15px;
}

.frm-footer-hiddentitle {
    opacity: 0;
}

.frm-children-container {
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 15px;
    padding-left: 15px;
}

.frm-child-row {
    background-color: whitesmoke;
    border: 1px solid lightgray;
    border-radius: 5px;
    padding: .55rem .75rem;
}

.frm-child-row:first-child {
    margin-top: .8rem;
}


/* Media Queries */
@media (min-width: 1200px) {
    #frmid-hero .frm-hero-container {
        height: 400px;
    }
}

@media (min-width: 576px) and (max-width: 1199px) {
    #frmid-hero .frm-hero-container {
        height: 300px;
    }
}

@media (max-width: 575px) {
    #frmid-hero .frm-hero-container {
        height: 200px;
    }
}
