.main-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    display: none;
}

.main-modal .exit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: 0;
    
    background: rgba(0, 0, 0, 0.4);
}

.main-modal .modal-content-wrapper {
    position: absolute;
    z-index: 1;

    display: flex;
    flex-direction: column;
    width: 60%;
    min-height: 60%;
    background: #fff;
    border-radius: 20px;
}

.main-modal .modal-content-wrapper .content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    gap: 20px;

    padding: 20px;
}

.main-modal .title-wrapper {
    padding: 20px;

    border-bottom: 1px solid #dedede;
}

.main-modal .title-wrapper h2 {
    font-weight: 500;

    font-size: 23px;
}

/* Modal Customers */

.main-modal.-customersOrder .infos {

    max-height: 300px;
    overflow-y: scroll;

    display: flex;
    flex-direction: column;
    gap: 15px;

    overflow-y: auto;

    font-size: 17px;
    padding-right: 10px;
}

.main-modal.-customersOrder .infos::-webkit-scrollbar {
    width: 8px;
}

.main-modal.-customersOrder .infos::-webkit-scrollbar-thumb {
    background: #ddd;

    border-radius: 10px;
}

.main-modal.-customersOrder .infos .info-wrapper h3 {
    font-size: 19px;

    font-weight: 500;
}

.main-modal.-customersOrder .infos .info-wrapper > p {
    border: none;

    background: var(--background-light);
    border-radius: 10px;
    resize: none;
    
    padding: 15px 20px;
    font-size: 17px;
    font-family: 'Rubik';
}

.main-modal.-customersOrder .infos .info-wrapper {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.main-modal.-customersOrder .infos > p {
    font-size: 17px;
}

.main-modal.-customersOrder .infos > .success {
    color: #28a745!important;
}

.main-modal.-customersOrder .infos > .danger {
    color: #dc3545!important;
}

.main-modal.-customersOrder .content > a {
    display: block;
    width: 100%;
    margin: 0 auto;
    background: var(--color-blue);

    color: white;
    padding: 15px 20px;
    text-align: center;

    border-radius: 10px;

    transition: 200ms;
}

.main-modal.-customersOrder .content > a:hover {
    filter: brightness(0.95);
}