@import 'blocks/blocks-titularfull.css';
@import 'blocks/blocks-video-bg.css?v=2';
@import 'blocks/blocks-video-pop.css?v=2';
@import 'blocks/blocks-texto-cols.css';
@import 'blocks/blocks-team.css';
@import 'blocks/blocks-carrusel.css';
@import 'blocks/blocks-galeria.css';
@import 'blocks/blocks-testimonals.css';
@import 'blocks/blocks-nav-slider.css';
@import 'blocks/blocks-proyectos.css';
@import 'blocks/blocks-menu.css';
@import 'blocks/blocks-blog.css';
@import 'blocks/blocks-legal.css';
@import 'blocks/blocks-accordion.css';
@import 'blocks/blocks-hero.css';
@import 'blocks/blocks-texto-imagen.css';
@import 'blocks/blocks-mapa-contacto.css';
@import 'blocks/blocks-noticias.css';
@import 'blocks/footer.css';
@import 'blocks/formulario.css';
@import 'blocks/modals.css';
@import 'blocks/burger-menu.css';





a, a:hover, a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

a.link-azul,
a.link-azul:hover,
a.link-azul:focus{
    color: #134395 !important;
    text-decoration: none !important;
    font-weight: 600;
}
a.link-azul:hover,
a.link-azul:focus{
   text-decoration: underline !important;
}



section .row {
    margin-right: 15px;
    margin-left: 15px;
    width: 96%;
    margin: 0 2%;
}

/*-------- grid---------*/
.page-template-page-grid{
    background: rgb(19,67,149);
    background: linear-gradient(90deg, rgba(19,67,149,1) 50%, rgba(247,247,247,1) 50%);
}
#wrapper{
    display: flex;
    /*height: 100%;*/
    height: auto;
    margin: auto;
}

#sidebar {
    color: #fff;
    transition: all 0.3s;
    width: 300px;
    height: 100%;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

table p{
    margin-bottom: 0;
}
/*-------- filtros---------*/

.filtro,.filtro li, .filtro ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.filtro{
    border-bottom: 1px solid #ffffff33;
    padding: 20px 40px;
}

.filtro li {
    margin-bottom: 7px;
}
.filtro .contraido .filtros li:nth-child(n+6) {
  display: none;
}
.filtro.mostar .contraido .filtros li:nth-child(n+6) {
  display: block !important;
}

#wrapper #content {
    flex: 1;
    background: #F7F7F7;
    padding: 40px;
}
.filtros{
    overflow: hidden;
    transition: all .4s ease;
     transition-timing-function: cubic-bezier(.84,.15,.26,.92);
}

#ver-todos{
    background: blue;
}

.seleccionado {
  background-color: yellow;
}

/*-------- select ---------*/



#sidebar select{
    border: 1px solid #ffffff61;
    background: transparent;
    padding: 10px 12px 9px 12px;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 0;
    line-height: 100%;
    color: white;
    width: 100%;
    overflow: hidden !important;
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    cursor: pointer;
}
#sidebar select:focus{
  /*border-color: #248fff;*/
  border-color:  #ffffff61;
  box-shadow: none;
  outline: 0 none;
}



#sidebar .select-arrow:after {
    /* background-image: url(../svg/arrow-PFYU-.svg); */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 12px;
}
#sidebar .select-arrow{
    position: relative; 
}
#sidebar .select-arrow:after{
    content: "";
    width: 14px;
    height: 100%;
    /* background: yellow; */
    position: absolute;
    right: 10px;
    top: 0;
    pointer-events: none;
}
#sidebar .select-arrow:after{
    background-image: url(../svg/select-pfyu.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 12px;
    opacity: .5;
    transition: all .2s ease;
}


#sidebar .select-arrow:hover:after{
    opacity: 1;
}



#sidebar select.area-no-select {
    background: #f4f4f4;
    color: #878787;
    border-color: #bdbdbd;
    pointer-events: none;
}

#sidebar .select-no-arrow:after{
  display: none;
}

/*-------- checkbox ---------*/

.filtro-valor {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: white;
    cursor: pointer;
}
.filtro-valor span{
    line-height: 110%;
    display: flex;
    align-items: center;
    min-height: 20px;
}


/* Hide the browser's default checkbox */
.filtro-valor input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 2px solid #ffffff47;
    border-radius: 4px;
}

/* On mouse-over, add a grey background color */
.filtro-valor:hover input ~ .checkmark {
  background: #5577b380;
}

/* When the checkbox is checked, add a blue background */
.filtro-valor input:checked ~ .checkmark {
  background-color: #ffffff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.filtro-valor input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.filtro-valor .checkmark:after {
    left: 5px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid #134395;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.vertodo{
    transition: all .2s ease;
}
.vertodo:hover{
    opacity: 1 !important;
    cursor: pointer;
}
/*/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\*/
/*/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\*/
/*-----------mix it up------------*/
/*/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\*/
/*/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\*/
* {
  box-sizing: border-box;
}
/*
.container {
  width: 75%;
  margin: 5em auto;
}
*/
/*
.blue {
  border: 1px solid blue;
}

.orange {
  border: 1px solid orange;
}

.red {
  border: 1px solid red;
}

button {
  background: #666666;
  border: none;
  color: white;
  padding: .65em;
  border-radius: 5px;
}

input {
  padding: .5em;
}
*/


#titulaciones{
    grid-auto-rows: auto;
    grid-template-columns: 32% 32% 32%;
    grid-gap: 20px 2%;
    display: grid;
    float: none;
    height: auto !important;
}
.titulaciones-head input{
    border: none;
    border-bottom: 1px solid #bbbbbb;
    padding: 10px;
    /*min-width: 294px;*/
    margin-top: 11px;
    width: 100%;
    max-width: 294px;
}


.planeta-search{
    position: relative;
}
.planeta-search button{
    width: 40px;
    height: 45px;
    position: absolute;
    top: 10px;
    right: 0;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    opacity: .5;
    transition: all .3s ease;
    cursor: pointer;
}
.planeta-search button:hover{
    opacity: 1;
}
.planeta-search button img{
    width: 22px;
}
.titulaciones-head input:focus,
.titulaciones-head button:focus{
    outline: none;
}

.mix {
  display: inline-block;
  text-align: center;
  width: 100%;
  margin: 0%;
  background-color: #fff;
  vertical-align: top;
  min-height: 260px;
  transition: all .1s ease;
  cursor: pointer;
   
}
.mix:hover{/*background-color: #134395*/}
.mix:hover .mix-box{/*background-color: #134395*/}



.mix:hover .tit-name{
   /*color: white;*/
}

.mix:hover .tit-area,
.mix:hover .tit-center,
.mix:hover .tit-mode,
.mix:hover .tit-ects,
.mix:hover .tit-date,
.mix:hover .tit-lang{
   /*color: white;*/
   /* opacity: .6;*/
}

.mix-box{
    position: absolute;
    width: 100%;
    height: 100%;
    
}


#titulaciones.filtro-mov{
  animation-name: miMIXfiltro;
  animation-duration: .8s;
  animation-fill-mode: forwards; /* mantiene el último frame de la animación */
  animation-timing-function: cubic-bezier(.69,.14,.13,.92);
  transform: translateY(20px);
}

