// Global Helpers + Resets

 body {
    margin: 0;
    padding: 0;
}

.gd-ebay-max-width {
    max-width: 1584px;
    margin: 0 auto;
    padding: 0 15px;
}


.gd-ebay__header {
    position: relative;
}




.gd-ebay-font {
	font-family: "DM Sans", sans-serif;
}


.mobile-hide {
    display: block;
}

.desktop-hide {
    display: none;
}


.gd-ebay__header-main {
    background-color: #fff;
    border-radius: 8px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 124px);
    height: 64px;
    z-index: 1;
}



.gd-ebay__logo {
    max-height: 100%;
    max-width: 150px;
    height: auto;
    width: auto;
}


.gd-ebay__save-btn {
    background-color: #FFC624;
    border-radius: 5px;
    color: #231F20;
    display: flex;
    font-size: 14px;
    font-weight: 700;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    padding: 0 16px;
    height: 45px;
    text-decoration: none;
}


.gd-ebay__save-btn img {
    margin-right: 9px;
}


.gd-ebay__save-btn:hover {
    background-color: #231F20;
    color: #fff;
}

.gd-ebay__save-btn:hover img {
    filter: invert(1);   
}



@media (max-width: 1024px) {
    
    .mobile-hide {
    display: none !important;
    }

    .desktop-hide {
    display: block !important;
    }
    
    .gd-ebay__header-main {
        border-radius: 5px;
        height: 56px;
        width: calc(100% - 60px);
        padding: 0 10px;
    }
    
    .gd-ebay__logo-wrap {
        margin-right: auto;
        margin-left: 20px;
    }
    
    
    .gd-ebay__logo {
        max-width: 110px;
    }
    
    .gd-ebay__save-btn {
        margin-right: 0;
        height: 35px;
    }

}


