
.dl-menuwrapper {
    width: 100%;
    max-width: 300px;
    float: left;
    position: relative;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
    -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(255,248,213,0.1);
}

.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: #c62860;
}

.demo-1 .dl-menuwrapper button:hover,
.demo-1 .dl-menuwrapper button.dl-active,
.demo-1 .dl-menuwrapper ul {
    background: #9e1847;
}

/* 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;
}

@media (min-width: 320px) and (max-width: 484px){
.container.demo-1 {
    display: block;
    position: relative;
    top: -20px;
    width: 100%;
    z-index: 9;
}

.demo-1 .dl-menuwrapper button {
    background: #fd4b4b;
}

.demo-1 .dl-menuwrapper button:hover, .demo-1 .dl-menuwrapper button.dl-active, .demo-1 .dl-menuwrapper ul {
    background: #fd4b4b;
}
.logo-header-responsive img {
    width: 250px;
}
.main-header {
    display: none;
}
.menu-responsive{
    display: block!important;
}
.logo-header-responsive {
    width: 70%;
    float: right;
    position: relative;
    top: 20px;
    z-index: 10;
}
.title {
    text-align: center;
    width: 100%;
}
section.trabajos-recientes {
    background: #fcfcfc;
    padding: 10px;
}
.search-bar {
    display: none;
}
.title h1 {
    font-family: 'montserrat';
    color: #fff;
    font-size: 16px;
}
.quiero-mcv {
    width: 100%;
    float: none;
    margin: auto;
    position: relative;
    margin-top: 15px;
}
.back-recent-jobs {
    background: #fff;
    padding: 5px 0 0 10px;
    border: 1px solid #e1e1e1;
    height: 170px;
}
.col35 {
    width: 100%;
    float: left;
}
.photo-company {
    width: 55px;
    height: 55px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    border-radius: 50%;
    position: relative;
    float: left;
    top: 10px;
    margin-right: 20px;
}
.back-recent-jobs .col35 h1 {
    font-size: 14px;
    position: relative;
    top: 10px;
    text-align: left;
    left: 0;
}
.col65 {
    width: 100%;
    float: left;
}
.company-name {
    width: 100%;
    float: left;
    position: relative;
    margin-top: 25px;
}
.company-name p {
    font-size: 14px;
    font-family: 'montserrat';
    text-align: left;
    position: relative;
    top: 0;
}
.location {
    width: 100%;
    float: left;
    position: relative;
    top: 25px;
}
.location p {
    font-size: 14px;
    font-family: 'montserrat';
    text-align: left;
    position: relative;
}
.location {
    width: 50%;
    float: left;
    position: relative;
    top: 0;
}
.back-recent-jobs .col65 img {
    width: 15px;
    float: left;
    position: relative;
    margin-right: 10px;
}
.back-recent-jobs .col65 .btn-aplicar {
    width: 50%;
    float: left;
    padding: 0;
    position: relative;
    margin-right: 0;
    text-align: center;
    top: 0;
}
.back-plazas-destacadas .col-md-12 h2 {
    font-size: 12px;
    color: #fd4b4b;
    background: #ffe2e2;
    padding: 10px;
    position: relative;
    border: 1px solid #fd4b4b;
    width: auto;
}
.loyalty-logos a {
    display: block;
    margin: 0px;
    background-color: rgba(255, 255, 255, 0.5);
    position: relative;
    min-height: 100px;
    overflow: hidden;
    border-radius: 6px;
}
.slider-companies h1 {
    font-size: 20px;
    font-family: 'montserrat-bold';
    color: #0f0f0f;
    text-align: center;
}
section.quieromicv-publicidad {
    background: #1c5f93;
    padding: 80px 10px 80px 10px;
    text-align: center;
}
.mockup-responsive{
    display: block;
    float: none;
    margin: auto;
}
.mockup-desktop{
    display: none;
}
.btn-crearcv {
    position: relative;
    top: 40px;
    width: 120px;
    float: none;
    margin: auto;
}
.content-qmcv {
    position: relative;
    margin-top: 40px;
}
.content-qmcv h2 {
    font-size: 16px;
    font-family: 'montserrat-bold';
    color: #fff;
}
.follow-us {
    position: relative;
    top: 20px;
    width: 250px;
    float: none;
    margin: auto;
    height: 60px;
}
.banderas img {
    width: 26px;
    position: relative;
    top: 0;
    transition: all 0.3s ease;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
}



@media (min-width: 568px) and (max-width: 736px){
.container.demo-1 {
    display: block;
    position: relative;
    top: -20px;
    width: 100%;
    z-index: 9;
}

.demo-1 .dl-menuwrapper button {
    background: #fd4b4b;
}

.demo-1 .dl-menuwrapper button:hover, .demo-1 .dl-menuwrapper button.dl-active, .demo-1 .dl-menuwrapper ul {
    background: #fd4b4b;
}
.logo-header-responsive img {
    width: 250px;
    float: right;
}
.main-header {
    display: none;
}
.menu-responsive{
    display: block!important;
}
.logo-header-responsive {
    width: 70%;
    float: right;
    position: relative;
    top: 20px;
    z-index: 10;
}
.title {
    text-align: center;
    width: 100%;
}
section.trabajos-recientes {
    background: #fcfcfc;
    padding: 40px 10px 40px 10px;
}
.search-bar {
    display: none;
}
.title h1 {
    font-family: 'montserrat';
    color: #fff;
    font-size: 27px;
}
.back-quiero-mcv {
    background: #787a79c9;
    padding: 0 10px;
    width: 240px;
    float: none;
    margin: auto;
}
.back-quiero-mcv-right {
    background: #787a79c9;
    padding: 0 10px;
    width: 160px;
    float: none;
    margin: auto;
}
.quiero-mcv {
    width: 100%;
    float: none;
    margin: auto;
    position: relative;
    margin-top: 15px;
}
.back-recent-jobs {
    background: #fff;
    padding: 5px 10px 5px 10px;
    border: 1px solid #e1e1e1;
    height: 220px;
}
.col35 {
    width: 100%;
    float: left;
}
.photo-company {
    width: 55px;
    height: 55px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    border-radius: 50%;
    position: relative;
    float: left;
    top: 10px;
    margin-right: 20px;
}
.back-recent-jobs .col35 h1 {
    font-size: 14px;
    position: relative;
    top: 10px;
    text-align: left;
    left: 0;
}
.col65 {
    width: 100%;
    float: left;
}
.company-name {
    width: 50%;
    float: left;
    position: relative;
    margin-top: 20px;
}
.company-name p {
    font-size: 14px;
    font-family: 'montserrat';
    text-align: left;
    position: relative;
    top: 0;
}
.location {
    width: 50%;
    float: left;
    position: relative;
    top: 20px;
}
.location p {
    font-size: 14px;
    font-family: 'montserrat';
    text-align: left;
    position: relative;
}
.location {
    width: 50%;
    float: left;
    position: relative;
    top: 20px;
}
.back-recent-jobs .col65 img {
    width: 15px;
    float: left;
    position: relative;
    margin-right: 10px;
}
.back-recent-jobs .col65 .btn-aplicar {
    width: 100%;
    float: left;
    padding: 0;
    position: relative;
    margin-right: 0;
    text-align: center;
    top: 20px;
}
.body-recent-jobs .col-md-8 .col-md-12 {
    padding: 0!important;
    width: 100%;
    float: left;
}
.back-plazas-destacadas .col-md-12 h2 {
    font-size: 12px;
    color: #fd4b4b;
    background: #ffe2e2;
    padding: 10px;
    position: relative;
    border: 1px solid #fd4b4b;
    width: auto;
}
.body-recent-jobs .col-md-8 {
    width: 50%;
    float: left;
}
.body-recent-jobs .col-md-4 {
    width: 50%;
    float: left;
}
.back-plazas-destacadas .col-md-12 {
    background: #fff;
    padding: 20px;
    border: 1px solid #e1e1e1;
    height: 330px;
    margin-bottom: 3px;
    width: 100%;
    float: left;
}
.loyalty-logos a {
    display: block;
    margin: 0px;
    background-color: rgba(255, 255, 255, 0.5);
    position: relative;
    min-height: 100px;
    overflow: hidden;
    border-radius: 6px;
}
.slider-companies h1 {
    font-size: 20px;
    font-family: 'montserrat-bold';
    color: #0f0f0f;
    text-align: center;
}
section.quieromicv-publicidad {
    background: #1c5f93;
    padding: 20px 10px 0px 10px;
    text-align: center;
}
.mockup-responsive {
    display: none;
    float: left;
    margin: auto;
}
.mockup-desktop {
    width: 100%;
}
.btn-crearcv {
    position: relative;
    top: 40px;
    width: 120px;
    float: left;
    margin: auto;
}
.content-qmcv {
    position: relative;
    padding: 0px 0px 0px 20px;
    height: 100%;
}
.col-md-6.footer-right {
    text-align: center;
    padding: 0!important;
    width: 50%;
    float: left;
}
.content-qmcv h1 {
    font-size: 22px;
    font-family: 'montserrat-bold';
    color: #fff;
    text-align: left;
}
.content-qmcv h2 {
    font-size: 14px;
    font-family: 'montserrat-bold';
    color: #fff;
    text-align: left;
}
.content-qmcv p {
    font-size: 14px;
    font-family: 'montserrat';
    color: #fff;
    line-height: 15px;
    position: relative;
    top: 10px;
    text-align: left;
}
.follow-us {
    position: relative;
    top: 20px;
    width: 250px;
    float: none;
    margin: auto;
    height: 60px;
}
.quieromicv-publicidad .col-md-4 {
    width: 40%;
    float: left;
}
.quieromicv-publicidad .col-md-8 {
    width: 60%;
    float: left;
}
.footer-left p {
    font-size: 11px;
    color: #b7c0cd;
    font-family: 'montserrat';
    position: relative;
    margin-left: 30px;
}
.footer-left p:hover {
    font-size: 11px;
    color: #fff;
    font-family: 'montserrat';
    position: relative;
    margin-left: 30px;
    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;
}
.col-md-6.footer-left {
    width: 50%;
    float: left;
}
.col-md-6.footer-right {
    text-align: center;
    padding: 0!important;
    width: 50%;
    float: left;
}
}
@media (min-width: 768px) and (max-width: 800px){
.container.demo-1 {
    display: block;
    position: relative;
    top: -20px;
    width: 100%;
    z-index: 9;
}

.demo-1 .dl-menuwrapper button {
    background: #fd4b4b;
}

.demo-1 .dl-menuwrapper button:hover, .demo-1 .dl-menuwrapper button.dl-active, .demo-1 .dl-menuwrapper ul {
    background: #fd4b4b;
}
.logo-header-responsive img {
    width: 250px;
    float: right;
}
.main-header {
    display: none;
}
.menu-responsive{
    display: block!important;
}
.logo-header-responsive {
    width: 70%;
    float: right;
    position: relative;
    top: 20px;
    z-index: 10;
}
.search-bar .col-md-6 {
    width: 50%;
    float: left;
}
.title h1 {
    font-family: 'montserrat';
    color: #fff;
    font-size: 30px;
}
.search-title h1 {
    font-size: 12px;
    text-align: left;
    width: 67%;
    float: left;
}
.bar {
    width: 100%;
    text-align: left;
    float: left;
}
.search-title input[type="text"] {
    width: 100%;
    padding: 10px;
    font-family: 'montserrat';
    float: left;
}
.search-title1 h1 {
    font-size: 12px;
    text-align: left;
    width: 60%;
    float: left;
}
.search-title1 select {
    width: 37%;
    float: left;
    padding: 11px;
    font-family: 'montserrat';
}
.quiero-mcv .col-md-6 {
    width: 50%;
    float: left;
}
section.trabajos-recientes {
    background: #fcfcfc;
    padding: 30px;
}
section.quieromicv-publicidad {
    background: #1c5f93;
    padding: 80px 10px 0 10px;
}
.quieromicv-publicidad .col-md-4 {
    padding: 0!important;
    width: 50%;
    float: left;
}
.content-qmcv {
    position: relative;
    margin-top: 60px;
}
.footer-left p {
    font-size: 12px;
    color: #b7c0cd;
    font-family: 'montserrat';
    position: relative;
    margin-left: 30px;
}
.footer-left p:hover {
    font-size: 12px;
    color: #fff;
    font-family: 'montserrat';
    position: relative;
    margin-left: 30px;
    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;
}
.col-md-6.footer-left {
    width: 50%;
    float: left;
}
.col-md-6.footer-right {
    width: 50%;
    float: left;
}
.title {
    text-align: center;
    width: 100%;
}
.search-bar .col-md-8{
    width: 66.66666667%;
    float: left;
}
.search-bar .col-md-4 {
    width: 33.33333333%;
    float: left;
}
.go {
    width: 100%;
    float: left;
    position: relative;
    top: 54px;
    left: 0;
}
.go a {
    background: #fd4b4b;
    padding: 13px 59px;
    border: none;
    color: #fff;
    font-family: 'montserrat';
}
.go:hover a {
    background: #f31c1c;
    padding: 13px 59px;
    border: none;
    color: #fff;
    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;
}
}
@media (min-width:800px) and (max-width: 1050px){
.help-header a {
    font-size: 12px;
    color: #000;
    background: transparent;
    padding: 10px 15px;
    font-family: 'montserrat';
}
.help-header:hover a {
    font-size: 12px;
    color: #bbb;
    background: transparent;
    padding: 10px 15px;
    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;
}
.publica-btn a {
    font-size: 11px;
    color: #fff;
    background: #4e4e4e;
    padding: 10px 15px;
    font-family: 'montserrat';
}
.btn-empresa a {
    font-size: 11px;
    color: #fff;
    background: #fd4b4b;
    padding: 10px 15px;
    font-family: 'montserrat';
}
.btn-candidato a {
    font-size: 11px;
    color: #fff;
    background: #26ae62;
    padding: 10px 15px;
    font-family: 'montserrat';
}
.btn-planes a {
    font-size: 11px;
    color: #fff;
    background: #dcc2c3;
    padding: 10px 15px;
    font-family: 'montserrat';
}
section.trabajos-recientes {
    background: #fcfcfc;
    padding: 60px 10px 60px 10px;
}
section.quieromicv-publicidad {
    background: #1c5f93;
    padding: 80px 10px 0 10px;
}
.footer-left p {
    font-size: 14px;
    color: #b7c0cd;
    font-family: 'montserrat';
    position: relative;
    margin-left: 30px;
}
.footer-left p:hover {
    font-size: 14px;
    color: #fff;
    font-family: 'montserrat';
    position: relative;
    margin-left: 30px;
    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;
}
.body-recent-jobs .col-md-8 {
    padding-right: 0!important;
}
.back-plazas-destacadas .col-md-12 h2 {
    font-size: 12px;
    color: #fd4b4b;
    background: #ffe2e2;
    padding: 10px;
    position: relative;
    width: 60%;
    border: 1px solid #fd4b4b;
}
.back-recent-jobs {
    background: #fff;
    padding: 5px 10px 0 10px;
    border: 1px solid #e1e1e1;
    height: 85px;
}
}

/* ═══════════════════════════════════════════════════════════
   TARJETAS DE TRABAJO — Flexbox para móvil
   Reemplaza el layout float + height fijo heredado
═══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  #ticker {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  #ticker li {
    margin-bottom: 8px;
  }

  .back-recent-jobs .row {
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px;
  }

  .back-recent-jobs {
    height: auto !important;
    padding: 10px 12px !important;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  }

  /* Columna superior: logo + título */
  .col35 {
    float: none !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px;
    margin-bottom: 6px;
  }

  .photo-company {
    float: none !important;
    position: relative !important;
    top: 0 !important;
    margin-right: 0 !important;
    width: 40px !important;
    height: 40px !important;
    overflow: hidden !important;
    border-radius: 50% !important;
    flex-shrink: 0;
  }

  /* Especificidad 0,3,1 — iguala la regla de all.css para ganar el cascade */
  .back-recent-jobs .col35 .photo-company img {
    display: block !important;
    width: 40px !important;
    height: 40px !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
  }

  .bubble {
    flex: 1;
    min-width: 0;
    position: static !important;
    display: block !important;
    height: auto !important;
    width: auto !important;
  }

  .bubble h1 {
    display: block !important;
    font-size: 13px !important;
    font-weight: 700;
    margin: 0 !important;
    top: 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  /* Columna inferior: empresa + ubicación + botón aplicar */
  .col65 {
    float: none !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px;
  }

  .company-name {
    float: none !important;
    width: auto !important;
    position: static !important;
    margin-top: 0 !important;
    flex: 1;
    min-width: 0;
  }

  .company-name p {
    font-size: 12px !important;
    margin: 0 !important;
    padding: 0 !important;
    top: 0 !important;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .location {
    float: none !important;
    position: static !important;
    top: 0 !important;
    width: auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px;
    flex-shrink: 0;
  }

  .location p {
    font-size: 11px !important;
    margin: 0 !important;
    color: #777;
    white-space: nowrap;
  }

  .back-recent-jobs .col65 img {
    float: none !important;
    position: static !important;
    margin-right: 0 !important;
    width: 14px !important;
  }

  .back-recent-jobs .col65 .btn-aplicar {
    float: none !important;
    width: auto !important;
    position: static !important;
    top: 0 !important;
    padding: 0 !important;
    flex-shrink: 0;
  }

  /* Especificidad 0,3,1 — iguala a all.css para ganar el cascade */
  .back-recent-jobs .col65 .btn-aplicar a {
    font-size: 10px !important;
    padding: 4px 10px !important;
    border-radius: 14px !important;
    white-space: nowrap !important;
    display: inline-block !important;
    line-height: 1.4 !important;
  }
}
