﻿@font-face {
    font-family: Nunito-Regular;
    src: url(/fonts/Nunito-Regular.ttf);
}

@font-face {
    font-family: Avenir-Next;
    src: url(/fonts/Avenir-Next.ttc);
}
@font-face {
    font-family: Avenir-Next-Condensed;
    src: url(/fonts/Avenir-Next-Condensed.ttc);
}

body {
    /*font-family: "Nunito",Helvetica,Arial,Verdana,sans-serif,Avenir-Next, Avenir-Next-Condensed !important;*/
    background: white;
    color: #666;
    font-size: 15px;
    line-height: 1.75;
    margin-top: 0 !important;
}

.brand-font {
    font-family: Nunito-Regular !important;
}

.bg-brand {
    background-color: #AA3138 !important; /*#EEDAC1*/
}

.brand {
    color: #AA3138 !important; /*#EEDAC1*/
}

.ticket-color {
    background-color: #AA3138 !important;
}

.header-background-color {
    background-color: #151515;
}

.capitalize{
    text-transform: uppercase !important;
}

.card-status {
    min-height: 3px;
}

a {
    /*color: #92badd;*/
    display: inline-block;
    text-decoration: none;
    font-weight: 400;
}

h2 {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin: 40px 8px 10px 8px;
    color: #cccccc;
}

.wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 20px;
}

#formContent {
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 450px;
    position: relative;
    padding: 0px;
    -webkit-box-shadow: 0 10px 30px 0 rgba(0,0,0,0.3);
    box-shadow: 0 10px 30px 0 rgba(0,0,0,0.3);
    box-shadow: 0 10px 30px 0 rgba(0,0,0,0.3);
    text-align: center;
}

#formFooter {
    background-color: #f6f6f6;
    border-top: 1px solid #dce8f1;
    padding: 25px;
    text-align: center;
    -webkit-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
}

h2.inactive {
    color: #cccccc;
}

h2.active {
    color: #0d0d0d;
    border-bottom: 2px solid #5fbae9;
}

/*input[type=button], input[type=submit], input[type=reset] {
    background-color: #EEDAC1;*/ /*#56baed*/
    /*border: none;
    color: black;*/ /*white*/
    /*padding: 15px 80px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    -webkit-box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
    box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    margin: 5px 20px 40px 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover {
        background-color: #39ace7;
    }

    input[type=button]:active, input[type=submit]:active, input[type=reset]:active {
        -moz-transform: scale(0.95);
        -webkit-transform: scale(0.95);
        -o-transform: scale(0.95);
        -ms-transform: scale(0.95);
        transform: scale(0.95);
    }

input[type=text], input[type=email], input[type=password], select {*/
    /*background-color: #f6f6f6;*/
    /*border: none;
    color: #0d0d0d;*/
    /*padding: 15px 32px;*/
    /*text-align: center;*/
    /*text-decoration: none;
    display: inline-block;
    font-size: 16px;*/
    /*margin: 5px;*/
    /*width: 85%;*/
    /*border: 1px solid lightgray;*/ /*#f6f6f6*/
    /*-webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
}

    input[type=text]:focus, input[type=email]:focus, input[type=password]:focus {
        background-color: #fff;
        border-bottom: 2px solid #5fbae9;
    }

    input[type=text]:placeholder, input[type=email]:placeholder, input[type=password]:placeholder {
        color: #cccccc;
    }*/

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    opacity: 0;
    -webkit-animation: fadeIn ease-in 1;
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
}

    .fadeIn.first {
        -webkit-animation-delay: 0.4s;
        -moz-animation-delay: 0.4s;
        animation-delay: 0.4s;
    }

    .fadeIn.second {
        -webkit-animation-delay: 0.6s;
        -moz-animation-delay: 0.6s;
        animation-delay: 0.6s;
    }

    .fadeIn.third {
        -webkit-animation-delay: 0.8s;
        -moz-animation-delay: 0.8s;
        animation-delay: 0.8s;
    }

    .fadeIn.fourth {
        -webkit-animation-delay: 1s;
        -moz-animation-delay: 1s;
        animation-delay: 1s;
    }

.underlineHover:after {
    display: block;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background-color: #56baed;
    content: "";
    transition: width 0.2s;
}

