/*region  basic*/
body {
    font-family: 'Catamaran', sans-serif;
    font-size: 14px;
    transition: all 0.5s;
    margin: 0;
    padding: 0;
}
p {
    margin-bottom: 20px;
    font-size: 14px;
    color: #01132D;
    line-height: 25px;
}
h1 {
    font-size: 30px;
    font-weight: 300;
    line-height: 40px;
    margin: 0 0 15px;
}
h2 {
    font-size: 25px;
    font-weight: 400;
    line-height: 40px;
    margin-bottom: 15px;
}
h3 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    line-height: 30px;
    margin-bottom: 20px;
}
h4 {
    font-size: 17px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 10px;
}
h5 {
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
    margin-bottom: 10px;
}
img {
    height: auto;
}
a {
    color: #000;
}
a:hover {
    color: #777;
    text-decoration: none;
}
button,
.btn,
button.st-primary {
    background: #c7763f;
    border: none;
    padding: 0 20px;
    margin: 0;
    height: 40px;
    line-height: 40px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 0;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
}
button:hover,
button.st-primary:hover,
.btn:hover,
.btn-primary:hover {
    background: #000;
    color: rgba(255, 255, 255, 0.7);
}
button.st-outline {
    background: none;
    border: 1px solid #000000;
    color: #000;
}
button.st-outline:hover {
    background: none;
    color: rgba(0, 0, 0, 0.7);
}
.material-icons {
    height: 24px;
    width: 24px;
}

.bt-gray-3p {
    border-top: 3px solid #eee;
}

.m-t-10  {
    margin-top: 10px;
}

.hide {
    display: none !important;
}
/*endregion*/

/*region alert*/
.alert {
    position: relative;
    padding: 10px 20px;
    margin-bottom: 30px;
    border: 1px solid transparent;
    border-radius: 0;
    color: #000;
}

.alert button.close {
    background: none;
    padding: 0 15px;
    position: relative;
    top: -10px;
    right: -20px;
}

.alert-success {
    background-color: rgba(40, 210, 130, 0.05);
    border-color: #26D07F;
}

.alert-danger {
    background-color: rgba(250, 90, 90, 0.05);
    border-color: #FF5A5A;
}

.p-t-20 {
    padding-top: 20px;
}

/*endregion*/

/*region notification*/
.notification {
    position: fixed;
    top: 0;
    width: 100%;
    height: 0;
    box-sizing: border-box;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    background: #000;
    overflow: hidden;
    transition: height .2s;
    z-index: 9999999;
    line-height: initial;
}

.notification.active {
    height: 42px;
    padding: 10px;
}

.notification.active.error {
    margin-top: 0;
    background: #E40613;
}

.notification a {
    font-weight: 500;
    color: #fff;
    text-decoration: underline;
}
/*endregion*/

