/* root start */

@font-face {
    font-family: "Varela Round";
    src: url("../fonts/VarelaRound-Regular.ttf") format("truetype");
}

:root {
    --V3_PrimaryColor: #17316a; /* azul-planicare */
    --V3_SecondaryColor: #2E89B2; /* azul-celestial-escuro */
    --V3_TertiaryColor: #2E89B2; /* azul-celestial-escuro */
    --V3_ColorGray: #17316a; /* azul-planicare  no more gray */
    --V3_PrimaryFont: "Varela Round", sans-serif;
}

body {
    height: 100vh;
}

html,
body,
p,
a,
h1,
h2,
h3,
h4 {
    font-family: var(--V3_PrimaryFont);
    color: var(--V3_PrimaryColor);
}

.row {
    margin-left: unset;
    margin-right: unset;
}

.v3_underline {
    font-weight: 400;
    position: relative;
    z-index: 2;
    display: inline-block;
}

    .v3_underline:before {
        content: "";
        background: var(--V3_TertiaryColor);
        height: 8px;
        width: 100%;
        position: absolute;
        bottom: 8px;
        z-index: -1;
        border-radius: 3px;
    }

/* root end */
/* LayoutEmpty start */

.v3_flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.v3_login-box {
    background: white;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0px 3px 10px 0px rgba(41, 45, 194, 0.08);
}

.v3_butn-style2 {
    position: relative;
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    font-size: 14px !important;
    color: white;
    border-radius: 5px;
    font-weight: 700;
    text-align: center;
    padding: 15px 32px !important;
    text-transform: uppercase;
    z-index: 1;
    transition: all 500ms ease;
    background-color: var(--V3_PrimaryColor);
    border: none;
}

    .v3_butn-style2:before {
        transition-duration: 800ms;
        position: absolute;
        width: 200%;
        height: 200%;
        content: "";
        top: 110%;
        left: 50%;
        background-color: var(--V3_SecondaryColor);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        border-radius: 50%;
        z-index: -1;
    }

    .v3_butn-style2:hover {
        color: white;
    }

        .v3_butn-style2:hover:before {
            top: -40%;
        }

.login-logo {
    max-width: 300px;
    background-image: url(../img/logo.png);
    background-size: contain;
}

.color-blue {
    color: var(--V3_PrimaryColor);
}

.color-gray {
    color: var(--V3_TertiaryColor);
}

.border-gradient {
    background-image: linear-gradient( left, var(--V3_SecondaryColor), var(--V3_PrimaryColor) );
}

#wrapper-login {
    /* background: linear-gradient(120deg, #32dbc588, #32dbc533, #32adbe), url("../img/cli-bg.png"); */
    /* background-size: cover; */
    background: white;
    height: 100%;
    overflow: auto;
}

/* This should be improved */
.login-subtitle,
.login-title,
.login-title-form,
.login-message,
.loginColumns input,
.has-success .form-control,
.qis textarea,
.qis select,
.qis input:not([type="submit"]),
.btn-login {
    font-family: var(--V3_PrimaryFont);
}

.loginColumns input,
.has-success .form-control,
.qis textarea,
.qis select,
.qis input:not([type="submit"]) {
    border: 1px solid var(--V3_PrimaryColor) !important;
}

.loginColumns .form-control:focus,
.qis .form-control:focus {
    border: 1px solid var(--V3_PrimaryColor) !important;
}

/* LayoutEmpty end */
/* Layout start */

.v3_topbar_user-icon img {
    width: 36px;
}

.v3_vcard-wrapper {
    padding-right: 10px;
    padding-left: 15px;
    padding-top: 15px;
    padding-bottom: 5px;
    /* margin-top: 30px; */
    min-width: 290px;
    max-width: 295px;
}

.v3_vcard {
    position: relative;
    overflow: hidden;
    box-shadow: #222 2px 2px 2px;
    color: black;
    font-size: 9.5px;
    border-radius: 5px;
    height: 170px;
}

    .v3_vcard::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: white;
        /*background-image: url(../img/favicon.svg);*/
        background-image: url(../img/new-card-bg.png);
        background-size: cover;
        background-repeat: no-repeat;
        
        /*        transform: rotate(15deg);*/
    }

.v3_vcard_external {
    position: relative;
    overflow: hidden;
    /*box-shadow: #222 2px 2px 2px;*/
    color: black;
    font-size: 9.5px;
    border-radius: 5px;
    border-color: black;
    height: 170px;
}

    .v3_vcard_external::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        /*background-image: url(../img/favicon.svg);*/
        background-image: url(../img/new-card-adv-bg.png);
        background-size: cover;
        background-repeat: no-repeat;
        /*        transform: rotate(15deg);*/
    }

.v3_vcard_content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.v3_vcard_title {
    color: white;
    font-size: 12px;
    float: right !important;
}

    .v3_vcard_title div {
        text-align: center;
        white-space: nowrap;

        padding-left: 5px;
        padding-right: 5px;
        background-color: var(--V3_PrimaryColor);
        border-radius: 10px;
    }



.v3_vcard_info {
    margin-top: auto;
    padding: 3px 12px;
}

.menu-lateral {
    background: var(--V3_PrimaryColor);
    min-width: 290px;
    max-width: 315px;
}

    .menu-lateral .nav-menu-lateral .active {
        color: var(--V3_TertiaryColor);
    }

        .menu-lateral .nav-menu-lateral .active .icone-menu-lateral {
            fill: var(--V3_TertiaryColor);
        }


.conteudo-principal {
    /*    background: linear-gradient(120deg, #32dbc588, #32dbc533, #32adbe), url("../img/cli-bg.png");*/
    /*    background-size: cover;*/
    background: #fff;
    border: 1px solid var(--V3_PrimaryColor) !important;
}

    .conteudo-principal .titulos-containers {
        border-radius: 5px;
        background: var(--V3_SecondaryColor);
        color: white;
    }

    .conteudo-principal .caixa {
        border-radius: 5px;
    }

.conteudo-apolices .estado-apolice-em-vigor {
    background: var(--V3_TertiaryColor);
}

.titulo-geral,
.subtitulo-azul {
    color: var(--V3_TertiaryColor);
}

.btn-default {
    background: var(--V3_PrimaryColor);
}

.tabs-topo {
    background: unset;
}

.index .nav-tabs .nav-link,
.pagina-apolice .nav-tabs .nav-link {
    border-radius: 5px;
    background: var(--V3_SecondaryColor);
    color: white;
}

.index .nav-tabs .active,
.pagina-apolice .nav-tabs .active {
    color: white;
    background: var(--V3_PrimaryColor);
}

.nav-tabs .nav-link {
    border: none;
}

.badge-warning {
    background-color: var(--V3_TertiaryColor);
}

    /* Layout end */