/* define la animación con keyframes */
@keyframes miMIXfiltro{
  0% {
    transform: translateY(20px);opacity: 0;
  }  
  100% {
    transform: translateY(0);opacity: 1;
  }
}


.title {
  font-weight: 2em;
}


.titulo-info{
    padding: 20px;
}
.titulo-info-1 {
    padding-bottom: 0;
}

.titulo-info-2 {
    padding-top: 0;
}
.titulo-datos{
    line-height: 100%;
}

.flex-wrap {
  width:100%;
  height: 300px;
  display: flex;
  align-items: flex-start; 
}

.mix,.flex-wrap {
    /*height: 260px;*/
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    background: transparent;
    
    height: auto;
    min-height: 280px;
}

.mix{
    background: white;
    background-image: url(../svg/arrow-mix.svg);
    background-repeat: no-repeat;
    background-position: bottom 20px right 20px;
    background-size: 20px;
    background-position: bottom 20px right 16px;
    background-size: 24px;
}
.mix:hover{/*background-color: #134395*/}

.mix .border-hover{
    border: 1px solid transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .2s ease;
    pointer-events: none;
}
.mix:hover .border-hover{
    border: 12px solid #134395;
}

.flex-wrap p{
    padding: 0;
    margin: 0;
}
.flex-centered {
  align-self:flex-start;
  text-align: left;
}

.flex-bottom-center {
  align-self: flex-end;
}

.flex-wrap small {
    display: block;
    margin-bottom: -10px;
    z-index: 1;
    position: relative;
    opacity: .7;
}
.flex-wrap p.tit-area {
    color: #a8a8a8;
    padding-bottom: 10px;
    padding-top: 4px;
    color: #7b94bd;
}
.flex-wrap p.tit-name {
    line-height: 90%;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -0.25px;
    color: #0c2e68;
}
.flex-wrap .tit-img{
    width: 150px;
}
.flex-wrap p.tit-center{
    color: #8E9CE4;
    line-height: 100%;
    margin-bottom: 6px;
}
.font-mono{
    font-family: 'DM Mono', monospace;
}
.titulo-datos span{
    color: #5C69DD;
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    position: relative;
}
.titulo-datos span:after{
    content: "|";
    position: relative;
    top: -2px;
    color: #bebebe;
    padding: 0 3px;
}
.titulo-datos span:last-of-type:after{
    content: "";
    display: none;
}
.titulacion .flex-bottom-center{
    /*border: 1px solid red;*/
    width: 100%;
}
.titulacion .titulo-info-1 {
    width: 100%;
    /*background-image: url(../svg/icon-p-link.svg);
    background-repeat: no-repeat;
    background-position: top 6px right 6px;
    background-size: 38px;*/
}
.titulacion .titulo-info-2 {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
}
.titulacion .titulo-datos {
    display: flex;
    width: 100%;
    /*border: 1px solid;*/
    text-align: center;
}
.titulacion .titulo-datos span {
    padding-top: 30px;
    color: #3856a5;
    flex-grow: 1;
    text-align: center;
}
.titulo-datos span:after {
    content: "";
    position: absolute;
    top: 0;
    color: #bebebe;
    padding: 0 0px;
    width: 1px;
    background: #EAEDF3;
    height: 100%;
    right: 0;
}
.tit-mode{
    background-image: url(../svg/icon-p-presencial.svg);
    background-repeat: no-repeat;
    background-position: top -6px center;
    background-size: 38px;
}
.tit-mode.tit-mode-Online{
    background-image: url(../svg/icon-p-online.svg);
}
.tit-ects{
    background-image: url(../svg/icon-p-ects.svg);
    background-repeat: no-repeat;
    background-position: top -6px center;
    background-size: 38px;
}

.tit-date{
    background-image: url(../svg/icon-p-start.svg);
    background-repeat: no-repeat;
    background-position: top -6px center;
    background-size: 38px;
}
.tit-lang{
    background-image: url(../svg/icon-p-lang.svg);
    background-repeat: no-repeat;
    background-position: top -6px center;
    background-size: 38px;
}








nav.sticky-pro {
    background: transparent;
    background: #134395;
}
.sticky-box-logo{
    display: block;
    position: relative;
    height: 100px;
    width: 170px;
    top: 10px;
}

.home .sticky-box-logo{
    width: 200px;
}

.hero{
    opacity: 1;
    background: #e5e5e5;
    width: 100%;
    height: 290px;
    position: absolute;
    top: 0;
    left: 0;
    min-height: 290px;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-img{
    
    background-image: url(../empresas/hero-empresas.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-impar .hero-img{
    background-image: url(../empresas/hero-empresas.jpg);
}

.hero-par .hero-img{
    background-image: url(../empresas/hero-empresas.jpg);
}









.hero h1{
    margin: 0 2%;
}


.logo-embajada-col{
    
}
.logo-embajada-wrap{
    
}
.logo-embajada {
    width: 100%;
    MAX-WIDTH: 330PX;
    MARGIN-TOP: 10PX;
    height: auto;
}
#sinResultados{
    BACKGROUND: WHITE;
    PADDING: 30PX;
    MAX-WIDTH: 100%;
    LINE-HEIGHT: 100%;
    COLOR: #b46262;
      animation-name: miMIXfiltro;
      animation-duration: .8s;
      animation-fill-mode: forwards; /* mantiene el último frame de la animación */
      animation-timing-function: cubic-bezier(.69,.14,.13,.92);
      transform: translateY(20px);
    pointer-events: none;
}



.hero-info {
    opacity: 1;
    background: #fafafa;
    background: #fff;
    width: 100%;
    height: 160px;
    position: absolute;
    top: 0;
    left: 0;
    min-height: 160px;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-color{
    background-color: #ffffff;
    background-image: url(../planeta/patter2.png);
    background-size: 55px;
    background-repeat: repeat;
    background-position: top -2px left;
    position: relative;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .5;
}

/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
@media screen and (max-width: 1200px) {
    
    #titulaciones {
        grid-template-columns: 49% 49%;
        grid-gap: 20px 2%;
    }


}



@media screen and (max-width: 990px) {
    .hero h1 br{
        display: none
    }
    .sticky-pro #BURGERmenu{
        position: fixed;
    }
     #titulaciones {
        grid-template-columns: 100%;
    }
    
    #wrapper{
        display: block;
        position: relative;
    }
    #wrapper #content {padding: 20px}
    #sidebar{
        position: absolute;
        width: 100%;
        left: 0;
        z-index: 2;
    }
    #MobileFiltros{
        cursor: pointer;
    }
    #MobileFiltros .filtro{
        background-image: url(../svg/filtros.svg);
        background-repeat: no-repeat;
        background-position: right 20px center;
        background-size: 30px;
    }
    #MobileFiltros.sidebar-on .filtro{
        background-image: url(../svg/close-white.svg);
        background-size: 20px;
        background-position: right 24px center;
    }
    .filtro {
        padding: 20px 20px;
    }
    #sidebar{
        display: none;
    }
    #sidebar.sidebar-on{
        display: block;
        position: relative;
        height: auto;
    }
    #sidebar .pf-cta{
        width: 100%;
        max-width: 100%;
    }
    
    .titulaciones-head input{
        width: 100%;
        max-width: 100%;
    }
    
    #content.filtros-visible .listado-titulaciones{
        /*display: none;*/
        display: block;
        height: 1px;
        overflow: hidden;
        position: fixed;
        top: -20px;
        z-index: -1;
        padding: 0;
        
    }


    
    
}

