/* Custom Font
=================================================================== */
/*
    font-family: 'Poppins', sans-serif; - Primary
    font-family: 'Oswald', sans-serif; - Headings
    font-family: 'Birthstone Bounce', cursive;
    font-family: 'Poppins', sans-serif;
    font-family: 'Roboto Flex', sans-serif;
*/

/* =================================================================
base layout
================================================================= */

html {
    font-family: 'Roboto Flex', sans-serif;
    box-sizing: border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

body {
    margin: 0;
    color: #121212;
    color: #fff;
    overflow-x: hidden;
    padding: 0;
    padding-top: 75px;
    font-size: 16px;
    line-height: 1.4;
}

@media screen and (min-width: 800px) {
    body {
        font-size: 18px;
        padding-top: 78px;
    }
}

.wrap-it {
    max-width: 1440px;
    margin: 0 auto;
}

@media screen and (min-width: 800px) {
    .flex-wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .flex-wrap.stretch {
        align-items: stretch;
    }

    ul.deals-list li {
        width: 30%;
    }
}

.flex-wrap.stretch {
    align-items: stretch;
}

img {
    width: 100%;
}

.hide-me {
    display: inline-block;
    overflow: hidden;
    width: 0;
    height: 0;
}

.anchor {
    display: block;
    position: relative;
    top: -118px;
    visibility: hidden;
}

@media screen and (min-width: 800px) {
    .anchor {
        top: -120px
    }
}

/* =================================================================
Header
================================================================= */

header {
    padding: 10px 0 0;
    background: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    box-shadow: 0 0px 17px rgba(0,0,0,.6);
    background: #040404;
    background: -moz-linear-gradient(3deg, #040404 40%,#282828 100%);
    background: -webkit-linear-gradient(3deg, #040404 40%,#282828 100%);
    background: linear-gradient(3deg, #040404 40%,#282828 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#040404', endColorstr='#282828',GradientType=1 );
}

.logo {
    max-width: 160px;
    width: 40%;
    padding: 0 0 5px;
    margin: 0 10px;
    display: inline-block;
    vertical-align: middle;
}

.menu-icon {
    width: 25px;
    height: 19px;
    float: right;
    display: inline-block;
    cursor: pointer;
    /* position: relative;
    margin: 19px 0 0; */
    z-index: 8;
    background: transparent;
    border: 0;
    position: absolute;
    /* float: right;
    margin-top: 10px; */
    right: 10px;
    top: 50%;
    transform: translate(0, -50%);
}

.menu-icon span {
    width: 25px;
    height: 3px;
    border-radius: 3px;
    background: #ffba00;
    position: absolute;
    transition: all 145ms ease;
    transform-origin: center center;
    left: 0;
}

.menu-icon span:nth-of-type(1) {
    top: 0;
}

.menu-icon span:nth-of-type(2) {
    top: 8px;
}

.menu-icon span:nth-of-type(3) {
    top: 16px;
}

.menu-icon.nav-open {
    transition: .0s ease-in-out;
}

.menu-icon.nav-open span:nth-of-type(1) {
    top: -3px;
    width: 25px;
    height: 2.5px;
    transform: translate(0,10px) rotate(45deg);
    -webkit-transform: translate(0,10px) rotate(45deg);
    -moz-transform: translate(0,10px) rotate(45deg);
    -o-transform: translate(0,10px) rotate(45deg);
    -ms-transform: translate(0,10px) rotate(45deg);
    transition: all 145ms ease;
    transform-origin: center center;
}

.menu-icon.nav-open span:nth-of-type(2) {
    background: $white;
    opacity: 0;
    transition: all 5ms ease;
    transform-origin: center center;
}

.menu-icon.nav-open span:nth-of-type(3) {
    top: 9px;
    width: 25px;
    height: 2.5px;
    transform: translate(0,-2px) rotate(-45deg);
    -webkit-transform: translate(0,-2px) rotate(-45deg);
    -moz-transform: translate(0,-2px) rotate(-45deg);
    -o-transform: translate(0,-2px) rotate(-45deg);
    -ms-transform: translate(0,-2px) rotate(-45deg);
    transition: all 145ms ease;
    transform-origin: center center;
}

.menu-icon.nav-open .menu-text {
    opacity: 0;
    display: none;
}

nav.main-nav {
    position: absolute;
    background: #121212;
    width: 100%;
    display: none;
}

nav.main-nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav.main-nav li {
    text-align: center;
    border-bottom: 1px solid #fff;
}

nav.main-nav li:last-of-type {
    border: none;
}

nav.main-nav a {
    color: #fff;
    text-decoration: none;
    padding: 13px 0;
    display: block;
}

nav.main-nav a:hover,
nav.main-nav a:focus {
    color: #ffba00;
}

@media screen and (min-width: 800px) {
    .menu-icon {
        display: none;
    }

    nav.main-nav {
        position: static;
        background: transparent;
        width: calc(100% - 185px);
        display: inline-block !important;
        vertical-align: middle;
    }

    nav.main-nav ul {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-justify-content: flex-end;
        -webkit-justify-content: flex-end;
        justify-content: flex-end;
        -ms-align-items: flex-end;
        -webkit-align-items: flex-end;
        align-items: flex-end;
    }

    nav.main-nav li {
        border: none;
        margin: 0 0 0 30px;
    }

    nav.main-nav a {
        /* color: #121212; */
        padding: 0;
    }
}

/* =================================================================
banner
================================================================= */

.banner {
    padding: 85px 0 200px;
    background: url(../img/black-friday-gift-background-primary.png) no-repeat;
    background-size: cover;
    background-position: bottom;
}

.banner-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
}

.banner-wrapper h1 {
    line-height: .9;
    margin: 0;
    font-size: 7.5vw;
    text-align: center;
    /* text-transform: uppercase; */
    font-family: 'Poppins', sans-serif;
}

.banner-wrapper h1 span {
    font-family: 'Birthstone Bounce', cursive;
    font-size: 10vw;
    font-weight: 100;
    position: relative;
    top: -5vw;
}

.banner-wrapper h2 {
    font-weight: 400;
    font-style: normal;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.2;
    margin: 15px 0;
    letter-spacing: 0px;
    text-align: center;
}

.banner-wrapper p {
    font-size: 15px;
    text-align: center;
    font-weight: 300;
    font-style: normal;
    font-family: 'Roboto Flex', sans-serif;
    color: #d6d6d6;
    max-width: 550px;
    margin: 30px auto 0;
}

.banner-wrapper p strong {
    font-weight: bold;
}

.banner-wrapper p strong {
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

@media screen and (min-width: 800px) {
    .banner {
        padding: 50px 0 180px;
    }

    .banner-wrapper h1 {
        font-size: 60px;
        text-align: center;
    }

    .banner-wrapper h1 span {
        /* margin-right: 5%; */

    }

    .banner-wrapper h2 {
        font-size: 55px;
    }

    .banner-wrapper p {
        font-size: 18px;
    }
}

@media screen and (min-width: 1440px) {
    .banner-wrapper h1 span {
        font-size: 144px;
        top: -72px;
    }
}

/* =================================================================
countdown Timer
================================================================= */

.countdown-timer {
    /* background: #870000; */
    background-color: #ffba00;
    position: relative;
    margin-top: 0;
    padding: 25px 15px;
    text-align: center;
}

.countdown-timer:before {
    content: '';
    width: 1px;
    height: 122px;
    background: #ffba00;
    position: absolute;
    top: -122px;
    left: 50%;
    /* display: inline-block; */
}

.countdown-timer h2 {
    font-weight: 400;
    font-style: normal;
    font-family: 'Poppins', sans-serif;
    color: #121212;
    font-size: 23px;
    line-height: 1.3;
    letter-spacing: 0px;
    margin: 0;
    text-transform: uppercase;
}

.countdown-timer p {
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 0px;
    color: #121212;
    margin: 0 0 15px;
}

#timer {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-align-items: flex-end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

.countdown-item {
    display: inline-block;
    /* width: 70px; */
    width: calc(25% - 10px);
    text-align: center;
}

.countdown-item-wrapper {
    /* width: 60px; */
}

.countdown-item-block {
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #81868c;
    background-color: #ffffff;
    /* font-size: 12px; */
    height: 18.75vw;
    max-height: 90px;
    /* width: 60px; */
    border-color: transparent;
    border-top-width: 0px;
    border-left-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    border-style: none;
    border-radius: 0px;
}

.countdown-item-content {
    color: #121212;
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    font-size: 12.5vw;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    text-align: center;
}

[class^="countdown-label"] {
    text-align: center;
    color: #121212;
    font-weight: bold;
    font-size: 4vw;
    margin: 3px 0 0;
    text-transform: uppercase;
}

@media screen and (min-width: 500px) {
    .countdown-item-content {
        font-size: 60px;
    }

    [class^="countdown-label"] {
        font-size: 20px
    }
}

@media screen and (min-width: 800px) {

    .countdown-timer h2 {
        font-size: 32px;
    }

    .countdown-timer p {
        font-size: 18px;
    }
}

@media screen and (min-width: 1200px) {

}

/* =================================================================
Black Friday Deals
================================================================= */

.section-heading {
    background: #000;
    color: #fff;
    padding: 10px;
}

.bf-deals {
    /* width: 100%;
    max-width: 1300px;
    margin: 0 auto; */
    background: #fff;
    color: #121212;
    padding: 25px 15px;
}

.bf-deals h2 {
    font-size: 27px;
    color: #ffba00;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
    margin-bottom: 0;
    font-weight: 700;
}

.bf-deals span.red {
    color: #d10000;
}

.bf-deals h3.subheading {
    text-align: center;
    margin: 0;
    font-weight: 300;
    font-size: 18px;
    /* padding-bottom: 10px;
    border-bottom: 1px solid; */
}

.bf-deals .deals-list {
    list-style: none;
    padding: 0;
    margin: 50px 0 20px;
}

.bf-deals .info {
    margin: 25px 0;
}

.bf-deals p {
    text-align: center;
    margin: 0;
    line-height: 1.2;
}

.bf-deals h3.lined {
    position: relative;
    font-size: 32px;
    text-transform: uppercase;
    line-height: .95;
    text-align: center;
    z-index: 1;
    overflow: hidden;
    text-align: center;
    width: 95%;
    margin: 0 auto;
}

.bf-deals h3.lined > span {
    display: inline-block;

}

.bf-deals h3.lined span.flex-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #d80000;
    color: #ffffff;
}

.bf-deals h3.lined:before, .bf-deals h3.lined:after {
    position: absolute;
    top: 51%;
    overflow: hidden;
    width: calc(50% - 60px);
    height: 1px;
    content: '\a0';
    background-color: #d80000;
}

.bf-deals h3.lined:before {
    left: 0;
}

.bf-deals h3.lined:after {
    right: 0;
}

a.shop-btn {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    background: #ffba00;
    padding: 9px;
    display: inline-block;
    border-radius: 5px;
    margin: 15px 0 0;
}

a.shop-btn:hover,
a.shop-btn:focus {
    background-color: #d39a00;
}

.manufacture {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
    display: flex;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-align-items: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
    flex-wrap: wrap;
}

.manufacture li {
    margin: 20px 0;
    width: 50%;
    padding: 0 3%;
}

.manufacture img {
    width: 80%;
}

.manufacture p {
    margin: 0;
}

.manufacture a {
    background: #b70000;
    color: #fff;
    border: 0;
    padding: 11px 20px;
    margin: 30px 0;
    border-radius: 5px;
    display: inline-block;
    text-decoration: none;
}

@media screen and (min-width: 800px) {
    .bf-deals h2 {
        font-size: 48px;
    }

    .manufacture {
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center;
    }

    .manufacture li {
        width: 22%;
    }

    .manufacture.thirty li {
        width: 26%;
        padding: 0 5%;
    }
}

/* =================================================================
Special Discounts Tab Section
================================================================= */
.specials {
        padding: 25px 15px;
}

.specials h2 {
    text-align: center;
    font-size: 60px;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.specials > p {
    max-width: 700px;
    text-align: center;
    margin: 10px auto 25px;
}

.tabs {
	margin: 0;
	padding: 0;
	/* float: left; */
	list-style: none;
	height: 32px;
	/* border-bottom: 1px solid #333; */
	width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-align-items: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.tabs li {
	/* float: left; */
	margin: 0;
	cursor: pointer;
	/* padding: 0px 21px; */
	/* height: 31px; */
	line-height: 31px;
	/* border-top: 1px solid #333;
	border-left: 1px solid #333;
	border-bottom: 1px solid #333;
	background-color: #666;
	color: #ccc; */
	overflow: hidden;
	position: relative;
    width: 24%;
}

.tabs button {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 500;
    color: #ffba00;
    text-decoration: none;
    background: transparent;
    padding: 8px 18px;
    font-size: 18px;
    border: 3px solid #ffba00;
    width: 100%;
    text-transform: uppercase;
    margin-bottom: 25px;
}

/* .tab_last { border-right: 1px solid #333; } */

ul.tabs li:hover {
	/* background-color: #ccc;
	color: #333; */
}

ul.tabs li.active button {
    background-color: #ffba00;
    color: #000;
	/* background-color: #fff;
	color: #333;
	border-bottom: 1px solid #fff; */
	/* display: block; */
}

.tab_container {
	/* border: 1px solid #333; */
	border-top: none;
	clear: both;
	/* float: left; */
	width: 100%;
	/* background: #fff; */
	overflow: auto;
}

.tab_content {
	padding: 20px 0;
	display: none;
}

.tab_content ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-justify-content: space-evenly;
    -webkit-justify-content: space-evenly;
    justify-content: space-evenly;
    -ms-align-items: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
    flex-wrap: wrap;
}

.tab_content li {
    width: 100%;
    margin-bottom: 15px;
}

.tab_content .product_item {
    text-align: center;
    text-decoration: none;
    color: #fff;
    line-height: 1.2;
    font-size: 15px;
}

.tab_content .product_item a.button {
    color: #fff;
    line-height: 1.2;
    background: #b70000;
    padding: 7px 20px;
    /* font-weight: bold; */
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    margin: 10px;
    display: inline-block;
    border-radius: 5px;
    text-decoration: none;
    opacity: .9;
}

.tab_content .product_item a.button:hover {
    opacity: 1;
}

/* .tab_content .product_item a:hover {
    text-decoration: underline;
} */

.tab_content .product_item p {
    margin: 4px 0;
}

.tab_content .product_item .sale-price {
    color: #EB0000;
    font-size: 22px;
    font-weight: bold;
    display: block;
    margin: 10px 0 0;
    font-weight: 100;
}

.thumbnail-container {
    position: relative;
}

span.discount-flag {
    background: #d80000;
    text-transform: uppercase;
    font-size: 15px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: block;
    text-align: center;
    line-height: 1.1;
    padding: 8px 0 0;
    position: absolute;
    bottom: -3px;
    right: 0px;
    font-weight: bold;
}

.tab_drawer_heading { display: none; }

@media screen and (min-width: 600px) {
    .tab_content li {
        width: 48%;
    }
}

@media screen and (max-width: 900px) {
	.tabs {
		display: none;
	}

    .tab_content {
        padding: 0 0 20px;
    }

	.tab_drawer_heading {
		/* background-color: #ccc;
		color: #fff;
		border-top: 1px solid #333;
		margin: 0;
		padding: 5px 20px;
		display: block;
		cursor: pointer;
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none; */
        display: block;
        font-family: 'Poppins', sans-serif;
        font-style: normal;
        font-weight: 500;
        color: #ffba00;
        text-decoration: none;
        background: transparent;
        padding-top: 8px;
        padding-right: 18px;
        padding-bottom: 8px;
        padding-left: 18px;
        font-size: 18px;
        border: 3px solid #ffba00;
        width: 100%;
        text-transform: uppercase;
        margin-bottom: 25px;
	}
	.d_active {
        background-color: #ffba00;
        color: #000;
	}
}

@media screen and (min-width: 1200px) {
    .tab_content li {
        width: 23%;
    }
}

/* =================================================================
Special Discounts Tab Section
================================================================= */

footer {
    padding: 25px 0;
    /* max-width: 1440px; */
    margin: 20px auto 0;
    border-top: 1px solid #fff;
    text-align: center;
    background-color: #000;
}

.footer-upper.social h3 {
    font-size: 32px;
    margin: 0 0 20px;
    text-transform: uppercase;
}

.copywrite {
    font-size: 15px;
    margin: 30px 0 0;
}

/* =================================================================
Social Share
================================================================= */
ul.social-links {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

ul.social-links li {
    display: inline-block;
    margin: 0 4px;
    text-indent: -9999em;
}

ul.social-links a {
    display: block;
    width: 50px;
    height: 50px;
    background-image: url('../img/social-share-sprite.png');
}

ul.social-links .twitter a {
    background-position: -66px 0;
}

ul.social-links .pinterest a {
    background-position: -131px 0;
}

ul.social-links li.linkedin {
    display: none;
}

ul.social-links .email a {
    background-position: -260px 0;
}
