@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap');
:root{
    --primary:      #2A6F6F;
    --second:       #3b9f9f;
    --alternate:    #215959;
    
    --success:      #29b229;
    --success-soft: #3bc03b;
    --success-dark: #209720;
    --info:         #377ae7;
    --info-soft:    #4182ea;
    --info-dark:    #2e6cd1;
    --warning:      #f2b31f;
    --warning-soft: #f8bb2c;
    --warning-dark: #e0a61f;
    --danger:       #df3131;
    --danger-soft:  #e13e3e;
    --danger-dark:  #ce2d2d;

    --white:    #ffffff;
    --red:      #db3636;
    --pink:     #f783f7;
    --purple:   #8656dd;
    --blue:     #2697f3;
    --green:    #47bb4b;
    --lime:     #95c10f;
    --teal:     #00b8ae;
    --yellow:   #fbc208;
    --brown:    #b9794d;
    --orange:   #ff8432;
    --gray:     #858585;
    --black:    #000000;

    --background : #fff;
    --border: 1px solid #cdcdcd;
    --text-color: #797979;
    --text-label: #858484;
    --disabled : inset 0 0 100px 100px rgba(80, 80, 80, 0.15);
    --bg-elements: #ffffff;

    --r-half: .5rem;
    --r-0: 0rem;
    --r-1: 1rem;
    --r-2: 2rem;
    --r-3: 3rem;
    --r-4: 4rem;
    --r-5: 5rem;
}