@media screen and (max-width: 768px) {
    .mix {
       min-height: auto;
    }
    .mix, .flex-wrap {
        display: block;
        height: auto;
    }
    .titulo-info-2 {
        padding-top: 20px;
    }
    
    
}






/*/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\*/
/*/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\*/
/*/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\*/
/*----------- gracias------------*/
/*/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\*/
/*/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\*/
/*/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\*/


#GRACIAS,
#ERROR{
    background-color: #F7F7F7;
    background-image: url(../planeta/patter2.png);
    background-size: 80px;
    background-repeat: repeat;
    background-position: center center;
    position: relative;
}
.gracias-overlay{
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #f7f7f77a;
}

#GRACIAS .entry-content,
#ERROR .entry-content{
    padding: 100px 0 160px;
    position: relative;
}
#GRACIAS .container {
    max-width: 1110px;
}
#ERROR .container {
    max-width: 900px;
}
#GRACIAS .entry-content .container .row,
#ERROR .entry-content .container .row{
    background: white;
}
#GRACIAS .entry-content .container .row .col-lg-5{
    background-image: url(../planeta/gracias.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 280px;
}

#ERROR img{
   width: 100%;
}

@media screen and (max-width: 990px) {

    #GRACIAS .entry-content {
        padding: 50px 0 50px;
        position: relative;
    }
    #ERROR .entry-content {
        padding: 50px 0 50px;
        position: relative;
    }
    #ERROR .pf-cta{
        margin: 0 !Important;
    }

    
}





/*/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\*/
/*/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\*/
/*/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\*/
/*----------- seleccion ------------*/
/*/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\*/
/*/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\*/
/*/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\*/
section{
    padding: 1px;
    position: relative;
}
.pattern{
    background-repeat: repeat;
    background-size: 80px;
    background-repeat: repeat;
    background-position: top center;
}

.pattern-blue{
    background-image: url(../planeta/patter1.png);
}
.pattern-top{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 310px;
}
.pattern-bottom{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 310px;
}
.BoxPaso1 .col{
    padding: 20px;
    margin: 40px 0;
}
.BoxPaso1 .col:nth-child(1){
    border-right: 1px solid #768dbb;
}
.BoxPaso1 .col:nth-child(2){
    border-right: 1px solid #768dbb;
}

.BoxSelectorWrap{
    max-width: 300px;
    margin: auto;
}
.BoxSelectorTexto{
   min-height: 320px;
}
.seleccion-icon{
    width: 100px;
    display: block;
    margin: 0 auto 20px;
}
.pf-cta,
#PFormulario input.pf-cta{
    background: #134395;
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-image: url(../planeta/flecha-boton-white.svg);
    padding: 20px;
    /*color: black;*/
    color: white;
    display: inline-block;
    font-weight: 600;
    border-radius: 4px;
    font-size: 17px;
    padding: 12px 60px 12px 30px;
    width: 90%;
    max-width: 320px;
    transition: all .2s ease;
    cursor: pointer;
    text-align: left;
}

a.pf-cta-white:not([href]):not([tabindex]),
a.pf-cta-white:not([href]):not([tabindex]):focus, 
a.pf-cta-white:not([href]):not([tabindex]):hover,
a.pf-cta-white,
a.pf-cta-white:focus, 
a.pf-cta-white:hover,
a.pf-cta-white:visited{
    color: black !important;
}
.pf-cta-white{
    background: white;
    background-image: url(../planeta/flecha-boton.svg);
    background-position: right 14px center;
    background-repeat: no-repeat;
    background-size: 30px;
    color: black;
}
.pf-cta:hover{
    color: white;
    background-position: right 10px center;
}
.pf-cta-white:hover{
    color: black;
    background-position: right 10px center;
}
.BoxPaso2{
    width: 96%;
    margin: 0 2%;
}

.BoxPaso2 .col{
    padding: 20px;
    margin: 40px 20px;
}

.BoxSeleccionGrid{
    grid-auto-rows: auto;
    grid-template-columns: 20% 20% 20% 20% 20%;/*5 col*/
    grid-template-columns: 25% 25% 25% 25%;
    grid-gap: 0 0;
    display: grid;
    float: none;
    height: auto !important;
    padding: 0;
    margin: 0;
    list-style: none;
}
.BoxSeleccionGrid li{
    padding: 0;
    margin: 0;
    list-style: none;
    display: inline-block;
    border: 1px solid transparent;
    transition: all .2s ease;
    margin-bottom: -1px;
    margin-right: -1px;
    cursor: pointer;
}
.BoxSeleccionGrid1 li:hover,
.BoxSeleccionGrid1 li.element-select{
    border: 1px solid white;
}
.BoxSeleccionGrid li img{
    width: 100%;
}

.GoToPaso1{
    width: 54px;
    height: 54px;
    position: absolute;
    left: 0;
    top: 30px;
    background: white;
    background-image: url(../planeta/flecha-back.svg);
    background-position: 10px center;
    background-repeat: no-repeat;
    background-size: 34px;
    border-radius: 2px;
    transition: all .2s ease;
    z-index: 1;
    cursor: pointer;
}
.GoToPaso1:hover{
    background-position: 6px center;
}
.BoxSeleccionGrid2{ 
    grid-template-columns: 20% 20% 20% 20% 20%;
}
.BoxSeleccionGrid3{ 
    grid-template-columns: 20% 20% 20% 20% 20%;
}
.BoxSeleccionGrid2 p{
    min-height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    /*ont-size: 20px;*/
    font-size: 25px;
    line-height: 110%;
    font-weight: 700;
    position: relative;
    border: 1px solid transparent;
    margin-bottom: 0;
    padding: 10px;
}
.BoxSeleccionGrid2 p:hover,
.BoxSeleccionGrid2 p.element-select{
    border: 1px solid white;
    cursor: pointer;
}
.BoxSeleccionGrid2 p:after{
    content: "";
    width: 1px;
    height: 92%;
    background: white;
    position: absolute;
    right: 0;
    top: 4%;
    opacity: .2;
}
.BoxSeleccionGrid2 p:before{
    content: "";
    width: 92%;
    height: 1px;
    background: white;
    position: absolute;
    right: 4%;
    bottom: 0;
     opacity: .2;
}

.BoxSeleccionGrid > li:nth-child(5n) p:after{
    background: transparent;
}
.BoxSeleccionGrid > li:nth-last-child(-n + 5) p:before{
    background-color: transparent;
}
.step{
    z-index: 1;
    transition: all .4s ease;
    transform: translateY(0);
}
.step-oculto{
    position: absolute;
    opacity: 0;
    z-index: 0;
    transform: translateY(40px);
    width: 100%;
}
#StepWrapper{
    /*border: 4px solid red;*/
    overflow: hidden;
}

@media screen and (max-width: 1200px) {
    .BoxSeleccionGrid{
        grid-template-columns: 33.3% 33.3% 33.3%;
    }
}

