/* Start Navigation Bar */

.sp_navbar {
    font-family: 'Hind', sans-serif;
    color: var(--sp-color-font-base);
    border-radius: 4px;
    width: 100%;
    height: 100%;
    position: absolute;
    max-width: 80%;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 1;
}

.sp_navbar .menu {
    display: flex;
    position: relative;
    font-weight: bold;
    height: 100%;
}

@media (max-width: 820px) {
    .sp_navbar .menu {
        display: block;
        position: relative;
        height: 100%;
    }
}

.sp_navbar .menu li {
    flex: 1;
    display: flex;
    text-align: center;
    transition: background-color 0.5s ease;
    padding-left: 10px;
    padding-right: 10px;
}

.sp_navbar .menu a {
    flex: 1;
    justify-content: center;
    display: inline-flex;
    color: var(--sp-color-black);
    text-decoration: none;
    position: relative;
    white-space: nowrap;
    margin: auto;
}

.sp_navbar .menu .container__listItem a {
    color: var(--sp-color-black);
    padding: 10px;
}

.sp_navbar .menu .container__listItem a:hover {

    background-color: #eee;
    padding: 10px;
    border-radius: 5px;
}

.sp_navbar .menu a>.fa {
    font-weight: bold;
    margin-left: 8px;
}

.sp_navbar .menu li:hover {
    background-color: var(--sp-color-base);
}

.sp_navbar .menu li:hover>a {
    color: var(--sp-color-font-base);
}

@media (max-width: 820px) {
    .sp_navbar .menu li:hover .sp_container {
        display: none;
    }

    .fa-angle-down {
        display: none;
    }
}

a.hasDropdown:after {
    position: absolute;
    bottom: -27px;
    left: 50%;
    transform: translateX(-50%);
    height: 0;
    width: 0;
    border: 8px solid transparent;
    border-top-color: #25283d;
    z-index: 203;
}

@media (max-width: 820px) {
    li:hover a.hasDropdown:after {
        display: none;
    }
}

li:hover a.hasDropdown:after {
    content: '';
    border-top-color: var(--sp-color-base);
}

/* End Navigation Bar */

/* Start Single Section Menu */

.sp_container {
    display: flex;
    position: absolute;
    top: 49px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 25%);
    padding: 20px;
    text-align: left;
    margin-bottom: 30px;
    z-index: 202;
    font-size: 0.8em;
    transition: all 0s 0.6s;
    opacity: 0;
}

.sp_navbar .menu li:hover .sp_container {
    /*display: flex;*/
    opacity: 1;
}

.container__list {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    min-width: 0;
    line-height: 3px;
}

.container__listItem {
    flex: 0 0 12%;
    padding: 1px 30px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

@media only screen and (max-width: 1000px) {
    .container__listItem {
        flex: 0 0 25%;
    }
}

.container__listItem>div {
    color: #DB6356;
    text-decoration: underline;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* End Single Section Menu */

/* Start Multiple Section Menu */
.container.has-multi .container__listItem {
    flex-basis: 100%;
}

.container.has-multi .container__list {
    flex-basis: 33.333%;
    border-radius: 4px;
}

.container.has-multi .container__list:not(:last-child) {
    border-right: solid 1px #f3f3f3;
    margin-right: 20px;
}

/* End Multiple Section Menu */
#smartphonica_header .sp_menu {
    flex: 1 0 50%;
    display: inline-flex;
    justify-content: right;
}

#smartphonica_header .sp_menu #menu-main {
    display: flex;
    justify-content: space-between;
    height: 100%;
    float: right;
}

#smartphonica_header .menu-item {
    display: inline-flex;
    padding: 10px;
    /*margin: 5px;
    border-radius: 10px;*/
}

#smartphonica_header .menu-item a {
    color: white;
    font-weight: bold;
    font-size: 1.1em;
    margin: auto;
}

#smartphonica_header .main_menu {
    height: 100%;
    flex: 1 0 75%;
}

#smartphonica_header .sub-menu {
    display: flex;
    position: absolute;
    width: fit-content;
    z-index: 999999999999999;
    background: white;
    top: calc(50px + 28px - 35px);
    right: -300px;
    box-shadow: 0px 0px 10px 0px black;
    transition: right ease 250ms;
    max-width: 300px;
    flex-wrap: wrap;
}

.sub-menu .menu-item {
    flex: 1 0 100%;
    display: unset !important;
}

#smartphonica_header .sub-menu li a {
    color: var(--sp-color-black);
}

#smartphonica_header .sub-menu li:hover>a {
    color: var(--sp-color-font-base)
}

#smartphonica_header .menu-item:hover {
    background-color: #0282cb;
}

#smartphonica_header .menu-item:hover .sub-menu {
    right: 0px;
}

#smartphonica_header .menu-item.current-menu-item {
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(238, 238, 238, 1) 100%);
    margin: 0;
    border-radius: unset;
    /*box-shadow: 0px 0px 10px 0px black;*/

}

#smartphonica_header .menu-item.current-menu-item>a {
    color: var(--sp-color-black);
}

