/*GENERAL*/

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

:root {

    --main-color: #2c003c;

    --second-color: #e6e6ec;

    --third-color: #3e8e41;

}

body {

    font-family: 'Montserrat', sans-serif;

    background-color: var(--second-color);

    overflow-x: hidden;

}

/*    ----------------------------------------------------------------------------------    LOGIN */

#form_login {


    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;

}

#form_login h1{

margin-left: 0;

}
#form_login button{

    background: var(--third-color);
    max-width: max-content;
}

#floatingInput{

    border: 1px solid var(--main-color);

    border-radius: 5px 5px 0 0;
    min-width: 150px;
}

#floatingPassword{

    border: 1px solid var(--main-color);

    border-top: 0;

    border-radius: 0 0 5px 5px;
    min-width: 150px;

}

#floatingInput:focus, #floatingPassword:focus{

    background: white;

}

/*    ----------------------------------------------------------------------------------    NAV */

#nav_main {

    background-color: var(--main-color);

    position: sticky;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 100;

    display: flex;

    flex-direction: column;

}

#nav_main #nav_left{


    display: flex;
    justify-content: space-around;
    width: 30%;
    min-width: 380px;
}

#nav_main #nav_center{
    width: 40%;
}

#nav_main #nav_right{


    display: flex;
    justify-content: space-evenly;
    width: 25%;
    min-width: 325px;
}

#nav_main #nav_left #nav_img{

    height: 3rem;

    border: 1px solid var(--main-color);

}

#nav_main a{

    display: inline-block;

    color: var(--second-color);

    text-decoration: none;

}

#nav_main #nav_left #nav_vigencias{

    margin-left: 10px;

    box-sizing: border-box;

    border: 1px solid var(--main-color);

    padding: 9px 1rem;

    padding-right: 3.5rem;

    display: inline-block;

    background: var(--main-color);

    display: inline-block;

}

#nav_main #nav_left #nav_vigencias:hover{

    border: 1px solid var(--second-color);

    border-radius: 2px;

}

#nav_left_dropdown {

    display: inline-block;

}

.dropdown-menu{

    width: 16.5rem;

    margin-left: -2.5rem;

    border: 1px solid var(--main-color);

}

#nav_input_group{

    width: 100%;

}

#nav_input_group_left{

border-top-left-radius: 4px;

border-bottom-left-radius: 4px;

}

#nav_input_group_right{

border-top-right-radius: 4px;

border-bottom-right-radius: 4px;

}

#nav_button_filter{

    margin-top: 10px;

}

.dropdown-menu label{

    font-weight: bold;

}

.dropdown-menu #dropdown_vigencia:checked ~ #dropdown_label1{

    color: var(--third-color);

}

.dropdown-menu #dropdown_nacimiento:checked ~ #dropdown_label2{

    color: var(--third-color);

}
.dropdown-menu #dropdown_nacimiento:checked ~ #nav_input_group #nav_input_group_left{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.dropdown-menu #dropdown_nacimiento:checked ~ #nav_input_group #nav_input_group_center{
border-top-left-radius: 4px;

border-bottom-left-radius: 4px;

}
.dropdown-menu .form-label{

    margin-top: 5px;

}

.dropdown-menu input:focus{

    border-color: var(--main-color);

    box-shadow: none;

}

.dropdown-menu button{

    margin-left: 28%;

    background: var(--third-color);

}

.dropdown-menu button:hover{

    background: #29632b;

}

#nav_main #nav_left #nav_vigencias_img{

    position: absolute;

    margin: -1.5rem 0 0 6rem;

    padding: 2px;

    color: var(--second-color);

}

#nav_main #nav_vendedores{

    box-sizing: border-box;

    border: 1px solid var(--main-color);

    padding-right: 3.4rem;

    padding-left: .5rem;


}

#nav_main #nav_vendedores:hover{

    border: 1px solid var(--second-color);

    border-radius: 2px;

}

#nav_main #nav_vendedores_img{

    position: absolute;

    margin: -0.2rem 6.4rem;

    padding: 2px;

    color: var(--second-color);

}

#nav_main #nav_form{

    display: flex;

    margin: auto;

}

#nav_main #nav_center #nav_select{

    border-radius: 4px 0 0 4px;

    border: none;

    background-color: rgba(255, 255, 255, 0.938);

    height: 2.5rem;

    font-size: smaller;

    padding: 0.1rem;

}

#nav_main #nav_center #nav_select:hover{

    background-color: var(--second-color);

}

#nav_main #nav_center #nav_select option{

    font-size: 1rem;

}

#nav_main #nav_center #nav_search{

    border-radius: 0px;

    height: 2.5rem;

    border: none;

}

