.contact-button {
    position: fixed;
    bottom: 55px;
    background-color: #51b848;
    border: 1px solid #51b848;
    right: 0;
    height: 55px;
    z-index: 50;
}

.contact-button:hover {
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #51b848;
}

.contact-button svg {
    stroke: #ffffff;
    stroke-width: 2;
}

.contact-button:hover svg {
    stroke: #000000;
    stroke-width: 2;
}

.contact-slide-in .content {
    height: 100%;
    padding-top: 2.6rem;
    padding-bottom: 2.6rem;
    overflow-y: auto;
}

.contact-slide-in .contact-buttons {
    display: flex;
    justify-content: space-between;
    left: 2.6rem;
    right: 2.6rem;
}

.form-hint {
    margin-top: 1rem;
    font-size: 10px;
    color: #888;
}

textarea {
    max-height: 900px;
    height: 200px;
}

.contact-slide-in {
    border-top: 3px solid #51b848;
    border-bottom: 3px solid #51b848;
    right: 0;
    left: 0;
}

@media (min-width: 576px) {
    .contact-slide-in {
        left: 10%;
    }
}

@media (min-width: 768px) {
    .contact-slide-in {
        left: 20%;
    }

    textarea {
        height: 300px;
    }
}

@media (min-width: 992px) {
    .contact-slide-in {
        left: 30%;
    }
}

@media (min-width: 1200px) {
    .contact-slide-in {
        left: 40%;
    }
}

@media (min-width: 1400px) {
    .contact-slide-in {
        left: 50%;
    }
}

@media (min-width: 1650px) {
    .contact-slide-in {
        left: 60%;
    }
}

@media (min-width: 1900px) {
    .contact-slide-in {
        left: 70%;
    }
}

