@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,600);
@import url(https://fonts.googleapis.com/css?family=Vollkorn:700);

* {
    margin: 0;
    padding: 0;
}

body {
    background: #f1f1f1;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: #636363;
}

.container {
    background: #fff;
    padding: 0 90px;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.alert-error,
.alert-success,
.alert-info,
.alert-warning { 
    background: #FFE6E3; 
    border: 1px solid #F2C3BF; 
    color: #BF210E; 
    border-radius: 2px; 
    padding: 8px; 
    margin-bottom: 15px;
}

.alert-success { 
    background: #EDFDD3; 
    border: 1px solid #C4DBA0; 
    color: #657E3C;
}

.alert-info { 
    background: #E9F7FE; 
    border: 1px solid #B6D7E8; 
    color: #5091B2;
}

.alert-warning { 
    background: #fcf8e3; 
    border: 1px solid #faebcc; 
    color: #8a6d3b;
}

h1 {
    font-family: 'Vollkorn', serif;
    font-size: 30px;
    font-weight: 700;
    color: #272727;
    margin: 0;
}

header {
    padding: 25px 0 40px 0;
    background: url("../img/dashed_line.png") repeat-x left bottom;
}

header img.logo {
    float: left;
    margin: 0 28px 0 0;
}

header strong {
    display: block;
    text-transform: uppercase;
    line-height: 38px;
    font-weight: 600;
    color: #1d1d1d;
    font-size: 18px;
}

header span {
    color: #929292;
    text-transform: uppercase;
}

header ul {
    float: right;
}

header ul li {
    list-style-type: none;
    float: left;
    margin-left: 8px;
    text-transform: uppercase;
    font-weight: 600;
}

header ul li a {
    color: #575757;
    text-decoration: none;
}

header ul li a:hover,
nav ul li a:hover {
    color: #979797;  
    text-decoration: none;
}

header div.text-right img {
    margin: 8px 0 0 4px;
}

nav {
    background: url("../img/double_line.png") repeat-x left bottom;
}

.slicknav_menu {
    display: none;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    float: left;
    margin-left: 55px;
    line-height: 45px;
    text-transform: uppercase;
}

nav ul li a {
    text-decoration: none;
    color: #575757;
}

nav ul li.current a {
    color: #333;
    font-weight: 600;
}

section {
    margin-top: 50px;
}

section div.product_images {
    overflow: hidden;
}

section div.product_images img#main {
    margin-bottom: 30px;
}

section div.product_images div.product_thumbs img {
    width: 31%;
    height: 31%;
    margin-right: 5px;
}

section div.product_images div.product_thumbs img:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    cursor: pointer;
}

section ul.tabbed {
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
    border-bottom: 1px solid #cecece;
    margin-top: 25px;
    margin-bottom: 1em;
}

section ul.tabbed li {
    display: inline-block;
    min-width: 110px;
    line-height: 36px;
    text-align: center;
    font-size: 10px;
    text-transform: uppercase;
    color: #272727;
    background-color: #f2f2f2;
}

section ul.settings {
    list-style-image: url("../img/list_bullet.png");
    list-style-position: inside;
    padding-left: 0;
}

section ul.settings li {
    margin-bottom: 12px;
}

section p {
    line-height: 20px;
    margin: 1em 0;
}

section ul,
section ol {
    list-style-position: inside;
}

section a {
    color: #35bdf5;
}

form label {
    display: inline-block;
    min-width: 65px;
    margin-bottom: 8px;
}

form label span {
    color: #d10303;
    font-size: 10px;
}

form label + strong {
    font-size: 16px;
    color: #272727;
}

