body,html{
    margin: 0px;
    padding: 0px;
    /*background-color: #162b88;*/
}

/***************WINDOW 1****************/

#diferenciadorpaceps-content{
	position: relative;
    width: 100%;
    max-width: 1024px;
    height: auto;
    margin: 0px auto;
    padding: 0px;
    display: block;
    box-sizing: border-box;
    /*border: #000 solid 1px;*/
}

#dpe-window-1,#dpe-window-2{
    position: relative;
    margin: 0px;
    padding: 0px;

    width: 100%;
    height: auto;
    box-sizing: border-box;
}
#dpe-window-2{
    min-height: 700px;
}
.dpe-window-off{
    opacity: 0;
    visibility: hidden;
    top: 20px;
    transition: opacity 0.25s, visibility 0.25s, top 0.25s;
    -webkit-transition: opacity 0.25s, visibility 0.25s, top 0.25s;
}
.dpe-window-offf{
    top: 20px;
    display: none;
}
.dpe-window-on{
    opacity: 1;
    visibility: visible;
    top: 0px;
    transition: opacity 0.5s, visibility 0s, top 0.25s;
    -webkit-transition: opacity 0.5s, visibility 0s, top 0.25s;
}
.dpe-window-onn{
    top: 20px;
    display: block;
}

.dpe-main-title{
    position: relative;
    width: auto;
    margin: 0px;
    padding: 0px;
    border: none;

    font-family: 'SuraSans-Negrita';
    font-size: 25px;
    font-weight: normal;
    color: #0033A0;
    text-align: left;
    line-height: normal;
    margin-bottom: 20px;
    margin-top: 40px;
}
.dpe-text{
    position: relative;
    width: auto;
    margin: 0px;
    padding: 0px;
    border: none;

    font-family: 'SuraSans-Regular';
    font-size: 16px;
    font-weight: normal;
    color: #53565A;
    text-align: left;
    line-height: normal;
}

.dpe-buscador-container{
    position: relative;
    width: 750px;
    height: auto;
    margin: 0px auto;
    padding: 0px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
}

.dpe-buscador-row1{
    position: relative;
    width: 50%;
    height: auto;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-right: 15px;
    box-sizing: border-box;
}
.dpe-ciudad-label{
    position: relative;
    width: auto;
    margin: 0px;
    padding: 0px;
    border: none;

    font-family: 'SuraSans-Regular';
    font-size: 14px;
    font-weight: normal;
    color: #004898;
    text-align: left;
    line-height: normal;
    margin-bottom: 10px;
}

.dpe-ciudad-input-cont{
    position: relative;
    width: 100%;
    height: auto;
    margin: 0px;
    padding: 0px;
    min-height: 40px;
}
.dpe-ciudad-input{
    position: absolute;
    width: 100%;
    height: auto;
    margin: 0px;
    padding: 0px;
    border-radius: 25px;
    background-color: #FFFFFF;

    box-shadow: 0px 0px 3px 1px rgba(0,0,0,0.2);
    z-index: 10;
}
.dpe-ciudad-input-txt{
    position: relative;
    width: 100%;
    height: 40px;
    margin: 0px;
    padding: 0px 15px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dpe-ciudad-input-txt input[type=text]{
    position: relative;
    background-color: rgba(0,0,0,0);
    border: none;
    height: 25px;
    width: 100%;
    width: calc(100% - 25px);
    width: -moz-calc(100% - 25px);
    margin: 0px;
    padding: 0px 10px;

    font-family: 'SuraSans-Regular';
    font-size: 15px;
    color: #53565A;
    text-align: left;
    font-weight: normal;
    line-height: normal;
    outline: none;
    outline-width: 0;
    text-transform: capitalize;
}
#dpe-ciudad-value{
    position: absolute;
    visibility: hidden;
}
#dpe-ciudad-input-cancel{
    outline: none;
    outline-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border: none;
    background-color: rgba(0,0,0,0);
    cursor: pointer;
}
#dpe-ciudad-input-cancel i{
    color: #e8e7e7;
    font-size: 22px;
}
#dpe-ciudad-input-cancel i:hover{
    color: #adb5bd;
}
            
