@charset "UTF-8";
@import 'https://use.fontawesome.com/releases/v5.5.0/css/all.css';
@import 'https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css';

.contenedor.detalle-selector {
    width: 100%;
    padding: 0;
    .modal-dialog{
        width: 960px;
    }
}

.input-password{
    position: relative;
    span.ver-password{
        position: absolute;
        width: 40px;
        height: 40px;
        border-left: .5px solid #dbdbdb;
        z-index: 1;
        top: 0;
        right: 0;
        text-align: center;
        padding: 9px 0;
        border-radius: 0 5px 5px 0;
        cursor: pointer;

        &:before{
            content: '\f070';
            font: normal normal normal 15px/1 FontAwesome;
            position: relative;
            width: 15px;
            height: 15px;
            font-size: 20px;
            color: #001c3d;
        }
        &.ver{
            background: #324963;

            &:before{
                content: '\f06e';
                font: normal normal normal 15px/1 FontAwesome;
                position: relative;
                width: 15px;
                height: 15px;
                font-size: 20px;
                color: #ffffff;
                z-index: 1;
            }
        }
    }
}

input[type="radio"]+label span{
    box-shadow: inset 0 0 3px 2px rgba(0, 0, 0, .3);
}
.tab-configuracion{
    .tab-opciones{
        padding: 0 15px 0 15px !important;
    }
    &.ui-widget-content{
        border: 0;
        label{
            &.lbl-radio{
                margin-right: 15px;
            }
        }
        h2{
            font-size: 15px;
            color: #004289;
            font-weight: 700;
            line-height: 20px;
            margin-bottom: 15px;
            font-family: 'Montserrat', sans-serif !important;
        }
    }
    ul.ul-opciones{
        background: transparent !important;
        width: 220px;
        padding: 0;

        li{
            margin: 0 !important;
            margin-bottom: 15px !important;
            padding: 8px 0 !important;
            text-align: left;
            font-weight: normal;
            background: #e6e6e6;
            a.ui-tabs-anchor{
                padding: 7.5px 15px !important;
            }

            &.ui-tabs-active, &.ui-state-hover{
                background: #004288;
            }
        }
    }
}
#main-header .session-activa{
    margin-right: 55px;
}

.div-notif-usr{
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
/*    border: .5px solid red;*/
    border: 0;
    background: #002144;
    color: #ffffff;
    box-shadow: inset 0 0 5px 5px #004288;
    z-index: 1;
    padding: 15px 0;
    text-align: center;
    cursor: pointer;
    &.tiene{
        &:before{
            color: yellow;
        }
        span{
            margin-top: -18px;
            margin-right: 15px;
            animation: example_ 2.2s infinite;
            background: rgba(255, 0, 0, 1);
        }
    }
    
    .spn-total{
        position: absolute;
        top: 0;
        right: 0;
        margin-top: 4px;
        margin-right: 6px;
        width: 20px;
        height: 20px;
        border-radius: 50px;
        padding: 4px 0;
        text-align: center;
        font-size: 13px;
        line-height: 13px;
        color: #ffffff;
        background: rgba(255, 0, 0, .5);
    }
    &:hover{
        span{
            background: rgba(255, 0, 0, .6);
        }
        .div-notif{
            display: inline-block;
        }
    }
    &:before{
        content: '\f0f3';
        position: relative;
        width: 100%;
        height: 100%;
        font-family: 'fontawesome';
        font-size: 20px;
        line-height: 20px;
/*        animation: example_ 1.2s infinite;*/
    }
}
.div-notif{
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 50px;
    margin-right: 15px;
    min-width: 100px;
    width: 200px;
/*    overflow: hidden;*/
    height: auto;
    padding: 0;
    background: #004288;
    border: .1px solid #7f7f02;
    box-shadow: inset 0px 0px 10px 5px rgba(0, 33, 68, .5);
    border-radius: 0px 0 15px 15px;
    display: none;

    &:before{
        content: '';
        display: inline-block;
        border-color: transparent transparent #7f7f02 transparent;
        border-style: solid;
        border-width: 10px;
        height: 0;
        width: 0;
        position: absolute;
        top: -20px;
        right: 0;
    }

    ul.lista-notif{
        counter-reset: mi-contador; /* Inicia el contador */
        list-style-type: none;
        overflow: auto;
        max-height: 400px;

        li{
            position: relative;
            width: 100%;
            min-height: 30px;
            height: auto;
            max-height: 75px;
            border: .1px solid #dbdbdb;
            text-align: left;
            padding: 8px 5px 5px 25px;
            border-radius: 0px 0 15px 15px;

            b{
                font-size: 13px;
                line-height: 13px;
                font-weight: 700;
                margin-bottom: 5px;
                display: inline-block;
            }
            p{
                font-size: 11px;
                line-height: 11px;
                font-weight: 400;
            }
            &:before {
                counter-increment: mi-contador;
                content: counter(mi-contador) "";
                font-weight: bold;
    /*            color: #ffffff;*/
                position: absolute;
                left: 0;
                margin-left: 5px;
                top: 0;
                margin-top: 8px;
                border-radius: 50%;
                background: #ffff04;
                color: #000000;
                width: 15px;
                height: 15px;
                text-align: center;
            }


            &:hover{
                background: #0080bb;

                &:before {
                }
                a{
                    background: transparent;
                    color: #ffffff;
                }
            }
        }
    }
}

@keyframes example_ {
    0% {
        transform: translate(50%, 100%) scale(1, 1);
    }

    50% {
        transform: translate(50%, 120%) scale(1, .60);
    }

    60% {
        transform: translate(50%, 120%) scale(1,.70);
    }

    70% {
        transform: translate(50%, 120%) scale(1,.80);
    }

    100% {
        transform: translate(50%, 100%) scale(1, 1);
    }
}
.txtarea-instenvio{
    height: 40px;
    background: rgb(0 66 136 / 10%);
    color: #000000;
}
.div-folio{
    position: relative;
    display: inline-block;
    height: 60px;
    width: 100%;
    padding: 22px 0;
}
.spn-dias-venc{
    position: absolute !important;
    top: 0;
    right: 0;
    margin-top: 15px;
    margin-right: -5px;
    border-radius: 50% !important;
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 5px 0 !important;
    font-size: 15px;
    line-height: 20px;
    color: #000000;
    background: #ffffff;
    box-shadow: inset 0 0 1px 1px rgba(0, 0, 0, .2);
    border: .5px solid #dbdbdb;
    z-index: 0;
    cursor: pointer;
/*    opacity: .3;*/
    &:after{
        content: 'Days';
        font-size: 8px;
        line-height: 8px;
        position: absolute;
        bottom: 0;
        left: 0;
        margin-left: calc(50% - 9px);
        margin-bottom: -5px;
        width: 18px;
        height: 10px;
        background: rgba(255, 255, 255, .5);
        padding: 0;
        text-align: center;
        border: 0;
        border-radius: 1px;
        color: red;
    }
    &:before{
        content: '';
        font-family: 'fontawesome';
        font-size: 14px;
        line-height: 14px;
        position: absolute;
        top: 0;
        left: 0;
        margin-left: calc(50% - 10px);
        top: -15px;
        width: 20px;
        height: 20px;
        background: #ffffff;
        padding: 3px 0;
        text-align: center;
        border: 0;
        border-radius: 5px;
    }
    &.en-tiempo{
        &:before{
            content: '\f00c';
            background: green;
            color: white;
        }
    }
    &.por-vencer{
        &:before{
            content: '\f071';
            background: orange;
            color: white;
        }
    }
    &.vencido{
        &:before{
            content: '\f017';
            background: red;
            color: white;
        }
    }
    &.viejo{
        &:before{
            content: '\f023';
            background: black;
            color: white;
        }
    }
    &.concluido{
        &:before{
            content: '\f274';
            background: #003067;
            color: white;
        }
    }
    &.undefined{
        &:before{
            content: '\f12a';
            background: #FFFF00;
            color: black;
        }
    }
    &:hover{
/*        opacity: 1;*/
    }
}

