﻿* {
    box-sizing: border-box;
}

@font-face {
    font-family: 'Copperplate Gothic';
    src: url("/Content/copperplate_gothic_bold_regular-webfont.woff") format("woff"), url('/Content/COPPERPLATE GOTHIC BOLD REGULAR.TTF') format('truetype');
}
body {
    padding: 0;
    margin:0;
    margin-top: 110px;
    margin-bottom: 60px;
    font-size: 18px;
}

header {
    position: fixed;
    top: 0;
    padding: 5px;
    padding-bottom: 0;
    width: 100%;
    border-bottom: 1px solid black;
    z-index:1000;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding-top: 5px;
    padding-left: 10px;
    z-index: 1000;
}

.copyright {
    float: right;
    display:inline-block;
    vertical-align:top;
    padding-top:5px;
    padding-right: 5px;
}

.socialMedia {
    display: inline-block;
    margin-left: 20px;
}

th {
    vertical-align: top;
}

.socialMediaIcon {
    width: 30px;
}

.educationVideo {
    width: 100%;
    margin: 20px auto;
}
.ajax__html_editor_extender_button {
    min-width: 10px !important;
    background-color: #c2c2c2 !important;
    padding: 0 !important;
}

.ajax__html_editor_extender_texteditor {
    background-color: white;
}

.logo {
    height: 75px;
    display: inline-block;
    margin-right:10px;
}

.logoImg {
    height: 75px;
    border: 0;
}

.banner {
    display:inline-block;

}

.loginLocation {
    position: absolute;
    top: 5px;
    left: unset;
    right: 5px;
    z-index: 100;
}
.title {
    display: inline-block;
    font-size:2em;
    vertical-align:top;
}

.subTitle {
    font-size:0.5em;
}

.nav {
    display:inline-block;
    margin-left:50px;
    z-index: 120;
}

button, input[type=submit], input[type=button], .button, .smallbutton, .linkButton, .labelbutton {
    background-color: lightgrey;
    color: black;
    font-family: 'Copperplate Gothic';

    border-radius: 7px;
    border:0.5px outset black;
    padding: 10px 20px;
    font-size: 18px;
    min-width: 150px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    margin: 0 2px 0 2px;
}
    button:disabled, input[type=submit]:disabled, input[type=button]:disabled, .button:disabled .smallbutton:disabled, .linkButton:disabled {
        color: #888888;
        background-color: lightgrey;
        cursor: default;
    }

.smallbutton, .linkButton {
    border-radius: 5px !important;
    padding: 4px 5px !important;
    font-size: 14px !important;
    min-width: 10px !important;
    margin: 5px 2px 0 2px !important;
}

.buttonAsLink {
    background-color: transparent !important;
    border: none !important;
    text-align: left !important;
    font-family: inherit !important;
    padding: 0 !important;
    font-weight: normal !important;
    min-width:0 !important;
}

input[type="text"], select, input[type="password"], input[type="number"], input[type="url"], textarea, input[type="date"], input[type="datetime"],
input[type="datetime-local"], input[type="email"], input[type="tel"] {
    border-radius: 5px;
    padding: 3px;
    border-width: 2px;
    border-style: inset;
    border-color: #eeeeee;
    font-size: 16px;
    vertical-align: top;
    margin: 5px;
    width: 175px;
}

select {
    height: 25px;
    vertical-align: top;
    max-width: 175px;
}

textarea {
    padding: 10px;
    resize: none;
}

option {
    min-height: 1em;
    height: 1em;
    font-size: 0.85em;
}

input[type=checkbox] {
    /* Double-sized Checkboxes */
    -ms-transform: scale(2); /* IE */
    -moz-transform: scale(2); /* FF */
    -webkit-transform: scale(2); /* Safari and Chrome */
    -o-transform: scale(2); /* Opera */
    transform: scale(2);
    padding: 10px;
    margin-top: 15px;
    margin-left: 13px;
    margin-right: 13px;
}

/* Might want to wrap a span around your checkbox text */
.checkboxtext {
    /* Checkbox text */
    font-size: 110%;
    display: inline;
}

p {
    margin: 5px 0;
}

.content {
    min-width:300px;
    width: 75%;
    margin: auto;
}

.contentBox {
    width: 100%;
    padding: 20px;
    margin-bottom: 10px;
    text-align: left;
    vertical-align:top;
}

.rounded {
    border-radius: 10px;
}

.expander {
    height: 25px;
    overflow-y: hidden;
    border: 2px solid red;
    border-radius: 20px;
    padding: 15px;
    transition: 3s ease-out;
}
.expander:hover {
    height: auto;
}

