@CHARSET "UTF-8";

/* Add @import here - don't forget to start the address with //: to ensure HTTPS compatibility */
@import url('https://fonts.googleapis.com/css?family=Cormorant|Covered+By+Your+Grace|Josefin+Sans');

/* Selected text */
*::selection, input::selection {
  background: #ddcad3;
  color: #333;
}

*::-moz-selection {
  background: #ddcad3;
  color: #333;
}

/* defaults */
body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  font-family: "Josefin Sans", sans-serif; 
  font-size: 12pt;
  color: #333;
}

/* "back to top" arrow */
#up-arrow {
  position: fixed;
  bottom: 10px;
  right: -100px;  
  padding: 17px 24px 22px;
  opacity: 0;
  cursor: pointer;
  transition: right 0.4s, opacity 0.3s, color 0.3s;
  z-index: 10000;  
  border-radius: 50px;
  background: #fff;
  color: #333;
  box-shadow: 1px 1px 4px rgba(150,150,150,0.7);
}

body.menu-scrolled #up-arrow:hover {
  color: #b14673;
}

body.menu-scrolled #up-arrow {
  right: 10px;
  opacity: 1;
}

/** Cookie warning */
.flexi-cookie {
  position: absoulte;
  bottom: 0;
  left: 0;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  border-radius: 0 3px 0 0;
  padding: 10px;
  background: #fff;
  z-index: 9999;
}

.flexi-cookie-buttons {
  text-align: right;
}

.flexi-cookie-inner {
  padding-bottom: 10px;
}

/** Main page canvas wrapper - defines page width */
.content.brokenout .pb-block-outer>div, .wrapper {
  width: 1000px;
  margin: 0 auto;
}

/** Header */
.header {
  background: #fff;  
}

.header .wrapper {
  position: relative;
}

.cart-btn {
  position: absolute;
  top: 10px;
  right: 0;
  z-index: 3000;
}

.cart-btn a {
  color: #333;
  text-decoration: none;
  transition: opacity 0.3s;
}

.cart-btn a:hover {
  opacity: 0.8;
}

/** Menu */

.menubar, nav.menu {
  text-transform: uppercase;
}

/* bar items */

nav.menu>span.item>a {  
  transition: color 0.3s;
  color: #333;
  padding: 20px 20px 40px;  
}

nav.menu>span.item>a:hover {
  color: #db426e;
}

/* submenus */

nav.menu>span.item>span.submenu {
  
}

nav.menu span.item span.submenu a, 
nav.menu span.item.subitem {
  display: block;
}

nav.menu span.item span.submenu a {
  background: rgba(245, 245, 245, 0.71);
  padding: 16px;
  color: #333;
  transition: background 0.3s, color 0.3s;
}

nav.menu span.item span.submenu a:hover {
  background: #db426e;
  color: #fff;
}

/** Flyout buttons */

.button.flyo-show {
  position: fixed;
  top: 10px;
  left: 10px;
  height: 32px;
  width: 32px;
  border-radius: 50px;
  font-size: 17pt;
  color: #333;
  background: #fff url(img/menu.png) center center no-repeat;
  padding: 11px;
  box-shadow: 1px 1px 4px rgba(150,150,150,0.7);
  border: 1px solid #fff;
  z-index: 9998;
  transition: border 0.3s;
}

.button.flyo-show:hover {
  border: 1px solid #b14673;
  background: #fff url(img/menu.png) center center no-repeat;
}

.button.flyo-show .flyo-caption, .button.flyo-hide .flyo-caption, .button.flyo-show .flyo-icon, .button.flyo-hide .icon {
  display: none;
}

.button.flyo-hide {
  position: fixed;
  top: 10px;
  left: 10px;
  height: 32px;
  width: 32px;
  border-radius: 50px;
  font-size: 17pt;
  color: #333;
  background: #eee url(img/menu.png) center center no-repeat;
  padding: 11px;
  box-shadow: 1px 1px 4px rgba(150,150,150,0.7);
  border: 1px solid #eee;
  z-index: 9998;
  display: none !important;
  transition: border 0.3s;
}

