.contact_us {
    bottom: 0;
    margin-bottom: 0;
    position: fixed;
    right: 0%;
    z-index: 3;
}

.contact_us__header {
    /*background-color: #4e83bd;*/
    background-color: #2e3842;
    border-radius: 4px 4px 0 0;
    color: #fff;
    cursor: pointer;
    font-family: "Droid Sans";
    margin: 0;
    padding: 10px 40px 10px 20px;
}
svg.contact_us__chat_icon {
    width: 25px;
    height: 20px;
    vertical-align: middle;
    margin-top: -4px;
    padding-right: 8px;
}

.contact_us:focus .contact_us__header {
    padding-bottom: 40px;
    transition: padding 0.3s;
}
.contact_us__header:hover {
    padding-bottom: 15px;
    transition: padding 0.3s;
}

.contact_us__header.active,
.contact_us__header.active:hover {
    padding-bottom: 15px;
}

.contact_us__body {
    background-color: #ececec;
    display: none;
    padding: 10px 0;
    position: relative;
}
.contact_us__body.active {
    display: block;
}

.contact_us__input {
    box-sizing: border-box;
    border: 1px solid #d7d7d7;
    display: block;
    margin: 10px auto;
    text-indent: 5%;
    width: 90%;
}

.contact_us__submit {
    background-color: #ffcc01;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    display: block;
    font-weight: bold;
    margin: 0 auto;
    padding: 5px 20px;
    text-align: center;
    text-transform: uppercase;
    transition: opacity 0.3s;
}
.contact_us__submit:hover {
    opacity: 0.8;
}

.contact_us__url {
    border: none;
    margin: 0;
    margin-top: -10px;
    max-height: 0;
    overflow: hidden;
    padding: 0px;
}

.contact_us__success {
    background-color: rgba(113,194,117, 0);
    color: #fff;
    cursor: default;
    font-family: "Droid Sans";
    font-weight: bold;
    height: 60%;
    opacity: 0;
    padding-top: 40%;
    pointer-events: none;
    position: absolute;
    text-align: center;
    transition: background-color 0.3s, opacity 0.3s;
    top: 0;
    width: 100%;
}
.contact_us__success.active {
    background-color: rgba(113,194,117, 0.8);
    opacity: 1;
    pointer-events: auto;
}



@media (max-width: 480px) {
    .contact_us {
        right: 0;
        width: 100%;
    }

    .contact_us__message {
        height: 40vh;
    }
}