.div-ver-adjunto{
    text-align: center;

    h3{
        font-size: 25px;
        line-height: 30px;
        font-weight: 700;
        color: #004288;
        margin-bottom: 30px;
        border-bottom: 1px solid #dbdbdb;
    }
    .btn-gral{
        display: inline-block;
        margin-bottom: 15px;
    }
    img{
/*        border: 1px solid red;*/
        object-fit: contain;
        width: 100%;
        height: 500px;
        box-shadow: 0px 0 2px 1px rgba(0, 0, 0, .2);
    }
    .iframe-pdf{
        width: 100%;
        margin: 0 auto;
        text-align: center;
        display: flex;
        object-fit: contain;
    }
}

.a-link-adj{
    color: red;
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    opacity: .8;
    &:hover{
        opacity: 1;
        color: #ff9f19;
    }
}
.modal{
    .modal-header{
        .modal-title{
            font-size: 18px;
            line-height: 23px;
            font-weight: 700;
            color: #003067;
            text-align: center;
        }
        .close{
            color: red;
            opacity: 1;
            margin: 0;
            position: absolute;
            top: 0;
            right: 0;
            margin-top: 5px;
            margin-right: 15px;
            font-size: 40px;
        }
    }
    .modal-footer{
        text-align: center;
        font-size: 14px;
        text-align: center;
        color: #4d6e94;
    }
}
.modal-backdrop{
    z-index: 99;
}
.html_adjuntos{
    h3{
        display: inline-block;
        text-align: left;
        width: 100%;
        color: red;
        font-size: 20px;
        line-height: 25px;
        font-weight: 700;
        text-transform: uppercase;
        border-bottom: 1px solid rgba(255, 0, 0, .2);
        padding: 5px 0;
        margin-bottom: 10px;
        text-shadow: 1px 0px 1px rgba(0,0,0,.5);
    }
    ul{
        margin-bottom: 15px;
    }
}
ul.ul-list-adj{
    position: relative;
    height: auto;
    padding: 5px 0;
    min-height: 25px;
    text-align: center;

    li{
        position: relative;
        display: inline-block;
        width: 25px;
        height: 25px;
        margin-right: 2px;
        margin-top: 5px;
        &:last-child{
            margin-right: 0;
        }

        .extension{
            position: absolute;
            top: 0;
            left: 0;
            margin-top: 0;
            margin-left: 0;
            width: 25px;
            height: 25px;
            border-right: 1px solid #dbdbdb;
            padding: 4px;
            color: #000000;
            &:before{
                content: '';
                position: relative;
                font-size: 15px;
                font-family: fontawesome;
            }
            &.pdf{
                &:before{
                    content: '\f1c1';
                    color: #FF0000;
                }
            }
            &.jpg,&.jpeg,&.png{
                &:before{
                    content: '\f1c5';
                    color: #999999;
                }
            }
            &.xml{
                &:before{
                    content: '\f1c9';
                    color: #999999;
                }
            }
            &.file{
                &:before{
                    content: '\f15b';
                    color: #FFA500;
                }
            }
        }
        &:first-child{
/*            border-bottom: 1px dashed #003067;*/
        }
        &:last-child{
/*            border-bottom: 1px dashed #003067;*/
        }
    }
    &.listado{
        li{
            width: 100%;
            text-align: left;
            border-bottom: .5px solid #dbdbdb;
            padding: 2px 0 0 35px;
            color: #003067;
            font-size: 13px;
            font-weight: 400;
            line-height: 13px;
            a{
/*                position: relative;*/
                display: inline-block;
                width: 100%;
                &:after{
                    content: '\f019';
                    font-family: 'fontawesome';
                    font-size: 16px;
                    line-height: 16px;
                    font-weight: 700;
                    position: absolute;
                    width: 25px;
                    height: 25px;
                    top: 0;
                    right: 0;
                    margin-top: 5px;
                    margin-right: 5px;
                }
            }

        }
    }
}

ul.lista-adjuntos{
    li{
        padding: 0;
        height: 30px;
        b.num{
            position: absolute;
            top: 0;
            left: 0;
            margin-top: 1px;
            font-size: 15px;
            line-height: 20px;
            font-weight: 700;
            background: #ffffff;
            color: #003067;
            width: 15px;
            height: 30px;
            z-index: 1;
            margin-left: 1px;
            text-align: center;
            border-radius: 15px 0 0 15px;
            padding: 4px 0 0 3px;
            box-shadow: -1px 1px 1px 0px #003067;
            &:hover{
                background: red;

                &:before{
                    content: '\f1f8';
                    font-family: 'fontawesome';
                    color: #ffffff;
                    position: absolute;
                    margin-left: -3px;
                    cursor: pointer;
                }
            }
        }
        input.inp-edit{
            display: inline-block !important;
            position: relative;
            height: 35px;
            width: 100%;
            margin-bottom: 0;
            margin-top: 7px;
            border-top: 0;
            border-bottom: 1px solid rgba(0, 66, 137, 1);
            border-right: 0;
            border-left: 1px solid rgba(0, 66, 137, 1);
            border-radius: 0;
        }
        div.view{
            color: #004289;
            font-size: 12px;
            font-weight: 600;
            line-height: 17px;
            width: 100%;
            min-height: 30px;
            height: auto;
            margin: 1px 0;
            /* float: left; */
            /* border: 1px solid #fff; */
            overflow: hidden;
            position: relative;
            /* text-align: center; */
            box-shadow: 1px 1px 6px #888;
            cursor: default;
            background: #ffffff;
            padding: 5px 15px 5px 30px;
            text-align: left;
        }
        .extension{
            position: absolute;
            top: 0;
            left: 0;
            margin-top: 0;
            margin-left: 0;
            width: 25px;
            height: 25px;
            border-right: 1px solid #dbdbdb;
            padding: 4px;
            color: #000000;
            &:before{
                content: '';
                position: relative;
                font-size: 15px;
                font-family: fontawesome;
            }
            &.pdf{
                &:before{
                    content: '\f1c1';
                    color: #FF0000;
                }
            }
            &.jpg,&.jpeg,&.png{
                &:before{
                    content: '\f1c5';
                    color: #999999;
                }
            }
            &.xml{
                &:before{
                    content: '\f1c9';
                    color: #999999;
                }
            }
            &.file{
                &:before{
                    content: '\f15b';
                    color: #FFA500;
                }
            }
        }
        .existe{
            width: auto !important;
            height: 25px !important;
            margin-top: 1px;
            background: #ffffff;
            z-index: 1;
            cursor: default !important;
            padding: 2px 0;
            margin-top: 3px;
            background: #ffffff;
            z-index: 1;
        }
        .exito{
            padding: 0 !important;
            margin-top: 1px !important;
            margin-right: 3px;
            background: #ffffff !important;
            z-index: 1 !important;
            border-radius: 0 15px 15px 0;
            height: 30px !important;
            padding: 4px 0 !important;
            box-shadow: 1px 1px 1px 0px #003067;
        }
        
    }
}
.border{
    border: .5px solid red;
}
.slc-filtro{
    border: 1px solid #011f4b;
/*    background: #011f4b;*/
    background: rgb(1 31 75 / 10%);
    color: #ffffff;
    &:before{
        color: #004288;
    }
    select{
/*        color: #ffffff;*/
        color: #004288;
        font-size: 14px;
    }
}
.azul-login{
    text-align: center;
    img{
        height: 100px;
        width: 225px;
        object-position: center;
        object-fit: contain;
    }
    h4{
        font-size: 22px;
        line-height: 27px;
        font-weight: 700;
    }
    p{
        font-size: 14px;
        line-height: 19px;
        font-weight: 600;
        color: #1360a5;
    }
    input{
        text-align: center;
    }
}
.logo-login{
    height: 100px;
    padding: 0;
}
.flashmsg{
    margin-left: 0;
}
.login .graypart .botonRecovery, .login .graypart .botonIngresar{
    background: #1360a5;
    &:hover{
        background: green;
    }
}
.loginfields{
    input{
        text-align: center;
    }
}
.btn-salir-sistema{
    background: #b30000;
    color: #ffffff;
    &:hover{
        background: #ff4d4d;
        color: #ffffff;
    }
}
.select-tipo{
    border: .5px solid #dbdbdb;
    border-radius: 15px;
    box-shadow: inset 0px 0px 15px 5px rgba(0, 48, 103, .6);
    padding: 5px 15px;
    height: 60px;
    z-index: 0;

    select{
        color: #003067;
        font-size: 14px;
        line-height: 19px;
        font-weight: 700;
        text-transform: uppercase;
        margin: 0;
        text-align: center;
    }
    &:before{
        right: 15px;
        font-size: 30px !important;
    }
}
.tools a{
    position: relative;
    width: 30px;
    height: 30px;
    margin: 0;
    padding: 7px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: inset 0 0 3px 2px rgba(0, 66, 136, .1);
    &.imprimir{
        &:before{
            content: "\f1c1";
            color: red;
        }
    }
}
.btn-model{
    display: inline-block;
    position: relative;
    width: 100%;
}
.spn-item{
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 0;
    margin-left: -25px;
    background: #004288;
    color: #ffffff;
    width: 25px;
    height: 100%;
    padding: 10px 0;
    text-align: center;
    opacity: .2;
}
.spn-selected{
    &.activo{
        box-shadow: inset 0 0 10px 5px rgba(0, 66, 137, .2);
        text-shadow: 1px 1px 2px #004289;
/*        box-shadow: 0px 0px 7px 1px rgba(0, 255, 0, 1);*/
        border: .1px solid rgba(0, 255, 0, .5);
        border-radius: 15%;
    }
}
.btn-pestana{
    position: relative;
    width: 100%;
    display: none;
    opacity: 0;
    &.activo{
        display: inline-block;
        opacity: 1;
    }
}
.div-ul-options{
    ul{
        padding:0;
        list-style:none;
        margin:0;
        li{
            text-align: left;
        }
    }
}
body{
    &.no-scroll{
        overflow: hidden;
    }
}
.div-detalles{
    &.activo{
        top: 0;
        margin-top: -58px;
        padding-top: 0;
    }
}
.div-nombre-bomba{
    &.activo{
        padding: 20px;
        position: fixed;
        width: calc(100% - 60px);
        left: 0;
        margin-left: 30px;
    }
}
.div-detalles{
    position: sticky;
    top: 60px;
    padding-top: 20px;
    z-index: 1;
}