#nav_main #nav_center #nav_search:focus{

    border: none;

    box-shadow: none;

}

#nav_main #nav_center #nav_submit{

    display: flex;

    background-color: #3c9635;

    padding: 0;

    border: none;

    border-radius: 0 4px 4px 0;

}

#nav_submit_img{

    position: static;

    height: 2.5rem;

    padding: .5rem;

    color: var(--second-color);

}

#nav_main  #nav_impresiones{

    padding-right: 3rem;

    padding-left: .5rem;

    box-sizing: border-box;

    border: 1px solid var(--main-color);

}

#nav_main #nav_impresiones:hover{

    border: 1px solid var(--second-color);

    border-radius: 2px;

}

#nav_main #nav_impresiones_img{

    position: absolute;

    margin: -0.2rem 3.8rem;

    padding: 2px;

    color: var(--second-color);

}

#nav_main #nav_right #nav_nuevo_socio{

    padding-right: 3.5rem;

    padding-left: .5rem;

    box-sizing: border-box;

    border: 1px solid var(--main-color);

}

#nav_main #nav_right #nav_nuevo_socio:hover{

    border: 1px solid var(--second-color);

    border-radius: 2px;

}

#nav_main #nav_right #nav_nuevo_socio_img{

    color: var(--second-color);

    position: absolute;

    margin: -0.2rem 6.5rem;

    padding: 2px;

}

#nav_main span{

    position: static;

    display: flex;

}

#nav_main .nav_line_1{

    font-size: smaller;

    padding: 0;

    color: var(--second-color);

}

#nav_main .nav_line_2{

    line-height: .6;

    padding: 0;

    font-weight: bold;

    color: var(--second-color);

}

#nav_main a:hover{

    text-decoration: none;

}

#nav_main #nav_select{

    display: inline-block;

}

#nav_main #nav_submit{

    display: inline-block;

}



/*    -----------------------------------------------------------------------------    FORM INSERT, FORM INSERT VENDEDORE Y UPDATE VENDEDOR */



.form_insert{

    width:25%;

    min-width: 467px;

    height:34rem;

    background:#e6e6e6;

    border-radius:8px;

    box-shadow:0 0 40px -10px #000;

    margin:15px 30% 0px 30%; 

    padding:20px 0;

    box-sizing:border-box;

    font-family:'Montserrat',sans-serif;

    position:relative

}

.form_insert_vendedor{

    width:25%;

    min-width: 467px;

    height:28.5rem;

    background:#e6e6e6;

    border-radius:8px;

    box-shadow:0 0 40px -10px #000;

    margin:15px 30% 0px 30%; 

    padding:20px 0;

    box-sizing:border-box;

    font-family:'Montserrat',sans-serif;

    position:relative

}

.form_update_vendedor{

    width:25%;

    min-width: 467px;

    height: 40rem;

    background:#e6e6e6;

    border-radius:8px;

    box-shadow:0 0 40px -10px #000;

    margin:15px 30% 0px 30%; 

    padding:20px 0;

    box-sizing:border-box;

    font-family:'Montserrat',sans-serif;

    position:relative

}
#form_update_estado{
    width: 50%;
}

.form_insert h2, .form_update_vendedor h2 {

    margin-left: 3rem;

    color:#78788c;  

    font-weight: bold;

}

.form_insert_vendedor h2{

    margin-left: 3rem;

    color:#78788c;  

    font-weight: bold;

    margin-bottom: 3rem;

}
#form_insert_id{
    position: absolute;
    right: 15px;
    top: 20px;
    width: 30%;
}
#form_insert_id input{
    padding: 0;
    margin: 0;
    font-size: x-large;
}
#form_insert_fecha {

    width: 45%;

}

.form_insert h3, .form_insert_vendedor h3, .form_update_vendedor h3{

    font-size: x-large;

    color: #78788c;

    margin-left: 3rem;

    margin-top: 1rem;

}

.form_insert input, .form_insert_vendedor input, .form_update_vendedor input{

    width: 80%;

    margin: 0 3rem;

    padding:10px;

    background:none;

    outline:none;

    border:0;

    font-family:'Montserrat',sans-serif;

    transition:all .3s;

    border-bottom:2px solid #bebed2;

}

.form_insert input:focus, .form_insert_vendedor input:focus, .form_update_vendedor input:focus{

    border-bottom:2px solid var(--main-color)

}

.form_insert select, .form_insert_vendedor  select, .form_update_vendedor select{

    font-family:'Montserrat',sans-serif;

    background: none;

    margin-left: 3rem;

    width:80%;

    padding:8px;

    padding-top: 11px;

    border-radius: 3px;

    border: none;

    border-bottom:2px solid #bebed2;

    outline:none;

}

