/***********************************************************

1. CSS RESET

2. VARIABLES
2.1 GRADIENTS
2.2 CSS3 TRANSITIONS

3. GLOBAL THEME STYLES
3.1 HOVERS

4. TYPOGRAPHY
4.1 HEADINGS
4.2 PARAGRAPHS & LISTS
4.3 LINKS
4.4 PRODUCT ATTRIBUTES (name, description, price)
4.5 RTE

5. FORMS & COMPONENTS
5.1 FORMS
5.2 ALERTS
5.3 BUTTONS

6. GLOBAL PAGE LAYOUT

7. SIDEBAR CONFIGURATION

8. MAIN PAGE
8.1 HEADER
8.2 NAVIGATION
8.3 NIVOSLIDER
8.4 SHOWCASE
8.5 MAIN PRODUCT LISTING
8.6 FOOTER

9. COLLECTION PAGES
9.1 PAGES CONTENT
9.2 BREADCRUMBS
9.3 COLLECTION LISTING
9.4 PAGINATION

10. SIDEBAR WIDGETS
10.1 LINKS LIST
10.2 SIDEBAR PRODUCT LISTING

11. SEARCH RESULTS PAGE

12. PRODUCT PAGE
12.1 PRODUCT IMAGES
12.2 PRODUCT INFO
12.3 PRODUCT PAGINATION
12.4 RELATED PRODUCTS

13. BLOG
13.1 POSTS LISTING
13.2 SINGLE POST

14. CUSTOMER PAGES
14.1 LOG IN
14.2 ACCOUNT
14.3 ADDRESSES
14.4 ORDERS

15. CART PAGE
15.1 CART PRODUCTS
15.2 GUEST CHECKOUT

16. CONTACTS PAGE

***********************************************************/

/***************************************************************************
                           1. CSS RESET
***************************************************************************/

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,
font,
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,
input,
textarea,
button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none !important;
  vertical-align: top;
  line-height: 1.5em;
  background: transparent;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}
a,
span {
  vertical-align: inherit;
  line-height: inherit;
  font-weight: inherit;
}
b,
strong {
  font-weight: bold;
}
i,
dfn {
  font-style: italic;
}

img {
  max-width: 100%;
  width: 100%;
  height: 100%;
}

/***************************************************************************
                           2. VARIABLES
***************************************************************************/

/* 2.1 GRADIENTS */

/* 2.2 CSS3 TRANSITIONS */

/***************************************************************************
                           3. GLOBAL THEME STYLES
***************************************************************************/

/* hiding placeholder text on focus in webkit, thanks to http://www.kolodvor.net/2012/03/23/webkit-placeholder-attribute-behavior */
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

/* clearfix - nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix {
  zoom: 1;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

/* utility classes: hidden, float left, float right, etc. */
.hidden,
.visuallyhidden {
  display: none;
}

.left {
  float: left;
}
.right {
  float: right;
}

/* fancybox styles */
#fancybox-wrap {
  padding: 0 !important;
}
#fancybox-content {
  width: 100% !important;
  text-align: center;
}

#fancybox-title {
  left: 50% !important;
}
#fancybox-title #fancybox-title-float-wrap {
  margin: 0 0 0 -50% !important;
}

/* addthis styles */
.addthis_toolbox {
  margin: 15px 0 0 0;
  border-top: 1px solid #36071b;
}
.addthis_toolbox > a {
  margin: 15px 15px 0 0 !important;
  padding: 0 !important;
}

/* jquery.formstyler styles for selects */
.jq-selectbox {
  display: block;
  z-index: 1000 !important;
  cursor: pointer;
}

