:root {
    --color-azul: #ea5b0c;
    --color-verde: #088677;
    --color-morado: #088677;
    --color-blanco: #ffffff;
    --color-azul-claro: #EEEFFF;
    --color-naranja: #ea5b0c;
}

.pointer{
    cursor: pointer;
}

.d-grid{
    display: grid;
}

.borde-encabezado {
    width: 5px;
    height: 51px;
    background-color: var(--color-morado);
}

/* input file */
input.form-control[type=file] {
    padding: 3px 15px;
}

/* OGNANIZAR */
.btn-eje {
    transition: all 1s ease 0.1s;
}

.btn-eje:hover,
.btn-eje:active,
.btn-eje:focus {
    transform: scale(1);
    -webkit-box-shadow: 3px 4px 24px -1px rgba(0, 0, 0, 0.31);
    -moz-box-shadow: 3px 4px 24px -1px rgba(0, 0, 0, 0.31);
    box-shadow: 3px 4px 24px -1px rgba(0, 0, 0, 0.31);
    /* padding: 5px; */
    border-radius: 10px;
}

/* ---------------------------------------- */

* {
    box-sizing: border-box;
}


.nav-tabs {
    border-bottom: 1px solid var(--color-morado);
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: var(--color-morado) var(--color-morado) var(--color-morado);
}


.rounded-pill-left {
    border-radius: 30px 0px 0px 30px;
}

.rounded-pill-right {
    border-radius: 0px 30px 30px 0px;
}

.card-personalizada {
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 15px
}

.boton-esquina-derecha {
    right: -10px;
    top: -10px;
    background: #c8d7e5;
    border: none;
    padding: 5px;
    border-radius: 5px;
    z-index: 2;
    position: absolute;
}

/* Clases para cascada de estados */
.revision {
    background-color: #17a2b8;
}

.aprobado {
    background-color: var(--color-verde);
}

.pendiente {
    background-color: var(--color-morado);
}

.rechazado,
.correccion {
    background-color: #dc3545;
}

.revision,
.aprobado,
.rechazado,
.correccion {
    color: white;
}


/* ------------------------------------------------------ */

/* Estilos para nav-tabs */

.nav-tabs a {
    color: var(--color-azul);
}

/* -------------------------------------------------------- */

/* ESTILOS PARA EL HOME */

.cajon-info {
    background-color: rgb(247 250 255);
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 10px;
    height: 250px;
}

.content-principal {
    background-color: #662681
}

.logo-mipyme {
    max-height: 110px;
}

.img-carpeta,
.img-buscar {
    max-height: 100px
}

/* ----------------------------------------------------------------------------------- */

/* Clases de estados actividad */

.actividad-pendiente {
    background-color: #e0a800;
    border-color: #d39e00;
}

.actividad-revision {
    background-color: #138496;
    border-color: #117a8b;
}

.actividad-correccion {
    background-color: #5a6268;
    border-color: #545b62;
}

.actividad-finalizado {
    background-color: #218838;
    border-color: #1e7e34;
}

.actividad-atrasada {
    background-color: #c82333;
    border-color: #bd2130;
}

.actividad-cancelada {
    background-color: var(--color-morado);
}

/* Estados Proyecto */


.proyecto-ejecucion {
    background: rgb(42, 49, 128);
    background: linear-gradient(90deg, rgba(42, 49, 128, 1) 0%, rgba(0, 150, 64, 1) 35%, rgba(102, 38, 129, 1) 100%);
}


/* Clase para texto input file bootstrap */
.custom-file-label::after {
    content: "Buscar" !important;
}

/* Clase para requeridos por Jhordy */
.requerido::after {
    content: " (*)";
    color: red;
}

/* Fin requerido */
td,
th {
    vertical-align: middle !important;
}

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 4px solid var(--color-morado);
    border-radius: 20px;
    box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .5);
    /* outline: 0; */
    overflow: hidden;
}

.modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--color-morado);
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}

.modal-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid var(--color-morado);
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px);
}

.borde {
    border: 1px solid #dee2e6;
}

.borde-table-start {
    border-radius: 5px 0px 0px 0px;
}

.borde-table-end {
    border-radius: 0px 5px 0px 0px;
}

.g-recaptcha {
    display: flex;
    justify-content: center;
}

/* body {
    background-color: #f4f6f9;
} */

.content-wrapper {
    background-color: transparent;
}

.vaya-fondo {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    /* opacity: 0.5; */
}

.card-personalizada {
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 15px
}

