
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    outline: none;
}

:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #ec5555;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}


@font-face {
    font-family: quicksand-Light;
    src: url(../extensions/fuentes/quicksand-Light.ttf);
}

@font-face {
    font-family: quicksand-Bold;
    src: url(../extensions/fuentes/quicksand-Bold.ttf);
}

@font-face {
    font-family: quicksand-Regular;
    src: url(../extensions/fuentes/quicksand-Regular.ttf);
}

.hidden {
    opacity: 0;
    visibility: hidden;
}

body, p, .p, input, button, a{
    font-family: quicksand-Regular!important;
    text-decoration: none!important;
}

h0,h1,h2,h3,h4,h5,h6,.title1,.title2,.title3,.title4,.title5,.title6{
    font-family: quicksand-Bold!important;
}

span,small,.span,.small{
    font-family: quicksand-Light!important;
}
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

b,
strong {
    font-weight: bolder;
}

small,
.small {
    font-size: 80%;
    font-weight: 400;
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -.25em;
}

sup {
    top: -.5em;
}

textarea {
    overflow: auto;
    resize: vertical;
}


h0,
.title0 {
    font-size: 3rem;
}

h1,
.title1 {
    font-size: 2.5rem;
}

h2,
.title2 {
    font-size: 2rem;
}

h3,
.title3 {
    font-size: 1.75rem;
}

h4,
.title4 {
    font-size: 1.5rem;
}

h5,
.title5 {
    font-size: 1.25rem;
}

h6,
.title6 {
    font-size: 1rem;
}

mark,
.mgark {
    padding: 0.2em;
    background-color: #fcf8e3;
}

/* ------------------------- COLORES ------------------------- */

.bg-blue{
    background-color: var(--blue);
}

.bg-indigo{
    background-color: var(--indigo);
}

.bg-purple{
    background-color: var(--purple);
}

.bg-pink{
    background-color: var(--pink);
}

.bg-red{
    background-color: var(--red);
}
.bg-orange{
    background-color: var(--orange);
}

.bg-yellow{
    background-color: var(--yellow);
}

.bg-green{
    background-color: var(--green);
}

.bg-teal{
    background-color: var(--teal);
}

.bg-cyan{
    background-color: var(--cyan);
}

.bg-white{
    background-color: var(--white);
}

.bg-black{
    background-color: black;
}

.bg-gray{
    background-color: var(--gray);
}

.bg-gray{
    background-color: var(--gray);
}

.bg-primary{
    background-color: var(--primary);
}

.bg-secondary{
    background-color: var(--secondary);
}
.bg-success{
    background-color: var(--success);
}

.bg-info{
    background-color: var(--info);
}

.bg-warning{
    background-color: var(--warning);
}

.bg-danger{
    background-color: var(--danger);
}

.bg-light{
    background-color: var(--light);
}

.bg-dark{
    background-color: var(--dark);
}

.bg-trs-1{
    background-color: rgba(255, 255, 255, 0.05)!important;
}

.bg-trs-2{
    background-color: rgba(255, 255, 255, 0.1)!important;
}

.bg-trs-3{
    background-color: rgba(255, 255, 255, 0.2)!important;
}

.bg-trs-4{
    background-color: rgba(255, 255, 255, 0.3)!important;
}

.bg-trs-5{
    background-color: rgba(255, 255, 255, 0.4)!important;
}

.bg-trs-6{
    background-color: rgba(255, 255, 255, 0.5)!important;
}

.bg-gold{
    background-color: #f8a23a!important;
}


.txt-blue{
    color: var(--blue)!important;
}

.txt-indigo{
    color: var(--indigo)!important;
}

.txt-purple{
    color: var(--purple)!important;
}

.txt-pink{
    color: var(--pink)!important;
}

.txt-red{
    color: var(--red)!important;
}
.txt-orange{
    color: var(--orange)!important;
}

.txt-yellow{
    color: var(--yellow)!important;
}

.txt-green{
    color: var(--green)!important;
}

.txt-teal{
    color: var(--teal)!important;
}

.txt-cyan{
    color: var(--cyan)!important;
}

.txt-white{
    color: var(--white)!important;
}

.txt-black{
    color: black!important;
}

.txt-gray{
    color: var(--gray)!important;
}

.txt-gray{
    color: var(--gray)!important;
}

.txt-primary{
    color: var(--primary)!important;
}

.txt-secondary{
    color: var(--secondary)!important;
}
.txt-success{
    color: var(--success)!important;
}

.txt-info{
    color: var(--info)!important;
}

.txt-warning{
    color: var(--warning)!important;
}

.txt-danger{
    color: var(--danger)!important;
}

.txt-light{
    color: var(--light)!important;
}

.txt-dark{
    color: var(--dark)!important;
}

.txt-gold{
    color: #f8a23a!important;
}

.txt-center{
    text-align: center!important;
}

.txt-20{
    font-size: 20!important;
}

.txt-25{
    font-size: 25!important;
}



.bd-blue{
    border: 1px solid var(--blue)!important;
}

.bd-indigo{
    border: 1px solid var(--indigo)!important;
}

.bd-purple{
    border: 1px solid var(--purple)!important;
}

.bd-pink{
    border: 1px solid var(--pink)!important;
}

.bd-red{
    border: 1px solid var(--red)!important;
}
.bd-orange{
    border: 1px solid var(--orange)!important;
}

.bd-yellow{
    border: 1px solid var(--yellow)!important;
}

.bd-green{
    border: 1px solid var(--green)!important;
}

.bd-teal{
    border: 1px solid var(--teal)!important;
}

.bd-cyan{
    border: 1px solid var(--cyan)!important;
}

.bd-white{
    border: 1px solid var(--white)!important;
}

.bd-black{
    border: 1px solid black!important;
}

.bd-gray{
    border: 1px solid var(--gray)!important;
}

.bd-gray{
    border: 1px solid var(--gray)!important;
}

.bd-primary{
    border: 1px solid var(--primary)!important;
}

.bd-secondary{
    border: 1px solid var(--secondary)!important;
}
.bd-success{
    border: 1px solid var(--success)!important;
}

.bd-info{
    border: 1px solid var(--info)!important;
}

.bd-warning{
    border: 1px solid var(--warning)!important;
}

.bd-danger{
    border: 1px solid var(--danger)!important;
}

.bd-light{
    border: 1px solid var(--light)!important;
}

.bd-dark{
    border: 1px solid var(--dark)!important;
}

.bd-gold{
    border: 1px solid #f8a23a!important;
}