.form_insert button, .form_insert_vendedor button, .form_update_vendedor button{

    position: absolute;

    right: 12px;

    bottom: 12px;

    padding:8px 12px;

    font-family:'Montserrat',sans-serif;

    border:2px solid #78788c;

    background:0;color:#5a5a6e;

    cursor:pointer;

    transition:all .3s;

    border-radius: 4px;

}

.form_insert button:hover, .form_insert_vendedor button:hover, .form_update_vendedor button:hover{

    background:var(--main-color);

    color: #fff;

}
#form_insert_alert{
    width: 60%;
    margin-left: 10%;
    height: 3.5rem;
    margin-top: 7px;
}

/*   --------------------------------------------------------------------     FORM UPDATE */



.form_update{
    width:83%;

    height:1610px;

    background:#e6e6e6;

    border-radius:8px;

    box-shadow:0 0 40px -10px #000;

    margin:20px auto; padding:10px 30px;

    max-width:calc(100vw - 40px);

    box-sizing:border-box;

    font-family:'Montserrat',sans-serif;

    position:relative

}

#form_update_hr_1, #form_update_hr_2, #form_update_hr_3{

    height: 2px;

    width: 104%;

    margin-left: -2%;

    background: var(--main-color);

    

}

#form_update_hr_1{

    margin-top: -5px;

}

#form_update_hr_2{

    margin-top: 40px;

}

.form_update h3{

    margin:5px 0;

    padding-bottom: 10px;
    width: 100%;

    color:#78788c;  

}

#input_group_update{

    width: 80%;

    margin: 0 !important;

}
.form-control{

    border-bottom: 2px solid #bebed2;

    border-radius: 0;

}

.form-control:focus{

    text-decoration: none;

    background-color: var(--second-color);

    box-shadow: none;

}

.form_update  select{

    font-family:'Montserrat',sans-serif;

    background: none;

    width:80%;

    padding:8px;

    padding-top: 11px;

    border-radius: .5px;

    border: none;

    border-bottom:2px solid #bebed2;

    outline:none;

}

.form_update select:focus{

    border: 1px solid;

    border-color: var(--main-color);

}

.form_update input{

    width:80%;

    padding:8px;

    box-sizing:border-box;

    background:none;

    outline:none;

    resize:none;

    border:0;

    font-family:'Montserrat',sans-serif;

    transition:all .3s;

    border-bottom:2px solid #bebed2

}



.form_update input:focus{

    border-bottom:2px solid var(--main-color)

}

.form_update p:before{

    content:attr(type);

    display:block;

    margin:28px 0 0;

    font-size:14px;

    color:#5a5a5a

}

.form_update button{

    position: absolute;

    padding:8px 12px;

    right: 20px;

    bottom: 20px;

    font-family:'Montserrat',sans-serif;

    font-size: x-large;

    border:2px solid #78788c;

    background:0;color:#5a5a6e;

    cursor:pointer;

    transition:all .3s;

    border-radius: 4px;

}

.form_update button:hover{

    background:var(--main-color);

    color: #fff;

}

.form_update span{

    margin:0 5px 0 15px

}
.form_update .comentarios{

    width:81%;

    padding:8px;

    box-sizing:border-box;

    background:none;

    outline:none;

    resize:none;

    border:0;

    font-family:'Montserrat',sans-serif;

    transition:all .3s;

    border-bottom:2px solid #bebed2

}

.form_update .col-sm-3{

    margin-bottom: 0px;

}

.form_update img{

    width: 230px;
    margin-top: 15px;
    height: 280px;

    border-radius: 4px;

    position: absolute;

}

.form_update .perfil h3{

    padding-top: 35px;

}

.form_update .perfil input{

    margin-bottom: 25px;

}

.form_update .perfil .foto{

    width: 80%;

    background:none;

    outline:none;

    resize:none;

    font-family:'Montserrat',sans-serif;

    transition:all .3s;

    white-space:unset;

    border: none;

    margin-bottom: 0px;

}

.form_update h2{

    color: var(--main-color);

    margin-top: 25px;
    font-weight: bold;

}

#update_id{

    width:80%;

    padding:8px;

    box-sizing:border-box;

    background:none;

    outline:none;

    resize:none;

    border:0;

    font-family:'Montserrat',sans-serif;

    transition:all .3s;

}

/*  ------------------------------------------------------------------   FORM RENOVAR */



#offcanvas-header{

    padding: 0;

}

#renovar_title{

    color: var(--second-color);

    font-weight: bold;

    padding: 10px;

    border: none;

}

#background_title{

    background: var(--main-color);

    width: 100%;

    position: absolute;

    top: 0;

    left: .1px;

    height: 66px;

    z-index: -1;

    border: none;

}
#form_renovar h6{