*{
    padding: 0;
    box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6, p{
    margin: 0;
}
html{
    height: 100%;
}
body{
    margin: 0;
    padding: 0;
    font-size: .9rem;
    color: var(--text-color);
    background-color: var(--background);
    font-family: 'Quicksand', sans-serif !important;
    overflow-x: hidden;
}
.main-page{
    margin-top: 5rem;
}
.title{
    font-size: 1.85rem;
    color: #2f2f2f;
}
.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}
.text-left{
    text-align: left;
}
.text-justify{
    text-align: justify;
}
.font-xs{
    font-size: .75rem !important;
}
.font-sm{
    font-size: .8rem !important;
}
.font-md{
    font-size: 1.25rem !important;
}
.font-lg{
    font-size: 1.65rem !important;
}
.font-xl{
    font-size: 2rem !important;
}
.bold{
    font-weight: bolder;
}
.capitalize{
    text-transform: capitalize
}
.uppercase{
    text-transform: uppercase
}
.lowercase{
    text-transform: lowercase
}
.input::placeholder {
    text-transform: none; /* El placeholder permanece sin cambios */
}
.flex-between{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex-end{
    display: flex;
    justify-content: flex-end;
}
.flex-center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-center-v{
    display: flex;
    align-items: center;
}
.flex-center-h{
    display: flex;
    justify-content: center;
}
.content-input{
    position: relative;
    margin-bottom: .85rem;
}
.form-label {
    font-weight: 580;
    color: var(--text-label);
    font-size: .9rem;
}
.hidden{
    display: none !important;
}
.not-show{
    opacity: 0;
}
.bg {
    background: linear-gradient(5deg, #2A6F6F 0%, #3aa9a9 145%);
    background-size: cover;
    min-height: 91.5dvh;
    /* min-height: 100vh; */
    /* height: 100%; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.LogoLogin{
    margin: 0 auto 50px;
    display: block;
    width: 120px;
}
/* ================================================================================================= //
// -------------------------------------------- CHATBOT -------------------------------------------- //
// ================================================================================================= */
.chatbot-toggler {
    position: fixed;
    z-index: 1001;
    right: 1rem;
    outline: none;
    border: none;
    height: 3.5rem;
    width: 3.5rem;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #52d366;
    transition: all 0.2s ease;
}
.chatbot-toggler .icon {
    color: #fff;
    position: absolute;
    font-size: 1.85rem;
    pointer-events: none;
}
.layout-home {
    bottom: 1.25rem;
}
.layout-login {
    bottom: 5.25rem;
}
/* ================================================================================================= //
// --------------------------------------------- swal2 --------------------------------------------- //
// ================================================================================================= */
.swal2-container.swal2-center>.swal2-popup{
    border-radius: .75rem;
    color: var(--text-label) !important;
}
.swal2-html-container {
    font-size: .95rem !important;
}
/* ================================================================================================= //
// ------------------------------------------ Date-picker ------------------------------------------ //
// ================================================================================================= */
.dp__input, .swal2-input{
    width: 100%;
    color: var(--text-color) !important;
    border-radius: .5rem !important;
    border: 0.0325rem solid #a8b0b9 !important;
    background-color: var(--bg-elements);
    outline: 0.0325rem solid #dbe3ec !important;
    height: 36px !important;
    margin: .15rem 0;
    transition: outline .25s ease, box-shadow .25s ease !important;
    font-family: 'Quicksand', sans-serif;
    min-height: 37px !important;
    overflow: hidden;
}
.dp__input:focus {
    outline: .1rem solid var(--primary) !important;
    box-shadow: 0px 0px 0px 3px rgba(27, 153, 84, 0.133) !important
}
/* ================================================================================================= //
// ----------------------------------------- Multi-Select ------------------------------------------ //
// ================================================================================================= */
.multiselect__tags{
    border: none; 
}
.multiselect__tags{
    border: none; 
    background: var(--bg-element);
    font-size: .9rem;
}
.multiselect {
    width: 100%;
    border: 0.0325rem solid #a8b0b9 !important;
    color: var(--text-color);
    border-radius: .5rem;
    background-color: var(--bg-elements);
    outline: 0.0325rem solid #dbe3ec;
    height: 36px;
    margin: .15rem 0;
    transition: outline .25s ease, box-shadow .25s ease;
    font-family: 'Quicksand', sans-serif;
    font-size: .9rem;
    min-height: 37px !important;
    overflow: hidden;
}
.multiselect--disabled {
    opacity: 0.8 !important;
}
.multiselect--active {
    overflow: visible;
}
.multiselect:hover{
    outline: .1rem solid var(--primary);
    box-shadow: 0px 0px 0px 3px rgba(27, 153, 84, 0.133)
}
.multiselect__placeholder, .multiselect__element{
    font-size: .9rem;
}
.multiselect__content-wrapper, .multiselect__content {
    outline: 0.0325rem solid #a2abb4;
}
.multiselect__option{
    font-size: .9rem;
}
/* Estilos personalizados para vue-multiselect */
.multiselect__option--highlight.multiselect__option {
  /* Estilos para el foco */
    background: var(--primary) !important;
}
.multiselect__option--highlight:hover {
  /* Estilos para el hover */
  background-color: var(--primary); /* Cambia el color de fondo cuando el mouse está sobre el componente */
}
.multiselect__input::placeholder { /* Edge 12-18 */
    color: var(--text-color);
}
.multiselect__input, .multiselect__single{
    color: var(--text-color) !important;
    font-size: .9rem !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
}
/* ================================================================================================= //
// ----------------------------------------- Input Phone ------------------------------------------- //
// ================================================================================================= */
.vti__input{
    color: var(--text-color) !important;
    font-size: .9rem !important;
    border-right: 0.0325rem solid #e4ebf4 !important;
    border-radius: 0 .5rem .5rem 0 !important;
}
/* ================================================================================================= //
// ----------------------------------------- Input file -------------------------------------------- //
// ================================================================================================= */
.upload{
    width: max-content;
    min-width: 11rem;
    display: inline-block;
    font-size: .85rem;
    font-weight: normal;
    text-align: center;
}
.upload span{
    font-weight: bold;
    color: var(--white);
}
.upload:hover span{
    color: var(--white);
}
.upload input[type = "file"]{
    height: 0.1px;
    width: 0.1px;
    position: absolute;
    z-index: -1;
    overflow: hidden;
    opacity: 0;
}
.flex-upload{
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-upload .upload{
    width: auto;
    min-width: 8rem;
    border-radius: .25rem 0 0 .25rem;
    height: 35px;
}
.flex-upload .input{
    border-radius: 0 .25rem .25rem 0;
    height: 33px;
    margin-left: -3px;
}
.upload:active{
    box-shadow: inset 6px 6px 10px -7px rgba(92, 92, 92, 0.25);
}
.pdf-app .toolbar {
    z-index: 1 !important;
}
/* ================================================================================================= //
// ----------------------------------------- Input-phone ------------------------------------------- //
// ================================================================================================= */
.vue-tel-input{
    position: relative;
    width: 100%;
    border: 0.0325rem solid #a8b0b9 !important;
    box-sizing: border-box;
    color: var(--text-color);
    border-radius: .5rem !important;
    background-color: var(--bg-elements);
    outline: 0.0325rem solid #dbe3ec;
    height: 38px;
    margin: .15rem 0;
    transition: outline .25s ease, box-shadow .25s ease;
    font-family: 'Quicksand', sans-serif;
    font-size: .9rem;
}
.vue-tel-input:focus-within {
    outline: .1rem solid var(--primary);
    box-shadow: 0px 0px 0px 3px rgba(27, 153, 84, 0.133)
}
.vti__dropdown-list{
    width: 370px;
}
/* ================================================================================================= //
// --------------------------------------------- SIZE ---------------------------------------------- //
// ================================================================================================= */
.w-1{
    min-width: 1rem;
}
.w-2{
    min-width: 2rem;
}
.w-3{
    min-width: 3rem;
}
.w-4{
    min-width: 4rem;
}
.w-5{
    min-width: 5rem;
}
.w-6{
    min-width: 6rem;
}
.w-7{
    min-width: 7rem;
}
.w-8{
    min-width: 8rem;
}
.w-9{
    min-width: 9rem;
}
.w-10{
    min-width: 10rem;
}
.w-100{
    width: 100%;
}
/* ================================================================================================= //
// -------------------------------------------- Alert ---------------------------------------------- //
// ================================================================================================= */
.alert{
    position: absolute;
    padding: 0;
    top: 7px;
    opacity: 0;
    width: 0;
    box-shadow: 1px 7px 14px -5px rgb(49, 49, 49);
    z-index: 1000;
    overflow: hidden;
    border-radius: 7px;
    height: 100px;
}
.alert.left{
    left: 5px;
}
.alert.right{
    right: 5px;
}
.alert.success{
    background-color: #5fecb1;
}
.alert.danger{
    background-color: #ea7676;
}
.alert.info{
    background-color: #64c1e3;
}
.alert.warning{
    background-color: #efcf78;
}

.content-alert{
    padding: 20px 15px 20px 15px;
    display: flex;
    align-items: center;
    color: #fff;
    border-left: 0.5rem solid #fff;;
}
.content-alert .icon{
    font-size: 3rem;
    padding-right: 1.25rem;
    text-align: center;
    color: #fff;
}
.close{
    font-size: 1.15rem;
    font-weight: 700;
    position: absolute;
    top: 1px;
    right: .5rem;
    cursor: pointer;
    color: #fff;
    user-select: none;
}

.alert.show{
    animation: show_alert .75s ease forwards;
}
.alert.hide{
    animation: hide_alert .75s ease forwards;
}

@keyframes show_alert {
    from {
        opacity: 0;
        width: 0;
    }
    to {
        opacity: 1;
        width: 350px;
    }
}
@keyframes hide_alert {
    from {
        opacity: 1;
        width: 350px;
    }
    to {
        opacity: 0;
        width: 0;
    }
}
/* ================================================================================================= //
// ----------------------------------------- DISPLAY ERRORS ---------------------------------------- //
// ================================================================================================= */
.label-error {
    color: #f71a1a;
    font-size: .85rem;
    display: none;
}

.label-error.show {
    display: initial;
}
/* ================================================================================================= //
// -------------------------------------------- Button --------------------------------------------- //
// ================================================================================================= */
.button {
    position: relative;
    display: inline-block;
    font-size: .9rem;
    padding: .568rem .85rem;
    margin: .35rem .25rem;
    box-sizing: border-box;
    white-space: normal;
    cursor: pointer;
    user-select: none;
    border: none;
    color: var(--white);
    background-color: var(--bg-elements);
    border-radius: .25rem;
    overflow: hidden;
    font-family: 'Quicksand', sans-serif;
}
a.button{
    text-decoration: none;
}
.button:disabled{
    cursor: not-allowed;
    background-color: #f2f2f2;
}
.button.primary:disabled{
    background-color: var(--second);
}
.button:active:not(:disabled){
    box-shadow: inset 7px 7px 11px -7px rgba(35, 35, 35, 0.75);
}
.button.icon{
    height: 1.85rem;
    width: 1.85rem;
    font-size: 1.15rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.button.form{
    min-width: 10rem;
    border-radius: 2rem;
    border: 1px solid;
}
a.button.form{
    display: inline-grid;
}
.button:not(:focus):hover {
    filter: brightness(96%);
}
.button.primary{
    border: 1px solid var(--primary);
}
.button.second{
    border: 1px solid var(--second);
}
.button.alternate{
    border: 1px solid var(--alternate);
}
.button.info{
    border: 1px solid var(--info);
}
.button.success{
    border: 1px solid var(--success);
}
.button.warning{
    border: 1px solid var(--warning);
}
.button.danger{
    border: 1px solid var(--danger);
}
.button.white{
    border: 1px solid var(--primary);
}
.button.black{
    border: 1px solid var(--black);
}

.btn-icon{
    position: absolute;
    right: -5px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transform: translateY(-50%);
    top: 50%;
    margin: 0;
    padding: 0;
}
.btn-icon .icon-eye{
    position: absolute;
    top: 50%;
    right: .75rem;
    font-size: 1.05rem;
    transform: translateY(-50%);
    color: #575757;
}

/* ================================================================================================= //
// --------------------------------------------- Card ---------------------------------------------- //
// ================================================================================================= */
.card{
    width: 100%;
    margin: .75rem 0;
    position: relative;
    box-sizing: border-box;
    display: inline-block;
    border-radius: 1rem;
    color: var(--text-color);
    border: 1px solid #b7b6b6;
}
.card.block{margin: .5rem 0;}
.card-img img{
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 1rem 1rem 0 0;
}
.card-header{
    padding: .5rem;
    font-weight: 700;
    font-size: 1.15rem;
    border-bottom: 1rem;
}
.card-body{
    padding:1rem;
}
.card-footer{
    padding: .75rem;
    font-size: .9285rem;
    border-top: 1rem;
}
.card-footer.button{
    margin: 0;
    width: 100%;
    overflow: hidden;
    border-radius: 0 0 1rem 1rem;
    position: relative;
    outline: 0;
    box-shadow: none;
}
/* ================================================================================================= //
// ------------------------------------------- Gradients ------------------------------------------- //
// ================================================================================================= */
.gr-primary{
    background: linear-gradient(5deg, var(--primary) 0%, var(--second) 145%);
}
.gr-second{
    background: linear-gradient(5deg, var(--second) 0%, var(--second-soft) 145%);
}
.gr-alternate{
    background: linear-gradient(5deg, var(--alternate) 0%, var(--alternate-soft) 145%);
}
.gr-background{
    color: var(--text-color);
    background: var(--gr-elements);
}
/* ================================================================================================= //
// ---------------------------------------- Radio - Check ------------------------------------------ //
// ================================================================================================= */


/* Estilo para el contenedor */
.checkbox-container {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    user-select: none;
}

/* Esconde el checkbox original */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Estilo del cuadrado del checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #f0f0f0;
    border: 2px solid #ccc;
    border-radius: 4px;
    transition: all 0.2s ease;
}

/* Cambio de color al hacer hover */
.checkbox-container:hover input ~ .checkmark {
    background-color: #e0e0e0;
}

/* Estilo del checkmark cuando está seleccionado */
.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Checkmark */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    box-sizing: border-box;
}

/* Mostrar el checkmark */
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}


/* ================================================================================================= //
// -------------------------------------------- Input ---------------------------------------------- //
// ================================================================================================= */
.input {
    position: relative;
    width: 100%;
    border:  0.0325rem solid #a8b0b9;
    padding: 0 10px;
    box-sizing: border-box;
    color: var(--text-color);
    border-radius: .5rem;
    background-color: var(--bg-elements);
    outline: 0.0325rem solid #dbe3ec;
    height: 37px;
    margin: .15rem 0;
    transition: outline .25s ease, box-shadow .25s ease;
    font-family: 'Quicksand', sans-serif;
    font-size: .9rem;
}
textarea.input{
    height: auto;
}
.input:focus {
    outline: .1rem solid var(--primary);
    box-shadow: 0px 0px 0px 3px rgba(27, 153, 84, 0.133)
}
.input::placeholder {
    color: #9e9fa1;
}
/* ================================================================================================= //
// -------------------------------------------- Modal ---------------------------------------------- //
// ================================================================================================= */
.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    padding-top: 5rem;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    max-height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}
/*---- Modal Content ----*/
.modal-content {
    position: relative;
    background-color: var(--background);
    margin: 0 auto 1.5rem;
    border-radius: .5rem;
    width: 60%;
    animation-name: animatetop;
    animation-duration: 0.4s;
}
.modal-content.modal-xs{ width: 25%; }
.modal-content.modal-sm{ width: 40%; }
.modal-content.modal-lg{ width: 80%; }
.modal-content.modal-xl{ width: 95.75%; }

.modal-header, .modal-body, .modal-footer{
    padding: .65rem 1rem;
}
/* .modal-body{
    max-height: 500px;
    overflow: overlay;
} */
.modal .card{
    overflow: auto;
}
.modal-header{
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
    background-color: var(--primary);
    color: white;
}
.modal-footer{
    border-bottom-left-radius: .5rem;
    border-bottom-right-radius: .5rem;
}
.modal-header{
    border-bottom: var(--border);
}
.modal-footer{
    border-top: var(--border);
}
.modal.show{
    display: block;
}
/* The Close Button */
.modal .close {
    font-size: 1.35rem;
    font-weight: 700;
    position: absolute;
    top: 0;
    right: .6rem;
    color: #000000;
}
.modal .close:hover,
.modal .close:focus {
    color: var(--bg-elements-dark);
    text-decoration: none;
    cursor: pointer;
}
@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}
/* ================================================================================================= //
// --------------------------------------------- Tab ----------------------------------------------- //
// ================================================================================================= */
.tab-container{
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #a9a9a9;
    margin: 1rem 0;
}
.tabs{
    display: flex;
    background-color: var(--primary);
    flex-wrap: wrap;
    padding: 0;
}
.tabs .tab-item{
    padding: 1rem .25rem;
    text-transform: capitalize;
    font-weight: 900;
    text-decoration: none;
    flex: auto;
    text-align: center;
    cursor: pointer;
    color: #fff;
}
.tabs .tab-item:hover{
    color: var(--text-color);
    background-color: var(--white);

}
.tabs .tab-item.active{
    background-color: var(--white);
    color: var(--text-color);
}
.tab-content .tab-panel{
    clear: both;
    padding: 20px;
    background: var(--background);
    color: var(--text-color);
    /* display: none; */
    display: block;
}
.tab-panel h3{
    margin: 0;
}
.tab-content input[type="radio"]{
    display: none;
}
.tab-content input[type="radio"]:not(:checked) + .tab-panel{
    display: none;
}
/* ================================================================================================= //
// -------------------------------------------- Table ---------------------------------------------- //
// ================================================================================================= */
.table-responsive{
    width: 100%;
    display: block;
    overflow-x: scroll;
    overflow-y: scroll;
    border-radius: 1rem;
    background: var(--bg-elements);
    padding: 0 .5rem;
    border: var(--border); 
}