.jq-selectbox__select-text {
  width: 100%;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.jq-selectbox__trigger i {
  position: absolute;
  top: 0;
  right: 0;

  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.jq-selectbox__dropdown {
  width: 100%;

  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.jq-selectbox.opened .jq-selectbox__trigger i {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* misc */
#at15s {
  z-index: 999 !important;
}

#habla_window_div {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
}

/* add to cart message */
.cart_popup {
  width: 100%;
  height: 86px;
  font-size: 25px;
  line-height: 85px;
  color: #fff;
  text-align: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  background: rgba(229, 29, 29, 0.7);
  display: none;
  /*   	top: 74px !important; */
}

/* 3.1 HOVERS */
.hover__1 {
  overflow: hidden;
  position: relative;
}

.hover__1:before,
.hover__1:after {
  content: "";
  width: 100%;
  height: 50%;
  display: block;
  background: rgba(229, 29, 29, 0.2);
  position: absolute;
  left: 0;

  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hover__1:before {
  top: -100%;
}
.hover__1:after {
  bottom: -100%;
}

.hover__1:hover:before {
  top: 0;
}
.hover__1:hover:after {
  bottom: 0;
}

.hover__2 {
  overflow: hidden;
  position: relative;
}

.hover__2:before,
.hover__2:after {
  content: "";
  width: 50%;
  height: 100%;
  display: block;
  background: rgba(229, 29, 29, 0.2);
  position: absolute;
  top: 0;

  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hover__2:before {
  left: -100%;
}
.hover__2:after {
  right: -100%;
}

.hover__2:hover:before {
  left: 0;
}
.hover__2:hover:after {
  right: 0;
}

.hover__3 {
  overflow: hidden;
  position: relative;
}

.hover__3:before {
  content: "";
  width: 100%;
  height: 0;
  display: block;
  background: rgba(229, 29, 29, 0.2);
  position: absolute;
  left: 0;
  top: 50%;

  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hover__3:hover:before {
  height: 100%;
  top: 0;
}

.hover__4 {
  overflow: hidden;
  position: relative;
}

.hover__4:before {
  content: "";
  width: 0;
  height: 100%;
  display: block;
  background: rgba(229, 29, 29, 0.2);
  position: absolute;
  left: 50%;
  top: 0;

  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hover__4:hover:before {
  width: 100%;
  left: 0;
}

.hover__5 {
  overflow: hidden;
  position: relative;
}

.hover__5:before {
  content: "";
  width: 200%;
  height: 200%;
  display: block;
  position: absolute;
  left: -50%;
  top: -50%;
  -webkit-box-shadow: inset 0 0 0 0 rgba(229, 29, 29, 0.2);
  box-shadow: inset 0 0 0 0 rgba(229, 29, 29, 0.2);

  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.hover__5:hover:before {
  -webkit-box-shadow: inset 0 0 0 300px rgba(229, 29, 29, 0.2);
  box-shadow: inset 0 0 0 300px rgba(229, 29, 29, 0.2);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.hover__6 {
  overflow: hidden;
  position: relative;
}

.hover__6:before,
.hover__6:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(229, 29, 29, 0.1);
  position: absolute;

  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hover__6:before {
  left: -100%;
  top: -100%;
}
.hover__6:after {
  right: -100%;
  bottom: -100%;
}

.hover__6:hover:before {
  left: 0;
  top: 0;
}
.hover__6:hover:after {
  right: 0;
  bottom: 0;
}

.hover__7 {
  overflow: hidden;
  position: relative;
}

.hover__7:before {
  content: "";
  width: 200%;
  height: 200%;
  display: block;
  position: absolute;
  left: -50%;
  top: -50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: inset 0 0 0 0 rgba(229, 29, 29, 0.2);
  box-shadow: inset 0 0 0 0 rgba(229, 29, 29, 0.2);

  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.hover__7:hover:before {
  -webkit-box-shadow: inset 0 0 0 300px rgba(229, 29, 29, 0.2);
  box-shadow: inset 0 0 0 300px rgba(229, 29, 29, 0.2);
}

.hover__8 {
  overflow: hidden;
  position: relative;
}

.hover__8:before {
  content: "";
  width: 200%;
  height: 200%;
  display: block;
  position: absolute;
  left: -50%;
  top: -50%;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 300px rgba(183, 109, 224, 0.2);
  box-shadow: inset 0 0 0 300px rgba(183, 109, 224, 0.2);
  -webkit-transform: scale(0.001);
  -moz-transform: scale(0.001);
  -ms-transform: scale(0.001);
  -o-transform: scale(0.001);
  transform: scale(0.001);

  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.hover__8:hover:before {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

/***************************************************************************
                           4. TYPOGRAPHY
***************************************************************************/

body {
  font-family: Roboto Condensed;
  font-size: 18px;
  color: #045b80;
  //    background: #22315a;
}

/* 4.1 HEADINGS */

.column_center h1 {
  font-family: Inter var;
  font-size: 55;
  font-weight: 600;
  letter-spacing: -0.52px;
  line-height: 35px;
  margin-top: 25px;
  margin-bottom: 20px;
  text-align: center;
}
.column_center h2,
.column_center h3,
.column_center h4,
.column_center h5,
.column_center h6 {
  margin: 0;
  padding: 0;
  font: 20px Roboto Condensed;
  color: #1f8ebe;
  text-transform: uppercase;
}
.column_center h2 {
  text-align: center;
}
.column_center h2,
.column_center h3,
.column_center h4 {
  font-size: 15px;
}

.column_center h5,
.column_center h6 {
  font-size: 13px;
}

.column_center .page_heading {
  margin: 0;
  padding: 0 0 5px 0;
}
.column_center .page_heading a {
  float: right;
}
.column_center .page_heading.h2_left {
  text-align: left;
}
.column_center .page_heading .new a {
  font-size: 15px;
}

/* 4.2 PARAGRAPHS & LISTS */
p {
  margin: 19px 0;
  padding: 0;
}

.column_center ul {
  list-style-type: square;
  list-style-position: inside;
}
.column_center ol {
  list-style-type: decimal;
  list-style-position: inside;
}

/* 4.3 LINKS */
a {
  color: #76d6ff;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #1b9a41;
}

/* 4.4 PRODUCT ATTRIBUTES (name, description, price) */
.product_name {
  font-weight: bold;
  font-size: 21px;
  color: #22315a;
}
.product_name a {
  font-weight: bold;
  text-transform: uppercase;
  color: #22315a;

  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.product_name a:hover {
  color: #1b9a41;
}

.product_desc {
  font-size: 18px;
  color: #778210;
}

.money {
  color: #c64003;
}
.compare-at-price {
  text-decoration: line-through;
}
.money.new {
  color: #9d5981;
}

/* Blog Page Font Styling */
.article {
  font-family: "Tiempos", Georgia, serif !important; /* Apply Tiempos font */
  color: #333 !important; /* Neutral text color */
  line-height: 1.8 !important;
  margin: 0 auto !important;
  max-width: 55vw !important; /* Desktop-friendly width */
}

@media (max-width: 1024px) {
  .article {
    max-width: 80vw !important; /* Adjust width for tablets */
  }
}

@media (max-width: 768px) {
  .article {
    max-width: 90vw !important; /* Adjust width for mobile */
    padding: 0 10px !important; /* Add padding for smaller screens */
  }
}

/* Headings */
.article h1,
.article h2,
.article h3,
.article h4,
.article h5,
.article h6 {
  font-family: "Tiempos", Georgia, serif !important; /* Consistent heading font */
  font-weight: bold !important; /* Bold headings */
  color: #111 !important; /* Darker color for readability */
  margin: 20px 0 !important; /* Space between headings */
  line-height: 1.4 !important;
  text-align: left !important; /* Default alignment */
}

.article h1 {
  font-size: 40px !important; /* Prominent size for H1 */
  padding-block: 30px;
}

.article h2 {
  font-size: 32px !important;
  padding-block: 25px;
}

.article h3 {
  font-size: 26px !important;
  padding-block: 20px;
}

.article h4 {
  font-size: 22px !important;
}

.article h5 {
  font-size: 18px !important;
}

.article h6 {
  font-size: 16px !important;
}

/* Adjust heading sizes for smaller screens */
@media (max-width: 768px) {
  .article h1 {
    font-size: 30px !important;
  }

  .article h2 {
    font-size: 26px !important;
  }

  .article h3 {
    font-size: 22px !important;
  }

  .article h4 {
    font-size: 20px !important;
  }

  .article h5 {
    font-size: 18px !important;
  }

  .article h6 {
    font-size: 16px !important;
  }
}

/* Paragraphs */
.article p {
  font-family: "Tiempos", Georgia, serif !important; /* Font for paragraph text */
  font-size: 18px !important;
  line-height: 1.8 !important;
  margin-bottom: 16px !important; /* Space between paragraphs */
  color: #333 !important;
  text-align: justify !important; /* Align text for better readability */
}

@media (max-width: 768px) {
  .article p {
    font-size: 16px !important; /* Slightly smaller font for readability on mobile */
  }
}

/* Spans */
.article span {
  font-family: "Tiempos", Georgia, serif !important;
  font-size: 18px !important;
  color: #333 !important;
}

@media (max-width: 768px) {
  .article span {
    font-size: 16px !important;
  }
}

/* Blockquotes */
.article blockquote {
  font-family: "Tiempos", Georgia, serif !important;
  font-size: 20px !important;
  font-style: italic !important;
  color: #555 !important;
  margin: 20px 0 !important;
  padding-left: 20px !important;
  border-left: 4px solid #ccc !important;
}

/* Links */
.article a {
  font-family: "Tiempos", Georgia, serif !important;
  color: #0073e6 !important;
  text-decoration: underline !important;
}

.article a:hover {
  text-decoration: none !important;
  color: #005bb5 !important;
}

/* Lists */
.article ul,
.article ol {
  font-family: "Tiempos", Georgia, serif !important;
  margin-left: 20px !important; /* Indentation for lists */
  margin-top: 10px !important;
  margin-bottom: 10px !important;
  padding-left: 20px !important;
  line-height: 1.8 !important;
}

.article li {
  margin-bottom: 18px !important; /* Space between list items */
}

/* Images */
.article img {
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
  margin: 30px 0 !important;
}

/* Horizontal Rules */
.article hr {
  border: none !important;
  border-top: 1px solid #ccc !important;
  margin: 20px 0 !important;
}

/* Captions and Small Text */
.article small,
.article .caption {
  font-family: "Tiempos", Georgia, serif !important;
  font-size: 14px !important;
  color: #666 !important;
  line-height: 1.5 !important;
}

/* Alignments */
.article .center {
  text-align: center !important;
}

.article .right {
  text-align: right !important;
}

.article .left {
  text-align: left !important;
}

/* 4.5 RTE */
.rte {
  margin-top: 15px;
  margin-bottom: 15px;
  color: inherit;
}

.rte a {
  color: inherit;
  text-decoration: underline;
}
.rte a:hover {
  text-decoration: none;
}

.rte h1 {
  font-size: 19px;
}
.rte h2,
.column_center h2,
h2 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 300;
  color: #1f8ebe;
  letter-spacing: 4px;
  line-height: 1.4em;
  font-weight: 300;
}
.column_center h2 span {
  border-bottom: 3px solid #1f8ebe;
  padding-bottom: 4px;
}
.rte h3 {
  font-size: 16px;
}
.rte h4 {
  font-size: 14px;
}
.rte h5 {
  font-size: 13px;
}
.rte h6 {
  font-size: 12px;
}

.rte img {
  margin-top: 15px;
  margin-bottom: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Roboto Condensed;
}

.title1 {
  font-family: "Grand Hotel", cursive;
  font-size: 72px;
  line-height: 66px;
  color: #1f8ebe;
}
h2 + .title1 {
  margin-top: 14px;
}
.text1 {
  font-size: 36px;
  font-weight: 300;
  color: #9d5981;
  letter-spacing: 2px;
  padding-top: 2px;
  padding-bottom: 16px;
}

/***************************************************************************
                           5. FORMS & COMPONENTS
***************************************************************************/

/* 5.1 FORMS */
label {
  font-weight: bold;
  font-size: 18px;
}

select,
select.form-control,
textarea,
textarea.form-control,
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="telephone"] {
  padding: 6px;
  border: 1px solid #22315a;
  font: normal 13px "Arial";
  color: #045b80;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
  box-shadow: none;
  background: #22315a;
  color: #ffffff;
}
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="telephone"] {
  height: 34px;
  line-height: 18px;
  padding-top: 7px;
  padding-bottom: 7px;
  -webkit-appearance: none;
}

select,
select.form-control {
  padding: 8px 3px;
}

textarea,
textarea.form-control {
  min-width: 100%;
  max-width: 100%;
}

.form-control:focus {
  border-color: #aaa;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px #ddd;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px #ddd;
}

.form-group {
  vertical-align: top !important;
  margin-top: 15px;
  margin-bottom: 0;
}
.form-group span {
  vertical-align: baseline;
}

.form-horizontal label {
  padding-top: 0 !important;
  text-align: right;
  line-height: 34px;
}
.form-horizontal select {
  width: 100%;
}

.action_bottom span.note {
  margin-left: 5px;
}
.action_bottom span.note a {
  margin-left: 5px;
}

/* 5.2 ALERTS */
.alert {
  margin: 15px 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.alert > p,
.alert > ul,
.alert > ol {
  list-style-type: none;
  margin: 0;
}

.alert > p + p,
.alert > ul + ul {
  margin: 10px 0 0 0;
}

/* 5.3 BUTTONS */
.btn,
.btn a,
.btn-info,
.btn-primary {
  box-shadow: none !important;
  border: 0px !important;
  position: relative;
  display: inline-block;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 14px 29px 13px;
  color: #ffffff;
  background: #9d5981;
  font-weight: 300;

  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.btn a {
  padding: 0 !important;
  border: none !important;
}

.btn-cart {
  background: #1f8ebe;
}

.btn:hover,
.btn:hover a,
.btn-info:hover,
.btn-primary:hover {
  background: #22315a;
  color: #ffffff;
}
.btn-cart:hover {
  background: #9d5981;
}
.btn:focus {
  color: #ffffff;
}

/***************************************************************************
                           6. GLOBAL PAGE LAYOUT
***************************************************************************/

html,
body {
  height: 100%;
}

#wrapper {
  background-color: #ffffff;
}

#wrapper2 {
  overflow: hidden;
}

.container {
  padding: 0;
}

#main {
  margin-top: 0px;
  position: relative;
  z-index: 2;
}

.template-index #main {
  margin-top: 6px;
}

#main_content,
.column .widget {
  margin-bottom: 34px !important;
}

/***************************************************************************
                           7. SIDEBAR CONFIGURATION
***************************************************************************/

/* NO SIDEBAR */
.sidebar_none {
}

/* LEFT SIDEBAR */
.sidebar_left {
}
.sidebar_left .column_center {
  width: 100%;
}
/* .sidebar_left .column_center #main_content {
    margin: 0 0 0 25%;
} */
/* .col-sm-12 {
  margin: 0 0 0 0%;
} */
.sidebar_left .column_left {
  /*     margin-left: -100%; */

  margin-left: 0;
}

/* RIGHT SIDEBAR */
.sidebar_right {
}

/* BOTH SIDEBARS */
.sidebar_both {
}
.sidebar_both .column_center {
  width: 100%;
}
.sidebar_both .column_center #main_content {
  margin: 0 25%;
}
.sidebar_both .column_left {
  margin-left: -100%;
}
.sidebar_both .column_right {
  margin-left: -25%;
}

/* NOSIDEBAR PAGES */
.sidebar_off .column_center #main_content {
  margin: 0;
}

/***************************************************************************
                           8. MAIN PAGE
***************************************************************************/

.header_top {
  background: #22315a;
}

.header_user {
  float: left;
  padding-top: 19px;
}
.header_user li {
  position: relative;
  display: inline-block;
  padding: 3px 0px 0px;
  margin-right: 33px;
}
.header_user li + li {
  padding-left: 31px;
}
.header_user li + li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 34px;
  width: 0;
  border-left: 1px solid #ffffff;
}
.header_user li a {
  position: relative;
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 2.9px;
  padding-bottom: 26px;
  display: inline-block;
}
.header_user li a i {
  margin: 0 5px 0 0;
  line-height: 1.5em;
  vertical-align: baseline;
}
.header_user li a:after {
  position: absolute;
  height: 7px;
  bottom: 0;
  left: 0;
  width: 0px;
  right: auto;
  content: "";

  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  background: #ffffff;
}
.header_user li a:hover:after {
  display: block;
  width: 100%;
}

.header_search {
  float: right;
  margin-top: 15px;
}
.header_search form {
  background: #22315a;
  position: relative;
  width: 270px;
  padding-right: 32px;
  border-radius: 40px;
  -webkit-box-shadow: 1px 1px 1px 1px rgba(126, 148, 204, 0.75),
    inset 1px 1px 1px 1px rgba(75, 97, 152, 0.75);
  -moz-box-shadow: 1px 1px 1px 1px rgba(126, 148, 204, 0.75),
    inset 1px 1px 1px 1px rgba(75, 97, 152, 0.75);
  box-shadow: 1px 1px 1px 1px rgba(126, 148, 204, 0.75),
    inset 1px 1px 1px 1px rgba(75, 97, 152, 0.75);
  padding-left: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.header_search #search-field {
  background: transparent;
  border: 0px;
  width: 100%;
  height: 40px;
  color: #ffffff;
  padding: 10px 10px;
}
.header_search #search-submit {
  position: absolute;
  right: 0;
  bottom: 4px;
  top: 0;
  vertical-align: middle;
  line-height: 36px;
  font-size: 13px;
  color: #ffffff;
  width: 30px;
  text-align: left;
}
.header_search #search-submit i {
  vertical-align: middle;
}
.header_search #search-submit:hover i {
  color: #ffffff;
}

.header_top-right {
  float: right;
  padding-top: 22px;
}

.header_cart {
  display: inline-block;
  padding: 0px 62px 0px 36px;
}
.header_cart a {
  vertical-align: baseline;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 1px;
}
.header_cart a i {
  font-size: 26px;
  line-height: 22px;
  display: inline-block;
  color: #ffffff;
  padding-right: 9px;

  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.header_cart a b {
  line-height: inherit;
  vertical-align: inherit;
  font-weight: normal;
  color: #ffffff;

  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.header_cart a span {
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.header_cart a span.count {
  padding: 0 4px;
}
.header_cart a:hover i,
.header_cart a:hover span {
  color: #ffffff;
}
.header_cart a:hover b {
  color: #ffffff;
}

.header_currency {
  display: inline-block;
}
.header_currency .jq-selectbox {
  width: 60px;
}
.header_currency .jq-selectbox__select {
  height: 25px;
  padding: 0 0px 0 21px;
}
.header_currency .jq-selectbox__select-text {
  line-height: 21px;
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 1px;
}
.header_currency .jq-selectbox__trigger i {
  left: -1px;
  top: 4px;
  font-size: 15px;
  color: #ffffff;
}
.jq-selectbox__trigger i {
  right: auto;
}

.header_currency .jq-selectbox__dropdown {
  width: 100% !important;
  top: 24px !important;
}
.header_currency .jq-selectbox__dropdown ul {
  -webkit-box-shadow: 1px 1px 1px 0px rgba(126, 148, 204, 0.75);
  -moz-box-shadow: 1px 1px 1px 0px rgba(126, 148, 204, 0.75);
  box-shadow: 1px 1px 1px 0px rgba(126, 148, 204, 0.75);
  background: #ffffff;
  border: 1px solid #36071b;
  border-radius: 10px;
  padding: 10px 0px;
}
.header_currency .jq-selectbox__dropdown ul li {
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  color: #22315a;
  text-align: center;
}

.header_currency .jq-selectbox__dropdown ul li:hover,
.header_currency .jq-selectbox__dropdown ul li.sel {
  color: #ffffff;
  background: #ffffff;
}

.top_shadow {
  position: relative;
  z-index: 0;
}
.top_shadow .inside_top {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 84px;
  background: #22315a;
  z-index: 0;
}
.top_shadow .inside_grad {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 365px;

  background: #22315a;
  /* Old browsers */
  background: #22315a; /*theme_color_change edit all the fields below with Visual studio code*/
  /* Old browsers */
  background: -moz-linear-gradient(
    top,
    #22315a 0%,
    #2e4789e0 15%,
    #6684d3c2 30%,
    #abc2ff17 48%,
    #ffffff 75%,
    #ffffff 100%
  );
  /* FF3.6+ */
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #22315a),
    color-stop(15%, #2e4789e0),
    color-stop(30%, #40475a00),
    color-stop(48%, #abc2ff17),
    color-stop(75%, #ffffff),
    color-stop(100%, #ffffff)
  );
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(
    top,
    #22315a 0%,
    #2e4789e0 15%,
    #40475a00 30%,
    #abc2ff17 48%,
    #ffffff 75%,
    #ffffff 100%
  );
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(
    top,
    #22315a 0%,
    #2e4789e0 15%,
    #40475a00 30%,
    #abc2ff17 48%,
    #ffffff 75%,
    #ffffff 100%
  );
  /* Opera 11.10+ */
  background: -ms-linear-gradient(
    top,
    #22315a 0%,
    #2e4789e0 15%,
    #40475a00 30%,
    #abc2ff17 48%,
    #ffffff 75%,
    #ffffff 100%
  );
  /* IE10+ */
  background: linear-gradient(
    to bottom,
    #22315a 0%,
    #2e4789e0 15%,
    #40475a00 30%,
    #abc2ff17 48%,
    #ffffff 75%,
    #ffffff 100%
  );
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#22315a', endColorstr='#ffffff',GradientType=0 );
  /* IE6-9 */
  z-index: 0;
}
.template-index .top_shadow .inside_grad {
  height: 744px;
}
.top_shadow + div {
  position: relative;
  z-index: 1;
}

#logo {
  text-align: center;
  margin-top: 31px;
}
#logo a {
  position: relative;
  display: inline-block;
  font-family: "Grand Hotel", cursive;
  color: #ffffff;
  padding-bottom: 12px;

  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
#logo a:before {
  position: absolute;
  height: 3px;
  bottom: 0;
  left: 0;
  content: "";
  background: #ffffff;
  width: 100%;
}

#logo b {
  font-size: 72px;
  font-weight: normal;
  letter-spacing: 1px;
  line-height: 72px;
  position: relative;
}
#logo b:before {
  position: absolute;
  top: 3px;
  left: 0;
  overflow: hidden;
  padding: 10px 0;
  width: 0;
  color: #9d5981;
  /*content: attr(data-hover);*/
  -webkit-transition: width 0.5s ease-in-out;
  -moz-transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
  text-align: left;
}
#logo a:hover b:before {
  width: 105%;
}
#logo span {
  display: block;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  font-family: Roboto Condensed;
  letter-spacing: 8px;
  margin-top: -5px;
  position: relative;
  padding-left: 10px;
}
#logo a:hover {
  color: #9d5981;
}
#logo a:after {
  position: absolute;
  height: 3px;
  bottom: 0;
  left: 0;
  content: "";

  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  background: #9d5981;
  width: 0;
}
#logo a:hover:after {
  width: 100%;
}