display: inline-block;
color: #78788c;
font-weight: bolder;
font-size:medium;
}
#form_renovar h5{

    font-weight: bolder;

    font-size:x-large;

    color: #78788c;

    margin-left: 10px;

}
.input-group-text{
    background: #e6e6e6;
    border:2px solid #bebed2;
}
#form_renovar_vigencia{

    margin-bottom: 30px;

    margin-left: 10px;

}

#form_renovar input{

    padding:8px;   

    background:none;

    outline:none;

    border:0;

    font-family:'Montserrat',sans-serif;

    transition:all .3s;

    border-bottom:2px solid #bebed2;

    width: 80%;
    font-size: medium;

}

#form_renovar input:hover{

    border-bottom:2px solid var(--main-color);

}

#form_renovar  select{

    margin-left: 5px;

    font-family:'Montserrat',sans-serif;

    background: none;

    width:90%;

    padding:9px;
    padding-bottom: 10px;

    border-radius: 1px;

    border: none;

    border-bottom:2px solid #bebed2;

    outline:none;

    margin-bottom: 30px;
    font-size: medium;

}
#input_group_renovar{
    width: 90%;
	display: flex;
	flex-wrap: nowrap;
}
#renovar_precio{
    margin-bottom: auto!important;
}
#renovar_precio:hover{
    border-bottom:2px solid #bebed2!important;
}
#renovar_metodo_pago{
    margin-left: -3px!important;
}
#renovar_precio_v{
    margin-left: -5px;
    margin-bottom: auto!important;
}
#renovar_precio_v:hover{
    border-bottom:2px solid #bebed2!important;
}
#renovar_metodo_pago_v{
    width: 50%
}
.input-group-text{
    height: 42px;
}
#form_renovar_button{

    margin-top: 12px;

    float:left;

    padding:8px 12px;

    font-family:'Montserrat',sans-serif;

    border:2px solid #78788c;

    background:0;color:#5a5a6e;

    cursor:pointer;

    transition:all .3s;

    border-radius: 4px;

}

#form_renovar_button:hover{

    background: var(--main-color);

    color: var(--second-color);

}

#form_renovar_decoration_1{

    position: absolute;

    background: #a1a1aa;

    height: 400px;

    width: 350px;

    bottom: -35px;

    right: -205px;

    transform: skew(-38deg);

    z-index: 2;

}

#form_renovar_decoration_2{

    position: absolute;

    width: 0;

    height: 0;

    border-right: 90px solid transparent;

    border-top: 90px solid transparent;

    border-left: 90px solid #666669;

    border-bottom: 90px solid #666669;

    left: 0;

    bottom: 0;

}

/* ---------------------------------------------------------------------------    DETAIL */



.detail h3{

    color: var(--main-color);

    margin-top: 50px;

    height: 30px;

}

#detail_1_decoration {

    position: absolute;

    right: 14.5%;

    width: 0;

    height: 0;

    border-right: 140px solid var(--main-color);

    border-top: 140px solid transparent;

    border-left: 230px solid transparent;

    border-bottom: 230px solid var(--main-color);

    z-index: 5;

}

.detail_1 img{

    object-fit: contain;

    position: absolute;

    border-radius: 4px;

    margin-top: 20px;

    margin-left: 10px;

    width: 230px;

    height: 300px;

    display: inline;

}

.detail_1 .container{   

    height: 370px;

    background:#e6e6e6;

    border-radius:0px;

    box-shadow:0 0 40px -20px #000;

    margin-top: 12px;

    margin-bottom: 5px;

}
#detail_1_info_renovaciones{
    text-decoration: none;
    color: #000;
}
#detail_1_info_renovaciones:hover{
    text-decoration: none;
    cursor: pointer;
    color: #000
}

#info_renovaciones{
    position: absolute;
    margin-left: 500px;
    top: 35px;
}
#card_renovaciones{
    width: 445px!important;
    padding: 5px;
    border-radius: 6px;
    background: var(--second-color);
    text-align: center;
    box-shadow:0 0 40px -20px #000;
}
#tr_head td{
    color: var(--second-color);
    font-size: medium;
    font-weight: bold;
    background: #51066d;
    padding: 3px 8px;
    text-align: center;
}
#tr_head_left{
    border-top-left-radius: 4px;
}
#tr_head_right{
    border-top-right-radius: 4px;
}
#card_renovaciones td{
    font-size: medium;
    font-weight: bold;
    text-align: center;

}
#detail_1_info{
    position: absolute;
    margin-top: 20px;
    margin-left: 250px;
    width: 55%
}

#detail_1_fecha{

    margin-left: 10px;

    margin-top: 330px;

    font-size: medium;

    display: inline-block;

    position: absolute;

}

