.logo-responsive {
    width: 60%;
    float: right;
    position: relative;
    top: -35px;
}
.logo-responsive img {
    width: 100%;
}
.dl-menuwrapper {
    width: 100%;
    max-width: 100%;
    float: left;
    position: relative;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
    z-index: 9;
    -webkit-perspective-origin: 50% 200%;
    -moz-perspective-origin: 50% 200%;
    perspective-origin: 50% 200%;
}

.dl-menuwrapper:first-child {
    margin-right: 0px;
}

.dl-menuwrapper button {
    background: #ccc;
    border: none;
    width: 48px;
    height: 45px;
    text-indent: -900em;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    outline: none;
}
.dl-menuwrapper button:hover,
.dl-menuwrapper button.dl-active,
.dl-menuwrapper ul {
    background: #aaa;
}
/*.dl-menuwrapper button:after {
    content: '';
    position: absolute;
    width: 68%;
    height: 5px;
    background: #fff;
    top: 10px;
    left: 16%;
    box-shadow:
        0 10px 0 #fff,
        0 20px 0 #fff;
}
*/
.dl-menuwrapper ul {
    padding: 0;
    list-style: none;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.dl-menuwrapper li {
    position: relative;
}

.dl-menuwrapper li a {
    display: block;
    position: relative;
    padding: 15px 20px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
    color: #fff;
    outline: none;
    font-family: 'montserrat';
}

.no-touch .dl-menuwrapper li a:hover {
    background: rgba(183, 183, 183, 0.41);
}

.dl-menuwrapper li.dl-back > a {
    padding-left: 30px;
    background: rgba(0,0,0,0.1);
}

.dl-menuwrapper li.dl-back:after,
.dl-menuwrapper li > a:not(:only-child):after {
    position: absolute;
    top: 0;
    line-height: 50px;
    font-family: 'gotham';
    speak: none;
    -webkit-font-smoothing: antialiased;
}

.dl-menuwrapper li.dl-back:after {
    left: 10px;
    color: rgba(212,204,198,0.3);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
}

.dl-menuwrapper li > a:after {
    right: 10px;
    color: rgba(0,0,0,0.15);
}

.dl-menuwrapper .dl-menu {
    margin: 5px 0 0 0;
    position: absolute;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

.dl-menuwrapper .dl-menu.dl-menu-toggle {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.dl-menuwrapper .dl-menu.dl-menuopen {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
}

/* Hide the inner submenus */
.dl-menuwrapper li .dl-submenu {
    display: none;
}
i.fa.fa-angle-right {
    position: relative;
    left: 30px;
}
i.fa.fa-angle-left {
    position: relative;
    padding-right: 20px;
}

/*
When a submenu is openend, we will hide all li siblings.
For that we give a class to the parent menu called "dl-subview".
We also hide the submenu link.
The opened submenu will get the class "dl-subviewopen".
All this is done for any sub-level being entered.
*/
.dl-menu.dl-subview li,
.dl-menu.dl-subview li.dl-subviewopen > a,
.dl-menu.dl-subview li.dl-subview > a {
    display: none;
}

.dl-menu.dl-subview li.dl-subview,
.dl-menu.dl-subview li.dl-subview .dl-submenu,
.dl-menu.dl-subview li.dl-subviewopen,
.dl-menu.dl-subview li.dl-subviewopen > .dl-submenu,
.dl-menu.dl-subview li.dl-subviewopen > .dl-submenu > li {
    display: block;
}

/* Dynamically added submenu outside of the menu context */
.dl-menuwrapper > .dl-submenu {
    position: absolute;
    width: 100%;
    top: 50px;
    left: 0;
    margin: 0;
}

/* Animation classes for moving out and in */

.dl-menu.dl-animate-out-1 {
    -webkit-animation: MenuAnimOut1 0.4s;
    -moz-animation: MenuAnimOut1 0.4s;
    animation: MenuAnimOut1 0.4s;
}

.dl-menu.dl-animate-out-2 {
    -webkit-animation: MenuAnimOut2 0.3s ease-in-out;
    -moz-animation: MenuAnimOut2 0.3s ease-in-out;
    animation: MenuAnimOut2 0.3s ease-in-out;
}

.dl-menu.dl-animate-out-3 {
    -webkit-animation: MenuAnimOut3 0.4s ease;
    -moz-animation: MenuAnimOut3 0.4s ease;
    animation: MenuAnimOut3 0.4s ease;
}

.dl-menu.dl-animate-out-4 {
    -webkit-animation: MenuAnimOut4 0.4s ease;
    -moz-animation: MenuAnimOut4 0.4s ease;
    animation: MenuAnimOut4 0.4s ease;
}

.dl-menu.dl-animate-out-5 {
    -webkit-animation: MenuAnimOut5 0.4s ease;
    -moz-animation: MenuAnimOut5 0.4s ease;
    animation: MenuAnimOut5 0.4s ease;
}

@-webkit-keyframes MenuAnimOut1 {
    50% {
        -webkit-transform: translateZ(-250px) rotateY(30deg);
    }
    75% {
        -webkit-transform: translateZ(-372.5px) rotateY(15deg);
        opacity: .5;
    }
    100% {
        -webkit-transform: translateZ(-500px) rotateY(0deg);
        opacity: 0;
    }
}

@-webkit-keyframes MenuAnimOut2 {
    100% {
        -webkit-transform: translateX(-100%);
        opacity: 0;
    }
}

@-webkit-keyframes MenuAnimOut3 {
    100% {
        -webkit-transform: translateZ(300px);
        opacity: 0;
    }
}

@-webkit-keyframes MenuAnimOut4 {
    100% {
        -webkit-transform: translateZ(-300px);
        opacity: 0;
    }
}

@-webkit-keyframes MenuAnimOut5 {
    100% {
        -webkit-transform: translateY(40%);
        opacity: 0;
    }
}

@-moz-keyframes MenuAnimOut1 {
    50% {
        -moz-transform: translateZ(-250px) rotateY(30deg);
    }
    75% {
        -moz-transform: translateZ(-372.5px) rotateY(15deg);
        opacity: .5;
    }
    100% {
        -moz-transform: translateZ(-500px) rotateY(0deg);
        opacity: 0;
    }
}

@-moz-keyframes MenuAnimOut2 {
    100% {
        -moz-transform: translateX(-100%);
        opacity: 0;
    }
}

@-moz-keyframes MenuAnimOut3 {
    100% {
        -moz-transform: translateZ(300px);
        opacity: 0;
    }
}

@-moz-keyframes MenuAnimOut4 {
    100% {
        -moz-transform: translateZ(-300px);
        opacity: 0;
    }
}

@-moz-keyframes MenuAnimOut5 {
    100% {
        -moz-transform: translateY(40%);
        opacity: 0;
    }
}

@keyframes MenuAnimOut1 {
    50% {
        transform: translateZ(-250px) rotateY(30deg);
    }
    75% {
        transform: translateZ(-372.5px) rotateY(15deg);
        opacity: .5;
    }
    100% {
        transform: translateZ(-500px) rotateY(0deg);
        opacity: 0;
    }
}

@keyframes MenuAnimOut2 {
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes MenuAnimOut3 {
    100% {
        transform: translateZ(300px);
        opacity: 0;
    }
}

@keyframes MenuAnimOut4 {
    100% {
        transform: translateZ(-300px);
        opacity: 0;
    }
}

@keyframes MenuAnimOut5 {
    100% {
        transform: translateY(40%);
        opacity: 0;
    }
}

.dl-menu.dl-animate-in-1 {
    -webkit-animation: MenuAnimIn1 0.3s;
    -moz-animation: MenuAnimIn1 0.3s;
    animation: MenuAnimIn1 0.3s;
}

.dl-menu.dl-animate-in-2 {
    -webkit-animation: MenuAnimIn2 0.3s ease-in-out;
    -moz-animation: MenuAnimIn2 0.3s ease-in-out;
    animation: MenuAnimIn2 0.3s ease-in-out;
}

.dl-menu.dl-animate-in-3 {
    -webkit-animation: MenuAnimIn3 0.4s ease;
    -moz-animation: MenuAnimIn3 0.4s ease;
    animation: MenuAnimIn3 0.4s ease;
}

.dl-menu.dl-animate-in-4 {
    -webkit-animation: MenuAnimIn4 0.4s ease;
    -moz-animation: MenuAnimIn4 0.4s ease;
    animation: MenuAnimIn4 0.4s ease;
}

.dl-menu.dl-animate-in-5 {
    -webkit-animation: MenuAnimIn5 0.4s ease;
    -moz-animation: MenuAnimIn5 0.4s ease;
    animation: MenuAnimIn5 0.4s ease;
}

@-webkit-keyframes MenuAnimIn1 {
    0% {
        -webkit-transform: translateZ(-500px) rotateY(0deg);
        opacity: 0;
    }
    20% {
        -webkit-transform: translateZ(-250px) rotateY(30deg);
        opacity: 0.5;
    }
    100% {
        -webkit-transform: translateZ(0px) rotateY(0deg);
        opacity: 1;
    }
}

@-webkit-keyframes MenuAnimIn2 {
    0% {
        -webkit-transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0px);
        opacity: 1;
    }
}

@-webkit-keyframes MenuAnimIn3 {
    0% {
        -webkit-transform: translateZ(300px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateZ(0px);
        opacity: 1;
    }
}

@-webkit-keyframes MenuAnimIn4 {
    0% {
        -webkit-transform: translateZ(-300px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateZ(0px);
        opacity: 1;
    }
}

@-webkit-keyframes MenuAnimIn5 {
    0% {
        -webkit-transform: translateY(40%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        opacity: 1;
    }
}

@-moz-keyframes MenuAnimIn1 {
    0% {
        -moz-transform: translateZ(-500px) rotateY(0deg);
        opacity: 0;
    }
    20% {
        -moz-transform: translateZ(-250px) rotateY(30deg);
        opacity: 0.5;
    }
    100% {
        -moz-transform: translateZ(0px) rotateY(0deg);
        opacity: 1;
    }
}

@-moz-keyframes MenuAnimIn2 {
    0% {
        -moz-transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        -moz-transform: translateX(0px);
        opacity: 1;
    }
}

@-moz-keyframes MenuAnimIn3 {
    0% {
        -moz-transform: translateZ(300px);
        opacity: 0;
    }
    100% {
        -moz-transform: translateZ(0px);
        opacity: 1;
    }
}

@-moz-keyframes MenuAnimIn4 {
    0% {
        -moz-transform: translateZ(-300px);
        opacity: 0;
    }
    100% {
        -moz-transform: translateZ(0px);
        opacity: 1;
    }
}

@-moz-keyframes MenuAnimIn5 {
    0% {
        -moz-transform: translateY(40%);
        opacity: 0;
    }
    100% {
        -moz-transform: translateY(0);
        opacity: 1;
    }
}

@keyframes MenuAnimIn1 {
    0% {
        transform: translateZ(-500px) rotateY(0deg);
        opacity: 0;
    }
    20% {
        transform: translateZ(-250px) rotateY(30deg);
        opacity: 0.5;
    }
    100% {
        transform: translateZ(0px) rotateY(0deg);
        opacity: 1;
    }
}

@keyframes MenuAnimIn2 {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

@keyframes MenuAnimIn3 {
    0% {
        transform: translateZ(300px);
        opacity: 0;
    }
    100% {
        transform: translateZ(0px);
        opacity: 1;
    }
}

@keyframes MenuAnimIn4 {
    0% {
        transform: translateZ(-300px);
        opacity: 0;
    }
    100% {
        transform: translateZ(0px);
        opacity: 1;
    }
}

@keyframes MenuAnimIn5 {
    0% {
        transform: translateY(40%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-1 {
    -webkit-animation: SubMenuAnimIn1 0.4s ease;
    -moz-animation: SubMenuAnimIn1 0.4s ease;
    animation: SubMenuAnimIn1 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-2 {
    -webkit-animation: SubMenuAnimIn2 0.3s ease-in-out;
    -moz-animation: SubMenuAnimIn2 0.3s ease-in-out;
    animation: SubMenuAnimIn2 0.3s ease-in-out;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-3 {
    -webkit-animation: SubMenuAnimIn3 0.4s ease;
    -moz-animation: SubMenuAnimIn3 0.4s ease;
    animation: SubMenuAnimIn3 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-4 {
    -webkit-animation: SubMenuAnimIn4 0.4s ease;
    -moz-animation: SubMenuAnimIn4 0.4s ease;
    animation: SubMenuAnimIn4 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-5 {
    -webkit-animation: SubMenuAnimIn5 0.4s ease;
    -moz-animation: SubMenuAnimIn5 0.4s ease;
    animation: SubMenuAnimIn5 0.4s ease;
}

@-webkit-keyframes SubMenuAnimIn1 {
    0% {
        -webkit-transform: translateX(50%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0px);
        opacity: 1;
    }
}

@-webkit-keyframes SubMenuAnimIn2 {
    0% {
        -webkit-transform: translateX(100%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0px);
        opacity: 1;
    }
}

@-webkit-keyframes SubMenuAnimIn3 {
    0% {
        -webkit-transform: translateZ(-300px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateZ(0px);
        opacity: 1;
    }
}

@-webkit-keyframes SubMenuAnimIn4 {
    0% {
        -webkit-transform: translateZ(300px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateZ(0px);
        opacity: 1;
    }
}

@-webkit-keyframes SubMenuAnimIn5 {
    0% {
        -webkit-transform: translateZ(-200px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateZ(0);
        opacity: 1;
    }
}

@-moz-keyframes SubMenuAnimIn1 {
    0% {
        -moz-transform: translateX(50%);
        opacity: 0;
    }
    100% {
        -moz-transform: translateX(0px);
        opacity: 1;
    }
}

@-moz-keyframes SubMenuAnimIn2 {
    0% {
        -moz-transform: translateX(100%);
        opacity: 0;
    }
    100% {
        -moz-transform: translateX(0px);
        opacity: 1;
    }
}

@-moz-keyframes SubMenuAnimIn3 {
    0% {
        -moz-transform: translateZ(-300px);
        opacity: 0;
    }
    100% {
        -moz-transform: translateZ(0px);
        opacity: 1;
    }
}

@-moz-keyframes SubMenuAnimIn4 {
    0% {
        -moz-transform: translateZ(300px);
        opacity: 0;
    }
    100% {
        -moz-transform: translateZ(0px);
        opacity: 1;
    }
}

@-moz-keyframes SubMenuAnimIn5 {
    0% {
        -moz-transform: translateZ(-200px);
        opacity: 0;
    }
    100% {
        -moz-transform: translateZ(0);
        opacity: 1;
    }
}

@keyframes SubMenuAnimIn1 {
    0% {
        transform: translateX(50%);
        opacity: 0;
    }
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

@keyframes SubMenuAnimIn2 {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

@keyframes SubMenuAnimIn3 {
    0% {
        transform: translateZ(-300px);
        opacity: 0;
    }
    100% {
        transform: translateZ(0px);
        opacity: 1;
    }
}

@keyframes SubMenuAnimIn4 {
    0% {
        transform: translateZ(300px);
        opacity: 0;
    }
    100% {
        transform: translateZ(0px);
        opacity: 1;
    }
}

@keyframes SubMenuAnimIn5 {
    0% {
        transform: translateZ(-200px);
        opacity: 0;
    }
    100% {
        transform: translateZ(0);
        opacity: 1;
    }
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-1 {
    -webkit-animation: SubMenuAnimOut1 0.4s ease;
    -moz-animation: SubMenuAnimOut1 0.4s ease;
    animation: SubMenuAnimOut1 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-2 {
    -webkit-animation: SubMenuAnimOut2 0.3s ease-in-out;
    -moz-animation: SubMenuAnimOut2 0.3s ease-in-out;
    animation: SubMenuAnimOut2 0.3s ease-in-out;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-3 {
    -webkit-animation: SubMenuAnimOut3 0.4s ease;
    -moz-animation: SubMenuAnimOut3 0.4s ease;
    animation: SubMenuAnimOut3 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-4 {
    -webkit-animation: SubMenuAnimOut4 0.4s ease;
    -moz-animation: SubMenuAnimOut4 0.4s ease;
    animation: SubMenuAnimOut4 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-5 {
    -webkit-animation: SubMenuAnimOut5 0.4s ease;
    -moz-animation: SubMenuAnimOut5 0.4s ease;
    animation: SubMenuAnimOut5 0.4s ease;
}

@-webkit-keyframes SubMenuAnimOut1 {
    0% {
        -webkit-transform: translateX(0%);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(50%);
        opacity: 0;
    }
}

@-webkit-keyframes SubMenuAnimOut2 {
    0% {
        -webkit-transform: translateX(0%);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(100%);
        opacity: 0;
    }
}

@-webkit-keyframes SubMenuAnimOut3 {
    0% {
        -webkit-transform: translateZ(0px);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateZ(-300px);
        opacity: 0;
    }
}

@-webkit-keyframes SubMenuAnimOut4 {
    0% {
        -webkit-transform: translateZ(0px);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateZ(300px);
        opacity: 0;
    }
}

@-webkit-keyframes SubMenuAnimOut5 {
    0% {
        -webkit-transform: translateZ(0);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateZ(-200px);
        opacity: 0;
    }
}

@-moz-keyframes SubMenuAnimOut1 {
    0% {
        -moz-transform: translateX(0%);
        opacity: 1;
    }
    100% {
        -moz-transform: translateX(50%);
        opacity: 0;
    }
}

@-moz-keyframes SubMenuAnimOut2 {
    0% {
        -moz-transform: translateX(0%);
        opacity: 1;
    }
    100% {
        -moz-transform: translateX(100%);
        opacity: 0;
    }
}

@-moz-keyframes SubMenuAnimOut3 {
    0% {
        -moz-transform: translateZ(0px);
        opacity: 1;
    }
    100% {
        -moz-transform: translateZ(-300px);
        opacity: 0;
    }
}

@-moz-keyframes SubMenuAnimOut4 {
    0% {
        -moz-transform: translateZ(0px);
        opacity: 1;
    }
    100% {
        -moz-transform: translateZ(300px);
        opacity: 0;
    }
}

@-moz-keyframes SubMenuAnimOut5 {
    0% {
        -moz-transform: translateZ(0);
        opacity: 1;
    }
    100% {
        -moz-transform: translateZ(-200px);
        opacity: 0;
    }
}

@keyframes SubMenuAnimOut1 {
    0% {
        transform: translateX(0%);
        opacity: 1;
    }
    100% {
        transform: translateX(50%);
        opacity: 0;
    }
}

@keyframes SubMenuAnimOut2 {
    0% {
        transform: translateX(0%);
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes SubMenuAnimOut3 {
    0% {
        transform: translateZ(0px);
        opacity: 1;
    }
    100% {
        transform: translateZ(-300px);
        opacity: 0;
    }
}

@keyframes SubMenuAnimOut4 {
    0% {
        transform: translateZ(0px);
        opacity: 1;
    }
    100% {
        transform: translateZ(300px);
        opacity: 0;
    }
}

@keyframes SubMenuAnimOut5 {
    0% {
        transform: translateZ(0);
        opacity: 1;
    }
    100% {
        transform: translateZ(-200px);
        opacity: 0;
    }
}

/* No JS Fallback */
.no-js .dl-menuwrapper .dl-menu {
    position: relative;
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
}

.no-js .dl-menuwrapper li .dl-submenu {
    display: block;
}

.no-js .dl-menuwrapper li.dl-back {
    display: none;
}

.no-js .dl-menuwrapper li > a:not(:only-child) {
    background: rgba(0,0,0,0.1);
}

.no-js .dl-menuwrapper li > a:not(:only-child):after {
    content: '';
}

/* Colors for demos */

/* Demo 1 */
.demo-1 .dl-menuwrapper button {
    background: #26ae62;
}

.demo-1 .dl-menuwrapper button:hover,
.demo-1 .dl-menuwrapper button.dl-active,
.demo-1 .dl-menuwrapper ul {
    background: #108242;
}

/* Demo 2 */
.demo-2 .dl-menuwrapper button {
    background: #e86814;
}

.demo-2 .dl-menuwrapper button:hover,
.demo-2 .dl-menuwrapper button.dl-active,
.demo-2 .dl-menuwrapper ul {
    background: #D35400;
}

/* Demo 3 */
.demo-3 .dl-menuwrapper button {
    background: #08cbc4;
}

.demo-3 .dl-menuwrapper button:hover,
.demo-3 .dl-menuwrapper button.dl-active,
.demo-3 .dl-menuwrapper ul {
    background: #00b4ae;
}

/* Demo 4 */
.demo-4 .dl-menuwrapper button {
    background: #90b912;
}

.demo-4 .dl-menuwrapper button:hover,
.demo-4 .dl-menuwrapper button.dl-active,
.demo-4 .dl-menuwrapper ul {
    background: #79a002;
}

/* Demo 5 */
.demo-5 .dl-menuwrapper button {
    background: #744783;
}

.demo-5 .dl-menuwrapper button:hover,
.demo-5 .dl-menuwrapper button.dl-active,
.demo-5 .dl-menuwrapper ul {
    background: #643771;
}
.filtros_resp{
    display: none;
}
@media (min-width: 320px) and (max-width: 484px){
    .labels-content {

    position: relative;
    margin-top: 0 !important;
    width: 100%;
    height: auto;

}
    .logo-empresa {
    background: #fff;
    width: 240px;
    height: 210px;
    padding: 25px;
    border: 1px solid #dcdcdc;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    overflow: hidden;
    margin: auto;
}
    .center_modal_qr {
    width: 100%;
    float: none;
    margin: auto;
    text-align: center;
    height: 520px;
}
    .modal-body-qr .col-md-6 img {
    width: 100%;
    display: none;
}

.responsive_back_to_bag {
    display: block;
}
.back_details .col-md-12 {
    padding: 0!important;
}
.body_info_personal p {
    font-size: 14px;
    font-family: 'montserrat';
    color: #797979;
    font-weight: normal;
    word-wrap: break-word;
    float: left;
    width: 100%;
}
.div_data_photo_live {
    width: 100%;
    float: left;
}
.dsp_none_respo {
    display: none;
}
.back-register-divs {
    position: relative;
    width: 100%;
    height: auto;
    background: transparent;
}
.back-all-content-register {
    height: 100%;
    background: #000000b8;
    padding: 10px;
}
.back-confirmation {
    width: 100%;
    padding: 10px;
    height: 100%;
}
.padd_register {
    padding: 20px;
}
.back-confirmation .col-md-6 .back-white {
    padding: 30px 30px;
}
.w-table {
    display: table!important;
    width: 100%!important;
    height: 100%!important;
    padding: 10px!important;
}
.timeline_title {
    color: #ffffff!important;
    text-align: center!important;
    font-weight: 100!important;
    letter-spacing: 1px!important;
    font-size: 25px!important;
    width: 100%!important;
}
.w-table-cell {
    display: table-cell!important;
    height: auto!important;
    vertical-align: top!important;
}
.timeline_card {
    position: relative;
    width: 100%!important;
    height: 400px;
    background-color: #fff;
    margin: 30px auto;
    padding: 20px;
    overflow: hidden;
    box-shadow: 0 9px 20px 0px rgba(133, 144, 166, 0.5);
}
.timeline_label {
    cursor: pointer!important;
    position: relative!important;
    width: 20%!important;
    text-align: right!important;
    color: #909090!important;
    font-weight: 100!important;
    text-transform: uppercase!important;
    padding-right: 1%!important;
    letter-spacing: 1px!important;
    float: left!important;
    font-size: 11px!important;
    font-family: 'montserrat'!important;
}
.chat_body_back {
    background: #fff;
    padding: 15px;
    border: 1px solid #e4e4e4;
    height: auto;
}
.user-guide__close:before {
    right: 39px!important;
    -webkit-transform: rotate(45deg)!important;
    transform: rotate(45deg)!important;
}
.message-wrap.col-md-6 {
    padding: 0!important;
}
.timeline_notmore {
    position: absolute;
    top: 360px!important;
    float: none;
    margin: auto;
}
.timeline_text a {
    color: #a62a2c;
    font-size: 14px;
    position: relative;
    top: -110px!important;
    text-decoration: none;
    font-weight: bold;
    z-index: 99999;
}
section.chat-content {
    height: auto;
    background: #fcfcfc;
    padding: 30px 10px;
}
.panel-body {
    padding: 15px !important;
}
.chat_body_back .conversation-wrap {
    height: 390px;
    overflow-y: scroll;
    float: left;
    border: 1px solid #e4e4e4;
    margin-bottom: 30px;
    z-index: 8;
    padding: 0!important;
}
.chat_body_back .msg-wrap.msgRecived {
    background: #fff;
    border: 1px solid #e4e4e4;
    padding: 20px;
    overflow-y: scroll;
    height: 340px;
    width: 100%;
}
.chat-content .col-md-4 {
    padding: 0!important;
}
.logo-responsive {
    width: 50%;
    float: right;
    position: relative;
    top: -40px;
    left : -10px;
    z-index: 9;
}
.notificaciones_tag {
    width: 3%;
    float: left;
    position: absolute;
    top: -5px;
    left: 30%;
    height: 100%;
    z-index: 9;
}

.outplacement_rep {
    width: 3%;
    float: left;
    position: absolute;
    top: 10px;
    left: 22%;
    height: 100%;
    z-index: 9;
}

.items_menu_log_noti {
    width: 100%!important;
    display: block!important;
}
.notification {
    display: inline-block;
    position: relative;
    top: 12px;
    left: 0!important;
    height: 30px;
    padding: 0.6em;
    background: #FFFFFF;
    border-radius: 0.2em;
    font-size: 1.3em;
}
.barra_progreso_info {
    width: 100%;
    float: right;
    position: relative;
    margin-bottom: 30px;
}
.barra_progreso_info .progress {
    width: 70%;
    float: right;
    padding: 3px;
    box-shadow: none;
    background: #e4e4e4;
    border-radius: 10px;
}
.minisitio_empresas {
    background: #fcfcfc;
    padding: 20px;
    height: auto;
}
.bodytab2 .historia {
    width: 100%;
    position: relative;
    height: 100%;
    float: none;
    top: 0;
}
.panel_info_empresa {
    width: 100%;
    height: 150px;
    float: none;
}
.valores .m-btmm {
    margin-bottom: 10px;
    padding: 0!important;
    height: auto;
}
.back-body-empresa .col-md-9 {
    padding: 0!important;
}
.header-content .header-img {
    width: 100%;
    float: none;
    margin: auto;
    text-align: center;
    height: 51px;
}
section.menu-header {
    display: block;
    position: relative;
    height: auto;
}
.header-content .content-right {
    width: 100%;
    float: left;
    height: 71px;
}
.header-content {
    display: block;
    width: 100%;
    position: relative;
    z-index: 9;
    background: #fff;
    height: 122px;
    -webkit-box-shadow: 0px 4px 16px -4px rgba(0,0,0,1);
    -moz-box-shadow: 0px 4px 16px -4px rgba(0,0,0,1);
    box-shadow: 0px 4px 16px -4px rgba(0,0,0,1);
}
.header-img .feria {
    float: none;
    padding: 22px 0;
}
#dropdown_head_ingreso ul {
    position: absolute;
    top: 100%;
    right: 0px;
    left: 0;
    width: 230px;
    padding: 5px 0px;
    display: none;
    background: #fff;
    border: 1px solid #e4e4e4;
    z-index: 9;
    list-style: none;
}
.img-pais img {
    width: 18px;
}
#dropdown_head_regis ul {
    position: absolute;
    top: 100%;
    right: 0px;
    left: -50px;
    width: 230px;
    padding: 5px 0px;
    display: none;
    background: #fff;
    border: 1px solid #e4e4e4;
    z-index: 9;
    list-style: none;
}
.btn-login {
    width: 100%;
    float: none;
    padding: 0;
    position: relative;
    text-align: center;
    top: 15px;
    margin: auto;
    margin-bottom: 10px;
}
.btn-login-qmcv {
    width: 100%;
    float: none;
    padding: 0;
    position: relative;
    text-align: center;
    top: 15px;
    margin: auto;
    margin-bottom: 10px;
}
.content_login_candidato h1 {
    font-size: 22px;
    font-family: 'montserrat';
    font-weight: 600;
    color: #fff;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}
.empresas_desta {
    background: #fcfcfc;
    padding: 5px;
    height: auto;
}
.content_login_candidato {
    width: 95%;
    float: none;
    margin: auto;
    position: relative;
    padding-top: 110px;
}
.back_opacity {
    background: #00000075;
    width: 100%;
    float: none;
    margin: auto;
    height: auto;
    position: relative;
    padding: 60px 30px;
}
.header-content-log {
    display: none;
}
.filtros_deskt {
    display: none;
}
.padd_sides .btn-group-justified {
    display: inline-block;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    width: 100%;
    float: left;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0;
    width: 100%;
    float: left;
}
.btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    width: 100%;
    float: left;
}
.menu-responsive {
    display: block;
}
.cover-jobs {
    display: none;
}
.filtros_resp {
    display: block;
    position: relative;
    z-index: 9;
}
.filtros_resp p {
    font-size: 14px;
    font-family: 'montserrat';
    text-align: center;
}
.content-not-found {
    width: 100%;
    float: none;
    position: relative;
    margin-top: 0px;
}
.plaza-not-found {
    height: 100%;
    padding: 20px;
    background: url(../images/cover_plaza_not_found.png);
    background-size: cover;
    background-repeat: no-repeat;
}
section.body_all_jobs {
    position: relative;
    padding: 10px;
    height: auto;
    background: #fcfcfc;
}
.padd_jobs {
    padding: 10px;
    display: block;
    border-radius: 0;
    height: auto;
}
.content-not-found h1 {
    font-family: 'montserrat-bold';
    font-size: 84px;
    color: #ffffff8a;
}
.content-not-found h2 {
    font-size: 20px;
    font-family: 'montserrat-bold';
    text-transform: uppercase;
    color: #fff;
}
.content-not-found h3 {
    font-family: 'montserrat-bold';
    color: #fff;
    font-size: 14px;
}
.contenedor_midd_complete .progress_process .bar {
    position: relative;
    width: 5px;
    height: 6px;
    top: -1px;
    margin-left: -5px;
    margin-right: -5px;
    border-left: none;
    border-right: none;
    border-radius: 0;
    float: none;
}
.paso_stage_responsive {
    display: block;
    padding: 10px;
}
.paso_stage_responsive h1 {
    font-family: 'montserrat-bold';
    font-size: 16px;
    text-align: left;
    margin: 0!important;
}
.paso_stage_responsive h2 {
    font-family: 'montserrat-bold';
    font-size: 14px;
    text-align: left;
    margin: 0!important;
}
.paso_stage_responsive p{
    font-family: 'montserrat';
    font-size: 12px;
    text-align: left;
}
.plaza_alert_success .paso_stage_responsive {
    display: none;
}
.plaza_alert_denied .paso_stage_responsive {
    display: none;
}
.section_miperfil {
    background: #fcfcfc;
    padding: 20px;
}
.edit_info_link {
    cursor: pointer;
    float: right;
    position: relative;
    right: 0;
    top: 0;
}
.contenedor_perfil .edit_info_link {
    cursor: pointer;
    float: right;
    position: absolute;
    right: 0;
    top: 0;
}
.diaedu {
    width: 29%;
    float: left;
    margin-right: 14px;
}
.mesedu {
    width: 29%;
    float: left;
    margin-right: 14px;
}
.body_form_academicos .col-md-7 {
    padding: 0!important;
}
.body_form_academicos .col-md-5 {
    padding: 0!important;
}
.agr_edu {
    width: 100%;
    background: transparent;
    border: 1px solid #fd4b4b;
    color: #fd4b4b;
    padding: 9px;
    font-family: 'montserrat';
    font-size: 12px;
    margin-bottom: 10px;
    float: left;
    margin: 0px 0px 10px;
}
.academicos_info_unlive .btn-update-info {
    margin-bottom: 10px;
    width: 100%;
    float: left;
    margin: 0 0 10px;
}
.academicos_info_unlive .btn-cancel-info {
    margin-bottom: 10px;
    width: 100%;
    float: left;
}
.diajob {
    width: 29%;
    float: left;
    margin-right: 14px;
}
.mesejob {
    width: 29%;
    float: left;
    margin-right: 14px;
}
.body_detalles_edition .col-md-5{
    padding: 0!important;
}
.body_detalles_edition .col-md-7{
    padding: 0!important;
}
.btns_actions {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 20px;
    margin-bottom: 20px;
}
.agr_lab {
    width: 100%;
    background: transparent;
    border: 1px solid #fd4b4b;
    color: #fd4b4b;
    padding: 9px;
    font-family: 'montserrat';
    font-size: 12px;
    margin-bottom: 10px;
    float: left;
    margin: 0 0 10px;
}
.laborales_info_unlive .btn-update-info {
    margin-bottom: 10px;
    width: 100%;
    float: left;
    margin: 0 0 10px;
}
.laborales_info_unlive .btn-cancel-info {
    margin-bottom: 10px;
    width: 100%;
    float: none;
}
.content_editable_referencias .col-md-5 {
    padding:0!important;
}
.content_editable_referencias .col-md-7 {
    padding:0!important;
}
.referencias_info_unlive .btn-cancel-info {
    margin-bottom: 10px;
    width: 100%;
    float: none;
}
.referencias_info_unlive .btn-update-info {
    margin-bottom: 10px;
    width: 100%;
    float: none;
    margin-right: 10px;
}
.agr_ref {
    width: 100%;
    background: transparent;
    border: 1px solid #fd4b4b;
    color: #fd4b4b;
    padding: 9px;
    font-family: 'montserrat';
    font-size: 12px;
    margin-bottom: 10px;
    margin: 0 0 10px;
}
.section_configuraciones {
    background: #fcfcfc;
    padding: 10px;
}
.back_categorias .edit_categorias a {
    position: absolute;
    float: right;
    right: 0;
    font-size: 14px;
    font-family: 'montserrat';
    text-decoration: underline!important;
    color: #fd4b4b;
    top: -20px;
}
.btn-update-categ {
    width: 100%;
    float: none;
    margin: 0 0 10px;
}
.btns_groups_categ .btn-cancel-categ button {
    background: #fd4b4b;
    border: none;
    width: 100%;
    padding: 10px;
    color: #fff;
    font-size: 12px;
    font-family: 'montserrat';
}
.contenedor_perfil .img-perfil {
    width: 100px;
    height: 100px;
    border: 2px solid #e1e1e1;
    overflow: hidden;
    float: none;
    margin: auto;
}
.div_data_photo_live .edit_info_link {
    cursor: pointer;
    float: none;
    position: relative;
    top: 0;
    width: 100%;
    margin: auto;
    text-align: center;
}
.div_data_photo_live .edit_info_link a {
    position: relative;
    float: none;
    text-align: center;
    right: 0;
    font-size: 14px;
    font-family: 'montserrat';
    text-decoration: underline!important;
    color: #fd4b4b;
    left: 0;
}
.btns_groups .btn-update-info {
    float: left;
    width: 100%;
    margin-bottom: 10px;
}
.btns_groups .btn-update-info button {
    background: #26ae61;
    border: none;
    width: 100%;
    padding: 10px;
    color: #fff;
    font-size: 12px;
    font-family: 'montserrat';
}
.btns_groups .btn-cancel-info {
    float: left;
    width: 100%;
}
.btns_groups .btn-cancel-info button {
    background: #fd4b4b;
    border: none;
    width: 100%;
    padding: 10px;
    color: #fff;
    font-size: 12px;
    font-family: 'montserrat';
}
.content_edit_info .cargo_title_edition input {
    padding: 7px;
    width: 100%;
    border: 1px solid #e0e0e0;
    font-family: 'montserrat';
    font-size: 12px;
}
.content_edit_info .col-md-12 .col-md-4 {
    padding: 0!important;
}
.div_data_photo_unlive .btns_groups .btn-update-info {
    float: left;
    width: 100%;
    margin-bottom: 10px;
}
.info_complete_perfil .col-md-9 {
    padding: 0!important;
}
.content-not-found p {
    font-size: 14px;
    font-family: 'montserrat';
    color: #fff;
}
.section_misprocesos {
    padding: 30px 15px;
}
.eliminar_plaza {
    width: 3%;
    float: right;
    position: relative;
    top: -20px;
}
.title_process {
    display: none;
}
.imagenempcolect {
    width: 85px;
    opacity: 0.2;
}
.data_plaza_flag {
    position: absolute;
    left: 40%;
    top: 16px;
    font-size: 30px;
    font-family: 'montserrat-bold';
    text-align: center;
}
.dl-menuwrapper .dl-menu.dl-menuopen {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
    background: #efefef;
}
.dl-menuwrapper li a {
    display: block;
    position: relative;
    padding: 15px 20px!important;
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
    color: #757575;
    outline: none;
    font-family: 'montserrat';
    border: none!important;
}
ul.dl-submenu {
    background: #efefef!important;
}
.dl-subviewopen select {
    width: 100%;
    border: 1px solid #0000001a;
    background: #efefef;
    font-size: 12px;
    font-family: 'montserrat';
    padding: 10px;
    height: auto;
    border-radius: 0!important;
    font-family: 'montserrat';
}
.padding-sub-menu {
    padding: 10px;
}
.padding-sub-menu input {
    width: 100%;
    border: 1px solid #0000001a;
    background: #efefef;
    font-size: 12px;
    font-family: 'montserrat';
    padding: 10px;
    border-radius: 0!important;
}
.dl-menuwrapper button:after {
    content: '';
    position: absolute;
    width: 68%;
    height: 5px;
    /* background: #fff0; */
    top: 10px;
    left: 16%;
    /* box-shadow: 0 10px 0 #fff0, 0 20px 0 #fff0; */
}
.clean-filters {
    background: #efefef!important;
    color: #757575!important;
    text-align: left;
}
section.plaza_detail {
    padding: 20px;
    background: #fcfcfc;
}
.pdd_suggest {
    padding: 0!important;
}
.info_empresa .col-md-12 {
    padding: 0!important;
}
.info_empresa .col-md-4 {
    padding: 0!important;
}
.nombre_plaza {
    text-align: center;
}
#denuncia{
    justify-content: center !important;
}
.botones_interactivos {
    height: 110px;
    width: 100%;
    text-align: center;
}
.aplicar_btn_dos {
    width: auto;
    float: none;
    /* position: relative; */
    top: 11px;
    margin-right: 0;
}
.share_friends {
    width: auto;
    float: none;
    position: relative;
    top: 30px;
}
.botones_interactivos_details {
    float: none;
    margin: auto;
    display: flex;
    text-align: center;
    align-content: flex-start;
    align-items: flex-end;
    justify-content: space-around;
    flex-direction: row;
}
.body_plaza .col-md-8 {
    padding: 0!important;
}
.btn_aplicar_plaza {
    width: 80%;
    float: none;
    margin: auto;
    text-align: center;
    position: relative;
    margin-top: 20px;
}
.footer-left p {
    font-size: 14px;
    color: #b7c0cd;
    font-family: 'montserrat';
    position: relative;
    margin-left: 0;
}
.footer-left {
    text-align: center;
}
.content-footer .footer-left img {
    width: 15px;
    float: none;
}
.footer-left p:hover {
    color: #fff;
    font-family: 'montserrat';
    position: relative;
    margin-left: 0;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}
.hidden-lg .hidden-md{
    display: none;
}
.body_profile {
    background: #fcfcfc;
    padding: 40px 10px 40px 10px;
}
.title_process {
    color: #333;
    font-family: 'montserrat';
    text-align: center;
    font-size: 10px;
}
.progress-outer {
    width: 100%;
    float: none;
    margin: auto;
}
.section_profile .col-md-4 {
    padding: 0!important;
}
}
@media (min-width: 568px) and (max-width: 736px){
    .labels-content {

    position: relative;
    margin-top: 0 !important;
    width: 100%;
    height: auto;

}
    .center_modal_qr {
    width: 100%;
    float: none;
    margin: auto;
    text-align: center;
    height: 520px;
}
.modal-body-qr .col-md-6 img {
    width: 100%;
    display: none;
}
.responsive_back_to_bag {
    display: block;
}
.back_details .col-md-12 {
    padding: 0!important;
}
.body_info_personal p {
    font-size: 14px;
    font-family: 'montserrat';
    color: #797979;
    font-weight: normal;
    word-wrap: break-word;
    float: left;
    width: 100%;
}
.div_data_photo_live {
    width: 20%;
    float: left;
}
div#perfil-profesional {
    width: 80%;
    float: left;
}
.dsp_none_respo {
    display: none;
}
.back-confirmation .col-md-6 {
    padding: 0!important;
    width: 50%;
    float: left;
}
.back-register-divs {
    position: relative;
    width: 100%;
    height: auto;
    background: transparent;
}
.back-all-content-register {
    height: 100%;
    background: #000000b8;
    padding: 10px;
}
.back-confirmation {
    width: 100%;
    padding: 10px;
    height: 100%;
}
.padd_register {
    padding: 20px;
}
.back-confirmation .col-md-6 .back-white {
    padding: 30px 30px;
}
.w-table {
    display: table!important;
    width: 100%!important;
    height: 100%!important;
    padding: 10px!important;
}
.timeline_title {
    color: #ffffff!important;
    text-align: center!important;
    font-weight: 100!important;
    letter-spacing: 1px!important;
    font-size: 25px!important;
    width: 100%!important;
}
.w-table-cell {
    display: table-cell!important;
    height: auto!important;
    vertical-align: top!important;
}
.timeline_card {
    position: relative;
    width: 100%!important;
    height: 400px;
    background-color: #fff;
    margin: 30px auto;
    padding: 20px;
    overflow: hidden;
    box-shadow: 0 9px 20px 0px rgba(133, 144, 166, 0.5);
}
.timeline_label {
    cursor: pointer!important;
    position: relative!important;
    width: 20%!important;
    text-align: right!important;
    color: #909090!important;
    font-weight: 100!important;
    text-transform: uppercase!important;
    padding-right: 1%!important;
    letter-spacing: 1px!important;
    float: left!important;
    font-size: 11px!important;
    font-family: 'montserrat'!important;
}
.chat_body_back {
    background: #fff;
    padding: 15px;
    border: 1px solid #e4e4e4;
    height: auto;
}
.user-guide__close:before {
    right: 39px!important;
    -webkit-transform: rotate(45deg)!important;
    transform: rotate(45deg)!important;
}
.message-wrap.col-md-6 {
    padding: 0!important;
}
.timeline_notmore {
    position: absolute;
    top: 360px!important;
    float: none;
    margin: auto;
}
.timeline_text a {
    color: #a62a2c;
    font-size: 14px;
    position: relative;
    top: -110px!important;
    text-decoration: none;
    font-weight: bold;
    z-index: 99999;
}
section.chat-content {
    height: auto;
    background: #fcfcfc;
    padding: 30px 10px;
}
.panel-body {
    padding: 0!important;
}
.chat_body_back .conversation-wrap {
    height: 390px;
    overflow-y: scroll;
    float: left;
    border: 1px solid #e4e4e4;
    margin-bottom: 30px;
    z-index: 8;
    padding: 0!important;
    width: 100%;
}
.chat_body_back .msg-wrap.msgRecived {
    background: #fff;
    border: 1px solid #e4e4e4;
    padding: 20px;
    overflow-y: scroll;
    height: 340px;
    width: 100%;
}
.chat-content .col-md-4 {
    padding: 0!important;
}
.notificaciones_tag {
    width: 2%;
    float: right;
    right: 0;
    position: absolute;
    top: -5px;
    left: 60%;
    height: 100%;
    z-index: 99;
}
.items_menu_log_noti {
    width: 100%!important;
    display: block!important;
}
.notification {
    display: inline-block;
    position: relative;
    top: 12px;
    left: 0!important;
    height: 30px;
    padding: 0.6em;
    background: #FFFFFF;
    border-radius: 0.2em;
    font-size: 1.3em;
}
.barra_progreso_info {
    width: 100%;
    float: right;
    position: relative;
    margin-bottom: 30px;
}
.barra_progreso_info .progress {
    width: 70%;
    float: right;
    padding: 3px;
    box-shadow: none;
    background: #e4e4e4;
    border-radius: 10px;
}
.header-content .header-img {
    width: 100%;
    float: none;
    margin: auto;
    text-align: center;
    height: 51px;
}
section.menu-header {
    display: block;
    position: relative;
    height: auto;
}
.header-content .content-right {
    width: 100%;
    float: left;
    height: 71px;
}
.header-content {
    display: block;
    width: 100%;
    position: relative;
    z-index: 9;
    background: #fff;
    height: 122px;
    -webkit-box-shadow: 0px 4px 16px -4px rgba(0,0,0,1);
    -moz-box-shadow: 0px 4px 16px -4px rgba(0,0,0,1);
    box-shadow: 0px 4px 16px -4px rgba(0,0,0,1);
}
.header-img .feria {
    float: none;
    padding: 22px 0;
}
#dropdown_head_ingreso ul {
    position: absolute;
    top: 100%;
    right: 0px;
    left: 0;
    width: 230px;
    padding: 5px 0px;
    display: none;
    background: #fff;
    border: 1px solid #e4e4e4;
    z-index: 9;
    list-style: none;
}
.img-pais img {
    width: 18px;
}
#dropdown_head_regis ul {
    position: absolute;
    top: 100%;
    right: 0px;
    left: -50px;
    width: 230px;
    padding: 5px 0px;
    display: none;
    background: #fff;
    border: 1px solid #e4e4e4;
    z-index: 9;
    list-style: none;
}
.btn-login {
    width: 100%;
    float: none;
    padding: 0;
    position: relative;
    text-align: center;
    top: 15px;
    margin: auto;
    margin-bottom: 10px;
}
.btn-login-qmcv {
    width: 100%;
    float: none;
    padding: 0;
    position: relative;
    text-align: center;
    top: 15px;
    margin: auto;
    margin-bottom: 10px;
}
.content_login_candidato h1 {
    font-size: 22px;
    font-family: 'montserrat';
    font-weight: 600;
    color: #fff;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}
.empresas_desta {
    background: #fcfcfc;
    padding: 5px;
    height: auto;
}
.content_login_candidato {
    width: 95%;
    float: none;
    margin: auto;
    position: relative;
    padding-top: 110px;
}
.back_opacity {
    background: #00000075;
    width: 100%;
    float: none;
    margin: auto;
    height: auto;
    position: relative;
    padding: 60px 30px;
}
.header-content-log {
    display: none;
}
.filtros_deskt {
    display: none;
}
.padd_sides .btn-group-justified {
    display: inline-block;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    width: 100%;
    float: left;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0;
    width: 100%;
    float: left;
}
.btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    width: 100%;
    float: left;
}
.menu-responsive {
    display: block;
}
.cover-jobs {
    display: none;
}
.filtros_resp {
    display: block;
    position: relative;
    z-index: 9;
}
.filtros_resp p {
    font-size: 14px;
    font-family: 'montserrat';
    text-align: center;
}
.content-not-found {
    width: 100%;
    float: none;
    position: relative;
    margin-top: 0px;
}
.plaza-not-found {
    height: 100%;
    padding: 20px;
    background: url(../images/cover_plaza_not_found.png);
    background-size: cover;
    background-repeat: no-repeat;
}
section.body_all_jobs {
    position: relative;
    padding: 10px;
    height: auto;
    background: #fcfcfc;
}
.padd_jobs {
    padding: 10px;
    display: block;
    border-radius: 0;
    height: auto;
}
.content-not-found h1 {
    font-family: 'montserrat-bold';
    font-size: 84px;
    color: #ffffff8a;
}
.content-not-found h2 {
    font-size: 20px;
    font-family: 'montserrat-bold';
    text-transform: uppercase;
    color: #fff;
}
.content-not-found h3 {
    font-family: 'montserrat-bold';
    color: #fff;
    font-size: 14px;
}
.contenedor_midd_complete .progress_process .bar {
    position: relative;
    width: 5px;
    height: 6px;
    top: -1px;
    margin-left: -5px;
    margin-right: -5px;
    border-left: none;
    border-right: none;
    border-radius: 0;
    float: none;
}
.paso_stage_responsive {
    display: block;
    padding: 10px;
}
.paso_stage_responsive h1 {
    font-family: 'montserrat-bold';
    font-size: 16px;
    text-align: left;
    margin: 0!important;
}
.paso_stage_responsive h2 {
    font-family: 'montserrat-bold';
    font-size: 14px;
    text-align: left;
    margin: 0!important;
}
.paso_stage_responsive p{
    font-family: 'montserrat';
    font-size: 12px;
    text-align: left;
}
.plaza_alert_success .paso_stage_responsive {
    display: none;
}
.plaza_alert_denied .paso_stage_responsive {
    display: none;
}
.section_miperfil {
    background: #fcfcfc;
    padding: 20px;
}
.edit_info_link {
    cursor: pointer;
    float: right;
    position: relative;
    right: 0;
    top: 0;
}
.contenedor_perfil .edit_info_link {
    cursor: pointer;
    float: right;
    position: absolute;
    right: 0;
    top: 0;
}
.diaedu {
    width: 29%;
    float: left;
    margin-right: 14px;
}
.mesedu {
    width: 29%;
    float: left;
    margin-right: 14px;
}
.body_form_academicos .col-md-7 {
    padding: 0!important;
}
.body_form_academicos .col-md-5 {
    padding: 0!important;
}
.agr_edu {
    width: 100%;
    background: transparent;
    border: 1px solid #fd4b4b;
    color: #fd4b4b;
    padding: 9px;
    font-family: 'montserrat';
    font-size: 12px;
    margin-bottom: 10px;
    float: left;
    margin: 0px 0px 10px;
}
.academicos_info_unlive .btn-update-info {
    margin-bottom: 10px;
    width: 100%;
    float: left;
    margin: 0 0 10px;
}
.academicos_info_unlive .btn-cancel-info {
    margin-bottom: 10px;
    width: 100%;
    float: left;
}
.diajob {
    width: 29%;
    float: left;
    margin-right: 14px;
}
.mesejob {
    width: 29%;
    float: left;
    margin-right: 14px;
}
.body_detalles_edition .col-md-5{
    padding: 0!important;
}
.body_detalles_edition .col-md-7{
    padding: 0!important;
}
.btns_actions {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 20px;
    margin-bottom: 20px;
}
.agr_lab {
    width: 100%;
    background: transparent;
    border: 1px solid #fd4b4b;
    color: #fd4b4b;
    padding: 9px;
    font-family: 'montserrat';
    font-size: 12px;
    margin-bottom: 10px;
    float: left;
    margin: 0 0 10px;
}
.laborales_info_unlive .btn-update-info {
    margin-bottom: 10px;
    width: 100%;
    float: left;
    margin: 0 0 10px;
}
.laborales_info_unlive .btn-cancel-info {
    margin-bottom: 10px;
    width: 100%;
    float: none;
}
.content_editable_referencias .col-md-5 {
    padding:0!important;
}
.content_editable_referencias .col-md-7 {
    padding:0!important;
}
.referencias_info_unlive .btn-cancel-info {
    margin-bottom: 10px;
    width: 100%;
    float: none;
}
.referencias_info_unlive .btn-update-info {
    margin-bottom: 10px;
    width: 100%;
    float: none;
    margin-right: 10px;
}
.agr_ref {
    width: 100%;
    background: transparent;
    border: 1px solid #fd4b4b;
    color: #fd4b4b;
    padding: 9px;
    font-family: 'montserrat';
    font-size: 12px;
    margin-bottom: 10px;
    margin: 0 0 10px;
}
.section_configuraciones {
    background: #fcfcfc;
    padding: 10px;
}
.back_categorias .edit_categorias a {
    position: absolute;
    float: right;
    right: 0;
    font-size: 14px;
    font-family: 'montserrat';
    text-decoration: underline!important;
    color: #fd4b4b;
    top: -20px;
}
.btn-update-categ {
    width: 100%;
    float: none;
    margin: 0 0 10px;
}
.btns_groups_categ .btn-cancel-categ button {
    background: #fd4b4b;
    border: none;
    width: 100%;
    padding: 10px;
    color: #fff;
    font-size: 12px;
    font-family: 'montserrat';
}
.contenedor_perfil .img-perfil {
    width: 100px;
    height: 100px;
    border: 2px solid #e1e1e1;
    overflow: hidden;
    float: none;
    margin: auto;
}
.div_data_photo_live .edit_info_link {
    cursor: pointer;
    float: none;
    position: relative;
    top: 0;
    width: 100%;
    margin: auto;
    text-align: center;
}
.div_data_photo_live .edit_info_link a {
    position: relative;
    float: none;
    text-align: center;
    right: 0;
    font-size: 14px;
    font-family: 'montserrat';
    text-decoration: underline!important;
    color: #fd4b4b;
    left: 0;
}
.btns_groups .btn-update-info {
    float: left;
    width: 100%;
    margin-bottom: 10px;
}
.btns_groups .btn-update-info button {
    background: #26ae61;
    border: none;
    width: 100%;
    padding: 10px;
    color: #fff;
    font-size: 12px;
    font-family: 'montserrat';
}
.btns_groups .btn-cancel-info {
    float: left;
    width: 100%;
}
.btns_groups .btn-cancel-info button {
    background: #fd4b4b;
    border: none;
    width: 100%;
    padding: 10px;
    color: #fff;
    font-size: 12px;
    font-family: 'montserrat';
}
.content_edit_info .cargo_title_edition input {
    padding: 7px;
    width: 100%;
    border: 1px solid #e0e0e0;
    font-family: 'montserrat';
    font-size: 12px;
}
.content_edit_info .col-md-12 .col-md-4 {
    padding: 0!important;
}
.div_data_photo_unlive .btns_groups .btn-update-info {
    float: left;
    width: 100%;
    margin-bottom: 10px;
}
.info_complete_perfil .col-md-9 {
    padding: 0!important;
}
.content-not-found p {
    font-size: 14px;
    font-family: 'montserrat';
    color: #fff;
}
.section_misprocesos {
    padding: 30px 15px;
}
.eliminar_plaza {
    width: 3%;
    float: right;
    position: relative;
    top: -20px;
}
.title_process {
    display: none;
}
.imagenempcolect {
    width: 85px;
    opacity: 0.2;
}
.data_plaza_flag {
    position: absolute;
    left: 40%;
    top: 16px;
    font-size: 30px;
    font-family: 'montserrat-bold';
    text-align: center;
}
.logo-responsive {
    width: 30%;
    float: right;
    position: relative;
    top: -35px;
    z-index: 9;
}
.logo-responsive img {
    width: 195px;
}
.dl-menuwrapper button:after {
    content: '';
    position: absolute;
    width: 68%;
    height: 5px;
    /* background: #fff0; */
    top: 10px;
    left: 16%;
    /* box-shadow: 0 10px 0 #fff0, 0 20px 0 #fff0; */
}
.minisitio_empresas {
    background: #fcfcfc;
    padding: 20px;
    height: auto;
}
.bodytab2 .historia {
    width: 100%;
    position: relative;
    height: 100%;
    float: none;
    top: 0;
}
.panel_info_empresa {
    width: 100%;
    height: 150px;
    float: none;
}
.valores .m-btmm {
    margin-bottom: 10px;
    padding: 0!important;
    height: auto;
}
.back-body-empresa .col-md-9 {
    padding: 0!important;
}
.empresas_desta {
    background: #fcfcfc;
    padding: 5px;
    height: auto;
}
.content_login_candidato {
    width: 95%;
    float: none;
    margin: auto;
    position: relative;
    padding-top: 110px;
}
.back_opacity {
    background: #00000075;
    width: 100%;
    float: none;
    margin: auto;
    height: auto;
    position: relative;
    padding: 40px;
}
.header-content-log {
    display: none;
}
.filtros_deskt {
    display: none;
}
.menu-responsive {
    display: block;
}
.cover-jobs {
    display: none;
}
.filtros_resp {
    display: block;
    position: relative;
    z-index: 9;
}
.filtros_resp p {
    font-size: 14px;
    font-family: 'montserrat';
    text-align: center;
}
section.body_all_jobs {
    position: relative;
    padding: 10px;
    height: auto;
    background: #fcfcfc;
}
.padd_jobs {
    padding: 10px;
    display: block;
    border-radius: 0;
    height: auto;
}
.imagenempcolect {
    width: 100%;
    opacity: 0.2;
}
.data_plaza_flag {
    position: absolute;
    left: 20px;
    top: 17px;
    font-size: 30px;
    font-family: 'montserrat-bold';
}
.dl-menuwrapper .dl-menu.dl-menuopen {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
    background: #efefef;
}
.dl-menuwrapper li a {
    display: block;
    position: relative;
    padding: 15px 20px!important;
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
    color: #757575;
    outline: none;
    font-family: 'montserrat';
    border: none!important;
}
ul.dl-submenu {
    background: #efefef!important;
}
.dl-subviewopen select {
    width: 100%;
    border: 1px solid #0000001a;
    background: #efefef;
    font-size: 12px;
    font-family: 'montserrat';
    padding: 10px;
    height: auto;
    border-radius: 0!important;
    font-family: 'montserrat';
}
.padding-sub-menu {
    padding: 10px;
}
.padding-sub-menu input {
    width: 100%;
    border: 1px solid #0000001a;
    background: #efefef;
    font-size: 12px;
    font-family: 'montserrat';
    padding: 10px;
    border-radius: 0!important;
}
.clean-filters {
    background: #efefef!important;
    color: #757575!important;
    text-align: left;
}
section.plaza_detail {
    padding: 30px;
    background: #fcfcfc;
}
.info_empresa .col-md-12 {
    padding: 0!important;
}
.info_empresa .col-md-4 {
    padding: 0!important;
    width: 33.33%;
    float: left;
    margin-right: 20px;
}
.nombre_plaza {
    text-align: left;
}
.botones_interactivos {
    height: 110px;
    width: 100%;
    text-align: left;
}
.aplicar_btn_dos {
    width: auto;
    float: left;
    position: relative;
    /* top: 20px; */
    margin-right: 10px;
}
.share_friends {
    width: auto;
    float: left;
    position: relative;
    top: 20px;
}
.botones_interactivos_details {
    /* padding-bottom: 20px; */
    /* position: relative; */
    /* display: block; */
    /* width: 100%; */
    float: none;
    margin: auto;
    text-align: center;
}
.body_plaza .col-md-8 {
    padding: 0!important;
}
.btn_aplicar_plaza {
    width: auto;
    float: none;
    margin: auto;
    text-align: left;
    position: relative;
    margin-top: 20px;
}
.img_profile_plaza {
    width: 100%;
    height: 204.44px;
    background: #fff;
    border: 1px solid #e1e1e1;
    position: relative;
    padding: 0px;
    z-index: 1;
}
.link_empresa {
    position: relative;
    z-index: 1;
}
.pdd_suggest {
    padding: 0!important;
}
.footer-left p {
    font-size: 14px;
    color: #b7c0cd;
    font-family: 'montserrat';
    position: relative;
    margin-left: 0;
}
.footer-left {
    text-align: center;
}
.content-footer .footer-left img {
    width: 15px;
    float: none;
}
.footer-left p:hover {
    color: #fff;
    font-family: 'montserrat';
    position: relative;
    margin-left: 0;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}
.hidden-lg .hidden-md{
    display: none;
}
.body_profile {
    background: #fcfcfc;
    padding: 40px 10px 40px 10px;
}
.title_process {
    color: #333;
    font-family: 'montserrat';
    text-align: center;
    font-size: 10px;
}
.progress-outer {
    width: 100%;
    float: none;
    margin: auto;
}
.section_profile .col-md-4 {
    padding: 0!important;
}
}
@media (min-width: 768px) and (max-width: 800px){
    .labels-content {

    position: relative;
    margin-top: 0 !important;
    width: 100%;
    height: auto;

}
    .center_modal_qr {
    width: 100%;
    float: none;
    margin: auto;
    text-align: center;
    height: 520px;
}
    .modal-body-qr .col-md-6 img {
    width: 100%;
    display: none;
}
.responsive_back_to_bag {
    display: block;
}
.back_details .col-md-12 {
    padding: 0!important;
}
.div_data_photo_live {
    width: 20%;
    float: left;
}
div#perfil-profesional {
    width: 80%;
    float: left;
}
.dsp_none_respo {
    display: none;
}
.back-register-divs {
    position: relative;
    width: 100%;
    height: auto;
    background: transparent;
}
.back-all-content-register {
    height: 100%;
    background: #000000b8;
    padding: 10px;
}
.padd_register {
    padding: 20px;
}
.back-confirmation {
    width: 100%;
    padding: 10px;
    height: 100%;
}
.back-confirmation .col-md-6 .back-white {
    padding: 30px 30px;
}
.w-table {
    display: table!important;
    width: 100%!important;
    height: 100%!important;
    padding: 10px!important;
}
.timeline_title {
    color: #ffffff!important;
    text-align: center!important;
    font-weight: 100!important;
    letter-spacing: 1px!important;
    font-size: 25px!important;
    width: 100%!important;
}
.w-table-cell {
    display: table-cell!important;
    height: auto!important;
    vertical-align: top!important;
}
.timeline_card {
    position: relative;
    width: 100%!important;
    height: 400px;
    background-color: #fff;
    margin: 30px auto;
    padding: 20px;
    overflow: hidden;
    box-shadow: 0 9px 20px 0px rgba(133, 144, 166, 0.5);
}
.timeline_label {
    cursor: pointer!important;
    position: relative!important;
    width: 20%!important;
    text-align: right!important;
    color: #909090!important;
    font-weight: 100!important;
    text-transform: uppercase!important;
    padding-right: 1%!important;
    letter-spacing: 1px!important;
    float: left!important;
    font-size: 11px!important;
    font-family: 'montserrat'!important;
}
.chat_body_back {
    background: #fff;
    padding: 15px;
    border: 1px solid #e4e4e4;
    height: auto;
}
.user-guide__close:before {
    right: 39px!important;
    -webkit-transform: rotate(45deg)!important;
    transform: rotate(45deg)!important;
}
.message-wrap.col-md-6 {
    padding: 0!important;
}
.timeline_notmore {
    position: absolute;
    top: 360px!important;
    float: none;
    margin: auto;
}
.timeline_text a {
    color: #a62a2c;
    font-size: 14px;
    position: relative;
    top: -110px!important;
    text-decoration: none;
    font-weight: bold;
    z-index: 99999;
}
section.chat-content {
    height: auto;
    background: #fcfcfc;
    padding: 30px 10px;
}
.panel-body {
    padding: 0!important;
}
.chat_body_back .conversation-wrap {
    height: 390px;
    overflow-y: scroll;
    float: left;
    border: 1px solid #e4e4e4;
    margin-bottom: 30px;
    z-index: 8;
    padding: 0!important;
    width: 100%;
}
.chat_body_back .msg-wrap.msgRecived {
    background: #fff;
    border: 1px solid #e4e4e4;
    padding: 20px;
    overflow-y: scroll;
    height: 340px;
    width: 100%;
}
.chat-content .col-md-4 {
    padding: 0!important;
}
.notificaciones_tag {
    width: 2%;
    float: left;
    position: absolute;
    top: -5px;
    left: 65%;
    height: 100%;
    z-index: 9;
}
.items_menu_log_noti {
    width: 100%!important;
    display: block!important;
}
.notification {
    display: inline-block;
    position: relative;
    top: 12px;
    left: 0!important;
    height: 30px;
    padding: 0.6em;
    background: #FFFFFF;
    border-radius: 0.2em;
    font-size: 1.3em;
}
.barra_progreso_info {
    width: 100%;
    float: right;
    position: relative;
    margin-bottom: 30px;
}
.barra_progreso_info .progress {
    width: 70%;
    float: right;
    padding: 3px;
    box-shadow: none;
    background: #e4e4e4;
    border-radius: 10px;
}
.header-content .header-img {
    width: 100%;
    float: none;
    margin: auto;
    text-align: center;
    height: 51px;
}
section.menu-header {
    display: block;
    position: relative;
    height: auto;
}
.header-content .content-right {
    width: 100%;
    float: left;
    height: 71px;
}
.header-content {
    display: block;
    width: 100%;
    position: relative;
    z-index: 9;
    background: #fff;
    height: 122px;
    -webkit-box-shadow: 0px 4px 16px -4px rgba(0,0,0,1);
    -moz-box-shadow: 0px 4px 16px -4px rgba(0,0,0,1);
    box-shadow: 0px 4px 16px -4px rgba(0,0,0,1);
}
.header-img .feria {
    float: none;
    padding: 22px 0;
}
#dropdown_head_ingreso ul {
    position: absolute;
    top: 100%;
    right: 0px;
    left: 0;
    width: 230px;
    padding: 5px 0px;
    display: none;
    background: #fff;
    border: 1px solid #e4e4e4;
    z-index: 9;
    list-style: none;
}
.img-pais img {
    width: 18px;
}
#dropdown_head_regis ul {
    position: absolute;
    top: 100%;
    right: 0px;
    left: -50px;
    width: 230px;
    padding: 5px 0px;
    display: none;
    background: #fff;
    border: 1px solid #e4e4e4;
    z-index: 9;
    list-style: none;
}
.btn-login {
    width: 100%;
    float: none;
    padding: 0;
    position: relative;
    text-align: center;
    top: 15px;
    margin: auto;
    margin-bottom: 10px;
}
.btn-login-qmcv {
    width: 100%;
    float: none;
    padding: 0;
    position: relative;
    text-align: center;
    top: 15px;
    margin: auto;
    margin-bottom: 10px;
}
.content_login_candidato h1 {
    font-size: 22px;
    font-family: 'montserrat';
    font-weight: 600;
    color: #fff;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}
.empresas_desta {
    background: #fcfcfc;
    padding: 5px;
    height: auto;
}
.content_login_candidato {
    width: 95%;
    float: none;
    margin: auto;
    position: relative;
    padding-top: 110px;
}
.back_opacity {
    background: #00000075;
    width: 100%;
    float: none;
    margin: auto;
    height: auto;
    position: relative;
    padding: 60px 30px;
}
.header-content-log {
    display: none;
}
.filtros_deskt {
    display: none;
}
.padd_sides .btn-group-justified {
    display: inline-block;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    width: 100%;
    float: left;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0;
    width: 100%;
    float: left;
}
.btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    width: 100%;
    float: left;
}
.menu-responsive {
    display: block;
}
.cover-jobs {
    display: none;
}
.filtros_resp {
    display: block;
    position: relative;
    z-index: 9;
}
.filtros_resp p {
    font-size: 14px;
    font-family: 'montserrat';
    text-align: center;
}
.content-not-found {
    width: 100%;
    float: none;
    position: relative;
    margin-top: 0px;
}
.plaza-not-found {
    height: 100%;
    padding: 20px;
    background: url(../images/cover_plaza_not_found.png);
    background-size: cover;
    background-repeat: no-repeat;
}
section.body_all_jobs {
    position: relative;
    padding: 10px;
    height: auto;
    background: #fcfcfc;
}
.padd_jobs {
    padding: 10px;
    display: block;
    border-radius: 0;
    height: auto;
}
.content-not-found h1 {
    font-family: 'montserrat-bold';
    font-size: 84px;
    color: #ffffff8a;
}
.content-not-found h2 {
    font-size: 20px;
    font-family: 'montserrat-bold';
    text-transform: uppercase;
    color: #fff;
}
.content-not-found h3 {
    font-family: 'montserrat-bold';
    color: #fff;
    font-size: 14px;
}
.contenedor_midd_complete .progress_process .bar {
    position: relative;
    width: 5px;
    height: 6px;
    top: -1px;
    margin-left: -5px;
    margin-right: -5px;
    border-left: none;
    border-right: none;
    border-radius: 0;
    float: none;
}
.paso_stage_responsive {
    display: block;
    padding: 10px;
}
.paso_stage_responsive h1 {
    font-family: 'montserrat-bold';
    font-size: 16px;
    text-align: left;
    margin: 0!important;
}
.paso_stage_responsive h2 {
    font-family: 'montserrat-bold';
    font-size: 14px;
    text-align: left;
    margin: 0!important;
}
.paso_stage_responsive p{
    font-family: 'montserrat';
    font-size: 12px;
    text-align: left;
}
.plaza_alert_success .paso_stage_responsive {
    display: none;
}
.plaza_alert_denied .paso_stage_responsive {
    display: none;
}
.section_miperfil {
    background: #fcfcfc;
    padding: 20px;
}
.edit_info_link {
    cursor: pointer;
    float: right;
    position: relative;
    right: 0;
    top: 0;
}
.contenedor_perfil .edit_info_link {
    cursor: pointer;
    float: right;
    position: absolute;
    right: 0;
    top: 0;
}
.diaedu {
    width: 29%;
    float: left;
    margin-right: 14px;
}
.mesedu {
    width: 29%;
    float: left;
    margin-right: 14px;
}
.body_form_academicos .col-md-7 {
    padding: 0!important;
}
.body_form_academicos .col-md-5 {
    padding: 0!important;
}
.agr_edu {
    width: 100%;
    background: transparent;
    border: 1px solid #fd4b4b;
    color: #fd4b4b;
    padding: 9px;
    font-family: 'montserrat';
    font-size: 12px;
    margin-bottom: 10px;
    float: left;
    margin: 0px 0px 10px;
}
.academicos_info_unlive .btn-update-info {
    margin-bottom: 10px;
    width: 100%;
    float: left;
    margin: 0 0 10px;
}
.academicos_info_unlive .btn-cancel-info {
    margin-bottom: 10px;
    width: 100%;
    float: left;
}
.diajob {
    width: 29%;
    float: left;
    margin-right: 14px;
}
.mesejob {
    width: 29%;
    float: left;
    margin-right: 14px;
}
.body_detalles_edition .col-md-5{
    padding: 0!important;
}
.body_detalles_edition .col-md-7{
    padding: 0!important;
}
.btns_actions {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 20px;
    margin-bottom: 20px;
}
.agr_lab {
    width: 100%;
    background: transparent;
    border: 1px solid #fd4b4b;
    color: #fd4b4b;
    padding: 9px;
    font-family: 'montserrat';
    font-size: 12px;
    margin-bottom: 10px;
    float: left;
    margin: 0 0 10px;
}
.laborales_info_unlive .btn-update-info {
    margin-bottom: 10px;
    width: 100%;
    float: left;
    margin: 0 0 10px;
}
.laborales_info_unlive .btn-cancel-info {
    margin-bottom: 10px;
    width: 100%;
    float: none;
}
.content_editable_referencias .col-md-5 {
    padding:0!important;
}
.content_editable_referencias .col-md-7 {
    padding:0!important;
}
.referencias_info_unlive .btn-cancel-info {
    margin-bottom: 10px;
    width: 100%;
    float: none;
}
.referencias_info_unlive .btn-update-info {
    margin-bottom: 10px;
    width: 100%;
    float: none;
    margin-right: 10px;
}
.agr_ref {
    width: 100%;
    background: transparent;
    border: 1px solid #fd4b4b;
    color: #fd4b4b;
    padding: 9px;
    font-family: 'montserrat';
    font-size: 12px;
    margin-bottom: 10px;
    margin: 0 0 10px;
}
.section_configuraciones {
    background: #fcfcfc;
    padding: 10px;
}
.back_categorias .edit_categorias a {
    position: absolute;
    float: right;
    right: 0;
    font-size: 14px;
    font-family: 'montserrat';
    text-decoration: underline!important;
    color: #fd4b4b;
    top: -20px;
}
.btn-update-categ {
    width: 100%;
    float: none;
    margin: 0 0 10px;
}
.btns_groups_categ .btn-cancel-categ button {
    background: #fd4b4b;
    border: none;
    width: 100%;
    padding: 10px;
    color: #fff;
    font-size: 12px;
    font-family: 'montserrat';
}
.contenedor_perfil .img-perfil {
    width: 100px;
    height: 100px;
    border: 2px solid #e1e1e1;
    overflow: hidden;
    float: none;
    margin: auto;
}
.div_data_photo_live .edit_info_link {
    cursor: pointer;
    float: none;
    position: relative;
    top: 0;
    width: 100%;
    margin: auto;
    text-align: center;
}
.div_data_photo_live .edit_info_link a {
    position: relative;
    float: none;
    text-align: center;
    right: 0;
    font-size: 14px;
    font-family: 'montserrat';
    text-decoration: underline!important;
    color: #fd4b4b;
    left: 0;
}
.btns_groups .btn-update-info {
    float: left;
    width: 100%;
    margin-bottom: 10px;
}
.btns_groups .btn-update-info button {
    background: #26ae61;
    border: none;
    width: 100%;
    padding: 10px;
    color: #fff;
    font-size: 12px;
    font-family: 'montserrat';
}
.btns_groups .btn-cancel-info {
    float: left;
    width: 100%;
}
.btns_groups .btn-cancel-info button {
    background: #fd4b4b;
    border: none;
    width: 100%;
    padding: 10px;
    color: #fff;
    font-size: 12px;
    font-family: 'montserrat';
}
.content_edit_info .cargo_title_edition input {
    padding: 7px;
    width: 100%;
    border: 1px solid #e0e0e0;
    font-family: 'montserrat';
    font-size: 12px;
}
.content_edit_info .col-md-12 .col-md-4 {
    padding: 0!important;
}
.div_data_photo_unlive .btns_groups .btn-update-info {
    float: left;
    width: 100%;
    margin-bottom: 10px;
}
.info_complete_perfil .col-md-9 {
    padding: 0!important;
}
.content-not-found p {
    font-size: 14px;
    font-family: 'montserrat';
    color: #fff;
}
.section_misprocesos {
    padding: 30px 15px;
}
.eliminar_plaza {
    width: 3%;
    float: right;
    position: relative;
    top: -20px;
}
.title_process {
    display: none;
}
.imagenempcolect {
    width: 85px;
    opacity: 0.2;
}
.data_plaza_flag {
    position: absolute;
    left: 40%;
    top: 16px;
    font-size: 30px;
    font-family: 'montserrat-bold';
    text-align: center;
}
.logo-responsive {
    width: 30%;
    float: right;
    position: relative;
    top: -42px;
    z-index: 9;
}
.logo-responsive img {
    width: 195px;
}
.dl-menuwrapper button:after {
    content: '';
    position: absolute;
    width: 68%;
    height: 5px;
    /* background: #fff0; */
    top: 10px;
    left: 16%;
    /* box-shadow: 0 10px 0 #fff0, 0 20px 0 #fff0; */
}
.minisitio_empresas {
    background: #fcfcfc;
    padding: 20px;
    height: auto;
}
.bodytab2 .historia {
    width: 100%;
    position: relative;
    height: 100%;
    float: none;
    top: 0;
}
.panel_info_empresa {
    width: 100%;
    height: 150px;
    float: none;
}
.valores .m-btmm {
    margin-bottom: 10px;
    padding: 0!important;
    height: auto;
}
.back-body-empresa .col-md-9 {
    padding: 0!important;
}
.empresas_desta {
    background: #fcfcfc;
    padding: 5px;
    height: auto;
}
.content_login_candidato {
    width: 95%;
    float: none;
    margin: auto;
    position: relative;
    padding-top: 110px;
}
.back_opacity {
    background: #00000075;
    width: 100%;
    float: none;
    margin: auto;
    height: auto;
    position: relative;
    padding: 40px;
}
.header-content-log {
    display: none;
}
.filtros_deskt {
    display: none;
}
.menu-responsive {
    display: block;
}
.cover-jobs {
    display: none;
}
.filtros_resp {
    display: block;
    position: relative;
    z-index: 9;
}
.filtros_resp p {
    font-size: 14px;
    font-family: 'montserrat';
    text-align: center;
}
section.body_all_jobs {
    position: relative;
    padding: 10px;
    height: auto;
    background: #fcfcfc;
}
.padd_jobs {
    padding: 10px;
    display: block;
    border-radius: 0;
    height: auto;
}
.imagenempcolect {
    width: 100%;
    opacity: 0.2;
}
.data_plaza_flag {
    position: absolute;
    left: 20px;
    top: 17px;
    font-size: 30px;
    font-family: 'montserrat-bold';
}
.dl-menuwrapper .dl-menu.dl-menuopen {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
    background: #efefef;
}
.dl-menuwrapper li a {
    display: block;
    position: relative;
    padding: 15px 20px!important;
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
    color: #757575;
    outline: none;
    font-family: 'montserrat';
    border: none!important;
}
ul.dl-submenu {
    background: #efefef!important;
}
.dl-subviewopen select {
    width: 100%;
    border: 1px solid #0000001a;
    background: #efefef;
    font-size: 12px;
    font-family: 'montserrat';
    padding: 10px;
    height: auto;
    border-radius: 0!important;
    font-family: 'montserrat';
}
.padding-sub-menu {
    padding: 10px;
}
.padding-sub-menu input {
    width: 100%;
    border: 1px solid #0000001a;
    background: #efefef;
    font-size: 12px;
    font-family: 'montserrat';
    padding: 10px;
    border-radius: 0!important;
}
.clean-filters {
    background: #efefef!important;
    color: #757575!important;
    text-align: left;
}
.info_empresa .col-md-8 {
    height: 230px;
}
.info_empresa .col-md-4 {
    padding-left: 0!important;
    width: 33.33%;
    float: left;
    position: relative;
    z-index: 1;
}
.link_empresa {
    position: relative;
    z-index: 1;
}
.info_empresa .col-md-12 {
    padding: 0!important;
}
.body_plaza .col-md-8{
    padding: 0!important;
}
.btn_aplicar_plaza {
    width: auto;
    float: none;
    margin: auto;
    text-align: left;
    position: relative;
    margin-top: 20px;
}
.pdd_suggest {
    padding: 0!important;
}
.footer-left p {
    font-size: 14px;
    color: #b7c0cd;
    font-family: 'montserrat';
    position: relative;
    margin-left: 0;
}
.footer-left {
    text-align: center;
}
.content-footer .footer-left img {
    width: 15px;
    float: none;
}
.footer-left p:hover {
    color: #fff;
    font-family: 'montserrat';
    position: relative;
    margin-left: 0;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}
.hidden-lg .hidden-md{
    display: none;
}
.body_profile {
    background: #fcfcfc;
    padding: 40px 10px 40px 10px;
}
.title_process {
    color: #333;
    font-family: 'montserrat';
    text-align: center;
    font-size: 10px;
}
.progress-outer {
    width: 100%;
    float: none;
    margin: auto;
}
.section_profile .col-md-4 {
    padding: 0!important;
}
.back-confirmation .col-md-6 {
    padding: 0!important;
    width: 50%;
    float: left;
}
}
@media (min-width:800px) and (max-width: 1050px){
    .labels-content {

    position: relative;
    margin-top: 0 !important;
    width: 100%;
    height: auto;

}
.back_details .col-md-12 {
    padding: 0!important;
}
.back-confirmation .col-md-6 .back-white {
    padding: 68px 30px;
}
.padd_register {
    padding: 10px;
}
ul.dl-submenu {
    background: #efefef!important;
}
section.chat-content {
    height: auto;
    background: #fcfcfc;
    padding: 40px;
}
.dl-menuwrapper .dl-menu.dl-menuopen {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
    background: #efefef;
}
.dl-menuwrapper li a {
    display: block;
    position: relative;
    padding: 15px 20px!important;
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
    color: #757575;
    outline: none;
    font-family: 'montserrat';
    border: none!important;
}
.timeline_text a {
    color: #a62a2c;
    font-size: 14px;
    position: relative;
    top: -110px!important;
    text-decoration: none;
    font-weight: bold;
}
.timeline_notmore {
    position: absolute;
    top: 360px!important;
    float: none;
    margin: auto;
    font-family: 'montserrat';
    color: #383838;
    font-weight: normal;
    font-size: 12px;
    text-transform: uppercase;
}
.chat_body_back .conversation-wrap {
    height: 415px!important;
    overflow-y: scroll;
    padding: 0!important;
    border: 1px solid #e4e4e4!important;
}
.w-table-cell {
    display: table-cell;
    vertical-align: top!important;
}
.chat_body_back .conversation {
    background: #fff;
    padding: 9px;
    border-bottom: 1px solid #e4e4e4;
}
.notificaciones_tag {
    width: 2%;
    float: left;
    position: absolute;
    top: -5px;
    left: 65%;
    height: 100%;
    z-index: 9;
}
.items_menu_log_noti {
    width: 100%!important;
    display: block!important;
}
.notification {
    display: inline-block;
    position: relative;
    top: 12px;
    left: 0;
    height: 30px;
    padding: 0.6em;
    background: #FFFFFF;
    border-radius: 0.2em;
    font-size: 1.3em;
}
.barra_progreso_info {
    width: 100%;
    float: right;
    position: relative;
    margin-bottom: 30px;
}
.barra_progreso_info .progress {
    width: 70%;
    float: right;
    padding: 3px;
    box-shadow: none;
    background: #e4e4e4;
    border-radius: 10px;
}
.header-content .header-img {
    width: 100%;
    float: none;
    margin: auto;
    text-align: center;
    height: 51px;
}
section.menu-header {
    display: block;
    position: relative;
    height: auto;
}
.header-content .content-right {
    width: 100%;
    float: left;
    height: 71px;
}
.header-content {
    display: block;
    width: 100%;
    position: relative;
    z-index: 9;
    background: #fff;
    height: 122px;
    -webkit-box-shadow: 0px 4px 16px -4px rgba(0,0,0,1);
    -moz-box-shadow: 0px 4px 16px -4px rgba(0,0,0,1);
    box-shadow: 0px 4px 16px -4px rgba(0,0,0,1);
}
.header-img .feria {
    float: none;
    padding: 22px 0;
}
#dropdown_head_ingreso ul {
    position: absolute;
    top: 100%;
    right: 0px;
    left: 0;
    width: 230px;
    padding: 5px 0px;
    display: none;
    background: #fff;
    border: 1px solid #e4e4e4;
    z-index: 9;
    list-style: none;
}
.img-pais img {
    width: 18px;
}
#dropdown_head_regis ul {
    position: absolute;
    top: 100%;
    right: 0px;
    left: -50px;
    width: 230px;
    padding: 5px 0px;
    display: none;
    background: #fff;
    border: 1px solid #e4e4e4;
    z-index: 9;
    list-style: none;
}
.btn-login {
    width: 100%;
    float: none;
    padding: 0;
    position: relative;
    text-align: center;
    top: 15px;
    margin: auto;
    margin-bottom: 10px;
}
.btn-login-qmcv {
    width: 100%;
    float: none;
    padding: 0;
    position: relative;
    text-align: center;
    top: 15px;
    margin: auto;
    margin-bottom: 10px;
}
.content_login_candidato h1 {
    font-size: 22px;
    font-family: 'montserrat';
    font-weight: 600;
    color: #fff;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}
.empresas_desta {
    background: #fcfcfc;
    padding: 5px;
    height: auto;
}
.content_login_candidato {
    width: 95%;
    float: none;
    margin: auto;
    position: relative;
    padding-top: 110px;
}
.back_opacity {
    background: #00000075;
    width: 100%;
    float: none;
    margin: auto;
    height: auto;
    position: relative;
    padding: 60px 30px;
}
.header-content-log {
    display: none;
}
.filtros_deskt {
    display: none;
}
.padd_sides .btn-group-justified {
    display: inline-block;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    width: 100%;
    float: left;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0;
    width: 100%;
    float: left;
}
.btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    width: 100%;
    float: left;
}
.menu-responsive {
    display: block;
}
.cover-jobs {
    display: none;
}
.filtros_resp {
    display: block;
    position: relative;
    z-index: 9;
}
.filtros_resp p {
    font-size: 14px;
    font-family: 'montserrat';
    text-align: center;
}
.content-not-found {
    width: 100%;
    float: none;
    position: relative;
    margin-top: 0px;
}
.plaza-not-found {
    height: 100%;
    padding: 20px;
    background: url(../images/cover_plaza_not_found.png);
    background-size: cover;
    background-repeat: no-repeat;
}
section.body_all_jobs {
    position: relative;
    padding: 10px;
    height: auto;
    background: #fcfcfc;
}
.padd_jobs {
    padding: 10px;
    display: block;
    border-radius: 0;
    height: auto;
}
.content-not-found h1 {
    font-family: 'montserrat-bold';
    font-size: 84px;
    color: #ffffff8a;
}
.content-not-found h2 {
    font-size: 20px;
    font-family: 'montserrat-bold';
    text-transform: uppercase;
    color: #fff;
}
.content-not-found h3 {
    font-family: 'montserrat-bold';
    color: #fff;
    font-size: 14px;
}
.contenedor_midd_complete .progress_process .bar {
    position: relative;
    width: 5px;
    height: 6px;
    top: -1px;
    margin-left: -5px;
    margin-right: -5px;
    border-left: none;
    border-right: none;
    border-radius: 0;
    float: none;
}
.paso_stage_responsive {
    display: block;
    padding: 10px;
}
.paso_stage_responsive h1 {
    font-family: 'montserrat-bold';
    font-size: 16px;
    text-align: left;
    margin: 0!important;
}
.paso_stage_responsive h2 {
    font-family: 'montserrat-bold';
    font-size: 14px;
    text-align: left;
    margin: 0!important;
}
.paso_stage_responsive p{
    font-family: 'montserrat';
    font-size: 12px;
    text-align: left;
}
.plaza_alert_success .paso_stage_responsive {
    display: none;
}
.plaza_alert_denied .paso_stage_responsive {
    display: none;
}
.section_miperfil {
    background: #fcfcfc;
    padding: 20px;
}
.edit_info_link {
    cursor: pointer;
    float: right;
    position: relative;
    right: 0;
    top: 0;
}
.contenedor_perfil .edit_info_link {
    cursor: pointer;
    float: right;
    position: absolute;
    right: 0;
    top: 0;
}
.diaedu {
    width: 29%;
    float: left;
    margin-right: 14px;
}
.mesedu {
    width: 29%;
    float: left;
    margin-right: 14px;
}
.body_form_academicos .col-md-7 {
    padding: 0!important;
}
.body_form_academicos .col-md-5 {
    padding: 0!important;
}
.agr_edu {
    width: 20%;
    background: transparent;
    border: 1px solid #fd4b4b;
    color: #fd4b4b;
    padding: 9px;
    font-family: 'montserrat';
    font-size: 12px;
    float: left;
    margin-right: 10px;
    margin-left: 0;
}
.academicos_info_unlive .btn-update-info {
    margin-bottom: 10px;
    width: 20%;
    float: left;
    margin-right: 10px;
    margin-left: 0!important;
}
.academicos_info_unlive .btn-cancel-info {
    margin-bottom: 10px;
    width: 20%;
    float: left;
}
.diajob {
    width: 29%;
    float: left;
    margin-right: 14px;
}
.mesejob {
    width: 29%;
    float: left;
    margin-right: 14px;
}
.body_detalles_edition .col-md-5{
    padding: 0!important;
}
.body_detalles_edition .col-md-7{
    padding: 0!important;
}
.btns_actions {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 20px;
    margin-bottom: 40px;
}
.agr_lab {
    width: 100%;
    background: transparent;
    border: 1px solid #fd4b4b;
    color: #fd4b4b;
    padding: 9px;
    font-family: 'montserrat';
    font-size: 12px;
    margin-bottom: 10px;
    float: left;
    margin: 0 0 10px;
}
.laborales_info_unlive .btn-update-info {
    margin-bottom: 10px;
    width: 100%;
    float: left;
    margin: 0 0 10px;
}
.laborales_info_unlive .btn-cancel-info {
    margin-bottom: 10px;
    width: 100%;
    float: none;
}
.content_editable_referencias .col-md-5 {
    padding:0!important;
}
.content_editable_referencias .col-md-7 {
    padding:0!important;
}
.referencias_info_unlive .btn-cancel-info {
    margin-bottom: 10px;
    width: 20%;
    float: left;
}
.referencias_info_unlive .btn-update-info {
    margin-bottom: 10px;
    width: 20%;
    float: left;
    margin-right: 10px;
}
.agr_ref {
    width: 20%;
    background: transparent;
    border: 1px solid #fd4b4b;
    color: #fd4b4b;
    padding: 9px;
    font-family: 'montserrat';
    font-size: 12px;
    margin-bottom: 10px;
    margin: 0 10px 10px;
}
.section_configuraciones {
    background: #fcfcfc;
    padding: 10px;
}
.back_categorias .edit_categorias a {
    position: absolute;
    float: right;
    right: 0;
    font-size: 14px;
    font-family: 'montserrat';
    text-decoration: underline!important;
    color: #fd4b4b;
    top: -20px;
}
.btn-update-categ {
    width: 100%;
    float: none;
    margin: 0 0 10px;
}
.btns_groups_categ .btn-cancel-categ button {
    background: #fd4b4b;
    border: none;
    width: 100%;
    padding: 10px;
    color: #fff;
    font-size: 12px;
    font-family: 'montserrat';
}
.contenedor_perfil .img-perfil {
    width: 100px;
    height: 100px;
    border: 2px solid #e1e1e1;
    overflow: hidden;
    float: none;
    margin: auto;
}
.div_data_photo_live .edit_info_link {
    cursor: pointer;
    float: none;
    position: relative;
    top: 0;
    width: 100%;
    margin: auto;
    text-align: center;
}
.div_data_photo_live .edit_info_link a {
    position: relative;
    float: none;
    text-align: center;
    right: 0;
    font-size: 14px;
    font-family: 'montserrat';
    text-decoration: underline!important;
    color: #fd4b4b;
    left: 0;
}
.btns_groups .btn-update-info {
    float: left;
    width: 100%;
    margin-bottom: 10px;
}
.btns_groups .btn-update-info button {
    background: #26ae61;
    border: none;
    width: 100%;
    padding: 10px;
    color: #fff;
    font-size: 12px;
    font-family: 'montserrat';
}
.btns_groups .btn-cancel-info {
    float: left;
    width: 100%;
}
.btns_groups .btn-cancel-info button {
    background: #fd4b4b;
    border: none;
    width: 100%;
    padding: 10px;
    color: #fff;
    font-size: 12px;
    font-family: 'montserrat';
}
.content_edit_info .cargo_title_edition input {
    padding: 7px;
    width: 100%;
    border: 1px solid #e0e0e0;
    font-family: 'montserrat';
    font-size: 12px;
}
.content_edit_info .col-md-12 .col-md-4 {
    padding: 0!important;
}
.div_data_photo_unlive .btns_groups .btn-update-info {
    float: left;
    width: 100%;
    margin-bottom: 10px;
}
.info_complete_perfil .col-md-9 {
    padding-right: 0!important;
}
.content-not-found p {
    font-size: 14px;
    font-family: 'montserrat';
    color: #fff;
}
.section_misprocesos {
    padding: 30px 15px;
}
.eliminar_plaza {
    width: 3%;
    float: right;
    position: relative;
    top: -20px;
}
.title_process {
    display: none;
}
.imagenempcolect {
    width: 85px;
    opacity: 0.2;
}
.data_plaza_flag {
    position: absolute;
    left: 40%;
    top: 16px;
    font-size: 30px;
    font-family: 'montserrat-bold';
    text-align: center;
}
.logo-responsive {
    width: 30%;
    float: right;
    position: relative;
    top: -35px;
    z-index: 9;
}
.logo-responsive img {
    width: 195px;
}
.dl-menuwrapper button:after {
    content: '';
    position: absolute;
    width: 68%;
    height: 5px;
    /* background: #fff0; */
    top: 10px;
    left: 16%;
    /* box-shadow: 0 10px 0 #fff0, 0 20px 0 #fff0; */
}
.minisitio_empresas {
    background: #fcfcfc;
    padding: 20px;
    height: auto;
}
.bodytab2 .historia {
    width: 100%;
    position: relative;
    height: 100%;
    float: none;
    top: 0;
}
.panel_info_empresa {
    width: 100%;
    height: 150px;
    float: none;
}
.valores .m-btmm {
    margin-bottom: 10px;
    padding: 0!important;
    height: auto;
}
.back-body-empresa .col-md-9 {
    padding: 0!important;
}
.logo-empresa {
    background: #fff;
    width: 210px;
    height: 210px;
    padding: 25px;
    border: 1px solid #dcdcdc;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    overflow: hidden;
}
.empresas_desta {
    background: #fcfcfc;
    padding: 5px;
    height: auto;
}    
.content_login_candidato {
    width: 95%;
    float: none;
    margin: auto;
    position: relative;
    padding-top: 110px;
}
.back_opacity {
    background: #00000075;
    width: 100%;
    float: none;
    margin: auto;
    height: auto;
    position: relative;
    padding: 40px;
}
.header-content-log {
    display: none;
}
.filtros_deskt {
    display: none;
}
.menu-responsive {
    display: block;
}
.btn_aplicar_plaza {
    width: 80%;
    float: none;
    margin: auto;
    text-align: center;
    position: relative;
    margin-top: 20px;
}
.botones_interactivos_details {
    padding-bottom: 20px;
    position: relative;
    display: flex;
    /* width: 60%; */
    float: none;
    margin: auto;
}
.body_profile {
    background: #fcfcfc;
    padding: 40px 10px 40px 10px;
}
.contenedor_left {
    width: 36.33%;
    display: table-cell;
    vertical-align: middle;
}
.title_process {
    color: #333;
    font-family: 'montserrat';
    text-align: center;
    font-size: 10px;
}

@media screen and (max-width: 540px) {
    #denuncia{
        justify-content: center !important;
    }
}