/* 8.2 NAVIGATION */

#navigation {
  position: relative;
  /*     z-index: 99; */
  height: 75px;
}
#navigation .nav_wr {
  text-align: center;
  border-top: 1px solid #ed8c9c;
}
#navigation nav {
  position: relative;

  display: inline-block;
}
.template-product.modal-open #navigation nav {
  z-index: unset !important;
}
#navigation.isStuck {
  width: 100%;
  left: 0;
  top: 0;
  background: #22315a;
  z-index: 9 !important;
}
.sf-menu li {
  position: relative;
}
.template-cart .top_shadow .inside_top,
.template-collection .top_shadow .inside_top,
.template-product .top_shadow .inside_top,
.template-page .top_shadow .inside_top,
.template-blog .top_shadow .inside_top {
  height: 100px;
}
/*================================>> 1 Level <<========================================*/
.sf-menu {
  list-style: none !important;
}
.sf-menu > li {
  float: left;
  margin: 12px 0px 9px;
  padding: 0 2px;
  height: 47px;
}
.sf-menu > li + li {
  border-left: 1px solid #ed8c9c;
}
.sf-menu > li > a {
  display: inline-block;
  padding: 12px 50px 15px;
  border-radius: 40px;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 2px;
  font-weight: 300;

  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  color: #ffffff;
}

.sf-menu > li.active > a,
.sf-menu > li:hover > a {
  color: #22315a;
  background: #ffffff;
}

/*================================>> 2 Level <<========================================*/

