.abrirPopup.boxPortalCliente {
    border-radius: 5px;
    border: 2px solid #E9514E;
    background: #C82E2B;
    color: #FFF;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 20px 20px;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.8);
    /* 80% */

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

    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;

    z-index: 100;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    position: relative;

    max-width: 500px;
    width: 69%;
}

.popup-close {
    position: absolute;
    top: -10px;
    right: -10px;

    background: #C82E2B;
    color: #fff;
    border: none;
    border-radius: 50%;

    width: 30px;
    height: 30px;

    cursor: pointer;
}

.select2-container .select2-selection--single {
    height: auto !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 10px 15px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 25% !important;
    right: 5px !important;
}
