.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: 100%;
    height: 45px;
    color: #fff;
    text-indent: 0;
    padding: 11px;
    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) {
    .btn-login-qmcv {
        width: 90%;
        float: none;
        padding: 0;
        position: relative;
        text-align: center;
        top: 15px;
        margin: auto;
        margin-bottom: 10px;
    }

    .btn-login {
        width: 90%;
        float: none;
        padding: 0;
        position: relative;
        text-align: center;
        top: 15px;
        margin: auto;
        margin-bottom: 10px;
    }

    .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;
        overflow: hidden;
    }

    #dropdown_head ul {
        position: absolute;
        top: 100%;
        right: 0px;
        width: 100%;
        padding: 5px 0px;
        display: none;
        background: #fff;
        border: 1px solid #e4e4e4;
        z-index: 9;
        list-style: none;
    }

    #dropdown_head_ingreso ul {
        position: absolute;
        top: 100%;
        right: 0px;
        width: 100%;
        padding: 5px 0px;
        display: none;
        background: #fff;
        border: 1px solid #e4e4e4;
        z-index: 9;
        list-style: none;
    }

    #dropdown_head_ingreso ul li {
        text-decoration: none;
        display: block;
        color: #fd4b4b;
        padding: 7px 15px;
        text-align: center;
        font-family: 'montserrat';
        font-size: 14px;
    }

    #dropdown_head_regis ul li {
        text-decoration: none;
        display: block;
        color: #fd4b4b;
        padding: 7px 15px;
        text-align: center;
        font-family: 'montserrat';
        font-size: 14px;
    }

    #dropdown_head ul li {
        text-decoration: none;
        display: block;
        color: #fd4b4b;
        padding: 7px 15px;
        text-align: center;
        font-family: 'montserrat';
        font-size: 14px;
    }

    #dropdown_head_regis ul {
        position: absolute;
        top: 100%;
        right: 0px;
        width: 100%;
        padding: 5px 0px;
        display: none;
        background: #fff;
        border: 1px solid #e4e4e4;
        z-index: 9;
        list-style: none;
    }

    section.menu-header {
        display: block;
        position: relative;
        height: auto;
    }

    .btn-elegirpais {
        padding: 0;
        position: relative;
        margin-right: 0;
        text-align: center;
        width: 100%;
        float: left;
        z-index: 2;
    }

    .btn-registro {
        padding: 0;
        position: relative;
        margin-right: 0;
        text-align: center;
        width: 100%;
        float: left;
    }

    .btn-ingreso {
        padding: 0;
        position: relative;
        margin-right: 0;
        text-align: center;
        width: 100%;
        float: left;
        z-index: 999999999999;
    }

    .img-pais img {
        width: 15px;
    }

    .img-pais {
        width: 60%;
        float: none;
        text-align: center;
        padding-top: 0;
        position: absolute;
        top: 134px;
    }

    #dropdown_head_ingreso {
        display: block;
        padding: 0px 0;
        margin: 0 auto;
        position: relative;
        cursor: pointer;
        border-left: none;
        background: transparent;
        font-size: 12px;
        color: #7e7e7e;
        font-family: 'montserrat';
        font-weight: normal;
        height: 50px;
        padding-top: 15px;
        -webkit-transition: all 0.15s linear;
        -moz-transition: all 0.15s linear;
        -ms-transition: all 0.15s linear;
        -o-transition: all 0.15s linear;
        transition: all 0.15s linear;
    }

    #dropdown_head_regis {
        display: block;
        padding: 0px 0;
        margin: 0 auto;
        position: relative;
        cursor: pointer;
        border-left: none;
        background: transparent;
        font-size: 12px;
        color: #7e7e7e;
        font-family: 'montserrat';
        font-weight: normal;
        height: 50px;
        padding-top: 15px;
        -webkit-transition: all 0.15s linear;
        -moz-transition: all 0.15s linear;
        -ms-transition: all 0.15s linear;
        -o-transition: all 0.15s linear;
        transition: all 0.15s linear;
    }

    #dropdown_head {
        display: block;
        padding: 0px 0;
        margin: 0 auto;
        position: relative;
        cursor: pointer;
        border-left: none;
        background: transparent;
        font-size: 12px;
        color: #7e7e7e;
        font-family: 'montserrat';
        font-weight: normal;
        height: 35px;
        /* padding-top: 15px; */
        -webkit-transition: all 0.15s linear;
        -moz-transition: all 0.15s linear;
        -ms-transition: all 0.15s linear;
        -o-transition: all 0.15s linear;
        transition: all 0.15s linear;
    }

    .header-content .content-right {
        width: 100%;
        float: left;
        height: auto;
    }

    .header-img .feria {
        float: none;
        padding: 0 0px;
        text-align: center;
    }

    .header-content .header-img {
        width: 100%;
        float: none;
        margin: auto;
        text-align: center;
        height: auto;
    }

    .header-content {
        display: block;
        width: 100%;
        position: relative;
        z-index: 9;
        background: #fff;
        height: 180px;
        -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);
    }

    .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: 8;
    }

    .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;
    }

    /*.dl-menuwrapper button:after {
    content: 'Filtros';
    position: absolute;
    width: 68%;
    height: 5px;
    background: #fff;
    top: 10px;
    left: 16%;
    box-shadow: 0 10px 0 #fff, 0 20px 0 #fff;
}*/
    .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;
    }

    .botones_interactivos {
        height: 110px;
        width: 100%;
        text-align: center;
    }

    .aplicar_btn {
        width: auto;
        float: none;
        position: relative;
        top: 11px;
        margin-right: 0;
    }

    .share_friends {
        width: auto;
        float: none;
        position: relative;
        top: 30px;
    }

    .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: 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;
    }


    /* MENU RESPONSIVE MENU ALLIANCE BANTRAB */
    .header-content-bantrab .content-right {
        width: 100%;
        float: left;
        height: auto;
    }

    .header-img-bantrab .feria {
        float: none;
        padding: 0 0px;
        text-align: center;
    }

    .header-content-bantrab .header-img-bantrab {
        width: 100%;
        float: none;
        margin: auto;
        text-align: center;
        height: auto;
    }

    .header-content-bantrab {
        display: block;
        width: 100%;
        position: relative;
        z-index: 9;
        background: #09728f;
        height: 180px;
        -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-content-log-bantrab {
        display: none;
    }

    .empleos_bantrab {
        padding: 0;
        position: relative;
        margin-right: 0;
        text-align: center;
        width: 100%;
        float: left;
    }

    #dropdown_head_empleo {
        height: 50px;
    }

    .active_home_bantrab {
        background: #09728f;
        color: #fff !important;
      

    /* FIN */

}

@media (min-width: 568px) and (max-width: 736px) {
    .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 {
        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;
    }

    
    /* MENU RESPONSIVE MENU ALLIANCE BANTRAB */
    .header-content-bantrab .content-right {
        width: 100%;
        float: left;
        height: auto;
    }

    .header-img-bantrab .feria {
        float: none;
        padding: 0 0px;
        text-align: center;
    }

    .header-content-bantrab .header-img-bantrab {
        width: 100%;
        float: none;
        margin: auto;
        text-align: center;
        height: auto;
    }

    .header-content-bantrab {
        display: block;
        width: 100%;
        position: relative;
        z-index: 9;
        background: #09728f;
        height: 180px;
        -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-content-log-bantrab {
        display: none;
    }

    .empleos_bantrab {
        padding: 0;
        position: relative;
        margin-right: 0;
        text-align: center;
        width: 100%;
        float: left;
    }

    #dropdown_head_empleo {
        height: 50px;
    }

    .active_home_bantrab {
        background: #09728f;
        color: #fff !important;
      

    /* FIN */

}

@media (min-width: 768px) and (max-width: 800px) {
    .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;
    }
}

@media (min-width:800px) and (max-width: 1050px) {
    .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;
    }
}