.sf-menu ul {
  display: none;
  min-width: 180px !important;
  width: 100% !important;
  position: absolute;
  left: 0;
  top: 50px;
  z-index: 100;
  border-radius: 20px;
  padding: 10px 0px;
  background: #ffffff;
  -webkit-box-shadow: 1px 1px 15px 0px rgba(126, 148, 204, 0.75);
  -moz-box-shadow: 1px 1px 15px 0px rgba(126, 148, 204, 0.75);
  box-shadow: 1px 1px 15px 0px rgba(126, 148, 204, 0.75);
  border: 1px solid #36071b;
}
.sf-menu ul li a {
  display: block;
  padding: 10px;
  color: #22315a;
  text-transform: uppercase;

  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.sf-menu ul > li a:hover,
.sf-menu ul > li.active a {
  background: #ffffff;
  color: #ffffff;
}

/* 8.4 SHOWCASE */
.custom_showcase {
  position: relative;
}
.custom_showcase a {
  display: inline-block;
}
.custom_showcase .inside {
  position: absolute;
}
.custom_showcase .wrapper {
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  right: 0px;

  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  opacity: 0;
  background: transparent;
}
.custom_showcase__2 .wrapper {
  border-radius: 0px 10px 0px 0px;
}
.custom_showcase__2 img {
  border-radius: 0px 10px 0px 0px;
  width: 100%;
}
.custom_showcase__3 img {
  border-radius: 0px 0px 10px 0px;
  width: 100%;
}
.custom_showcase__3 .wrapper {
  border-radius: 0px 0px 10px 0px;
}
.custom_showcase__2 a:hover .wrapper,
.custom_showcase__3 a:hover .wrapper {
  opacity: 1;
}

.custom_showcase .inside {
  position: absolute;
  top: 0;
}
.custom_showcase__1 a,
.custom_showcase__2 a,
.custom_showcase__3 a {
  display: block;
}
.custom_showcase__1 .inside {
  right: 0;
  width: 47%;
  width: 281px;
  top: 9.9%;
}
.custom_showcase__1 img {
  display: block;
  border-radius: 10px 0px 0px 10px;

  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  width: 100%;
}
.custom_showcase__1 a:hover img {
  opacity: 0.7;
}
.custom_showcase__1 h2 {
  font-weight: 400;
  letter-spacing: 5px;
}
.custom_showcase__1 .title1 {
  display: inline-block;
  padding-bottom: 9px;
}
.custom_showcase__1 .title1 span {
  position: relative;
  padding-right: 15px;
  display: block;
  float: left;
}
.custom_showcase__1 .title1 span:after {
  content: "";
  position: absolute;
  left: 4px;
  right: 80px;
  bottom: -7px;
  border-bottom: 3px solid #1f8ebe;
}
.custom_showcase__1 p {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1f8ebe;
  margin-right: 10px;
}
.custom_showcase__1 .btn {
  margin-top: 2px;
  position: relative;
  display: inline-block;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 12px 22px 15px 32px;
  color: #ffffff;
  background: #1f8ebe;
  font-weight: 300;

  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.custom_showcase__1 .btn i {
  padding-left: 9px;
  padding-top: 3px;
  font-size: 16px;
}
.custom_showcase__1 .btn:hover {
  background: #9d5981;
}
.custom_showcase__1,
.custom_showcase__2,
.custom_showcase__3 {
  float: left;
  width: 48.75%;
}
.custom_showcase__1 {
  width: 51.25%;
}

.custom_showcase__2 .inside,
.custom_showcase__3 .inside {
  padding-left: 60px;
  top: 65px;
  width: 285px;
}
.custom_showcase__2 .title1,
.custom_showcase__3 .title1 {
  color: #ffffff;
}
.custom_showcase__2 h2 {
  color: #ffffff;
  padding-left: 37px;
  letter-spacing: 3px;
  margin-top: -1px;
}
.custom_showcase__2 h2 span {
  display: block;
  font-weight: 300;
}
.custom_showcase__3 .inside {
  top: 77px;
}
.custom_showcase__3 .title1 {
  line-height: 54px;
}
.custom_showcase__3 h2 {
  margin: 6px 0px 0px 4px;
  color: #ffffff;
  letter-spacing: 5px;
}
.custom_showcase__2 a:hover *,
.custom_showcase__3 a:hover * {
  color: #1f8ebe;
}

.custom_showcase__4 .title1 {
  padding-top: 263px;
  color: #9d5981;
}
.custom_showcase__4 .title1 .color5 {
  color: #cdbeaf;
}
.custom_showcase__4 {
  position: relative;
  text-align: center;
}
.title1 {
  position: relative;
}

.title1.bord {
  padding-bottom: 15px;
  padding-top: 15px;
  overflow: hidden;
}

.title1 .wrap {
  position: relative;
  padding: 0 8px;
}
.title1.bord + .text1 {
  margin-top: -16px;
  position: relative;
}
.title1 .wrap:before,
.title1 .wrap:after {
  content: "";
  position: absolute;
  bottom: 27px;
  right: auto;
  left: 0px;
  margin-left: -211px;
  width: 211px;
  height: 1px;
  background: #9d5981;
}
.title1 .wrap:after {
  right: 0;
  left: auto;
  margin-right: -211px;
}

.custom_showcase__4 .btn {
  margin-bottom: 35px;
  padding: 14px 36px 13px;
}
.custom_showcase__4 .btn:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -34px;
  content: "";
  width: 1px;
  height: 20px;
  background: #9d5981;

  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.custom_showcase__4 .btn:hover:after {
  background: #22315a;
}

.custom_bottom {
  padding-top: 44px;
  display: block;

  background: url(/cdn/shop/t/25/assets/custom_bottom_1_img.jpg?v=12690177439051725080)
    center bottom no-repeat;

  text-align: center;
  background-color: #b05c41;
  padding-bottom: 48px;
}
.custom_bottom * {
  color: #ffffff;

  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.custom_bottom .text1 {
  padding-top: 7px;
  padding-bottom: 7px;
  letter-spacing: 5px;
}
.custom_bottom p {
  margin: 0px;
  text-transform: uppercase;
  letter-spacing: 2.6px;
}
.custom_bottom .title1 {
  line-height: 69px;
}
.custom_bottom .title1 .wrap:before,
.custom_bottom .title1 .wrap:after {
  background: #ffffff;

  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
/* .custom_bottom:hover .title1 .wrap:before, 
.custom_bottom:hover .title1 .wrap:after {
    background: #9d5981;
    box-shadow: 1px 1px #ffffff;
}
.custom_bottom:hover * {
    color: #9d5981;    
    text-shadow: 1px 1px #ffffff;
} */

/* 8.5 MAIN PRODUCT LISTING */
.product_listing_main {
  margin-top: 50px;
}
.product .product_img a {
  display: block;
  padding: 0px;
}
.product .product_img {
  position: relative;
}
.product .product_img a img {
  width: 100%;
  height: 100%;
}
.product .product_info {
  text-align: center;
  margin-top: 50px;
}
.product .product_img .sale {
  position: absolute;
  bottom: 42px;
  left: 50%;
  margin-left: -82px;
  display: inline-block;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 13px 62px 14px;
  font-weight: 300;
  background: #9d5981;
  color: #ffffff;
  z-index: 100;
}

.product .product_name {
  min-height: 40px;
}

.product .product_price {
  font-size: 20px;
  margin-top: 7px;
}
.product .product_price .compare-at-price {
  margin-left: 21px;
}

.product .product_links {
  margin-top: 12px;
}
.product .product_links form {
  display: block;
}
.product .product_links .btn {
  margin-bottom: 9px;
}
.product .product_links > .btn {
  padding: 0px;
  background: none;
  color: #1f8ebe;
  font-size: 27px;
  line-height: 20px;
}
.product .product_links > .btn:hover {
  color: #9d5981;
}

.product_listing_related .product .product_info {
  margin-top: 25px;
}

ul.tabs {
  border-bottom: solid 1px #36071b;
}

ul.tabs li a.active {
  border: solid 1px #36071b;
}

ul.tabs li a.active {
  background-color: #fff !important;
  border-bottom-color: #fff !important;
}

ul.tabs li a.active {
  /* color: ; */
}

ul.tabs li a.active {
  height: 31px !important;
}

ul.tabs {
  border-bottom: solid 1px #36071b;
  display: block;
  margin: 10px 0 15px 0;
  padding: 0;
  border-top: 0;
  list-style: none outside;
  margin-left: 0;
}
ul.tabs li {
  display: block;
  width: auto;
  height: 30px;
  padding: 0;
  float: left;
  margin-bottom: 0;
  border: 0;
  list-style: none outside !important;
  margin-left: 0;
}
ul.tabs li a {
  display: block;
  text-decoration: none;
  width: auto;
  height: 29px;
  padding: 0px 15px;
  line-height: 30px;
  border-width: 1px 0 0 1px;
  margin: 0;
  font-size: 16px;
}
ul.tabs li a.active {
  border: solid 1px #36071b;
  /* background-color: ; */
  /* border-bottom: ; */
  /* color: ; */
  height: 30px; //may need to change this depending on font size
  position: relative;
  top: -4px;
  padding-top: 4px;
  border-right-width: 1px;
  margin: 0 -1px 0 0;
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
}
ul.tabs li:first-child a {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
}
ul.tabs li:last-child a {
  border-width: 1px 1px 0 1px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
}
ul.tabs-content {
  margin: 0;
  display: block;
  border: 0;
}
ul.tab-content > li {
  display: none;
  border: 0;
  list-style: none !important;
}
ul.tab-content > li.active {
  display: block;
  border: 0;
  /*     padding-left:10px */
}
ul.tab:before,
ul.tabs:after {
  content: "\0020";
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}
ul.tabs:after {
  clear: both;
}
ul.tabs {
  zoom: 1;
}

#tab2:marker {
  display: none;
}

/* 8.6 FOOTER */
footer {
  background: #22315a;
  padding-top: 33px;
  position: relative;
  z-index: 1;
}

.footer_block {
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 20px;
}

.footer_block h2 {
  padding-top: 30px;
  color: #ffffff;
  letter-spacing: 2px;
  padding-bottom: 20px;
}
.footer_block h3 {
  color: #ffffff;
}
.footer_block ul li {
  position: relative;
  padding-left: 16px;
  padding-bottom: 7px;
}
.footer_block ul li:before {
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  content: "\f105";
  left: 0;
  top: 5px;
  color: #ffffff;
  font-size: 13px;
}
.footer_block ul li a {
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 1px;

  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.footer_block .socials li {
  padding-left: 0px;
  padding-bottom: 7px;
}

.footer_block ul li.active a,
.footer_block ul li a:hover {
  color: #ffffff;
}

.contacts_company {
  display: inline-block;
  padding-top: 3px;
}
.contacts_address {
  width: 83%;
}
.contacts_phone span {
  display: block;
  font-size: 36px;
  line-height: 36px;
  font-weight: 300;
  letter-spacing: 3.4px;
}
.contacts_email {
  margin-top: -8px;
}
.contacts_email a {
  display: inline-block;
  margin-left: 5px;
  color: #ffffff;
  text-decoration: underline;
}
.contacts_email a:hover {
  text-decoration: none;
}

footer .copyright {
  padding-top: 74px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 40px;
}
footer .copyright a {
  color: #ffffff;

  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
footer .copyright a:hover {
  color: #ffffff;
}

/***************************************************************************
                           9. COLLECTION PAGES
***************************************************************************/

/* 9.1 PAGES CONTENT */
ul.tags {
  margin: 10px 0 0 0;
  list-style-type: none;
}
ul.tags li {
  float: left;
  margin: 5px 5px 0 0;
}
ul.tags li a {
  display: block;
  padding: 5px 10px;
  border-radius: 10px;
  color: #ffffff;
  background: #22315a;

  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

ul.tags li a:hover,
ul.tags li.active a {
  background: #9d5981;
  color: #ffffff;
}

.collection_info {
  margin-top: 15px;
}
.collection_info .collection_img {
  text-align: center;
}
.collection_info .collection_desc .rte {
  margin: 0;
}

.sort_by {
  margin: 15px 0;
  padding: 10px 0;
  border: 1px solid #36071b;
  border-width: 1px 0;
  text-align: right;
}
.sort_by label {
  margin: 0 4px 0 0;
  line-height: 30px;
}
.sort_by select {
  width: auto !important;
  height: 30px;
  display: inline-block;
  padding: 5px 4px;
  cursor: pointer;
}

/* 9.2 BREADCRUMBS */
.breadcrumb {
  margin: 0 0 50px 0;
  padding-left: 0;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 40px;
  background: transparent;

  /*     color: #ffffff;  */
}
.breadcrumb a {
  color: #22315a;

  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.breadcrumb a:hover {
  color: #22315a;
}

.breadcrumb > li .page-title {
  color: #b9b9b9;
}

/* 9.3 COLLECTION LISTING */
.collection_listing .collection {
  margin: 30px 0 0 0;
}
.breadcrumb > li {
  display: inline-block;
  font-size: 13px;
}

/* 9.4 PAGINATION */

#pagination {
  display: inline-block;
  overflow: hidden;
  margin: 30px 0 0 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
#pagination span {
  display: block;
  float: left;
}
#pagination span ~ span {
  border-left: 1px solid #ffffff;
}

#pagination span a,
#pagination span.deco,
#pagination span.current {
  display: block;
  padding: 4px 14px;
  border-radius: 10px;
  color: #ffffff;
  background: #22315a;
  margin-right: 4px;

  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

#pagination span a:hover,
#pagination span.current {
  background: #9d5981;
  color: #ffffff;
}
#pagination span.current {
  cursor: default;
}

/***************************************************************************
                           10. SIDEBAR WIDGETS
***************************************************************************/

.column .widget h3.widget_header {
  margin: 0;
  padding: 0 0 4px 0;
  font: 20px Roboto Condensed;
  color: #1f8ebe;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 4px;
  line-height: 1.4em;
  font-weight: 300;
}

/* 10.1 LINKS LIST */
.column .widget ul.list {
  border-bottom: 1px solid #36071b;
}
.column .widget ul.list li {
  padding: 10px 0;
}
.column .widget ul.list li + li {
  border-top: 1px solid #36071b;
}
.column .widget ul.list li a {
  color: #ed8c9c;
}

.column .widget ul.list li.active a,
.column .widget ul.list li a:hover {
  color: #9d5981;
}

/* 10.2 SIDEBAR PRODUCT LISTING */
.product_listing_sidebar .product {
  margin-top: 20px;
}
.product_listing_sidebar .product_name {
  min-height: 0px;
}
.product_listing_sidebar .product_links form {
  display: block;
}

/***************************************************************************
                           11. SEARCH RESULTS PAGE
***************************************************************************/

#searchresults {
  margin: 0;
}
#searchresults .search-form {
  margin: 25px 0 0 0;
  position: relative;
}
#searchresults .search-form input {
  width: 100%;
  float: left;
  padding: 0 34px 0 10px;
  color: #ffffff;
  background: #22315a;
  border-radius: 40px;
  box-shadow: 1px 1px 1px 1px rgba(126, 148, 204, 0.75),
    1px 1px 1px 1px rgba(75, 97, 152, 0.75) inset;
  box-sizing: border-box;
  position: relative;
  height: 40px;
}
#searchresults .search-form button {
  position: absolute;
  width: 34px;
  height: 41px;
  margin: 0 0 0 -34px;
  right: 5px;
  top: 0px;
  background: none;
  border: none;
  font-size: 13px;
  color: #ffffff;
}
#searchresults .search-form input:focus {
  border: none !important;
}
#searchresults .search-form button:hover {
  color: #1b9a41;
}
#searchresults .search-form button i {
  line-height: 32px;
}