.table{
    width: 100%;
    /* border-collapse: collapse; */
    border-collapse: separate;
    border-spacing: 0 .5rem;
}
.table-responsive.table-scroll{
    max-height: 30rem;
    position: relative;
}
.table-responsive.table-scroll.hide-scroll{
    overflow-x: hidden;
}
.table-scroll thead th {
    /* background: linear-gradient(359deg, var(--primary) 0%, var(--primary-soft) 115%); */
    background-color: var(--primary);
    z-index: 1;
    position: sticky;
    top: -.1rem;
}
.table thead {
    /* background: var(--gr-elements); */
    /* background-color: var(--alternate-soft); */
    /* background: linear-gradient(359deg, var(--primary) 0%, var(--primary-soft) 115%); */
    background-color: var(--primary);
}
.table thead th{
    font-size: .85rem;
    color: var(--white);
    padding: .5rem .35rem;
    /* border-top: .1rem solid #dadddf; */
}
.table tbody{
    font-size: .875rem;
    color: var(--text-color);
}
.table th, .table td{
    padding: .25rem .25rem;
    vertical-align: middle;
    white-space: nowrap;
    color: var(--text-color);
    border-bottom: none;
    height: 35px;
}
.table tr td div{
    white-space: nowrap; 
    width: 125px; 
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
}
.table tbody tr td:first-child{
    padding-left: 1rem;
}
.table td, .table th{
    border-bottom: none;   
}
.table td{
    font-size: .85rem;
}
.table tbody tr{
    /* background: var(--gr-elements); */
    outline:  var(--border);
    font-size: 0.885rem;
}
.table .hide{
    display: none;
}
.td-center td{
    text-align: center;
}
.table-auto{
    width: auto;
}
.row-bordered thead th{
    border: .125rem solid #dadddf;
}
.row-incremet{
    box-shadow: inset 5px 0px 0px 0px var(--success);
}
.row-decrement{
    box-shadow: inset 5px 0px 0px 0px var(--danger);
}
.row-empty{
    box-shadow: inset 5px 0px 0px 0px var(--gray);
}
/* ================================================================================================= //
// ------------------------------------------ Background ------------------------------------------- //
// ================================================================================================= */
.primary{
    background-color: var(--primary);
}
.second{
    background-color: var(--second);
}
.alternate{
    background-color: var(--alternate);
}
.info{
    background-color: var(--info);
}
.success{
    background-color: var(--success);
}
.warning{
    background-color: var(--warning);
}
.danger{
    background-color: var(--danger);
}
.white{
    background-color: var(--white);
}
.black{
    background-color: var(--black);
}
/* ================================================================================================= //
// ------------------------------------------- TEXT COLOR ------------------------------------------ //
// ================================================================================================= */
.text-label{
    color: var(--text-label);
}
.text-primary{
    color: var(--primary);
}
.text-second{
    color: var(--second);
}
.text-alternate{
    color: var(--alternate);
}
.text-info{
    color: var(--info);
}
.text-success{
    color: var(--success);
}
.text-warning{
    color: var(--warning);
}
.text-danger{
    color: var(--danger);
}
.text-white{
    color: var(--white);
}
.text-black{
    color: var(--black);
}
/* ================================================================================================= //
// ------------------------------------------- Margins --------------------------------------------- //
// ================================================================================================= */
/*---- Margin all ----*/
.m-half{
    margin: var(--r-half);
}
.m-1 {
    margin: var(--r-1);
}

