/* .fax-page {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    width: 100%;
    background-color: white;
    padding: 20px;
    border-radius: 20px;
}

.fax-input {
    flex-direction: column;
    align-items: flex-start;
}

.fax-input-send-to-number-groups {
    display: flex;
    flex-direction: row;
    column-gap: 15px;
    width: 50%;
}

.fax-pickfile {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

.fax-input select,
.fax-input input {
    width: 100%;
}

.pick-file-fax {
    background-color: black;
    color: white;
    display: inline-block;
    width: 12%;
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    align-items: center;
    border-radius: 8px;
    height: max-content;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
}

.pick-file-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fax-credits-note {
    align-items: center;
    font-size: small;
    padding: 8px;
    background-color: rgba(249, 160, 160, 0.8);
    border-radius: 5px;
    font-weight: 500;
}

.send-fax-modal {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    column-gap: 30px;
}

.send-fax-modal p {
    text-align: center;
    display: flex;
    width: 35%;
    justify-content: flex-end;
    align-items: center;
}

.send-fax-modal-input {
    width: 45%;
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    align-items: center;
    border-radius: 8px;
    cursor: pointer;
}

.pick-file-image-fax {
    width: 40%;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.send-fax-send-to-num-groups {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    align-items: center;
    justify-content: center;
    width: 100%;
} */


/* FAX PAGE DESIGN */



.fax-page {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    width: 65%;
    padding: 20px;
    background-color: white;
    border-radius: 20px;
    overflow-y: auto;
}

.fax-page-bold-p {
    font-weight: 600;
    font-size: medium;
}

.fax-page-header {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    justify-content: space-between;
}

.pick-file-image {
    width: 160px;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: row;
    column-gap: 6px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    height: 30px;
    font-size: medium;
}

.fax-page-note {
    font-size: x-small;
    padding: 10px;
    background-color: #ffd2d6;
    border-radius: 10px;
    width: 100%;
    font-weight: 500;
}

.schedule-message-button-fax-page {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.fax-page-footer {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.fax-page-hamburger-dropdown {
    width: 260px;
    height: fit-content;
    align-items: center;
    padding: 10px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;


}

.fax-page-hamburger-dropdown-sort-field {
    width: 100%;
}

.hamburger-dropdown-select {
    width: 70%;
    margin-left: 20px;
    padding: 3px 0px 3px 0px;
    border-radius: 10px;
}

.fax-page-hamburger-dropdown label {
    font-weight: 600;
    font-size: medium;
}

.fax-page-hamburger-dropdown-sent {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}
@media screen and (max-width: 767.98px) {
    .fax-page{
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        height: 100vh;
        z-index: 99999;
        width: 100%;
        display: none;
        border-radius: 0;
    }
    .fax-page.show-chat-message{
        display: block;
    }
}