#searchresults h3 {
  margin: 0;
  padding: 0;
}

#searchresults ol {
  list-style-type: none;
  padding: 25px 0 0 0;
  border-bottom: 1px solid #36071b;
}
#searchresults ol li {
  overflow: hidden;
  margin: 0;
  padding: 15px 0;
  border-top: 1px solid #36071b;
}
#searchresults ol li .search-result_image {
  float: left;
  margin-right: 15px;
}
#searchresults ol li .search-result_container {
  padding: 15px 0 0 0;
}

/***************************************************************************
                           12. PRODUCT PAGE
***************************************************************************/

/* 12.1 PRODUCT IMAGES */
.product_img_big {
  max-height: none;
  overflow: visible;
  /*  border: 1px solid #36071b; */
  width: 100%;
}

.product_img_thumbs {
  max-height: none;
  padding: 12px 0 0 0;
  width: 100%;
}
.product_img_thumbs__list a {
  width: 107px !important;
  /*     display: block; */
  display: inline-block;
  margin-right: 5px;
}
.product_img_thumbs__list a img {
  width: 100%;
}
.product_img_thumbs__list a.active img {
  border: 1px solid #000;
}

.bx-wrapper {
  max-width: 100% !important;
}
.bx-viewport {
  max-width: 100% !important;
}
.bx-pager {
  display: none !important;
}

.bx-wrapper .bx-controls-direction a {
  width: 30px;
  height: 0;
  display: block;
  overflow: hidden;
  margin: -15px 0 0 0;
  padding: 30px 0 0 0;
  position: absolute;
  top: 50%;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABZlJREFUeNrsWu9LW1cYvt6oGbpGh424pdGudtCCcbpqv2wZ+9E5EDbNhsvwg/phdIpuf4Df3R+wgX7YKIID/aCt4NyEisKCQsGyCNMEDaHTJLRLuq5xpGaQufcN75EYjDnn3Jt82O4DD3i9OffNc8657znnfVKi8KEa+ArwIvAC0Aq00L04MAoMAR8Ad4F/KvoA47QCm4CXgXZgDd17DNwHBoC/An+h73EmSvLcfwl4DdhCQnmAwr3A+8CIpNBLwBvAt6mjeYAdvQpcBgZFBeP/ncR6yS+9B/QQjzjbYNyPgC7gFcm4fuAd4O3T4ppOaYBT9QNgN7BKw3TEts1AM416Ms/ncareBA4Dz2uIe54GqoJG/dlZgpnYdxT90Ah8DvjbGaJR7OdAt45xsbMrgduZok1Z00lvsQwN9Hxfjml8U2exDFfp+fdOE/wmTeNCAUf6KY10Jj6maVwoNFNGT3e2mpGNnUrh4aRYmdnYVYS4Lop1LPiabDa22WxmgY/XUyyGG7LZ2Gq1mgQ+foVipQVX0zorjImJiZadnZ1PBwYGbALNWiimldZZYYyNjdUFAgFHd3e3RaAZxrLiC90O/ExG7ODg4HX8OxgMxhobG28LNP8O+ALwKxmxo6Oj6Q7e2tpKNDU1+QSaj5bSdlFabDQajbvd7mXBR1ykbaK02FAolOzp6QkKPqJJFdgyniq2s7Pzx42Njbhg4Au0N5YW29HRsevz+ZKCcS+r9C4VUyw7FNiLLBZhVzNOPXmzcV9f36vsemVlJSgplu3oaniz8cjISB27XlhYeCIpNr2jw9TemWNPfQIHBwepSCQSg95tKCsrK4VkUQdILS4uPpQI/A/wRZ64iUTiyO/3J2A2VZvNZrW9vf358vLyI+jwvyTipjDgG7TRzguv13uQKbqtrc0mKRrPy+eI+Y8/fn8yU7TT6bRIiv7dRFsv7tOJTqLx6IgrBPf6rZNon0pHNyFMTk6Gh4eHl2G6pd8lh8MhepwLUaVCCPPz8/H+/v5gPB5P4XVra2uF4CMCJjpCvSYaHEd6c3MzbDKZktDrHsHmK5gWgO8Kn+5hpNfW1uKHh4ep3t7ePcHm0yW0zftCdD3WABzdb4BlwK8FSjhagcWAL1VKIF6lePBSzCjVoIoFjBVlp6X7lEgKjT2KxbBMNahCw0+xjo+HESq2FRoe5WQlM0gFt0LjDsU6sfDvUcGtsUBB7wKXcvR+BS2PhcD3uLDkKuKFqODWoHPQn4E/nVHE26XV4qrOcfHIegs3bLkEJ6nmVKLjSN8lsWftu7GquE1xm3Uc2VtUz1JyCWaifVRwwyWrSkOC+oGmMc9mH0Xfoy9oVeRr0/iKfEvTOJF907BacuA/Y6apyv8MxpTO+L/hHgrCcA8Vwz08jmu4hzqPtOEeCrmHgo5hJjS5h4KOYSbk3UN0CtExRBdCMriUe4hOITqG6EJIxk27h9hjDuBbvK3m5ubeq62ttWioSVvoPX4Z+Alvo9nZ2Ut2u92soSaNK8E2Cn6dzW8erK+vh10uV31lZaVZg+g/aAfl4C5Ira4edHV1VVksllINoh+h4PdFFvpIJJKE4HsaRf9NgrkL8bFYLLW0tPRUo+hnKPhDhdNq0VF0CQk+JxJXB9Eqt3uYDXQO0UFk1+gsCmRvbvcwG+gcooPIrtFZFMjeNdLHQ8zSbrc7nanRckHrJRwOy9qY3MAsPTQ0lM7UaLmg9RKNRlO87dU8taacYpkxzsSi3yTwiHh2rYlXLDPGmVj0mwQe8VjlqRLoLFahmPtFFovYF3YPmVOoQSwrEgi5h8wp1CAWEZD62dLMzMz1qampIGTlmOSrKPWzpfHxcdv09PQTj8eTkIw7ariHRYDhHhYhruEest433EOdYLiH2acYxXAPDfeQZ5013MNs/CvAAN+q3yxd1e4sAAAAAElFTkSuQmCC) !important;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.bx-wrapper .bx-controls-direction a.disabled {
  display: none !important;
}
.bx-wrapper .bx-controls-direction a.bx-prev {
  left: 10px;
  background-position: 0 0 !important;
}
.bx-wrapper .bx-controls-direction a.bx-prev:hover {
  background-position: -30px 0 !important;
}
.bx-wrapper .bx-controls-direction a.bx-next {
  right: 10px;
  background-position: 0 -30px !important;
}
.bx-wrapper .bx-controls-direction a.bx-next:hover {
  background-position: -30px -30px !important;
}