#smartphonica_header .menu-item:hover>a {
    text-decoration: none;
}

.sp_account.loggedout a:before {
    font-family: var(--sp-icon-family);
    content: "\f506";
    margin-right: 10px;
}

.sp_account.loggedout.current-menu-item a:before {
    color: var(--sp-color-black);
}

#smartphonica_header .main_header {
    background-color: var(--sp-color-base);
    display: block;
    height: 50px;
    display: flex;
}

#smartphonica_header .main_header.is_sticky {
    position: fixed;
    width: 100%;
}

#smartphonica_header .logo {
    flex: 1 0 20px;
    margin: unset;
    max-height: 60px;
}

#smartphonica_header .categories {
    height: 50px;
    display: block;
    position: relative;
    background-color: #eee;
}

#smartphonica_header .categories .sp_navbar {
    position: absolute;
}

#smartphonica_header .main_header .logo img {
    max-height: 45px;
    margin: 2px 0px 2px 80px;
}

#header_cart {
    flex: 1 0 5%;
    margin: auto;
    font-size: 1.3em;
    color: white;
    position: relative;
}

#header_cart span {
    background-color: #ff6400;
    padding-left: 5px;
    color: white;
    border-radius: 20px;
    padding-right: 5px;
    font-size: 12px;
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 15px;
    margin-top: 0px;
    line-height: 15px;
}

body.minimalist-header:not(.template-slider) #Header {
    /*position: fixed;*/
    width: 100%;

}

#smartphonica_header {
    transition: box-shadow 0.5s ease;
}

#smartphonica_header.scrolling {
    top: 0;
    position: fixed;
}


.sp_usps {
    height: 28px;
    background-color: var(--sp-color-white);
}

#smartphonica_header {
    width: 100%;
    position: relative;
}

span.sp_rating_logo {
    height: 100%;
    display: inline-block;
}

img.sp_rating_logo_img {
    vertical-align: middle;
}

a.sp_rating_item:hover {
    filter: grayscale(1);
    text-decoration: none;
}

.container__listItem.header>span {
    color: var(--sp-color-base) !important;
}

.container__listItem.header {
    flex: 1 0 100%;
    font-size: 1.2em;
    line-height: 10px;
    padding: 0px 0px;
    background-color: #00000014;
    border-radius: 5px;
    margin-bottom: 3px;
}

@media only screen and (max-width: 820px) {
    #smartphonica_header .categories {
        display: none;
    }

}

@media only screen and (max-width: 767px) {
    .mcb-sidebar.sidebar.sidebar-1.four.columns {
        display: none;
    }
}

/*
@media only screen and (max-width: 767px) {
    .sp_mobile_menu_wrapper:hover .sp_mobile_menu {
        right: 0vw;
        opacity: 1;
    }
}

ul.sp_mobile_items {
    padding: 10px;
    font-size: 2em;
    line-height: 2em;
    color: var(--sp-color-font-base);
}

.sp_mobile_menu {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    opacity: 0;
    right: -100vw;
    background-color: var(--sp-color-base);
    z-index: 99999999;
    transition: opacity ease 1000ms, right ease 500ms;
}

li.sp_mobile_item.sub {
    margin-left: 30px;
}

li.sp_mobile_item>a {
    color: var(--sp-color-font-base);
}
*/
/* HAMBURGER */
#sp_mobile_hamburger .hamburger {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;

    background: var(--sp-color-font-base);
    border-radius: 3px;

    z-index: 1;

    transform-origin: 4px 0px;

    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
        background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
        opacity 0.55s ease;
}

#sp_mobile_hamburger .hamburger:first-child {
    transform-origin: 0% 0%;
}

#sp_mobile_hamburger .hamburger:nth-last-child(2) {
    transform-origin: 0% 100%;
}

/* HAMBURGER END */
#sp_mobile_hamburger {
    display: block;
    position: relative;
    top: 15px;
    left: 30px;

    z-index: 1;

    -webkit-user-select: none;
    user-select: none;
}

#sp_mobile_hamburger a {
    text-decoration: none;
    color: #232323;

    transition: color 0.3s ease;
}

#sp_mobile_hamburger a:hover {
    color: tomato;
}

#sp_mobile_hamburger input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;

    cursor: pointer;

    opacity: 0;
    /* hide this */
    z-index: 2;
    /* and place it over the hamburger */

    -webkit-touch-callout: none;
}

#sp_mobile_hamburger input:checked~.hamburger {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #232323;
}

/*
 * But let's hide the middle one.
 */
#sp_mobile_hamburger input:checked~.hamburger:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#sp_mobile_hamburger input:checked~.hamburger:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
}

.sp_mobile_items {
    position: absolute;
    width: 100vw;
    margin: -100px 0 0 -50px;
    padding: 40px;
    padding-top: 125px;

    background: #ededed;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */

    transform-origin: 0% 0%;
    transform: translate(-100%, 0);

    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    border-radius: 0px 0px 80px 0px;
    box-shadow: 0px 0px 20px 0px black;
}

.sp_mobile_items li {
    padding: 10px 0;
    font-size: 22px;
}