#detail_1_nombre{

    color: var(--main-color);

    font-size: xx-large;

    font-weight: bold;

    margin: 0 0 50px 0;

}

#detail_1_vigencia, #detail_1_renovaciones{

    padding: 10px;

}



#detail_1_renovaciones{

    margin-bottom: 3rem;

}

.custom-popover {

    --bs-popover-max-width:auto;

    --bs-popover-header-bg: var(--third-color);

}

#detail_1_buttons a{

    border: 2px solid var(--main-color);

    padding: 12px;

    border-radius: 20px;

    text-decoration: none;

    color: var(--main-color);

    margin: .5rem;

}

#detail_1_buttons a:hover{

    background-color: var(--main-color);

    color: var(--second-color);

    

}

#detail_1_buttons #detail_renovar_button{

    border: 2px solid var(--main-color);

    padding: 9px;

    border-radius: 20px;

    text-decoration: none;

    color: var(--main-color);

    margin: .5rem;

    background: var(--second-color);

}

#detail_1_buttons #detail_renovar_button:hover{

    background-color: var(--main-color);

    color: var(--second-color);

    

}



.detail_2 .container{

    height: 300px;

    background:#e6e6e6;

    border-radius:0px;

    box-shadow:0 0 40px -20px #000;

    margin-top: 0px;

}

.detail_2 h3{

    padding-top: 30px;

    padding-bottom: 40px;

    border-bottom: 3px solid var(--main-color);

    box-sizing:border-box;

    width: 50%;

}

.detail_2 h5{

    padding: 5px;

    border-bottom: 1px solid var(--main-color);

    border-left: 1px solid var(--main-color);

    width: 90%;

}

.detail_3 .container{

    height: 300px;

    background:#e6e6e6;

    border-radius:0px;

    box-shadow:0 0 40px -20px #000;

    margin-top: 0px;

}

.detail_3 h3{

    padding-top: 30px;

    padding-bottom: 40px;

    border-bottom: 3px solid var(--main-color);

    box-sizing:border-box;

    width: 50%;

}

.detail_3 .container{

    height: 300px;

    background:#e6e6e6;

    border-radius:0px;

    box-shadow:0 0 40px -20px #000;

    margin-top: 0px;

}

.detail_3 h5{

    padding: 5px;

    border-bottom: 1px solid var(--main-color);

    border-left: 1px solid var(--main-color);

    width: 80%;

}

.detail_4 .container{

    height: 300px;

    background:#e6e6e6;

    border-radius:0px;

    box-shadow:0 0 40px -20px #000;

    margin-top: 0px;

}

.detail_4 h3, .detail_5 h3{

    padding-top: 30px;

    padding-bottom: 40px;

    border-bottom: 3px solid var(--main-color);

    box-sizing:border-box;

    width: 50%;

}

.detail_4 h5, .detail_5 h5{

    padding: 5px;

    border-bottom: 1px solid var(--main-color);

    border-left: 1px solid var(--main-color);

    width: 80%;

}
.detail_5 .container{

    height: 220px;

    background:#e6e6e6;

    border-radius:0px;

    box-shadow:0 0 40px -20px #000;

    margin-top: 0px;

}

#vendedora {

    width: 40%;

}

/* ---------------------------------------------------------------------------------------   INDEX / SEARCH */

h1{

    margin : 30px 0 2.3rem 10%;

    font-size: 3.2rem;

    font-family: 'Rubik', sans-serif;

}

#checkbox{

    position: absolute;

    top: 0;

    left: 0;

}

.menu{

    width: 2.8rem;

    height: 4.2rem;

    background-color: var(--main-color);

    border-radius: .5rem 0 0 .5rem;

    position: absolute;

    top: 10.6rem;

    right: 0;

    font-family: sans-serif;

    font-size: 2.5rem;

    color: white;

    text-align: center;

    transition: right 1s;

}

#checkbox:checked ~ .menu {

    right:19.7%;

    border-radius: .5rem 0 0 .5rem ;

}

.right-panel {

    width: 20%;

    height: 7rem;

    background: rgb(39, 4, 71);

    border: 3px solid var(--main-color);

    position: absolute;

    top: 9.4rem;

    right: -19.5%;

    border-radius: .3rem 0 0 .3rem;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: right 1s;

}

#checkbox:checked ~ .right-panel {

    right:0;

}

#cantidad_vigencias_intro, #cantidad_vigencias_vigentes, #cantidad_vigencias_no_vigentes, #cantidad_vigencias_por_vencer{

    font-weight: bold;

    font-size: large;

}



#cantidad_vigencias_intro{

    color: #fff;

}

#cantidad_vigencias_vigentes{

    color: #319c31;

    margin-top: 15px;

}

