/* *****************************************************************************
 * Fuentes seleccionades
 * *****************************************************************************/
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300&display=swap');
@import url(https://fonts.googleapis.com/css?family=Comfortaa:400,700,300);
@import url('https://fonts.googleapis.com/css2?family=Readex+Pro:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');
/* *****************************************************************************
 * Gama de colores keroplast
 * *****************************************************************************/
.bg-kplst-blue{ background-color: #4875F5; } /* Background */
.bg-kblue{ background-color: #4054B2; } /* Background Azul reflex */
.bg-kplst-grey{ background-color: #eee } 
.text-kplst-blue{color: #4054B2;} /* Color de fuente */
/* *****************************************************************************
 * Utilidades
 * *****************************************************************************/
body{
    font-family: arial;
    height: 100% !important;
}
h1, h2, h3{
    font-family: 'Readex Pro', Quicksand, arial;
}
.fz-24{ font-size: 24px !important;}

/* *****************************************************************************
 * Animaciones - LIOM Copyright 2022 -2023
 * *****************************************************************************/

/* Transición aparición de izquierda */
@keyframes tran-left-aparel{
    from  {opacity: 0; left:2000px;}
    to    {opacity: 1; left:0px;}
}

.transition-left-aparel{
    position: relative;
    animation-name: tran-left-aparel;
    animation-duration: 2s;
    animation-fill-mode: both;
}
/* Transición aparición de derecha */
@keyframes tran-right-aparel{
    from  {opacity: 0; right:2000px;}
    to    {opacity: 1; right:0px;}
}

.transition-right-aparel{
    position: relative;
    animation-name: tran-right-aparel;
    animation-duration: 2s;
    animation-fill-mode: both;
}

/* *****************************************************************************
 * Barra de navegación 
 * *****************************************************************************/
.om-navbar{
    width: 100%;
    background-color: #4054B2;
    align-items: center;
    overflow: auto;
    color: black;
    z-index: 9998;
}

.om-navbar a{
    float: left;
    text-align: center;
    padding: 7px 20px;
    color: white;
    text-decoration: none;
    font-size: 17px;
}
.om-navbar  a:hover, a.active{
    background-color: #eee !important;
    color: black;
}

.om-navbar .espacio-bar{
    width: 120px !important;
}


.om-navbar .icon {
    display: none;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

.sticky + .content {
    padding-top: 60px;
}

.nav-login{
    width: 100%;
}

.nav-login p{
    padding: 3px 0px 3px 130px;
    margin: 0;
    font-size: 22px;
}

.nav-login .btn-log-planning{
    position: absolute;
    top:0;
    right: 0;
    padding: 10px 12px;
    color: darkslategrey;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
}

.btn-log-planning i{
    font-size: 20px;
}

.logo-kplts {
    content: url(../img/kplst-logo-original.png);
    width: 86.5px;
    background-color: white;
    position: fixed;
    left: 15px;
    padding: 10px;
    margin: 0;
}

.login-btn-movil{
    display: none;
}

/* *****************************************************************************
 * Overlay loader
 * *****************************************************************************/
#overlay {
    position: fixed; /* Sit on top of the page content */
    display: block; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5); /* Black background with opacity */
    z-index: 9999; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
}

svg{
    width: 100px;
    height: 100px;
    margin: 20px;
    display:inline-block;
}
h1{
    text-align: center;
    color: #fff;
    font-size: 34px;
    font-weight: 100;
    text-transform: uppercase;
    background-color: darken(#e74c3c, 5);

}

/* *****************************************************************************
 * Frame control
 * *****************************************************************************/
#kplst_control_page{
    height: 100%;
    width: 100%;
    overflow: hidden;
}
/* *****************************************************************************
 * Sección Inicial
 * *****************************************************************************/
@media only screen and (max-device-width: 1366px) {
    #seccion-inicial {
        background-attachment: scroll;
        
    }
}

.sp-container {
    width: 100%;
    height: 100%;
    z-index: 1;
}
.sp-content {
    width: 100%;
    height: 100%; 
}

@media only screen and (min-device-width: 1366px) {
    .sp-container h2 {
        position: relative;
        font-size: 30px;
        top: 70px;
        width: 100%;
        text-align: center;
        color: black;
        -webkit-animation: blurFadeIn 0.3s ease-in;
        -moz-animation: blurFadeIn 0.3s ease-in;
        -ms-animation: blurFadeIn 0.3s ease-in;
    }
    .sp-container .frame-1  {
        opacity: 0;
        -webkit-animation-delay: 0s;
        -moz-animation-delay: 0s;
        -ms-animation-delay: 0s;
        animation-delay: 1s;
        animation-fill-mode: both;
    }
}

@-webkit-keyframes blurFadeInOut {
    0% {
        opacity: 0;
        text-shadow: 0px 0px 40px #fff;
        -webkit-transform: scale(1.3);
    }
    20%, 75% {
        opacity: 1;
        text-shadow: 0px 0px 1px #fff;
        -webkit-transform: scale(1);
    }
    100% {
        opacity: 0;
        text-shadow: 0px 0px 50px #fff;
        -webkit-transform: scale(0);
    }
}
@-webkit-keyframes blurFadeIn {
    0% {
        opacity: 0;
        text-shadow: 0px 0px 40px #fff;
        -webkit-transform: scale(1.3);
    }
    50% {
        opacity: 0.5;
        text-shadow: 0px 0px 10px #fff;
        -webkit-transform: scale(1.1);
    }
    100% {
        opacity: 1;
        text-shadow: 0px 0px 1px #fff;
        -webkit-transform: scale(1);
    }
}
@-webkit-keyframes fadeInBack {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
    }
    50% {
        opacity: 0.4;
        -webkit-transform: scale(2);
    }
    100% {
        opacity: 0.2;
        -webkit-transform: scale(5);
    }
}
@-webkit-keyframes fadeInRotate {
    0% {
        opacity: 0;
        -webkit-transform: scale(0) rotate(360deg);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1) rotate(0deg);
    }
}
/**/

@-moz-keyframes blurFadeInOut {
    0% {
        opacity: 0;
        text-shadow: 0px 0px 40px #fff;
        -moz-transform: scale(1.3);
    }
    20%, 75% {
        opacity: 1;
        text-shadow: 0px 0px 1px #fff;
        -moz-transform: scale(1);
    }
    100% {
        opacity: 0;
        text-shadow: 0px 0px 50px #fff;
        -moz-transform: scale(0);
    }
}
@-moz-keyframes blurFadeIn {
    0% {
        opacity: 0;
        text-shadow: 0px 0px 40px #fff;
        -moz-transform: scale(1.3);
    }
    100% {
        opacity: 1;
        text-shadow: 0px 0px 1px #fff;
        -moz-transform: scale(1);
    }
}
@-moz-keyframes fadeInBack {
    0% {
        opacity: 0;
        -moz-transform: scale(0);
    }
    50% {
        opacity: 0.4;
        -moz-transform: scale(2);
    }
    100% {
        opacity: 0.2;
        -moz-transform: scale(5);
    }
}
@-moz-keyframes fadeInRotate {
    0% {
        opacity: 0;
        -moz-transform: scale(0) rotate(360deg);
    }
    100% {
        opacity: 1;
        -moz-transform: scale(1) rotate(0deg);
    }
}
/**/

@keyframes blurFadeInOut {
    0% {
        opacity: 0;
        text-shadow: 0px 0px 40px #fff;
        transform: scale(1.3);
    }
    20%, 75% {
        opacity: 1;
        text-shadow: 0px 0px 1px #fff;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        text-shadow: 0px 0px 50px #fff;
        transform: scale(0);
    }
}
@keyframes blurFadeIn {
    0% {
        opacity: 0;
        text-shadow: 0px 0px 40px #fff;
        transform: scale(1.3);
    }
    50% {
        opacity: 0.5;
        text-shadow: 0px 0px 10px #fff;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        text-shadow: 0px 0px 1px #fff;
        transform: scale(1);
    }
}
@keyframes fadeInBack {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 0.4;
        transform: scale(2);
    }
    100% {
        opacity: 0.2;
        transform: scale(5);
    }
}
@keyframes fadeInRotate {
    0% {
        opacity: 0;
        transform: scale(0) rotate(360deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.img-logo-kplst{
    width: 500px;
    padding: 50px 0px;
    position: absolute;
    opacity: 0.5;
}
/* *****************************************************************************
 * Sección de productos
 * *****************************************************************************/
.seccion-productos{

}

.img-producto{
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 260px;
    max-height: 260px;
    max-width: 300px !important;
}

.card-img {
    position: relative;
    width: 100%;
    max-width: 300px;
}

.overImg {
    position: absolute;
    bottom: 0;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.5);
    color: #f1f1f1;
    width: 100%;
    height: 100%; 
    transition: .5s ease;
    opacity:0;
    color: white;
    font-size: 20px;
    padding: 20px;
    text-align: center;
}

.card-body:hover .overImg {
    opacity: 1;
}
/* *****************************************************************************
 * Sección descriptiva de la página
 * *****************************************************************************/
#seccion-descriptivo{
    background-color: #4054B2;
    color: white;
    min-height: 600px;
}
/* *****************************************************************************
 * Sección Sobre Nosotros
 * *****************************************************************************/
#seccion-snosotros{

}
/* *****************************************************************************
 * Sección de contacto
 * *****************************************************************************/