.m-2 {
    margin: var(--r-2);
}

.m-3 {
    margin: var(--r-3);
}

.m-4 {
    margin: var(--r-4);
}

.m-5 {
    margin: var(--r-5);
}

/*---- Margin left - right ----*/
.mlr-half{
    margin: 0 var(--r-half);
}
.mlr-1 {
    margin: 0 var(--r-1);
}

.mlr-2 {
    margin: 0 var(--r-2);
}

.mlr-3 {
    margin: 0 var(--r-3);
}

.mlr-4 {
    margin: 0 var(--r-4);
}

.mlr-5 {
    margin: 0 var(--r-5);
}

/*---- Margin top - bottom ----*/
.mtb-half{
    margin: var(--r-half) 0;
}
.mtb-1 {
    margin: var(--r-1) 0;
}

.mtb-2 {
    margin: var(--r-2) 0;
}

.mtb-3 {
    margin: var(--r-3) 0;
}

.mtb-4 {
    margin: var(--r-4) 0;
}

.mtb-5 {
    margin: var(--r-5) 0;
}

/*---- Margin bottom ----*/
.mb-half{
    margin-bottom: var(--r-half);
}
.mb-1 {
    margin-bottom: var(--r-1);
}

.mb-2 {
    margin-bottom: var(--r-2);
}

