@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
    box-sizing: border-box;
}
/* 
    vendor prefixes 

    -webkit-   Safari      
    -moz-      Firefox
    -ms-       IE10+/Edge

    font conversion 
    
    24pt = 32px = 3.2rem - H1
    22.5pt = 30px = 3rem
    18pt = 24px = 2.4rem - H2
    14.5pt = 20px = 2rem
    13.5pt = 18px = 1.8rem - H3, Label, Button
    12pt = 16px = 1.6rem - H4, P
    10.5pt = 14px = 1.4rem
    9pt = 12px = 1.2rem
    7.5pt = 10px = 1rem (base)
*/
html{
    font-size: 62.5%;
}
body{
    float: left;
    width: 100%;
    max-width: 1500px;
    height: auto;
    min-height: 100%;
    background-color: #f2f2f2;
}
h2{
    float: left;
    width: 100%;
    height: auto;
    font-size: 6rem;
    color: #9b1b20;
    margin-bottom: 10px;
}
h3{
    float: left;
    width: 100%;
    height: auto;
    font-size: 3rem;
    color: #404041;
    margin-bottom: 10px;
}
p{
    float: left;
    width: 100%;
    height: auto;
    font-size: 2rem;
}
button{
    float: right;
    width: 50%;
    height: 50px;
    background-color: #9b1b20;
    color: #fdfdfd;
    border: 2px solid transparent;
    border-radius: 3px;
    font-size: 2rem;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.4);
    transition-duration: 0.2s;
}
button:hover,
button:focus{
    box-shadow: none;
    cursor: pointer;
    border-color: #620f14;
}
/*menu*/
header{
    float: left;
    width: 100%;
    height: 50px;
    background-color: #9b1b20;
    position: relative;
}
.commissionerMenuContainer{
    float: left;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.commissionerMenuContainer a{
    float: left;
    width: 20%;
    height: 50px;
    color: #fdfdfd;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.commissionerMenuContainer a:hover,
.commissionerMenuContainer a:focus{
    background-color: #f2f2f2;
    color: #9b1b20;
}
/*mobile menu*/
.mobileCommissionerMenuContainer{
    float: left;
    width: 100%;
    display: none;
}
.menuButtonContainer{
    float: right;
    width: 250px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.menuButtonContainer:hover,
.menuButtonContainer:focus{
    cursor: pointer;
    background-color: rgba(0,0,0,0.4);
}

.menuButtonContainer p{
    width: auto;
    color: #fdfdfd;
    font-size: 3rem;
    user-select: none;
}
.menuOptionsContainer{
    float: right;
    position: absolute;
    z-index: 50;
    right: 0;
    top: 50px;
    width: 350px;
    height: auto;
    background-color: #9b1b20;
}
#menuOptionsContainer{
    display: none;
}
.menuOptionsContainer a{
    float: right;
    width: 100%;
    height: auto;
    min-height: 50px;
    background-color: #9b1b20;
    color: #fdfdfd;
    font-size: 2rem;
    text-decoration: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-left: 10px solid rgba(0,0,0,0.4);
}
.menuOptionsContainer a:hover,
.menuOptionsContainer a:focus{
    background-color: rgba(0,0,0,0.4);
}
/*mobile menu end*/
.inputContainer{
    float: left;
    width: 60%;
    height: auto;
    margin-left: 20%;
}
input[type=text], input[type=email], select{
    float: left;
    width: 100%;
    height: 50px;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 3px;
    border: 2px solid #b7b7b7;
}
textarea{
    float: left;
    width: 100%;
    height: auto;
    min-height: 150px;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 3px;
    border: 2px solid #b7b7b7;
}
.inputContainer button{
    width: 33.33%;
    margin-top: 20px;
}

.wrapper{
    float: left;
    width: 100%;
    height: auto;
    position: relative;
}

.logoContainer{
    float: left;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
}
.logoContainer img{
    float: left;
    display: block;
    width: 20%;
    height: auto;
}
.logoText{
    float: left;
    width: 80%;
    height: auto;
    padding-left: 20px;
}
.logoContainer h1{
    float: left;
    width: 100%;
    height: auto;
    font-size: 6rem;
    color: #9b1b20;
}
.logoContainer h3{
    float: left;
    width: 100%;
    height: auto;
    font-size: 2rem;
    color: #9b1b20;
}
.commissionerPage a,
.commissionerPage p, 
.commissionerPage h1, 
.commissionerPage h2, 
.commissionerPage h3,
.commissionerPage input,
.commissionerPage label,
.commissionerPage button{
    font-family: "Libertinus Serif", serif;
    font-weight: 400;
    font-style: normal;
}
.commissionerPageHeader{
    float: left;
    width: 100%;
    height: auto;
    min-height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    /*
    background-image: url(https://gregorycarlson.com/images/commissionerBackground.png);
    background-size: cover;
    background-position: left bottom;
    */
}
.commissionerPageHeader .leftSide,
.commissionerPageHeader .rightSide{
    float: left;
    width: 50%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.commissionerPageHeader .logoContainer{
    justify-content: center;
}
.commissionerPageHeader .logoContainer img{
    display: block;
    width: 90%;
}
.commissionerPageHeader .logoText h1{
    float: left;
    width: 100%;
    font-size: 6rem;
}.commissionerPageHeader .logoText h2{
    font-size: 4rem;
    width: 100%;
}
.contactInfoContainer{
    float: left;
    width: 100%;
    height: auto;
}
.donateContainer{
    float: left;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}
.donateContainer a{
    float: right;
    width: 50%;
    height: 50px;
    background-color: #9b1b20;
    color: #fdfdfd;
    border: 2px solid transparent;
    border-radius: 3px;
    font-size: 2rem;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.4);
    transition-duration: 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.donateContainer a:hover,
.donateContainer a:focus{
    box-shadow: none;
    cursor: pointer;
    border-color: #620f14;
}
.rsvpContainer{
    float: left;
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 100px;
}
.rsvpEventTextContainer{
    float: left;
    width: 100%;
    height: auto;
    padding: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}
.rsvpEventTextContainer h2{
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}
.rsvpEventTextContainer p{
    width: 60%;
    font-size: 3rem;
    padding-left: 50px;
}
.rsvpEventDetailsContainer{
    float: left;
    width: 40%;
    background-color: #9b1b20;
    padding: 20px;
}
.rsvpEventDetailsContainer p{
    color: #fdfdfd;
}
a.rsvpText{
    display: inline-block;
    width: 100%;
    text-align: center;
    color: #9b1b20;
    font-size: 3rem;
    margin-top: 50px;
    font-weight: bold;
    text-decoration: none;
}
.rsvpText:hover, 
.rsvpText:focus{
    text-decoration: underline;
}
.rsvpEventImageContainer{
    float: left;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
}
.rsvpEventImage{
    float: left;
    width: 25%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.rsvpEventImage img{
    display: block;
    width: 100%;
    height: auto;
    max-width: 540px;
    max-height: 540px;
}
.inputContainer p{
    float: left;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}
.ticketDetailsContainer{
    float: left;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.addGuestButtonContainer{
    float: left;
    width: 50%;
}
.addGuestButtonContainer button{
    width: 100%;
    margin-bottom: 15px;
}
.ticketDetails{
    float: left;
    width: 100%;
    height: auto;
}
.pressReleaseContainer{
    float: left;
    width: 100%;
    height: auto;
    margin-bottom: 100px;
}
.pressReleaseHeader{
    float: left;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #9b1b20;
  margin-bottom: 20px;
  padding-top: 40px;
  padding-bottom: 40px;
  box-shadow: inset 0px -3px 10px 0px rgba(0,0,0,0.4);
  border-bottom: 5px solid #620f14;
}
.pressReleaseHeader h2 {
  color: #f2f2f2;
  padding-left: 40px;
  margin-bottom: 0;
}
.pressReleaseTextContainer{
    float: left;
    width: 80%;
    height: auto;
    margin-left: 10%;
}
.pressReleaseTextContainer p{
    margin-bottom: 20px;
}
.contactBanner{
    float: left;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #9b1b20;
    margin-bottom: 20px;
    margin-top: 75px;
    padding-top: 40px;
    padding-bottom: 40px;
    box-shadow: inset 0px -3px 10px 0px rgba(0,0,0,0.4);
    border-bottom: 5px solid #620f14;
}
.contactBanner h2{
    color: #fdfdfd;
    padding-left: 40px;
    margin-bottom: 0;
}
.contactContainer{
    float: left;
    width: 100%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 150px;
    position: relative;
}
.contactContainer input,
.contactContainer textarea{
    font-size: 2rem;
}
.contactContainer input:hover,
.contactContainer input:focus,
.contactContainer textarea:hover,
.contactContainer textarea:focus{
    border-color: #b31942;
}
.contactContainer textarea{
    min-width: 100%;
    max-width: 100%;
}
.disclaimer{
    float: left;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}
.checkboxContainer{
    float: left;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.checkboxLabelInput{
    float: left;
    width: 100%;
    height: auto;
    font-size: 2rem;
    margin-bottom: 10px;
}
.checkboxLabelInput:hover,
.checkboxLabelInput:focus-within{
    cursor: pointer;
    text-decoration: underline;
}
.contactAnimationContainer{
    display: none;/*block*/
    float: left;
    width: 60%;
    height: auto;
    padding: 25px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.4);
    border-radius: 3px;
    background-color: #fdfdfd;
    position: absolute;
    top: 0;
    left: 20%;
    right: 0;
    bottom: 0;
    scale: 0;
    opacity: 0;
    animation: contactMessageSentAnimation 0.75s forwards ease-in-out;
    transition-duration: 0.3s;
}
@keyframes contactMessageSentAnimation{
    0% { 
        scale: 0;
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    70%{
        scale: 1.1; 
    }
    100% { 
        scale: 1; 
        opacity: 1;
    }
}
.contactAnimationContainer p{
    float: left;
    width: 100%;
    height: auto;
    padding: 20px;
    font-size: 4rem;
    text-align: center;
}
.animatedDots{
    display: inline-block;
}
.animatedDots::after {
    text-align: left;
    margin-left: 5px;
    width: 75px;
    content: '';
    display: inline-block;
    animation: dots 1.5s steps(3, end) infinite;
}
@keyframes dots {
    0% {
      content: '';
    }
    33% {
      content: '.';
    }
    66% {
      content: '..';
    }
    100% {
      content: '...';
    }
 }
 #contactMessageRecieved{
     display: none;
 }
 .contactAnimationContainer button{
     float: left;
     margin-left: 25%;
     margin-top: 50px;
 }
footer{
    float: left;
    width: 100%;
    height: auto;
    min-height: 200px;
    background-color: #fdfdfd;
    border-top: 5px solid #203059;
}
.footerDisclaimer{
    float: left;
    width: 100%;
    height: auto;
    margin-top: 25px;
    margin-bottom: 25px;
    text-align: center;
    font-size: 3rem;
}
.footerLinksContainer{
    float: left;
    width: 100%;
    height: auto;
}
.footerSection{
    float: left;
    width: 50%;
    height: auto;
    padding: 20px;
}
.footerSection h4{
    float: left;
    width: 100%;
    height: auto;
    font-size: 2rem;
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 3px solid #203059;
    color: #203059;
}
.footerSection a{
    float: left;
    width: 100%;
    height: auto;
    min-height: 30px;
    font-size: 2rem;
    padding-left: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    text-decoration: none;
    color: #000000;
}
.footerSection a:hover,
.footerSection a:focus{
    cursor: pointer;
    text-decoration: underline;
}
.copyRight{
    float: left;
    display: block;
    width: 100%;
    height: auto;
    text-align: right;
    padding-right: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
}

@media only screen and (min-width: 1500px) {
/* Extra large devices (large laptops and desktops, 1500px and up) */
    html{
        float: left;
        width: 100%;
        height: auto;
        min-height: 100%;
        display: flex;
        justify-content: center;
    }
    body{
        max-width: 1500px;
        height: auto;
        margin: 0px auto;
        box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
    }
}
@media only screen and (max-width: 1499px) {
/* Extra large devices (large laptops and desktops, 1200px and up) */
    .logoContainer h1{
        font-size: 4rem;
    }
    .logoContainer h3{
        font-size: 1.75rem;
    }
}
@media only screen and (max-width: 1199px) {
/* Large devices (laptops/desktops, 992px and up) */
    h2{
        font-size: 5rem;
    }
    .commissionerPageHeader .leftSide{
        width: 30%;
    }
    .commissionerPageHeader .rightSide{
        width: 70%;
    }
} 
@media only screen and (max-width: 991px) {
/* Medium devices (landscape tablets, 768px and up) */
    h2{
        font-size: 4rem;
    }
    .inputContainer{
        width: 80%;
        margin-left: 10%;
    }
    .ticketDetailsContainer button{
        width: 75%;
    }
    .addGuestButtonContainer{
        width: 100%;
    }
}
@media only screen and (max-width: 767px) {
/* Small devices (portrait tablets and large phones, 600px and up) */
    h2{
        font-size: 3.5rem;
    }
    h3{
        font-size: 2.5rem;
    }
    .logoContainer{
        padding-top: 0;
        padding-bottom: 0;
    }
    .logoContainer img{
        width: 15%;
    }
    .inputContainer button{
        width: 70%;
    }
    .commissionerPageHeader{
        flex-wrap: wrap;
    }
    .commissionerPageHeader .leftSide,
    .commissionerPageHeader .rightSide{
        width: 100%;
    }
    .commissionerPageHeader .logoContainer img{
        width: 50%;
    }
    .contactAnimationContainer{
        width: 100%;
        left: 0;
    }
    .donateContainer{
        margin-bottom: 50px;
    }
}
@media only screen and (max-width: 600px) {
/* Extra small devices (phones, 600px and down) */
    .mobileCommissionerMenuContainer{
        display: block;
    }
    .commissionerMenuContainer{
        display: none;
    }
    .inputContainer{
        width: 80%;
        margin-left: 10%;
    }
    .inputContainer button{
        width: 100%;
    }
    .footerSection{
        width: 100%;
    }
    .commissionerPageHeader{
        flex-wrap: wrap;
    }
    .commissionerPageHeader .leftSide{
        width: 100%;
    }
    .commissionerPageHeader .rightSide{
        width: 100%;
    }
    .ticketDetailsContainer button{
        width: 100%;
    }
}
@media only screen and (max-width: 400px) {
/* Super Extra small devices (phones, 400px and down) */
    .logoContainer h1{
        font-size: 3rem;
    }
    .logoContainer img{
        width: 20%;
    }
    .inputContainer{
        width: 90%;
        margin-left: 5%;
    }
}