﻿:root {
    --primary-color: #602;
    --secondary-color: #28ace2;
    --tertiary-color: #FFFFFF;
    --headline-font: 'Roboto', serif;
    --body-copy-font: 'Roboto', serif;
    --navigation-alignment: flex-end;
    --button-corner: 1px;
}

/* -------------- imports must be defined at the top -------------- */
@import url('https://fonts.googleapis.com/css2?family=Alegreya:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
/* -------------- color palette and other variables -------------- */
:root {
    --accent-color: #28ace2; /* used for header menu, content topic tags on thumbnails, primary button background on hover, etc... */
    --black-color: #333; /* body text, header menu link on hover */
}
/* -------------- reset browser styles -------------- */
/* ensure padding and border are included in browser's calculation of height */
*, ::after, ::before {
    box-sizing: border-box;
}

body {
    margin: 0px;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
}

a {
    text-decoration: none;
}

/* ----------- reusable container, similar to bootstrap ---------- */
@media (min-width: 768px) {
    .container {
        width: 750px;
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

.container {
    margin-right: auto;
    margin-left: auto;
}

/* ----------- reusable dropdown menu ---------- */
.dropdown-menu {
    font-size: 14px;
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

    .dropdown-menu > li > a {
        padding: 3px 20px;
        font-weight: 400;
        line-height: 1.42857143;
        color: #333;
    }

        .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
            background-color: #f5f5f5;
        }

@media (max-width: 767px) {
    .event-body-container .calendar-location-table .open > .dropdown-menu { /* is this rule needed? */
        right: 0;
    }
}

/* ----------- whole document ---------- */
body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    background-color: #ECF0F1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}

html body {
    padding-top: 0 !important; /* override rule in custom CSS file for many action sites */
}

/* ---------- style variants and buttons ---------- */
.variant-a {
    background-color: var(--tertiary-color);
    color: var(--secondary-color);
}

.variant-b {
    background-color: var(--secondary-color);
    color: var(--tertiary-color);
}

.variant-c {
    background-color: var(--primary-color);
    color: #ffffff;
}

.variant-a .button-primary,
.variant-b .button-primary,
.button-set-primary .variant-a .button-variable,
.button-set-primary .variant-b .button-variable,
main .button-set-primary.variant-a .button-variable,
main .button-set-primary.variant-b .button-variable {
    padding: .25rem 1.5rem; /* px-4 py-1 */
    font-weight: bold;
    background-color: var(--primary-color);
    color: #ffffff;
    border: solid 2px var(--primary-color);
    border-radius: var(--button-corner);
}

    .variant-a .button-primary:hover,
    .variant-b .button-primary:hover,
    .button-set-primary .variant-a .button-variable:hover,
    .button-set-primary .variant-b .button-variable:hover,
    main .button-set-primary.variant-a .button-variable:hover,
    main .button-set-primary.variant-b .button-variable:hover {
        box-shadow: 0 0.5em 0.5em -0.4em gray;
        text-decoration: none;
    }


.variant-a .button-secondary,
.variant-b .button-secondary,
.button-set-secondary .variant-a .button-variable,
.button-set-secondary .variant-b .button-variable,
main .button-set-secondary.variant-a .button-variable,
main .button-set-secondary.variant-b .button-variable {
    padding: .25rem 1.5rem; /* px-4 py-1 */
    font-weight: bold;
    background-color: transparent;
    color: var(--primary-color);
    border: solid 2px var(--primary-color);
    border-radius: var(--button-corner);
}

    .variant-a .button-secondary:hover,
    .variant-b .button-secondary:hover,
    .button-set-secondary .variant-a .button-variable:hover,
    .button-set-secondary .variant-b .button-variable:hover,
    main .button-set-secondary.variant-a .button-variable:hover,
    main .button-set-secondary.variant-b .button-variable:hover {
        box-shadow: 0 0.5em 0.5em -0.4em gray;
        text-decoration: none;
    }

.variant-a .button-tertiary,
.variant-b .button-tertiary,
.button-set-tertiary .variant-a .button-variable,
.button-set-tertiary .variant-b .button-variable,
main .button-set-tertiary.variant-a .button-variable,
main .button-set-tertiary.variant-b .button-variable {
    padding: 0;
    font-weight: bold;
    background-color: transparent;
    color: var(--primary-color);
    border: solid 2px transparent;
}

    .variant-a .button-tertiary:hover,
    .variant-b .button-tertiary:hover,
    .button-set-tertiary .variant-a .button-variable:hover,
    .button-set-tertiary .variant-b .button-variable:hover,
    main .button-set-tertiary.variant-a .button-variable:hover,
    main .button-set-tertiary.variant-b .button-variable:hover {
        text-decoration: underline;
        box-shadow: none;
    }

.button-neutral {
    font-weight: bold;
    background-color: transparent;
    color: var(--tertiary-color);
    border: solid 2px transparent;
    text-decoration: none;
}

    .button-neutral:hover {
        text-decoration: underline;
    }

.variant-c .button-primary,
.button-set-primary .variant-c .button-variable,
main .button-set-primary.variant-c .button-variable {
    padding: .25rem 1.5rem; /* px-4 py-1 */
    font-weight: bold;
    background-color: #ffffff;
    color: var(--primary-color);
    border: solid 2px #ffffff;
    border-radius: var(--button-corner);
}

    .variant-c .button-primary:hover,
    .button-set-primary .variant-c .button-variable:hover,
    main .button-set-primary.variant-c .button-variable:hover {
        box-shadow: 0 0.5em 0.5em -0.4em gray;
        text-decoration: none;
    }

.variant-c .button-secondary,
.button-set-secondary .variant-c .button-variable,
main .button-set-secondary.variant-c .button-variable {
    padding: .25rem 1.5rem; /* px-4 py-1 */
    font-weight: bold;
    background-color: transparent;
    color: var(--secondary-color);
    border: solid 2px var(--secondary-color);
    border-radius: var(--button-corner);
}

    .variant-c .button-secondary:hover,
    .button-set-secondary .variant-c .button-variable:hover,
    main .button-set-secondary.variant-c .button-variable:hover {
        box-shadow: 0 0.5em 0.5em -0.4em gray;
        text-decoration: none;
    }

.variant-c .button-tertiary,
.button-set-tertiary .variant-c .button-variable,
main .button-set-tertiary.variant-c .button-variable {
    padding: 0;
    font-weight: bold;
    background-color: transparent;
    color: var(--secondary-color);
    border: solid 2px transparent;
}

    .variant-c .button-tertiary:hover,
    .button-set-tertiary .variant-c .button-variable:hover,
    main .button-set-tertiary.variant-c .button-variable:hover {
        text-decoration: underline;
        box-shadow: none;
    }
/* --------- section tag styles ----------*/
/* We have an issue PBI128899. To resolve this issue we have set second element of block to be position:relative. */
section > .container, section > .container-fluid, section > .container-md {
    position: relative;
}
/* ----------- header ---------- */
header {
    background-color: white;
    top: 0px;
    position: sticky;
    right: 0;
    left: 0;
    z-index: 1000;
}

    header .navbar-brand img {
        max-height: 55px;
    }

nav ul {
    display: flex;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0px;
    margin: 0px;
}

    nav ul li a {
        padding: 15px;
        display: block;
        color: var(--accent-color);
        text-transform: uppercase;
        text-decoration: none;
    }

        nav ul li a:hover {
            color: var(--black-color);
        }

.navbar-toggler {
    --bs-navbar-toggler-padding-y: 0.10rem;
    --bs-navbar-toggler-padding-x: 0.30rem;
    --bs-navbar-toggler-font-size: 1rem;
}

@media (max-width: 767px) {
    nav {
        border-bottom: solid 1px #e7e7e7;
    }
}

/* start code to make navbar dropdown instead of slide/expand which is the defaul Bootstrap behavior */
nav.navbar {
    height: 82px;
    background-color: inherit;
    border: none;
}

    nav.navbar .container {
        background-color: inherit;
    }

.navbar-collapse.show, .navbar-collapse.collapsing {
    margin-top: var(--bs-navbar-padding-y);
}
/* end code for navbar dropdown instead of slide/expand */

/* ----------- title and subtitle ---------- */
.action-item-headline.panel {
    background-color: transparent;
    border-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    min-height: 200px;
}

.action-item-headline {
    color: #fff;
    font-family: "Roboto Slab", serif;
    text-shadow: 0 1px 0 #000;
}

.action-item-title {
    font-size: 38px;
    font-weight: 500;
    line-height: 1.1;
    margin: 20px 0 10px 0;
    color: #fff;
}

.action-item-subtitle {
    font-size: 14px;
    line-height: 1.42857143;
    margin: 0 0 10px 0;
    color: #fff;
}

/* ----------- signature count ---------- */
.signature-count-wrapper {
    text-align: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    margin-bottom: 15px;
}

.signature-count-total {
    font-size: 2em;
    font-weight: 700;
    font-family: 'Roboto Slab', sans-serif;
    color: var(--accent-color);
    padding-top: 7px;
    padding-bottom: 10px;
    margin: 5px 5px 0 5px;
}

.signature-count-verbiage {
    font-weight: 400;
    font-size: 1.25em;
    color: var(--black-color);
}

/* ----------- description ---------- */
#action-item-description.panel {
    padding: 30px 35px;
}

    #action-item-description {
        line-height: 20px;
    }

.read-more-link-wrapper {
    text-align: center;
}

.read-more-link {
    font-weight: 500;
    text-transform: uppercase;
}

    .read-more-link.call-officials {
        font-size: 18px;
        user-select: none;
        color: gray;
    }

        .read-more-link.call-officials span.fa {
            color: green;
        }

@media (min-width: 768px) {
    .read-more-link:not(.call-officials) {
        display: none;
    }
}

.read-more-link:not(.call-officials):hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .read-more-sign-up-intro:not(.desc-text-more) {
        display: none;
    }
}

