﻿.modalRepresentante {
    text-align: center;
}

    .modalRepresentante .modal-azul {
        width: 360px;
        max-width: none;
    }

    .modalRepresentante .modal-content {
        padding: 16px;
    }

    .modalRepresentante img {
        width: 200px;
        height: 200px;
        margin: auto;
    }

    .modalRepresentante h1 {
        font-size: 24px;
        color: var(--primary-color-500);
    }

    .modalRepresentante p {
        font-size: 14px;
        color: var(--dark-color-500);
    }

    .modalRepresentante .inputAzul label {
        color: var(--dark-color-500);
    }

    .modalRepresentante button {
        font-size: 16px;
        border: none;
        border-radius: 4px;
        padding: 12px 0px;
        cursor: pointer;
    }

    .modalRepresentante .btnRequest {
        color: var(--base-color);
        background-color: var(--primary-color-500);
        transition: 0.5s;
    }

        .modalRepresentante .btnRequest:hover {
            background-color: var(--primary-color-800);
        }

    .modalRepresentante .cancel {
        color: var(--primary-color-500);
        background-color: var(--base-color);
    }

.headerMobile {
    display: none;
}


#modalNaoDisponivel .imagemModal {
    display: flex;
    align-items: center;
    justify-content: center;
}

#modalNaoDisponivel h6 {
    font-weight: 300;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    color: var(--primary-color-500);
    margin: 24px 0;
}

#modalNaoDisponivel p {
    font-weight: 100;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    color: var(--dark-color-500);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .modalRepresentante svg {
        vertical-align: baseline;
    }

    .modalRepresentante .modal-content {
        top: 0;
        position: fixed;
        height: 100vh;
        width: 100vw;
        border: none;
        border-radius: 0;
    }

    .modalRepresentante .modal-dialog {
        margin: 0;
    }

    .headerMobile {
        display: flex;
        align-items: center;
    }

        .headerMobile h1 {
            flex: 1;
            margin: auto;
            font-size: 20px;
            color: var(--dark-color-500);
        }
}