/*region breadcrumb*/
.breadcrumb {
    background: none;
    padding: 0;
    position: relative;
    margin: 30px 0 30px;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.breadcrumb li {
    display: inline;
    padding-right: 10px;
}

.breadcrumb li:after {
    content: "/";
}

.breadcrumb li:last-child:after {
    content: "";
}

.breadcrumb li a {
    display: inline;
    margin-right: 10px;
    font-size: 13px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.breadcrumb li a:hover {
    color: #777;
}

.breadcrumb li:last-child a {
    color: #777;
}

.breadcrumb li:last-child a:hover {
    color: #777;
    text-decoration: none;
    cursor: text;
}
/*endregion*/

/*region pagination*/
.pagination {
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    gap: 7px;
}

.pagination li span,
.pagination li a {
    background: #fff;
    border: 2px solid rgba(0, 0, 0, 0.2);
    display: block;
    padding: 0 12px;
    line-height: 34px;
    font-weight: 500;
    font-size: 13px;
    min-width: 38px;
    text-align: center;
    color: #666;
}
.pagination li span.disabled {
    color: #aaa;
    border: 2px solid rgba(0, 0, 0, 0.05);
}
.pagination li.active span,
.pagination li:hover a {
    background: #c7763f;
    border-color: #c7763f;
    color: white;
}
.bottom-bar {
    padding-bottom: 30px;
}
/*endregion*/

/*region popup*/
.popup {
    width: 100%;
    height: 100%;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999999999;
    background: rgba(0,0,0,.75);
    text-align: center;
}
.f-in {
    transition: visibility 0s linear 500ms , opacity 500ms;
    visibility: visible!important;
    opacity: 1;
}
.popup img {
    vertical-align: middle;
    border-style: none;
    max-width: 100%;
    height: auto;
}
.popup:before {
    content: '';
    display: inline-block;
    height: 100%;
    margin-right: -4px;
    vertical-align: middle;
}
.popup .button.prev {
    border-right: 30px solid #3f3f3f;
    z-index: 99;
}
.popup .button {
    position: absolute;
    top: 50%;
    margin-top: -50px;
    cursor: pointer;
    background: none;
    left: 20px;
    line-height: 0;
    opacity: .9;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
}
.popup .button.next {
    border-left: 30px solid #3f3f3f;
    right: 20px;
    left: auto;
}
.popup .button:after {
    content: "";
    position: absolute;
    top: -12px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}
.popup .button.prev:after {
    right: -27px;
    border-right: 20px solid #c3148f;
}
.popup .button.next:after {
    left: -27px;
    border-left: 20px solid #c3148f;
}
.popup-inner {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    max-width: 800px;
    text-align: left;
    background: #fff;
    margin: 20px;
    border-radius: 0;
}
@media (max-width: 776px) {
    .popup-inner {
        max-width: 80%;
    }
    .popup-inner .msg-wrapper .btn {
        font-size: 10px;
        padding: 0px 15px;
    }
    .popup-inner .msg-wrapper {
        padding: 20px;
    }
}
.popup-inner .msg-wrapper {
    padding: 30px;
    text-align: center;
}
.popup-inner .title {
    font-weight: 500;
}
.popup-inner .counter {
    font-size: 13px;
    opacity: .5;
}
.popup-close {
    width: 30px;
    height: 30px;
    padding: 3px;
    display: inline-block;
    position: absolute;
    top: 5px;
    right: 2px;
    border: none;
    background: #fff;
    cursor: pointer;
}
.popup-close:after, .popup-close:before {
    content: "";
    position: absolute;
    top: 14px;
    left: 8px;
    height: 2px;
    width: 16px;
    border-radius: 30px;
    background: #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.popup-close:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.popup-close .lb-body {
    min-height: 500px;
}
/*endregion*/

/*region cart-shopping*/
.mini-cart {
    position: fixed;
    right: -400px;
    top: 0;
    background: #fff;
    height: 100%;
    width: 360px;
    z-index: 999999;
    max-width: 360px;
    transition: all 300ms ease;
}

.mini-cart.show {
    right: 0;
    box-shadow: 0 0 30px rgba(0,0,0, 0.2);
}

.mini-cart .loader {
    position: absolute;
    top: 47%;
    left: 42%;
}

.header-title {
    background: #000;
    display: flex;
    line-height: 42px;
    padding: 0;
}

.mini-cart .header-title .fa {
    display: inline-block;
    line-height: 42px;
    padding: 0 15px;
}

.mini-cart .header-title .fa:before {
    content: "\f105";
}

.mini-cart .close-icon {
    cursor: pointer;
    color: #fff !important;
    font-size: 20px;
}

.mini-cart .close-icon:hover {
    opacity: 1;
    color: #fff;
}

.mini-cart p {
    text-align: center;
    margin: 0 auto;
    padding-right: 38px;
    color: #fff;
    line-height: 42px;
    font-weight: 500;
}
.mini-cart .content {
    overflow-y: auto;
    height: 100%;
}
.mini-cart .footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0 20px;
}
.promotion-code {
    padding: 7px 0px;
    display: flex;
}
.promotion-code input {
    width: 75%;
    padding: 8px;
    margin-right: 4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 500;
    font-size: 14px;
}
.mini-cart .total {
    color: #000;
    padding: 10px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.mini-cart:last-child .total {
    border: none;
}
.mini-cart .title {
    float: left;
    width: 50%;
    line-height: 30px;
    text-transform: uppercase;
}
.mini-cart .amount {
    text-align: right;
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
}
.checkout-btn button {
    width: 100%;
    cursor: pointer;
}
.popup-inner .btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.popup-inner .btn-wrapper > a {
    margin: 0 10px;
}
.popup-inner .msg-details .material-icons {
    font-size: 40px;
}
.popup-inner .success-msg {
    padding: 15px 0 5px;
}
.popup-inner .cart-info > span {
    padding: 0 5px;
    font-weight: bold;
}

.mini-cart .cart-empty p {
    color: #555;
    font-weight: 500;
    margin: 150px 0 0;
    position: relative;
    padding: 0;
}

.mini-cart .cart-empty p:after {
    display: inline-block;
    content: "";
    width: 48px;
    height: 48px;
    background: url(../icons/account/cart.png);
    position: absolute;
    top: -70px;
    left: 50%;
    margin-left: -24px;
}

.item-wrap:last-child {
    margin-bottom: 220px;
}

.item-wrap {
    position: relative;
    padding: 15px 15px 10px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.item-wrap:hover {
    background: rgba(0, 0, 0, 0.01);
}
.item-wrap > * {
    flex: 1 1 0;
}
.item-wrap .item {
    display: inline-block;
    width: 100%;
    margin-bottom: -4px;
    padding-right: 10px;
    position: relative;
    font-size: 13px;
}
.amount-item {
    font-weight: 600;
    position: absolute;
    right: 10px;
    bottom: 20px;
}
.amount-item:before {
    content: "= ";
}
.amount-item .symbol {
    display: none;
}
.item-cancel {
    position: absolute;
    right: 0px;
    top: 9px;
    cursor: pointer;
    font-size: 14px;
    line-height: 30px;
    padding: 0 10px;
    opacity: .5;
}
.item-cancel:hover {
    opacity: 1;
}
.item-cancel .fa:before {
    content: "\f014";
}
.item-wrap .image {
    float: left;
    margin-right: 5px;
    width: 20%;
    text-align: center;
}
.item-wrap .name {
    line-height: 18px;
    float: right;
    width: 75%;
}
.cart-price {
    margin-top: 10px;
    display: inline-block;
    width: 100%;
    white-space: nowrap;
}
.cart-price > * {
    display: inline-block;
    float: left;
}
.item-wrap .price {
    white-space: nowrap;
    margin-top: 3px;
    font-weight: 500;
}
.item-wrap .price .symbol {
    margin-right: 3px;
    display: none;
}
.quantity-wrapper {
    display: flex;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
}

.quantity-btn .value {
    width: 26px;
    display: inline-block;
    text-align: center;
    line-height: 25px;
    color: #000;
    font-size: 20px;
    padding-bottom: 0px;
    cursor: pointer;
}
.quantity-btn span.add-down.value {
    border-radius: 50px 0 0 50px;
}

.quantity-btn span.add-up.value {
    border-radius: 0 50px 50px 0;
    font-size: 15px;
}

.multiplication-item {
    float: right;
    padding: 0 10px;
}

.quantity-btn .value[disabled] {
    background: rgba(0,0,0,.41);
}

.quantity-btn .quantity {
    width: 28px;
    border: none;
    font-weight: 600;
    text-align: center;
    border-radius: 0;
    height: 26px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.error {
    margin-top: 5px;
    display: inline-block;
}
.error span {
    background-color: yellow;
}
.empty-content {
    text-align: center;
    width: 100%;
    padding: 100px 0;
}

.bounce {
    animation: bounce .9s ease-in-out
}

@keyframes bounce {
    0% {
        transform: translate(0, 0)
    }
    20% {
        transform: translate(0, -20px)
    }
    40% {
        transform: translate(0, 5px)
    }
    65% {
        transform: translate(0, -10px)
    }
    80% {
        transform: translate(0, 2px)
    }
    90% {
        transform: translate(0, -5px)
    }
    100% {
        transform: translate(0, 0)
    }
}


/*endregion*/

/*region Header */
#header {
    background: #111;
    transition:all 1s ease 0s;
    position: relative;
    z-index: 999999;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0.9;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sticky .navbar {
    position: fixed;
    top: 0px;
    width: 100%;
    left: 0;
    animation: slideDown 0.4s ease-out forwards;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
#header.sticky .header-inner.logo img{
    height: 50px;
    width: 50px;
    transition:all 1s ease 0s;
}
#header .material-icons,
#footer .material-icons {
    color: #fff;
}
#footer .all-social-icons a {
    border: 1px solid #fff;
    padding: 7px;
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    font-size: 20px;
    text-align: center;
    line-height: 27px;
    -moz-transition: all .5s ease-out;
    -webkit-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
}
#footer .all-social-icons a:hover{
    background: #fff;
    color: #000;
}

.header-inner {
    align-items: center;
    display: flex;
}
.header-inner.logo {
    justify-content: center;
}
.header-inner.shopping-cart {
    justify-content: flex-end;
}
.header-actions {
    align-items: center;
    display: flex;
    cursor: pointer;
    font-weight: normal;
    font-size: 14px;
}
.header-actions p {
    margin: 6px 0 0 10px;
    color: #999;
    text-transform: uppercase;
}
.header-actions p span,
.header-actions p a {
    color: #fff;
    text-decoration: none;
}
.header-actions p a:hover {
    border-bottom: 1px solid #fff;
}
/*endregion*/

/*region Navbar Style */
.navbar-nav .nav-item {
    margin: 0 78px 0 0;
    position: relative;
}
.navbar-nav .nav-item::after {
    content: "";
    color: transparent;
    position: absolute;
    top: 15px;
    border-right: 1px dotted #111111;
    height: 20px;
    right: -39px;
}
.navbar-nav .nav-item:last-child::after {
    border-right: none;
}
#header .navbar-expand-lg .navbar-nav .nav-link {
    padding: 4px 0 0;
    line-height: 46px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
}
.navbar-nav .nav-link:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    right: 0;
    height: 3px;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
    display: none;
}
.navbar-nav .nav-item.active .nav-link:after,
.navbar-nav .nav-item:hover .nav-link:after {
    display: block;
}
.navbar-nav .nav-item:last-child.active .nav-link:after, .navbar-nav .nav-item:last-child:hover .nav-link:after {
    display : none;
}
#header .navbar {
    z-index: 9999;
    padding: 0;
    background: #fff;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
}
.navbar .navbar-brand {
    text-align: center;
    width: 100%;
    position: relative;
    padding: 25px 0;
}
.navbar-nav .nav-item:last-child {
    margin: 0;
}
.navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    transition: all 0.5s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .active>.nav-link,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.navbar-nav .show>.nav-link {
    color: #111;
}
.navbar-toggler-icon {
    background-image: none;
    width: 40px;
    height: 40px;
}
.navbar-toggler {
    border-color: #111;
    background-color: #111;
    height: 40px;
    width: 40px;
    outline: none;
    padding: 0;
    border-radius: 0;
}
.navbar-toggler .material-icons {
    line-height: 40px;
}

