body {
    background:#fff;
    margin: 0 auto;
    padding: 0;    
}

#container {
    width: 100%;    
    margin:0 auto;
}
.main-content {
    max-width: 1400px;
    margin: 0 auto;    
}
.flex {
    display:flex;
}

/* alignment */
.align-center {
    text-align: center;
}
.align-left {
    text-align: left;
}
.align-right {
    text-align: right;
}
.align-items-center {
    align-items: center;
}
.col-2 {
    width:50%;
    flex: 0 0 50%;
}
.col-3 {
    width:33.33%;
    flex:0 0 33%;
}
.col-4 {
    width:25%;
    flex:0 0 25%;
}


/* Headings */

p, a, h4,h5,h6, strong, span {
    font-family: 'Chivo', sans-serif;
}
a:link, a:visited {
    color:#000;
}

@font-face {
    font-family: 'gothamultraitalic';
    src: url('fonts/gotham-ultraitalic-webfont.woff2') format('woff2'),
         url('fonts/gotham-ultraitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
h1,h2,h3 {
    font-family: 'gothamultraitalic';
}



h1 {
    font-size: 45px;
    font-weight: 800;
    font-style: italic;
    line-height: 50px;
}
h2 {
    font-size: 40px;
    font-weight: 800;
    font-style: italic;
    line-height: 40px;
}
h3 {
    font-size: 40px;
    font-weight: 800;
    font-style: italic;
    line-height: 10px;
}
h4 {
    font-size: 22px;
    font-weight: 400;
    font-style: normal;
    line-height: 1em;    
}
p  {
    font-size: 18px;
}
.normal {
    font-style: normal !important;
}

/* colors */
.black {
    color: #000;
}
.white {
    color:#fff;
}

/* header */

.topbar {
    background: #0059ba;
    text-align: center;
    height:50px;
    display:flex;
    align-items: center;    
    justify-content: center;
}
.topbar p {
    color:#fff;
    margin:0;
    
}

header{    
    padding:20px 0;    
    z-index:5;
    background:transparent;
    vertical-align: middle;
    position: absolute;
    width:100%;
}
.logo  {
    line-height: 70px;
    height:70px;
}

.hero {    
    width: 100%;
    position: relative;
    height: 700px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.header-content {
    width:100%;        
    z-index: 1; 
    position:absolute; 
}
.header-content h1 {
    color:#fff;
}

.featured {
    align-items: center;
    padding:100px 0;
    margin:0 auto;
}
.compact {
    width:75%;
}
.product-grid {
    width:80%;
    margin:0 auto;
    padding-bottom:100px;
}
.product-grid .grids {
    margin-top:50px;
}

.CTA1 {
    background:url('images/wireframe-F-01_07.png') no-repeat top left;
    background-size:cover;
    padding:200px 0;
    margin-bottom:100px;
}
.CTA-dark {
    background:#000;
    padding:100px 0;
    margin-bottom:100px;
}


/* Buttons */
.btn-large-outline {
    padding:20px 60px;
    border:5px solid #fff;
    color:#fff;
    background: none;
    font-size: 30px;
}
.btn-small-outline-white {
    padding:20px 60px;
    border:2px solid #fff;
    border-radius: 50px;
    color:#fff;
    background: none;
    font-size: 16px;
}
.btn-small-outline-black {
    padding:20px 60px;
    border:2px solid #000;
    border-radius: 50px;
    color:#000;
    background: none;
    font-size: 16px;
}

footer {
    width: 20%;
    text-align: center;
    margin: 0 auto;
    padding-bottom:100px;
}
footer .grids {
    display: flex;
    padding:50px 0;
    margin:0 auto;
}
.social-icons {
    margin:0 auto;
}

.social-icons img {
    width:24px;
    height:24px;
    margin:0 10px;
}
.footer-menu span {
    display:block;
}
.footer-menu span a:visited, .footer-menu span a:link {
    color:#000;
    text-decoration: none;
    font-size:12px;
    
}
.footer-menu span a:hover, .footer-menu span a:focus {
    color: #29abe2;
}

/* form */
.form {    
    max-width: 600px;
    margin: 0 auto;
}
.form input {
    width:100%;
    height:50px;
    margin:20px auto;
    border:none;
    background: none;
    border-bottom: 1px solid #fff;
}
.form input::placeholder {
    font-size:20px;
    color:#fff;
}
.form form {
    display: flex;
}

.form input[type=button] {
    background: #fff;
    max-width: 200px;
    text-align: center;
    justify-content: flex-start;
    color: #000;
    font-size:20px;
    margin-left:10px;
}

/* Shop page */
.product-filter {
    border-top: 1px solid #000;
    border-bottom:1px solid #000;
    padding:50px 0;
    width:100%;
    
}
.bar {
    width:50%;
    margin:0 auto;
}
.shop .product-grid {
    width:50%;
}

#main {
    margin-top:100px;
}

.left-col, .right-col {
    display:flex;
}
.left-col strong, .right-col strong {
    margin-top:10px;
    flex:0 0 30%;
}
/* Product Detail Page */
.product-page .product-image .thumbnails img {
    display:block;
}
.product-page .product-image .flex .col-2:first-child {
    flex:10%;
}
.product-page .product-image .flex .col-2:last-child {
    flex:90%;
}
.product-image {
    flex:40%;
}
.product-details {
    flex:60%;
}
.product {
    border-top:2px solid #f1f1f1;
    border-bottom:2px solid #f1f1f1;
    padding:50px 0;
}

.rating:before {
    content: "★★★★★";    
}
.color {
    margin-top:-30px;
}
.price p {
    font-size:45px;
}
.price img {
    height:20px;
    margin-top:60px;
    margin-left:50px;
}
.price {
    margin-top:80px;
}
.quantity-btn {
    margin-top:60px;
}

.color img {
    padding:0 10px;
}
.size {
    align-items: center;
    margin-top:20px;
}
.size span {
    padding:0 10px;
    font-size: 20px;
    margin-top: 10px;
}
.btn-large-solid-black {
    padding:20px 60px;
    background:#000;
    color:#fff;
    font-size:20px;
    width:100%;
    border-radius: 0;
    text-align: center;
    max-width: 250px;
}
.btn-large-outline-black {
    padding:20px 60px;
    background:#fff;
    border:1px solid #000;
    color:#000;
    font-size:20px;
    width:25%;
    border-radius: 0;
    text-align: center;
    max-width: 50px;
}
.addtocart, .product-description {
    margin:20px 0;
}
.product-description .product-tabs span {
    font-size:20px;
    margin:0 20px 0 0;
    text-transform: uppercase;
}
.product-description .tags span {
    font-size:16px;
    margin:0 20px 0 0;
}
.product-title {
    font-size:40px;
    font-style:normal;
    font-family: 'Chivo', sans-serif;
    margin-top:0;
}




/* our story page */
.our-story .hero {
    background:url(images/wireframe-F-03_02.jpg) no-repeat top left;
    background-size: cover;
}
.our-story .header-content .col-2 {
    padding-left: 100px;
}
.our-story .header-content .col-2 p {
    color:#fff;
    font-size: 40px;
    margin-top:-30px;    
}

.overlap .col-2:first-child {
    z-index: 1;    
}
.overlap .col-2:last-child {
    margin-left:-100px;

}

.video {
    width:100%;
    margin: 0 auto;    
}

/* Lookbooks */

.product-category a:link, .product-category a:visited {
    color:#000;
    font-size:40px;
    text-decoration: underline;
    display:block;
    padding-bottom:100px;
}
.breadcrumbs span {
    font-size: 16px;
}

.breadcrumbs span:after {
    content: " > ";
}
.breadcrumbs span:last-child:after {
    content: " ";
}
.product-title {
    font-size:40px;
}

.catalogue {
    margin-bottom:100px;
}





.mobile-navigation{display:none;}
.device-wrapper{
	transition: all 0.4s ease-out;
    position:relative;
}
.desktop-layout{
	box-shadow: none;
	width:100%;
	
}
.tablet-layout{
	margin:20px auto;
	box-shadow:
  0  5px 10px rgba(154,160,185,0.05),
  0 15px 40px rgba(166,173,201,0.2);
	width:1024px;	
	height:768px;
	overflow:hidden;
	padding:26px;
	background:#fff;
	border-radius:26px;
}
 .bar img{
    width: 9%;
    flex: 0 0 9%;
    padding: 0 12px;
 }


.mobile-layout{
	margin:20px auto;
	box-shadow:
  0  5px 10px rgba(154,160,185,0.05),
  0 15px 40px rgba(166,173,201,0.2);
	width:380px;
	height: 754px;
	overflow:hidden;
	padding:18px;
	border-radius:30px;
	background:#fff;
}
body{
	background: #f2f2f2;  
}
.theme-options{
	background:#fff;
}

#main .col-2 img,
#main .col-3 img,
#main .col-4 img{
    width:100%;
}

.col-4{
    width: 24%;
    flex:0 0 24%;
}
.mobile-layout .mobile-navigation{ 
	display:block;
} 
.mobile-layout .duo,
.mobile-layout .trio,
.mobile-layout .quad{
		width:100%;
		padding-left:0 !important;
	}

.mobile-layout	.e-center{
		text-align:center;
	}
.mobile-layout	header{
		height:300px;
	}
.mobile-layout	.navigation{
		width:100%;
		display:none;
	} 
.mobile-layout .fa-bars{
	font-size:25px;
	position:relative;
	top:11px;
	color:#000;
}
.mobile-layout .fa-bars:hover{
	cursor:pointer;	
}
.mobile-layout	.nav-wrapper{
	 
}
.mobile-layout	.testimonials,
.mobile-layout	.e-wrapper{ 
		padding: 4px 20px;
	}
.mobile-layout	.e-flexer{
		display:block;
		width:100%;
	}

.tablet-layout .device-case {
    overflow-y: scroll;
    height: 100%;
    width: 100%;
	border: 1px  solid #eee;
	    border-radius: 14px;
}

.mobile-layout .device-case {
    overflow-y: scroll;
    height: 100%;
    width: 100%;
	overflow-x:hidden;
	    border: 1px  solid #eee;
		border-radius:14px; 
}


	.tablet-layout .device-case::-webkit-scrollbar {
	
}
	.tablet-layout .device-case {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
/* Hide scrollbar for Chrome, Safari and Opera */
.mobile-layout .device-case::-webkit-scrollbar {
 
}

/* Hide scrollbar for IE, Edge and Firefox */
.mobile-layout .device-case {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.inactive:hover{cursor:pointer}
.device{
	width:auto;
	height:33px;
	margin-right:8px;
}

.inactive:hover{cursor:pointer}
.device{
	width:auto;
	height:33px;
	margin-right:8px;
}
.tab-active, 
.laptop-inactive,
.phone-active{
	display:none; 
}
.fa{
	color:#333;
}
i.fa.fa-chevron-down{
	padding-left:8px;
}
.devices{ 
	display:flex;
	flex-wrap:wrap;
	justify-content:flex-start;
	align-items:center;
	width:144px;
} 
.trione{
    display: flex;
    width: 46%;
    flex: 0 0 46%;
    align-items: center;
} 
.tritwo{
    width: 20%;
    flex: 0 0 20%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
} 
.trithree{
	width:33%;
	flex:0 0 33%;
}
.gladsite-logo{
	height:42px;
}
 
 .glad-logo {
    width: 206px;
}




/* mobile responsiveness */
.product-category img{width:100%}
.mobile-layout .device-case,
.tablet-layout .device-case{
    position:relative;
    overflow-x:hidden;
}
.text-divider {
    padding-left: 12px;
    display: inline-block;
    padding-right: 12px;
}
.theme-container {
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
}

.e-flexer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.mobile-layout .product-category a:link, .mobile-layout .product-category a:visited {
    font-size:18px;
    margin-top:20px;
}
.trione {
    display: flex;
    width: 46%;
    flex: 0 0 46%;
    align-items: center;
}
div{
    box-sizing:border-box;
}
.trithree{
    display:flex;
    justify-content:flex-end;
}
.trithree p{
    padding-right:20px;
}.devices {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items": center;
    width: 144px;
}

.btn-primer {
    font-family: 'Open Sans', sans-serif;
    box-shadow: none;
    border: none;
    border-radius: 50px;
    padding: 15px 20px;
    background: #09ADA5;
    color: #fff !important;
    float: right;
}


.mobile-layout .flex {
    display:block;
}
.mobile-layout .col-2, .mobile-layout .col-3, .mobile-layout .grids, .mobile-layout .col-4 {
    width:100%;
    flex:auto;        
}   
.grids{
    flex-wrap: wrap;
    justify-content: space-between;
}
.mobile-layout .main-content {
    padding: 0 20px;
}


.mobile-layout .header-content {
    width: 100%;
    z-index: 1;
    position: absolute;
    padding: 100px 0;
    overflow: hidden;
    text-align: center;
}


.mobile-layout .col-2 {
    padding:50px 0;
}
.mobile-layout .shop .col-2 {
    padding:10px 0;
}

.mobile-layout .form input {
    width:50%;
}
.mobile-layout .footer-menu {
    display: block !important;
}

.mobile-layout .header-home {
    background-position: top center;
    padding: 10px 20px 100px 20px;
}
.mobile-layout .our-story .col-2 {
    padding:0;
}
.mobile-layout .our-story .header-content .col-2 {
    padding-left:0;
}
.mobile-layout .our-story .featured {
    padding:0;
}
.mobile-layout .our-story .compact {
    padding:100px 0;
}
.device-case{
    position:relative;
}
body{
    overflow-x:hidden;
}

.mobile-layout .logo,
#main .logo,
.logo {
    line-height: 70px;
    height: 70px;
}