@media screen and (max-width: 990px) {
    
    .BoxPaso1 .col{
        padding: 10px;
        margin: 40px 0;
        margin-bottom: 0px;
        padding-bottom: 40px;
        padding-bottom: 50px;
        margin-top: 20px;
    }
    .BoxPaso1 .col:nth-child(1),
    .BoxPaso1 .col:nth-child(2){
        border-right: none;
        border-bottom: 1px solid #768dbb;
        margin-bottom: 0px;
        padding-bottom: 40px;
        padding-bottom: 50px;
        margin-top: 20px;
    }
    .BoxPaso1 .col:nth-child(1){
        padding-top: 20px;
    }

    .BoxSeleccionGrid {
        grid-template-columns: 50% 50%;
    }

    .GoToPaso1 {
        width: 44px;
        height: 44px;
        left: -5px;
        top: 5px;
        background-image: url(../planeta/flecha-back.svg);
        background-position: center;
        background-size: 30px;
    }
    .BoxPaso2 .col {
        padding: 20px 10px;
        margin: 40px 0px;
    }
    .BoxPaso2 .pf-cta-white{
        margin: auto;
        display: inherit;
    }
    .BoxSeleccionGrid > li:nth-child(5n) p:after{
        background: white;
    }
    .BoxSeleccionGrid > li:nth-last-child(-n + 5) p:before{
        background-color: white;
    }
    
    .BoxSeleccionGrid > li:nth-child(2n) p:after{
        background: transparent;
    }
    .BoxSeleccionGrid > li:nth-last-child(-n + 2) p:before{
        background-color: transparent;
    }
    
    #step4 .BoxSeleccionGrid > li:nth-child(2n) p:before{
        background-color: white;
    }
}




/*/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\*/
/*/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\*/
/*/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\*/
/*----------- formulario ------------*/
/*/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\*/
/*/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\*/
/*/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\*/
#ArrowUp{
    position: fixed;
    bottom: 5%;
    bottom: 100px;
    right: 0;
    z-index: 3;
    cursor: pointer;
    transition: all .5s ease;
    transform: translateX(101%);
     transition-timing-function: cubic-bezier(.84,.15,.26,.92);
    display: none;
}
#ArrowUp.mostrarArrowUp{
    transform: translateX(0);
    transition: all .7s ease;
}
#ArrowUp rect{transition: all .2s ease;}
#ArrowUp:hover rect{fill: #000000}
/*/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\*/
/*/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\*/
/*/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\*/
/*----------- formulario ------------*/
/*/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\*/
/*/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\*/
/*/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\*/
#BREADCRUMB{
    border-bottom: 1px solid #dddddd;
}
#BREADCRUMB a{
    font-weight: 600;
    color: #134395;
}
#BREADCRUMB a:hover{
    text-decoration: underline !Important;
}
#BREADCRUMB span{
    color: gray;
}
#BREADCRUMB a,#BREADCRUMB span{
    display: inline-block;
    position: relative;
    padding-right: 10px;
}

#BREADCRUMB a:after{
    content: "/";
    font-weight: 400;
    color: gray;
    padding-left: 10px;
    display: inline-block;
}

#InfoCol1{
    border-right: 1px solid #dddddd;
}
#InfoCol2{
    display: flex;
    align-items: center;
}
#InfoCol2 .row{
    border-bottom: 1px solid #dddddd;
    margin: 0;
    padding: 30px;
}
#InfoCol2 .row:last-of-type{
    border-bottom: none;
}
#InfoCol2 .txt-info-creditos p{
    padding: 0;
    margin: 0;
}
.txt-info{
    padding-left: 44px;
    background-image: url(../planeta/ico-time.svg);
    background-repeat: no-repeat;
    background-position: bottom 6px left;
    background-position: top 10px left;
    background-size: 26px;
    min-height: 48px;
}
.txt-info p{
    line-height: 100%;
     margin-top: 2px;
}
.txt-info-2{background-image: url(../planeta/ico-agenda.svg)}
.txt-info-3{background-image: url(../planeta/ico-agenda.svg)}
.txt-info-4{background-image: url(../planeta/ico-mode.svg);background-size: 30px;}
.txt-info-5{background-image: url(../planeta/ico-lang.svg);background-size: 30px;}
.txt-info-6{background-image: url(../planeta/ico-precio.svg);background-size: 30px;}
.txt-info-7{background-image: url(../planeta/ico-porcent.svg)}
.txt-info-8{background-image: url(../planeta/ico-persona.svg)}


.txt-info-2{
    background-image: url(../planeta/icon-agenda.png);
    background-size: 38px;
    background-position: top 10px left -4px;
}
.txt-info-3{
    background-image: url(../planeta/icon-inicio.png);
    background-size: 38px;
    background-position: top 10px left -4px;
}
.txt-info-9{
    background-image: url(../planeta/icon-marker.png);
    background-size: 38px;
    background-position: top 10px left -4px;
}
.txt-info-10{
    background-image: url(../planeta/icon-nivel.png);
    background-size: 38px;
    background-position: top 10px left -4px;
}


.logo-brand{
    max-width: 200px;
    margin-top: -10px;
}
.logo-brand img{
    max-width: 100%;
}
.abrir-ventana{
    background-image: url(../svg/new-window.svg);
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: top right;
    color: #4D89FF;
    padding: 1px 25px 0px 0;
    display: inline-block !important;
    line-height: 120%;
    max-width: 410px;
    width: 90%;
    hyphens: none;
    margin-right: 5%;
}
.abrir-ventana span{border-bottom: 1px solid #4D89FF}
.abrir-ventana:hover{color: #4D89FF}
.abrir-ventana:hover span{border-bottom: 1px solid transparent}

#PFormulario{
    overflow: hidden;
}
.pattern-top-azul{
    background-repeat: repeat;
    background-size: 80px;
    background-repeat: repeat;
    background-position: top center;
    background-image: url(../planeta/patter2.png);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
}

.patter-bottom-azul{
    background-repeat: repeat;
    background-size: 80px;
    background-repeat: repeat;
    background-position: top center;
    background-image: url(../planeta/patter2.png);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
}
#PFormulario .container{
        max-width: 1000px;
}
#PFormulario .container#PostulaBotones{
        max-width: 800px;
}
#PFormulario .container#PostulaBotones .duo-botones{
    display: flex;
    justify-content: flex-end;
}


#PFormulario .row{
    background: white;
    margin-bottom: 3px;
    padding: 30px 5%;
}

#PFormulario input,
#PFormulario select{
    padding: 0 10px;
    background: #F4F4F4;
    border: none;
    width: 100%;
    min-height: 44px;
    color: #444;
    border-bottom: 1px solid white;
}
#PFormulario input[type="date"]::-webkit-calendar-picker-indicator,
#PFormulario input[type="date"]::-webkit-inner-spin-button{
    display: none;
}
#PFormulario input[type="date"]::-webkit-clear-button {
    display: none;
    -webkit-appearance: none;
}

#PFormulario input:focus,
#PFormulario select:focus{
     outline-color: #1c59c2;
}
    
    
#PFormulario .errorFormulario input, 
#PFormulario .errorFormulario select {
    border-bottom: 1px solid red;

}


.form-check-1.errorFormulario:after {
    display: block;
    content: "Debes aceptar las bases legales y política de privacidad.";
    color: red;
    font-size: 12px;
    position: relative;
    font-size: 11px;
    padding-left: 26px;
    margin-bottom: 10px;
    line-height: 100%;
}