/* ----------- form ---------- */

.form-grid-container {
    padding: 0;
    display: grid;
    gap: 10px;
}

.form-grid-container .form-floating {
    position: relative;
}
.form-grid-container .form-floating input::placeholder {
    color: transparent !important;
}
.form-grid-container .floating-input {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    height: 40px;
    min-height: unset;
}

.form-grid-container .floating-label {
    position: absolute;
    top: 50%;
    left: 0.75rem;
    transform: translateY(-50%);
    padding-inline: 0.75rem;
    padding-top: 0;
    padding-bottom: 0;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out, transform .1s ease-in-out;
}

.form-grid-container .floating-input:focus ~ .floating-label,
.form-grid-container .floating-input:not(:placeholder-shown) ~ .floating-label {
    opacity: .65;
    transform: scale(.85) translateY(-0.3rem) translateX(-0.15rem);
    top: 0.3rem;
    left: 1rem;
}

.guest-container > .form-grid-container .floating-input:focus ~ .floating-label,
.guest-container > .form-grid-container .floating-input:not(:placeholder-shown) ~ .floating-label {
    left: 0;
}

.form-grid-container .themed-content-form-group label {
    margin-left: 0px;
}

.form-floating > .form-control-plaintext ~ label::after,
.form-floating > .form-control:focus ~ label::after,
.form-floating > .form-control:not(:placeholder-shown) ~ label::after,
.form-floating > .form-select ~ label::after
{
    background-color: transparent;
}