.centro {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.text-azul {
    color: var(--color-azul);
}

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

.text-verde {
    color: var(--color-verde);
}

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

.text-morado {
    color: var(--color-morado);
}

.text-center {
    text-align: center;
}


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

.text-blanco {
    color: var(--color-blanco);
}

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

.zoom-iconos {
    transition: all 1s ease 0.1s;
}

.zoom-iconos:hover {
    transform: scale(1.1);
    -webkit-box-shadow: 3px 4px 24px -1px rgba(0, 0, 0, 0.31);
    -moz-box-shadow: 3px 4px 24px -1px rgba(0, 0, 0, 0.31);
    box-shadow: 3px 4px 24px -1px rgba(0, 0, 0, 0.31);
    /* padding: 5px; */
    border-radius: 10px;
}

.titulo-header {
    border-bottom: solid 2px var(--color-azul);
    background-color: #9e89891a;
    border-radius: 10px;
}


[type=checkbox] {
    width: 1.8em;
    height: 1.8em !important;
}

[type=checkbox]:disabled {
    background-color: #999;
}

:checked[type=checkbox] {
    background-color: var(--color-azul);
}



.form-check-input[type=radio] {
    width: 1.8em;
    height: 1.8em !important;
}

.form-check-input:checked[type=radio] {
    background-color: var(--color-azul);
    background-image: none;
}

.bg-personalizado {
    background: linear-gradient(133deg, rgba(0, 105, 150, 0.7511379551820728) 0%, rgba(124, 184, 40, 0.7455357142857143) 100%);
}



.nav-pills .nav-link:not(.active):hover {
    color: var(--color-azul);
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff;
    background-color: var(--color-azul);
}

/* ----------------------------------------------------------------------------------------------------- */


/*  BOTONES  */

.btn-outline-primary {
    color: var(--color-azul);
    border-color: var(--color-azul);
}

.btn-outline-primary:hover,
.btn-outline-primary:active {
    color: #fff;
    background-color: var(--color-azul);
    border-color: var(--color-azul);
}

.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show>.btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: var(--color-azul);
    border-color: var(--color-azul);
}


/* --------------------------------------------------------------------------------------------------------- */


/* ventana modales */

.shadow-modal {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.40) !important;
}


/* ------------------------------------------------------------------------------------------ */


/* Estilos para motores Webkit y blink (Chrome, Safari, Opera... )*/

::-webkit-scrollbar {
    -webkit-appearance: none;
}

::-webkit-scrollbar:vertical {
    width: 15px;
}

::-webkit-scrollbar-button:increment {
    display: none;
}

::-webkit-scrollbar:horizontal {
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background: #F29100;
background: linear-gradient(0deg,rgba(242, 145, 0, 1) 0%, rgba(8, 134, 119, 1) 100%);
    border-radius: 20px;
    border: 2px solid #f1f2f3;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
}


/* ------------------------------------------------------------------------------------------------------------- */

.ms-container {
    background: transparent url(../img/switch.png) no-repeat 50% 50%;
    width: 100% !important;
}


/* TABLAS  */

.border-tabla-start {
    border-radius: 20px 0px 0px 0px;
}

.border-tabla-end {
    border-radius: 0px 20px 0px 0px;
}


/* ----------------------------------------------------- */


/* PAGINACIÓN */

.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: var(--color-azul);
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: var(--color-azul);
    border-color: var(--color-azul);
}

/* ------------------------------------------------------------------------------------------------------------------------- */

/* Estilo label checkbox */

.form-check-label {
    margin-left: 1.5em;
}

/* ------------------------------------------------------------------------------------------------------------------------ */
/* Ícono ver contraseña */
/* .input-group-prepend input {
    padding: 9px 42px 9px 12px;
}

.eye {
    position: relative;
    right: 35px;
} */

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Botón WhatsApp */
.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 50px;
    right: 10px;
    background-color: rgb(196, 196, 196);
    color: rgb(24, 85, 16);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    box-shadow: 0px 0px 3px 10px rgba(40, 184, 40, 0.5);
    border: 1px solid rgb(110, 110, 110);
}

.float:hover {
    text-decoration: none;
    color: var(--verde);
    background-color: #25D366;
}

.my-float {
    margin-top: 14px;
}

/* _------------------------------------------------------------------------------- */


/*BOTON WPP*/

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 45px;
    right: 20px;
    background-color: var(--color-verde);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    box-shadow: 0px 0px 25px 10px rgb(124 184 40 / 70%);
}