#PFormulario input[readonly] {
  background-color: #f2f2f2;
  color: #999999;
    pointer-events: none;
}
#PFormulario input[readonly]:focus {
    outline: none;   
}
#PFormulario input::placeholder{
    color: #444;
}
.form-full,.form-medio,.form-full-adjunto{
    padding-bottom: 14px;
}

.form-full label,
.form-medio label,
.form-full-adjunto label{
    color: #b0b0b0;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    position: relative;
    letter-spacing: -.5px;
    line-height: 100%;
    padding-right: 20px;
    margin-bottom: 8px;
}
.form-medio-1{padding-right: 8px}
.form-medio-2{padding-left: 8px}

.PFtooltip{
    /* background: lime; */
    position: absolute;
    right: 0px;
    top: 0;
    width: 20px;
    height: 20px;
    background-repeat: repeat;
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: top right;
    background-image: url(../planeta/tooltip.svg);
    opacity: .4;
    cursor: pointer;
    z-index: 1;
    border: none;
    background-color: transparent;
    width: 20px;
    padding: 0;
}










.form-medio-1 .PFtooltip{right: 6px;}
.form-medio-2 .PFtooltip{right: 0px;}


.form-medio-3{padding-right: 16px}
.form-medio-4{padding-right: 16px}

.form-medio-3 .PFtooltip {right: 16px;}
.form-medio-4 .PFtooltip {right: 16px;}

.ui-tooltip{
    background: red;
    box-shadow: none;
    border: none !Important;
    color: white;
    background: black;
    border-radius: 6px;
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    position: relative;
    padding: 10px;
}

#PFormulario .field-adjunto{
   background: #F4F4F4;
    display: block;
    padding: 1px;
    border-bottom: 1px solid white;
}
#PFormulario .form-full-adjunto.errorFormulario .field-adjunto{
    border-bottom: 1px solid red;
}

#PFormulario .field-adjunto label{
    cursor: pointer;
}

#PFormulario .file-input{
  display:none;
}

#PFormulario label[for='file-input'] *{
  vertical-align:middle;
  cursor:pointer;
}

#PFormulario label[for='file-input'] span{
  margin-left: 10px;
    position: absolute;
    top: 10px;
    left: 50px;
}
#PFormulario .field-adjunto:focus{
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
#PFormulario .field-adjunto span {
    /*margin-left: 10px;
    position: absolute;
    top: 0;
    left: 40px;
    font-size: 16px;
    line-height: 100%;
    height: 43px;
    display: flex;
    align-items: center;
    width: auto;
    overflow: hidden;
    padding-right: 40px;*/
    margin-left: 10px;
    position: absolute;
    top: 0;
    left: 40px;
    font-size: 15px;
    line-height: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    width: auto;
    overflow: hidden;
    padding-right: 40px;
    font-family: sans-serif;
    letter-spacing: 0;
}

#PFormulario select{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;

}


#PFormulario .select-arrow:after {
    /* background-image: url(../svg/arrow-viu.svg); */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 12px;
}
#PFormulario .select-arrow{
       position: relative; 
}
#PFormulario .select-arrow:after{
    content: "";
    width: 18px;
    height: 100%;
    /* background: yellow; */
    position: absolute;
    right: 10px;
    top: 0;
    pointer-events: none;
}
#PFormulario .select-arrow:after{
    background-image: url(../svg/arrow-select.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 16px;
}





#PFormulario .paperclip{
    position: relative;
    /*background: lime;*/
    width: 30px;
    height: 30px;
    background-repeat: repeat;
    background-size: 30px;
    background-repeat: repeat;
    background-position: top center;
    background-image: url(../planeta/paperclip.svg);
    opacity: .6;
    margin: 6px;
    display: block;
}
#PFormulario figure.remove{
    vertical-align: middle;
    margin-left: 5px;
    cursor: pointer;
    display: none;
    position: absolute;
    top: 7px;
    right: 10px;
}
#PFormulario .remove{
    position: relative;
    /*background: lime;*/
    width: 30px;
    height: 30px;
    background-repeat: repeat;
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../planeta/close.svg);
    opacity: .6;
}
#PFormulario .field-adjunto span{
    color: #a0a0a0;
    transition: all .1s ease;
}
#PFormulario .field-adjunto:hover span{
    color: #444;
}

#PFormulario .field-adjunto.adjutado span{
    color: #444;
}

.form-check-wrap{
    display: inline-flex;
    width: 100%;
}
#PFormulario .form-check-wrap input{
    width: 16px;
    min-height: auto;
    margin-right: 10px;
}
#PFormulario .form-check-wrap label{
    flex: 1;
    font-size: 12px;
    margin: 4px 0;
    font-family: sans-serif;
    letter-spacing: 0;
    font-weight: 500;
    color: gray;
    line-height: 120%;
    font-size: 11px;
}



.legal-box {
    height: 77px;
    overflow-y: scroll;
    border: 1px solid #efefef;
    /*padding: 10px;*/
    color: gray;
    font-size: 12px;
    line-height: 120%;
    font-family: sans-serif;
}

.legal-box::-webkit-scrollbar {
  -webkit-appearance: none; }

.legal-box::-webkit-scrollbar:vertical {
  width: 11px; }

.legal-box::-webkit-scrollbar:horizontal {
  height: 11px; }

.legal-box::-webkit-scrollbar-thumb {
  border-radius: 8px;
  border: 2px solid #F6F4F2;
  background-color: rgba(0, 0, 0, 0.5); 
}

.wrap-table{
    width: 100%;
    overflow: hidden;
    overflow-x: scroll;
}
.wrap-table table th p{
    font-weight: 700;
}

#page-info-legal p{
    font-size: 18px;
    line-height: 150%;
}
#page-info-legal p.info-cookies{
    font-size: 14px;
}
#page-info-legal{
    padding-right: 20px;
    padding-left: 20px;
    overflow: hidden;
    overflow-x: scroll;
}


#page-info-cookies table {
    table-layout: auto;
    border-collapse: separate;
    border-spacing: 0 0.1875rem;
    width: 100%;
}
#page-info-cookies table tbody tr {
    background-color: white;
    box-shadow: inset 0 0 0 1px #e7eaec;
}
#page-info-cookies table th, #page-info-cookies table td {
    font-size: 0.875rem;
    padding: 1rem;
}
#page-info-cookies table th span, #page-info-cookies table td span{
    display: block;
}
#page-info-cookies table th p, #page-info-cookies table td p{
    font-size: 14px;
}


#ot-sdk-btn.ot-sdk-show-settings, #ot-sdk-btn.optanon-show-settings {
    color: #68b631;
    border: 1px solid #68b631;
    height: auto;
    white-space: normal;
    word-wrap: break-word;
    padding: 0.8em 2em;
    font-size: 0.8em;
    line-height: 1.2;
    cursor: pointer;
    -moz-transition: 0.1s ease;
    -o-transition: 0.1s ease;
    -webkit-transition: 1s ease;
    transition: 0.1s ease;
}


.pform-row{
    display: flex;
    padding-bottom: 20px;
}


