/*!
 * CSS Geral Central Assinante
 * Autores: Tales Born, Jean C da Campo
 */
.pendencias > li > a:hover {
    background-color: #e24848;
}

.franquias .card .card-content {
    padding: 10px 15px;
}

.franquias .card .card-content:nth-child(2){
    padding-top: 20px;
}

.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.justify-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify-content-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.icon-success {
    color: #62c462;
}

.icon-warning {
    color: #ffa424;
}

.icon-danger {
    color: #ee4f4e;
}

.consumo-gbs {
    font-size: 16px;
    font-weight: 400;
    padding-left: 4px;
}

.limite-atingido {
    font-size: 18px;
}

.icone-limite {
    font-size: 16px !important;
}

@media only screen and (max-width: 360px) {
    .d-flex {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        text-align: center;
        font-size: 14px;
    }

    .franquias .d-flex .consumo-gbs {
        font-size: 14px;
    }
}

@media only screen and (max-width: 991px) {
    .grid-container {
        -webkit-column-count: 1 !important;
        column-count: 1 !important;
    }
}

.grid-container {
    -webkit-column-count: 2;
    column-count: 2;
}

.block {
    display: block;
}

.faturas_erro_email,
.faturas_em_dia,
.planos_em_dia,
.sem_mensagens_novas {
    border-radius: 3px;
    margin-left: 4px;
    font-size: 18px;
}

.faturas_em_dia {
    color: #43a047;
}

.faturas_erro_email {
    color: #43a047;
}

.green-text {
    background-color: #43a047;
}

.novo-atendimento-text {
    background-color: #23bbce;
}

.planos_em_dia {
    color: #8e24aa;
}

.sem_mensagens_novas {
    color: #ff9800;
}

.gray-text,
.Finalizada,
.silver-text {
    background-color: #777;
}

.red-text {
    background-color: #f14237;
}

.label {
    font-weight: normal !important;
}

.status_yellow,
.status_blue,
.yellow-text {
    background-color: #ff9800;
}

.tooltip_liberacao_suspensao {
    width: 140px;
    background: white;
    z-index: 9999;
    color: #848484;
}

.tooltip_padrao {
    background: white;
    border-color: #23bbce;
    z-index: 9999;
    color: #848484;
}


.tooltip_padrao.branco {
    background: white;
    color: #808080;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.tooltip_padrao.branco .tooltip-arrow {
    border-right-color: white !important;
}

.tooltip-arrow {
    border-top-color: white !important;
    border-right-color: white !important;
}

.msg_nao_lida {
    padding: 0 7px;
    font-size: 9px;
    background: #4caf50;
    color: #FFF;
    border-radius: 10px;
    line-height: 19px;
    position: absolute;
    margin-left: 12px;
    margin-top: -8px;
    float: left;
}

.progress {
    height: 20px;
    width: 100%;
    margin: 5px auto;
    background-color: #f7f7f7;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#f9f9f9));
    background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
    background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
    background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9);
    border-radius: 4px;
}

.progress .bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    color: #ffffff;
    text-align: center;
    background-repeat: repeat-x;
    -webkit-transition: width 0.6s ease;
    -o-transition: width 0.6s ease;
    transition: width 0.6s ease;
}

.progress .bar span {
    font-size: 15px;
}

.progress-striped .bar {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
}

.progress.active .bar {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite;
}

.progress-success.progress-striped .bar,
.progress-striped .bar-success {
    background-color: #62c462;
}

.progress-warning.progress-striped .bar,
.progress-striped .bar-warning {
    background-color: #ffa424;
}

.progress-danger.progress-striped .bar,
.progress-striped .bar-danger {
    background-color: #ee4f4e;
}

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }
    to {
        background-position: 0 0;
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }
    to {
        background-position: 0 0;
    }
}

.home .franquias .card .card-content.minimizado:nth-child(2) {
    display: block;
}

.home .franquias .card .card-content.maximizado {
    display: block !important;
}

.home .franquias .card-content {
    display: block;
    -webkit-animation: slide-down .3s ease-out;
    -moz-animation: slide-down .3s ease-out;
}

@keyframes slide-down {
    0% { opacity: 0; -moz-transform: translateY(-100%); }
    100% { opacity: 1; -moz-transform: translateY(0); }
}

@-webkit-keyframes slide-down {
    0% { opacity: 0; -webkit-transform: translateY(-100%); }
    100% { opacity: 1; -webkit-transform: translateY(0); }
}


.home .franquias .card .card-content{
    display: none;
}

.home .franquias .card .card-footer .stats {
    color: black;
    font-size: 16px;
    cursor: pointer;
}

.entre-em-contato-modal{
    width: 320px;
}

.modal-header-entre-em-contato {
    z-index: 2;
    position: absolute;
    width: 95%;
    margin: -20px 10px 0;
    padding: 12px;
    border-bottom: 1px solid #e5e5e5;
    background-color: orange;
    border-radius: 3px;
    color: #fff;
}

.botao-fechar-entre-em-contato {
    font-size: 25px;
}

.entre-em-contato-whatsapp{
    width: 90%;
    border-bottom: 1px solid #e5e5e5;
    background-color: black;
    border-radius: 5px;
    color: #fff;
    display: flex;
    margin-top: 25px;
    align-items: center;
    justify-content: space-around;
    opacity: 0.8;
    transition: 0.3s;
}

.entre-em-contato-whatsapp:hover, .entre-em-contato-chat:hover{
    color: #fff;
    opacity: 0.6;
}

.entre-em-contato-whatsapp p, .entre-em-contato-chat p{
    display: flex;
    align-items: center;
    margin-top: 15px;
    text-transform: uppercase;
    font-weight: initial;
    font-size: 12px;
    color: #fff;
    margin-left: -40px;
}

.entre-em-contato-chat p{
    margin-left: -120px;
}

.entre-em-contato-chat i{
    margin-left: -40px;
}

.entre-em-contato-whatsapp i, .entre-em-contato-chat i{
    font-size: 25px;
}

.entre-em-contato-chat{
    width: 90%;
    border-bottom: 1px solid #e5e5e5;
    background-color: black;
    border-radius: 5px;
    color: #fff;
    display: flex;
    font-size: 15px;
    align-items: center;
    justify-content: space-around;
    opacity: 0.8;
    transition: 0.3s;
}

.telefone-contato{
    width: 90%;
    padding: 5px;
    display: flex;
    font-size: 15px;
    justify-content: space-around;
    opacity: 0.4;
    margin-top: 15px;
}

.telefone-contato i{
    color: black;
    margin-left: -15px;
}

.telefone-contato #copiar_numero:hover{
    color: blue;
}

hr.custom-hr{
    border: 0;
    clear:both;
    display:block;
    width: 75%;
    background-color:lightgrey;
    height: 1px;
    opacity: 0.9;
}

@media only screen and (min-width: 991px) {
    li.no-mobile{
        display: none;
    }
}

@media only screen and (max-width: 991px) {
    li.entre-em-contato-li, li.not-mobile, hr.custom-hr, .entre-em-contato-modal{
        display: none;
    }

    .link-no-mobile p{
        text-align: center;
        white-space: nowrap;
    }
}