.div-cortina-add{
    display: none;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
/*    background: rgba(0, 0, 0, .9);*/
    background: rgba(0, 66, 136,.9);
    &:before{
        content: '\f044';
        font-family: fontawesome;
        position: fixed;
        background: #000000;
        width: 80px;
        height: 80px;
        /* margin: auto; */
        z-index: 1;
        color: white;
        top: 50%;
        left: 50%;
        border-radius: 15px;
        padding: 34px 26px;
        text-align: center;
        font-size: 40px;
        cursor: pointer;
    }
    &.activo{
        display: inline-block;
    }
}
.a-comments{
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 6px 0;

    &:before{
        content: '\f086';
        font-family: fontawesome;
        position: absolute;
        background: transparent;
        top: 0;
        right: -10px;
        width: 25px;
        height: 25px;
        z-index: 1;
        color: #004288;
        text-align: center;
        font-size: 22px;
        cursor: text;
    }
}

/*
    REFERENCIA: https://unused-css.com/blog/css-outer-glow/
*/
.btn-agregar-bomba-carrito.shadow-animate {
  box-shadow: 0px 0px 20px 10px #48abe0;
  animation: shadows_boton_add 1.5s infinite;
}

@keyframes shadows_boton_add {
  0% {
    text-shadow: #48abe0 0 0 10px;
    box-shadow: 0px 0px 20px 10px #48abe0;
  }
  50% {
    text-shadow: blueviolet 0 0 10px;
    box-shadow: 0px 0px 20px 10px blueviolet;
  }
  75% {
    text-shadow: rebeccapurple 0 0 10px;
    box-shadow: 0px 0px 20px 10px rebeccapuprle;
  }
  100% {
    text-shadow: #48abe0 0 0 10px;
    box-shadow: 0px 0px 20px 10px #48abe0;
  }
}