/* -------------------------1------------------------- */
.content {
    width: 100%;
    padding-right: 13px;
    padding-left: 13px;
    margin-right: auto;
    margin-left: auto;
}

.content-f {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
}

.rw {
    display: flex;
    flex-wrap: wrap;
}

/* -------------------- sistema de regillas -------------------- */
.reg-1,.reg-2,.reg-3,.reg-4,.reg-5,.reg-6,.reg-7,.reg-8,.reg-9,.reg-10,.reg-11,.reg-12,.reg-13,.reg-14,.reg,.reg-auto,
.reg-sm-1,.reg-sm-2,.reg-sm-3,.reg-sm-4,.reg-sm-5,.reg-sm-6,.reg-sm-7,.reg-sm-8,.reg-sm-9,.reg-sm-10,.reg-sm-11,.reg-sm-12,.reg-sm-13,.reg-sm-14,.reg-sm,.reg-sm-auto,
.reg-md-1,.reg-md-2,.reg-md-3,.reg-md-4,.reg-md-5,.reg-md-6,.reg-md-7,.reg-md-8,.reg-md-9,.reg-md-10,.reg-md-11,.reg-md-12,.reg-md-13,.reg-md-14,.reg-md,.reg-md-auto,
.reg-lg-1,.reg-lg-2,.reg-lg-3,.reg-lg-4,.reg-lg-5,.reg-lg-6,.reg-lg-7,.reg-lg-8,.reg-lg-9,.reg-lg-10,.reg-lg-11,.reg-lg-12,.reg-lg-13,.reg-lg-14,.reg-lg,.reg-lg-auto,
.reg-xl-1,.reg-xl-2,.reg-xl-3,.reg-xl-4,.reg-xl-5,.reg-xl-6,.reg-xl-7,.reg-xl-8,.reg-xl-9,.reg-xl-10,.reg-xl-11,.reg-xl-12,.reg-xl-13,.reg-xl-14,.reg-xl,.reg-xl-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
}

.reg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

.reg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}

.reg-0 {
    flex: 0 0 0%;
    max-width: 0%;
}

.reg-1 {
    flex: 0 0 7.142857142857143%;
    max-width: 7.142857142857143%;
}

.reg-2 {
    flex: 0 0 14.28571428571429%;
    max-width: 14.28571428571429%;
}

.reg-3 {
    flex: 0 0 21, 42857142857143%;
    max-width: 21, 42857142857143%;
}

.reg-4 {
    flex: 0 0 28.57142857142858%;
    max-width: 28.57142857142858%;
}

.reg-5 {
    flex: 0 0 35.71428571428572%;
    max-width: 35.71428571428572%;
}

.reg-6 {
    flex: 0 0 42.85714285714286%;
    max-width: 42.85714285714286%;
}

.reg-7 {
    flex: 0 0 50%;
    max-width: 50%;
}

.reg-8 {
    flex: 0 0 57.14285714285715%;
    max-width: 57.14285714285715%;
}

.reg-9 {
    flex: 0 0 64.28571428571429%;
    max-width: 64.28571428571429%;
}

.reg-10 {
    flex: 0 0 71.42857142857143%;
    max-width: 71.42857142857143%;
}

.reg-11 {
    flex: 0 0 78.57142857142858%;
    max-width: 78.57142857142858%;
}

.reg-12 {
    flex: 0 0 85.71428571428572%;
    max-width: 85.71428571428572%;
}

.reg-13 {
    flex: 0 0 92.85714285714286%;
    max-width: 92.85714285714286%;
}

.reg-14 {
    flex: 0 0 100%;
    max-width: 100%;
}

.dp-flex{
    display: flex;
}
.dp-inline{
    display: inline;
}
.dp-inline-block{
    display: inline-block;
}
.dp-block{
    display: block;
}
.dp-grid{
    display: grid;
}
.dp-none{
    display: none;
}

/* -------------------- sistema de regillas con grid -------------------- */
.rwg{
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    grid-gap: .5em;
}
.rwgr{
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: repeat(14, 1fr);
    grid-gap: .5em;
}

.g-reg-0{
    grid-column: span 0;
}

.g-reg-1{
    grid-column: span 1;
}

.g-reg-2{
    grid-column: span 2;
}

.g-reg-3{
    grid-column: span 3;
}

.g-reg-4{
    grid-column: span 4;
}

.g-reg-5{
    grid-column: span 5;
}

.g-reg-6{
    grid-column: span 6;
}

.g-reg-7{
    grid-column: span 7;
}

.g-reg-8{
    grid-column: span 8;
}

.g-reg-9{
    grid-column: span 9;
}

.g-reg-10{
    grid-column: span 10;
}

.g-reg-11{
    grid-column: span 11;
}

.g-reg-12{
    grid-column: span 12;
}

.g-reg-13{
    grid-column: span 13;
}

.g-reg-14{
    grid-column: span 14;
}




/* -------------------- componentes y demás -------------------- */
.part {
    position: relative;
    display: flex;
    flex-direction: column;
    word-wrap: break-word;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    box-shadow: 0 0.7rem 1rem rgb(0 0 21 / 15%);
    margin-top: .5rem !important;
    margin-bottom: .5rem !important;
    padding: .5rem;
}

.ruler-title{
    padding: .5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.ruler-button{
    padding: 1.4rem .5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.ruler-button_child{
    padding: .4rem .7rem;
    border: .6px solid rgba(0, 0, 0, 0.151);
    border-radius: 6px;
    box-shadow: 0 0.2rem 1rem rgb(0 0 21 / 15%);
    cursor: pointer;
    background-color: none;
    text-align:center;
}

.ruler-button_child-lg{
    padding: .6rem .9rem;
    border: .6px solid rgba(0, 0, 0, 0.151);
    border-radius: 6px;
    box-shadow: 0 0.2rem 1rem rgb(0 0 21 / 15%);
    font-size: 19px;
    cursor: pointer;
    background-color: none;
    text-align:center;
}

.ruler-button_child:hover, .ruler-button_child-lg:hover{
    box-shadow: .2rem 0.7rem 1.4rem rgb(0 0 21 / 15%);
}

.ruler-button-block{
    display: block;
    width: 80%;
}

.ruler-link{
    padding: .5rem 0;
}

.ruler-link_child{
    text-decoration: none;
    cursor: pointer;
    color: var(--blue);
    padding: .4rem .7rem;
}
.ruler-link_child:hover{
    background-color: rgba(255, 255, 255, 0.5);
}
.active{
    background-color: rgba(255, 255, 255, 0.5)!important;
}
.ruler-input{
    padding: .5rem;
    display: flex;
    flex-wrap: wrap;
}

.ruler-input_child{
    border: .6px solid rgba(0, 0, 0, 0.151);
    border-radius: 3px;
    padding: .4rem .7rem;
    color: var(--dark);
    width: 100%;
}

.ruler-input_child-lg{
    border: .6px solid rgba(0, 0, 0, 0.151);
    border-radius: 3px;
    padding: .6rem .9rem;
    color: var(--dark);
    width: 100%;
    font-size: 19px;
}

#box-sesion, #box-olvidoPass{
    opacity:0;
    animation: animationBox .8s ease .5s forwards;
}

#box-sesion  .ruler-input,#box-sesion .ruler-button, #box-olvidoPass  .ruler-input, #box-olvidoPass .ruler-button{
    opacity:0;
    animation: animationInputs 1s ease-in-out 1s forwards;
}