.open .button.flyo-hide {
  display: block !important;
}

.button.flyo-hide:hover {
  border: 1px solid #b14673;
  background: #eee url(img/menu.png) center center no-repeat;
}

.flyo-header {
  text-align: center;
  padding: 10px 20px;
}

/** Menu when page is scrolled down */

body.menu-scrolled div.menubar {
  
}

/** General content styles */

hr {
  height: 1px;
  background: #b6b6b6;
  border: none;
  margin: 20px 0;
}

/** Remove top margin from the first element */
.content *:first-child {
  margin-top: 0;
}

.content {
  
}

.content h1   
.content h2, 
.content h3, 
.content h4 {
  font-family: Cormorant, serif;
}

/** Important for breakout/breakins */
.content:empty {
  display: none;
}

.content a {
  color: #b14673;
  transition: color 0.3s;  
}

.content a:hover {
  color: #db426e;
}

.footer {
  color: #fff;
  background: #333;
  position: relative;
  padding: 20px 0;
}

.col2.right {
  text-align: right;
}

.footer-sticky .footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.footer a {
  color: #fff;
  transition: color 0.3s;
  text-decoration: none;
}

.footer a:hover {
  color: #eee;
}

span.powered {
  display: inline-block;
  margin-left: 1em;
}

/** Buttons and button-type things */
button, 
input[type="submit"], 
.button, 
.formandu-button, 
input[type="button"], 
a.button,
.eshop_userauth_buttonbox a, 
a.shop-item-more,
.eshop-cart2-remove button {
  background: rgba(255,255,255,0.5);
  color: #333;
  transition: background 0.3s, border 0.3s, color 0.3s;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  padding: 10px 20px;
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 12pt;
  font-family: "Josefin Sans", sans-serif;
  font-weight: normal;
  border: 1px solid #9d9d9d;
  border-radius: 4px;
}

button:hover, 
input[type="submit"]:hover, 
.button:hover, 
.formandu-button:hover, 
input[type="button"]:hover, 
a.button:hover, 
.eshop_userauth_buttonbox a:hover, 
a.shop-item-more:hover
.eshop-cart2-remove button:hover {
  background: #db426e;
  border: 1px solid #db426e;
  color: #fff;
}

/** Text controls */
.formandu-text, .formandu-dropdown, .formandu-textarea, select {
  background: rgba(255,255,255,0.7);
  border: 1px solid #9d9d9d;
  transition: border 0.3s;
  font-size: 12pt;
  font-family: "Josefin Sans", sans-serif;
  font-weight: normal;
  margin: 10px;
  padding: 8px;
  width: calc(100% - 20px);
  box-sizing: border-box;
  border-radius: 4px;
  color: #333;
}

.formandu-text:hover, .formandu-text:focus, .formandu-dropdown:hover, .formandu-dropdown:focus, .formandu-textarea:hover, .formandu-textarea:focus, select:hover, select:focus {
  border: 1px solid #db426e; 
}

/*******************************************************************************
 ** Responsive */

/** Phone/tablet */

@media (max-width: 1000px) {
  .content.brokenout .pb-block-outer>div, .wrapper, .flexi-cookie-inner {
    width: 100%;
  }  
  #up-arrow, .search .form {
    display: none;
  } 
}

/** Menus */

@media (max-width: 975px) {
  body {
    
  }
  .menubar {
    height: 0;
    padding: 0;    
  }
  nav.menu {
    padding: 0;
    background: #fff;    
    text-align: left;
  }
  nav.menu span.item span.submenu a, nav.menu>span.item>a, nav.menu>span.item.has-submenu>a:hover {
    text-align: left;
    background: #fff;
    color: #333;
    transition: background 0.3s, color 0.3s;
    padding: 15px;
  }  
  
  nav.menu span.item span.submenu a:hover , nav.menu>span.item>a:hover {
    background: #db426e;
    color: #fff;
  }
  
  nav.menu.flyout span.item span.submenu {
    padding: 0 0 5px 20px;
  }  
}

/** Big phone */