.divtabs .ui-state-active a,.divtabs .ui-state-active a:link,.ui-state-active a:visited {
    color: #FFFFFF !important;
}
.div-nombre-bomba{
    position: sticky;
    top: 50px;
    margin-top: 0;
    background: #ffffff;
    border-radius: 0 0 5px 5px;
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
    color: #0080bb;
    padding: 5px 0;
    text-align: center;
    z-index: 1;
    border: .1px solid #004289;
    margin-bottom: 10px;
    box-shadow: inset 0 0 10px 5px rgba(0, 66, 137, .2);
    text-shadow: 1px 1px 2px #004289;
    letter-spacing: 2px;
}
.ui-accordion .ui-accordion-header {
    cursor: pointer;
    background: rgba(0, 66, 137, .1);
    padding: 10px 5px 10px 30px;
    border: 0;

    &:hover, &.ui-state-active{
        color: #FFFFFF !important;
        background: #004289;
        border: 0;
    }
}
.ui-accordion .ui-accordion-content {
    padding: 0;
    border-top: 0;
    overflow: hidden;
    height: auto !important;
}
.ui-icon-triangle-1-s {
    background-position: -65px -16px;
}
.ui-icon-triangle-1-e {
    background-position: -32px -16px;
}
.ui-icon, .ui-widget-content .ui-icon {
    background-image: url(images/ui-icons_444444_256x240.png);
}
.slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;overflow:hidden;display:block;margin:0;padding:0}.slick-list:focus{outline:none}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.slick-track{position:relative;left:0;top:0;display:block;margin-left:auto;margin-right:auto}.slick-track:before,.slick-track:after{content:"";display:table}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{float:left;height:100%;min-height:1px;display:none}[dir="rtl"] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}.slick-prev,.slick-next{font-size:0;line-height:0;position:absolute;top:50%;display:block;width:20px;height:30px;margin-top:-15px;padding:0;cursor:pointer;color:transparent;border:none;outline:none;background:transparent}.slick-prev:before,.slick-next:before{font-size:45px;line-height:25px;opacity:.75;color:#4a627c;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:"FontAwesome"}.slick-next:before{font-weight:900;content:"\f105"}.slick-prev:before{content:"\f104";font-weight:900}.slick-prev:hover:before,.slick-next:hover:before{color:#003067;opacity:1}[dir='rtl'] .slick-prev{right:-25px;left:auto}[dir='rtl'] .slick-next{right:auto;left:-25px}.slick-prev{left:-25px}.slick-next{right:-25px}

.tooltip{
    position: absolute !important;
}

.div-opciones-config{
    position: relative;
    display: none;
    width: 100%;
    height: auto;
    h3{
        font-size: 20px !important;
        color: #004289 !important;
        font-weight: 600;
        line-height: 25px;
        margin-bottom: 10px !important;
    }
    .lista-opciones{
        label{
            &.opc-radio-noimg{
                display: none;
                &.activo{
                    display: inline-block;
                }
            }
        }
    }
    &.activo{
        display: inline-block;
    }
}
.div-lista-carrito{
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 50px;
    margin-left: -25px;
    min-width: 100px;
    width: auto;
    height: 45px;
    padding: 13px 0;
    background: #ffffff;
    border: 1px solid #dbdbdb;
    box-shadow: 2px 2px 3px 3px #dbdbdb;
    display: none;

    h4.car-subtotal{
        text-align: center;
        line-height: 19px;

        a{
            font-size: 14px;
            color: #004289;
            text-align: center;
            line-height: 19px;
            font-weight: 700;
        }
    }

    &:before{
        content: '';
        display: inline-block;
        border-color: transparent transparent #FFFFFF transparent;
        border-style: solid;
        border-width: 10px;
        height: 0;
        width: 0;
        position: absolute;
        top: -19px;
        left: calc(50% - 10px);
    }
    &:hover{
        background: #e58f16;
        h4{
            color: #ffffff;
            a{
                color: #ffffff;
            }
        }
    }
}

.img-pdf-docu{
    width: 25px;
    height: 25px;
    object-fit: contain;
    object-position: center;
}
.tabs-carrito{
    &.ui-tabs .ui-tabs-nav li{
        margin: 0 !important;
        height: 40px !important;
        border-radius: 15px 15px 0 0 !important;
        height: 40px !important;
    }
    &.ui-tabs .ui-tabs-nav .ui-tabs-anchor{
        color: #ffffff !important;
        padding: 5px 10px !important;
        margin: 0 !important;
        font-size: 15px;
        font-weight: 400;
        line-height: 20px;
    }
    .ui-widget-header{
        background: transparent !important;
    }
    &.ui-widget-content{
        border: 0 !important;
        background: transparent !important;
    }
    .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default{
        background: #003067 !important;
        color: #FFFFFF !important;
        height: 40px !important;
        border: 0 !important;
        margin: 0 !important;
        padding: 5px 10px !important;
        border-radius: 15px 15px 0 0 !important;
    }
    .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active{
        background: #ff9f19 !important;
        color: #ffffff !important;
        margin: 0 !important;
        padding: 5px 10px !important;
        border: 0 !important;
        opacity: 1 !important;
        .ui-tabs-anchor{
            color: #000000 !important;
        }
    }
}
.datosselection{
    .ui-slider{
        .ui-state-default{
            margin: -10px -7px !important;
            padding: 10px !important;
            border-radius: 50% !important;
        }
    }
}

.select-models{
    display: none;
    &.activo{
        display: inline-block;
    }
}
.atable{
    width: 100%;
    height: 100%;
    display: table;
    .ath {
        width: 100%;
        display: table-cell;
        vertical-align: middle;
    }
}
.div-gracias{
    position: relative;
    width: 100%;
    height: 500px;
    h1{
        font-size: 40px;
        line-height: 45px;
        margin-bottom: 15px;
        font-weight: 900;
    }
    p{
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 15px;
        font-weight: 500;
        a{
            color: #ff9f19;
            font-weight: 700;
        }
    }
    h2{
        font-size: 35px;
        line-height: 35px;
        margin-bottom: 15px;
        font-weight: 700;
    }
}
.td-input-name input, .td-input-order input{
    width: 250px;
}
.input-autocomplete{
    border-bottom: 1px solid #004289;
    border-top: 0;
    border-left: 1px solid #004289;
    border-right: 0;
    box-shadow: inset 0px 0px 3px 0px rgba(0, 66, 137, .5);
}
.gradient-background {
    /*    https://animated-gradient-background-generator.netlify.app/*/
    background: linear-gradient(250deg,#3267a0,#195494,#004289,#003b7b,#00346d) !important;
    background-size: 300% 300%;
    animation: gradient-animation 1s ease infinite;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-background-verde {
    background: linear-gradient(89deg,#7fbf7f,#66b266,#4ca64c,#329932,#198c19,#008000);
    background-size: 360% 360%;
    animation: gradient-animation-verde 6s ease infinite;
}

@keyframes gradient-animation-verde {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.btn-gral{
    &.btn-nueva{
        width: 115px;
        background: rgba(255,159,25, .7);
        color: black;
        &:hover{
            background: rgba(255,159,25, 1);
        }
    }
    &.btn-eliminar{
        width: 115px;
        background: rgba(255,0,0, .7);
        color: white;
        &;before{
            content: '';
            position: relative;
            margin-left: 15px;
        }
        &;after{
            content: '';
            position: relative;
            margin-right: 15px;
        }
        &:hover{
            background: rgba(255,0,0, 1);
        }
    }
    &.btn-recuperar{
        width: 115px;
        background: rgba(0,66,137, .7);
        color: white;
        &:hover{
            background: rgba(0,66,137, 1);
        }
    }
}
.div-mensaje-carrito{
    position: relative;
    width: 100%;
    height: auto;
    padding: 60px 15px 30px 15px;
    border-radius: 3px;
    background: rgba(204, 217, 231, .1);
    box-shadow: inset 0px 0px 15px 0px rgba(0, 0, 0, .1);
    h3{
        color: #004289;
        margin-bottom: 15px;
    }
    span.icon{
        position: absolute;
        display: inline-block;
        width: 48px;
        height: 48px;
        top: 0;
        margin-bottom: 0;
        margin-top: 40px;
        font-size: 38px;
        line-height: 38px;
        color: green;
        transform: translate(-1%, -1%);
        animation: example 3.2s infinite;
    }
}
@keyframes example {
    0% {
        transform: translate(-50%, -50%) scale(1.25, .75)
    }

    50% {
        transform: translate(-50%, -120%) scale(1, 1)
    }

    55% {
        transform: translate(-50%, -120%) rotate(15deg)
    }

    60% {
        transform: translate(-50%, -120%) rotate(-15deg)
    }

    65% {
        transform: translate(-50%, -120%) rotate(15deg)
    }

    70% {
        transform: translate(-50%, -120%) rotate(-15deg)
    }

    100% {
        transform: translate(-50%, -50%) scale(1.25, .75)
    }
}
.opciones label{
    margin-bottom: 15px;
    display: block;
}
.opciones .select, .opciones input.w100, .opciones select.w100{
    width: 100%;
}
.border-right{
    border-right: .5px solid #dbdbdb;
}
.div-tabla-resumen{
    position: relative;
    padding: 30px;
    border-radius: 5px;
    background: rgba(204, 217, 231, .1);
    box-shadow: inset 0px 0px 15px 0px rgba(0, 0, 0, .1);
}
.tbl-resumen{
    border: 0;
    width: 100%;
    thead{
        tr{
            th{
                width: 50%;
                font-size: 18px;
                line-height: 23px;
                font-weight: 700;
                color: #0080bb;
                text-align: center;
                padding: 15px;

                &:first-child{
                    text-align: right;
                }
                &:last-child{
                    text-align: left;
                }
            }
        }
    }
    tbody{
        tr{
            td{
                width: 50%;
                font-size: 16px;
                line-height: 21px;
                font-weight: 400;
                color: #004289;
                text-align: center;
                padding: 15px;
                &.td-total{
                    font-size: 20px;
                    line-height: 25px;
                    font-weight: 700;
                    color: #004289;
                }
                &:first-child{
                    text-align: right;
                }
                &:last-child{
                    text-align: left;
                }
            }
        }
    }
}
.btn-enviar{
    background: green;
    display: none;
    &.activo{
        display: inline-block;
    }
}
.carrito-h-pasos{
    font-size: 25px;
    line-height: 30px;
}
.p-notas-coti{
    font-size: 14px;
    line-height: 19px;
    color: #004289;
    font-weight: 700;
}
.h-cotizacion{
    color: #FF0000;
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    line-height: 30px;
    text-shadow: 0 -5px 5px #dbdbdb;
    padding: 19px 15px;
}
.h5-facturacion{
    font-size: 18px;
    line-height: 23px;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: -6px;
    margin-left: 15px;
    text-align: center;
    width: calc(100% - 30px);
    height: 35px;
    /* border: .5px solid red; */
    border-radius: 0;
    margin-top: -50px;
    background: rgba(219, 219, 219, .3);
    padding: 5px;
    box-shadow: inset 0px 0px 5px 0px rgba(0, 66, 137, .3);
}
.p-misma-direccion{
    color: #004289;
    font-size: 14px;
    line-height: 19px;
    font-weight: 700;
}
.div-diferente-facturacion{
    display: none;
    &.activo{
        display: inline-block;
    }
}
.div-direccion, .div-comentarios, .div-resumen{
    position: relative;
    width: 100%;
    height: auto;
    display: none;

    &.activo{
        display: inline-block;
    }
}
.btn-vaciar-carrito{
    background: rgba(255,0,0, .7);
    color: white;
    &:hover{
        background: rgba(255,0,0, 1);
    }
}
.btn-continuar-paso{
    background: rgba(0,128,0, .7);
    &:hover{
        background: rgba(0,128,0, 1);
    }
}
.swal2-popup .swal2-styled.swal2-cancel{
    background: #dbdbdb !important;
    color: #000000 !important;
    font-weight: 700;
}
.swal2-popup .swal2-styled.swal2-confirm{
    background: #008000 !important;
    color: #ffffff !important;
    font-weight: 700;
}

.swal2-popup .swal2-title{
    font-size: 22px !important;
    line-height: 27px !important;
}
div:where(.swal2-container) div:where(.swal2-html-container){
    font-size: 15px !important;
    line-height: 20px !important;
    padding: 0em 1.6em .3em !important;
}

/*PARES*/
table.datos tbody tr:nth-child(odd){
    background: transparent;
}
/*IMPARES*/
table.datos tbody tr:nth-child(even){
    background: #f7f7f7;
}

.div-slider-explosivos{
	/*position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 250px;
    margin-top: -125px;*/
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 0;
    border: 0px solid #dbdbdb;
    border-radius: 15px;
    margin-left: 0;
    margin-bottom: 30px;
}
.img-explosivos{
    max-width: 100%;
    width: 100%;
    height: 100%;
    max-height: 248px;
    object-fit: contain;
    object-position: center;
}
.spn-agregar-carrito{
    cursor: pointer;
    position: absolute;
    width: 50px;
    height: 35px;
    background: #004289;
    color: white;
    font-size: 22px;
    line-height: 22px;
    top: 0;
    right: 0;
    margin-right: -50px;
    border: .5px solid #dbdbdb;
    padding: 5px;
    &:hover{
        background: green;
        color: white;
    }
}
.spn-quitar-carrito{
    cursor: pointer;
    position: absolute;
    width: 50px;
    height: 35px;
    background: #FFFFFF;
    color: #008000;
    font-size: 22px;
    line-height: 22px;
    top: 0;
    right: 0;
    margin-right: -50px;
    border: .5px solid #dbdbdb;
    padding: 2px;
    display: inline-block;
    &:hover{
        background: red;
        color: white;
    }
}
.div-inp-cant{
    position: relative;
    width: 100%;
    height: auto;
    margin: 2px 0;
    span{
        position: absolute;
        width: 30px;
        height: 30px;
        border: .5px solid #dbdbdb;
        border-radius: 5px;
        cursor: pointer;
        background: #004289;
        color: #ffffff;
        font-size: 15px;
        line-height: 15px;
        font-weight: 600;
        padding: 6px 8px;
        text-align: center;

        &.spn-menos{
            top: 0;
            left: 0;
            margin-top: 0;
            margin-left: 10px;
        }
        &.spn-mas{
            top: 0;
            right: 0;
            margin-top: 0;
            margin-right: 10px;
        }
        &:hover{
            background: green;
        }
    }
    input._cantidad{
        text-align: center;
        width: 40px;
        height: 30px;
        background:#ffffff;
        margin-bottom: 0;
        font-weight: 700;
        color: #000000;

        &._defecto{
            background: transparent;
        }
        &._modificado{
            background: rgba(255,255,0, .6) !important;
        }
        &._advertencia{
            background: rgba(255,0,0, .6) !important;
        }
    }
}
table.datos td{
    height: 30px;
}
table.datos thead tr th:nth-child(odd){
    background: #004289;
}
table.datos thead tr th:nth-child(even){
    background: #4c7aac;
}
table.datos{
    tbody{
        tr{
            td{
                position: relative;
                background: transparent;
                /*._cantidad{
                    width: 40px;
                    background:#ffffff;
                }*/
                img.img-prod{
                    opacity: .1;
                    position: absolute;
                    top: 0;
                    left: 0;
                    margin-left: calc(50% - 17.5px);
                    width: 35px;
                    height: 35px;
                    object-fit: contain;
                    object-position: center;
                }
                .spn-agregar-carrito{
                    display: none;
                }
            }
            &:hover{
                .spn-agregar-carrito{
                    display: inline-block;
                }
            }
            &._agregado{
                background: rgba(204,229,204, .4);
                td{
                    .spn-agregar-carrito{
                        background: white;
                        color: green;
                        display: inline-block;
                    }
                    .spn-quitar-carrito{
                        &:before{
                            content: '\f1f8';
                            font-family: FontAwesome;
                            font-size: 12px;
                            line-height: 12px;
                            font-weight: 400;
                            position: absolute;
                            top: 0;
                            left: 0;
                            margin-top: 15px;
                            margin-left: 35px;
                            color: red;
                            background: white;
                        }
                    }
                    ._cantidad{
                        &._defecto{
                            background: transparent;
                        }
                        &._modificado{
                            background: rgba(255,255,0, .6) !important;
                        }
                        &._advertencia{
                            background: rgba(255,0,0, .6) !important;
                        }
/*                        background: #fdeece;*/
                    }
                }
            }
            &:hover{
                box-shadow: inset 1px 0px 2px 2px rgba(0, 255, 0, 1);
            }
        }
    }
}

/*PARES*/
table.tbl-carrito tbody tr:nth-child(odd){
    background: transparent;
}
/*IMPARES*/
table.tbl-carrito tbody tr:nth-child(even){
    background: #f7f7f7;
}
table.tbl-carrito{
    border: 0;
/*    border: .5px solid #dbdbdb;*/
/*    background: #f9f9f9;*/
    width: 100%;
    height: 100%;

    thead tr th{
        font-size: 16px;
        line-height: 21px;
        font-weight: 700;
        background: #004289;
        color: #ffffff;
        text-align: center;
        border: 1px solid rgba(0,66,137,.3);
        border-radius: 0 0 0 0;
        padding: 9px;

        &:first-child{
/*            border-radius: 15px;*/
        }
        &:last-child{
/*            border-radius: 15px;*/
        }
    }
    tbody tr{
        &.repetido{
            border: 1px solid rgba(255, 192, 0, 1) !important;

            td{
                &:first-child{
                    /*background: linear-gradient(89deg,#ffc000,#e5ac00,#cc9900,#b28600,#997300);
                    background-size: 300% 300%;
                    animation: gradient-animation-repetido 5s ease infinite;*/
                    background: rgba(255,192,0, 1);
                }
            }
        }
        td{
            position: relative;
            font-size: 12px;
            line-height: 17px;
            font-weight: 400;
            color: #004289;
            text-align: center;
/*            border: .3px solid rgba(0,66,137,.3);*/
            border: .1px solid rgba(0, 66, 137, .1);
            border-radius: 0 0 0 0;
            padding: 0 5px;
            background: transparent;
            /*input{
                width: 50px;
                text-align: center;
                border: .5px solid #004289;
                padding: 0;
                font-size: 14px;
                margin: 0;
            }*/
            &.tleft{
                text-align: left;
            }
            span.spn-repetido{
                position: absolute;
                top: 0;
                left: 0;
                padding: 5px;
                margin-left: -15px;
                margin-top: 7px;
                border: 0;
                width: auto;
                height: 20px;
                color: black;
                background: #FFC000;
                font-size: 8px;
                line-height: 8px;
                font-weight: 700;
                border-radius: 0 0 0 0;
            }
            .spn-eliminar{
                cursor: pointer;
                position: absolute;
                width: 30px;
                height: 30px;
                background: red;
                color: white;
                top: 0;
                left: 0;
                margin-top: 0;
                margin-left: -30px;
                padding: 7px;
                opacity: .5;
                text-align: center;
                &:hover{
                    background: #7f0000;
                    opacity: 1;
                }
            }

        }
        &:hover{
            box-shadow: inset 1px 0px 2px 2px rgba(0, 255, 0, 1);
        }
    }
}
.gral-spn-eliminar{
    cursor: pointer;
    position: absolute;
    width: 30px;
    height: 30px;
    background: red;
    color: white;
    top: 0;
    left: 0;
    margin-top: 0;
    margin-left: -30px;
    padding: 7px;
    text-align: center;
    display: none;
    opacity: 0;

    &.activo{
        opacity: .5;
        display: inline-block;
    }
    &:hover{
        background: #7f0000;
        opacity: 1;
    }
}

@keyframes gradient-animation-repetido {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.div-totales{
    position: relative;
    width: 100%;
    height: auto;
    min-height: 100px;
    border: .5px solid #dbdbdb;
    border-radius: 15px;
    padding: 15px;
    .div-total{
        position: absolute;
        width: 50%;
        height: 50px;
        top: 0;
        right: 0;
        padding: 10px 15px;
        text-align: right;
        border-bottom: .5px solid #f9f9f9;
        label{
            font-size: 20px;
            line-height: 25px;
            font-weight: 600;
            color: #000000;
            text-transform: uppercase;
            margin-right: 15px;
        }
        span{
            font-size: 25px;
            line-height: 30px;
            font-weight: 700;
            color: #004289;
        }
    }
}
.div-carrito{
    position: absolute;
    top: 0;
    z-index: 5;
    width: 50px;
    height: 50px;
    right: 0;
    margin-right: 290px;
    text-align: center;
    padding: 12px 0;
    

    a{
        font-size: 30px;
        line-height: 30px;
        display: inline-block;
        color: #ff9f19;
        position: relative;
        .prod-count{
            position: absolute;
            top: 0;
            left: 0;
            width: 20px;
            height: 20px;
            padding: 3px 0;
            text-align: center;
            border-radius: 50%;
/*            background: rgba(255, 255, 255, .5);*/
            color: white;
            margin-top: -10px;
            margin-left: 25px;
            font-size: 14px;
            line-height: 14px;
            font-weight: 700;

            &.cart-add{
/*                background: #008000;*/
                box-shadow: 0px 0px 5px 0.5px rgba(0, 255, 0, 1);
                border: .1px solid rgba(0, 255, 0, .5);
            }
        }

        &:hover{
            color: #ffcf8c;
        }
    }
    &:hover{
        .div-lista-carrito{
            display: inline-block;
        }
    }
}
.div-configuracion{
    position: absolute;
    top: 0;
    z-index: 5;
    width: 50px;
    height: 50px;
    right: 0;
    margin-right: 235px;
    text-align: center;
    padding: 10px 0;

    a{
    	font-size: 30px;
    	line-height: 30px;
    	display: inline-block;
    	color: #ffffff;
    	&:hover{
    		color: #0080bb;
    	}
    }
}
button[disabled], input[disabled], select[disabled], textarea[disabled]{
    background: rgb(236 236 236) !important;
}
#main-header{
	background: #004289;
    position: fixed;
    width: 100%;
    z-index: 99;
    box-shadow: 2px 0px 5px 2px rgba(255, 255, 255, .5);
}
.right-col{
    padding: 50px 0 0;
    overflow: unset;
}
#pager .pagesize{
    width: 60px;
    height: 40px;
}
table.datos .header, table.datos .tablesorter-header{
    position: sticky;
    top: 50px;
    z-index: 1;
}
table.tbl-carrito thead tr th{
    position: sticky;
    top: 50px;
    z-index: 1;
}
.contenido{
    padding-top: 60px;
}
#main-header .box-logo{
    width: 249px;
}

.txt-inicio{
	h3{
		font-size: 20px;
		line-height: 25px;
		color: #606060;
        margin-bottom: 15px;
	}
	p{
		font-size: 14px;
		line-height: 19px;
		color: #606060;
	}
}


.ui-tabs-vertical {
	width: 200px;
}
.ui-tabs-vertical .ui-tabs-nav {
    padding: 15px;
    float: left;
    width: 250px;
/*    height: 290px;*/
	height: auto;
    background: #001c3d;
    border: 0;
    border-radius: 0;
}
.ui-tabs-vertical .ui-tabs-nav li {
	clear: left;
    height: 50px;/*70px*/
    width: 100%;
    /* border-bottom-width: 1px !important; */
    /* border-right-width: 0 !important; */
    /* margin: 0 -1px .2em 0; */
    text-wrap: auto;
    border-radius: 15px;
    border: 0;
    margin: 0;
    margin-bottom: 15px;
}
.ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active {
	padding-bottom: 0; */
    /* padding-right: .1em; */
    /* border-right-width: 1px; */
    border: 0;
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
}
.ui-tabs-vertical .ui-tabs-nav li a {
	display:block;
}
.ui-tabs-vertical .ui-tabs-panel {
	padding: 0;
	float: right;
	width: calc(100% - 250px);
}

.tabs-productos{
    /* border: 0; */
    height: auto;
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
    background: transparent;
    overflow: hidden;
/*    border: .5px solid red;*/

    &.ui-widget.ui-widget-content{
        border: 0;
        border-radius: 15px;
        padding: 15px 0;
/*        box-shadow: 0px 0px 10px 1px rgba(219,219,219, .2);*/
    }
}
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-content .ui-state-active{
    background: #003067;
    a{
    	color: #ffffff !important;
    }
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor, .ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor, .ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{
    color: #ffffff;
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor{
    padding: 15px;
    text-decoration: none;
    background: transparent;
    width: 100%;
    margin-bottom: 0px;
    border-radius: 10px;
    height: 100%;
    font-size: 14px;
    line-height: 19px;
    color: #000000;
}
.tabs-productos-menu.ui-tabs-vertical{
    width: 100%;
    height: auto;
    padding: 0;
    border: 0;
    font-family: inherit;
}
.tabs-productos-menu ul.ui-tabs-nav{
    border-right: 1px solid #001c3d !important;
}
.tabs-productos-menu .ui-tabs-panel ul{
    width: 100% !important;
    li{

    }
}
.vertical-menu{
    position: relative;
/*    border: .5px solid red;*/
    height: auto;
    overflow: hidden;
    ul.ul-opciones{
	    position: relative;
    	float: left;
	    height: auto;
	    overflow: hidden;
/*	    border: .5px solid red;*/
        border-right: 1px solid #001c3d !important;
        li{
        	&.active{
    		    background: #003067 !important;
    		    a{
    		    	color: #ffffff !important;
    		    }
        	}
        }
    }
}
.div-contenido{
    position: relative;
    width: calc(100% - 270px);
    float: left;
    height: auto;
    ul{
        width: 100% !important;
    }
}

input[type="radio"].pag-pumps, input[type="radio"].pag-configurador{
    display: none;
    &+label{
    	float: left;
    	cursor: pointer;
        position: relative;
        left: 0;
        top: 0;
        z-index: unset;
        width: calc(25% - 18px);
        height: 150px;
        margin-right: 15px;
        border: .5px solid #dbdbdb;
        border-radius: 15px;
        box-shadow: inset 0px 0px 15px 1px rgba(0, 48, 103, .2);
        padding: 15px 15px;
        color: #003067;
        font-size: 14px;
        line-height: 19px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 30px;
        background: #ffffff;
        &.w-configurador{
            width: calc(25% - 15px) !important;
        }

        img{
        	position: relative;
        	width: 100%;
        	height: 100px;
        	object-position: center;
        	object-fit: contain;
        }
        &.opc-radio-noimg{
            width: calc(20% - 15px);
        	height: 60px;
        	padding: 0 15px;/*20px 0*/
        	text-align: center;
            margin-bottom: 15px;
            &.completo{
                width: 100%;
                text-align: left;
            }
            &:last-child{
                margin-bottom: 0;
            }
        }

        span{
            position: absolute;
            top: 0;
            right: 0;
            margin-top: -10px;
            margin-right: -10px;
            text-align: center;
            display: inline-block;
            width: 20px;
            height: 20px;
            background: #ffffff;
            border: 1px solid #dbdbdb;
            border-radius: 25px;
            /* margin: -3px 8px 0 0; */
            vertical-align: middle;
            /* cursor: pointer;*/
        }
        b.b-costo{
            opacity: 0;
            display: none;
            position: absolute;
            top: 0;
            right: 0;
            margin-top: -7.5px;
            margin-right: 10px;
            border-radius: 5px;
            padding: 1px 5px;
            background: #ffffff;
            font-size: 8px;
            font-weight: 600;
            line-height: 17px;
            color: green;
        }
        &:hover{
        	border: .1px solid rgba(0, 255, 0, .5);
        	box-shadow: 0px 0px 7px 1px rgba(0, 255, 0, 1);
        }
    }
    &:checked{
        &+label{
        	background: #003067;
            color: #ffffff;
            box-shadow: 0px 0px 7px 1px rgba(0, 255, 0, 1);
            border: .1px solid rgba(0, 255, 0, .5);

            span{
            	background: #00ff00;
            	border: 0;

                &:after{
                    content: "\f00c";
                    display: inline-block;
                    font: normal normal normal 20px/1 FontAwesome;
                    line-height: 20px;
                    color: #003067;
                    font-size: inherit;
                    text-rendering: auto;
                    -webkit-font-smoothing: antialiased;
                    vertical-align: top;
                    left: 0;
                    position: relative;
                    font-size: 15px;
                }
            }
        }
    }
}

.ul-configurador{
	background: #ffffff !important;
    width: 220px !important;
    padding: 0 !important;

}
.tab-configurador{
	padding: 0 0 0 15px !important;
}
.p-h3{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}
.wrapper-precio{
    background:#f7f9fb;
/*    border:1px solid #0080bb;*/
    padding:20px;
    text-align:right;
    border-radius:5px;
    border: .1px solid #0080bb;
}
.detalles-pumps{
/*    position: absolute;*/
    position: sticky;
    width: 240px;/*100%*/
    height: auto;
    padding: 0;
    border: .1px solid rgba(0, 66, 137, .3);
    border-radius: 15px;
    box-shadow: 3px 3px 3px 3px rgba(0, 66, 137, .1);
    opacity: 0;
    background: #ffffff;

    .btn-agregar-bomba-carrito{
        position: absolute;
        top: 0;
        right: 0;
        width: 50px;
        height: 50px;
        background: #ff9f19;
        color: #ffffff;
        text-align: center;
        padding: 10px;
        border-radius: 50%;
        font-size: 30px;
        margin-right: -25px;
        margin-top: -25px;
        border: .1px solid rgba(0, 66, 137.3);
        display: none;
        z-index: 2;

        &.activo{
            display: inline-block;
        }
        &:hover{
            background: #7f4f0c;
        }
    }
    p.p-aviso{
        text-align: center;
        font-size: 13px;
        font-weight: 700;
        line-height: 18px;
        color: #004288;
    }
    &.activo{
        opacity: 1;
        /*border-radius: 0 0 15px 15px;
        border: 0;*/
    }
}
.pump-select{
    width: 100%;
    height: 140px;
    object-position: center;
    object-fit: contain;
/*    border: .1px solid #dbdbdb;*/
    border-radius: 15px;
    margin-top: 0px;
    display: none;
}
.p-resultado{
    font-size: 13px;
    line-height: 18px;
    font-weight: 700;
    margin-top: 0;
    color: #003067;
    border-top: .1px solid #0080bb;
    padding: 15px;
    text-align: left;
    b{
        font-size: 12px;
        line-height: 17px;
        font-weight: 600;
        color: #0080bb;
    }
}

.position-sticky{
    position: sticky;
    top: 0;
    transition: all .5s;
}
.lista-opciones{
    position: relative;
    display: inline-block;
    width: 100%;
    height: auto;/*180px*/
    border: .5px solid #dbdbdb;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 15px;
    margin-top: 15px;
    background: rgba(219, 219, 219, .2);

    /*overflow-x: unset;
    overflow-y: scroll;*/

    /* Works on Firefox */
    /*scrollbar-width: thin;
    scrollbar-color: #003067 #dbdbdb;*/

    /* Works on Chrome, Edge, and Safari */
    /*&::-webkit-scrollbar {
        width: 12px;
    }

    &::-webkit-scrollbar-track {
        background: orange;
    }

    &::-webkit-scrollbar-thumb {
        background-color: blue;
        border-radius: 20px;
        border: 3px solid orange;
    }*/
}
.div-buscador{
    position: relative;
    width: 100%;
    height: 40px;

    select{
        position: absolute;
        top: 0;
        left: 0;
        margin-left: 0;
        background: #003067;
        color: #ffffff;
        width: 112px;
        z-index: 1;
        border-radius: 5px 0 0 5px;
        border: 0;
    }
    input{
        position: absolute;
        top: 0;
        left: 0;
        width: 158px;
        margin-left: 112px;
        border-radius: 0;
        z-index: 0;
    }
    button{
        position: absolute;
        top: 0;
        right: 0;
        width: 75px;
        height: 40px;
        background: #0080bb;
        color: #ffffff;
        border-radius: 0 5px 5px 0;
        margin-right: 15px;
        z-index: 1;
        border: 0;
        &:hover{
            background: #00405d;
        }
    }
}
.slick-dots {
    position: absolute;
    bottom: -23px; /* Adjust position */
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    border-radius: 10px;
    border: .5px solid gray;
    background: #003067;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    height: 20px;
    width: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:before {
    font-size: 10px;
    line-height: 20px;
    position: absolute;
    top: -1px;
    left: -1px;
    width: 21px;
    height: 21px;
    content: '•'; /* Dot character */
    text-align: center;
    color: transparent; /* Dot color */
    border-radius: 10px;
}

.slick-dots li.slick-active button:before {
    /*color: red;*/ /* Active dot color */
    border: 2px solid #03ff00;
}

.loading{
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .8);
    text-align: center;
/*  display: none;*/
    &.active{
        display: inline-block;
    }
}
/*
    https://cssloaders.github.io/
*/
.loader {
  width: 48px;
  height: 48px;
  position: relative;
}
.loader::before , .loader::after{
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50% , -50%);
  width: 48em;
  height: 48em;
  background-image:
    radial-gradient(circle 10px, #003067 100%, transparent 0),
    radial-gradient(circle 10px, #003067 100%, transparent 0),
    radial-gradient(circle 10px, #003067 100%, transparent 0),
    radial-gradient(circle 10px, #003067 100%, transparent 0),
    radial-gradient(circle 10px, #003067 100%, transparent 0),
    radial-gradient(circle 10px, #003067 100%, transparent 0),
    radial-gradient(circle 10px, #003067 100%, transparent 0),
    radial-gradient(circle 10px, #003067 100%, transparent 0);
  background-position: 0em -18em, 0em 18em, 18em 0em, -18em 0em,
                       13em -13em, -13em -13em, 13em 13em, -13em 13em;
    background-repeat: no-repeat;
  font-size: 0.5px;
  border-radius: 50%;
  animation: blast 1s ease-in infinite;
}
.loader::after {
  font-size: 1px;
  background: #003067;
  animation: bounce 1s ease-in infinite;
}

@keyframes bounce {
  0% , 100%{ font-size: 0.75px }
  50% { font-size: 1.5px }
}
@keyframes blast {
  0% , 40% {
    font-size: 0.5px;
  }
  70% {
    opacity: 1;
    font-size: 4px;
  }
   100% {
     font-size: 6px;
    opacity: 0;
  }
}
/****************************************************
 * MEDIA QUERY
****************************************************/

@media (min-width: 768px) and (max-width: 1024px) {
	.ui-tabs-vertical .ui-tabs-nav li{
	    width: 100%;
	    clear: unset;
	}
}
@media (min-width: 320px) and (max-width: 979px) {
}
@media (min-width: 300px) and (max-width: 767px) {
	.ui-tabs-vertical .ui-tabs-nav{
		width: 100% !important;
	}
	.ui-tabs-vertical .ui-tabs-panel{
	    width: 100% !important;
	}
    .div-carrito{
        margin-right: 155px;
        margin-top: 5px;
    }
    .div-configuracion{
        margin-right: 100px;
        margin-top: 5px;
    }
    .div-notif-usr{
        margin-right: 60px;
    }
    #main-header .box-logo{
        width: 190px;
    }
    #main-header .box-logo .caja{
        width: 190px;
    }
    .contenido{
        padding-top: 30px;
    }
    input[type="radio"].pag-pumps, input[type="radio"].pag-configurador {
        & + label {
            &.w-configurador {
                width: calc(50% - 15px) !important;
            }
        }
    }
    .div-opciones-config {
        h3 {
            font-size: 15px !important;
        }
    }
    .div-nombre-bomba{
        font-size: 19px;
    }
    .div-opciones-config {
        .lista-opciones {
            padding: 15px 0;
        }
    }
    input[type="radio"].pag-pumps, input[type="radio"].pag-configurador {
        & + label {
            &.opc-radio-noimg {
                width: calc(33.33% - 15px);
                height: 60px;
                padding: 0 15px;
                text-align: center;
                margin-bottom: 15px;
            }
        }
    }
    .ui-accordion .ui-accordion-content{
        overflow-x: hidden;
        overflow-y: auto;
    }
    input[type="radio"].pag-pumps, input[type="radio"].pag-configurador {
        & + label {
            &.opc-radio-noimg {
                &.completo {
                    width: calc(100% - 10px);
                }
            }
        }
    }
    input[type="radio"].pag-pumps, input[type="radio"].pag-configurador {
        &+label {
            width: calc(50% - 18px);
            font-size: 12px;
            line-height: 17px;
        }
    }
    .div-detalles{
        position: relative;
        padding-top: 50px;
    }
    .detalles-pumps{
/*        width: calc(100% - 25px);*/
        width: 100%;
    }
    .detalles-pumps {
        .btn-agregar-bomba-carrito {
            margin-right: 0;
            margin-top: -25px;
        }
    }
    .div-cortina-add {
        &:before {
            width: 40px;
            height: 40px;
            top: 155px;
            left: 15px;
            padding: 12px;
            font-size: 20px;
        }
    }
    .div-slider-explosivos{
        margin-left: 15px;
        width: calc(100% - 30px);
    }
    .img-explosivos{
        width: calc(100% - 30px);
    }
    .select-models{
        margin-top: 15px;
    }
    table.datos .header, table.datos .tablesorter-header {
        position: relative;
        top: 0;
    }
    .div-inp-cant {
        & span {
            display: none !important;
            width: 25px;
            height: 25px;
            padding: 4px 0;
            border: 0;

            &.spn-menos {
                margin-left: -25px;
            }
            &.spn-mas {
                margin-right: -25px;
            }
        }
    }
    .div-detalles {
        &.activo {
            position: fixed;
            bottom: 0;
            top: unset;
            margin-bottom: 0;
            margin-top: 0;
            padding-top: 0;
        }
    }
    .pump-select{
        height: 100px;
    }
    .h3-costo-bomba{
        font-size: 25px !important;
        line-height: 25px !important;
        font-weight: 700;
    }
    .p-resultado{
        padding: 5px 15px;

    }
    #tabs{
        overflow: hidden;
        padding: 0 15px;
    }
    .div-selection{
        position: relative;
        margin-top: 15px;
    }
    .col-res-procesos{
        position: relative;
        display: inline-block;
        margin-top: 15px;
        .col-res-proceso1{
            width: 100%;
            height: auto;
            float: unset;
        }
        .col-res-proceso2{
            width: 100%;
            height: auto;
            float: unset;
        }
    }
    .drive-options{
        position: relative;
        width: 100%;
        margin-top: 15px;
    }
    .contenedor.detalle-selector {
        margin: 0;
        width: 100%;
        padding: 0;
        .modal-dialog{
            width: 100%;
        }
    }
    table.datos {
        & tbody {
            & tr {
                &._agregado {
                    & td {
                        .spn-quitar-carrito {
                            position: relative;
                            width: 100%;
                            margin-right: 0;
                        }
                    }
                }
            }
        }
    }
    table.datos {
        & tbody {
            & tr {
                & td {
                    .spn-agregar-carrito {
                        display: inline-block;
                        position: relative;
                        margin-right: 0;
                        width: 100%;
                        opacity: .5;
                        .fa-shopping-cart:before{
                            content: '\f217';
                        }
                    }
                }
            }
        }
    }
    .h-cotizacion{
        line-height: 20px;
        text-align: center;
        padding: 10px 0;
    }
    table.tbl-carrito {
        thead tr th {
            font-size: 10px;
            line-height: 12px;
            padding: 5px;
        }
    }
    table.tbl-carrito {
        & tbody tr {
            td {
                font-size: 10px;
                line-height: 12px;
                padding: 0;
            }
        }
    }
    table.tbl-carrito {
        & tbody tr {
            & td {
                .spn-eliminar {
                    position: relative;
                    margin: 0;
                    display: inline-block;
                    opacity: .2;
                }
            }
        }
    }
    .div-totales{
        min-height: 100%;
    }
    .div-totales {
        .div-total {
            position: relative;
            width: 100%;
            height: auto;
            padding: 0;
            label{
                font-size: 16px;
                line-height: 16px;
            }
            span{
                font-size: 19px;
                line-height: 19px;
            }
        }
        p.p-notas-coti{
            text-align: center;
            margin-top: 30px;
        }
    }
    .h5-facturacion{
        position: relative;
        margin-top: 0;
        margin-bottom: 15px;
    }
    .div-diferente-facturacion{
        margin-top: 30px;
    }
    .div-comentarios textarea{
        height: 100px;
    }
    .div-tabla-resumen{
        padding: 5px;
    }
    .tbl-resumen {
        & thead {
            & tr {
                th {
                    font-size: 16px;
                    line-height: 16px;
                    padding: 5px;
                }
            }
        }
        & tbody{
            & tr{
                td{
                    font-size: 12px;
                    line-height: 13px;
                    padding: 5px;
                }
            }
        }
    }
    .td-input-name input, .td-input-order input{
        width: 100%;
        margin-bottom: 0;
    }
    .right-col{
        height: auto !important;
        min-height: 100% !important;
    }

}