#dpe-ciudad-results{
    position: relative;
    width: 100%;
    height: auto;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    overflow-y: auto;
    scrollbar-color: #adb5bd #FFFFFF;
    scrollbar-width: thin;

    transform-origin: center 0%;
    -webkit-transform-origin: center 0%;
    -o-transform-origin: center 0%;
}
#dpe-ciudad-results::-webkit-scrollbar {
    width: 10px;
    background-color: #FFFFFF;
}
#dpe-ciudad-results::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #adb5bd;
}
.dpe-ciudad-results-off{
    max-height: 0px;
    opacity: 0;
    visibility: hidden;
    padding-bottom: 0px !important;
    transition: max-height 0.3s, opacity 0.3s, visibility 0.3s, padding 0.3s;
    -webkit-transition: max-height 0.3s, opacity 0.3s, visibility 0.3s, padding 0.3s;
}
.dpe-ciudad-results-on{
    max-height: 300px;
    opacity: 1;
    visibility: visible;
    padding-bottom: 10px !important;
    transition: max-height 0.3s, opacity 0.3s, visibility 0s, padding 0.3s;
    -webkit-transition: max-height 0.3s, opacity 0.3s, visibility 0s, padding 0.3s;
}
.dpe-ciudad-result{
    position: relative;
    width: 100%;
    height: auto;
    margin: 0px;
    padding: 0px 10px;
    box-sizing: border-box;
    display: block;
}
.dpe-ciudad-result-hidden{
    display: none;
}
.dpe-ciudad-result-visible{
    display: flex;
}
.dpe-ciudad-result p{
    position: relative;
    width: 100%;
    min-height: 40px;
    margin: 0px;
    padding: 5px 10px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;

    font-family: 'SuraSans-Regular';
    font-size: 15px;
    color: #53565A;
    text-align: left;
    font-weight: normal;
    line-height: normal;
    text-transform: capitalize;

    transition: background-color 0.2s;
    -webkit-transition: background-color 0.2s;
}
.dpe-ciudad-result p:hover{
    background-color: #f2f2f2;
    cursor: pointer;
}

.dpe-buscador-row2{
    position: relative;
    width: 50%;
    height: auto;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-left: 15px;
    box-sizing: border-box;
}
#dpe-beneficios-cont{
    position: relative;
    width: 100%;
    height: auto;
    margin: 0px;
    padding: 0px;
    display: block;
}
.dpe-beneficio{
    position: relative;
    width: 100%;
    height: auto;
    margin: 0px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    cursor: pointer;
    margin-bottom: 10px;
}
.dpe-beneficio-check{
    position: relative;
    width: 18px;
    height: 18px;
    box-sizing: border-box;
    border: #adb5bd solid 1px;
    border-radius: 2px;
    margin: 0px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: box-shadow 0.1s, border 0.1s, background-color 0.1s;
    -webkit-transition: box-shadow 0.1s, border 0.1s, background-color 0.1s;
}
.dpe-beneficio-check i{
    color: #FFFFFF;
    font-size: 13px;
}
.dpe-beneficio-check:active{
    box-shadow: 0px 0px 1px 2px #bfdeff;
}
.dpe-beneficio-checked .dpe-beneficio-check{
    background-color: #007bff;
    border: #007bff solid 1px;
}
.dpe-beneficio-label{
    margin: 0px;
    padding: 0px;
    position: relative;
    width: auto;
    margin: 0px;
    padding: 0px;
    border: none;

    font-family: 'SuraSans-Regular';
    font-size: 14px;
    font-weight: normal;
    color: #53565A;
    text-align: left;
    line-height: normal;
    margin-left: 5px;
}

#dpe-buscar-btn,#dpe-volver-btn{
    outline: none;
    outline-width: 0;
    width: auto;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;
    padding: 0px 25px;
    margin: 20px auto;

    font-family: 'SuraSans-Regular';
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
    font-weight: normal;
    line-height: normal;
    background-color: #0033A0;
    border: none;
    border-radius: 20px;

    transition: background-color 0.1s;
    -webkit-transition: background-color 0.1s;
}
#dpe-volver-btn{
    margin-bottom: 0px;
}
#dpe-buscar-btn i,#dpe-volver-btn i{
    font-size: 15px;
    margin-right: 8px;
}
#dpe-buscar-btn:hover,#dpe-volver-btn:hover{
    background-color: #002a85;
    cursor: pointer;
}

