img {
    border: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

html,
body {
    font-family: sans-serif;
    font-size: 22px;
    margin: 0;
}

.icon {
    height: 15px;
    margin-left: 0.5em;
}

#top_nav {
    font-size: 15px;
    position: relative;
}

#top_nav a {
    margin-right: 2em;
    text-decoration: none;
}

#top_nav a:link,
#top_nav a:visited {
    /* color: #13426b; */
    color: #007377;
}

#top_nav a:active,
#top_nav a:hover {
    /* color: #fc6719; */
    color: #97d700;
}

#nav_bar {
    background-color: rgba(255, 255, 255, 0.9);
    font-weight: bold;
    height: 2.5em;
    line-height: 2.5em;
    padding-left: 7em;
    position: absolute;
    top: 2em;
    width: calc(100% - 7em);
    z-index: 20;
    display: none;
}

#save_the_date {
    color: white;
    font-size: 15px;
    font-weight: bold;
    height: 50%;
    right: 200px;
    position: absolute;
    text-align: center;
    width: 200px;
}

.content {
    /* color: #13426b; */
    color: #333;
    margin: 0 auto;
    max-width: 1080px;
}

#main_content {
    /* color: #13426b; */
    color: #333;
    font-weight: bold;
    margin: 0 auto;
    max-width: 1080px;
    text-align: center;
}

#main_content p {
    line-height: 1.8em;
}

#main_content a:link,
#main_content a:visited {
    /* color: #fc6719; */
    color: #007377;
}

#main_content a:hover,
#main_content a:active {
    /* color: #13426b; */
    color: #97d700;
}

#hero {
    /*background-image: url('/img/hero_1.jpg');*/
    background-image: url('/img/events_hero.png');
    background-position: center center;
    background-size: cover;
    height: 500px;
    overflow: hidden;
    position: relative;
}

#save_the_date {
    /* background-color: rgba(252, 103, 25, 0.7); */
    background-color: rgba(0, 115, 119, 0.75);
    z-index: 15;
}

#view_events_button,
.button {
    /* background-color: #58b4e5; */
    background-color: #007377;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    padding: 1em;
}

#hero_fader {
    background-position: center center;
    background-size: cover;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 2;
}

#footer {
    /* background-color: #13426b; */
    background-color: #007377;
    /* border-top: 6px solid #fc6719; */
    border-top: 6px solid #97d700;
    height: 300px;
}

.non_mobile {
    display: none;
}

.content {
    margin: 1em auto;
    background-color: #fff;
    padding: 1em;
    line-height: 1.5em;
}

h2,
h3,
h4,
h5 {
    all: unset;
    margin-bottom: 0;
    padding-bottom: 0;
    font-weight: bold;
    font-size: 26px;
}

p {
    all: unset;
    display: block;
    margin: 0 0 1em 0;
}

a:link,
a:visited {
    all: unset;
    /* color: #13426b; */
    color: #007377;
    text-decoration: underline;
}

a:hover,
a:active {
    all: unset;
    /* color: #fc6719; */
    color: #97d700;
    text-decoration: none;
    cursor: pointer;
}

.text-huge {
    font-size: 44px;
}

ul {
    list-style-type: disc;
    margin-left: 1.5em;
}

#page_content img {
    max-width: 100%;
}

/* toggle */
/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}