.price-old {
    text-decoration: line-through;
    color: #bd0c02;
    margin-left: 10px;
    font-size: 13px;
}
/*endregion*/

/*region Footer */
#footer {
    background-color: #111111;
}
.footer-block h4 {
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 5px;
    opacity: .5;
}
.footer-block a {
    color: #fff;
}
.footer-middle {
    padding: 50px 0 0;
}
.footer-block ul {
    margin: 0;
    padding: 0;
}
.footer-block p {
    color: #fff;
    font-weight: 300;
}
.footer-block ul li {
    line-height: 20px;
    margin: 0;
    padding: 0 0 10px;
    list-style: none;
}

.footer-block.about-us {
    margin-bottom: 10px;
}
.footer-block ul li a {
    font-size: 14px;
    color: #fff;
    font-weight: 300;
}
.footer-middle .container {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 30px;
}
.sub-footer .container {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0 50px 0;
    margin-top: 2px;
}
.sub-footer .container p {
    font-size: 12px;
    margin: 0;
    color: #777;
    text-align: center;
}
.sign-up-newsletter {
    padding-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sign-up-newsletter p {
    margin: 0;
    color: #fff;
}
form.email-signup {
    display: flex;
}
.sign-up-newsletter input {
    margin: 0 -4px 0 20px;
    color: #fff;
    border: 1px solid #fff;
    background: none;
    padding: 5px 15px;
    height: 40px;
    min-width: 300px;
    outline: none;
}
.sign-up-newsletter button {
    background: #fff;
    border: none;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 2px 20px 0;
}

.vd-items-wrapper .vd-item {
    margin-bottom: 30px;
}
/*endregion*/

/*region store-locator*/
.store-header {
    margin-bottom: 15px;
}

.store-header h2 {
    margin-bottom: 0;
}
.stores {
    padding-top: 15px;
}
.search-store {
    text-align: right;
}
.search-store input {
    border-radius: 0;
    height: 40px;
    padding: 0 15px;
    border: 1px solid #eee;
}
.stores .store {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    margin-bottom: 70px;
}
.stores .store .location {    
    padding: 15px;
    display: flex;
    flex: 25%;
    max-width: 25%;
    align-content: flex-start;
}

.stores .store .location-inner {
    padding: 20px;
    box-shadow: 0 0px 10px rgba(0,0,0,0.1);
    position: relative;
    text-align: left;
    border-radius: 10px;
    width: 100%;
}
.stores .store .image {
    text-align: center;
}
.stores .store .image img {
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 20px;
    width: 120px;
}
.stores .store .phone i{
    margin-right: 5px;
}
.stores .location h3 {
    margin-bottom: 0;
}

.stores .store_footer .closed-day {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.stores .location .map-link {
    display: inline-block;
    vertical-align: middle;
}
.stores .location .map-link a {
    display: flex;
    line-height: 24px;
    padding: 7px 8px 7px 5px;
    border: 1px solid;
}
.stores .location .map-link a span i {
    font-size: 16px;
    margin: 0 5px;
}
.stores .location .map-link a:hover {
    background: #000;
    color: #fff;
}
.stores .location .map-link a .material-icons {
    margin-right: 5px;
}
/*endregion*/
/*start-info-page*/
.info-page {
    max-width: 700px;
    margin: 20px auto 50px;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}
.info-page {
    font-family: 'Catamaran', sans-serif !important;
}
.info-page p,
.info-page span,
.info-page strong {
    font-size: 14px !important;
}
.info-page p b {
    display: inline-block;
    margin-top: 15px;
}
.video-wrapper{
    margin-bottom: 20px;
}

.video-wrapper iframe {
    width: 100%;
    height: 400px;
}

.article-description{
    padding-top: 15px;
}

.meta{
    margin-bottom: 15px;
}

.meta span i{
    color: #636363;
}

.meta span span {
    margin: 0px 8px;
    display: inline-block;
}
.share-on{
    font-weight: bold;
    font-size: 18px;
}

.share-on span.share-ico{
    color: #636363;
    margin: 0px 5px;
    cursor: pointer;
}

.blog-comments{
    margin-top: 15px;
}

.hamburger_menu{
    position: fixed;
    top: calc(100vh - 50%);
    right: 0px;
    z-index: 9999;
    -moz-transition: all .5s ease-out;
    -webkit-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
}

.hamburger_menu:hover{
    right: 0px;
}

.hamburger_icon {
    position: absolute;
    top: 0;
    left: -33px;
    padding: 8px 10px;
    line-height: 10px;
    font-size: 16px;
    border-radius: 8px 0 0 8px;
    color: #fff;
}

.hamburger_menu .menu_social {
    width: 40px;
    text-align: center;
}
.hamburger_menu .menu_social a{
    display: block;
    background: #000;
    padding: 10px 0px;
    line-height: 18px;
    font-size: 20px;
    color: #fff;
    margin-bottom: 5px;
    border: 1px solid #fff;
    -moz-transition: all .5s ease-out;
    -webkit-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
}
.hamburger_menu .menu_social a:hover{
    background: #fff;
    color: #000;
    border-color: #000;
}

summary {
    padding: 1em;
    color: #000;
    margin-bottom: 1em;
    cursor: pointer;
    outline: none;
    border-radius: 0.3em;
    -moz-transition: all .5s ease-out;
    -webkit-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

summary:hover{
    background: #f3f3f3;
}

details[open] summary ~ * {
    animation: open 0.5s ease-in-out;
    padding: 20px 20px 0;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    border-radius: 6px;
}

@keyframes open {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.footer-block .social-links li {
    display: inline-block;
    margin: 5px 10px 20px 0;
}
/*endregion*/

/*region Responsive Style */
@media (min-width: 1366px) {
    .container {
        max-width: 1170px;
    }
}
@media (min-width: 992px) and (max-width: 1024px) {
    .navbar-nav .nav-item {
        margin: 0 48px 0 0;
    }
    .navbar-nav .nav-item::after {
        right: -24px;
    }
}
@media (max-width: 991px) {
    .banner .container {
        left: 0;
        margin-left: 0;
        width: 100%;
        max-width: 100%;
    }
    .banner-section-blurb {
        width: 150px;
        padding: 10px;
    }
    .banner-section-blurb p {
        font-size: 25px;
        line-height: 25px;
        padding: 8px 0;
        font-weight: 300;
    }
    .header-inner {
        position: static;
    }
    .row.header-row {
        position: relative;
    }
    .user-access .header-actions {
        position: absolute;
        right: 50px;
    }
    .header-actions p {
        font-size: 0;
        position: relative;
    }
    .header-actions p span.value.count {
        font-size: 14px;
        position: absolute;
        right: -5px;
        top: -15px;
        background: #333;
        display: inline-block;
        width: 20px;
        line-height: 20px;
        text-align: center;
        border-radius: 16px;
    }
    #header .navbar-expand-lg .navbar-nav .nav-link {
        text-align: left;
        margin-left: 20px;
        color: #fff;
        font-weight: 400;
    }

    .navbar-nav .nav-item::after {
        display: none;
    }
    .navbar-nav .nav-item.active .nav-link:after,
    .navbar-nav .nav-item:hover .nav-link:after {
        display: none;
    }
    .navbar .container .navbar-toggler {
        position: absolute;
        bottom: 60px;
        left: 5px;
        outline: none;
    }
    #header.sticky {
    z-index: 9999;
    position: fixed;
    top: 0px;
    width: 100%;
    left: 0;
    animation: slideDown 0.4s ease-out forwards;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: black;
}
    #header.sticky .navbar .container .navbar-toggler{
        top:3px;
    }
    .banner {
        border-top: none;
        margin-top: 0px;
    }
    .navbar .navbar-brand {
        width: auto;
    }
    .navbar:after {
        display: none;
    }
    #navbarResponsive {
        z-index: 99999;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        text-align: center;
        background-color: #000;
        box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
    }
    .navbar-nav .nav-item {
        border-bottom: 1px solid #111;
        margin: 0;
    }
    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }
    .navbar-nav .nav-link {
        padding: 15px 0px;
    }
    .nav-link.seacrh-bar-action {
        display: none;
    }
    .header-inner {
        width: 33.33%;
    }

    .stores .store .location {
        flex: 50%;
        max-width: 50%;
        justify-content: center;
    }

}
@media (max-width: 767px) {
    h3 {
        font-size: 15px;
    }
    #footer {
        margin-top: 0;
    }
    .footer-middle {
        padding: 20px 0 0;
    }
    .footer-block {
        border-bottom: 1px solid #222;
        text-align: center;
        padding: 20px 15px 10px;
    }
    .footer-block h4 {
        margin-bottom: 10px;
    }
    .footer-block:last-child {
        border-bottom: none;
    }
    .footer-block p:last-child {
        margin-bottom: 0;
    }
    .sign-up-newsletter {
        display: block;
        text-align: center;
    }
    .sign-up-newsletter p {
        margin-bottom: 10px;
    }
    .sign-up-newsletter input {
        min-width: 60%;
    }
    .footer-block ul li {
        display: inline-block;
        margin: 0 7px;
    }
    .sub-footer .container {
        padding: 20px 0;
    }

    .stores .store {
        margin-bottom: 0;
        justify-content: space-around;
    }
    .stores .store .location {
        margin-bottom: 40px;
    }
    .stores .store .image img {
        max-width: 100%;
    }

    .video-wrapper iframe{
        width: 100%;
        height: 350px;
    }
}

