button {
    width: 100%;
    border-radius: 1em !important;
    font-size: larger;
}

input, select {
    width: 100% !important;
    font-size: x-large !important;
    margin-bottom: 0em !important;
}

.fe_input_box {
    margin-bottom: 1em;
}

.fe_input_hide {
    display: none;
}

.fe_input_show {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: large;
}

.fe_input_content  {
    background: #ffeadc;
    border-radius: 1em;
    padding: 1em;
    margin-bottom: 1em;
}

.fe_success_success {
    display: block;
    align-items: center;
    justify-content: center;
    font-size: x-large;
    width: 50%;
    margin: 1em 25% 1em 25%;
    background: #ffeadc;
    border-radius: 1em;
    padding: 1em;
    text-align: center;
}

.fe_email_share_disclaimer {
    font-size: x-small;
}

.fe_success_none {
    display: none;
}

.fe_main_content_hide {
    display: none;
}

.fe_main_content {
    display: block;
    align-items: center;
    justify-content: center;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    border: .25em solid #ffeadc;
    border-radius: 1em;
    margin-bottom: 1em;
    padding: .5em 2em;
    font-size: large;
    box-sizing: border-box;
}

.fe_schedule {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1em;
    overflow: scroll;
}

.fe_ts_even {
    background-color: #ffeadc !important;
}

.fe_ts_odd {
    background-color: #fff7f2 !important;
}

.fe_response_none {
    display: none;
}

.fe_response_appears {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: xx-large;
    width: 50%;
    margin: 1em 25% 1em 25%;
    background: #ffeadc;
    border-radius: 1em;
    padding: 1em;
}

.addeventatc {
    display: block;
}


/* Reset Select */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    box-shadow: none;
    border: 0 !important;
    background: #FFFFFF;
    background-image: none;
    margin-bottom: 0px !important;
}
/* Remove IE arrow */
select::-ms-expand {
    display: none;
}
/* Custom Select */
.select {
    position: relative;
    display: flex;
    width: 100%;
    line-height: 3;
    background: #FFFFFF;
    overflow: hidden;
    border-radius: .5em;
}
select {
    flex: 1;
    padding: 0 .5em;
    color: #fff;
    cursor: pointer;
}
/* Arrow */
.select::after {
    content: '\25BC';
    position: absolute;
    top: .15em;
    right: 0;
    padding: 0 1em;
    background: #FFFFFF;
    cursor: pointer;
    pointer-events: none;
    -webkit-transition: .25s all ease;
    -o-transition: .25s all ease;
    transition: .25s all ease;
}
/* Transition */
.select:hover::after {
    color: #f39c12;
}

