:root {
    --altura-header: 3.5rem;
    --turquesa: #4da9a3;
    --azul1: #003a5d;
    --azul2: #1b6194;
    --verde1: #12978b;
    --verde2: #a2d40a;
    --cor-texto: #858585;
}

.card-new {
    background-color: #F8FBFE;
    border-radius: 8px;
    padding: 8px 12px;
    box-shadow: 1px 1px 5px #bebebe,
             -1px -1px 5px #f1f1f3;
    margin-bottom: 16px;

    height: auto;
}

.card-new-incorporado {
    background-color: #ccc;
    border-radius: 8px;
    padding: 8px 12px;
    box-shadow: 1px 1px 5px #bebebe,
             -1px -1px 5px #f1f1f3;
    margin-bottom: 16px;

    height: auto;
}

.btn-new {
    height: auto;
    /* min-width: 64px; */
    width: auto !important;
    max-height: 38px;
    background-color: #f2f2f2;
    color: #5f6368;
    font-weight: bold;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.2s ease;
    cursor: pointer;

    box-shadow: 1px 1px 5px #bebebe,
             -1px -1px 5px #f1f1f3;
}

.btn-new:hover{
    background-color: #e8e8e8;
    border: 1px solid transparent
}

.btn-new:focus{
    border: 1px solid transparent;
}

.row {
    display: flex;
    flex-direction: row;
    height: 100%;
}

.row-responsive {
    display: flex;
    flex-direction: row;
}

@media only screen and (max-width: 767px) {
    .row-responsive {
        flex-direction: column;
    }
}

.column {
    display: flex;
    flex-direction: column;
}

.justify-space-between {
    justify-content: space-between;
}
.justify-space-between-responsive {
    justify-content: space-between;
}

.justify-space-around {
    justify-content: space-around;
}
.justify-space-around-responsive {
    justify-content: space-around;
}

.justify-space-evenly {
    justify-content: space-evenly;
}
.justify-space-evenly-responsive {
    justify-content: space-evenly;
}

.justify-center {
    justify-content: center;
}
.justify-center-responsive {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.justify-start {
    justify-content: flex-start;
}

.align-center {
    align-items: center;
}
.align-center-responsive {
    align-items: center;
}

.align-end {
    align-items: flex-end;
}
.wrap {
    flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
    .justify-space-between-responsive {
        justify-content: flex-start;
    }
    .justify-space-around-responsive {
        justify-content: flex-start;
    }
    .justify-space-evenly-responsive {
        justify-content: flex-start;
    }
    .justify-center-responsive {
        justify-content: flex-start;
    }
    .align-center-responsive {
        align-items: flex-start;
    }
}

.linha-vertical {
    height: auto;
    border-left: 1px solid;
    border-color: rgba(0, 0, 0, 0.15);
}
.linha-vertical-responsive {
    height: auto;
    border-left: 1px solid;
    border-color: rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 767px) {
    .linha-vertical-responsive {
        width: auto;
        border-left: 0px solid;
        border-bottom: 1px solid;
        border-color: rgba(0, 0, 0, 0.15);
        margin: 8px 0px;
    }
}

details[open] > summary {
    padding-bottom: 16px;
}

summary {
    color: #666666;
}

.padding-sm {
    padding: 8px;
}



.ss-value {
    background-color: var(--verde1) !important;
}

.ss-option:hover {
    background-color: var(--verde1) !important;
}

.ss-multi-selected {
    border-color: #ebebeb !important;
    min-height: 38px !important;
}

.ss-add {
    margin: 14px 12px 0 5px !important;
}

.ss-content .ss-search input:focus {
    box-shadow: 0 0 5px var(--verde1) !important;
}

span.ss-disabled {
    color: #333 !important;
}