.mb-3 {
    margin-bottom: var(--r-3);
}

.mb-4 {
    margin-bottom: var(--r-4);
}

.mb-5 {
    margin-bottom: var(--r-5);
}

/*---- Margin top ----*/
.mt-half{
    margin-top: var(--r-half);
}
.mt-1 {
    margin-top: var(--r-1);
}

.mt-2 {
    margin-top: var(--r-2);
}

.mt-3 {
    margin-top: var(--r-3);
}

.mt-4 {
    margin-top: var(--r-4);
}

.mt-5 {
    margin-top: var(--r-5);
}

/*---- Margin left ----*/
.ml-half{
    margin-left: var(--r-half);
}
.ml-1 {
    margin-left: var(--r-1);
}

.ml-2 {
    margin-left: var(--r-2);
}

.ml-3 {
    margin-left: var(--r-3);
}

.ml-4 {
    margin-left: var(--r-4);
}

.ml-5 {
    margin-left: var(--r-5);
}

/*---- Margin right ----*/
.mr-half{
    margin-right: var(--r-half);
}
.mr-1 {
    margin-right: var(--r-1);
}

.mr-2 {
    margin-right: var(--r-2);
}

.mr-3 {
    margin-right: var(--r-3);
}

.mr-4 {
    margin-right: var(--r-4);
}

