.pf-responsive-menu{
    position: relative;
    display: flex;
}

.pf-responsive-menu__button {
    background: transparent !important;
    padding: 0;
    height: 30px;
    width: 26px;
    margin-right: 20px;
}

.pf-responsive-menu__button--hide {
    display: none;    
}

.pf-responsive-menu__icon {
    width: 100%;
}

/* BLOCK */

.pf-responsive-menu__nav {
    position: fixed;
    top: 0;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    height: 100% !important;
    z-index: 1;
    pointer-events: none;
}

/* .pf-responsive-menu__nav:before {
    position: absolute;
    content: "";
    background-color: rgba(0,0,0,.5);
    height: 100% !important;
    width: 100% !important;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 0;
    transition: 250ms;
} */

.pf-responsive-menu__nav--active {
    pointer-events: auto;
}

/* .pf-responsive-menu__nav--active:before {
    opacity: 1;
	cursor: url('/wp-content/uploads/2023/03/mobile-menu-close.svg'), crosshair;
} */


.pf-responsive-menu__list {
    background: white;
    position: relative;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 300px;
    height: 100%;
    transform: translatex(-100%);
    transition: 250ms;
    z-index: 1;
    pointer-events: auto;
}

.pf-responsive-menu__list--active {
    transform: translatex(0%);
}


.pf-responsive-menu__list nav {
    display: flex;
    flex-direction: column;
}

.pf-responsive-menu__link {
    display: inline-flex;
    padding: 10px;
    font-family: "Bebas Neue";
    font-size: 22px;
    color: #293462;
    border-bottom: 1px solid #293462;
}

.pf-responsive-menu__tchat a {
    display: block;
    background: #0D8281;
    padding: 10px;
    margin: 5px;
    border-radius: 15px;
    text-align: center;
    color: white;
    font-family: "Montserrat";
    font-size: 16px;
    border: 2px solid #0D8281;
    transition: 250ms;
}

.pf-responsive-menu__tchat a:hover {
    background: white;
    color: #0D8281;
}


.pf-responsive-submenu{
    transition: 250ms;
    max-height: 0;
    height: 100%;
    overflow: hidden;
}

.pf-responsive-submenu--active {
    max-height: 100%;
}                                   

.pf-menu-has-sub{
    display: flex;
    justify-content: space-between;
    padding-right: 20px;
}

.pf-menu-has-sub:after {
    content: url('/wp-content/uploads/2023/03/Vector-1.svg');
    transform: rotate(0);
    transition: 250ms;
}

.pf-menu-has-sub--active:after {
    transform: rotate(90deg);
}

/* COLORED */
.pf-rsubmenu__link--cyan {
	color: #0D8281 !important;
}

.pf-submenu__link--blue {
	color: #293462 !important;
}

.pf-rsubmenu__link--purple {
	color: #46004D !important;
}

.pf-rsubmenu__link--pink {
	color: #E0144C !important;
}

.pf-rsubmenu__link--orange {
	color: #CB4C00 !important;
}

.pf-rsubmenu__link--yellow {
	color: #D57310 !important;
}


/* ICONS */

.pf-rsubmenu__link--shoes:before {
    content: url('/wp-content/uploads/2023/03/shoes.webp');
}

.pf-rsubmenu__link--panties:before {
    content: url('/wp-content/uploads/2023/03/panties.webp');
}

.pf-rsubmenu__link--sun:before {
    content: url('/wp-content/uploads/2023/03/sun.webp');
}

.pf-rsubmenu__link--heart:before {
    content: url('/wp-content/uploads/2023/03/heart.webp');
}

.pf-rsubmenu__link--home:before {
    content: url('/wp-content/uploads/2023/03/home.webp');
}

.pf-rsubmenu__link--computer:before {
    content: url('/wp-content/uploads/2023/03/computer.webp');
}

.pf-rsubmenu__link--shoes, 
.pf-rsubmenu__link--panties,
.pf-rsubmenu__link--sun, 
.pf-rsubmenu__link--heart,
.pf-rsubmenu__link--home, 
.pf-rsubmenu__link--computer {
    display: flex;
    gap: 10px;
    padding-left: 30px;
}

.elementor-widget-pf_menu_responsive {
    margin: 0 !important;
}

/* Overlay */
.pf-responsive-menu__overlay {
    position: absolute;
    content: "";
    background-color: rgba(0,0,0,.5);
    height: 100% !important;
    width: 100% !important;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 0;
    transition: 250ms;
}

.pf-responsive-menu__overlay--active {
    opacity: 1;
	cursor: url('/wp-content/uploads/2023/03/mobile-menu-close.svg'), crosshair;
}

@media screen and (min-width: 1025px) {
    .pf-responsive-menu__nav {
        display: none;
    }
}