/* Mobile Menu */ 

.gd-ebay__checkbox-input {
    display: none;
}

label {
    margin: 0;
    padding: 0;
}


.popup {
    display: none;
    background-color: #fff;
    position: absolute;
    top: -16px; 
    left: -20px;
    height: 100vh;
    width: calc(100% + 40px);
    z-index: -1;
}

.gd-ebay__header-icon {
    cursor: pointer;
}

.gd-ebay__header-icon img {
    max-width: 16px;
    max-height: 100%;
    height: auto;
    width: auto;
}

.gd-ebay__header-icon .close {
    display: none;
}

.mobile-menu {
    padding: 100px 0 30px 0;
}

.mobile-menu__single {
    padding: 0 15px;
}

.mobile-menu__single--border {
    border-top: 1px solid #d9d9d9;
    padding-top: 20px;
}

.mobile-menu__title {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.mobile-menu__title a {
   display: block;
   color: #231F20;
   margin-bottom: 20px;
   padding: 5px 0;
   text-decoration: none;
}


.gd-ebay__mobmenu {
    margin: 0;
    padding: 25px 0;
}

.gd-ebay__mobmenu li {
    list-style: none;
}


.gd-ebay__mobmenu span, 
.gd-ebay__mobmenu a
{
    cursor: pointer;
    display: block;
    margin-bottom: 20px;
    color: #231F20;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
}


.gd-ebay__mob-submenu {
    background-color: #f6f6f6;
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 80px;
    display: none;
    height: 100%;
    width: 100%;
}



.gd-ebay__mob-submenu ul {
    margin: 0;
    padding: 0 15px;
}


.gd-ebay__mob-submenu a {
    border-bottom: 1px solid #d9d9d9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #231F20;
    font-size: 14px;
    font-weight: 400;
    padding: 15px 0;
    margin: 0;
    text-decoration: none;
}


.gd-ebay__mob-submenu a:hover,
.gd-ebay__mobmenu span:hover,
.gd-ebay__mobmenu a:hover,
.mobile-menu__title a:hover 
{ 
   color: #FFC624;
}

.gd-ebay__mob-submenu a:nth-last-child() {
    border-bottom: none;
}

.gd-ebay__mobmenu-title {
    cursor: default;
    font-size: 20px !important; 
    font-weight: 700 !important;
    padding: 0 15px;
    margin: 30px 0;
}


.close-menu-label {
    border: 1px solid #FFC624;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px auto 0 auto;
    padding: 10px 16px;
    width: fit-content;
}

.close-menu-label span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

.close-menu-label img {
    margin-right: 7px;
}


/* Checkboxes */

.gd-ebay__checkbox-input:checked + label + .gd-ebay__mob-submenu {
  display: block;
}


.gd-ebay__checkbox-input:checked + .popup {
    display: block;
}


#openMenu:checked ~ label .gd-ebay__header-icon .bars {
  display: none !important;
}

#openMenu:checked ~ label .gd-ebay__header-icon .close {
  display: block !important;
}


.close-menu-checkbox:checked ~ .gd-ebay__mob-submenu {
  display: none;
}

/* Desktop Mega Menu */ 


.gd-ebay__megamenu {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    height: 100%;
}


.gd-ebay__megamenu li {
    position: relative;
    list-style: none;
    height: 100%;
}

.gd-ebay__submenu {
    background-color: #f6f6f6;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
    border-radius: 5px;
    display: none;
    margin-top: 20px;
    position: absolute;
    padding: 40px;
    left: 0;
    top: calc(100% + 3px);
}


.gd-ebay__submenu--last-submenu {
    left: -240px;
}


.gd-ebay__submenu-title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    padding-bottom: 20px;
    width: 100%;
}

.gd-ebay__submenu ul {
    margin: 0;
    padding: 0;
    column-gap: 30px;
    grid-template-rows: repeat(5, max-content);
    grid-auto-flow: column;
    display: grid;
}


.gd-ebay__submenu a {
     border-bottom: 1px solid #d9d9d9;
     color: #231F20;
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-size: 14px;
     font-weight: 400;
     text-decoration: none;
     white-space: nowrap;
     padding: 15px 0;
     width: 240px;
}

.gd-ebay__submenu img {
    margin-left: auto;
}


.gd-ebay__menu-link {
    color: #231F20;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    padding: 0 20px;
    position: relative;
    height: 100%;
}


.gd-ebay__menu-link:before {
    content: '';
    position: absolute;
    bottom: -25px;
    height: 25px;
    width: 100%;
}


.gd-ebay__megamenu li:hover .gd-ebay__submenu {
    display: block;
}


.gd-ebay__submenu a:hover { 
    color: #FFC624;
}


@media (max-width: 1450px) {
    .gd-ebay__menu-link {
        padding: 0;
    }
    
    .gd-ebay__submenu--last-submenu {
        left: -350px;
    }
}
    

