/*
Theme by Ben Hubbard

for Marianne Laker Designs

*/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

* { 
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */
}
/*General*/

html {
  background: url('https://dl.dropbox.com/s/54q0tlrb8xvng03/bg.png'); 
  
}

body {
  background: #f6f6f4;
  margin: 20px; 
}

.content {
  width: 95%;
  margin: 20px auto;
  max-width: 1000px;
  
}

.button {
  border: 2px solid #949494;
  padding: 5px 8px;
  border-radius: 3px;
  background: transparent;
  color: #949494;
  text-transform: uppercase;
  transition: all 0.5s ease;
}

.button:hover {
  background: #949494;
  cursor: pointer;
  color: white;
}

.clear {
  clear: both;
}

/*Header*/

.header {
  width: 100%;
  padding: 20px;
  background: white;
  border-bottom: 2px solid #e7e6e2;
}
.top-bar {
  width: 100%;
  background: white;
  font-size: 11px;
  padding: 2px 0;
  margin-top: -20px;
  margin-bottom: 20px;
  padding: 3px;

  height: 93px;
  margin-bottom: 40px;
}

.logo {
  display: block;
  margin: 0 0 20px 0;
  width: 150px;
  float: left;
  margin-right: 5px;
}

.logo img {
  border-radius: 0;
  margin-left: -2px;
}


.topbartextleft {
  margin-bottom: 0;
  font-family: 'Amatic SC', cursive;
  font-weight: 700;
  font-size: 44px;
  text-transform: uppercase;
  float: left;
  line-height: 48px;
}

.topbartextleft span {
  font-size: 28px;
}
.topbartextright {
  margin-bottom: 0;
  font-family: 'Amatic SC', cursive;
  font-weight: 700;
  text-transform: uppercase;
  float: right;
  line-height: 24px;
}

.topbartextright a {
  font-family: 'Amatic SC', cursive;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
  float: right;
  padding: 5px;
  border-radius: 4px;
 
}

.topbartextright a:hover {
  background: #555;
}
.topbartextright img {
  height: 60px;
  float: left;
}

.minicarttext {
  padding-top: 18px;
  float: right;
  margin-left: 8px;
}
/*text*/

h1, h2, h3, h4, h5 {
  font-family: 'Amatic SC', cursive;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 30px;
}

p, label {
  font-family: 'Josefin Sans', sans-serif;
}

p {
  margin-bottom: 10px;
  line-height: 24px;
}

h1 {
  font-size: 200%;
  margin-bottom: 20px;
}

h2 {
  font-size: 175%;
  margin-bottom: 20px;
}


h3 {
  font-size: 150%;
  margin-bottom: 20px;
}


h4 {
  font-size: 125%;
  margin-bottom: 20px;
}
.nodec {
  text-decoration: none;
  color: black;
}
label {
  text-align: right;
}

img {
 border-radius: 0;
}

/* Menu */

.menu {
  text-align: center;
  display: inline;
  margin: 0 auto;
  padding: 15px 4px 17px 0;
  list-style: none;
  clear: both;
}
.menu li {
  font-family: 'Amatic SC', cursive;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 1px;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  width: 16.1%;
  border-radius: 4px;
}
.menu li:hover {
  background: #555;
  color: #fff;
}

.menu li a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 15px 0px;
}

