.main-header__menu__toggle-container{
    cursor: pointer;
}
.main-header__menu__toggle-button {
    display: inline-block;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
}

.main-header__menu__toggle-button input {
    display: none;
}

.main-header__menu__toggle-button span {
    position: absolute;
    height: 4px;
    width: 30px;
    background: #192346;
    border-radius: 2px;
    left: 0;
    transition: all 0.3s ease;
}

.main-header__menu__toggle-button span:nth-child(2) {
    top: 0;
}
.main-header__menu__toggle-button span:nth-child(3) {
    top: 10px;
}
.main-header__menu__toggle-button span:nth-child(4) {
    bottom: 0;
}

.main-header__menu__toggle-button input:checked ~ span:nth-child(2) {
    transform: rotate(45deg);
    top: 10px;
}
.main-header__menu__toggle-button input:checked ~ span:nth-child(3) {
    opacity: 0;
}
.main-header__menu__toggle-button input:checked ~ span:nth-child(4) {
    transform: rotate(-45deg);
    bottom: 10px;
}

.e-n-menu-content > div{
    background-color: transparent;
}

body:not(.elementor-editor-active) .main-header{
    margin-bottom: -64px;
}

.mnd-footer-menu {
    display: grid;
    grid-template-columns: repeat(var(--footer-row-count), 1fr);
}

.mnd-footer-menu a{
    color: #fff !important;
}

.mnd-footer-menu a:hover{
    text-decoration: underline;
}