.product_img_big__list li img:hover {
  cursor: zoom-in;
}

/* 12.2 PRODUCT INFO */
.product_wrap .product_name {
  margin: -2px 0 0 0;
  font-size: 20px;
}

.product_wrap .product-price {
  margin: 15px 0 0 0;
  padding: 0;
}
.product_wrap .product-price .money {
  margin: 0 5px 0 0;
  font-size: 20px;
}
#purchase label {
  display: inline-block;
  margin: 15px 10px 0 0;
  /*     padding: 0 !important; */
  line-height: 37px;
}
#purchase #quantity {
  width: 50px;
  height: 37px;
  display: inline-block;
  margin: 15px 10px 0 0;
  padding: 9px 0px 8px;
  outline: none;
  text-align: center;
}

#purchase .variants-wrapper {
  display: block;
  margin: 15px 10px 10px 0;
  padding: 9px 0px 8px;
}
#purchase .variants-wrapper select {
  width: auto;
  height: 37px;
  max-width: 150px;
  padding: 9px 0px 8px;
  vertical-align: bottom;
}

#purchase #add-to-cart {
  width: auto;
  height: 37px;
  line-height: 35px;
  margin: 15px 10px 0 0;
  padding: 12px 29px 11px;
  line-height: 14px;
}
#purchase #add-to-cart i {
  vertical-align: middle;
  margin: 0 5px 0 0;
  font-size: 15px;
  line-height: 1.5em;
  position: relative;
  top: -2px;
}

.product_wrap .product_details {
  margin: 15px 0 0 0;
  padding: 10px 0 15px 0;
  border: 1px solid #36071b;
  border-width: 1px 0;
}
.product_wrap .product_details > div {
  padding: 5px 0 0 0;
}
.product_wrap #product_description h4 {
  padding-bottom: 0;
  border: none;
  text-transform: none;
}

.product_image-additioanl a {
  width: 33%;
  display: block;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* 12.3 PRODUCT PAGINATION */
.product_wrap .pagination__product {
  width: 100%;
  margin: 15px 0;
}
.product_wrap .pagination__product ul {
  list-style-type: none;
  margin: 0 !important;
  padding: 15px !important;
}
.product_wrap .pagination__product ul li.left-arrow {
  float: left;
}
.product_wrap .pagination__product ul li.right-arrow {
  float: right;
}

/* 12.4 RELATED PRODUCTS */
.widget_related_products h3 {
  margin: 50px 0 0 0;
  padding: 0 0 4px 0;
  font: 20px Roboto Condensed;
  color: #1f8ebe;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 4px;
  line-height: 1.4em;
  font-weight: 300;
}
.product_listing_related {
  margin-top: 25px;
}
ul.product_listing_related {
  list-style-type: none;
}

/***************************************************************************
                           13. BLOG
***************************************************************************/

/* 13.1 POSTS LISTING */
#blog {
}

.blog-article {
  padding: 15px 0 0 0;
}

.article_header {
  padding: 15px 0;
  border-bottom: 1px solid #36071b;
}
.article_header .product_name {
  font-size: 20px;
}
.blog-article_meta-comments {
  float: right;
  padding: 7px 0 0 15px;
}

.blog-article_date,
.blog-article_meta-tags {
  font-style: italic;
}

.blog-article_meta-tags a {
  text-decoration: underline;
}

/* 13.2 SINGLE POST */
.article_meta-comments {
  float: right;
  padding: 7px 0 0 15px;
}
.article_meta-tags a {
  text-decoration: underline;
}

.article_date,
.article_meta-tags,
.article_meta {
  font-style: italic;
}

#comments ul {
  list-style-type: none;
}

.comment-form #comment-author,
.comment-form #comment-email,
.comment-form #comment-body {
  width: 100%;
}

.comment-form #comment-body {
  min-height: 100px;
  margin-bottom: 15px;
}

.article_comments-form {
  padding-bottom: 10px;
  margin-top: 1em;
  padding-top: 10px;
}

.section-title {
  margin-bottom: 2px;
  padding-bottom: 8px;
}

.comment-form .row {
  margin-bottom: 1em;
}

/***************************************************************************
                           14. CUSTOMER PAGES
***************************************************************************/

/* 14.1 LOG IN */

/* 14.2 ACCOUNT */
.customer_account h2.page_heading {
  margin-bottom: 20px;
}

.customer_name {
  text-transform: none !important;
}
.customer_name .divider {
  margin: 0 7px;
}
.customer_name .email {
  color: #045b80;
}
.customer_name a {
  float: right;
}

/* 14.3 ADDRESSES */

.customer_addresses ul.customer_addresses_actions {
  list-style-type: none;
  margin: 15px 0;
}
.customer_addresses ul.customer_addresses_actions li a i {
  margin: 0 5px 0 0;
  line-height: inherit;
}

.customer_addresses .col-sm-offset-4 label {
  line-height: 1.6em;
}

.address_table .address_title {
  vertical-align: baseline;
}
.address_table .address_title .address_actions {
  vertical-align: baseline;
  float: right;
  margin: 0 0 0 15px;
  text-transform: none;
}
.address_table .address_title .address_actions span {
  vertical-align: baseline;
}

ul.address {
  list-style-type: none;
}

/* 14.4 ORDERS */
.order_date {
  margin: 15px 0 0 0;
}

#order_details {
  margin: 30px 0 0 0;
}

/***************************************************************************
                           15. CART PAGE
***************************************************************************/

/* 15.1 CART PRODUCTS */
.cart-list {
  overflow: hidden;
}

.cart-list > .row {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #36071b;
}

.cart-list .item_image {
  text-align: center;
}
.cart-list .item_image a img {
  max-width: 100%;
}

.cart-list .product_name {
  margin-top: 15px;
}

.cart-list .item_remove {
  margin: 0 0 0 10px;
}
.cart-list .item_remove a {
  font-size: 20px;
  color: #fe2a2a;
}
.cart-list .item_remove a:hover {
  color: #76d6ff;
}

.cart-list .row h3.item_vendor {
  border-bottom: 1px solid #36071b;
  color: #888;
}

.cart-list .item_price {
  padding: 10px 0 0 0;
}
.cart-list .item_price .price {
  line-height: 37px;
}

.cart-list .item_price label {
  padding: 0;
  line-height: 37px;
}
.cart-list .item_price .input-small {
  width: 60px !important;
  height: 37px;
  display: inline-block;
  padding: 9px 5px 8px;
  text-align: center;
}

.cart-list .item_price .total {
  text-align: right;
}
.cart-list .item_price .total h3 {
  vertical-align: baseline;
  border: none;
  line-height: 37px;
}

.cart_subtotal h3 {
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid #36071b;
}
.cart_subtotal h3 .money {
  float: right;
  font-size: inherit;
}

.cart_buttons {
  margin: 30px 0;
}
.cart_buttons span,
.cart_buttons a {
  vertical-align: middle;
}

.cart_instructions textarea {
  width: 100%;
}

#payment-methods {
  overflow: hidden;
}
#payment-methods ul {
  list-style-type: none;
  list-style-position: outside;
}
#payment-methods ul li {
  float: left;
  padding: 15px 15px 0 0;
}

/* 15.2 GUEST CHECKOUT */
#guest {
  padding: 30px 0 0 0;
}
#guest form {
  padding: 15px 0 0 0;
}

/***************************************************************************
                           16. CONTACTS PAGE
***************************************************************************/

.contact-scope iframe {
  width: 100%;
  margin: 15px 0;
  border: 1px solid #36071b;
}

.contact-form textarea {
  width: 100%;
}