.pform-col-med,
.pform-col-phone{
    flex: 1;
}
.pform-col-med:first-of-type {
    padding-right: 1%;

}
.pform-col-med input,
.pform-col-med select,
.pform-col-phone input,
.pform-col-phone textarea{
   width: 100%;
}
.pform-col-phone-prev{
    margin-right: 10px;
}
.pform-col-phone-prev select,
.pform-col-phone-prev input,
.pform-col-phone-prev span{
    width: 80px;
    margin-right: 12px;
    display: inline-block;
}
#PHomeBox7 select:focus,
#PHomeBox7 input:focus,
#PHomeBox7 span:focus,
#PHomeBox7 textarea:focus{
    outline: none;
}
#PHomeBox7 input::placeholder{
    color: black;
}

.pform-col-full{
    width: 100%;
}
.pform-row input,
.pform-row select,
.pform-row textarea{
    min-height: 40px;
    border: none;
    border-bottom: 1px solid #989898;
    font-size: 18px;
    width: 100%;
    background: transparent;
}
.pform-row textarea{
    min-height: 40px;
    border: none;
    border: 1px solid #989898;
    font-size: 18px;
    width: 100%;
    max-height: 100px;
    padding: 10px;
}
.pform-row input[type="submit"] {
    width: 200px;
    color: white;
    border: none;
    background: #134395;
    padding: 12px;
    border-radius: 4px;
    float: right;
}
.pform-col-full small{
    background: #ececec;
    display: block;
    padding: 10px;
    font-size: 11px;
    line-height: 140%;
    border-radius: 5px;
    color: #464646;
}
#PFormulario .pform-col-full small {
    background: #f7f7f7;
}
#prefijo{
     outline: none;
    padding-left: 30px;
    background-image: url(../svg/tel.svg);
    background-size: 16px;
    background-position: center left 10px;
    background-repeat: no-repeat;
    background-color: transparent;
    color: gray;
    pointer-events: none;
   -webkit-tap-highlight-color: transparent;
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      -khtml-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    background: #fefefe;
    color: #134395;
    padding: 20px;
    border: none;
    text-align: center;
    font-size: 18px;
    border: 2px solid #134395;
    font-weight: 600;
}


@media screen and (max-width: 990px) {
    
    #page-info-legal p {
        font-size: 16px;
    }

}
/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
/*--------------------- HOME --------------------------*/
/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
.home nav.sticky-pro {
    background: transparent;
}
.home header{
    position: relative;
    margin-bottom: -110px;
}
#PHomeHero{
    min-height: 600px;
    overflow: hidden;
    position: relative;
    background: black;
    background: #134395;
    display: flex;
    align-items: end;
}
#PHomeHero,
.hero{
    background: #515151;
    background: #000;
}
#PHomeHero .hero-img{
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../planeta/hero-empresas.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width:100%;
  animation-name: miAnimacion;
  animation-duration: 6s;
  animation-fill-mode: forwards; /* mantiene el último frame de la animación */
}
/* define la animación con keyframes */
@keyframes miAnimacion {
  0% {
    transform: scale(1.05);
      opacity: 0;
  }  
  10% {
       opacity: 1;
  }
  100% {
    transform: scale(1);
      opacity: 1;
  }
}

.v-align-down{
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}




#PHomeHero .hero-img-lines{
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../planeta/hero-pattern.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width:100%;
}
.separator-home-1{
    position: relative;
    height: 100px;
    overflow: hidden;
}
.separator-home-1 .patter-bottom-azul{
    bottom: auto;
    top: 0;
}
#PHomeBox3 img{
    max-width: 500px;
    width: 100%;
    height: auto !Important;
}
#PHomeBox4empresa img,
#PHomeBox4 img{
    max-width: 500px;
    width: 100%;
     height: auto !Important;
}
#PHomeBox4 hr {
    border-top: 1px solid rgb(255 255 255 / 24%);
}
.separator-home-2{
    position: relative;
    height: 100px;
    overflow: hidden;
    margin-bottom: 40px;
}
.separator-home-2 .patter{
    bottom: auto;
    top: 0;
}
.separator-home-3{
    position: relative;
    height: 100px;
    overflow: hidden;
    margin-top: 40px;
}

.col-v-center{
    display: flex;
    align-items: center;
}



/* Frame */
.frame {
	height: 250px;
	line-height: 250px;
	overflow: hidden;
}
.frame ul {
	list-style: none;
	margin: 0;
	padding: 0;
	height: 100%;
	font-size: 50px;
}
.frame ul li {
	float: left;
	width: 227px;
	height: 100%;
	margin: 0 1px 0 0;
	padding: 0;
	background: #333;
	color: #ddd;
	text-align: center;
	cursor: pointer;
}
.frame ul li.active {
	color: #fff;
	background: #a03232;
}

/* Scrollbar */
.scrollbar {
	margin: 0 0 1em 0;
	height: 2px;
	background: #ccc;
	line-height: 0;
}
.scrollbar .handle {
	width: 100px;
	height: 100%;
	background: #292a33;
	cursor: pointer;
}
.scrollbar .handle .mousearea {
	position: absolute;
	top: -9px;
	left: 0;
	width: 100%;
	height: 20px;
}

/* Pages */
.pages {
	list-style: none;
	margin: 20px 0;
	padding: 0;
	text-align: center;
}
.pages li {
	display: inline-block;
	width: 14px;
	height: 14px;
	margin: 0 4px;
	text-indent: -999px;
	border-radius: 10px;
	cursor: pointer;
	overflow: hidden;
	background: #fff;
	box-shadow: inset 0 0 0 1px rgba(0,0,0,.2);
}
.pages li:hover {
	background: #aaa;
}
.pages li.active {
	background: #666;
}

/* Frame */
#LogosSlider {
    max-width: 1200px;
    margin-top: 40px;
    margin: 40px auto 0;
}
#LogosSlider .frame {
  height: 180px;
  line-height: 250px;
  overflow: hidden;
}

#LogosSlider .frame ul {
    list-style: none;
    margin: 0;
    padding: 0;
    height: 140px;
    font-size: 50px;
}

#LogosSlider .frame ul li {
    float: left;
    width: 280px;
    height: auto;
    height: 190px;
    margin: 0 1px 0 0;
    padding: 0;
    background: transparent;
    color: #ddd;
    text-align: center;
    cursor: pointer;
    /*border: 1px solid lime;*/
    position: relative;
}

#LogosSlider .frame ul li img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding-right: 20px;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

#LogosSlider .frame ul li.active {
  color: #fff;
  background: transparent;
}


/* Scrollbar */

.scrollbar {
    margin: 24px 0 1em 0;
    height: 8px;
    background: #e3e3e3;
    line-height: 0;
    border-radius: 10px;
    margin-top: 40px;
}

.scrollbar .handle {
    width: 100px;
    height: 100%;
    background: #134395;
    cursor: pointer;
    border-radius: 10px;
}

.scrollbar .handle .mousearea {
  position: absolute;
  top: -9px;
  left: 0;
  width: 100%;
  height: 20px;
}