@media (max-width: 480px) {
    .stores .store .location {        
        flex: 80%;
        max-width: 80%;
    }

    .search-store input{
        width: 100%;
    }

    .mini-cart{
        width: 100%;
    }
}
/*endregion*/

/*region Search Bar */
.nav-wrapper{
    position: relative;
}
.search-bar {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    height: 100%;
    background-color: #fff;
    display: none;
    padding: 7px 0;
}
.search-bar.searchbox{
    display: block;
}
.search-bar input[type="search"] {
    width: 100%;
    margin: 0;
    height: 100%;
    border: 0;
    background-color: #efefef;
    color: #888;
    outline: 0;
    padding-left: 50px;
}
.search-bar .btn {
    position: absolute;
    left: 24px;
    top: 50%;
    padding: 0;
    background: transparent;
    color: #00000078;
    margin: 0;
    transform: translateY(-50%);
    font-size: 15px;
}

.search-bar #remove_search {
    position: absolute;
    right: 20px;
    font-size: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #00000078;
}
.search-bar .dropdown-menu {
    width: 100%;
}

#search .dropdown-menu .search-item {
    border-bottom: 1px solid #e1e4e7;
}
#search .dropdown-menu .search-item a {
    display: inline-block;
    width: 100%;
    padding: 15px;
    white-space: normal;
}
#search .dropdown-menu .search-item .image {
    float: left;
    width: 60px;
    background: #fafafa;
}
#search .dropdown-menu .search-item .image img {
    max-width: 60px;
}