.mnd-footer-menu .footer-column {
    flex: 1 1 200px;
}
.footer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-head a{
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-head a img{
    width: 16px;
}

.footer-toggle {
    display: none;
    border: none;
    height: 29px;
    width: 29px;
    position: relative;
    cursor: pointer !important;
    background-color: transparent !important;
    padding: 0 !important;
}
.footer-toggle .toggle-btn{
    border: 2px solid #c6a419;
    border-radius: 50%;
    display: block;
    height: 29px;
    position: relative;
    width: 29px;
}
.footer-toggle .toggle-btn::after{
    height: 15px;
    width: 2px;
}

.footer-toggle .toggle-btn::before{
    height: 2px;
    width: 15px;
}

.footer-toggle .toggle-btn::after,
.footer-toggle .toggle-btn::before{
    background-color: #c6a419;
    content: "";
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.footer-toggle[aria-expanded="true"] .toggle-btn::after{
    transform: translate(-50%, -50%) rotate(90deg);
}

.footer-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-submenu li {
    margin-bottom: 0.25rem;
}
.footer-submenu a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    font-size: 14px;
}
.footer-submenu a:hover {
    opacity: 1;
}

/* Hide/show children and toggle button on small screens */
@media (max-width: 768px) {
    .mnd-footer-menu{
        grid-template-columns: 1fr;
    }

    .footer-head{
        margin-bottom: 0;
        padding: 20px;
        border-bottom: 1px solid #5a5a5a;
    }

    .footer-head a img{
        display: none;
    }

    .footer-toggle {
        display: inline-block;
    }
    .footer-child {
        background-color: #414141;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
    }
    .footer-child.open {
        max-height: 500px;
    }

    .footer-submenu li{
        padding: 18px 20px;
    }

    .footer-submenu li:not(:last-of-type){
        border-bottom: 1px solid #5a5a5a;
    }


    .footer-submenu li a{
        display: block;
        position: relative;
    }

    .footer-submenu li a::before{
        background-image: url(/wp-content/uploads/2025/08/right-arrow.png);
        background-position: 50%;
        background-repeat: no-repeat;
        background-size: cover;
        content: "";
        height: 14px;
        position: absolute;
        right: 10px;
        top: 50%;
        width: 13px;
    }
}


/**

 */

.parent-height{
    height: 100%;
}

.parent-height > *{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mb-0 p{
    margin-bottom: 0;
}

.hover{
    cursor: pointer;
    transition: opacity .3s ease;
}

.hover:hover{
    opacity: .5;
    transition: opacity .3s ease;
}

/**

 */
.menu-btn img{
    width: 18px;
}

.menu-btn .close{
    display: none;
}

/***

 */


.mobile-cart__overlay {
    height: 100vh;
    display: none;
}

body.menu-open .mobile-cart__overlay{
    display: block;
}

.mobile-cart{
    background-color: #fff;
    height: calc(100% - 64px);
    overflow: auto;
    position: fixed;
    right: -120%;
    top: 64px;
    transition: right 1s;
    width: 260px;
}

body.single-elementor_library.postid-393 .mobile-cart{
    right: 0 !important;
}

body.menu-open .mobile-cart{
    right: 0;
    transition: right .5s;
}

body.logged-in .mobile-cart{
    top: 96px;
}

/*body{*/
/*    overflow: hidden;*/
/*}*/

.mobile-cart .mnd-footer-menu{
    grid-template-columns: 1fr;
}

.mobile-cart .mnd-footer-menu a{
    color: #000 !important;
}

.mobile-cart .footer-head a img{
    display: none;
}

.mobile-cart .footer-toggle{
    display: block;
}

.mobile-cart .footer-child{
    background-color: #f6f6f6;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.mobile-cart .footer-child.open{
    max-height: 500px;
    transition: max-height .3s ease;
}

.mobile-cart .footer-head{
    padding: 28px 16px 16px;
    border-bottom: 2px solid #e8e8e8;
    margin-bottom: 0;
}

.mobile-cart .footer-submenu li{
    padding: 16px 42px 15px 24px;
    border-bottom: 2px dotted #e8e8e8;
    margin-bottom: 0;
}

.mobile-cart .footer-submenu li a{
    position: relative;
}

.mobile-cart .footer-submenu li a{
    display: block;
    position: relative;
}

.mobile-cart .footer-submenu li a::before{
    background-image: url(/wp-content/uploads/2025/08/right-arrow.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    height: 14px;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
}

/**

 */

.e-loop-item:has(.press__loop){
    position: relative;
    background-color: #fcfcfc;
    box-shadow: 0 2px 6px hsla(0, 0%, 65%, .5);
}

.e-loop-item:has(.press__loop)::after {
    background: linear-gradient(180deg, #f7cb7a 0, #eef0b3 100%) !important;
    clip-path: polygon(100% calc(100% - 95px), calc(100% - 193px) 100%, 100% 100%);
    content: "";
    height: 100% !important;
    left: 0;
    margin: 0 !important;
    position: absolute;
    top: 0;
    transition: clip-path .3s;
    width: 100% !important;
}

.e-loop-item:has(.press__loop):hover::after{
    clip-path: polygon(100% -100%, -100% 100%, 100% 100%);
    transition: clip-path .3s;
}

.e-loop-item:has(.press__loop)::before {
    background-image: url('/wp-content/uploads/2025/08/right-arrow.png');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 16px;
    content: "";
    height: 14px;
    position: absolute;
    right: 16px;
    width: 15px;
    z-index: 3;
}

.elementor-pagination{
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.elementor-pagination .page-numbers{
    font-size: 20px;
}

.wpcpro-wrapper .wpcp-carousel-section.nav-bottom-right .wpcp-prev-button{
    right: 60px !important;
}

.wpcp-prev-button,
.wpcp-next-button{
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.wpcp-prev-button,
.wpcp-next-button,
.page-numbers.prev,
.page-numbers.next{
    width: 44px !important;
    height: 44px !important;
    background-color: #fdfdfd !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 6px hsla(0, 0%, 65%, .5);
    display: inline-block;
    position: relative;
}

.wpcp-prev-button:hover,
.wpcp-next-button:hover,
.page-numbers.prev:hover,
.page-numbers.next:hover{
    opacity: .6;
}

.page-numbers.prev::before,
.page-numbers.next::before{
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    height: 12px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 7px;
}

.page-numbers.prev::before{
    background-image: url("/wp-content/uploads/2025/08/left.png");
}

.page-numbers.next::before{
    background-image: url("/wp-content/uploads/2025/08/right.png");
}
.elementor-widget-text-editor ul{
    padding: 0;
}
.elementor-widget-text-editor ul li{
    list-style: none;
    padding-left: 2rem;
    position: relative;
	margin-bottom: .5rem;
}

.elementor-widget-text-editor ul li::before{
    content: '';
    position: absolute;
    left: 0;
	top: 8px;
/*     top: 50%; */
/*     transform: translateY(-50%); */
    width: 10px;
    height: 10px;
    background-color: #c6a419;
}

div[data-elementor-type="wp-post"],
div[data-elementor-type="wp-post"] > div{
    padding: 0;
}