.frame-blog-12{
    display: flex; justify-content: center;
}
@media screen and (max-width: 990px) {
    
    .frame-blog-12{
        display: block;
    }
}
/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
/*------------------- MEDIA QUERY ---------------------*/
/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
@media screen and (max-width: 990px) {
    
    .logo-embajada {
        MAX-WIDTH: 230PX;
        height: auto;
    }
    .v-align-down{
        display: block;
    }
    .hero-img-lines{
        display: none;
    }

    
    
    #BREADCRUMB .container {
        width: 100%;
        white-space: nowrap;
        max-width: 100%;
        overflow: hidden;
        overflow-x: auto;
    }
   #BREADCRUMB .row {
       width: max-content;
       position: relative;
       box-sizing: border-box;
    }
   #BREADCRUMB .col{
        display: flex;
        width: 100%;
    }
    #BREADCRUMB .container::-webkit-scrollbar{
      display: none;
    }
    #InfoCol1 {
        border-right: none;
        border-bottom: 1px solid #dddddd;
    }
    .logo-brand {
        max-width: 160px;
    }
    #InfoCol2 .row {
        padding: 20px 0;
    }
    #TitulacionInfo .row{
        width: 100%;
    }
    
    
    #PFormulario .container {
        padding-right: 0;
        padding-left: 0;
    }
    .form-medio-1,
    .form-medio-2,
    .form-medio-3,
    .form-medio-4 {
        padding-left: 0px;
        padding-right: 0px;
    }
    .form-medio-1 .PFtooltip,
    .form-medio-2 .PFtooltip,
    .form-medio-3 .PFtooltip,
    .form-medio-4 .PFtooltip{
        right: 0px;
    }

    .pf-cta, #PFormulario input.pf-cta{
        margin: auto;
        display: inherit;
    }
    
    .pform-row {
        display: block;
        padding-bottom: 0px;
    }
    .pform-row-phone{
        display: flex
    }
    .pform-col-med,
    .pform-col-phone-prev,
    .pform-col-phone,
    .pform-col-full{
        padding-bottom: 14px;
    }
    .pform-col-full{
        padding-top: 14px;
    }
    .pform-col-phone-prev {
        margin-right: 0;
    }
    
    #PHomeHero {
        min-height: 450px;
    }

    #PFormulario .container#PostulaBotones .duo-botones{
        display: block;
    }
}

/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
.sticky-pro #BURGERmenu:hover span,
#CLOSE-BURGER:hover span{
    opacity: .7;
}
.sticky-pro #BURGERmenu,
.sticky-pro #BURGERmenu .hamburger {
    width: 122px !important;
    height: 48px;
    left: auto !Important;
    right: 20px;
    top: 30px;
    border-radius: 4px;
    box-shadow: 0px 0px 6px 1px #0000000f;
}
.hamburger-text{
    display: inline-block;
    padding-right: 6px;
    font-weight: 500;
    font-size: 18px;
}
#mySidenav {
    width: 100%;
    max-width: 450px;
}
#movilmenu0 {background-color: #ffffff}

#CLOSE-BURGER{
    width: 190px;
    left: auto;
    right: 20px;
    position: absolute;
    text-align: right;
    top: 30px;
    cursor: pointer;
}

#CLOSE-BURGER span {
    color: #000;
}
#CLOSE-BURGER span.burger-close-txt{
    font-size: 20px;   
}
#CLOSE-BURGER span.icon-x{
    font-size: 24px;
    top: 8px;
}

#movilmenu0.fuera{
    transition: all .4s ease;
    transition-timing-function: cubic-bezier(.39,.96,.48,.98);
    transform: translateX(50%);
}
#movilmenu0.fuera.dentro{
    transform: translateX(0px);
}
.hamburger-box{    
    width: 26px;
    height: 13px;
    position: relative;
    top: 1px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 20px;
    height: 2px;
}
.hamburger-inner::before {top: -6px}
.hamburger-inner::after {bottom: -6px}

.full-menu-wrap {
    align-items: flex-start;
    margin-top: 70px;
    padding: 0 30px;
}
#movilmenu0 li a {
    COLOR:#134395;
    font-size: 26px;
    border-top: 1px solid #466cac63;
    padding: 14px 0;
    position: relative;
    display: block;
    transition: all .2s ease;
}
#movilmenu0 li a:after {
    content: "";
    width:30px;
    position: absolute;
    right: 0;
    height: 30px;
    background-image: url(../svg/arrow-menu.svg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 14px;
    opacity: .4;
    transition: all .2s ease;
}
#movilmenu0 li a:hover,
#movilmenu0 li a:hover:after{
    color: black;
    opacity: 1;
}

#movilmenu0 li.menu-item-beca{
    margin-top: 20px;
}
#movilmenu0 li.menu-item-beca a{
    font-size: 18px;
    width: 100%;
    max-width: 100%;
    padding: 14px 60px 14px 20px;
    border-radius: 4px;
}
#movilmenu0 li.menu-item-beca a:after { display: none}












/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
/*--------------------admin-----------------------*/
/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
.page-template-page-admin .hero{
    display: none !important;
}

.separator-admin-1 {
    position: relative;
    height: 80px;
    overflow: hidden;
    margin-bottom: 40px;
        opacity: .5;
}
.separator-admin-2 {
    position: relative;
    height: 80px;
    overflow: hidden;
    margin-top: 40px;
        opacity: .5;
}
.page-template-page-admin .pattern {
    background-size: 53px;
}
#AdminPlaneta{
    padding: 30px 0;
    width: 90%;
    max-width: 1500px;
    min-height: 40%;
}

#cabeceratabla {
    margin-bottom: 30px;
}
#cabeceratabla h3 {
    font-weight: 400 !important;
    font-size: 40px;
}
.col-scroll{
    overflow-x: scroll;
}

#AdminAccordion {
    max-width: 100%;
    margin: auto;
    margin-top: 20px;
}
#AdminAccordion .tab-label {
    color: #fff;
    padding: 13px 0 20px;
    border-top: 1px solid #ffffff00;
    border-bottom: 1px solid #ffffff50;
    MARGIN-BOTTOM: -1PX;
}
#AdminAccordion .tab-label span {
    /* position: relative; */
    /* top: 4px; */
    margin: auto;
}

#AdminAccordion .tab-label span:after {
    content: "+";
    font-size: 30px;
    display: inline-block;
    margin-left: 10px;
    font-weight: 300;
    position: relative;
    top: 4px;
    min-width: 24px;
}
#AdminAccordion .tab-abierto .tab-label span:after {
    content: "-";
}

#AdminAccordion .tabs .tab:last-of-type {
    border-bottom: none;
}
#AdminAccordion .tab {
   
}
#AdminAccordion .tab-label::after{
    display: none;
}
#AdminAccordion .tab-content p {
    display: block;
    /*border: 1px solid orange;*/
}
#AdminAccordion .tab-content p a{
    color: gray;
    transition: all .2s ease;
    border: 1px solid transparent;
    display: block;
    width: 100%;
    max-width: 160px;
    display: inline-flex;
    margin: 10px 0;
}
#AdminAccordion .tab-content p a img {
    width: 100%;
    display: block;
    position: relative;
    display: inline-block;
}
#AdminAccordion .tab-content p a:hover{
     border: 1px solid white;
}
#AdminAccordion .tab-content p a.admin-todos {
    display: block;
    padding: 10px;
    text-align: center;
    color: white;
    width: 100%;
    text-align: center;
    margin: auto;
    text-decoration: underline;
    opacity: .6;
    font-size: 14px;
     border: none;
    cursor: pointer;
}
#AdminAccordion .tab-content p a.admin-todos:hover {
    opacity: 1;
    border: none;
    text-decoration: underline !Important;
}