.float:hover {
    text-decoration: none;
    color: var(--color-verde);
    background-color: #fff;
}

.my-float {
    margin-top: 14px;
}

/* --------------------------------------------- */


/* Miga de pan en proyectos y demas vistas referentes a el */
.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}

/* ------------------------------------------------------------------------------------------- */
.collapse {
    visibility: initial;
}

/* -------------------------------------------------------------------------------------------- */
/* Maquetación Objetivos */

.menu-objetivo {
    transition: all 1s ease 0.1s;
}

.menu-objetivo:hover,
.menu-objetivo.active {
    transform: scale(1.1);
    webkit-box-shadow: 3px 4px 24px -1px rgba(0, 0, 0, 0.31);
    -moz-box-shadow: 3px 4px 24px -1px rgba(0, 0, 0, 0.31);
    box-shadow: 3px 4px 24px -1px rgba(0, 0, 0, 0.31);
    border-radius: 10px
}




/* ------------------------------------------------------------------------------------------- */
/* Maquetación TRL */

/* .fixedTRL {
    position: fixed;
    bottom: 60px;
    left: 600px;
    width: 900px;
    height: 50px;
    border: 1px solid #73AD21;
  } */

  /* -------------------------------------------------------------------------------------------- */
/* Maquetación Conexión de Valor */

  .caja-evento {
    background: white;
    transition: all 0.4s ease-out;
    /* margin: 16px 21px 43px 26px; */
    border-radius: 21px;
    padding: 0px;
    width: 320px;
    margin: 2% 2%;
    border: solid 1px lightgray;
    /* box-shadow: 2px 8px 16px 0px rgb(50 50 50 / 45%);padding: 0px; */
}

.caja-evento:hover {
    transform: translateY(-15px);
    box-shadow: 2px 8px 16px 0px rgb(50 50 50 / 45%);
    padding: 0px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    /* background: #fff; */

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.swiper {
    width: 100%;
    /* height: 300px; */
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}


.mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.w-40{
    width: 10rem;
}





    /* HOME EMPRESAAAAAAAAAAS */


 .content-banners {
    position: relative
}

.img-landing-banner {
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.img-landing-logo {
    margin: auto;
    object-fit: cover;
    position: absolute !important;
    top: 69% !important;
    left: 19vh !important;
    transform: translate(-43%, -50%) !important;
}

@media (max-width: 768px) {
    .img-landing-logo {
        margin: auto;
        object-fit: cover;
        position: absolute !important;
        top: 68% !important;
        left: 50% !important;
        transform: translate(-43%, -50%) !important;
    }
}

.img-landing-logo img {
    width: 250px;
    height: 250px;
    object-fit: cover;
}

.btn__container {
    /* height: 100vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

}

/* ------------------------------------------------------------------------------------------------- */



/* Redes sociales en la HOME */

.social-icons {
    padding: 0;
    list-style: none;
    margin: 1em
}

.social-icons li {
    display: inline-block;
    margin: .15em;
    position: relative;
    font-size: 1.2em
}

.social-icons i {
    color: var(--azul);
    position: absolute;
    top: 21px;
    left: 21px;
    transition: all 265ms ease-out
}

.social-icons a {
    display: inline-block
}

.social-icons a:before {
    transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    content: " ";
    width: 60px;
    height: 60px;
    border-radius: 100%;
    display: block;
    /* background: linear-gradient(45deg, #00B5F5, #002A8F); */
    background: white;
    transition: all 265ms ease-out
}

.social-icons a:hover:before {
    transform: scale(0);
    transition: all 265ms ease-in
}

.social-icons a:hover i {
    transform: scale(2.2);
    -ms-transform: scale(2.2);
    -webkit-transform: scale(2.2);
    color: #00B5F5;
    background: white;
    /* background: -webkit-linear-gradient(45deg, #00B5F5, #002A8F); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 265ms ease-in;
}


 .facebook {
    background: #3b5998
}

.instagram {
    background: linear-gradient(to right, #ff3019 0, #c90477 100%);
}

.whatsapp {
    background: #03c100;
}

.twitter {
    background: #019AD1;
}

.youtube {
    background: #D34836;
}

.linkedin {
    background: #069;
}

.pinterest {
    background: #cc0000;
}

.tiktok,
.tumblr {
    background: black;
}

.snapchat {
    background-color: #b6b32a;
}

.telegram {
    background-color: #5a9fe2;
}

.twitch {
    background-color: #a970ff;
}

.web {
    background: #069;
}


/* --------------------------------------------------------------------------------------------------------- */