#search .dropdown-menu .search-item .name {
    margin-left: 70px;
    font-size: 12px;
    line-height: 14px;
    padding-bottom: 5px;
    color: #2b2828;
}
#search .dropdown-menu .search-item .price {
    font-size: 14px;
    margin-left: 70px;
    font-weight: 600;
    color: #222;
}

#search .dropdown-menu .search-item.remainder-count a {
    text-align: center;
    background: #f1f5f7;
    font-size: 13px;
    color: #777;
}

.dropdown-menu::-webkit-scrollbar {
    position: absolute;
    width: 0.7vw;
}
.dropdown-menu::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: black;
}
.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background-color:  #151414;;
}
.dropdown-menu::-webkit-scrollbar-track {
    background-color: #f5f5f5;
}

@media (max-width: 991px) {
    .header-inner.logo img {
        width: 90px;
    }
    .search-bar {
        display: block;
        position: relative;
        margin-top: -7px;
        left: 0;
        transform: translateY(-4px);
        background: transparent;
        padding-bottom: 10px;
    }

    #header .navbar {
        background: black;
    }
    .search-bar input[type="search"] {
        background: white;
        padding: 6px 0;
        padding-left: 20px;
    }

    .search-bar #remove_search {
        display: none;
    }

    .search-bar .btn {
        left: auto;
        right: 10px;
    }
    .on-scroll .search-bar {
        display: none;
    }
    .banner {
        margin-top: 15px !important;
    }
}
/*endregion*/