#NAVresults,
#numSolicitudes{
    color: #134395;
}

h2.numSolicitudes{
    font-weight: 600;
    color: #134395;
}
#DOWNLOADxls a {
    background: #134395;
    color: white;
    font-weight: 600;
    padding: 12px 27px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    border-radius: 4px;
    transition: all .2s ease;
}
#DOWNLOADxls a:hover{
    background: #000;
}
#AdminPlaneta .table-bordered td, 
#AdminPlaneta .table-bordered th {
    border: 1px solid #e8e8e8;
}
#AdminPlaneta .table-striped tbody tr:nth-of-type(odd) {
    background-color: rgb(172 196 217 / 5%);
}
.FTP-no{
    width: 16px;
    height: 16px;
    background: #dcdcdc;
    border-radius: 50%;
    margin: auto;
}
.FTP-si{
    width: 16px;
    height: 16px;
    background: #1b63de;
    border-radius: 50%;
    margin: auto;
}


/*////////////////////////////////////////*/

/* This is the core CSS of Tooltipster */

/* GENERAL STRUCTURE RULES (do not edit this section) */


.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
	border-bottom-color: red;
    border-bottom-color: #333;
	left: 0;
	top: 3px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
	border-left-color: red;
    border-left-color: #333;
	left: -3px;
	top: 0;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
	border-right-color:red;
    border-right-color:#333;
	left: 3px;
	top: 0;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
	border-top-color: red;
    border-top-color: #333;
	left: 0;
	top: -3px;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
	border-bottom-color: #333;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
	border-left-color: #333;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
	border-right-color: #333;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
	border-top-color: #333;
}


.tooltipster-sidetip .tooltipster-box {
	border: 2px solid #333;
}
.tooltipster-base.tooltipster-black-custom {
  /*background-color: #333;*/
  color: #fff;
  border-radius: 5px;
  border: none;
  max-width: 400px;
  width: 80%;
  font-size: 14px;
}
.tooltipster-base.tooltipster-black-custom .tooltipster-content {
  background-color: #333;
  color: #fff;
  border: none;
  font-size: 14px;
    line-height: 130%;
  border-radius: 4px;
    padding: 10px 20px;
}


/*////////////////////////////////////////*/
/* empresas */
/*////////////////////////////////////////*/
#PHomeBoxMap hr {
    border-top: 1px solid rgb(255 255 255 / 23%);  
    margin-right: 2rem!important;
}
.maplogo img{
    width: 100%
}
ul.mapTabs{
  padding: 0;
  list-style: none;
}
ul.mapTabs li {
    width: 23%;
    margin-right: 1%;
    margin-bottom: 10px;
    border: 1px solid #ffffff5e;
    display: inline-block;
    text-align: center;
    padding: 3px;
    cursor: pointer;
    transition: all .2s ease;
    border-radius: 2px;
}
ul.mapTabs li:hover {
    background: #ffffff24;
    border: 1px solid #fff;
}
.WorldMapWrap{
    position: relative;
}
.MapCommon{
    position: relative;
}
.MapCommon img{
    opacity: .7;
}
.MapCommon img,
.MapLayer img{
    width: 100%
}
.MapLayer{
    position: absolute;
    left: 0;
    top: 0;
}
.MapLayer {
    opacity: 1;
    transition: opacity 0.2s ease;
}

.MapLayer.inactive {
    opacity: 0;
}

.wrap-map{
    border-left: 1px solid rgb(255 255 255 / 23%);  
}




.page-template-page-home-empresas #PHomeHero .hero-img{
    background-image: url(../empresas/hero-empresas.jpg);
}

#BG14 #PHomeHero .hero-img,
#BG14 .hero-img,
#BG14 .hero-impar .hero-img,
#BG14 .hero-par .hero-img{
    background-image: url(../empresas/hero-empresas-14.jpg);
}




.EmpresaPill {
    background: #e90337;
    padding: 0px 0px;
    border-radius: 8px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}
.EmpresaPill p{
    margin-bottom: 0;
}

.EmpresaPill img{
   width: 100%;
}
.EmpresaPill img{
    width: 90%;
    max-width: 160px;
}
#EmpresaLogo{
    display: flex;
    justify-content: left;
    align-items: center;
    /*border-right: 2px solid white;*/
    min-height: 100px;
}

#EmpresaText{
    padding-left: 20px;
    display: flex;
    align-items: center;
    flex: 1;
}

#EmpresaText p{
    /*color: white;*/
    font-size: 23px !important;
    line-height: 100%;
    margin-bottom: 0;
}
.hero #EmpresaText p{
    color: white;
}
#HeadEmpresaPill{
    padding: 10px 0px;
}

#HeadEmpresaPill #EmpresaText {
    padding-left: 0%;
    display: flex;
    align-items: center;
    padding: 4px 30px;
}
#HeadEmpresaPill #EmpresaText p{
    font-size: 18px !important;
    border-top: 2px solid white;
    padding-top: 15px;
    padding-bottom: 10px;
}
#HeadEmpresaPill #EmpresaLogo {
    min-height: 90px;
    border-right: none;
    border-bottom: none;
    justify-content: left;
    margin-bottom: 0px;
    padding: 0 20px;
}
#HeadEmpresaPill img {
    width: 90%;
    max-width: 200px;
}



#HeroInterior{
    
    
}
/*///////////////////////////////*/
/*///////////////////////////////*/
/*///////////////////////////////*/
/*///////////////////////////////*/
/*///////////////////////////////*/
/*///////////////////////////////*/

#PHomeBoxEmpresa .EmpresaPill img {
    max-width: 280px;
}

#PHomeBoxEmpresa #EmpresaLogo{
    border-right: 2px solid;
    /*border-right: 2px solid white;*/
}
#PHomeBoxEmpresa #EmpresaText {
    padding-left: 5%;
}
#PHomeBoxEmpresa #EmpresaText p {
    font-size: 34px !important;
}

/*///////////////////////////////*/
/*///////////////////////////////*/
/*///////////////////////////////*/
/*///////////////////////////////*/
/*///////////////////////////////*/
/*///////////////////////////////*/

@media screen and (max-width: 990px) {
    .EmpresaPill {
        /*padding: 10px 10px;*/
        /*min-height: 140px;*/
    }
    #EmpresaLogo{
        /*min-height: 120px;*/
        border-right: none;
        /*border-bottom: 2px solid white;*/
    }
    #EmpresaText{
        /*padding: 20px 0;*/
        padding: 0 0;
        text-align: center;
        
    }
    #EmpresaText p {
        font-size: 16px !important;
        margin-left: auto;
        margin-right: auto;
    }
    
    .wrap-map {
        border-left: none;
        border-top: 1px solid rgb(255 255 255 / 23%);
        padding-top: 20px;
        margin-top: 20px;
    }
    
    
    
    
    #PHomeBoxEmpresa .EmpresaPill img {
        max-width: 200px;
        margin: auto;
    }

    #PHomeBoxEmpresa #EmpresaLogo{
        border-right: none;
    }
    #PHomeBoxEmpresa #EmpresaText {
        padding-left: 0;
    }
    #PHomeBoxEmpresa #EmpresaText p {
        font-size: 22px !important;
    }

    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
}