#cantidad_vigencias_no_vigentes{

    color: #df2929;

}

#cantidad_vigencias_por_vencer{

    color: #fa612a;

}

#cantidad_registros_box{

    background:#e6e6e6;

    border-radius:4px;

    box-shadow: 2px 2px 4px 3px rgba(0, 0, 0, 0.2);

    position: absolute;

    width: 310px;

    height: 90px;

    display: inline-block;

    right: 10px;

    top: 160px;

    z-index: 10;

}

#cantidad_registros_title{
    font-weight: bold;
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

#cantidad_registros{
    font-weight: bold;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

#table_header td{

    color: var(--second-color);

    background-color: var(--main-color);

    font-weight: bold;

    border: 2px solid var(--second-color);

    border-radius: 4px;

}

#table_body_id{

    font-weight: bold;

    color: #000;

    line-height: 1.2;

}

#table_body_id:hover, #table_body:hover{

    text-decoration: none;

    color: #000;

}

.table_row:hover {

    box-shadow: inset 1px 0 0 #dadce0, inset -1px 0 0 #dadce0, 0 2px 6px 0 #472c5a80, 0 1px 3px 1px #472c5a80;

    z-index: 2;

    cursor:pointer;

}

#table{

    width: 100%;

    margin: auto;

	margin-bottom: 50px;

}

/*   ------------------------------------------------------------------------------------ Impresiones */

#icono_excel{

    position: absolute;

    color: #208520;

    top: 155px;

    right: 320px;

}

#table_impresiones_header{

    background: var(--main-color);

    color: var(--second-color);

    border: 2px solid var(--second-color);

}

#table_impresiones_row{

    border: 1px solid var(--main-color);

}

#impresiones_exportar, #search_exportar {
    text-decoration: none;
    color: #3e8e41;
    border: 2px solid #3e8e41;
    border-radius: 20px;
    padding: .4rem;
    display: inline-block;
    margin-right: 3%;
    background: rgb(240, 240, 240);
    font-weight: bold;
}
#search_exportar{
    position: absolute;
    top: 180px;
    right: 290px;
}

#impresiones_exportar:hover, #search_exportar:hover {
    color: var(--second-color);
    background-color: #3e8e41;
}

#impresiones_agregar{

    display: inline-block;

    margin: 10px 35% 15px 0;

}

#impresiones_agregar input{

    border-radius: 4px;

    height: 2.5rem;

    border: 1px solid var(--main-color);

    display: inline-block;

    padding: .5rem;

    font-weight: bold;

}

#button_impresiones_delete{

    width: 5%;

}

#impresiones_eliminar {

    color: #eb1313;

    text-decoration: none;

    text-align: center;

    padding: 5px 10px;

    font-weight: bold;

}

#impresiones_eliminar:hover {

    text-decoration: none;

    color: #fff;

    background: #eb1313;

    border-radius: 100%;



}

#impresiones_vaciar button {

    border: 2px solid var(--main-color);

    border-radius: 20px;

    color: var(--main-color);

    padding: .4rem;

    font-weight: bold;

}

#impresiones_vaciar{

    display: inline-block;

    background:var(--second-color);

}

#impresiones_vaciar button:hover {

    color: var(--second-color);

    background-color: var(--main-color);

    border: 2px solid var(--main-color);

}



/*   -------------------------------------------------------------------------------------  Vendedores */

#vendedores_index h1{

    font-size: 4rem;

    margin-top: 20px;

    display: inline-block;

    margin-bottom: 2rem;

    margin-left: 4%;

    font-family: 'rubik', sans-serif;

}
#vendedores_row{
    display: flex;
    justify-content: space-between;
}



#agregar_vendedor_button{

    width: 0px;

    height: 110px;

    padding: 0;

    border-left: 48px solid var(--third-color);

    border-right: 48px solid var(--third-color);

    border-bottom: 32px solid transparent;

    position: absolute;

    margin-top: 15px;

    margin-left: 40%;

    transition: .5s;

}

#agregar_vendedor_button:hover{

    cursor: pointer;

    transform: translateY(-5px);

}

#agregar_vendedor_button a{

    text-decoration: none;

    margin-top: 10px;   

    color: #fff;

    margin-left: -22px;

}

#agregar_vendedor_button h2{

    position: absolute;

    color: #fff;

    font-size: 5rem;

    margin-left: -22px;

    margin-top: -25px;

}

#card_vendedores{

    width: 350px !important;

    margin-top: 25px;

    padding: 0;

    height: 645px;

    transition: .5s;

    display: flex;
    justify-content: center
}

#card_vendedores:hover{

    transform: translateY(-10px);

    box-shadow: 0 5px #00000018;

}