.menu li a:hover {
  color: white;
}
.menu li ul {
  padding: 0;
  position: absolute;
  top: 48px;
  left: 0;
  width: 100%;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  display: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transiton: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  -transition: opacity 0.2s;
  z-index: 2000;
  -webkit-border-bottom-right-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.menu li ul li { 
  background: #555; 
  display: block; 
  color: #fff;
  text-shadow: 0 -1px 0 #000;
  width:100%;
  border-radius: 0 !important;
}

.menu li ul li a { 
  color: white;
  text-decoration: none;
  display: block;
}

.menu li ul li:hover { 
  background: #666; 
}
.menu li:hover ul {
  display: block; 
  opacity: 1;
  visibility: visible;
}

.orange {
  background: #e56007;
}

.red {
  background: #cc0000;
}

.pink {
  background: #ff99cc;
}

.yellow {
  background: #ffcc00;
}

.blue {
  background: #3366cc;
}
.green {
  background: #336600;
}

.link {
  padding: 8px 5px;
  color: white;
  text-decoration: none;
  border-radius: 2px;
  margin-top: 20px;
}

.link:hover {
  background: #555;
}
/* Home page */

.homepage-image {
  float:left;
  margin:20px 0;
  border-radius: 4px !important;
}
.newforspring {
  width: 100%;
  height: 100px;
  border-radius: 4px;
}

.newforspring a {
  color: white;
  text-decoration: none;
  display: block;
  height: 100px;
  text-align: center;
  padding-top: 35px;
  line-height: 50px;
  font-size: 25px;
}

.first-home {
  width: 39%;
  margin-right: 1%;
}

.second-home {
  width: 39%;
  margin-left: 1%;
}

.middle-home {
  width: 19.5%;
  margin-left: 0.25%;
  margin-right: 0.25%;
}

.third-home {
  width: 49%;
  margin-right: 1%;
}

.fourth-home {
  width: 49%;
  margin-left: 1%;
}
/*Footer*/
.footer {
  padding: 10px 0 60px 0;
  margin: 60px 0px 0px 0px;
  background: #fafafa;
  border-top: 2px solid #e7e6e2;
}

.footer-menu {
  overflow: hidden;
}

.footer-menu li {
  width: 16.6666%;
  float: left;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-right: -4px;
  position: relative;
  
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  width: 16.66666%;
}

.footer-menu li a {
  display:block;
  text-align: center;
  
}

.footer-menu li a {
  color: black;
  text-decoration: none;
}

/* Contact page */

.contact-form li {
  width: 100%;
  padding: 10px 0;
  
}
.contact-form li label {
  width: 15.66666%;
  display: inline-block;
  margin-right: 1%;
}
.contact-form li input, .contact-form li textarea {
  width: 32.333333333%;
  margin-left: 1%;
  padding: 3px 5px;
  border: 1px solid #949494;
} 
.susiesblock {
  margin-left: 17.66666%;
}
.susiesblock p {
  padding-left: 1%;
  
}
.susiesblock b img {
  margin-top: 2%;
}

#contact_button {
  float: right;
  margin-right: 49.9%;
}

.message {
  padding: 10px;
  color: #3F602B;
  background: #49E20E;
  border: 4px solid #3F602B;
}

.message p, .message h2 {
  color: #3F602B;
}

/*Products*/

.product {
  float: left;
  width: 33.3%;
  margin-bottom: 2.5%;
  position: relative;
}

.product:hover {
  background: #fafafa;
}

.product img {
  width: 95%;
  display: block;
  margin: 2.5% auto 2.5% auto;
}

.product p {
  width: 95%;
  margin: 0 auto 2.5% auto;
  color: black;
  text-decoration: none;
}

.product a {
  text-decoration: none;
}

.additionalprice {
  background: #cc0000;
  color: white;
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: 'Amatic SC', cursive;
  font-weight: 700;
  font-size: 30px;
  border-radius: 4px;
}

.additionalprice span {
  padding: 5px 8px;
}
/* Product page */
.gallery {
  width: 80%;
  max-width: 700px;
  margin: 20px auto 40px auto;
}
.gallery img {
  max-width: 100%;
}

.detail {
  width: 80%;
  margin: 10px auto;
  max-width: 700px;
}
.detail:after {
  clear: both;
}

.thumbs {
  padding-top: 20px;
}

.thumbs ul li {
  float: left;
  width: 20%;
}

.thumbs ul li a {
  display: block;
}
.thumbs ul li a img {
  display: block;
  width: 90%;
  margin: 0 auto;
}
.product-detail-head {
  width: 50%;
  float: left;
}

.detail h1 {
  width: 100%;
}

.detail .price {
  width: 100%;
}

.detail form {
  float: right;
  width 50%;
}

.description {
  width: 100%;
  clear: both;
}

.thumbnail-link img {
  width: 90%;
  display: block;
  margin: 5px auto;
}

.priceandoptions {
  padding: 20px;
  background: #eaeaea;
  margin: 20px 0;
  overflow: hidden;
}
.clear {
  clear: both;
}

/*Occsion Dress*/

.fullwidthimg {
  max-width: 100%;
  margin-bottom: 1em;
}

/*Cart */
.four {
  width: 80%;
  float: left;
}
.three {
  width: 10%;
  float: left;
}

.row {
  clear: both;
  overflow: hidden;
  margin-bottom: 10px;
}
.align_center {
  text-align: center;
}

.align_right {
  text-align: right;
}

.cartdescpara {
  float: right;
  width: 50%;
  text-align: right;
  margin-right: 5px;
}

.cart_item_qty input {
  width: 50%;
}

.carthead {
  font-family: 'Amatic SC', cursive;
  font-weight: 700;
  font-size: 150%;
}

.c7 {
  padding-right: 10px;
}
.about-img {
float:right;width:50%;min-width:300px; margin:0 0 20px 20px;
}

/*
    Mobile Menu Core Style
*/