.jarallax {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  /* support for plugin https://github.com/bfred-it/object-fit-images */
  font-family: "object-fit: cover;";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
i.pfa.pfa-plus.pfa-arrow {
  float: right !important;
  margin-top: 10px !important;
}

/* IOI Changes */

.header_top-left {
  padding-top: 22px;
}

.top_header_social {
  width: 50%;
  padding: 0 15px;
  display: inline-block;
}
.top_header_social a {
  vertical-align: baseline;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 1px;
}

.top_header_social a i {
  font-size: 26px;
  line-height: 22px;
  display: inline-block;
  color: #ffffff;
  padding-right: 9px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.footer_social {
  padding: 20px 15px;
  display: inline-block;
}
.footer_social a {
  vertical-align: baseline;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 1px;
}

.footer_social a i {
  font-size: 26px;
  line-height: 22px;
  display: inline-block;
  color: #ffffff;
  padding-right: 9px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.custom_bottom {
  background-size: cover !important;
}

.ioi-address h1 {
  color: #ed8c9c !important;
}

.ioi-address h3 {
  margin-top: 10px;
}
.ioi-address a {
  margin-top: 5px;
}

.custom_showcase__1 .inside .btn {
  padding: 20px 60px 20px 60px !important;
  font-weight: 700 !important;
  font-size: 20px !important;
}

.custom_showcase__1 .inside .btn i {
  font-weight: 700 !important;
  font-size: 20px !important;
}

.template-product ul.breadcrumb .lastItem {
  display: none !important;
}

.template-blog #pagination {
  margin: 30px 0 30px 0 !important;
}

/* BLOG PAGE TEMPLATE */

@media (min-width: 768px) {
  .template-blog .column_left.column.col-sm-3 {
    display: none !important;
  }
  .template-blog .sidebar_left .column_center #main_content {
    margin: 0px !important;
    width: 100% !important;
  }

  .template-blog .wow.blog-article.animated {
    padding: 10px 20px;
    float: left;
    position: relative;
    width: 32% !important;
  }

  .template-blog .rte p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5; /* number of lines to show */
    -webkit-box-orient: vertical;
  }

  .template-blog .product_name {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    -webkit-box-orient: vertical;
  }
}
@media (max-width: 480px) {
  .top_header_social {
    width: 100% !important;
  }
  .footer_social a i {
    padding-right: 0px !important;
    width: 30px;
    text-align: center;
  }
  .top_header_social a i {
    padding-right: 0px !important;
    width: 30px;
    text-align: center;
  }
  .header_search #search-submit {
    text-align: center !important;
    font-size: 16px !important;
    width: 48px !important;
  }
  .header_search {
    margin-top: 10px !important;
  }
  .header_search input#search-field {
    width: 95% !important;
    height: 40px !important;
    text-align: center !important;
  }
  .custom_showcase__1 .inside .btn {
    width: 100%;
    font-size: 25px !important;
  }
  .custom_showcase__1 .inside .btn i {
    font-size: 25px !important;
    padding-top: 5px !important;
  }
}

/* Delivery CSS  */
/* New Header */
.delivery {
  color: #fff;
  width: 80%;
}

.delivery img {
  width: 60px;
  height: auto;
  float: left;
  margin-right: 20px;
  margin-top: 10px;
}

.header-icon {
  width: 100%;
}

.delivery p {
  padding: 3px 0;
  margin: 0px;
}

.announcement {
  text-align: center;
  height: 0;
  padding-bottom: 30px;
  padding-top: 5px;
  margin: 0;
}

#new-header {
  display: flex;
}

#logo {
  text-align: center;
  margin-top: 31px;
  width: 120%;
}

@media screen and (max-width: 760px) {
  .delivery {
    color: #fff;
    width: 100%;
    margin-left: 20px;
  }

  .delivery img {
    width: 60px;
    height: auto;
    float: left;
    margin-top: 10px;
  }

  .announcement {
    text-align: center;
    height: 0;
    padding-bottom: 50px;
    padding-top: 10px;
    margin: 0;
    font-size: 15px;
  }

  .header-icon {
    width: 20%;
    margin-left: 5px;
    margin-top: 10px;
    line-height: 40px;
  }

  #logo {
    width: 100%;
  }

  #logo b {
    font-size: 40px;
  }

  #logo h1 {
    font-size: 30px;
  }

  #new-header {
    display: flex;
    flex-direction: column;
  }
}

/***blossom css***/

span.com_prc {
  text-decoration: line-through;
  color: red;
}
.rounded-radio .radio-inline input[name="inline_dateDiss"] + p {
  color: #95989aab;
  border: 1px solid #045b8070;
}

.product__price.product__block .fs-heading-4-base {
  font-size: 28px;
  color: #22315a;
  position: relative;
  bottom: 2px;
}
.product__price.product__block .compare-price {
  position: relative;
  bottom: -2px;
  text-decoration: line-through;
  color: #4d4a4f;
  margin: 0 5px;
  font-size: 14px;
}
.product__price.product__block .percentage-off {
  font-size: 18px;
  position: relative;
  bottom: -2px;
  color: #f80000;
}

.services-section {
  margin: 30px 0;
}
.accordion-section {
  margin-bottom: 30px;
}
.accordion-section .tab:hover {
  background-color: #f5f5f5;
}
.accordion-section .tab-label {
  padding: 10px 15px !important;
  font-size: 20px;
}
.accordion-section #payment-methods {
  margin-bottom: 20px;
}
.accordion-section .tab .tab-label img {
  width: 20px;
  height: 24px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}
.faq.accordion-section .tab-label::after {
  right: 30px;
  position: absolute;
}
.faq.accordion-section .tab-label {
  display: block;
  color: #22315a;
  font-weight: 500;
  font-size: 18px;
}

.faq.accordion-section .tab-content.show {
  max-height: 100vh;
  padding: 1em;
}

.services-section .section-header {
  margin-bottom: 15px;
}
.services-section .section-header h2 {
  text-align: left;
}
@media (max-width: 543px) {
  .services-section .section-header {
    margin-bottom: 5px;
  }
  .services-section {
    margin: 20px 0;
  }
  .services-section .services-main .services {
    padding: 5px 10px;
  }
}
.modal-backdrop {
  display: none !important;
}

.services-section .services-main {
  text-align: center;
}
.services-section .services-main .services {
  width: 20%;
}

.services-section .services-main .service-title {
  font-size: 16px;
}
.services-section .services .service-img img {
  width: 35px;
  height: 35px;
  margin: 0 auto 10px;
}
.services-section .service-inner {
  cursor: pointer;
}
.services-section .modal.in .modal-dialog {
  -webkit-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  -o-transform: translate(0, 100%);
  transform: translate(0, 100%);
}
.services-section .modal.fade .modal-dialog {
  -webkit-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  -o-transform: translate(0, 100%);
  transform: translate(0, 100%);
}
.services-section .modal.fade .modal-dialog {
  -webkit-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  -o-transform: translate(0, 100%);
  transform: translate(0, 100%);
}
.services-section .modal-header .service-title {
  font-size: 20px;
}
.services-section .modal-body ul {
  padding-top: 0;
}
@media (max-width: 767px) {
  .services-section .modal.in .modal-dialog {
    -webkit-transform: translate(0, 50%);
    -ms-transform: translate(0, 50%);
    -o-transform: translate(0, 50%);
    transform: translate(0, 50%);
  }
  .services-section .modal.fade .modal-dialog {
    -webkit-transform: translate(0, 50%);
    -ms-transform: translate(0, 50%);
    -o-transform: translate(0, 50%);
    transform: translate(0, 50%);
  }
}
.services-section .modal-body {
  padding: 15px;
}
.services-section .modal-header {
  position: relative;
}
.services-section .modal-content .close {
  opacity: 1;
  text-shadow: unset;
  position: absolute;
  right: 15px;
  top: 18px;
}
.services-section .modal-content .close > span {
  font-size: 30px;
  color: #22315a;
}
.services-section .fade.in {
  background: rgba(0, 0, 0, 0.5);
}
.services-section .service-flex {
  display: flex;
  justify-content: left;
  align-items: center;
}
.services-section .service-flex .service-img img {
  margin: 0;
  margin-right: 10px;
}
.services-section .modal-body .service-desc {
  text-align: left;
}
.services-section .modal-body .service-desc p {
  margin-top: 0;
}
.services-section .modal-body .service-desc p:last-child {
  margin-bottom: 0;
}
@media (min-width: 544px) {
  .services-section .services-main .services:nth-child(5n + 1) {
    clear: left;
  }
}
@media (max-width: 543px) {
  #shopify-section-trust-badge .services-section .services-main .service-title {
    font-size: 13px;
    line-height: 16px;
  }
  #shopify-section-trust-badge .services-section .section-header h2 {
    font-size: 15px;
    letter-spacing: 2.5px;
  }
  .services-section .services .service-img img {
    width: 30px;
    height: 30px;
  }
}

.fair-price .btn {
  background: #ffcc29;
  color: #045b80;
  border-radius: 0;
  letter-spacing: 0;
  font-style: italic;
  line-height: 16px;
  display: flex;
  align-items: center;
  padding: 2px 9px;
  position: relative;
  font-size: 16px;
  font-weight: normal;
}

.fair-price .btn u {
  text-transform: capitalize;
  font-size: 12px;
  padding-left: 10px;
}
.fair-price img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.fair-price .modal.in .modal-dialog {
  -webkit-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  -o-transform: translate(0, 100%);
  transform: translate(0, 100%);
}
.fair-price .modal.fade .modal-dialog {
  -webkit-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  -o-transform: translate(0, 100%);
  transform: translate(0, 100%);
}
@media (max-width: 767px) {
  .fair-price .modal.in .modal-dialog {
    -webkit-transform: translate(0, 50%);
    -ms-transform: translate(0, 50%);
    -o-transform: translate(0, 50%);
    transform: translate(0, 50%);
  }
  .fair-price .modal.fade .modal-dialog {
    -webkit-transform: translate(0, 50%);
    -ms-transform: translate(0, 50%);
    -o-transform: translate(0, 50%);
    transform: translate(0, 50%);
  }
}