#card_vendedores img{

    width: 100%;

    height: 320px;

    object-fit: cover;

}

#card_vendedores h4{

    font-size: x-large;

}

#card_vendedores h4, h5{

    font-weight: bold;

}

#card_vendedores p{

    margin-bottom: 5px;

}

#card_vendedores_button1, #card_vendedores_button2{

    position: absolute;

    text-decoration: none;

    color: #fff;

    padding: 8px;

    background: var(--third-color);

    border-radius: 8px;

    bottom: 55px;

    width: 90px;
    display: flex;
    justify-content: center;

}

#card_vendedores_button1:hover, #card_vendedores_button2:hover{

    background: #3a813c;

}

#card_vendedores_button1{

    margin-left: 40px;

}

#card_vendedores_button2{

    margin-left: 200px;

}

#card_vendedor_status{

    text-align: center;

}

/*    ----------------------------------------------------------------------------------  VENTAS  */

#table_ventas{
    width: 70%;
    margin-top: 10px;
    margin-left: 15%;
}
#ventas_filter{
    width: 70%;
    height: 55px;
    margin-left: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#ventas_form{
    margin-left: 10px;
}
#ventas_input{
    padding:10px;
    background:none;
    outline:none;
    color: var(--main-color);
    font-family:'Montserrat',sans-serif;
    border:2px solid var(--main-color);
    border-radius: 4px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}
#ventas_submit{
    background: none;
    border:2px solid var(--main-color);
    color: var(--main-color);
    text-decoration: none;
    border-radius: 4px;
    padding: 10px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: none;
    margin-left: -5px;
}







#header_decoration_base{

    position: absolute;

    margin-left: -1.5rem;

    margin-top: 6px;

    width: 0;

    height: 0;

    border-right: 100px solid transparent;

    border-top: 100px solid var(--main-color);

    border-left: 100px solid var(--main-color);

    border-bottom: 100px solid transparent;

    z-index: 1;

}



#header_decoration_1 {

    width: 95%; 

    height: 18px; 

    margin-top: 6px;

    background: var(--main-color);

    -moz-border-radius: 0 100px 100px 0;

    -webkit-border-radius: 0 100px 100px 0;

    border-radius: 0 100px 100px 0;

    z-index: 2;

}

#header_decoration_2 {

    width: 85%; 

    height: 18px; 

    margin-top: 6px;

    background: #661285;

    -moz-border-radius: 0 100px 100px 0;

    -webkit-border-radius: 0 100px 100px 0;

    border-radius: 0 100px 100px 0;

    z-index: 2;

}

#header_decoration_3 {

    width: 75%; 

    height: 18px; 

    margin-top: 6px;

    background: #9226b9;

    -moz-border-radius: 0 100px 100px 0;

    -webkit-border-radius: 0 100px 100px 0;

    border-radius: 0 100px 100px 0;

    z-index: 2;

}

#logout_icon{

    position: fixed;

    right: 5px;

   bottom: 5px;

    color: var(--second-color);

    background: var(--main-color);

    border-radius: 5px;

    cursor: pointer;

}

#logout_icon p{

    display: inline-block;

    font-size: larger;

    margin-bottom: 0;

    padding: 7px;

}