.underlineHover:hover {
    color: #0d0d0d;
}

    .underlineHover:hover:after {
        width: 100%;
    }

*:focus {
    outline: none;
}

#icon {
    width: 40%;
}

.shadowBox {
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    background: #fff;
    width: 90%;
    max-width: 450px;
    position: relative;
    -webkit-box-shadow: 0 10px 30px 0 rgba(0,0,0,0.3);
    box-shadow: 0 10px 30px 0 rgba(0,0,0,0.3);
    box-shadow: 0 10px 30px 0 rgba(0,0,0,0.3);
    text-align: center;
    padding: 25px;
}

.shadowBox-light {
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    background: #fff;
    width: 90%;
    max-width: 450px;
    position: relative;
    -webkit-box-shadow: 0 10px 10px 0 rgba(0,0,0,0.3);
    box-shadow: 0 10px 10px 0 rgba(0,0,0,0.3);
    box-shadow: 0 10px 10px 0 rgba(0,0,0,0.3);
    text-align: center;
    padding: 25px;
}

.pointer {
    cursor: pointer !important;
}

.section-h1 {
    text-transform: uppercase;
    font-weight: 900;
    /*border-left: 10px solid #fa3a69;
    padding-left: 10px;*/
    margin-bottom: 30px
}

/*.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
    box-shadow: none !important;
}*/

.text-white {
    color: white;
}

.text-black {
    color: black;
}

.border-none {
    border: none !important;
}

.border-radius-3 {
    border-radius: 3px;
}

.width85 {
    width: 85% !important;
}

.width100 {
    width: 100% !important;
}

.width90 {
    width: 90% !important;
}

.width50 {
    width: 50% !important;
}

.width25 {
    width: 25% !important;
}

.center-button {
    display: block;
    margin: 0 auto;
}

.margin-top-10 {
    margin-top: 10px;
}

.table-borderless td, .table-borderless th {
    border: none !important;
}

.table-condensed-borderless > thead > tr > th,
.table-condensed-borderless > tbody > tr > th,
.table-condensed-borderless > tfoot > tr > th,
.table-condensed-borderless > thead > tr > td,
.table-condensed-borderless > tbody > tr > td,
.table-condensed-borderless > tfoot > tr > td {
    line-height: 1.42857143;
    vertical-align: top;
    padding: 5px;
    border: none !important;
    width: 100%;
    margin-bottom: 20px;
}

.shadow-button {
    border: none;
    padding: 15px 80px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    -webkit-box-shadow: 0 10px 15px 0 rgba(95,186,233,0.4);
    box-shadow: 0 10px 15px 0 rgba(95,186,233,0.4);
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    margin: 5px 20px 40px 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
}

.festival-date {
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    vertical-align: middle;
    font-size: 18px;
}

.separator {
    display: flex;
    align-items: center;
    text-align: center;
}

    .separator::before, .separator::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #E5E5E5;
    }

    .separator::before {
        margin-right: .25em;
    }

    .separator::after {
        margin-left: .25em;
    }

    .separator span {
        font-weight: 700;
        text-transform: uppercase;
        padding-left: 10px;
        padding-right: 10px;
        font: normal 600 30px / 40px "Oswald",Helvetica,Arial,Verdana,sans-serif;
        font-style: normal;
        font-variant-ligatures: normal;
        font-variant-caps: normal;
        font-variant-numeric: normal;
        font-variant-east-asian: normal;
        font-stretch: normal;
        font-size: 30px;
        line-height: 40px;
        font-family: Oswald, Helvetica, Arial, Verdana, sans-serif;
    }
    .separator label {
        font-weight: 700;
        text-transform: uppercase;
        padding-left: 10px;
        padding-right: 10px;
        font: normal 600 30px / 40px "Oswald",Helvetica,Arial,Verdana,sans-serif;
        font-style: normal;
        font-variant-ligatures: normal;
        font-variant-caps: normal;
        font-variant-numeric: normal;
        font-variant-east-asian: normal;
        font-stretch: normal;
        line-height: 40px;
        font-family: Oswald, Helvetica, Arial, Verdana, sans-serif;
    }