.mr-5 {
    margin-right: var(--r-5);
}
/* ================================================================================================= //
// -------------------------------------------- Paddings ------------------------------------------- //
// ================================================================================================= */
/*---- padding all ----*/
.p-half{
    padding: var(--r-half);
}
.p-1 {
    padding: var(--r-1);
}

.p-2 {
    padding: var(--r-2);
}

.p-3 {
    padding: var(--r-3);
}

.p-4 {
    padding: var(--r-4);
}

.p-5 {
    padding: var(--r-5);
}

/*---- padding top - bottom ----*/
.ptb-half{
    padding: var(--r-half) 0;
}
.ptb-1 {
    padding: var(--r-1) 0;
}

.ptb-2 {
    padding: var(--r-2) 0;
}

.ptb-3 {
    padding: var(--r-3) 0;
}

.ptb-4 {
    padding: var(--r-4) 0;
}

.ptb-5 {
    padding: var(--r-5) 0;
}
/*---- padding left - right ----*/
.plr-half{
    padding: 0 var(--r-half);
}
.plr-1 {
    padding: 0 var(--r-1);
}

.plr-2 {
    padding: 0 var(--r-2);
}

.plr-3 {
    padding: 0 var(--r-3);
}

.plr-4 {
    padding: 0 var(--r-4);
}

.plr-5 {
    padding: 0 var(--r-5);
}

/*---- padding bottom ----*/
.pb-1 {
    padding-bottom: var(--r-1);
}

.pb-2 {
    padding-bottom: var(--r-2);
}

.pb-3 {
    padding-bottom: var(--r-3);
}

.pb-4 {
    padding-bottom: var(--r-4);
}

.pb-5 {
    padding-bottom: var(--r-5);
}

/*---- Padding top ----*/
.pt-half{
    padding-top: var(--r-half);
}
.pt-1 {
    padding-top: var(--r-1);
}

.pt-2 {
    padding-top: var(--r-2);
}

.pt-3 {
    padding-top: var(--r-3);
}

.pt-4 {
    padding-top: var(--r-4);
}

.pt-5 {
    padding-top: var(--r-5);
}

/*---- Padding left ----*/
.pl-half{
    padding-left: var(--r-half);
}
.pl-1 {
    padding-left: var(--r-1);
}

.pl-2 {
    padding-left: var(--r-2);
}

.pl-3 {
    padding-left: var(--r-3);
}

.pl-4 {
    padding-left: var(--r-4);
}

.pl-5 {
    padding-left: var(--r-5);
}

/*---- Padding right ----*/
.pr-half{
    padding-right: var(--r-half);
}
.pr-1 {
    padding-right: var(--r-1);
}

.pr-2 {
    padding-right: var(--r-2);
}

.pr-3 {
    padding-right: var(--r-3);
}

.pr-4 {
    padding-right: var(--r-4);
}

.pr-5 {
    padding-right: var(--r-5);
}
/* ================================================================================================= //
// -------------------------------------------- COLUMNS -------------------------------------------- //
// ================================================================================================= */
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    /* margin-top:.5rem; */
}

.col {
    flex: 1 0 0%;
}

/* MEDIAS QUERY'S */
@media (max-width: 992px) {
    .modal-content.modal-sm{
        width: 60%;
    }
}
@media (max-width: 768px) {
    .modal-content{
        width: 70%;
    }
    .modal-content.modal-sm, .modal-content.modal-xs{
        width: 70%;
    }
}

@media (max-width: 703px) {

}

@media (max-width: 576px) {
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .nav li{
        width: 100%;
    }
    .modal-content{
        width: 80%;
    }
    .modal-content.modal-sm, .modal-content.modal-xs{
        width: 85%;
    }
}


.col-xs-12 {
    width: 100%;
}

.col-xs-11 {
    width: 91.66666667%;
}

.col-xs-10 {
    width: 83.33333333%;
}

.col-xs-9 {
    width: 75%;
}

.col-xs-8 {
    width: 66.66666667%;
}

.col-xs-7 {
    width: 58.33333333%;
}

.col-xs-6 {
    width: 50%;
}

.col-xs-5 {
    width: 41.66666667%;
}

.col-xs-4 {
    width: 33.33333333%;
}

.col-xs-3 {
    width: 25%;
}

.col-xs-2 {
    width: 16.66666667%;
}

.col-xs-1 {
    width: 8.33333333%;
}
@media (min-width: 576px) {
    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-sm-0 {
        margin-left: 0;
    }

    .offset-sm-1 {
        margin-left: 8.33333333%;
    }

    .offset-sm-2 {
        margin-left: 16.66666667%;
    }

    .offset-sm-3 {
        margin-left: 25%;
    }

    .offset-sm-4 {
        margin-left: 33.33333333%;
    }

    .offset-sm-5 {
        margin-left: 41.66666667%;
    }

    .offset-sm-6 {
        margin-left: 50%;
    }

    .offset-sm-7 {
        margin-left: 58.33333333%;
    }

    .offset-sm-8 {
        margin-left: 66.66666667%;
    }

    .offset-sm-9 {
        margin-left: 75%;
    }

    .offset-sm-10 {
        margin-left: 83.33333333%;
    }

    .offset-sm-11 {
        margin-left: 91.66666667%;
    }

    .g-sm-0,
    .gx-sm-0 {
        --bs-gutter-x: 0;
    }

    .g-sm-0,
    .gy-sm-0 {
        --bs-gutter-y: 0;
    }

    .g-sm-1,
    .gx-sm-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-sm-1,
    .gy-sm-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-sm-2,
    .gx-sm-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-sm-2,
    .gy-sm-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-sm-3,
    .gx-sm-3 {
        --bs-gutter-x: 1rem;
    }

    .g-sm-3,
    .gy-sm-3 {
        --bs-gutter-y: 1rem;
    }

    .g-sm-4,
    .gx-sm-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-sm-4,
    .gy-sm-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-sm-5,
    .gx-sm-5 {
        --bs-gutter-x: 3rem;
    }

    .g-sm-5,
    .gy-sm-5 {
        --bs-gutter-y: 3rem;
    }
}