#logout_icon svg{

    margin-top: -4px;

    margin-right: 5px;

}
/* ----------------------------------------------------VENTAS / RENOVACINOES - INDEX -----------------*/
#ventas-renovacion_index{
    display: flex;
    justify-content: center;
    margin-top: 0px;
}
.two_cards_1, .two_cards_2{
    display: contents;
}
#msg_ventas-renovaciones{
    width: fit-content;
    margin-top: -20px;
}
.agregar_card_1, .renovar_card_1{
    background: #fff;
    width: 270px;
    height: 350px;
    border-radius: 8px;
    box-shadow:0 0 40px -10px #000;
    margin-left: 12%;
    transition:all .5s;
    z-index: 2;
}
#checkbox_card_1:checked ~ .agregar_card_1, #checkbox_card_2:checked ~ .renovar_card_1{
    transform: translateX(-100px);
}
.agregar_card_2, .renovar_card_2{
    background: var(--main-color);
    width: 270px;
    height: 350px;
    border-radius: 8px;
    margin-top: -15px;
    margin-left: -255px;
    box-shadow:0 0 40px -10px #000;
    margin-right: 12%;
    transition:all .5s;
    z-index: 1;
}
.agregar_card_1:hover, .renovar_card_1:hover{
    transform: translateX(-20px);
}
.agregar_card_1:hover ~ .agregar_card_2, .renovar_card_1:hover ~ .renovar_card_2{
    transform: translateX(20px);
}
#checkbox_card_1:checked ~ .agregar_card_1, #checkbox_card_2:checked ~ .renovar_card_1{
    transform: translateX(-100px);
}
#checkbox_card_1:checked ~ .agregar_card_2, #checkbox_card_2:checked ~ .renovar_card_2{
    transform: translateX(100px);
}
#checkbox_card_1, #checkbox_card_2{
    position: absolute;
    left: 0;
    top: 6px;
}
#icon_agregar_card, #icon_renovar_card{
    color: var(--main-color);
    margin-left: 20px;
}
.agregar_card_1 h2, .renovar_card_1 h2{
    color: var(--main-color);
    text-align: center;
    justify-content: center;
    display: flex;
    font-weight: bolder;
}
.agregar_card_2 a{
    color: #fff;
    margin-top: 110px;
    margin-left: 75px;
    display: flex;
    font-weight: bolder;
    text-decoration: none;
}
.renovar_card_2 label{
    margin-top: 15px;
    margin-left: 75px;
    color: #fff;
    font-size: larger;
    font-weight: bolder;
}
.renovar_card_2 input{
    margin-left: 75px;
    width: 180px;
    border-radius: 2px;
    border: none;
    margin-top: 10px;
    padding: 4px;
}
#card_2_renovar_form_separar{
    margin-left: 160px;
}
.renovar_card_2 button{
    color: #fff;
    padding: 5px 10px;
    margin-left: 125px;
    margin-top: 25px;
    border-radius: 4px;
    border: 1px solid var(--main-color);
    background: var(--third-color);
}
.renovar_card_2 button:hover{
    border: 1px solid #fff;
}
#cards_renovar_row{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.verify_id, .renovar_form{
    margin-top: 70px;
}
.verify_id{   
    height: 330px;
    padding: 15px;
    width: 500px;
    background:#e6e6e6;
    border-radius:10px;
    box-shadow:0 0 40px -20px #000;
    position: relative;
}
.verify_id img{
    object-fit: contain;
    position: absolute;
    border-radius: 10px;
    width: 150px;
    height: 220px;
}
.verify_id h2{
    color: var(--main-color);
    margin-top: 60px;
    font-weight: bold;
    width: 310px;
    position: absolute;
}
.verify_id h5{
    position: absolute;
    margin-top: 10px;
    margin-left: 365px;
    color: #fff;
    background: var(--main-color);
    width: 120px;
    padding: 8px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.verify_id h3{
    font-size: 24px;
    font-weight: bold;
    text-align: center !important;
    margin-top: 10px;
}
#content_verify_id{
    position: absolute;
    bottom: 0;
    width: 500px;
    margin-left: -15px;
    background: rgba(197, 196, 196, 0.63);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.renovar_form{   
    height: 470px;
    width: 400px;
    background:#e6e6e6;
    border-radius: 10px;
    box-shadow:0 0 40px -20px #000;
    padding: 15px 25px;
}
#fecha_form_renovar_v {
    margin-top: 15px;
}
#form_renovar_button_v{

    float:right;
    margin-top: -10px;
    padding:8px 12px;

    font-family:'Montserrat',sans-serif;

    border:2px solid #78788c;

    background:0;color:#5a5a6e;

    cursor:pointer;

    transition:all .3s;

    border-radius: 4px;

}

#form_renovar_button_v:hover{

    background: var(--main-color);

    color: var(--second-color);

}
#signo_precio{
    background: #e6e6e6;
    border-bottom: 2px solid #bebed2;
}
#form_renovar_v_h5 {

    margin-top: 40px;
}
#new_id_renovar_form{
    width: 300px;
    position: absolute;
    right: 6.5%;
    top: -25px;
}

    #form_renovar_v h5{
    
        font-weight: bolder;
    
        font-size:x-large;
    
        color: #78788c;
    
        margin-left: 10px;
    
    
    
    }
    
    #form_renovar_v input{
    
        padding:8px;   
    
        background:none;
    
        outline:none;
    
        border:0;
    
        font-family:'Montserrat',sans-serif;
    
        transition:all .3s;
    
        border-bottom:2px solid #bebed2;
    
        width: 90%;
        font-size: medium;
    
    }
    
    #form_renovar_v input:hover{
    
        border-bottom:2px solid var(--main-color);
    
    }
    
    #form_renovar_v  select{
    
        margin-left: 5px;
    
        font-family:'Montserrat',sans-serif;
    
        background: none;
    
        width:94%;
    
        padding:9px;
        padding-bottom: 10px;
    
        border-radius: 1px;
    
        border: none;
    
        border-bottom:2px solid #bebed2;
    
        outline:none;
    
        margin-bottom: 30px;
        font-size: medium;
    
    }
    #input_group_renovar_v{
        width: 80%;
    }
    #form_renovacion_v{
        height:1400px;
    }