@media (max-width: 750px) {
  .formandu-text, .formandu-textarea, .formandu-dropdown, .formandu-static-text, .formandu-listbox {
    width: 95%;
  }
  .footer {
    padding: 0 5px;
  }
  .flexi-cookie-msg {    
    float: none;
    font-size: 0.8em;
    padding: 0;
    width: auto; 
  }
  .flexi-cookie-buttons {
    width: auto;    
    float: none;
    text-align: center;
    padding: 5px 0;
  }
}

/** Small phone */

@media (max-width: 600px) {
  .header {
    text-align: center;
    padding-top: 60px;
  }
  .cart-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    height: 32px;
    width: 32px;
    border-radius: 50px;
    font-size: 17pt;
    color: #333;
    background: #fff url(img/bag.png) center center no-repeat;
    padding: 11px;
    box-shadow: 1px 1px 4px rgba(150,150,150,0.7);
    border: 1px solid #fff;
    z-index: 9999;
    transition: border 0.3s;
  }
  
  .cart-btn span, .cart-btn img {
    display: none;
  }

  .cart-btn:hover {
    border: 1px solid #b14673;
    background: #fff url(img/bag.png) center center no-repeat;
  }
  
  .content {
    padding: 0 3px;
  }
  .footer, .col2.right, .header {
    text-align: center;
  }
  .flexi-system-widgets {
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
  }
  .flexi-system-widget {
    border-left: 0;
    display: block;
  }
  span.powered {
    display: block;
    margin-left: 0;
  }
}

/** EShop */

.eshop-department-header, .eshop-department-user-header, .eshopdepartment h2.title {
  display: none;
}

.eshopdepartment .eshop-gallery-item {
  float: none;
  overflow: hidden;
  position: relative;
  margin: 20px 1%;
  width: 30.5%;
  display: inline-block;
  text-align: center;  
  height: 400px;
}

.eshopdepartment .eshop-gallery-item-image {
  margin: 0 0 10px;
  height: 220px;
  overflow: hidden;
  background: #ddcad3 url(img/no-image.png) center center no-repeat;
}

.eshop-item-image {
  background: #ddcad3 url(img/no-image.png) center center no-repeat;
}

.eshopdepartment .eshop-gallery-item-caption {
  margin: 10px 0;
}

.eshopdepartment .eshop-gallery-item-caption a {  
  color: #333;
  text-decoration: none;  
  font-size: 140%;
  font-weight: 300;
  text-transform: uppercase;
  display: block;
  height: 24px;
  white-space: nowrap;
  overflow-x: hidden;
}

a.shop-item-more {
  display: block;
  width: 30%;
  margin: 10px auto 0;
}

.eshop-cart2-remove button { 
  padding: 2px 10px;
}

.eshopitem a.permalink {
  display: inline-block;
}

.eshopitem .post-meta {
  text-align: center;
}

.eshop-cart-summary h3 {
  border-bottom: 1px solid #aaa;
  padding-bottom: 10px;
  font-size: 16pt;
  margin-top: 0;
}

.eshop-cart-summary h3 input {
  font-size: 11pt;
}

.eshop-cart-summary h3:before,
.eshop-cart-summary h3:after {
  display: table;
  content: ' ';
  clear: both;
}

.eshop-cart2-summary {
  border-top: 1px solid #aaa;
  border-left: 1px solid #aaa;
  width: 100%;
  border-spacing: 0;
}

.eshop-cart2-summary th, .eshop-cart2-summary td {
  border-right: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  padding: 4px;
  text-align: left;
}

.eshop-cart2-header {
  background: #aaa;
  color: #fff;
}

.eshop-cart2-total {
  font-weight: bold;
}

.eshop_cart_widget {
  margin: 10px 0;
  border: 1px solid #aaa;
  padding: 10px;
}

.eshop-cart2-remove {
  text-align: center !important;
}

.eshop-cart2-price, .eshop-cart2-unitprice {
  text-align: right !important;
}

.eshop-cart2-summary .eshop-price-net {
  display: block;
  font-size: 80%;
}