#dpe-resultados-container{
    position: relative;
    width: 750px;
    height: auto;
    margin: 0px auto;
    padding: 0px;
    box-sizing: border-box;
}

#dpe-resultados-alert,
#dpe-resultados-alert2{
    /*display: block;*/
    position: relative;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    text-align: center;
}
#dpe-resultados-alert > div,
#dpe-resultados-alert2 > div{
    position: relative;
    width: auto;
    margin: 0px auto;
    display: inline-flex;
    padding: 10px;
    border-radius: 4px;
    background-color: #e5eaf5;

    font-family: 'SuraSans-Regular';
    font-size: 16px;
    color: #0033A0;
    text-align: center;
    font-weight: normal;
    line-height: normal;
}
#dpe-resultados-alert > div > span,
#dpe-resultados-alert2 > div > span{
    position: relative;
    width: 20px;
    height: 20px;
    margin: 0px;
    padding: 0px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../images/info-icon.svg);
    margin-right: 15px;
}

#dpe-resultados-loader{
    position: relative;
    width: 40px;
    height: 40px;
    margin: 0px auto;
    padding: 0px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/cargador_v2g.gif);
}
#dpe-resultados-table{
    position: relative;
    width: 100%;
    height: auto;
    margin: 0px auto;
    padding: 0px;
    display: block;
    overflow: hidden;
    box-shadow: 0px 2px 5px -3px rgba(0,0,0,0.7);
}
.dpe-resultados-header{
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    background-color: #004898;
    align-items: stretch;
    justify-content: center;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    border-radius: 10px 10px 0px 0px;
}
.dpe-resultados-title{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    width: 33.33%;
    margin: 0px;
    padding: 10px;
    box-sizing: border-box;

    font-family: 'SuraSans-Negrita';
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
    font-weight: normal;
    line-height: normal;

    border-right: #002752 solid 1px;
}
.dpe-resultados-header .dpe-resultados-title{
    border-right: none;
}

#dpe-resultados-body{
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.dpe-resultados-row{
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
#dpe-resultados-body .dpe-resultados-row:nth-child(odd){
    background-color: #FFFFFF;
}
#dpe-resultados-body .dpe-resultados-row:nth-child(even){
    background-color: #ecf0f1;
}
#dpe-resultados-body .dpe-resultados-row:last-child{
    border-radius: 0px 0px 10px 10px;
}
.dpe-resultados-row:hover{
    background-color: #e8e7e7;
}
.dpe-resultados-col{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    width: 33.33%;
    margin: 0px;
    padding: 10px;
    box-sizing: border-box;

    font-family: 'SuraSans-Regular';
    font-size: 16px;
    color: #53565A;
    text-align: center;
    font-weight: normal;
    line-height: normal;

    border-right: #e8e7e7 solid 1px;
}
.dpe-resultados-row .dpe-resultados-col{
    border-right: none;
}

.dpe-ver-servicios-btn{
    outline: none !important;
    outline-width: 0 !important;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;
    padding: 7px 15px;
    margin: 0px;

    font-family: 'SuraSans-Regular';
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
    font-weight: normal;
    line-height: normal;
    background-color: #007bff;
    border: none;
    border-radius: 15px;

    transition: background-color 0.1s;
    -webkit-transition: background-color 0.1s;
}
.dpe-ver-servicios-btn:hover{
    background-color: #0069d9;
    cursor: pointer;
    text-decoration: underline;
}

.dpe-resultados-off{
    display: none !important;
}
.dpe-resultados-on{
    display: block !important;
}

/****************************VENTANA 2*****************************/
#dpe-convenios-container-1,
#dpe-convenios-container-2,
#dpe-convenios-container-3,
#dpe-convenios-container-4{
    position: relative;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    margin: 0px;
    padding: 0px;

    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
}

.dpe-convenios-container-off{
    display: none;
}
.dpe-convenios-container-on{
    display: flex;
}

