html {
    margin-top: 0px !important;
}

body {
    font-family: 'Montserrat', sans-serif;
}

body.page-template-yacht-shopper-dashboard {
    min-height: unset !important;
}

.ys-shopper-header {
    background-color: #FFFFFF;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}

.ys-shopper-header .ys-shopper-header__container {
    display: flex;
    justify-content: space-between;
    padding: 0px 20px;
}

@media screen and (min-width: 540px) {
    .ys-shopper-header .ys-shopper-header__container {
        padding: 0px 25px;
    }
}

.ys-shopper-header .ys-shopper-header__logo img {
    max-width: 140px;
}

@media screen and (min-width: 786px) {
    .ys-shopper-header .ys-shopper-header__logo img {
        max-width: 190px;
    }
}

.ys-shopper-header .ys-shopper-header__user-info {
    display: none;
    align-items: center;
    gap: 20px;
}

@media screen and (min-width: 1024px) {
    .ys-shopper-header .ys-shopper-header__user-info {
        display: flex;
    }
}

.ys-shopper-header .ys-shopper-header__user-info svg {
    width: 30px;
    height: 30px;
}

.ys-shopper-header .ys-shopper-header__user-info-notification-bell {
    position: relative;
    margin-bottom: 0px;
}

.ys-shopper-header .ys-shopper-header__user-info-notification-bell-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: #5DAAD5;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1px;
}

.ys-shopper-header .ys-shopper-header__user-info-sign-out {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0px;
    text-decoration: none;
    color: #002B49;
}

.ys-shopper-header .ys-shopper-header__user-info-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ys-shopper-header .ys-shopper-header__user-info-mobile svg {
    width: 24px;
    height: 24px;
}

@media screen and (min-width: 1024px) {
    .ys-shopper-header .ys-shopper-header__user-info-mobile {
        display: none;
    }
}