.form-grid-container .form-floating > label {
    height: unset;
}

.simple-vertical-registration fieldset .item-select-row {
    margin-left: 0;
}

.panel.panel-body fieldset {
    width: 100%;
}

.simple-vertical-registration fieldset {
    margin-left: 0;
    padding-left: 0;
}

#action-item-form-subtitle {
    display: none; /* only one template will show this element */
}

fieldset {
    border: 0;
}

    fieldset.call-to-action {
        margin-bottom: 0px;
        padding: 0 20px;
    }

        fieldset.call-to-action legend {
            font-size: 2em;
            padding-top: 5px;
            padding-bottom: 5px;
            margin-left: -5px;
            border-bottom: 2px #e4e4e4 solid;
            margin-bottom: 20px;
            width: 100%;
        }

legend {
    font-family: 'Roboto', serif;
    font-weight: 300;
    font-size: 1.5em;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    padding-left: 7px;
    border-bottom: #ccc 1px solid;
}

.required-field-asterisk-form-field {
    color: darkred !important;
    position: initial;
    display: initial;
    line-height: 1.1;
}

    .required-field-asterisk-form-field::after {
        font-size: 1em;
        content: "*";
    }

input.form-field-name,
input.form-field-email,
input.form-field-address,
input.form-field-city,
input.form-field-password {
    width: min(100%,43ch);
    max-width: 100%;
}

input.form-field-phone {
    width: min(100%,18ch);
    max-width: 100%;
}

.form-field-state {
    width: min(100%,9ch);
    max-width: 100%;
}

input.form-field-postal-code {
    width: min(100%,13ch);
    max-width: 100%;
}

.label-bold {
    font-weight: 700 !important;
    line-height: 1.1;
    margin-top: 5px;
}

.padded-password {
    padding-right: 65px;
}

.link-show-password {
    position: relative;
    left: -65px;
    text-decoration: none !important;
}

.form-control {
    border-radius: 1px;
    height: 45px;
    border: 1px solid #d1d3d4;
    display: block;
    padding: 6px 12px;
}

    .form-control:focus {
        border-color: #66afe9;
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
    }

input.form-control {
    border-radius: 5px !important;
}

.password-div {
    max-width: 80%;
}

.volunteer {
    margin-top: 10px;
}

.volunteer-yes input[type="checkbox"], .form-tag-selection input[type="checkbox"], .legal-disclaimer-label input[type="checkbox"]  {
    margin-right: 0.4em;
}

.themed-content-form-group label {
    margin: 0;
}

label {
    display: inline-block;
}

.text-danger {
    color: #a94442;
}

.inline-block {
    display: inline-block;
}

html body .btn-primary.sign-as-self {
    width: min(100%, 210px);
}

.btn-primary {
    background-color: #602;
    border-color: #28ace2;
    padding: 10px 20px;
    width: 100%;
    color: #fff;
}

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary:active {
        background-color: #1f7da4;
        border-color: #1f7da4;
    }

.btn-plain {
    border: none;
    background-color: transparent;
}

    .btn-plain:focus {
        outline: none !important;
    }

.form-action {
    margin-top: 25px;
}

.btn {
    font-size: 14px;
    border-width: 1px;
}

    .btn.active {
        outline: 0;
        background-image: none;
        -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
        box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    }

        .btn:focus,
        .btn:active:focus,
        .btn.active:focus,
        .btn.focus,
        .btn:active.focus,
        .btn.active.focus {
            outline: 5px auto -webkit-focus-ring-color;
            outline-offset: -2px;
        }

.btn-centered {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.btn-disabled, .btn-disabled:hover {
    background-color: #b3b9c2;
    border-color: #b3b9c2;
    cursor: default;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}

#featured-image {
    display: none; /* The featured image element is now only rendered for templates that show it. This rule is here for existing pages that have been edited with D&D and thus have the old HTML.*/
}

