#contactbutton, #contactclosebutton, #status {
    font-family: Impact;
    font-size: 16px;
    position: fixed;
    top: 10px;
    cursor: pointer;
    right: 0px;
    padding: 10px;
    padding-right: 20px;
    color: white;
    z-index: 30;
    box-sizing: border-box;
    box-shadow: #444 -2px 2px 4px;
    border-left: solid darkorange 8px;
    background-color: rgba(0, 159, 183, 0.8);
    min-width: 0px;
    max-width: 100px;
    overflow: hidden;
    transition: max-width 1s ease-in-out, padding 1s ease-in-out, border-width 1s ease-in-out 0.25s;
}
#status {
    visibility: hidden;
    cursor: default;
    top: 50px;
    background-color: rgba(255, 140, 0, 0.7);
}
#status.sending {
    visibility: visible;
}
#status.sent {
    visibility: visible;
    background-color: rgba(0, 166, 39, 0.7);
}
#status.failed {
    visibility: visible;
    background-color: rgba(160, 10, 10, 0.7);
}
#contactbutton.active, #contactclosebutton.active {
    max-width: 0;
    border-width: 0;
    padding: 10px 0 10px 0;
    box-sizing: border-box;
}

#contact {
    background-color: rgba(0, 159, 183, 0.7);
    color: white;
    width: 400px;
    box-sizing: border-box;
    height: 100%;
    padding: 5px;
    padding-top: 10px;
    position: fixed;
    top: 0;
    right: -425px;
    z-index: 20;
    box-shadow: #444 -5px 5px 10px;
    transition: right 1s ease-in-out;
}
#contact.active {
    right: 0;
}
#contact * {
    display: block;
    padding: 5px;
    margin: 5px;
}
#contact label {
    text-decoration: underline;
    font-size: 30px;
    font-family: 'Ceviche One', cursive;
}
#contactform {
    height: 100%;
}
.required::after {
    content: "*";
    display: inline-block;
    text-decoration: none;
    font-weight: normal;
}
#message {
    width: 350px;
    min-height: 100px;
    height: calc(100vh - 300px);
}


.contactContainer {
    vertical-align: top;
    width: 70px;
    height: 70px;
    padding: 8px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-decoration: none;
    margin: 0 3px;
    color: black;
    word-break: break-word;
}

#contactButtons {
    width: 100%;
    text-align: center;
}

#emailicon, #phone {
    font-size: 10px;
}