.bullet::before {
    content: "\2022";
    color: red;
    font-size: 1.2em;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.bullet2::before {
    content: "\2605";
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

h1 {
    margin-block-start: 0.25em;
    margin-block-end: 0.5em;
}

h2 {
    margin-block-start: 0.25em;
    margin-block-end: 0.5em;
}

h3 {
    margin-block-start: 0.25em;
    margin-block-end: 0.5em;
}
h4 {
    margin-block-start: 0.25em;
    margin-block-end: 0.5em;
}
ul {
    list-style: none;
}
    ul li::before {
        content: "\2022"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
        color: red; /* Change the color */
        font-weight: bold; /* If you want it to be bold */
        display: inline-block; /* Needed to add space between the bullet and the text */
        width: 1em; /* Also needed for space (tweak if needed) */
        margin-left: -1em; /* Also needed for space (tweak if needed) */
    }

.homeFlex {
    clear: left;
    float: left;
    width: 100%;
}
.homeContent {
    vertical-align: top;
    overflow: hidden;
    width:unset;
}

.homeCalendar {
    vertical-align: top;
    margin-right: 20px;
    float: left;
    width: 30%;
}

.textBox {
    background-color: #aaaaaa;
    border-radius:10px;
    padding:20px;
    width: calc(100% - 40px);
}

.contactLink{
    font-size:1.25em;
}

.errorLabel {
    border-radius: 5px;
    background-color: white;
    font-size: 1.5em;
    color: red;
    font-weight: bold;
}


.dataItem {
    display: inline-block;
    vertical-align: top;
    margin-top: 8px;
}

.fieldlabelright {
    font-weight: bold;
    display: inline-block;
    width: 150px;
    text-align: right;
    vertical-align: top;
    margin-top: 8px;
}

.fieldlabelleft {
    font-weight: bold;
    display: inline-block;
    width: 150px;
    vertical-align: top;
    margin-top: 8px;
}

.fieldlabel {
    font-weight: bold;
    display: inline-block;
    vertical-align: top;
    margin-top: 8px;
}


.shrinkMenu {
    width: 1.15em;
    height: 1.15em;
    overflow: hidden;
}
    .shrinkMenu:hover {
        height: auto;
        width: auto;
    }

.shrunk {
    height: 100px;
}
    .shrunk::before {
        content: "<div onclick='expand(this)' class='fieldlabelleft'>More...</div>";
    }

.expanded {
    height:auto;
}
    .expanded::before {
        content: "<div onclick='shrink(this)' class='fieldlabelleft'>Less...</div>";
    }


.errorLabel {
    font-size:1.25em;
    font-weight:bold;
    color:red;
}

.fundColumn {
    display:inline-block;
    padding:5px;
    width:100px;
    height:35px;
    overflow:hidden;
}


.notificationButton {
    color: white;
    background-color: red;
    border: 2px solid white;
    font-size: 0.5em;
    padding: 0.15em 0.5em;
    margin: 0;
    vertical-align: text-bottom;
    border-radius: 100%;
    min-width: 5px;
    position: relative;
    top: -5px;
}
    .notificationButton::after {
        content: '!';
    }

.infoButton {
    color: white;
    background-color: blue;
    border: 2px solid white;
    font-size: 0.75em;
    padding: 2px 7px;
    margin: 0;
    vertical-align: text-bottom;
    min-width: 10px;
    border-radius: 100%;
}

    .infoButton::after {
        content: '?';
    }

.mailinglistSubscribe {
    margin: 0 auto;
    width: max-content;
    background-color: white;
    text-align: center;
    margin-bottom: 5px;
    margin-right: 25px;
    border-radius: 7px;
    padding: 0 7px;
    display: inline-block;
    float: right;
}

.subscribTitle {
    display: inline-block;
    margin-top:5px;
    color:#666666;
}

.mailinglistSubscribe .smallbutton {
    margin-top:5px;
}

.supportTicketDiv {
    width: 60%;
    display: inline-block;
    vertical-align: top;
}

.supportTicketImg {
    width: 39%;
    display: inline-block;
    vertical-align: top;
}

.instructions {
    font-size: 1.5em;
}

.ticketSalesEnd{
    font-weight:bold;
}

.displayElipsis {
    color: blue;
    border: none;
    background-color: transparent;
    padding: 2px 4px;
    margin: 0;
    vertical-align: text-bottom;
    min-width: 10px;
}

    .displayElipsis::after {
        content: '...';
    }