#event-large-centered-image {
    display: none;
}

.password-field-wrapper .input-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.password-field-wrapper .input-field.form-control {
    padding-right: 60px;
}

.password-field-wrapper .toggle-button {
    position: absolute;
    right: 12px;
    top: 50%;
    left: unset;
    transform: translateY(-50%);
    background: none;
    border: none;
    text-transform: uppercase;
    padding: 0;
}

    .password-field-wrapper .toggle-button:hover {
        opacity: 0.8;
    }
/* ----------- email officials ---------- */
.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.margin-bottom-25 {
    margin-bottom: 25px;
}

.margin-top-15 {
    margin-top: 15px;
}

a {
    cursor: pointer;
}

.text-right {
    text-align: right;
}

.expand-collapse {
    text-align: right;
    font-size: 18px;
    color: var(--accent-color);
}
/* ----------- surveys ---------- */

.padding-top-10 {
    padding-top: 10px;
}

.survey-question, .survey-question-container {
    padding: 0 20px;
}

.survey-question {
    padding-bottom: 10px;
}

    .survey-question.initial-item {
        margin-top: 10px;
    }

.survey-answer label {
    margin: 0;
}

textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

    textarea.form-control {
        width: 100%;
        height: auto;
    }

footer {
    opacity: 1;
    color: #000;
    background-color: #ecf0f1;
    text-align: center;
    padding: 30px 20px 20px 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}

    footer p {
        margin: 0 0 10px 0;
    }

/* ----------- auto sign ---------- */

.petition-user-info ul {
    font-size: 1.1em;
    line-height: 22px;
    color: #333;
}

.user-edit {
    color: #b4b4b4;
    font-size: 13px;
    margin-left: 5px;
}

a[href^="tel:"] {
    color: #333;
    text-decoration: none;
}

/* ----------- action title panel (not to be confused with the title in the action item headline panel) ---------- */
#action-item-panel-title {
    display: none; /* This element is now only rendered for templates that show it. This rule is here for existing pages that have been edited with D&D and thus have the old HTML.*/
}
/* ----------- call to action panel ---------- */
#action-item-panel-calltoaction {
    display: none; /* only one template will show this element */
}
/* ----------- column layout ---------- */
.one-column-layout, .column {
    display: flex;
    flex-direction: column;
}

.two-column-layout, .multi-column-layout {
    display: flex;
}

.multi-column-layout {
    gap: 22px;
}

.column {
    width: 100%;
    height: 100%;
}

.wide3 {
    flex: 3
}

.wide7 {
    flex: 7
}

@media (max-width: 767px) {
    .two-column-layout, .multi-column-layout {
        flex-direction: column;
    }
}

.panel {
    padding: 15px;
    background-color: #fff;
}

@media (max-width: 767px) {
    .panel {
        padding: 5px;
    }
}

@media (min-width: 768px) {
    .panel {
        border: solid 1px #fff;
    }
}

@media (min-width: 768px) {
    #section-2 {
        padding-top: 32px;
        padding-bottom: 32px;
    }
}


/* overriding the display none inline style property for read-more-sign-up-intro which is applied because of jquery toggle in mobile view 
    and then switching back to desktop view*/
@media(min-width: 768px) {
    html body #section-2 #section-2-column-2 #read-more-sign-up-intro {
        display: block !important;
    }
}

/* ----------- events ---------- */

.event-title-container {
    font-family: 'Roboto Slab', serif;
    color: #fff;
    position: relative;
    text-align: left;
    padding-left: 30px;
    display: table-cell;
    vertical-align: middle;
    max-width: 600px;
    height: 250px;
    min-height: 200px;
}

    .event-title-container h1 {
        font-family: inherit;
        font-weight: 500;
        line-height: 1.1;
        color: inherit;
        margin-top: 20px;
        margin-bottom: 10px;
    }

h1.event-header {
    font-size: 38px;
    color: #fff;
}

p.event-subheader {
    font-size: 1.2em;
    opacity: .8;
    color: #fff;
}

.ticketed-event {
    display: none;
}

.event-body-container h4 {
    font-family: 'Roboto Slab', serif;
    font-size: 18px;
    font-weight: 500;
    margin: 25px 0 10px;
}

.event-body-container h5 {
    font-size: 14px;
    font-weight: 500;
    margin: 10px 0;
}

.table-width-100 {
    width: 100%;
}

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

.margin-bottom-10 {
    margin-bottom: 10px;
}

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

.visible-xs {
    display: none !important;
}

@media (max-width: 767px) {
    .visible-xs {
        display: block !important;
    }
}

@media (max-width: 480px) {
    .event-section {
        background-position: center;
    }
}

.event-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

    .event-wrapper i, #contactIcon {
        display: flex;
        justify-content: center;
        width: 30px;
    }

@media (max-width: 767px) {
    .event-container {
        margin-top: 20px;
    }
}

.event-body-container .panel {
    margin-bottom: 25px;
}

