.contact_request_message_001 {
    position: absolute;
    top: 100px;
    left: 0;
    display: flex;
    padding: 20px 30px;
    align-items: center;
    z-index: 10000;
    border-bottom: var(--gold_over_dark);
    color: white;
    width: 100%;
    opacity: 1;
    transition: all ease 3000ms;
}

.contact_request_message_001 p {
    color: white;
    font-weight: 400;
    font-size: 12px;
}

.contact_request_message_001 span {
    font-weight: 900;
    color: white;
}

.successful_request {
    background: rgba(0, 219, 33, 0.286);
}

.failed_request {
    background: rgba(255, 0, 0, 0.234);
}


/* Tablet */
/* Tablet */
/* Tablet */
/* Tablet */

@media only screen and (max-width: 900px) and (min-width: 440px) {
    .contact_request_message_001 {
        top: 100px;
    }
}

/* Mobile */
/* Mobile */
/* Mobile */
/* Mobile */

@media only screen and (max-width: 439px) {
    .contact_request_message_001 {
        top: 100px;
    }

    .contact_request_message_001 p {
        font-size: 14px;
    }
}