#seccion-contacto{
    min-height: 600px;
}

.map{
    width: 100%;
}
/* *****************************************************************************
 * Botones de contacto
 * *****************************************************************************/
#contac-section{
    position: fixed !important;
    margin: 0px 0px;
    bottom: 50px;
    width: 85px;
    height: 90px;
    right: 0;
    border-radius: 15px 0px 0px 15px;
    padding-top: 0px;
    padding-left: 15px;
    padding-bottom: 10px;
    padding-right: 10px;
    background-color: black;
    color: white;
    font-size: 40px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    transition: linear 0.5s;
    z-index: 99;
}

#contac-section i{
    text-decoration: none;
    color: white;
    padding: 10px 10px !important;
    margin-top: 10px;
}


.openContact{
    height: 290px !important;
}

.contact-item-op{
    opacity: 0;
}

.contacBtn:hover{
    cursor: pointer;
}
/* *****************************************************************************
 * Botones de contacto
 * *****************************************************************************/
.fixed-action-btn > .btn-floating > .material-icons {
    transition: transform 0.3s;
}

.fixed-action-btn.active > .btn-floating > .material-icons {
    transform: rotate(135deg);
}
/* *****************************************************************************
 * Tarjeta de perfiles
 * *****************************************************************************/
.formato-config button{
    min-height: 110px !important;
}