.m-top-5 {
    margin-top: 5px;
}

.event-body-container .dropdown {
    position: relative;
}

.display-left {
    float: left;
}

.display-right {
    float: right;
}

.event-form-container a {
    color: #337ab7;
}

    .event-form-container a:hover,
    .event-form-container a:focus {
        color: #23527c;
        text-decoration: underline;
    }

.color-dimgray {
    color: dimgray;
}

.color-green {
    color: green;
}

.color-red {
    color: red;
}

.event-form-container h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 24px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 10px;
}

.display-inlineblock {
    display: inline-block;
}

.hidden {
    display: none !important;
}

.event-body-container #Email {
    width: 100%;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.row:before,
.row:after {
    display: table;
    content: " ";
}

@media (min-width: 768px) {
    .col-sm-6 {
        min-width: 50%;
    }

    .col-sm-4 {
        min-width: 33.33333333%;
    }

    .col-sm-push-2 {
        left: 16.66666667%;
    }

    .col-sm-push-4 {
        left: 33.33333333%;
    }

    .event-form-container .col-sm-6,
    .event-form-container .col-sm-4 {
        float: left;
    }
}

#updateRegistrationFormPlaceholder .row {
    line-height: 20px;
    height: 41px;
}

#updateRegistrationFormPlaceholder .btn {
    display: inline-block;
    text-align: center;
}

#updateRegistrationFormPlaceholder a:hover,
#updateRegistrationFormPlaceholder a:focus {
    color: #fff;
    text-decoration: none;
}

.color-red-apply-imp {
    color: red !important;
}

.bg-color-red-apply-important {
    background-color: red !important;
}

.width-50 {
    width: 150px;
}

.width-200 {
    width: 200px;
}

.btn.register-tickets {
    display: inline-block;
}

    .btn.register-tickets:hover,
    .btn.register-tickets:focus {
        color: #fff;
        text-decoration: none;
    }

.event-details > .panel {
    margin-bottom: 0;
    padding-bottom: 0;
}

#event-legal-disclaimer {
    padding-top: 0;
}