.dpe-convenio-row{
    position: relative;
    width: 47%;
    height: 150px;
    padding: 0px;
    margin: 0px;
    margin-left: 1.5%;
    margin-right: 1.5%;
    margin-bottom: 20px;
    box-sizing: border-box;
    display: block;
    overflow: hidden;
    border: #e0e5ea solid 1px;
}
.dpe-convenio-wrap{
    position: absolute;
    width: 100%;
    height: auto;
    min-height: 150px;
    
    padding: 10px;
    margin: 0px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    border-radius: 4px;
    border: none;
    background: #FFFFFF;

    transition: background 0.2s, box-shadow 0.2s;
    -webkit-transition: background 0.2s, box-shadow 0.2s;
}
.dpe-convenio-row-hover{
    overflow: initial;
    border: none;
}
.dpe-convenio-row-hover .dpe-convenio-wrap{
    border: #e0e5ea solid 1px;
    z-index: 100;
    /*background: linear-gradient(to bottom, #FFFFFF, #F3F3F3);
    background: -webkit-linear-gradient(to bottom, #FFFFFF, #F3F3F3);
    background: -o-linear-gradient(to bottom, #FFFFFF, #F3F3F3);*/
    box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.4);
    cursor: default;
}
.dpe-convenio-row-hidden{
    display: none !important;
}
.dpe-convenio-col1{
    position: relative;
    width: 100%;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
}
.dpe-convenio-col1-img{
    position: relative;
    width: 40px;
    height: 40px;
    margin: 0px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dpe-convenio-col1-img img{
    display: block;
    margin: 0px;
    width: 100%;
    height: auto;
}
.dpe-convenio-col1-name{
    width: 100%;
    width: calc(100% - 40px);
    width: -moz-calc(100% - 40px);
    position: relative;
    display: flex;
    margin: 0px;
    padding: 0px;
    padding-left: 10px;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;

    font-family: 'SuraSans-Regular';
    font-size: 16px;
    color: #0033A0;
    text-align: left;
    font-weight: normal;
    line-height: normal;
}
.dpe-convenio-col2{
    position: relative;
    width: 100%;
    margin: 0px;
    padding: 0px;
    margin-top: 10px;
    height: auto;
    display: block;
}
.dpe-convenio-col2 p{
    margin: 0px;
    padding: 0px;
    font-family: 'SuraSans-Regular';
    font-size: 14px;
    color: #53565A;
    text-align: left;
    font-weight: normal;
    line-height: normal;
}
.dpe-convenio-col2 p span{
    font-family: 'SuraSans-Negrita';
}
.dpe-convenio-col2 p a{
    color: #0033A0 !important;
    text-decoration: none !important;
    font-family: 'SuraSans-Regular' !important;
    font-size: 14px !important;
}
.dpe-convenio-col2 p a:hover{
    text-decoration: underline !important;
}
.dpe-convenio-ver{
    width: 100%;
    margin: 0px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.dpe-convenio-ver button{
    outline: none !important;
    outline-width: 0 !important;
    margin: 0px;
    padding: 0px 20px;
    width: auto;
    height: 25px;
    background-color: #007bff;
    border: none;

    font-family: 'SuraSans-Regular';
    font-size: 15px;
    color: #FFFFFF;
    text-align: center;
    font-weight: normal;
    line-height: 15px;
    border-radius: 12px;
    text-decoration: none;
}
.dpe-convenio-ver button:hover{
    background-color: #0069d9;
    cursor: pointer;
}

.dpe-convenio-vermas{
    position: absolute;
    height: 45px;
    left: 0px;
    top: 150px;
    top: calc(150px - 45px);
    top: -moz-calc(150px - 45px);
    background: rgba(255,255,255,0.5);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 30%);
    background: -moz-linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 30%);
    background: -webkit-linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 30%);
}
.dpe-convenio-vermas button{
    margin-right: 10px;
}
.dpe-convenio-vermas button:first-child{
    display: block;
}
.dpe-convenio-vermas button:last-child{
    display: none;
}

.dpe-convenio-vermenos{
    position: relative;
    margin-top: 10px;
    background: none;
    height: auto;
}
.dpe-convenio-vermenos button{
    margin-right: 0px;
}
.dpe-convenio-vermenos button:first-child{
    display: none;
}
.dpe-convenio-vermenos button:last-child{
    display: block;
}
.dpe-convenio-no-ver{
    display: none !important;
}