.send-message {
    cursor: pointer;
    color: green;
}

.start-chat {
    cursor: pointer;
    color: green;
}

.box-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 5px;
    width: 100%;
    height: 100%;
    position: relative;
}

.box {
    padding: 20px 30px;
    width: 600px;
    height: fit-content;
    border-radius: 10px;
    background: #f8f8f8;
    border: 4px solid #4ba13e;
}

.form-options-button {
    display: none;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.option-btn-light {
    border: none;
    background: #4ba13e7e;
    padding: 10px;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.7rem;
}

.light {
    border: none;
    background: #4ba13e7e;
    padding: 10px;
}

.solid {
    border: none;
    background: #4ba13e;
    padding: 10px;
}

.bold {
    font-weight: 700;
}

.medium {
    font-size: 17px;
}

.small {
    font-size: 1rem;
}

.mt-30 {
    margin-top: 30px;
}

.no-margin {
    margin: 0;
}

.form-stacked {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.input-field {
    border-radius: 5px;
    border: solid 1px #00000030;
    background: #f8f8f8;
    padding: 10px 20px;
}

.textarea-field {
    border-radius: 5px;
    border: solid 1px #00000030;
    background: #f8f8f8;
    padding: 10px 20px;
    height: 100px;
    resize: none;
}

.checkbox-row {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.checkbox-spaced {
    margin-right: 8px;
}

.submit-btn {
    background: #4ba13e;
    color: #fff;
    font-weight: 600;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .phone-number {
        font-size: 0.8rem;
    }

    .chat-holder {
        font-size: 0.8rem;
    }

    .box-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .form-options-button {
        display: flex;
    }

    .contract {
        width: 98%;
    }
}

.contact-container {
    min-height: 60%;
    height: 60%;
    background: linear-gradient(to top, rgba(75, 161, 62, 0.2), #fff);
    position: relative;
}

.contact-header-main {
    font-weight: 700;
}

.contact-header-highlight {
    font-weight: 700;
    color: #4ba13e;
}

.contact-button-primary {
    background: #4ba13e;
    color: #fff !important;
    padding: 10px;
    font-weight: 600;
}

.contact-button-primary:hover {
    background: #61F072;
    color: #fff !important;
    padding: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.contact-button-secondary {
    background: #4ba13e24;
    color: #4ba13e;
    padding: 10px;
    font-weight: 600;
}

.message-box-inner-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px;
    justify-content: space-evenly;
}

.message-box-col {
    background: #f4f4f4;
    width: 50% !important;
    border-radius: 5px;
}

.flex-center-sm {
    display: flex;
    justify-content: center;
}

.header-slider {
    display: none !important;
}