.colors-config button i{
    font-size: 25px;
}
/* *****************************************************************************
 * Colores disponibles
 * *****************************************************************************/
.color-item-white{ color: white !important}
.color-item-black{ color: black !important}
.color-item-green{ color: greenyellow !important}
.color-item-yellow{ color: yellow !important}
.color-item-brown{ color: brown !important}
.color-item-red{ color: red !important}
.color-item-blue{ color: #2F7FFA !important}
.color-item-grey{ color: grey !important}
.color-item-orange{ color: orange !important}

/*
Utilidades
*/

/* ==================================
 * FUENTE 
 * ==================================*/
/* TAMAÑO / SIZE */
.fz-12 { font-size: 12px !important;}

.btn-link{
    color: white;
    cursor: pointer;
    text-decoration: none;
}

.btn-link:hover{
    background-color: #e2e0e0;
    color: black !important;
}

.vertical-center {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.caption {
    position: absolute;
    left: 0;
    top: 45%;
    width: 100%;
    text-align: center;
    color: #000;
}
div .pie-pag{
    width: 100%;
    position: fixed;
    bottom: 0;
    background-color: #e2e0e0;
    padding: 0px 12px;
}

.pie-pag a{

    color: black;
    font-size: 30px;
    padding: 1px 15px;
}

.liom-sign{
    letter-spacing: 5px;
    text-decoration: none;
    color: darkgrey;
    text-shadow: 2px 2px 2px grey;
}

/* Botonera */
.btn-kplst-blue{
    background-color: #4054B2;
    color: white;
    border-radius: 15px;
    border:none;
    outline: none;

    padding: 5px 12px;
}

.btn-kplst-blue:hover{
    background-color: #eee;
    color: black;
}

/* Transparencis */
.trasparencia-50{
    background-color: rgb(253, 254, 254);
    background-color: rgba(253, 254, 254, 0.8);
}

/** CHAT BUTTON ***/
.chat-btn{
    position: fixed;
    bottom: 150px;
    right: 7px;
}

/* Sección de servicio */
#img-cnc-maquinado{
    width:  500px;
    position: absolute;
    margin: auto;
}

.pag-section{
    height: 500px !important;
}