.fair-price .modal-body {
  padding: 0;
}
@media (min-width: 768px) {
  .fair-price .modal-dialog {
    width: 770px;
  }
}
@media (min-width: 900px) {
  .fair-price .modal-dialog {
    width: 900px;
  }
  .modal-content {
    width: 100%;
  }
}
.fair-price .modal-body .fair_desc h2 {
  font-family: "Grand Hotel";
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 34px;
  color: #22315a;
  letter-spacing: 0;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.fair-price .right-part.fair_desc h2 {
  font-family: "Roboto Condensed";
  font-size: 22px;
  line-height: 26px;
}
.fair-price .left-part.fair_desc {
  border-right: 1px solid #ddd;
}
.fair-price .modal-body .fair_desc {
  padding: 50px;
}
.fair-price .modal-header {
  border: unset;
  position: absolute;
  right: 5px;
  z-index: 9;
}
.fair-price .modal-body .fair_desc ul li {
  margin-bottom: 10px;
  list-style: disc;
  font-size: 16px;
}
.fair-price .modal-body .fair_desc ul li:last-child {
  margin-bottom: 0;
}
.fair-price .modal-content .close {
  opacity: 1;
  text-shadow: unset;
}
.fair-price .modal-content .close > span {
  font-size: 30px;
  color: #22315a;
}
.fair-price .fade.in {
  background: rgba(0, 0, 0, 0.5);
}
.fair-price-button {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  margin-top: -5px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .fair-price-button {
    display: block;
    margin-left: 0;
    margin-top: 10px;
  }
}
@media (max-width: 600px) {
  .fair-price .left-part.fair_desc {
    padding-bottom: 0;
  }
  .fair-price .modal-body .fair_desc {
    padding: 50px 40px;
  }
  .fair-price .modal-body .fair_desc h2 {
    font-size: 24px;
  }
}
@media (max-width: 420px) {
  .fair-price-button {
    display: block;
    margin-left: 0;
    margin-top: 10px;
  }
}

.fair-price .modal.fade .modal-dialog,
.services-section .modal.fade .modal-dialog {
  transform: unset;
}
/* .modal-dialog {
  height: 100vh !important;
  display: flex;
}

.modal-content {
  margin: auto !important;
  height: fit-content !important;
} */
/* .modal-open .modal {
    overflow-x: visible;
    overflow-y: visible;
}
@media (max-width: 767px){
  .modal-open .modal {
      overflow-y: scroll;
  }
} */

.modal-dialog {
  height: 100vh !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.modal-content {
  min-height: 240px !important;
  max-height: 500px !important;
}

.modal-body {
  height: 80%;
  overflow: auto;
}
.faq .tab-content ul .HorizontalList__Item,
.cart_footer_items .HorizontalList__Item,
footer .HorizontalList__Item {
  list-style: none;
  display: inline-block;
}
.faq .tab-content ul .HorizontalList__Item svg,
.cart_footer_items .HorizontalList__Item svg,
footer .HorizontalList__Item svg {
  margin: 0 10px 10px 0;
  width: 38px;
  height: 24px;
}
#shopify-section-accordion .faq .tab-content {
  font-size: 16px;
}
.template-cart .datepickerdropdown,
.template-cart .datepickershow {
  top: 50px !important;
  right: 15px !important;
}
.cart_footer_items .dateAndTime p.deliver_time,
.cart_footer_items .deliver_time-a {
  position: relative !important;
}
@media (max-width: 767px) {
  .template-product .product_wrap #carbon-block {
    margin: 0px auto !important;
  }
  .template-product h1.product_title {
    font-size: 32px !important;
    margin-top: 10px !important;
  }
  .template-product .product-content .options > #purchase > .pick-item-wrap {
    border-bottom: 1px solid #d4d4d4;
    padding-bottom: 10px;
  }
  .template-product
    .product-content
    .options
    > #purchase
    > .pick-item-wrap.inner-border {
    border: unset;
  }
  #fairModalLong .mobile-view {
    display: block;
  }
  #fairModalLong .desktop-view {
    display: none;
  }
}
@media (min-width: 767px) {
  #fairModalLong .desktop-view {
    display: block;
  }
  #fairModalLong .mobile-view {
    display: none;
  }
}
h1.product_title {
  margin-top: 0;
}
.template-cart .breadcrumb,
.template-cart #shopify-section-header #navigation {
  margin-bottom: 0;
}
.upsell-wrappers .tab-toggle {
  display: none;
}
.cart_instructions {
  margin-top: 10px !important;
}
.cart_subtotal h3 .money,
.cart_subtotal h3 {
  font-size: 22px !important;
  line-height: 22px !important;
}
.cart_delivery_instructions {
  margin-top: 10px !important;
}
.cart_footer_items .dateAndTime {
  gap: 5px !important;
}
@media (max-width: 767px) {
  .cart-scope .page_header .page_heading .new {
    font-size: 30px;
  }
  .cart_items_details .cart-left-fix {
    float: left;
    width: 25%;
    padding-right: 0;
  }
  .cart_items_details .cart-right-fix {
    width: 75%;
    float: left;
  }
  .cart-list .cart-right-fix .product_name {
    margin-top: 0;
    line-height: 21px !important;
  }
  .cart_items_details .cart_items_upsell_items {
    padding: 0;
  }
  .upsell-wrappers {
    overflow: hidden;
  }
  .cart-list .row h3.item_vendor {
    margin-top: 10px !important;
  }

  .upsell-wrappers .tab-label {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background: #2504040f;
  }

  .upsell-wrappers .tab-toggle:hover {
    cursor: pointer;
  }

  .upsell-wrappers .tab-toggle:hover ~ .tab-label {
    cursor: pointer;
  }

  .upsell-wrappers .tab-toggle:checked ~ .tab-label {
    cursor: pointer;
  }

  .upsell-wrappers .tab-label::after {
    content: "\002B";
    transition: all 0.1s;
    color: #232323;
    line-height: 32px;
    font-size: 25px;
  }
  .upsell-wrappers .tab-toggle:checked ~ .tab-label::after {
    transform: rotate(180deg);
    content: "\2212";
  }

  .upsell-wrappers .tab-content {
    background-color: white;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.4s;
    padding: 0;
  }

  .upsell-wrappers .tab-toggle:checked ~ .tab-content {
    max-height: 100%;
    overflow: visible;
    padding: 0;
  }
  .upsell-wrappers .upsell-modals,
  .upsell-wrappers {
    padding: 0 !important;
  }
  .upsell-wrappers {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .price-inner_price {
    width: 40%;
    float: left;
  }
  .cart_footer_items .dateAndTime {
    gap: 3px !important;
  }
  .cart_delivery_instructions {
    margin-top: 5px !important;
  }
  .cart_instructions,
  .hc-shoppay.cart_shoppay {
    margin-top: 10px !important;
  }
  .cart_buttons {
    margin: 10px 0 !important;
  }
  .cart_footer_items {
    padding-top: 10px !important;
  }
  .cart_delivery_instructions .money {
    padding-left: 10px;
  }
}

@media (max-width: 543px) {
  .cart-list .cart-right-fix .product_name a {
    font-size: 16px;
    line-height: 16px;
  }
  .cart-list .row h3.item_vendor {
    margin-top: 7px !important;
  }
  .cart-list .row h3.item_vendor {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .product-content {
    margin-top: 20px;
  }
}

#slidetop {
  background: #1f8ebe;
  box-shadow: 0 0 10px 4px rgba(255, 255, 255, 0.2);
  color: transparent;
  bottom: 100px;
  cursor: pointer;
  height: 40px;
  overflow: hidden;
  padding: 5px;
  border-radius: 50%;
  position: fixed;
  right: 20px;
  text-align: center;
  width: 40px;
  z-index: 99999;
  opacity: 1;
  display: none;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
#slidetop svg {
  color: #fff;
  margin: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  transform: rotate(180deg);
  stroke: #fff;
  stroke-width: 0.04rem;
}
#slidetop:hover {
  background-color: #9d5981;
}
#slidetop:hover svg {
  color: #fff;
  stroke: #fff;
}

/* @media (max-width: 767px){
  .template-product .breadcrumb{
     display:none;
  }
} */
.product_img_big__list .media {
  display: none;
}
.product_img_big__list .media:first-child {
  display: block;
}

.template-blog .wow.blog-article .article_header {
  padding: 0;
  border: none;
}
.template-blog .wow.blog-article .article_header .fig-inner {
  bottom: -107px;
  border: none;
}
.article .rte img {
  width: auto;
  height: auto;
}

@media (min-width: 1300px) {
  .container {
    width: 1270px;
  }
}
@media (min-width: 1430px) {
  .container {
    width: 1300px;
  }
}
@media (min-width: 1530px) {
  .container {
    width: 1500px;
  }
}

.valentine-message {
  display: flex;
  align-items: center;
  background-color: #f0f9ff; /* soft blue like price countdown */
  color: #0c4a6e;
  border-left: 5px solid #38bdf8;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  width: 75%;
  margin: 2rem auto 0;
  text-align: left;
  gap: 10px;
}

@media (max-width: 1500px) {
  .valentine-message {
    width: 85%;
  }
}
@media (max-width: 1299px) {
  .valentine-message {
    width: 100%;
  }
}

.goto-valentine {
  margin: 2rem 0;
  text-align: center;
}
.goto-valentine .extra-message {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
  position: relative;
  padding: 0.75rem 1.25rem;
  text-align: center;
  font-size: 14px;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  width: 75%;
  margin: 0 auto 20px;
}
@media (max-width: 1500px) {
  .goto-valentine .extra-message {
    width: 85%;
  }
}
@media (max-width: 1299px) {
  .goto-valentine .extra-message {
    width: 100%;
  }
}
.goto-valentine-collection a {
  margin: 0 auto;
  -webkit-transition: all 0.3s;
  background-color: #212121;
  border-radius: 0;
  color: #fff;
  position: relative;
  width: 290px;
  font-size: 17px;
  display: block;
  height: 46px;
  padding: 8px 12px;
  border: none;
  text-decoration: none;
  font-family: Roboto, sans-serif;
}
.goto-valentine-collection a:before {
  border: 1px solid #c0b689;
  position: absolute;
  content: "";
  bottom: 5px;
  right: 5px;
  left: 5px;
  top: 5px;
  z-index: 1;
}

.template-product .collection-image a {
  display: block;
}
.template-product .collection-image .mobile-image {
  display: none;
}
@media (max-width: 767px) {
  .template-product .collection-image .desktop-image {
    display: none;
  }
  .template-product .collection-image .mobile-image {
    display: block;
  }
}
.cart_footer_items .goto-valentine {
  margin: 1rem 0 2rem;
}
.cart_footer_items .goto-valentine .extra-message {
  width: 100%;
}
.product_img_thumbs__list {
  display: flex;
  overflow: hidden;
}
.product_img_thumbs__list a {
  flex-shrink: 0;
}