/*
 * And let's slide it in from the left
 */
#sp_mobile_hamburger input:checked~ul {
    transform: none;
}

#sp_mobile_navigation {
    display: none;
}

#sp_mobile_search_wrapper {
    position: absolute;
    width: 100%;
    height: 50px;
    margin-top: 99px;
    z-index: 1;
}

@media only screen and (max-width: 900px) {
    #sp_mobile_navigation {
        display: block;
    }

    .sp_menu {
        display: none !important;
    }

    .categories {
        display: none !important;
    }

    #sp_mobile_search_wrapper {
        margin-top: 49px;
    }
}

li.sp_mobile_item.sub {
    margin-left: 30px;
    font-size: 1.3em;
}

li.sp_mobile_item.main {
    font-weight: 600;
}

nav#sp_mobile_navigation {
    position: absolute;
    z-index: 2;
}

#sp_mobile_search_wrapper #sp_mobile_search input {
    margin-bottom: 0px;
    border: unset;
    border-radius: 5px;
}

@media only screen and (min-width: 767px) {
    #sp_mobile_search_wrapper {
        transition: margin-top ease 200ms, margin-left ease 200ms, width ease 200ms;
    }

    #sp_mobile_search_wrapper.scrolling {
        margin-top: 5px;
        margin-left: 150px;
        width: 40vw;
    }

    #sp_mobile_search_wrapper.scrolling>#sp_mobile_search {
        /*box-shadow: 0px 0px 4px 0px black;*/
        margin-top: unset;
    }

    #Background_Wrapper {
        /*transition: margin-top ease 1000ms;*/
    }
}

@media only screen and (max-width: 767px) {
    div#sp_mobile_search {
        display: block;
        background: #ddd;
        position: relative;
        height: 36px;
        margin: 0;
    }
}

.icon_close {
    display: none;
}

i.icon_search.icon-search-fine {
    position: absolute;
    right: 0;
    font-size: 1.5em;
    background-color: var(--sp-color-base);
    margin: 2px;
    color: white;
    padding: 3px;
    border-radius: 5px;
}

#sp_mobile_search_suggest {
    display: none;
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: var(--sp-color-white);
    padding-top: 90px;
    z-index: -1;
    flex-wrap: nowrap;
}

@media only screen and (max-width: 767px) {
    #sp_mobile_search_suggest.focus {
        display: flex;
    }
}

.sp_mobile_search_suggest_searchwords,
.sp_mobile_search_suggest_categories {
    flex: 1 0 50%;
    transition: flex ease 500ms;
    overflow-y: auto;
    margin-bottom: 100px;
}

#sp_mobile_search_suggest span.title {
    font-weight: bold;
    font-size: 1em;
    text-align: center;
    display: block;
}

.sp_mobile_search_suggest_keywords {
    margin-top: 15px;
}

.sp_mobile_search_suggest_searchwords .title,
.sp_mobile_search_suggest_categories .title {
    border-bottom: 3px solid var(--sp-color-base);
    margin-bottom: 10px;
}

.sp_mobile_search_suggest_searchwords .title.active,
.sp_mobile_search_suggest_categories .title.active {
    border-bottom: 3px solid var(--sp-color-base);
}

.sp_mobile_search_suggest_searchwords .title.notactive,
.sp_mobile_search_suggest_categories .title.notactive {
    border-bottom: unset;
}


.sp_mobile_search_suggest_keywords a {
    line-height: 22px;
    margin-left: 15px;
    display: block;
}

#sp_mobile_search {
    width: 100%;
    transition: width ease 500ms;
}

#sp_mobile_search_cancel_wrapper {
    display: none;
}

@media only screen and (max-width: 767px) {
    #sp_mobile_search_wrapper {
        display: flex;
    }

    #sp_mobile_search_cancel_wrapper.mobile {
        flex: 1 0 20%;
        display: inline;
        height: 36px;
        background: var(--sp-color-white);
    }

    #sp_mobile_search.mobile {
        flex: 1 0 80%;
        position: relative;
        display: inline-block;
        background: var(--sp-color-white);
    }

    span.close {
        color: var(--sp-color-base);
        display: block;
        position: relative;
        margin: auto;
        text-align: center;
        top: 15%;
        bottom: 25%;
        font-weight: bold;
    }
}

.sp_mobile_search_suggest_categories a.mob_nav_sub,
.sp_mobile_search_suggest_categories nav {
    display: block;
}

.sp_mobile_search_suggest_categories nav {
    font-weight: bold;
    margin-left: 10px;
}

.sp_mobile_search_suggest_categories a.mob_nav_sub {
    font-weight: normal;
}

@media only screen and (max-width: 1000px) {
    #smartphonica_header {
        top: 0;
        position: fixed;
    }

    #Background_Wrapper {
        margin-top: 85px;
    }
}

.facetwp-facet input.facetwp-search,
.facetwp-facet input.facetwp-location {
    margin: 0;
    padding-right: 30px;
    min-width: unset !important;
    max-width: 170px !important;
}

a.sp_navigation_header {
    color: var(--sp-color-base) !important;
}