@keyframes animationBox {
    from {
        transform: translateY(-25px);
        opacity: 0;
    }

    to {
        transform: translateY(-0);
        opacity: 1;
    }
}

@keyframes animationInputs{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

/* -------------------- margin and padding -------------------- */
.mg-auto {
    margin: auto;
}

.mg-0 {
    margin: 0 !important;
}

.mgt-0,
.mgy-0 {
    margin-top: 0 !important;
}

.mgr-0,
.mgx-0 {
    margin-right: 0 !important;
}

.mgb-0,
.mgy-0 {
    margin-bottom: 0 !important;
}

.mgl-0,
.mgx-0 {
    margin-left: 0 !important;
}

.mg-1 {
    margin: 0.2rem !important;
}

.mgt-1,
.mgy-1 {
    margin-top: 0.2rem !important;
}

.mgr-1,
.mgx-1 {
    margin-right: 0.2rem !important;
}

.mgb-1,
.mgy-1 {
    margin-bottom: 0.2rem !important;
}

.mgl-1,
.mgx-1 {
    margin-left: 0.2rem !important;
}

.mg-2 {
    margin: 0.45rem !important;
}

.mgt-2,
.mgy-2 {
    margin-top: 0.45rem !important;
}

.mgr-2,
.mgx-2 {
    margin-right: 0.45rem !important;
}

.mgb-2,
.mgy-2 {
    margin-bottom: 0.45rem !important;
}

.mgl-2,
.mgx-2 {
    margin-left: 0.45rem !important;
}

.mg-3 {
    margin: 0.80rem !important;
}

.mgt-3,
.mgy-3 {
    margin-top: 0.80rem !important;
}

.mgr-3,
.mgx-3 {
    margin-right: 0.80rem !important;
}

.mgb-3,
.mgy-3 {
    margin-bottom: 0.80rem !important;
}

.mgl-3,
.mgx-3 {
    margin-left: 0.80rem !important;
}

.mg-4 {
    margin: 1.2rem !important;
}

.mgt-4,
.mgy-4 {
    margin-top: 1.2rem !important;
}

.mgr-4,
.mgx-4 {
    margin-right: 1.2rem !important;
}

.mgb-4,
.mgy-4 {
    margin-bottom: 1.2rem !important;
}

.mgl-4,
.mgx-4 {
    margin-left: 1.2rem !important;
}

.mg-5 {
    margin: 2rem !important;
}

.mgt-5,
.mgy-5 {
    margin-top: 2rem !important;
}

.mgr-5,
.mgx-5 {
    margin-right: 2rem !important;
}

.mgb-5,
.mgy-5 {
    margin-bottom: 2rem !important;
}

.mgl-5,
.mgx-5 {
    margin-left: 2rem !important;
}

.mg-6 {
    margin: 2.7rem !important;
}

.mgt-6,
.mgy-6 {
    margin-top: 2.7rem !important;
}

.mgr-6,
.mgx-6 {
    margin-right: 2.7rem !important;
}

.mgb-6,
.mgy-6 {
    margin-bottom: 2.7rem !important;
}

.mgl-6,
.mgx-6 {
    margin-left: 2.7rem !important;
}

.mg-7 {
    margin: 3.5rem !important;
}

.mgt-7,
.mgy-7 {
    margin-top: 3.5rem !important;
}

.mgr-7,
.mgx-7 {
    margin-right: 3.5rem !important;
}

.mgb-7,
.mgy-7 {
    margin-bottom: 3.5rem !important;
}

.mgl-7,
.mgx-7 {
    margin-left: 3.5rem !important;
}

.pd-0 {
    padding: 0 !important;
}

.pdt-0,
.pdy-0 {
    padding-top: 0 !important;
}

.pdr-0,
.pdx-0 {
    padding-right: 0 !important;
}

.pdb-0,
.pdy-0 {
    padding-bottom: 0 !important;
}

.pdl-0,
.pdx-0 {
    padding-left: 0 !important;
}

.pd-1 {
    padding: 0.2rem !important;
}

.pdt-1,
.pdy-1 {
    padding-top: 0.2rem !important;
}

.pdr-1,
.pdx-1 {
    padding-right: 0.2rem !important;
}

.pdb-1,
.pdy-1 {
    padding-bottom: 0.2rem !important;
}

.pdl-1,
.pdx-1 {
    padding-left: 0.2rem !important;
}

.pd-2 {
    padding: 0.45rem !important;
}

.pdt-2,
.pdy-2 {
    padding-top: 0.45rem !important;
}

.pdr-2,
.pdx-2 {
    padding-right: 0.45rem !important;
}

.pdb-2,
.pdy-2 {
    padding-bottom: 0.45rem !important;
}

.pdl-2,
.pdx-2 {
    padding-left: 0.45rem !important;
}

.pd-3 {
    padding: 0.80rem !important;
}

.pdt-3,
.pdy-3 {
    padding-top: 0.80rem !important;
}

.pdr-3,
.pdx-3 {
    padding-right: 0.80rem !important;
}

.pdb-3,
.pdy-3 {
    padding-bottom: 0.80rem !important;
}

.pdl-3,
.pdx-3 {
    padding-left: 0.80rem !important;
}

.pd-4 {
    padding: 1.2rem !important;
}

.pdt-4,
.pdy-4 {
    padding-top: 1.2rem !important;
}

.pdr-4,
.pdx-4 {
    padding-right: 1.2rem !important;
}

.pdb-4,
.pdy-4 {
    padding-bottom: 1.2rem !important;
}

.pdl-4,
.pdx-4 {
    padding-left: 1.2rem !important;
}

.pd-5 {
    padding: 2rem !important;
}

.pdt-5,
.pdy-5 {
    padding-top: 2rem !important;
}

.pdr-5,
.pdx-5 {
    padding-right: 2rem !important;
}

.pdb-5,
.pdy-5 {
    padding-bottom: 2rem !important;
}

.pdl-5,
.pdx-5 {
    padding-left: 2rem !important;
}

.pd-6 {
    padding: 2.7rem !important;
}

.pdt-6,
.pdy-6 {
    padding-top: 2.7rem !important;
}

.pdr-6,
.pdx-6 {
    padding-right: 2.7rem !important;
}

.pdb-6,
.pdy-6 {
    padding-bottom: 2.7rem !important;
}

.pdl-6,
.pdx-6 {
    padding-left: 2.7rem !important;
}

.pd-7 {
    padding: 3.5rem !important;
}

.pdt-7,
.pdy-7 {
    padding-top: 3.5rem !important;
}

.pdr-7,
.pdx-7 {
    padding-right: 3.5rem !important;
}

.pdb-7,
.pdy-7 {
    padding-bottom: 3.5rem !important;
}

.pdl-7,
.pdx-7 {
    padding-left: 3.5rem !important;
}

.mgt-auto,
.mgy-auto {
    margin-top: auto !important;
}

.mgr-auto,
.mgx-auto {
    margin-right: auto !important;
}

.mgb-auto,
.mgy-auto {
    margin-bottom: auto !important;
}

.mgl-auto,
.mgx-auto {
    margin-left: auto !important;
}


.fx-rw {
    flex-direction: row !important;
}

.fx-cl {
    flex-direction: column !important;
}

.fx-rw-reverse {
    flex-direction: row-reverse !important;
}

.fx-cl-reverse {
    flex-direction: column-reverse !important;
}

.fx-wp {
    flex-wrap: wrap !important;
}

.fx-nowp {
    flex-wrap: nowrap !important;
}

.fx-wp-rvs {
    flex-wrap: wrap-reverse !important;
}

.jfy-ctn-start {
    justify-content: flex-start !important;
}

.jfy-ctn-end {
    justify-content: flex-end !important;
}

.jfy-ctn-center {
    justify-content: center !important;
}

.jfy-ctn-between {
    justify-content: space-between !important;
}

.jfy-ctn-around {
    justify-content: space-around !important;
}

.alg-itm-start {
    align-items: flex-start !important;
}

.alg-itm-end {
    align-items: flex-end !important;
}

.alg-itm-center {
    align-items: center !important;
}

.alg-itm-baseline {
    align-items: baseline !important;
}

.alg-itm-stretch {
    align-items: stretch !important;
}

.alg-ctn-start {
    align-content: flex-start !important;
}

.alg-ctn-end {
    align-content: flex-end !important;
}

.alg-ctn-center {
    align-content: center !important;
}

.alg-ctn-between {
    align-content: space-between !important;
}

.alg-ctn-around {
    align-content: space-around !important;
}

.alg-ctn-stretch {
    align-content: stretch !important;
}

.alg-sf-auto {
    align-self: auto !important;
}

.alg-sf-start {
    align-self: flex-start !important;
}

.alg-sf-end {
    align-self: flex-end !important;
}

.alg-sf-center {
    align-self: center !important;
}

.alg-sf-baseline {
    align-self: baseline !important;
}

.alg-sf-stretch {
    align-self: stretch !important;
}


.pst-stc {
    position: static !important;
}

.pst-rlt {
    position: relative !important;
}

.pst-abs {
    position: absolute !important;
}

.pst-fix {
    position: fixed !important;
}

.pst-stcky {
    position: sticky !important;
}

.fix-t {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.fix-b {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}



.w-5 {
    width: 5% !important;
}

.w-10 {
    width: 10% !important;
}

.w-15 {
    width: 15% !important;
}

.w-20 {
    width: 20% !important;
}

.w-25 {
    width: 25% !important;
}

.w-30 {
    width: 30% !important;
}

.w-35 {
    width: 35% !important;
}

.w-40 {
    width: 40% !important;
}

.w-45 {
    width: 45% !important;
}

.w-50 {
    width: 50% !important;
}

.w-55 {
    width: 55% !important;
}

.w-60 {
    width: 60% !important;
}

.w-65 {
    width: 65% !important;
}

.w-70 {
    width: 70% !important;
}

.w-75 {
    width: 75% !important;
}

.w-80 {
    width: 80% !important;
}

.w-85 {
    width: 85% !important;
}

.w-90 {
    width: 90% !important;
}

.w-95 {
    width: 95% !important;
}

.w-100 {
    width: 100% !important;
}

.h-5 {
    height: 5% !important;
}

.h-10 {
    height: 10% !important;
}

.h-15 {
    height: 15% !important;
}

.h-20 {
    height: 20% !important;
}

.h-25 {
    height: 25% !important;
}

.h-30 {
    height: 30% !important;
}

.h-35 {
    height: 35% !important;
}

.h-40 {
    height: 40% !important;
}

.h-45 {
    height: 45% !important;
}

.h-50 {
    height: 50% !important;
}

.h-55 {
    height: 55% !important;
}

.h-60 {
    height: 60% !important;
}

.h-65 {
    height: 65% !important;
}

.h-70 {
    height: 70% !important;
}

.h-75 {
    height: 75% !important;
}

.h-80 {
    height: 80% !important;
}

.h-85 {
    height: 85% !important;
}

.h-90 {
    height: 90% !important;
}

.h-95 {
    height: 95% !important;
}

.h-100 {
    height: 100% !important;
}

.maxw-100 {
    max-width: 100% !important;
}

.maxh-100 {
    max-height: 100% !important;
}

.minw-100 {
    min-width: 100% !important;
}

.minh-100 {
    min-height: 100% !important;
}

.hvh-100{
    height: 100vh;
}

.bdr-0{
    border-radius: 0;
}

.bdr-1{
    border-radius: 3px;
}

.bdr-2{
    border-radius: 5px;
}

.bdr-3{
    border-radius: 10px;
}

.bdr-4{
    border-radius: 14px;
}

.bdr-5{
    border-radius: 20px;
}

.bdr-cir{
    border-radius: 50%;
}

/* -------------------- efectos o detalles -------------------- */

.shadow {
    box-shadow: 0 0.7rem 1rem rgb(0 0 21 / 15%) !important;
}

.shadow-t {
    box-shadow: -1px -4px 23px -6px rgba(0,0,0,0.7) !important;
}

.cursor {
    cursor: pointer!important;
}

.tbl {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}

.tbl th,
.tbl td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

.tbl thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}

.tbl tbody+tbody {
    border-top: 2px solid #dee2e6;
}

.tbl .tbl {
    background-color: #fff;
}

.tbl-sm th,
.tbl-sm td {
    padding: 0.3rem;
}

.tbl-bordered {
    border: 1px solid #dee2e6;
}

.tbl-bordered th,
.tbl-bordered td {
    border: 1px solid #dee2e6;
}

.tbl-bordered thead th,
.tbl-bordered thead td {
    border-bottom-width: 2px;
}

.tbl-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.tbl-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

.tbl-primary,
.tbl-primary>th,
.tbl-primary>td {
    background-color: #b8daff;
}

.tbl-hover .tbl-primary:hover {
    background-color: #9fcdff;
}

.tbl-hover .tbl-primary:hover>td,
.tbl-hover .tbl-primary:hover>th {
    background-color: #9fcdff;
}

.tbl-secondary,
.tbl-secondary>th,
.tbl-secondary>td {
    background-color: #d6d8db;
}

.tbl-hover .tbl-secondary:hover {
    background-color: #c8cbcf;
}

.tbl-hover .tbl-secondary:hover>td,
.tbl-hover .tbl-secondary:hover>th {
    background-color: #c8cbcf;
}

.tbl-success,
.tbl-success>th,
.tbl-success>td {
    background-color: #c3e6cb;
}

.tbl-hover .tbl-success:hover {
    background-color: #b1dfbb;
}

.tbl-hover .tbl-success:hover>td,
.tbl-hover .tbl-success:hover>th {
    background-color: #b1dfbb;
}

.tbl-info,
.tbl-info>th,
.tbl-info>td {
    background-color: #bee5eb;
}

.tbl-hover .tbl-info:hover {
    background-color: #abdde5;
}

.tbl-hover .tbl-info:hover>td,
.tbl-hover .tbl-info:hover>th {
    background-color: #abdde5;
}

.tbl-warning,
.tbl-warning>th,
.tbl-warning>td {
    background-color: #ffeeba;
}

.tbl-hover .tbl-warning:hover {
    background-color: #ffe8a1;
}

.tbl-hover .tbl-warning:hover>td,
.tbl-hover .tbl-warning:hover>th {
    background-color: #ffe8a1;
}

.tbl-danger,
.tbl-danger>th,
.tbl-danger>td {
    background-color: #f5c6cb;
}

.tbl-hover .tbl-danger:hover {
    background-color: #f1b0b7;
}

.tbl-hover .tbl-danger:hover>td,
.tbl-hover .tbl-danger:hover>th {
    background-color: #f1b0b7;
}

.tbl-light,
.tbl-light>th,
.tbl-light>td {
    background-color: #fdfdfe;
}

.tbl-hover .tbl-light:hover {
    background-color: #ececf6;
}

.tbl-hover .tbl-light:hover>td,
.tbl-hover .tbl-light:hover>th {
    background-color: #ececf6;
}

.tbl-dark,
.tbl-dark>th,
.tbl-dark>td {
    background-color: #c6c8ca;
}

.tbl-hover .tbl-dark:hover {
    background-color: #b9bbbe;
}

.tbl-hover .tbl-dark:hover>td,
.tbl-hover .tbl-dark:hover>th {
    background-color: #b9bbbe;
}

.tbl-active,
.tbl-active>th,
.tbl-active>td {
    background-color: rgba(0, 0, 0, 0.075);
}

.tbl-hover .tbl-active:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

.tbl-hover .tbl-active:hover>td,
.tbl-hover .tbl-active:hover>th {
    background-color: rgba(0, 0, 0, 0.075);
}

.tbl .thead-dark th {
    color: #fff;
    background-color: #212529;
    border-color: #32383e;
}

.tbl .thead-light th {
    color: #495057;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.tbl-dark {
    color: #fff;
    background-color: #212529;
}

.tbl-dark th,
.tbl-dark td,
.tbl-dark thead th {
    border-color: #32383e;
}

.tbl-dark.tbl-bordered {
    border: 0;
}

.tbl-dark.tbl-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.05);
}