.separator-right {
    display: flex;
    align-items: center;
    text-align: center;
}

    .separator-right::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #E5E5E5;
    }

    .separator-right::after {
        margin-left: .25em;
    }

    .separator-right span {
        font-size: 18px;
        font-weight: 700;
        text-transform: uppercase;
        /*padding-left: 10px;
        padding-right: 10px;*/
        font: normal 600 30px / 40px "Oswald",Helvetica,Arial,Verdana,sans-serif;
        font-style: normal;
        font-variant-ligatures: normal;
        font-variant-caps: normal;
        font-variant-numeric: normal;
        font-variant-east-asian: normal;
        font-weight: 600;
        font-stretch: normal;
        font-size: 30px;
        line-height: 40px;
        font-family: Oswald, Helvetica, Arial, Verdana, sans-serif;
    }

    .separator-right label {
        font-size: 22px;
        text-transform: uppercase;
        font-family: "Nunito",Helvetica,Arial,Verdana,sans-serif !important;
        font-variant-caps: normal;
    }

.margin-bottom-10{
    margin-bottom: 10px !important;
}
.margin-bottom-5 {
    margin-bottom: 5px !important;
}
.margin-bottom-20 {
    margin-bottom: 20px !important;
}

.margin-top-20 {
    margin-top: 20px !important;
}


/*.brand-font {
    font-family: 'Nunito',Helvetica,Arial,Verdana,sans-serif;
}*/

.font-bold{ font-weight:700;}
.font-uppercase {
    text-transform: uppercase;
}

.font-size-0-75em {
    font-size: 0.75em !important;
}
.font-size-1em{font-size: 1em;}
.font-size-1-2em {
    font-size: 1.2em;
}
.font-size-1-1em {
    font-size: 1.1em;
}
.font-size-1-3em {
    font-size: 1.3em;
}
.font-size-1-5em {
    font-size: 1.5em;
}
.font-size-2em {
    font-size: 2em;
}

.bottom-border {
    border-bottom: 1px solid #E5E5E5;
    margin: 5px 10px !important;
}

/*.bottom-border::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #E5E5E5;
}*/

.invalid{
    font-size: 1em;
    color: red;
    font-style: italic;
}

.text-uppercase{ text-transform: capitalize !important;}

.remove-bullets {
    list-style-type: none;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-bar-menu-li {
    padding-right: 35px !important;
    text-transform: uppercase !important;
    margin-top: 10px;
}

.padding-right-5{ padding-right: 5px !important; }
.padding-right-10 {
    padding-right: 10px !important;
}
.padding-right-15 {
    padding-right: 15px !important;
}
.padding-right-35 {
    padding-right: 35px !important;
}

.float-left {
    float: left !important;
}

.float-right {
    float: right !important;
}

.float-none {
    float: none !important;
}

.VertMiddle {
    vertical-align: middle;
}

#footer.footer-outline-decoration {
    border-top: 1px solid rgba(178,178,178,.96);
}

#footer.solid-bg {
    background: #f3f3f3 none repeat center top;
}

.footer {
    padding: 0;
    min-height: 200px;
}

.footer {
    -ms-grid-column: 1;
    -ms-grid-row: 6;
    grid-area: footer;
}

.pull-right {
    float: right !important;
}

.pull-left {
    float: left !important;
}

.border-radius-0{
    border-radius: unset;
}

.btn-ticketing {
    color: #323A47;
    border-color: #323A47;
}

    .btn-ticketing:hover {
        color: #fff;
        background-color: #323A47;
        border-color: #323A47;
    }

    .btn-ticketing:focus, .btn-ticketing.focus {
        box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
    }

    .btn-ticketing.disabled, .btn-ticketing:disabled {
        color: #343a40;
        background-color: transparent;
    }

    .btn-ticketing:not(:disabled):not(.disabled):active, .btn-ticketing:not(:disabled):not(.disabled).active,
    .show > .btn-ticketing.dropdown-toggle {
        color: #fff;
        background-color: #343a40;
        border-color: #343a40;
    }

        .btn-ticketing:not(:disabled):not(.disabled):active:focus, .btn-ticketing:not(:disabled):not(.disabled).active:focus,
        .show > .btn-ticketing.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
        }


.feat-short-selected {
    background-color: #0B1224 !important;
    color: white;
}

.feat-short-selected:hover {
    background-color: #0B1224 !important;
    color: white;
}