@media (min-width: 768px) {
    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-md-0 {
        margin-left: 0;
    }

    .offset-md-1 {
        margin-left: 8.33333333%;
    }

    .offset-md-2 {
        margin-left: 16.66666667%;
    }

    .offset-md-3 {
        margin-left: 25%;
    }

    .offset-md-4 {
        margin-left: 33.33333333%;
    }

    .offset-md-5 {
        margin-left: 41.66666667%;
    }

    .offset-md-6 {
        margin-left: 50%;
    }

    .offset-md-7 {
        margin-left: 58.33333333%;
    }

    .offset-md-8 {
        margin-left: 66.66666667%;
    }

    .offset-md-9 {
        margin-left: 75%;
    }

    .offset-md-10 {
        margin-left: 83.33333333%;
    }

    .offset-md-11 {
        margin-left: 91.66666667%;
    }

    .g-md-0,
    .gx-md-0 {
        --bs-gutter-x: 0;
    }

    .g-md-0,
    .gy-md-0 {
        --bs-gutter-y: 0;
    }

    .g-md-1,
    .gx-md-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-md-1,
    .gy-md-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-md-2,
    .gx-md-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-md-2,
    .gy-md-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-md-3,
    .gx-md-3 {
        --bs-gutter-x: 1rem;
    }

    .g-md-3,
    .gy-md-3 {
        --bs-gutter-y: 1rem;
    }

    .g-md-4,
    .gx-md-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-md-4,
    .gy-md-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-md-5,
    .gx-md-5 {
        --bs-gutter-x: 3rem;
    }

    .g-md-5,
    .gy-md-5 {
        --bs-gutter-y: 3rem;
    }
}

@media (min-width: 992px) {
    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-lg-0 {
        margin-left: 0;
    }

    .offset-lg-1 {
        margin-left: 8.33333333%;
    }

    .offset-lg-2 {
        margin-left: 16.66666667%;
    }

    .offset-lg-3 {
        margin-left: 25%;
    }

    .offset-lg-4 {
        margin-left: 33.33333333%;
    }

    .offset-lg-5 {
        margin-left: 41.66666667%;
    }

    .offset-lg-6 {
        margin-left: 50%;
    }

    .offset-lg-7 {
        margin-left: 58.33333333%;
    }

    .offset-lg-8 {
        margin-left: 66.66666667%;
    }

    .offset-lg-9 {
        margin-left: 75%;
    }

    .offset-lg-10 {
        margin-left: 83.33333333%;
    }

    .offset-lg-11 {
        margin-left: 91.66666667%;
    }

    .g-lg-0,
    .gx-lg-0 {
        --bs-gutter-x: 0;
    }

    .g-lg-0,
    .gy-lg-0 {
        --bs-gutter-y: 0;
    }

    .g-lg-1,
    .gx-lg-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-lg-1,
    .gy-lg-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-lg-2,
    .gx-lg-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-lg-2,
    .gy-lg-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-lg-3,
    .gx-lg-3 {
        --bs-gutter-x: 1rem;
    }

    .g-lg-3,
    .gy-lg-3 {
        --bs-gutter-y: 1rem;
    }

    .g-lg-4,
    .gx-lg-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-lg-4,
    .gy-lg-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-lg-5,
    .gx-lg-5 {
        --bs-gutter-x: 3rem;
    }

    .g-lg-5,
    .gy-lg-5 {
        --bs-gutter-y: 3rem;
    }
}

@media (min-width: 1200px) {
    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-xl-0 {
        margin-left: 0;
    }

    .offset-xl-1 {
        margin-left: 8.33333333%;
    }

    .offset-xl-2 {
        margin-left: 16.66666667%;
    }

    .offset-xl-3 {
        margin-left: 25%;
    }

    .offset-xl-4 {
        margin-left: 33.33333333%;
    }

    .offset-xl-5 {
        margin-left: 41.66666667%;
    }

    .offset-xl-6 {
        margin-left: 50%;
    }

    .offset-xl-7 {
        margin-left: 58.33333333%;
    }

    .offset-xl-8 {
        margin-left: 66.66666667%;
    }

    .offset-xl-9 {
        margin-left: 75%;
    }

    .offset-xl-10 {
        margin-left: 83.33333333%;
    }

    .offset-xl-11 {
        margin-left: 91.66666667%;
    }

    .g-xl-0,
    .gx-xl-0 {
        --bs-gutter-x: 0;
    }

    .g-xl-0,
    .gy-xl-0 {
        --bs-gutter-y: 0;
    }

    .g-xl-1,
    .gx-xl-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-xl-1,
    .gy-xl-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-xl-2,
    .gx-xl-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-xl-2,
    .gy-xl-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-xl-3,
    .gx-xl-3 {
        --bs-gutter-x: 1rem;
    }

    .g-xl-3,
    .gy-xl-3 {
        --bs-gutter-y: 1rem;
    }

    .g-xl-4,
    .gx-xl-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-xl-4,
    .gy-xl-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-xl-5,
    .gx-xl-5 {
        --bs-gutter-x: 3rem;
    }

    .g-xl-5,
    .gy-xl-5 {
        --bs-gutter-y: 3rem;
    }
}