.tbl-dark.tbl-hover tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
    .tbl-responsive-sm {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

    .tbl-responsive-sm>.tbl-bordered {
        border: 0;
    }
}

@media (max-width: 767.98px) {
    .tbl-responsive-md {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

    .tbl-responsive-md>.tbl-bordered {
        border: 0;
    }
}

@media (max-width: 991.98px) {
    .tbl-responsive-lg {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

    .tbl-responsive-lg>.tbl-bordered {
        border: 0;
    }
}

@media (max-width: 1199.98px) {
    .tbl-responsive-xl {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

    .tbl-responsive-xl>.tbl-bordered {
        border: 0;
    }
}

.tbl-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.tbl-responsive>.tbl-bordered {
    border: 0;
}




/* -------------------- medias query Resposive -------------------- */

/* ************************************************************************** tipo 1 ************************************************************************** */
/* small */
@media (max-width: 575px) {
    #span-logo{
        display: none;
    }
}

/* medium */
@media (max-width: 767px) {
    #span-logo{
        display: none;
    }
}

/* large */
@media (max-width: 991px) {}

/* extra large */
@media (max-width: 1199px) {}



/* ************************************************************************** tipo 2 ************************************************************************** */

/* small */
@media (min-width: 576px) {
    .dp-none-sm{
        display: none;
    }
    
    .dp-flex-sm{
        display: flex;
    }
    
    .content {
        max-width: 540px;
    }

    .reg-sm-0 {
        flex: 0 0 0%;
        max-width: 0%;
    }

    .reg-sm-1 {
        flex: 0 0 7.142857142857143%;
        max-width: 7.142857142857143%;
    }

    .reg-sm-2 {
        flex: 0 0 14.28571428571429%;
        max-width: 14.28571428571429%;
    }

    .reg-sm-3 {
        flex: 0 0 21, 42857142857143%;
        max-width: 21, 42857142857143%;
    }

    .reg-sm-4 {
        flex: 0 0 28.57142857142858%;
        max-width: 28.57142857142858%;
    }

    .reg-sm-5 {
        flex: 0 0 35.71428571428572%;
        max-width: 35.71428571428572%;
    }

    .reg-sm-6 {
        flex: 0 0 42.85714285714286%;
        max-width: 42.85714285714286%;
    }

    .reg-sm-7 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .reg-sm-8 {
        flex: 0 0 57.14285714285715%;
        max-width: 57.14285714285715%;
    }

    .reg-sm-9 {
        flex: 0 0 64.28571428571429%;
        max-width: 64.28571428571429%;
    }

    .reg-sm-10 {
        flex: 0 0 71.42857142857143%;
        max-width: 71.42857142857143%;
    }

    .reg-sm-11 {
        flex: 0 0 78.57142857142858%;
        max-width: 78.57142857142858%;
    }

    .reg-sm-12 {
        flex: 0 0 85.71428571428572%;
        max-width: 85.71428571428572%;
    }

    .reg-sm-13 {
        flex: 0 0 92.85714285714286%;
        max-width: 92.85714285714286%;
    }

    .reg-sm-14 {
        flex: 0 0 100%;
        max-width: 100%;
    }


    /* grid */

    .g-reg-sm-1{
        grid-column: span 1;
    }

    .g-reg-sm-0 {
        flex: 0 0 0%;
        max-width: 0%;
    }

    .g-reg-sm-2{
        grid-column: span 2;
    }

    .g-reg-sm-3{
        grid-column: span 3;
    }

    .g-reg-sm-4{
        grid-column: span 4;
    }

    .g-reg-sm-5{
        grid-column: span 5;
    }

    .g-reg-sm-6{
        grid-column: span 6;
    }

    .g-reg-sm-7{
        grid-column: span 7;
    }

    .g-reg-sm-8{
        grid-column: span 8;
    }

    .g-reg-sm-9{
        grid-column: span 9;
    }

    .g-reg-sm-10{
        grid-column: span 10;
    }

    .g-reg-sm-11{
        grid-column: span 11;
    }

    .g-reg-sm-12{
        grid-column: span 12;
    }

    .g-reg-sm-13{
        grid-column: span 13;
    }

    .g-reg-sm-14{
        grid-column: span 14;
    }


    
    .w-sm-5 {
        width: 5% !important;
    }

    .w-sm-10 {
        width: 10% !important;
    }

    .w-sm-15 {
        width: 15% !important;
    }

    .w-sm-20 {
        width: 20% !important;
    }

    .w-sm-25 {
        width: 25% !important;
    }

    .w-sm-30 {
        width: 30% !important;
    }

    .w-sm-35 {
        width: 35% !important;
    }

    .w-sm-40 {
        width: 40% !important;
    }

    .w-sm-45 {
        width: 45% !important;
    }

    .w-sm-50 {
        width: 50% !important;
    }

    .w-sm-55 {
        width: 55% !important;
    }

    .w-sm-60 {
        width: 60% !important;
    }

    .w-sm-65 {
        width: 65% !important;
    }

    .w-sm-70 {
        width: 70% !important;
    }

    .w-sm-75 {
        width: 75% !important;
    }

    .w-sm-80 {
        width: 80% !important;
    }

    .w-sm-85 {
        width: 85% !important;
    }

    .w-sm-90 {
        width: 90% !important;
    }

    .w-sm-95 {
        width: 95% !important;
    }

    .w-sm-100 {
        width: 100% !important;
    }

    .h-sm-5 {
        height: 5% !important;
    }

    .h-sm-10 {
        height: 10% !important;
    }

    .h-sm-15 {
        height: 15% !important;
    }

    .h-sm-20 {
        height: 20% !important;
    }

    .h-sm-25 {
        height: 25% !important;
    }

    .h-sm-30 {
        height: 30% !important;
    }

    .h-sm-35 {
        height: 35% !important;
    }

    .h-sm-40 {
        height: 40% !important;
    }

    .h-sm-45 {
        height: 45% !important;
    }

    .h-sm-50 {
        height: 50% !important;
    }

    .h-sm-55 {
        height: 55% !important;
    }

    .h-sm-60 {
        height: 60% !important;
    }

    .h-sm-65 {
        height: 65% !important;
    }

    .h-sm-70 {
        height: 70% !important;
    }

    .h-sm-75 {
        height: 75% !important;
    }

    .h-sm-80 {
        height: 80% !important;
    }

    .h-sm-85 {
        height: 85% !important;
    }

    .h-sm-90 {
        height: 90% !important;
    }

    .h-sm-95 {
        height: 95% !important;
    }

    .h-sm-100 {
        height: 100% !important;
    }
}

/* medium */
@media (min-width: 768px) {
    .dp-none-md{
        display: none;
    }
    
    .reg-md-0 {
        flex: 0 0 0%;
        max-width: 0%;
    }
    
    .content {
        max-width: 720px;
    }

    .reg-md-1 {
        flex: 0 0 7.142857142857143%;
        max-width: 7.142857142857143%;
    }

    .reg-md-2 {
        flex: 0 0 14.28571428571429%;
        max-width: 14.28571428571429%;
    }

    .reg-md-3 {
        flex: 0 0 21, 42857142857143%;
        max-width: 21, 42857142857143%;
    }

    .reg-md-4 {
        flex: 0 0 28.57142857142858%;
        max-width: 28.57142857142858%;
    }

    .reg-md-5 {
        flex: 0 0 35.71428571428572%;
        max-width: 35.71428571428572%;
    }

    .reg-md-6 {
        flex: 0 0 42.85714285714286%;
        max-width: 42.85714285714286%;
    }

    .reg-md-7 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .reg-md-8 {
        flex: 0 0 57.14285714285715%;
        max-width: 57.14285714285715%;
    }

    .reg-md-9 {
        flex: 0 0 64.28571428571429%;
        max-width: 64.28571428571429%;
    }

    .reg-md-10 {
        flex: 0 0 71.42857142857143%;
        max-width: 71.42857142857143%;
    }

    .reg-md-11 {
        flex: 0 0 78.57142857142858%;
        max-width: 78.57142857142858%;
    }

    .reg-md-12 {
        flex: 0 0 85.71428571428572%;
        max-width: 85.71428571428572%;
    }

    .reg-md-13 {
        flex: 0 0 92.85714285714286%;
        max-width: 92.85714285714286%;
    }

    .reg-md-14 {
        flex: 0 0 100%;
        max-width: 100%;
    }


    /* grid */

    .g-reg-md-0 {
        flex: 0 0 0%;
        max-width: 0%;
    }

    .g-reg-md-1{
        grid-column: span 1;
    }

    .g-reg-md-2{
        grid-column: span 2;
    }

    .g-reg-md-3{
        grid-column: span 3;
    }

    .g-reg-md-4{
        grid-column: span 4;
    }

    .g-reg-md-5{
        grid-column: span 5;
    }

    .g-reg-md-6{
        grid-column: span 6;
    }

    .g-reg-md-7{
        grid-column: span 7;
    }

    .g-reg-md-8{
        grid-column: span 8;
    }

    .g-reg-md-9{
        grid-column: span 9;
    }

    .g-reg-md-10{
        grid-column: span 10;
    }

    .g-reg-md-11{
        grid-column: span 11;
    }

    .g-reg-md-12{
        grid-column: span 12;
    }

    .g-reg-md-13{
        grid-column: span 13;
    }

    .g-reg-md-14{
        grid-column: span 14;
    }


    
    .w-md-5 {
        width: 5% !important;
    }

    .w-md-10 {
        width: 10% !important;
    }

    .w-md-15 {
        width: 15% !important;
    }

    .w-md-20 {
        width: 20% !important;
    }

    .w-md-25 {
        width: 25% !important;
    }

    .w-md-30 {
        width: 30% !important;
    }

    .w-md-35 {
        width: 35% !important;
    }

    .w-md-40 {
        width: 40% !important;
    }

    .w-md-45 {
        width: 45% !important;
    }

    .w-md-50 {
        width: 50% !important;
    }

    .w-md-55 {
        width: 55% !important;
    }

    .w-md-60 {
        width: 60% !important;
    }

    .w-md-65 {
        width: 65% !important;
    }

    .w-md-70 {
        width: 70% !important;
    }

    .w-md-75 {
        width: 75% !important;
    }

    .w-md-80 {
        width: 80% !important;
    }

    .w-md-85 {
        width: 85% !important;
    }

    .w-md-90 {
        width: 90% !important;
    }

    .w-md-95 {
        width: 95% !important;
    }

    .w-md-100 {
        width: 100% !important;
    }

    .h-md-5 {
        height: 5% !important;
    }

    .h-md-10 {
        height: 10% !important;
    }

    .h-md-15 {
        height: 15% !important;
    }

    .h-md-20 {
        height: 20% !important;
    }

    .h-md-25 {
        height: 25% !important;
    }

    .h-md-30 {
        height: 30% !important;
    }

    .h-md-35 {
        height: 35% !important;
    }

    .h-md-40 {
        height: 40% !important;
    }

    .h-md-45 {
        height: 45% !important;
    }

    .h-md-50 {
        height: 50% !important;
    }

    .h-md-55 {
        height: 55% !important;
    }

    .h-md-60 {
        height: 60% !important;
    }

    .h-md-65 {
        height: 65% !important;
    }

    .h-md-70 {
        height: 70% !important;
    }

    .h-md-75 {
        height: 75% !important;
    }

    .h-md-80 {
        height: 80% !important;
    }

    .h-md-85 {
        height: 85% !important;
    }

    .h-md-90 {
        height: 90% !important;
    }

    .h-md-95 {
        height: 95% !important;
    }

    .h-md-100 {
        height: 100% !important;
    }
}

/* large */
@media (min-width: 992px) {
    .dp-none-lg{
        display: none;
    }
    
    .reg-lg-0 {
        flex: 0 0 0%;
        max-width: 0%;
    }
    
    .content {
        max-width: 960px;
    }

    .reg-lg-1 {
        flex: 0 0 7.142857142857143%;
        max-width: 7.142857142857143%;
    }

    .reg-lg-2 {
        flex: 0 0 14.28571428571429%;
        max-width: 14.28571428571429%;
    }

    .reg-lg-3 {
        flex: 0 0 21, 42857142857143%;
        max-width: 21, 42857142857143%;
    }

    .reg-lg-4 {
        flex: 0 0 28.57142857142858%;
        max-width: 28.57142857142858%;
    }

    .reg-lg-5 {
        flex: 0 0 35.71428571428572%;
        max-width: 35.71428571428572%;
    }

    .reg-lg-6 {
        flex: 0 0 42.85714285714286%;
        max-width: 42.85714285714286%;
    }

    .reg-lg-7 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .reg-lg-8 {
        flex: 0 0 57.14285714285715%;
        max-width: 57.14285714285715%;
    }

    .reg-lg-9 {
        flex: 0 0 64.28571428571429%;
        max-width: 64.28571428571429%;
    }

    .reg-lg-10 {
        flex: 0 0 71.42857142857143%;
        max-width: 71.42857142857143%;
    }

    .reg-lg-11 {
        flex: 0 0 78.57142857142858%;
        max-width: 78.57142857142858%;
    }

    .reg-lg-12 {
        flex: 0 0 85.71428571428572%;
        max-width: 85.71428571428572%;
    }

    .reg-lg-13 {
        flex: 0 0 92.85714285714286%;
        max-width: 92.85714285714286%;
    }

    .reg-lg-14 {
        flex: 0 0 100%;
        max-width: 100%;
    }


    /* grid */

    .g-reg-lg-0 {
        flex: 0 0 0%;
        max-width: 0%;
    }

    .g-reg-lg-1{
        grid-column: span 1;
    }

    .g-reg-lg-2{
        grid-column: span 2;
    }

    .g-reg-lg-3{
        grid-column: span 3;
    }

    .g-reg-lg-4{
        grid-column: span 4;
    }

    .g-reg-lg-5{
        grid-column: span 5;
    }

    .g-reg-lg-6{
        grid-column: span 6;
    }

    .g-reg-lg-7{
        grid-column: span 7;
    }

    .g-reg-lg-8{
        grid-column: span 8;
    }

    .g-reg-lg-9{
        grid-column: span 9;
    }

    .g-reg-lg-10{
        grid-column: span 10;
    }

    .g-reg-lg-11{
        grid-column: span 11;
    }

    .g-reg-lg-12{
        grid-column: span 12;
    }

    .g-reg-lg-13{
        grid-column: span 13;
    }

    .g-reg-lg-14{
        grid-column: span 14;
    }


    
    .w-lg-5 {
        width: 5% !important;
    }

    .w-lg-10 {
        width: 10% !important;
    }

    .w-lg-15 {
        width: 15% !important;
    }

    .w-lg-20 {
        width: 20% !important;
    }

    .w-lg-25 {
        width: 25% !important;
    }

    .w-lg-30 {
        width: 30% !important;
    }

    .w-lg-35 {
        width: 35% !important;
    }

    .w-lg-40 {
        width: 40% !important;
    }

    .w-lg-45 {
        width: 45% !important;
    }

    .w-lg-50 {
        width: 50% !important;
    }

    .w-lg-55 {
        width: 55% !important;
    }

    .w-lg-60 {
        width: 60% !important;
    }

    .w-lg-65 {
        width: 65% !important;
    }

    .w-lg-70 {
        width: 70% !important;
    }

    .w-lg-75 {
        width: 75% !important;
    }

    .w-lg-80 {
        width: 80% !important;
    }

    .w-lg-85 {
        width: 85% !important;
    }

    .w-lg-90 {
        width: 90% !important;
    }

    .w-lg-95 {
        width: 95% !important;
    }

    .w-lg-100 {
        width: 100% !important;
    }

    .h-lg-5 {
        height: 5% !important;
    }

    .h-lg-10 {
        height: 10% !important;
    }

    .h-lg-15 {
        height: 15% !important;
    }

    .h-lg-20 {
        height: 20% !important;
    }

    .h-lg-25 {
        height: 25% !important;
    }

    .h-lg-30 {
        height: 30% !important;
    }

    .h-lg-35 {
        height: 35% !important;
    }

    .h-lg-40 {
        height: 40% !important;
    }

    .h-lg-45 {
        height: 45% !important;
    }

    .h-lg-50 {
        height: 50% !important;
    }

    .h-lg-55 {
        height: 55% !important;
    }

    .h-lg-60 {
        height: 60% !important;
    }

    .h-lg-65 {
        height: 65% !important;
    }

    .h-lg-70 {
        height: 70% !important;
    }

    .h-lg-75 {
        height: 75% !important;
    }

    .h-lg-80 {
        height: 80% !important;
    }

    .h-lg-85 {
        height: 85% !important;
    }

    .h-lg-90 {
        height: 90% !important;
    }

    .h-lg-95 {
        height: 95% !important;
    }

    .h-lg-100 {
        height: 100% !important;
    }
}

/* extra large */
@media (min-width: 1200px) {
    .dp-none-xl{
        display: none;
    }
    
    .reg-xl-0 {
        flex: 0 0 0%;
        max-width: 0%;
    }
    
    .content {
        max-width: 1140px;
    }

    .reg-xl-1 {
        flex: 0 0 7.142857142857143%;
        max-width: 7.142857142857143%;
    }

    .reg-xl-2 {
        flex: 0 0 14.28571428571429%;
        max-width: 14.28571428571429%;
    }

    .reg-xl-3 {
        flex: 0 0 21, 42857142857143%;
        max-width: 21, 42857142857143%;
    }

    .reg-xl-4 {
        flex: 0 0 28.57142857142858%;
        max-width: 28.57142857142858%;
    }

    .reg-xl-5 {
        flex: 0 0 35.71428571428572%;
        max-width: 35.71428571428572%;
    }

    .reg-xl-6 {
        flex: 0 0 42.85714285714286%;
        max-width: 42.85714285714286%;
    }

    .reg-xl-7 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .reg-xl-8 {
        flex: 0 0 57.14285714285715%;
        max-width: 57.14285714285715%;
    }

    .reg-xl-9 {
        flex: 0 0 64.28571428571429%;
        max-width: 64.28571428571429%;
    }

    .reg-xl-10 {
        flex: 0 0 71.42857142857143%;
        max-width: 71.42857142857143%;
    }

    .reg-xl-11 {
        flex: 0 0 78.57142857142858%;
        max-width: 78.57142857142858%;
    }

    .reg-xl-12 {
        flex: 0 0 85.71428571428572%;
        max-width: 85.71428571428572%;
    }

    .reg-xl-13 {
        flex: 0 0 92.85714285714286%;
        max-width: 92.85714285714286%;
    }

    .reg-xl-14 {
        flex: 0 0 100%;
        max-width: 100%;
    }


    /* grid */

    .g-reg-xl-0 {
        flex: 0 0 0%;
        max-width: 0%;
    }

    .g-reg-xl-1{
        grid-column: span 1;
    }

    .g-reg-xl-2{
        grid-column: span 2;
    }

    .g-reg-xl-3{
        grid-column: span 3;
    }

    .g-reg-xl-4{
        grid-column: span 4;
    }

    .g-reg-xl-5{
        grid-column: span 5;
    }

    .g-reg-xl-6{
        grid-column: span 6;
    }

    .g-reg-xl-7{
        grid-column: span 7;
    }

    .g-reg-xl-8{
        grid-column: span 8;
    }

    .g-reg-xl-9{
        grid-column: span 9;
    }

    .g-reg-xl-10{
        grid-column: span 10;
    }

    .g-reg-xl-11{
        grid-column: span 11;
    }

    .g-reg-xl-12{
        grid-column: span 12;
    }

    .g-reg-xl-13{
        grid-column: span 13;
    }

    .g-reg-xl-14{
        grid-column: span 14;
    }


    
    .w-xl-5 {
        width: 5% !important;
    }

    .w-xl-10 {
        width: 10% !important;
    }

    .w-xl-15 {
        width: 15% !important;
    }

    .w-xl-20 {
        width: 20% !important;
    }

    .w-xl-25 {
        width: 25% !important;
    }

    .w-xl-30 {
        width: 30% !important;
    }

    .w-xl-35 {
        width: 35% !important;
    }

    .w-xl-40 {
        width: 40% !important;
    }

    .w-xl-45 {
        width: 45% !important;
    }

    .w-xl-50 {
        width: 50% !important;
    }

    .w-xl-55 {
        width: 55% !important;
    }

    .w-xl-60 {
        width: 60% !important;
    }

    .w-xl-65 {
        width: 65% !important;
    }

    .w-xl-70 {
        width: 70% !important;
    }

    .w-xl-75 {
        width: 75% !important;
    }

    .w-xl-80 {
        width: 80% !important;
    }

    .w-xl-85 {
        width: 85% !important;
    }

    .w-xl-90 {
        width: 90% !important;
    }

    .w-xl-95 {
        width: 95% !important;
    }

    .w-xl-100 {
        width: 100% !important;
    }

    .h-xl-5 {
        height: 5% !important;
    }

    .h-xl-10 {
        height: 10% !important;
    }

    .h-xl-15 {
        height: 15% !important;
    }

    .h-xl-20 {
        height: 20% !important;
    }

    .h-xl-25 {
        height: 25% !important;
    }

    .h-xl-30 {
        height: 30% !important;
    }

    .h-xl-35 {
        height: 35% !important;
    }

    .h-xl-40 {
        height: 40% !important;
    }

    .h-xl-45 {
        height: 45% !important;
    }

    .h-xl-50 {
        height: 50% !important;
    }

    .h-xl-55 {
        height: 55% !important;
    }

    .h-xl-60 {
        height: 60% !important;
    }

    .h-xl-65 {
        height: 65% !important;
    }

    .h-xl-70 {
        height: 70% !important;
    }

    .h-xl-75 {
        height: 75% !important;
    }

    .h-xl-80 {
        height: 80% !important;
    }

    .h-xl-85 {
        height: 85% !important;
    }

    .h-xl-90 {
        height: 90% !important;
    }

    .h-xl-95 {
        height: 95% !important;
    }

    .h-xl-100 {
        height: 100% !important;
    }
}