.slicknav_btn {font-family: 'Amatic SC', cursive; font-style: normal; font-weight: 700; font-size: 150%; position: relative; display: block; vertical-align: middle; float: right; padding: 0.438em 0.625em 0.438em 0.625em; line-height: 1.125em; cursor: pointer; }
.slicknav_menu  .slicknav_menutxt { display: block; line-height: 1.188em; float: left; }
.slicknav_menu .slicknav_icon { float: left; margin: 0.188em 0 0 0.438em; }
.slicknav_menu .slicknav_no-text { margin: 0 }
.slicknav_menu .slicknav_icon-bar { display: block; width: 1.125em; height: 0.125em; -webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px; -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); }
.slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar { margin-top: 0.188em }
.slicknav_nav { clear: both;}
.slicknav_nav ul,
.slicknav_nav li { display: block }
.slicknav_nav .slicknav_arrow { font-size: 0.8em; margin: 0 0 0 0.4em; }
.slicknav_nav .slicknav_item { cursor: pointer; }
.slicknav_nav .slicknav_row { display: block; }
.slicknav_nav a { display: block; font-family: 'Amatic SC', cursive; font-style: normal; font-weight: 700; font-size: 150%;}
.slicknav_nav .slicknav_item a,
.slicknav_nav .slicknav_parent-link a { display: inline }
.slicknav_menu:before,
.slicknav_menu:after { content: " "; display: table; }
.slicknav_menu:after { clear: both }
/* IE6/7 support */
.slicknav_menu { *zoom: 1 }

/* 
    User Default Style
    Change the following styles to modify the appearance of the menu.
*/

.slicknav_menu {
    font-size:16px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}
/* Button */
.slicknav_btn {
    margin: 5px 5px 6px;
    text-decoration:none;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;  
    background-color: #cc0000;
}
/* Button Text */
.slicknav_menu  .slicknav_menutxt {
    color: #FFF;
    font-weight: bold;
    text-shadow: 0 1px 3px #000;
}
/* Button Lines */
.slicknav_menu .slicknav_icon-bar {
  background-color: white;
}
.slicknav_menu {
    background:white;
    padding: 5px 0;
}
.slicknav_nav {
    color:#fff;
    margin:0;
    padding:0;
    font-size:0.875em;
}
.slicknav_nav, .slicknav_nav ul {
    list-style: none;
    overflow:hidden;
}
.slicknav_nav ul {
    padding:0;
    margin:0 0 0 20px;
}
.slicknav_nav .slicknav_row {
    padding:5px 10px;
    margin:2px 5px;
}
.slicknav_nav a{
    padding:15px 20px;
    margin:0;
    text-decoration:none;
    color:#fff;
    font-size: 200%
}
.slicknav_nav .slicknav_item a,
.slicknav_nav .slicknav_parent-link a {
    padding:0;
    margin:0;
}
.slicknav_nav .slicknav_row:hover {
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    background:#ccc;
    color:#fff;
}
.slicknav_nav a:hover{
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    background:#ccc;
    color:#222;
}
.slicknav_nav .slicknav_txtnode {
     margin-left:15px;   
}

.margin-top {
   margin-top: 40px; 
}
.margin-bottom {
   margin-bottom: 40px; 
}
.padding-top {
  padding-top: 40px;
}
.homepage-image-new {
  width: 90%;
  display:block;
  margin: 0 auto;
  border-radius: 4px;
  
}
.home-pane {
  width: 102.5%;
  overflow: hidden;
  margin-left: -1.25%
}
.homepage-link {
  width: 33.33333333%;
  display: block;
  float: left;
  margin-top: 40px;
  margin-bottom: 40px;
  position: relative;
}
.homepage-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  color: white;
  font-family: 'Amatic SC', cursive;
  font-weight: 700;
  font-size: 22px;
  padding: 5px 0;
}
.clear {
  clear: both;
}



@media only screen 
  and (min-device-width: 701px) 
  {
  .slicknav_menu {
    display: none;
  }
  .menu {
    display: block;
  }
  
}

@media only screen 
  and (max-device-width: 700px) 
  {
  .slicknav_menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
  }
  .menu {
    display: none;
  }
  .topbartextright {
    float: none;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 999;
  }
  .topbartextright img {
    height: 38px;
  }
  .minicarttext {
    padding-top: 8px;
    text-shadow: 0 1px 3px #000;
    
  }
  .logo {
    margin-bottom: 0;
    margin-top: 20px;
    width: 100%;
  }
  .logo img {
    width: 100%;
  }
  .topbartextleft {
    text-align: center;
  }
  .footer-menu li {
    width: 33%;
  }
  .about-img {
    width: 100%;
    float: none;
    margin: 0 0 20px 0;
  }
  .second-row {
    clear: both;
  }
  .homepage-link {
    width: 100%;
  }
}