/* ================================================== */
/* Web Fonts */
/* ================================================== */


/* ================================================== */
/* Utilities */
/* ================================================== */

.mt-10px {
    margin-top: 10px;
}

.mt-20px {
    margin-top: 20px;
}

.mt-30px {
    margin-top: 30px;
}

/* ================================================== */
/* General */
/* ================================================== */

*, *:before, *:after {
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #000000;
    font-size: 22px;
}

.btn-primary {
    background-color: #4383C4 !important;
    border: 0;
}

/* ================================================== */
/* Registration */
/* ================================================== */

.registration-container .form-row {
    margin-top: 10px;
}

.registration-container label {
    font-weight: normal; /* 400 */
    margin-top: 5px;
    margin-bottom: 5px;
}

.registration-container input[type=text],
.registration-container input[type=tel],
.registration-container input[type=email],
.registration-container input[type=number],
.registration-container textarea,
.registration-container select {
    background-color: #888888;
    color: white;
    width: 100%;
    border: 0;
    padding: 5px 15px;
}

.registration-container select {
    padding: 8px 9px;
}

.registration-container [data-country-code-field] {
    position: relative;
    width: 100%;
    min-width: 0;
}

.registration-container .srsvp-mobile-number-field {
    display: flex;
    gap: 8px;
    width: 100%;
    min-width: 0;
}

.registration-container .srsvp-mobile-country-code {
    flex: 0 0 220px;
    min-width: 180px;
}

.registration-container .srsvp-mobile-number-input {
    flex: 1 1 auto;
    min-width: 0;
}

.registration-container .srsvp-country-code-source[data-enhanced="1"] {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.registration-container .srsvp-country-code-combobox {
    position: relative;
    width: 100%;
}

.registration-container .srsvp-country-code-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-height: 42px;
    padding: 5px 15px;
    border: 0;
    background-color: #888888;
    color: #ffffff;
    line-height: 1.4;
    text-align: left;
}

.registration-container .srsvp-country-code-toggle:focus {
    box-shadow: 0 0 0 3px rgba(67, 131, 196, .45);
    outline: 0;
}

.registration-container .srsvp-country-code-current {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.registration-container .srsvp-country-code-chevron {
    flex-shrink: 0;
    color: #ffffff;
}

.registration-container .srsvp-country-code-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 1055;
    padding: 8px;
    border: 1px solid #555555;
    background: #ffffff;
    color: #222222;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}

.registration-container .srsvp-country-code-menu[hidden] {
    display: none !important;
}

.registration-container .srsvp-country-code-combobox.is-open .srsvp-country-code-menu,
.registration-container .srsvp-country-code-menu.show {
    display: block;
}

.registration-container .srsvp-country-code-search {
    width: 100%;
    margin-bottom: 8px;
    padding: 8px 10px;
    border: 1px solid #cccccc;
    border-radius: 2px;
    background: #ffffff;
    color: #222222;
}

.registration-container .srsvp-country-code-search:focus {
    border-color: #4383C4;
    box-shadow: 0 0 0 3px rgba(67, 131, 196, .25);
    outline: 0;
}

.registration-container .srsvp-country-code-options {
    max-height: 260px;
    overflow-y: auto;
}

.registration-container .srsvp-country-code-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 8px 10px;
    border: 0;
    border-radius: 2px;
    background: transparent;
    color: #222222;
    text-align: left;
}

.registration-container .srsvp-country-code-option:hover,
.registration-container .srsvp-country-code-option:focus,
.registration-container .srsvp-country-code-option.is-active {
    background: #EAF2FB;
    color: #23527C;
    outline: 0;
}

.registration-container .srsvp-country-code-option-code {
    flex: 0 0 72px;
    font-weight: 700;
}

.registration-container .srsvp-country-code-option-label {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.registration-container .srsvp-country-code-empty {
    padding: 8px 10px;
    color: #666666;
}

@media (max-width: 575.98px) {
    .registration-container .srsvp-mobile-number-field {
        flex-direction: column;
    }

    .registration-container .srsvp-mobile-country-code {
        flex-basis: auto;
        width: 100%;
    }
}

.registration-container input:read-only {
    background-color: #444444;
    color: white;
}

.registration-container .radio-inline {
    display: inline-flex;
    margin-right: 15px;
}

.registration-container .radio-inline:last-of-type {
    margin-right: 0;
}

.registration-container .radio-inline > input[type=radio] {
    height: 22px; /* same as label font-size */
    width: 22px; /* same as label font-size */
    margin: 5px 8px 0 0;
    flex-shrink: 0;
}

.registration-container input[type=submit] {
    padding: 10px 40px;
    font-size: 24px;
    border: 0;
}

.registration-container .checkbox {
    display: flex;
}

.registration-container input[type=checkbox] {
    height: 22px; /* same as label font-size */
    width: 22px; /* same as label font-size */
    margin: 5px 8px 0 0;
    flex-shrink: 0;
}

.registration-container label.error {
    color: #EF4548;
    font-size: .7em;
}

[id$="-container"] > .item {
    margin: 10px 0;
    padding: 10px;
}

[id$="-container"] > .item:nth-child(odd) {
    background-color: #2b2b2b;
}

.navbar {
    font-size: initial;
}

/* #Public Pages(portrait)
================================================== */

.card {
    color: white;
    font-size: initial;
}

.card .form-control:focus {
    background-color: white;
}


.d-flex{
    display: flex;
}

.alt-label{
    font-style: italic;
    font-size: 0.8rem;;
}

/* STRIPE CUSTOM CSS */

.checkoutView{
    width: 500px !important;
}