.event-form2-container .action-item-subtitle {
    color: #000;
}

    /* ----------- fonts ---------- */
    @font-face {
        font-family: 'Cooper Hewitt';
        src: url('/CDN/css/fonts/CooperHewitt/CooperHewitt-Bold.otf') format('opentype');
        font-weight: 700;
        font-style: normal;
    }

    @font-face {
        font-family: 'Cooper Hewitt';
        src: url('/CDN/css/fonts/CooperHewitt/CooperHewitt-BoldItalic.otf') format('opentype');
        font-weight: 700;
        font-style: italic;
    }

    @font-face {
        font-family: 'Cooper Hewitt';
        src: url('/CDN/css/fonts/CooperHewitt/CooperHewitt-Book.otf') format('opentype');
        font-weight: 350;
        font-style: normal;
    }

    @font-face {
        font-family: 'Cooper Hewitt';
        src: url('/CDN/css/fonts/CooperHewitt/CooperHewitt-BookItalic.otf') format('opentype');
        font-weight: 350;
        font-style: italic;
    }

    @font-face {
        font-family: 'Cooper Hewitt';
        src: url('/CDN/css/fonts/CooperHewitt/CooperHewitt-Heavy.otf') format('opentype');
        font-weight: 900;
        font-style: normal;
    }

    @font-face {
        font-family: 'Cooper Hewitt';
        src: url('/CDN/css/fonts/CooperHewitt/CooperHewitt-HeavyItalic.otf') format('opentype');
        font-weight: 900;
        font-style: italic;
    }

    @font-face {
        font-family: 'Cooper Hewitt';
        src: url('/CDN/css/fonts/CooperHewitt/CooperHewitt-Light.otf') format('opentype');
        font-weight: 300;
        font-style: normal;
    }

    @font-face {
        font-family: 'Cooper Hewitt';
        src: url('/CDN/css/fonts/CooperHewitt/CooperHewitt-LightItalic.otf') format('opentype');
        font-weight: 300;
        font-style: italic;
    }

    @font-face {
        font-family: 'Cooper Hewitt';
        src: url('/CDN/css/fonts/CooperHewitt/CooperHewitt-Medium.otf') format('opentype');
        font-weight: 500;
        font-style: normal;
    }

    @font-face {
        font-family: 'Cooper Hewitt';
        src: url('/CDN/css/fonts/CooperHewitt/CooperHewitt-MediumItalic.otf') format('opentype');
        font-weight: 500;
        font-style: italic;
    }

    @font-face {
        font-family: 'Cooper Hewitt';
        src: url('/CDN/css/fonts/CooperHewitt/CooperHewitt-Semibold.otf') format('opentype');
        font-weight: 600;
        font-style: normal;
    }

    @font-face {
        font-family: 'Cooper Hewitt';
        src: url('/CDN/css/fonts/CooperHewitt/CooperHewitt-SemiboldItalic.otf') format('opentype');
        font-weight: 600;
        font-style: italic;
    }

    @font-face {
        font-family: 'Cooper Hewitt';
        src: url('/CDN/css/fonts/CooperHewitt/CooperHewitt-Thin.otf') format('opentype');
        font-weight: 100;
        font-style: normal;
    }

    @font-face {
        font-family: 'Cooper Hewitt';
        src: url('/CDN/css/fonts/CooperHewitt/CooperHewitt-ThinItalic.otf') format('opentype');
        font-weight: 100;
        font-style: italic;
    }

    @font-face {
        font-family: 'Domaine Text';
        src: url('/CDN/css/fonts/DomaineText/DomaineText-Black.otf') format('opentype');
        font-weight: 900;
        font-style: normal;
    }

    @font-face {
        font-family: 'Domaine Text';
        src: url('/CDN/css/fonts/DomaineText/DomaineText-BlackItalic.otf') format('opentype');
        font-weight: 900;
        font-style: italic;
    }

    @font-face {
        font-family: 'Domaine Text';
        src: url('/CDN/css/fonts/DomaineText/DomaineText-Bold.otf') format('opentype');
        font-weight: 700;
        font-style: normal;
    }

    @font-face {
        font-family: 'Domaine Text';
        src: url('/CDN/css/fonts/DomaineText/DomaineText-BoldItalic.otf') format('opentype');
        font-weight: 700;
        font-style: italic;
    }

    @font-face {
        font-family: 'Domaine Text';
        src: url('/CDN/css/fonts/DomaineText/DomaineText-Light.otf') format('opentype');
        font-weight: 300;
        font-style: normal;
    }

    @font-face {
        font-family: 'Domaine Text';
        src: url('/CDN/css/fonts/DomaineText/DomaineText-LightItalic.otf') format('opentype');
        font-weight: 300;
        font-style: italic;
    }

    @font-face {
        font-family: 'Domaine Text';
        src: url('/CDN/css/fonts/DomaineText/DomaineText-Medium.otf') format('opentype');
        font-weight: 500;
        font-style: normal;
    }

    @font-face {
        font-family: 'Domaine Text';
        src: url('/CDN/css/fonts/DomaineText/DomaineText-MediumItalic.otf') format('opentype');
        font-weight: 500;
        font-style: italic;
    }

    @font-face {
        font-family: 'Domaine Text';
        src: url('/CDN/css/fonts/DomaineText/DomaineText-Regular.otf') format('opentype');
        font-weight: 400;
        font-style: normal;
    }

    @font-face {
        font-family: 'Domaine Text';
        src: url('/CDN/css/fonts/DomaineText/DomaineText-RegularItalic.otf') format('opentype');
        font-weight: 400;
        font-style: italic;
    }

    @font-face {
        font-family: 'East Sea Dokdo';
        src: url('/CDN/css/fonts/EastSeaDokdo-Regular.ttf') format('truetype');
    }

    @font-face {
        font-family: 'Reenie Beanie';
        src: url('/CDN/css/fonts/ReenieBeanie-Regular.ttf') format('truetype');
    }

    @font-face {
        font-family: "Minion Pro";
        src: url("https://use.typekit.net/af/ea8d85/0000000000000000000151d1/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff2"),url("https://use.typekit.net/af/ea8d85/0000000000000000000151d1/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff"),url("https://use.typekit.net/af/ea8d85/0000000000000000000151d1/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("opentype");
        font-display: auto;
        font-style: normal;
        font-weight: 700;
        font-stretch: normal;
    }

    @font-face {
        font-family: "Minion Pro";
        src: url("https://use.typekit.net/af/bc1d75/0000000000000000000151d2/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3") format("woff2"),url("https://use.typekit.net/af/bc1d75/0000000000000000000151d2/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3") format("woff"),url("https://use.typekit.net/af/bc1d75/0000000000000000000151d2/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3") format("opentype");
        font-display: auto;
        font-style: italic;
        font-weight: 700;
        font-stretch: normal;
    }

    @font-face {
        font-family: "Minion Pro";
        src: url("https://use.typekit.net/af/5033af/0000000000000000000151d3/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("woff2"),url("https://use.typekit.net/af/5033af/0000000000000000000151d3/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("woff"),url("https://use.typekit.net/af/5033af/0000000000000000000151d3/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("opentype");
        font-display: auto;
        font-style: italic;
        font-weight: 400;
        font-stretch: normal;
    }

    @font-face {
        font-family: "Minion Pro";
        src: url("https://use.typekit.net/af/1286c7/0000000000000000000151d6/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"),url("https://use.typekit.net/af/1286c7/0000000000000000000151d6/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"),url("https://use.typekit.net/af/1286c7/0000000000000000000151d6/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
        font-display: auto;
        font-style: normal;
        font-weight: 400;
        font-stretch: normal;
    }

    @font-face {
        font-family: "Acumin Pro Extra Condensed";
        src: url("https://use.typekit.net/af/c4767b/00000000000000003b9acb20/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff2"),url("https://use.typekit.net/af/c4767b/00000000000000003b9acb20/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff"),url("https://use.typekit.net/af/c4767b/00000000000000003b9acb20/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("opentype");
        font-display: auto;
        font-style: normal;
        font-weight: 700;
        font-stretch: normal;
    }

    @font-face {
        font-family: "Acumin Pro Extra Condensed";
        src: url("https://use.typekit.net/af/289661/00000000000000003b9acb21/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3") format("woff2"),url("https://use.typekit.net/af/289661/00000000000000003b9acb21/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3") format("woff"),url("https://use.typekit.net/af/289661/00000000000000003b9acb21/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3") format("opentype");
        font-display: auto;
        font-style: italic;
        font-weight: 700;
        font-stretch: normal;
    }

    @font-face {
        font-family: "Acumin Pro Extra Condensed";
        src: url("https://use.typekit.net/af/f2b2eb/00000000000000003b9acb1a/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"),url("https://use.typekit.net/af/f2b2eb/00000000000000003b9acb1a/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"),url("https://use.typekit.net/af/f2b2eb/00000000000000003b9acb1a/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
        font-display: auto;
        font-style: normal;
        font-weight: 400;
        font-stretch: normal;
    }

    @font-face {
        font-family: "Acumin Pro Extra Condensed";
        src: url("https://use.typekit.net/af/c830f2/00000000000000003b9acb1b/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("woff2"),url("https://use.typekit.net/af/c830f2/00000000000000003b9acb1b/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("woff"),url("https://use.typekit.net/af/c830f2/00000000000000003b9acb1b/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("opentype");
        font-display: auto;
        font-style: italic;
        font-weight: 400;
        font-stretch: normal;
    }

    @font-face {
        font-family: 'Varisse';
        src: url('/CDN/css/fonts/Varisse/Varisse-Bold.otf') format('opentype');
        font-weight: 700;
        font-style: normal;
    }

    @font-face {
        font-family: 'Varisse';
        src: url('/CDN/css/fonts/Varisse/Varisse-Bold-Ital.otf') format('opentype');
        font-weight: 700;
        font-style: italic;
    }

    @font-face {
        font-family: 'Varisse';
        src: url('/CDN/css/fonts/Varisse/Varisse-Book.otf') format('opentype');
        font-weight: 350;
        font-style: normal;
    }

    @font-face {
        font-family: 'Varisse';
        src: url('/CDN/css/fonts/Varisse/Varisse-Book-Ital.otf') format('opentype');
        font-weight: 350;
        font-style: italic;
    }

    @font-face {
        font-family: 'Varisse';
        src: url('/CDN/css/fonts/Varisse/Varisse-Heavy.otf') format('opentype');
        font-weight: 900;
        font-style: normal;
    }

    @font-face {
        font-family: 'Varisse';
        src: url('/CDN/css/fonts/Varisse/Varisse-Ital.otf') format('opentype');
        font-weight: 400;
        font-style: italic;
    }

    @font-face {
        font-family: 'Varisse';
        src: url('/CDN/css/fonts/Varisse/Varisse-Light.otf') format('opentype');
        font-weight: 300;
        font-style: normal;
    }

    @font-face {
        font-family: 'Varisse';
        src: url('/CDN/css/fonts/Varisse/Varisse-Light-Ital.otf') format('opentype');
        font-weight: 300;
        font-style: italic;
    }

    @font-face {
        font-family: 'Varisse';
        src: url('/CDN/css/fonts/Varisse/Varisse-Medium.otf') format('opentype');
        font-weight: 500;
        font-style: normal;
    }

    @font-face {
        font-family: 'Varisse';
        src: url('/CDN/css/fonts/Varisse/Varisse-Medium-Ital.otf') format('opentype');
        font-weight: 500;
        font-style: italic;
    }

    @font-face {
        font-family: 'Varisse';
        src: url('/CDN/css/fonts/Varisse/Varisse-Regular.otf') format('opentype');
        font-weight: 400;
        font-style: normal;
    }

    @font-face {
        font-family: 'Varisse Serif';
        src: url('/CDN/css/fonts/Varisse Serif/Varisse-Serif-Bold.otf') format('opentype');
        font-weight: 700;
        font-style: normal;
    }

    @font-face {
        font-family: 'Varisse Serif';
        src: url('/CDN/css/fonts/Varisse Serif/Varisse-Serif-Bold-Ital.otf') format('opentype');
        font-weight: 700;
        font-style: italic;
    }

    @font-face {
        font-family: 'Varisse Serif';
        src: url('/CDN/css/fonts/Varisse Serif/Varisse-Serif-Book.otf') format('opentype');
        font-weight: 350;
        font-style: normal;
    }

    @font-face {
        font-family: 'Varisse Serif';
        src: url('/CDN/css/fonts/Varisse Serif/Varisse-Serif-Book-Ital.otf') format('opentype');
        font-weight: 350;
        font-style: italic;
    }

    @font-face {
        font-family: 'Varisse Serif';
        src: url('/CDN/css/fonts/Varisse Serif/Varisse-Serif-Heavy.otf') format('opentype');
        font-weight: 900;
        font-style: normal;
    }

    @font-face {
        font-family: 'Varisse Serif';
        src: url('/CDN/css/fonts/Varisse Serif/Varisse-Serif-Ital.otf') format('opentype');
        font-weight: 400;
        font-style: italic;
    }

    @font-face {
        font-family: 'Varisse Serif';
        src: url('/CDN/css/fonts/Varisse Serif/Varisse-Serif-Light.otf') format('opentype');
        font-weight: 300;
        font-style: normal;
    }

    @font-face {
        font-family: 'Varisse Serif';
        src: url('/CDN/css/fonts/Varisse Serif/Varisse-Serif-Light-Ital.otf') format('opentype');
        font-weight: 300;
        font-style: italic;
    }

    @font-face {
        font-family: 'Varisse Serif';
        src: url('/CDN/css/fonts/Varisse Serif/Varisse-Serif-Medium.otf') format('opentype');
        font-weight: 500;
        font-style: normal;
    }

    @font-face {
        font-family: 'Varisse Serif';
        src: url('/CDN/css/fonts/Varisse Serif/Varisse-Serif-Medium-Ital.otf') format('opentype');
        font-weight: 500;
        font-style: italic;
    }

    @font-face {
        font-family: 'Varisse Serif';
        src: url('/CDN/css/fonts/Varisse Serif/Varisse-Serif-Regular.otf') format('opentype');
        font-weight: 400;
        font-style: normal;
    }

    @font-face {
        font-family: 'Varisse Sans';
        src: url('/CDN/css/fonts/Varisse Sans/Varisse-Sans-Bold.otf') format('opentype');
        font-weight: 700;
        font-style: normal;
    }

    @font-face {
        font-family: 'Varisse Sans';
        src: url('/CDN/css/fonts/Varisse Sans/Varisse-Sans-Bold-Ital.otf') format('opentype');
        font-weight: 700;
        font-style: italic;
    }

    @font-face {
        font-family: 'Varisse Sans';
        src: url('/CDN/css/fonts/Varisse Sans/Varisse-Sans-Book.otf') format('opentype');
        font-weight: 350;
        font-style: normal;
    }

    @font-face {
        font-family: 'Varisse Sans';
        src: url('/CDN/css/fonts/Varisse Sans/Varisse-Sans-Book-Ital.otf') format('opentype');
        font-weight: 350;
        font-style: italic;
    }

    @font-face {
        font-family: 'Varisse Sans';
        src: url('/CDN/css/fonts/Varisse Sans/Varisse-Sans-Heavy.otf') format('opentype');
        font-weight: 900;
        font-style: normal;
    }

    @font-face {
        font-family: 'Varisse Sans';
        src: url('/CDN/css/fonts/Varisse Sans/Varisse-Sans-Ital.otf') format('opentype');
        font-weight: 400;
        font-style: italic;
    }

    @font-face {
        font-family: 'Varisse Sans';
        src: url('/CDN/css/fonts/Varisse Sans/Varisse-Sans-Light.otf') format('opentype');
        font-weight: 300;
        font-style: normal;
    }

    @font-face {
        font-family: 'Varisse Sans';
        src: url('/CDN/css/fonts/Varisse Sans/Varisse-Sans-Light-Ital.otf') format('opentype');
        font-weight: 300;
        font-style: italic;
    }

    @font-face {
        font-family: 'Varisse Sans';
        src: url('/CDN/css/fonts/Varisse Sans/Varisse-Sans-Medium.otf') format('opentype');
        font-weight: 500;
        font-style: normal;
    }

    @font-face {
        font-family: 'Varisse Sans';
        src: url('/CDN/css/fonts/Varisse Sans/Varisse-Sans-Medium-Ital.otf') format('opentype');
        font-weight: 500;
        font-style: italic;
    }

    @font-face {
        font-family: 'Varisse Sans';
        src: url('/CDN/css/fonts/Varisse Sans/Varisse-Sans-Regular.otf') format('opentype');
        font-weight: 400;
        font-style: normal;
    }

    @font-face {
        font-family: 'Liberator';
        src: url('/CDN/css/fonts/Liberator/Liberator-Light.otf') format('opentype');
        font-weight: 300;
        font-style: normal;
    }

    @font-face {
        font-family: 'Liberator';
        src: url('/CDN/css/fonts/Liberator/Liberator-Medium.otf') format('opentype');
        font-weight: 500;
        font-style: normal;
    }

    @font-face {
        font-family: 'Liberator';
        src: url('/CDN/css/fonts/Liberator/Liberator-Heavy.otf') format('opentype');
        font-weight: 900;
        font-style: normal;
    }

    @font-face {
        font-family: 'Quotes Caps';
        src: url('/CDN/css/fonts/Quotes/Quotes Caps.otf') format('opentype');
    }

    @font-face {
        font-family: 'Quotes Script';
        src: url('/CDN/css/fonts/Quotes/Quotes Script.otf') format('opentype');
    }

    /* ----------- modals ---------- */

    .modal-dialog-centered {
        display: flex;
        align-items: center;
        min-height: calc(100% - (/*#{$modal-dialog-margin}*/ 30px * 2));
    }
