/* body {
    margin: 0px
} */

.header-container {
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 100%;
    font-family: familyLato, sans-serif;
}

.header-container .pivot-container {
    position: relative;
    width: 0;
    height: 0;
}

.desktop-limit-container {
    max-width: 1200px;
    padding-left: 10px;
    padding-right: 10px;
    margin: auto;
}

.top-band {
    height: 40px;
    background-color: #545454;
}

.top-band > div {
    height: inherit;
    display: flex;
}

.top-band .fb-like {
    top: 9px;
}

.top-header-container.stickytop {
    position: fixed;
    background-color: white;
    width: 100%;
    top: 0;
    z-index: 99;
}

.top-header-container .top-header {
    display: flex;
    column-gap: 30px;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
}

.top-header-container .top-header .store-logo {
   max-width: 250px;
   cursor: pointer;
}

.top-header-container .top-header .store-logo img {
   width: 100%;
   margin: auto;
}

.top-header-container .top-header .search-bar input {
    height: 34px;
    width: 570px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.top-header-container .top-header .search-bar {
    display: flex;
}

.top-header-container .top-header .search-bar input:focus-visible {
    outline: unset;
}

.top-header-container .top-header .search-bar .search-btn {
    border-radius: 4px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background-color: #36A45A;
    color: white;    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
}

.top-header-container .top-header .account-btns {
    display: flex;
    align-items: center;
}

.top-header-container .top-header .account-btns .profile-logo {
    font-size: 26px;
    color: #666;
    margin-right: 15px;
    cursor: pointer;
}

.top-header-container .top-header .account-btns .greeting-text {
    font-size: 14px;
    cursor: pointer;
    font-weight: bold;
}

.top-header-container .top-header .account-btns .greeting-text:hover {
    color: #4f8db9;
}

.top-header-container .top-header .account-btns .profile-menus {
    opacity: 0;
    transition: opacity ease-in-out .3s;
    pointer-events: none;
    position: absolute;
    top: 22px;
    left: -100px;
    background: white;
    min-width: 250px;
    font-size: 14px;

    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
    box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
}

.top-header-container .top-header .account-btns .profile-menus.showing {
    opacity: 1;
    pointer-events: all;
}

.top-header-container .top-header .account-btns .profile-menus > a {
    color: unset;
}

.top-header-container .top-header .account-btns .profile-menus > a:hover,
.top-header-container .top-header .account-btns .profile-menus > a:focus,
.top-header-container .top-header .account-btns .profile-menus > a:active {
    color: unset;
    text-decoration: none;
}

.top-header-container .top-header .account-btns .profile-menus > a > div {
    white-space: nowrap;
    padding: 8px 10px;
    min-height: 24px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.top-header-container .top-header .account-btns .profile-menus > a > div i {
    margin-right: 8px;
}

.top-header-container .top-header .account-btns .profile-menus > a > div.sell-your-item-row {
    color: red;
}

.top-header-container .top-header .account-btns .profile-menus > a > div.logout-row {
    background-color: #f6f6f6;
}

.top-header-container .top-header .account-btns .profile-menus > a > div:hover {
    color: #589dce;
    background: #f6f6f6;
}

.top-header-container .top-header .account-btns .profile-menus > a:first-child > div {
    color: white;
    background-color: #0076b6;   
    margin-top: -1px;
    margin-left: -1px;
}

.top-header-container .top-header .account-btns .profile-menus > a > div > span:first-child {
   display: flex;
   justify-content: center;
   width: 30px;
}
    
.top-header-container .top-header .account-btns .profile-menus > a > div:first-child::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    right: 45%;
    top: -13px;
    border: 5px solid transparent;
    border-bottom: 8px solid #0076b6;
    z-index: 2;
}