.btn {
    color: #333333;
    text-decoration: none;
    display: inline-block;
    padding: 4px 12px;
    line-height: 20px;
    text-align: center;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
    background: #e6e6e6;
    background: -webkit-linear-gradient(#ffffff, #e6e6e6);
    background: -moz-linear-gradient(#ffffff, #e6e6e6);
    background: -o-linear-gradient(#ffffff, #e6e6e6);
    background: -ms-linear-gradient(#ffffff, #e6e6e6);
    background: linear-gradient(#ffffff, #e6e6e6);
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn:hover {
    background: #e9e9e9;
}

form input[type="text"], 
form input[type="email"],
form input[type="password"],
form select, 
form textarea {
    width: 206px;
    background-color: #fff;
    border: 1px solid #ccc;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
    -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
    -o-transition: border linear 0.2s, box-shadow linear 0.2s;
    -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
    transition: border linear 0.2s, box-shadow linear 0.2s;
    min-height: 30px;
    padding: 9px 6px;
    margin-bottom: 10px;
    line-height: 20px;
    color: #555;
    border-radius: 4px;
}

form textarea {
    resize: none;
    display: block;
    width: 70%;
    height: 128px;
}

form.account_order {
    margin-left: 30px;   
}

form.account_order label,
form.checkout label,
form.account label {
    min-width: 95px;
}

form.account_order .btn {
    margin-left: 3px;
}

form.checkout div.details strong {
    display: block;
    font-family: 'Vollkorn', serif;
    font-size: 16px;
    font-weight: 700;
    color: #272727;
}

form.checkout div.details span {
    font-weight: 700;
    font-size: 14px;
    color: #272727;
}

span#shipment i,
span#price i {
    font-style: normal;
}

table {
    width: 100%;
}

table td {
    padding: 8px;
    line-height: 20px;
    text-align: left;
    border-top: 1px solid #dddddd;
}

table th {
    padding: 8px;
    font-weight: 700;
    font-size: 13px;
    text-align: left;
    vertical-align: center;
}

table tbody > tr:nth-child(odd) > td {
    background-color: #f9f9f9;
}


footer {
    line-height: 40px;
    margin-top: 115px;
    background: url("../img/dashed_line.png") repeat-x left top;
}

footer p a {
    font-weight: 600;
    text-decoration: none;
    color: #ea6746;
}

footer p a:hover {
    text-decoration: underline;
    color: #ea6746;
}

footer nav ul {
    float: right;
}

footer nav ul li {
    line-height: 40px;
    margin-right: 0;
    margin-left: 10px;
    text-transform: none;
}

footer nav ul li:before {
    content: '\2022';
    display: inline-block;
    margin-right: 10px;
}

footer nav ul li:first-child:before {
    content: '';
}


@media (max-width:992px){
    div.product_images {
        text-align: center;   
    }
    
    h1 {
        text-align: center;
        margin-top: 1em;
    }
    
    footer nav ul {
        float: none;
    }
    
    footer nav ul li {
        margin-left: 0;
        margin-right: 10px;
    }
}

@media (max-width:768px){
    .container {
        padding: 0 20px;
    }
    
    header {
        text-align: center;
    }
    
    header img.logo {
        float: none;
    }
    
    header div.text-right {  
        margin-top: 20px;
        text-align: center;
    }
    
    header div.text-right ul {
        float: none;
        width: 160px;
        margin: 0 auto;
    }
    
    header div.text-right ul li {
        margin: 0;
    }
    
    header + nav ul li {
        margin: 0 20px;
    }
    
    header div.text-right ul li + li {
        margin-left: 8px;
    }
    
    form label {
        display: block;
    }
    
    form textarea {
        width: 100%;
    }
}

@media (max-width:445px){
    header + nav {
		display: none;
	}
	
	.slicknav_menu {
		display: block;
	}
    
    .slicknav_menu nav {
		background: none;
	}
    
    .slicknav_menu ul li {
        float: none;  
        margin-left: 0;
    }
    
    .slicknav_menu ul li.current a {
        color: #ea6746;   
    }
    
    footer nav {
        display: none;
    }
    
    form input[type="text"], 
    form input[type="email"],
    form input[type="password"],
    form select, 
    form textarea {
        width: 100%;
    }
    
}