@media (min-width: 1400px) {
    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-xxl-0 {
        margin-left: 0;
    }

    .offset-xxl-1 {
        margin-left: 8.33333333%;
    }

    .offset-xxl-2 {
        margin-left: 16.66666667%;
    }

    .offset-xxl-3 {
        margin-left: 25%;
    }

    .offset-xxl-4 {
        margin-left: 33.33333333%;
    }

    .offset-xxl-5 {
        margin-left: 41.66666667%;
    }

    .offset-xxl-6 {
        margin-left: 50%;
    }

    .offset-xxl-7 {
        margin-left: 58.33333333%;
    }

    .offset-xxl-8 {
        margin-left: 66.66666667%;
    }

    .offset-xxl-9 {
        margin-left: 75%;
    }

    .offset-xxl-10 {
        margin-left: 83.33333333%;
    }

    .offset-xxl-11 {
        margin-left: 91.66666667%;
    }

    .g-xxl-0,
    .gx-xxl-0 {
        --bs-gutter-x: 0;
    }

    .g-xxl-0,
    .gy-xxl-0 {
        --bs-gutter-y: 0;
    }

    .g-xxl-1,
    .gx-xxl-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-xxl-1,
    .gy-xxl-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-xxl-2,
    .gx-xxl-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-xxl-2,
    .gy-xxl-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-xxl-3,
    .gx-xxl-3 {
        --bs-gutter-x: 1rem;
    }

    .g-xxl-3,
    .gy-xxl-3 {
        --bs-gutter-y: 1rem;
    }

    .g-xxl-4,
    .gx-xxl-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-xxl-4,
    .gy-xxl-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-xxl-5,
    .gx-xxl-5 {
        --bs-gutter-x: 3rem;
    }

    .g-xxl-5,
    .gy-xxl-5 {
        --bs-gutter-y: 3rem;
    }
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
}

.col-3 {
    flex: 0 0 auto;
    width: 25%;
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}

.col-9 {
    flex: 0 0 auto;
    width: 75%;
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}


/* ================================================================================================= //
// ------------------------------------------ UPLOAD-DOC ------------------------------------------- //
// ================================================================================================= */
.drag-area {
    border: 2px dashed var(--primary);
    height: 355px;
    width: 100%;
    max-width: 550px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    margin: 0 auto;
}
.upload-img{
    width: 100%;
    position: absolute;
}
.drag-area.active {
    border: 2px solid var(--primary);
}
.drag-area .icon {
    font-size: 5rem;
    color: var(--primary);
}
.drag-area header {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 1rem;
}
.drag-area span {
    font-size: 25px;
    font-weight: 500;
    color: var(--text-color);
    margin: 10px 0 15px 0;
}
.drag-area label {
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
}
.drag-area img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}
label.button{
    min-width: 10rem
}
.border{
    border: 1px solid #d8d8d8;
}
.short-text{
    white-space: nowrap; 
    width: 200px; 
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    pointer-events: none;
}
.content-document{
    width: 90%;
    height: 500px;
    border: 1px solid;
    overflow: scroll;
    margin: 0 auto;
}

.output{
    border: 1px solid var(--black);
    cursor: pointer;
}
.tab-container{
    border-radius: 0;
    overflow: initial !important;
}
.tabs{
    position: relative;
    z-index: 1;
}
/* ================================================================================================= //
// ------------------------------------------ IMG-LAYER -------------------------------------------- //
// ================================================================================================= */

/* Estilo básico de la imagen */
.thumbnail {
    width: 200px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumbnail:hover {
    transform: scale(1.1);
}

/* Estilo para la capa superpuesta */
.overlay {
    display: none; /* Oculto por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
/* Estilo para la imagen en pantalla completa */
.overlay img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
/* Estilo para cerrar la capa superpuesta */
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}
/**
 * HIDE GENERAL
 */

.hide {
    display: none !important;
}
/* ================================================================================================= //
// ------------------------------------------ CONTAINER -------------------------------------------- //
// ================================================================================================= */
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
    position: relative;
}
@media (min-width: 576px) {
    .container-sm,
    .container {
        max-width: 670px;
    }
}
@media (min-width: 768px) {

    .container-md,
    .container-sm,
    .container {
        max-width: 850px;
    }
}
@media (min-width: 992px) {

    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {

    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {

    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1250px;
    }
}
@media (max-width: 576px) {
    .title{
        display: none;
    }
    .button.form {
        min-width: 6rem;
    }
}