@charset "UTF-8";
/*
===============================================================================================
Theme Name: Bikini
Theme URL: 
Author: DL
Author URL: 
Version: 1.0		
Last update: 
===============================================================================================
*/
/*	################################################################
1. MIXIN
2. TYPOGRAPHY VARIABLE
3. VARIABLE
4. RESERT	
4.1 Gerenal
4.2 Partials | Typography styles
4.3 Use em() Sass function to declare font-size
4.4 Partials | Lists
4.5 Partials | Tables
4.6 Partials | Links and Buttons
4.7 Partials | Images, SVG, and iframes
4.8 Partials | Forms
4.9 Input width and border
4.10 Form labels
4.11 We don't want the same label treatment for checkboxes/radios
4.12 Horizontal Form
4.13 Error styles
4.14 Input Group
4.15 Module | Rich Text Editor
5. HELP		
6. BUTTON
7. POPUP		
8. SWATCH VARIANT		
9. CUSTOM OWL CAROUSEL
10. TAB
11. ACCORDION
12. QUICKVIEW
13. FILTER
14. POPUP CART NEW
15. CSS FOR CONFIG

################################################################# */
/*============================================================================
1. Mixin
==============================================================================*/
/*============================================================================
#Typography variables
==============================================================================*/
/*============================================================================
#Variable
==============================================================================*/
/*============================================================================
4. Reset
==============================================================================*/
/*================ Gerenal ================*/
*, input, :before, :after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html {
  overflow-x: hidden; }

html, body {
  padding: 0;
  margin: 0;
  overflow-x: hidden; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block; }

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"] {
  border: 1px solid #e9e9e9;
  color: #1c1c1c;
  margin: 0 0 19px;
  min-height: 40px;
  padding: 0 20px; }

a {
  color: #252525; }
  a:hover {
    color: #602023;
    text-decoration: none !important; }

.remove {
  color: #999;
  font-size: 1em; }
  .remove:hover {
    color: #602023; }

.dropdown-menu {
  box-shadow: none; }

.dropdown-menu > li > a {
  white-space: inherit; }

.dropdown-menu > .active > a, .dropdown-menu > .active > a:focus, .dropdown-menu > .active > a:hover {
  background: none; }

.nav > li > a:focus, .nav > li > a:hover {
  background: transparent; }

.dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover {
  background: transparent; }

.dropdown-menu > li > a {
  padding: 0; }

.row.row-noGutter {
  margin-left: 0;
  margin-right: 0; }
  .row.row-noGutter > div[class^="col"] {
    padding-right: 0px;
    padding-left: 0px; }

/*================ Partials | Typography styles ================*/
body,
input,
textarea,
button,
select {
  line-height: 1.5;
  font-family: "OrientoGrotesk", sans-serif;
  color: #252525;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%; }

body {
  font-size: 14px;
  color: #252525; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: "OrientoGrotesk", sans-serif;
  line-height: 1.4; }
  h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
    text-decoration: none;
    font-weight: inherit; }

a {
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out; }
  a:focus {
    outline: none; }

/*================ Use em() Sass function to declare font-size ================*/
h1, .h1 {
  font-size: 2.57143em; }

h2, .h2 {
  font-size: 2em; }

h3, .h3 {
  font-size: 1.71429em; }

h4, .h4 {
  font-size: 1.28571em; }

h5, .h5 {
  font-size: 1.14286em; }

h6, .h6 {
  font-size: 1.14286em; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  color: #252525;
  letter-spacing: .01em;
  font-weight: 700; }

p {
  margin: 0 0 10px 0; }
  p img {
    margin: 0; }

em {
  font-style: italic; }

b, strong {
  font-weight: bold; }

small {
  font-size: 0.9em; }

sup, sub {
  position: relative;
  font-size: 60%;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.5em; }

blockquote {
  font-size: 1.125em;
  line-height: 1.45;
  font-style: italic;
  margin: 0 0 30px;
  padding: 15px 30px;
  border-left: 1px solid #e1e1e1; }
  blockquote p {
    margin-bottom: 0; }
    blockquote p + cite {
      margin-top: 15px; }
  blockquote cite {
    display: block;
    font-size: 0.75em; }
    blockquote cite:before {
      content: "\2014 \0020"; }

code, pre {
  background-color: #faf7f5;
  font-family: Consolas,monospace;
  font-size: 1em;
  border: 0 none;
  padding: 0 2px;
  color: #51ab62; }

pre {
  overflow: auto;
  padding: 15px;
  margin: 0 0 30px; }

/*================ Partials | Lists ================*/
ul, ol {
  margin: 0;
  padding: 0; }

ul {
  list-style: none outside; }

ol {
  list-style: decimal; }

ul.square, .rte ul ul ul {
  list-style: square outside; }

ul.disc, .rte ul {
  list-style: disc outside; }

ol.alpha {
  list-style: lower-alpha outside; }

.inline-list li {
  display: inline-block;
  margin-bottom: 0; }

/*================ Partials | Tables ================*/
table {
  width: 100%;
  margin-bottom: 1em;
  border-collapse: collapse;
  border-spacing: 0; }

.table-wrap {
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

th {
  font-weight: bold; }

th, td {
  text-align: left;
  padding: 15px;
  border: 1px solid #e1e1e1;
  color: #1c1c1c; }

/*================ Partials | Links and Buttons ================*/
a,
.text-link {
  color: #252525;
  text-decoration: none;
  background: transparent; }

button {
  overflow: visible; }

button[disabled],
html input[disabled] {
  cursor: default; }

/*================ Partials | Images, SVG, and iframes ================*/
img {
  border: 0 none;
  max-width: 100%;
  height: auto; }

svg:not(:root) {
  overflow: hidden; }

.video-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  height: auto; }
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.table-wrapper {
  max-width: 100%;
  overflow: auto; }

/*================ Partials | Forms ================*/
form {
  margin-bottom: 30px; }
  form a {
    color: #252525; }

input,
textarea,
button,
select {
  font-size: 1em; }
  input:focus,
  textarea:focus,
  button:focus,
  select:focus {
    outline: none; }

button,
input[type="text"],
input[type="search"],
input[type="password"],
input[type="email"],
input[type="file"],
input[type="number"],
input[type="tel"],
input[type="submit"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none; }

input,
textarea,
select,
fieldset {
  border-radius: 0;
  max-width: 100%; }
  input.input-full,
  textarea.input-full,
  select.input-full,
  fieldset.input-full {
    width: 100%; }

fieldset {
  border: 1px solid #e1e1e1;
  padding: 15px; }

legend {
  border: 0;
  padding: 0; }

optgroup {
  font-weight: bold; }

input {
  display: inline-block;
  width: auto; }

button,
input[type="submit"] {
  cursor: pointer; }

/*================ Input width and border ================*/
input[type="text"],
input[type="search"],
input[type="password"],
input[type="email"],
input[type="file"],
input[type="number"],
input[type="tel"],
textarea,
select {
  border: 1px solid #e1e1e1;
  padding: 0 20px;
  width: 100%;
  max-width: 100%;
  display: block; }
  input[type="text"]:focus,
  input[type="search"]:focus,
  input[type="password"]:focus,
  input[type="email"]:focus,
  input[type="file"]:focus,
  input[type="number"]:focus,
  input[type="tel"]:focus,
  textarea:focus,
  select:focus {
    border: 1px solid #c8c8c8; }
  input[type="text"][disabled], input[type="text"].disabled,
  input[type="search"][disabled],
  input[type="search"].disabled,
  input[type="password"][disabled],
  input[type="password"].disabled,
  input[type="email"][disabled],
  input[type="email"].disabled,
  input[type="file"][disabled],
  input[type="file"].disabled,
  input[type="number"][disabled],
  input[type="number"].disabled,
  input[type="tel"][disabled],
  input[type="tel"].disabled,
  textarea[disabled],
  textarea.disabled,
  select[disabled],
  select.disabled {
    cursor: default;
    background-color: #ddd;
    border-color: #ddd; }

textarea {
  min-height: 100px;
  padding-top: 6px;
  padding-bottom: 6px; }

input[type="checkbox"],
input[type="radio"] {
  display: inline;
  margin: 0;
  padding: 0; }

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url("//theme.hstatic.net/200000525899/1001103657/14/ico-select.png?v=427");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: #fff !important;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer;
  /*================ Hide the svg arrow in IE9 and below ================*/ }
  .ie9 select,
  .lt-ie9 select {
    padding-right: 10px;
    background-image: none; }

option {
  color: #000;
  background-color: #fff; }

select::-ms-expand {
  display: none; }

/*================ Form labels ================*/
label,
legend {
  display: block;
  margin-bottom: 2px; }
  label.inline,
  legend.inline {
    display: inline; }

/*================ We don't want the same label treatment for checkboxes/radios ================*/
input[type="checkbox"] + label,
input[type="radio"] + label {
  font-weight: normal; }

label[for] {
  cursor: pointer; }

.label-hint {
  color: #999; }

/*================ Horizontal Form ================*/
form.form-horizontal,
.form-horizontal {
  margin-bottom: 0; }
  form.form-horizontal input[type="text"],
  form.form-horizontal input[type="search"],
  form.form-horizontal input[type="password"],
  form.form-horizontal input[type="email"],
  form.form-horizontal input[type="file"],
  form.form-horizontal input[type="number"],
  form.form-horizontal input[type="tel"],
  form.form-horizontal textarea,
  form.form-horizontal select,
  form.form-horizontal label,
  .form-horizontal input[type="text"],
  .form-horizontal input[type="search"],
  .form-horizontal input[type="password"],
  .form-horizontal input[type="email"],
  .form-horizontal input[type="file"],
  .form-horizontal input[type="number"],
  .form-horizontal input[type="tel"],
  .form-horizontal textarea,
  .form-horizontal select,
  .form-horizontal label {
    display: inline-block;
    margin-bottom: 0;
    width: auto; }

/*================ Error styles ================*/
input[type="text"].error,
input[type="search"].error,
input[type="password"].error,
input[type="email"].error,
input[type="file"].error,
input[type="number"].error,
input[type="tel"].error,
textarea.error {
  border-color: red;
  color: red; }

label.error {
  color: red; }

/*================ Input Group ================*/
.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }
  .input-group .input-group-field:first-child,
  .input-group .input-group-btn:first-child,
  .input-group .input-group-btn:first-child > .btn,
  .input-group .input-group-btn:first-child > input[type="submit"],
  .input-group input[type="hidden"]:first-child + .input-group-field,
  .input-group input[type="hidden"]:first-child + .input-group-btn > .btn,
  .input-group input[type="hidden"]:first-child + .input-group-btn > input[type="submit"] {
    border-radius: 0; }
  .input-group .input-group-field:last-child,
  .input-group .input-group-btn:last-child > .btn,
  .input-group .input-group-btn:last-child > input[type="submit"] {
    border-radius: 0; }
  .input-group input::-moz-focus-inner {
    border: 0;
    padding: 0;
    margin-top: -1px;
    margin-bottom: -1px; }

.input-group-field,
.input-group-btn {
  display: table-cell;
  vertical-align: middle;
  margin: 0; }

.input-group .btn, .input-group input[type="submit"],
.input-group .input-group-field {
  height: 40px; }

.input-group .input-group-field {
  width: 100%;
  margin-bottom: 0; }

.input-group-btn {
  position: relative;
  white-space: nowrap;
  width: 1%;
  padding: 0; }

.required {
  color: red; }

.form-group {
  margin: 0;
  padding: 0 0 8px;
  border: 0; }
  .form-group .form-control {
    display: block;
    width: 100%;
    min-height: 40px;
    padding: .375rem 10px;
    font-size: 1em;
    line-height: 1.5;
    color: #252525;
    background-color: #fff;
    background-image: none;
    margin: 0;
    box-shadow: none;
    border-radius: 0; }
  .form-group textarea.form-control {
    border-color: #e1e1e1; }
  .form-group input, .form-group select {
    height: 40px; }

/*================ Module | Rich Text Editor ================*/
.rte h1, .rte .h1, .rte h2, .rte .h2, .rte h3, .rte .h3, .rte h4, .rte .h4, .rte h5, .rte .h5, .rte h6, .rte .h6 {
  margin-top: 2em; }
  .rte h1:first-child, .rte .h1:first-child, .rte h2:first-child, .rte .h2:first-child, .rte h3:first-child, .rte .h3:first-child, .rte h4:first-child, .rte .h4:first-child, .rte h5:first-child, .rte .h5:first-child, .rte h6:first-child, .rte .h6:first-child {
    margin-top: 0; }

.rte h5, .rte .h5,
.rte .h5 {
  text-transform: uppercase; }

.rte > div {
  margin-bottom: 15px; }

.rte ul ul {
  list-style: circle outside; }

.rte li {
  margin-bottom: 0.4em; }

.rte img {
  max-width: 100%;
  height: auto !important; }

.rte table {
  table-layout: fixed; }

/*============================================================================
5. HELP
==============================================================================*/
.clearfix {
  *zoom: 1; }
  .clearfix:after {
    content: "";
    display: table;
    clear: both; }

.clearboth {
  clear: both; }

.no-background {
  background: none !important; }

svg path,
svg rect {
  /*fill: $main-color;*/ }

.errors {
  color: red; }

.flexbox, .awe-popup {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center; }

.list-inline {
  *zoom: 1; }
  .list-inline:after {
    content: "";
    display: table;
    clear: both; }
  .list-inline li {
    float: left;
    margin: 0; }

.d-list > div {
  position: relative;
  margin-right: 15px; }
  .d-list > div:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 1px;
    height: 13px;
    margin: auto;
    z-index: 9;
    background: #e1e1e1; }
  .d-list > div:first-child {
    margin: 0; }
    .d-list > div:first-child:before {
      display: none; }

.a-center {
  text-align: center !important; }

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

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

.f-left {
  float: left !important; }

.f-right {
  float: right !important; }

.f-none {
  float: none !important; }

.inline {
  display: inline !important; }

.block {
  display: block !important; }

.inline-block {
  display: inline-block !important; }

.flexbox {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden; }
  .flexbox > div {
    flex: 1; }

.background-none {
  background: none !important; }

.no-margin {
  margin: 0 !important; }

.no-padding {
  padding: 0 !important; }

.no-border {
  border: none !important; }

.ov-h {
  overflow: hidden !important; }

.relative {
  position: relative !important; }

.absolute {
  position: absolute !important; }

@media (max-width: 991px) and (min-width: 768px) {
  .hiden-sm {
    display: none !important; } }

.static {
  position: static; }

.relative {
  position: relative; }

.absolute {
  position: absolute; }

.clear-left {
  clear: left; }

/* Margin and padding helpers */
/* Margin */
.margin-0 {
  margin: 0px !important; }

.margin-vertical-0 {
  margin-top: 0px !important;
  margin-bottom: 0px !important; }

.margin-horizontal-0 {
  margin-left: 0px !important;
  margin-right: 0px !important; }

.margin-top-0 {
  margin-top: 0px !important; }

.margin-bottom-0 {
  margin-bottom: 0px !important; }

.margin-left-0 {
  margin-left: 0px !important; }

.margin-right-0 {
  margin-right: 0px !important; }

/* Padding */
.padding-0 {
  padding: 0px !important; }

.padding-vertical-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important; }

.padding-horizontal-0 {
  padding-left: 0px !important;
  padding-right: 0px !important; }

.padding-top-0 {
  padding-top: 0px !important; }

.padding-bottom-0 {
  padding-bottom: 0px !important; }

.padding-left-0 {
  padding-left: 0px !important; }

.padding-right-0 {
  padding-right: 0px !important; }

/* Margin */
.margin-5 {
  margin: 5px !important; }

.margin-vertical-5 {
  margin-top: 5px !important;
  margin-bottom: 5px !important; }

.margin-horizontal-5 {
  margin-left: 5px !important;
  margin-right: 5px !important; }

.margin-top-5 {
  margin-top: 5px !important; }

.margin-bottom-5 {
  margin-bottom: 5px !important; }

.margin-left-5 {
  margin-left: 5px !important; }

.margin-right-5 {
  margin-right: 5px !important; }

/* Padding */
.padding-5 {
  padding: 5px !important; }

.padding-vertical-5 {
  padding-top: 5px !important;
  padding-bottom: 5px !important; }

.padding-horizontal-5 {
  padding-left: 5px !important;
  padding-right: 5px !important; }

.padding-top-5 {
  padding-top: 5px !important; }

.padding-bottom-5 {
  padding-bottom: 5px !important; }

.padding-left-5 {
  padding-left: 5px !important; }

.padding-right-5 {
  padding-right: 5px !important; }

/* Margin */
.margin-10 {
  margin: 10px !important; }

.margin-vertical-10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important; }

.margin-horizontal-10 {
  margin-left: 10px !important;
  margin-right: 10px !important; }

.margin-top-10 {
  margin-top: 10px !important; }

.margin-bottom-10 {
  margin-bottom: 10px !important; }

.margin-left-10 {
  margin-left: 10px !important; }

.margin-right-10 {
  margin-right: 10px !important; }

/* Padding */
.padding-10 {
  padding: 10px !important; }

.padding-vertical-10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important; }

.padding-horizontal-10 {
  padding-left: 10px !important;
  padding-right: 10px !important; }

.padding-top-10 {
  padding-top: 10px !important; }

.padding-bottom-10 {
  padding-bottom: 10px !important; }

.padding-left-10 {
  padding-left: 10px !important; }

.padding-right-10 {
  padding-right: 10px !important; }

/* Margin */
.margin-15 {
  margin: 15px !important; }

.margin-vertical-15 {
  margin-top: 15px !important;
  margin-bottom: 15px !important; }

.margin-horizontal-15 {
  margin-left: 15px !important;
  margin-right: 15px !important; }

.margin-top-15 {
  margin-top: 15px !important; }

.margin-bottom-15 {
  margin-bottom: 15px !important; }

.margin-left-15 {
  margin-left: 15px !important; }

.margin-right-15 {
  margin-right: 15px !important; }

/* Padding */
.padding-15 {
  padding: 15px !important; }

.padding-vertical-15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important; }

.padding-horizontal-15 {
  padding-left: 15px !important;
  padding-right: 15px !important; }

.padding-top-15 {
  padding-top: 15px !important; }

.padding-bottom-15 {
  padding-bottom: 15px !important; }

.padding-left-15 {
  padding-left: 15px !important; }

.padding-right-15 {
  padding-right: 15px !important; }

/* Margin */
.margin-20 {
  margin: 20px !important; }

.margin-vertical-20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important; }

.margin-horizontal-20 {
  margin-left: 20px !important;
  margin-right: 20px !important; }

.margin-top-20 {
  margin-top: 20px !important; }

.margin-bottom-20 {
  margin-bottom: 20px !important; }

.margin-left-20 {
  margin-left: 20px !important; }

.margin-right-20 {
  margin-right: 20px !important; }

/* Padding */
.padding-20 {
  padding: 20px !important; }

.padding-vertical-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important; }

.padding-horizontal-20 {
  padding-left: 20px !important;
  padding-right: 20px !important; }

.padding-top-20 {
  padding-top: 20px !important; }

.padding-bottom-20 {
  padding-bottom: 20px !important; }

.padding-left-20 {
  padding-left: 20px !important; }

.padding-right-20 {
  padding-right: 20px !important; }

/* Margin */
.margin-25 {
  margin: 25px !important; }

.margin-vertical-25 {
  margin-top: 25px !important;
  margin-bottom: 25px !important; }

.margin-horizontal-25 {
  margin-left: 25px !important;
  margin-right: 25px !important; }

.margin-top-25 {
  margin-top: 25px !important; }

.margin-bottom-25 {
  margin-bottom: 25px !important; }

.margin-left-25 {
  margin-left: 25px !important; }

.margin-right-25 {
  margin-right: 25px !important; }

/* Padding */
.padding-25 {
  padding: 25px !important; }

.padding-vertical-25 {
  padding-top: 25px !important;
  padding-bottom: 25px !important; }

.padding-horizontal-25 {
  padding-left: 25px !important;
  padding-right: 25px !important; }

.padding-top-25 {
  padding-top: 25px !important; }

.padding-bottom-25 {
  padding-bottom: 25px !important; }

.padding-left-25 {
  padding-left: 25px !important; }

.padding-right-25 {
  padding-right: 25px !important; }

/* Margin */
.margin-30 {
  margin: 30px !important; }

.margin-vertical-30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important; }

.margin-horizontal-30 {
  margin-left: 30px !important;
  margin-right: 30px !important; }

.margin-top-30 {
  margin-top: 30px !important; }

.margin-bottom-30 {
  margin-bottom: 30px !important; }

.margin-left-30 {
  margin-left: 30px !important; }

.margin-right-30 {
  margin-right: 30px !important; }

/* Padding */
.padding-30 {
  padding: 30px !important; }

.padding-vertical-30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important; }

.padding-horizontal-30 {
  padding-left: 30px !important;
  padding-right: 30px !important; }

.padding-top-30 {
  padding-top: 30px !important; }

.padding-bottom-30 {
  padding-bottom: 30px !important; }

.padding-left-30 {
  padding-left: 30px !important; }

.padding-right-30 {
  padding-right: 30px !important; }

/* Margin */
.margin-35 {
  margin: 35px !important; }

.margin-vertical-35 {
  margin-top: 35px !important;
  margin-bottom: 35px !important; }

.margin-horizontal-35 {
  margin-left: 35px !important;
  margin-right: 35px !important; }

.margin-top-35 {
  margin-top: 35px !important; }

.margin-bottom-35 {
  margin-bottom: 35px !important; }

.margin-left-35 {
  margin-left: 35px !important; }

.margin-right-35 {
  margin-right: 35px !important; }

/* Padding */
.padding-35 {
  padding: 35px !important; }

.padding-vertical-35 {
  padding-top: 35px !important;
  padding-bottom: 35px !important; }

.padding-horizontal-35 {
  padding-left: 35px !important;
  padding-right: 35px !important; }

.padding-top-35 {
  padding-top: 35px !important; }

.padding-bottom-35 {
  padding-bottom: 35px !important; }

.padding-left-35 {
  padding-left: 35px !important; }

.padding-right-35 {
  padding-right: 35px !important; }

/* Margin */
.margin-40 {
  margin: 40px !important; }

.margin-vertical-40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important; }

.margin-horizontal-40 {
  margin-left: 40px !important;
  margin-right: 40px !important; }

.margin-top-40 {
  margin-top: 40px !important; }

.margin-bottom-40 {
  margin-bottom: 40px !important; }

.margin-left-40 {
  margin-left: 40px !important; }

.margin-right-40 {
  margin-right: 40px !important; }

/* Padding */
.padding-40 {
  padding: 40px !important; }

.padding-vertical-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important; }

.padding-horizontal-40 {
  padding-left: 40px !important;
  padding-right: 40px !important; }

.padding-top-40 {
  padding-top: 40px !important; }

.padding-bottom-40 {
  padding-bottom: 40px !important; }

.padding-left-40 {
  padding-left: 40px !important; }

.padding-right-40 {
  padding-right: 40px !important; }

/* Margin */
.margin-45 {
  margin: 45px !important; }

.margin-vertical-45 {
  margin-top: 45px !important;
  margin-bottom: 45px !important; }

.margin-horizontal-45 {
  margin-left: 45px !important;
  margin-right: 45px !important; }

.margin-top-45 {
  margin-top: 45px !important; }

.margin-bottom-45 {
  margin-bottom: 45px !important; }

.margin-left-45 {
  margin-left: 45px !important; }

.margin-right-45 {
  margin-right: 45px !important; }

/* Padding */
.padding-45 {
  padding: 45px !important; }

.padding-vertical-45 {
  padding-top: 45px !important;
  padding-bottom: 45px !important; }

.padding-horizontal-45 {
  padding-left: 45px !important;
  padding-right: 45px !important; }

.padding-top-45 {
  padding-top: 45px !important; }

.padding-bottom-45 {
  padding-bottom: 45px !important; }

.padding-left-45 {
  padding-left: 45px !important; }

.padding-right-45 {
  padding-right: 45px !important; }

/* Margin */
.margin-50 {
  margin: 50px !important; }

.margin-vertical-50 {
  margin-top: 50px !important;
  margin-bottom: 50px !important; }

.margin-horizontal-50 {
  margin-left: 50px !important;
  margin-right: 50px !important; }

.margin-top-50 {
  margin-top: 50px !important; }

.margin-bottom-50 {
  margin-bottom: 50px !important; }

.margin-left-50 {
  margin-left: 50px !important; }

.margin-right-50 {
  margin-right: 50px !important; }

/* Padding */
.padding-50 {
  padding: 50px !important; }

.padding-vertical-50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important; }

.padding-horizontal-50 {
  padding-left: 50px !important;
  padding-right: 50px !important; }

.padding-top-50 {
  padding-top: 50px !important; }

.padding-bottom-50 {
  padding-bottom: 50px !important; }

.padding-left-50 {
  padding-left: 50px !important; }

.padding-right-50 {
  padding-right: 50px !important; }

/* Margin */
.margin-55 {
  margin: 55px !important; }

.margin-vertical-55 {
  margin-top: 55px !important;
  margin-bottom: 55px !important; }

.margin-horizontal-55 {
  margin-left: 55px !important;
  margin-right: 55px !important; }

.margin-top-55 {
  margin-top: 55px !important; }

.margin-bottom-55 {
  margin-bottom: 55px !important; }

.margin-left-55 {
  margin-left: 55px !important; }

.margin-right-55 {
  margin-right: 55px !important; }

/* Padding */
.padding-55 {
  padding: 55px !important; }

.padding-vertical-55 {
  padding-top: 55px !important;
  padding-bottom: 55px !important; }

.padding-horizontal-55 {
  padding-left: 55px !important;
  padding-right: 55px !important; }

.padding-top-55 {
  padding-top: 55px !important; }

.padding-bottom-55 {
  padding-bottom: 55px !important; }

.padding-left-55 {
  padding-left: 55px !important; }

.padding-right-55 {
  padding-right: 55px !important; }

/* Margin */
.margin-60 {
  margin: 60px !important; }

.margin-vertical-60 {
  margin-top: 60px !important;
  margin-bottom: 60px !important; }

.margin-horizontal-60 {
  margin-left: 60px !important;
  margin-right: 60px !important; }

.margin-top-60 {
  margin-top: 60px !important; }

.margin-bottom-60 {
  margin-bottom: 60px !important; }

.margin-left-60 {
  margin-left: 60px !important; }

.margin-right-60 {
  margin-right: 60px !important; }

/* Padding */
.padding-60 {
  padding: 60px !important; }

.padding-vertical-60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important; }

.padding-horizontal-60 {
  padding-left: 60px !important;
  padding-right: 60px !important; }

.padding-top-60 {
  padding-top: 60px !important; }

.padding-bottom-60 {
  padding-bottom: 60px !important; }

.padding-left-60 {
  padding-left: 60px !important; }

.padding-right-60 {
  padding-right: 60px !important; }

/* Margin */
.margin-65 {
  margin: 65px !important; }

.margin-vertical-65 {
  margin-top: 65px !important;
  margin-bottom: 65px !important; }

.margin-horizontal-65 {
  margin-left: 65px !important;
  margin-right: 65px !important; }

.margin-top-65 {
  margin-top: 65px !important; }

.margin-bottom-65 {
  margin-bottom: 65px !important; }

.margin-left-65 {
  margin-left: 65px !important; }

.margin-right-65 {
  margin-right: 65px !important; }

/* Padding */
.padding-65 {
  padding: 65px !important; }

.padding-vertical-65 {
  padding-top: 65px !important;
  padding-bottom: 65px !important; }

.padding-horizontal-65 {
  padding-left: 65px !important;
  padding-right: 65px !important; }

.padding-top-65 {
  padding-top: 65px !important; }

.padding-bottom-65 {
  padding-bottom: 65px !important; }

.padding-left-65 {
  padding-left: 65px !important; }

.padding-right-65 {
  padding-right: 65px !important; }

/* Margin */
.margin-70 {
  margin: 70px !important; }

.margin-vertical-70 {
  margin-top: 70px !important;
  margin-bottom: 70px !important; }

.margin-horizontal-70 {
  margin-left: 70px !important;
  margin-right: 70px !important; }

.margin-top-70 {
  margin-top: 70px !important; }

.margin-bottom-70 {
  margin-bottom: 70px !important; }

.margin-left-70 {
  margin-left: 70px !important; }

.margin-right-70 {
  margin-right: 70px !important; }

/* Padding */
.padding-70 {
  padding: 70px !important; }

.padding-vertical-70 {
  padding-top: 70px !important;
  padding-bottom: 70px !important; }

.padding-horizontal-70 {
  padding-left: 70px !important;
  padding-right: 70px !important; }

.padding-top-70 {
  padding-top: 70px !important; }

.padding-bottom-70 {
  padding-bottom: 70px !important; }

.padding-left-70 {
  padding-left: 70px !important; }

.padding-right-70 {
  padding-right: 70px !important; }

/* Margin */
.margin-75 {
  margin: 75px !important; }

.margin-vertical-75 {
  margin-top: 75px !important;
  margin-bottom: 75px !important; }

.margin-horizontal-75 {
  margin-left: 75px !important;
  margin-right: 75px !important; }

.margin-top-75 {
  margin-top: 75px !important; }

.margin-bottom-75 {
  margin-bottom: 75px !important; }

.margin-left-75 {
  margin-left: 75px !important; }

.margin-right-75 {
  margin-right: 75px !important; }

/* Padding */
.padding-75 {
  padding: 75px !important; }

.padding-vertical-75 {
  padding-top: 75px !important;
  padding-bottom: 75px !important; }

.padding-horizontal-75 {
  padding-left: 75px !important;
  padding-right: 75px !important; }

.padding-top-75 {
  padding-top: 75px !important; }

.padding-bottom-75 {
  padding-bottom: 75px !important; }

.padding-left-75 {
  padding-left: 75px !important; }

.padding-right-75 {
  padding-right: 75px !important; }

/* Margin */
.margin-80 {
  margin: 80px !important; }

.margin-vertical-80 {
  margin-top: 80px !important;
  margin-bottom: 80px !important; }

.margin-horizontal-80 {
  margin-left: 80px !important;
  margin-right: 80px !important; }

.margin-top-80 {
  margin-top: 80px !important; }

.margin-bottom-80 {
  margin-bottom: 80px !important; }

.margin-left-80 {
  margin-left: 80px !important; }

.margin-right-80 {
  margin-right: 80px !important; }

/* Padding */
.padding-80 {
  padding: 80px !important; }

.padding-vertical-80 {
  padding-top: 80px !important;
  padding-bottom: 80px !important; }

.padding-horizontal-80 {
  padding-left: 80px !important;
  padding-right: 80px !important; }

.padding-top-80 {
  padding-top: 80px !important; }

.padding-bottom-80 {
  padding-bottom: 80px !important; }

.padding-left-80 {
  padding-left: 80px !important; }

.padding-right-80 {
  padding-right: 80px !important; }

/* Margin */
.margin-85 {
  margin: 85px !important; }

.margin-vertical-85 {
  margin-top: 85px !important;
  margin-bottom: 85px !important; }

.margin-horizontal-85 {
  margin-left: 85px !important;
  margin-right: 85px !important; }

.margin-top-85 {
  margin-top: 85px !important; }

.margin-bottom-85 {
  margin-bottom: 85px !important; }

.margin-left-85 {
  margin-left: 85px !important; }

.margin-right-85 {
  margin-right: 85px !important; }

/* Padding */
.padding-85 {
  padding: 85px !important; }

.padding-vertical-85 {
  padding-top: 85px !important;
  padding-bottom: 85px !important; }

.padding-horizontal-85 {
  padding-left: 85px !important;
  padding-right: 85px !important; }

.padding-top-85 {
  padding-top: 85px !important; }

.padding-bottom-85 {
  padding-bottom: 85px !important; }

.padding-left-85 {
  padding-left: 85px !important; }

.padding-right-85 {
  padding-right: 85px !important; }

/* Margin */
.margin-90 {
  margin: 90px !important; }

.margin-vertical-90 {
  margin-top: 90px !important;
  margin-bottom: 90px !important; }

.margin-horizontal-90 {
  margin-left: 90px !important;
  margin-right: 90px !important; }

.margin-top-90 {
  margin-top: 90px !important; }

.margin-bottom-90 {
  margin-bottom: 90px !important; }

.margin-left-90 {
  margin-left: 90px !important; }

.margin-right-90 {
  margin-right: 90px !important; }

/* Padding */
.padding-90 {
  padding: 90px !important; }

.padding-vertical-90 {
  padding-top: 90px !important;
  padding-bottom: 90px !important; }

.padding-horizontal-90 {
  padding-left: 90px !important;
  padding-right: 90px !important; }

.padding-top-90 {
  padding-top: 90px !important; }

.padding-bottom-90 {
  padding-bottom: 90px !important; }

.padding-left-90 {
  padding-left: 90px !important; }

.padding-right-90 {
  padding-right: 90px !important; }

/* Margin */
.margin-95 {
  margin: 95px !important; }

.margin-vertical-95 {
  margin-top: 95px !important;
  margin-bottom: 95px !important; }

.margin-horizontal-95 {
  margin-left: 95px !important;
  margin-right: 95px !important; }

.margin-top-95 {
  margin-top: 95px !important; }

.margin-bottom-95 {
  margin-bottom: 95px !important; }

.margin-left-95 {
  margin-left: 95px !important; }

.margin-right-95 {
  margin-right: 95px !important; }

/* Padding */
.padding-95 {
  padding: 95px !important; }

.padding-vertical-95 {
  padding-top: 95px !important;
  padding-bottom: 95px !important; }

.padding-horizontal-95 {
  padding-left: 95px !important;
  padding-right: 95px !important; }

.padding-top-95 {
  padding-top: 95px !important; }

.padding-bottom-95 {
  padding-bottom: 95px !important; }

.padding-left-95 {
  padding-left: 95px !important; }

.padding-right-95 {
  padding-right: 95px !important; }

/* Margin */
.margin-100 {
  margin: 100px !important; }

.margin-vertical-100 {
  margin-top: 100px !important;
  margin-bottom: 100px !important; }

.margin-horizontal-100 {
  margin-left: 100px !important;
  margin-right: 100px !important; }

.margin-top-100 {
  margin-top: 100px !important; }

.margin-bottom-100 {
  margin-bottom: 100px !important; }

.margin-left-100 {
  margin-left: 100px !important; }

.margin-right-100 {
  margin-right: 100px !important; }

/* Padding */
.padding-100 {
  padding: 100px !important; }

.padding-vertical-100 {
  padding-top: 100px !important;
  padding-bottom: 100px !important; }

.padding-horizontal-100 {
  padding-left: 100px !important;
  padding-right: 100px !important; }

.padding-top-100 {
  padding-top: 100px !important; }

.padding-bottom-100 {
  padding-bottom: 100px !important; }

.padding-left-100 {
  padding-left: 100px !important; }

.padding-right-100 {
  padding-right: 100px !important; }

@media (max-width: 767px) {
  .xs-margin-top-0 {
    margin-top: 0px !important; }
  .xs-margin-bottom-0 {
    margin-bottom: 0px !important; }
  .xs-margin-top-5 {
    margin-top: 5px !important; }
  .xs-margin-bottom-5 {
    margin-bottom: 5px !important; }
  .xs-margin-top-10 {
    margin-top: 10px !important; }
  .xs-margin-bottom-10 {
    margin-bottom: 10px !important; }
  .xs-margin-top-15 {
    margin-top: 15px !important; }
  .xs-margin-bottom-15 {
    margin-bottom: 15px !important; }
  .xs-margin-top-20 {
    margin-top: 20px !important; }
  .xs-margin-bottom-20 {
    margin-bottom: 20px !important; }
  .xs-margin-top-25 {
    margin-top: 25px !important; }
  .xs-margin-bottom-25 {
    margin-bottom: 25px !important; }
  .xs-margin-top-30 {
    margin-top: 30px !important; }
  .xs-margin-bottom-30 {
    margin-bottom: 30px !important; }
  .xs-margin-top-35 {
    margin-top: 35px !important; }
  .xs-margin-bottom-35 {
    margin-bottom: 35px !important; }
  .xs-margin-top-40 {
    margin-top: 40px !important; }
  .xs-margin-bottom-40 {
    margin-bottom: 40px !important; }
  .xs-margin-top-45 {
    margin-top: 45px !important; }
  .xs-margin-bottom-45 {
    margin-bottom: 45px !important; }
  .xs-margin-top-50 {
    margin-top: 50px !important; }
  .xs-margin-bottom-50 {
    margin-bottom: 50px !important; } }

/*============================================================================
6. BUTTON
==============================================================================*/
.btn, input[type="submit"] {
  display: inline-block;
  height: 40px;
  line-height: 39px;
  padding: 0 20px;
  text-align: center;
  white-space: nowrap;
  outline: none !important;
  cursor: pointer;
  border: none;
  font-weight: 400;
  border-radius: 0;
  letter-spacing: 0;
  -webkit-transition: background-color 0.1s ease-in;
  -moz-transition: background-color 0.1s ease-in;
  -ms-transition: background-color 0.1s ease-in;
  -o-transition: background-color 0.1s ease-in;
  transition: background-color 0.1s ease-in; }
  .btn[disabled], input[disabled][type="submit"], .btn.disabled, input.disabled[type="submit"] {
    cursor: default;
    background-color: #e1e1e1; }
  .btn.btn-primary, input.btn-primary[type="submit"] {
    background: #602023;
    color: #fff; }
    .btn.btn-primary:hover, input.btn-primary[type="submit"]:hover {
      background: #73262a; }
  .btn.btn-circle, input.btn-circle[type="submit"] {
    border-radius: 50%;
    padding: 0; }
  .btn.btn-large, input.btn-large[type="submit"] {
    height: 50px;
    line-height: 50px;
    padding: 0 74px; }
  .btn.btn-small, input.btn-small[type="submit"] {
    height: 34px;
    line-height: 34px;
    padding: 0 32px;
    font-size: 0.85714em; }
  .btn.btn-dark, input.btn-dark[type="submit"] {
    background: #2a2a2a;
    color: #fff; }
  .btn.btn-white, input.btn-white[type="submit"] {
    background: #fff;
    color: #252525;
    border: 1px solid #e1e1e1;
    font-weight: 400; }
    .btn.btn-white:hover, input.btn-white[type="submit"]:hover {
      background: #73262a;
      color: #fff; }
  .btn.btn-gray, input.btn-gray[type="submit"] {
    background: #9e9e9e;
    color: #fff; }
    .btn.btn-gray:hover, input.btn-gray[type="submit"]:hover {
      background: #602023; }
    .btn.btn-gray a, input.btn-gray[type="submit"] a {
      color: #fff; }
  .btn.btn-full, input.btn-full[type="submit"] {
    display: block;
    width: 100%; }

.btn-link {
  line-height: 40px;
  color: #602023; }
  .btn-link:hover {
    text-decoration: underline; }

/*============================================================================
7. POPUP
==============================================================================*/
.ajax-load {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  width: 100px;
  height: 100px;
  line-height: 100px;
  opacity: 0;
  visibility: hidden; }
  .ajax-load.active {
    opacity: 1;
    visibility: visible;
    z-index: 9999; }

.awe-popup {
  position: fixed;
  z-index: 9999;
  top: 0;
  height: 0;
  width: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out; }
  .awe-popup .overlay {
    background-color: rgba(33, 33, 33, 0.8);
    color: rgba(0, 0, 0, 0.4);
    position: fixed;
    top: 0 !important;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 0;
    height: 0; }
  .awe-popup .content {
    position: relative;
    max-width: 1140px;
    min-width: 1140px;
    padding: 25px 28px;
    max-height: 0;
    text-align: left;
    opacity: 0;
    margin: 0 auto;
    background: transparent;
    overflow: hidden;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    position: relative;
    padding: 25px 28px;
    max-height: 0;
    text-align: left;
    opacity: 0;
    margin: 0 auto;
    background: #fff; }
  .awe-popup.active {
    visibility: visible;
    opacity: 1;
    top: 0 !important;
    height: auto;
    width: auto; }
    .awe-popup.active .content {
      max-height: calc(100% - 60px);
      opacity: 1;
      background: transparent;
      padding: 0; }
      .awe-popup.active .content .info {
        background: #fff;
        min-width: 500px; }
    .awe-popup.active .overlay {
      width: 100%;
      height: 100%; }

.close-window {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 25px;
  height: 25px;
  cursor: pointer;
  z-index: 8040;
  color: #fff;
  text-align: center;
  line-height: 25px;
  border-radius: 50%; }
  .close-window .fa {
    display: block;
    font-size: 1.57143em;
    line-height: 25px;
    color: #602023; }

.awe-popup.loading {
  z-index: 9998; }
  .awe-popup.loading .loader {
    left: 50%;
    position: fixed;
    top: 50%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out; }

.awe-popup.loaded-content .loader {
  display: none; }

.awe-popup.addcart-popup .content {
  min-width: auto; }

.product-popup .product-image {
  float: left;
  margin: 0 20px 0 0; }

.product-popup .product-info {
  overflow: hidden;
  position: relative; }
  .product-popup .product-info p {
    margin-bottom: 0px;
    line-height: 24px; }

.product-popup .popup-title {
  padding-left: 15px;
  border-radius: 0; }
  .product-popup .popup-title i {
    margin-right: 5px; }

.product-popup .product-name {
  color: #602023; }

.product-popup .product-info p.total-money {
  margin-bottom: 15px; }

.product-popup h3, .product-popup .h3 {
  color: #52b249;
  margin-bottom: 25px; }
  .product-popup h3 .fa, .product-popup .h3 .fa {
    margin-right: 4px; }

.product-popup .pop-right h3, .product-popup .pop-right .h3 {
  color: #333; }

.pop-right {
  background: #f9f9f9; }

.awe-popup.product-popup.active .content {
  max-height: calc(100% - 60px);
  opacity: 1;
  padding: 0; }

@media (max-width: 1199px) {
  .awe-popup .content {
    max-width: 700px;
    min-width: auto; } }

@media (max-width: 543px) {
  .product-popup .product-image {
    width: 120px;
    height: 120px; }
  .product-popup .product-image img {
    max-width: 120px !important; }
  .awe-popup.product-popup.active .content {
    max-height: calc(100% - 60px);
    opacity: 1;
    margin: 0 20px; }
  .addcart-popup .col-xl-6 {
    padding: 0 !important; }
  .product-popup h3, .product-popup .h3 {
    font-size: 1.28571em;
    margin-bottom: 0; } }

/*============================================================================
8. SWATCH VARIANT
==============================================================================*/
/* 
Swatches Styles
*/
.swatch {
  margin: 1em 0; }
  .swatch .header {
    margin: 0.1em 0;
    text-align: left;
    float: left;
    min-width: 85px;
    font-weight: 400; }
  .swatch input {
    display: none; }

/* Label */
/* Hide radio buttons.*/
.swatch label {
  /* Rounded corners */
  /* To give width and height */
  float: left;
  /* Color swatches contain no text so they need to have a width. */
  min-width: 26px !important;
  height: 26px !important;
  /* No extra spacing between them */
  margin: 0;
  /* The border when the button is not selected */
  border: #e4e4e4 1px solid;
  /* Background color */
  background-color: #fff;
  /* Styling text */
  font-size: 0.92857em;
  text-align: center;
  line-height: 26px;
  white-space: nowrap;
  text-transform: uppercase;
  padding: 0;
  color: #333; }

.swatch-element label {
  padding: 0 5px; }

.color.swatch-element label {
  padding: 0; }

/* Styling selected swatch */
/* Slightly raised */
.swatch input:checked + label {
  background: #fff;
  border-color: #252525; }

.swatch .color input:checked + label {
  position: relative; }
  .swatch .color input:checked + label:after {
    content: "\f00c";
    font-family: FontAwesome; }

.swatch .swatch-element {
  float: left;
  -webkit-transform: translateZ(0);
  /* webkit flicker fix */
  -webkit-font-smoothing: antialiased;
  /* webkit text rendering fix */
  /* Spacing between buttons */
  margin: 0px 10px 10px 0;
  /* To position the sold out graphic and tooltip */
  position: relative; }
  .swatch .swatch-element.color .tim {
    background-color: #db23b6; }
  .swatch .swatch-element.color .xanh {
    background-color: #0554ff; }
  .swatch .swatch-element.color .vang {
    background-color: #e6fa0a; }
  .swatch .swatch-element.color .den {
    background-color: #000000; }
  .swatch .swatch-element.color .do {
    background-color: #f20808; }
  .swatch .swatch-element.color .cam {
    background-color: #fc9905; }
  .swatch .swatch-element.color .xam {
    background-color: #615a5a; }
  .swatch .swatch-element.color .xanh-nuoc-bien {
    background-color: #3a40fa; }
  .swatch .swatch-element.color .xanh-la-cay {
    background-color: #00ff15; }
  .swatch .swatch-element.color .hong {
    background-color: #ff00d5; }

/* Image with the cross in it */
.crossed-out {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: none; }

#quick-view-product .selector-wrapper {
  display: none !important; }

.swatch .swatch-element .crossed-out {
  display: none; }

.swatch .swatch-element.soldout .crossed-out {
  display: none; }

.swatch .swatch-element.soldout label {
  filter: alpha(opacity=60);
  /* internet explorer */
  -khtml-opacity: 1;
  /* khtml, old safari */
  -moz-opacity: 1;
  /* mozilla, netscape */
  opacity: 1;
  /* fx, safari, opera */ }

.swatch .tooltip {
  text-align: center;
  background: gray;
  color: #fff;
  bottom: 100%;
  padding: 10px;
  display: block;
  position: absolute;
  width: 100px;
  left: -35px;
  margin-bottom: 15px;
  /* Make it invisible by default */
  filter: alpha(opacity=0);
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  visibility: hidden;
  /* Animations */
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -ms-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  z-index: 10000;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  .swatch .tooltip:before {
    bottom: -20px;
    content: " ";
    display: block;
    height: 20px;
    left: 0;
    position: absolute;
    width: 100%; }
  .swatch .tooltip:after {
    border-left: solid transparent 10px;
    border-right: solid transparent 10px;
    border-top: solid gray 10px;
    bottom: -10px;
    content: " ";
    height: 0;
    left: 50%;
    margin-left: -13px;
    position: absolute;
    width: 0; }

.swatch .swatch-element:hover .tooltip {
  filter: alpha(opacity=100);
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px); }

.swatch.error {
  background-color: #E8D2D2 !important;
  color: #333 !important;
  padding: 1em;
  border-radius: 5px; }
  .swatch.error p {
    margin: 0.7em 0; }
    .swatch.error p:first-child {
      margin-top: 0; }
    .swatch.error p:last-child {
      margin-bottom: 0; }
  .swatch.error code {
    font-family: monospace; }

/*============================================================================
9. CUSTOM OWL CAROUSEL
==============================================================================*/
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
  top: 50%;
  position: absolute;
  text-decoration: none;
  width: 45px;
  height: 45px;
  margin-top: -22px;
  padding: 0;
  background: transparent;
  outline: none;
  text-indent: 1010%;
  border-radius: 0;
  white-space: nowrap;
  margin-right: 0;
  margin-left: 0;
  border: 1px solid #ebebeb;
  color: #ebebeb; }
  .owl-carousel .owl-nav .owl-prev:hover,
  .owl-carousel .owl-nav .owl-next:hover {
    border-color: #602023;
    color: #602023;
    background: transparent; }

.owl-carousel .owl-nav .owl-prev:before,
.owl-carousel .owl-nav .owl-next:before {
  font-family: "FontAwesome";
  text-indent: 0;
  position: absolute;
  left: 0;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 44px;
  font-size: 20px;
  background: transparent; }

.owl-carousel .owl-nav .owl-prev {
  left: 0; }

.owl-carousel .owl-nav .owl-prev:before {
  content: "\f104"; }

.owl-carousel .owl-nav .owl-next {
  right: 0; }

.owl-carousel .owl-nav .owl-next:before {
  content: "\f105"; }

.owl-carousel .owl-nav .disabled {
  opacity: 1;
  cursor: no-drop; }

.top-right-owl-nav.owl-carousel .owl-nav .owl-next {
  top: -70px;
  margin: 0; }

.top-right-owl-nav.owl-carousel .owl-nav .owl-prev {
  left: auto;
  right: 44px;
  top: -70px;
  margin: 0; }
  .top-right-owl-nav.owl-carousel .owl-nav .owl-prev:hover {
    z-index: 100; }

@media (max-width: 768px) {
  .owl-carousel .owl-nav .owl-prev:before,
  .owl-carousel .owl-nav .owl-next:before {
    font-size: 14px; }
  .owl-carousel .owl-nav .owl-prev {
    left: 0; }
  .owl-carousel .owl-nav .owl-next {
    right: 0; } }

.owl-carousel .owl-dots {
  display: block;
  margin-top: 10px;
  text-align: center;
  position: absolute;
  bottom: 10px;
  width: 100%; }

.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: #fff;
  border-radius: 50%;
  margin: 0 3px; }

.owl-carousel .owl-dots .owl-dot.active {
  background: #602023; }

.owl-carousel-inset .owl-nav .owl-prev {
  left: 0; }

.owl-carousel-inset .owl-nav .owl-next {
  right: 0; }

.owl-carousel-inset .owl-dots {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 25px; }

.owl-carousel-inset .owl-prev,
.owl-carousel-inset .owl-next {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease; }

.owl-carousel-inset:hover .owl-prev,
.owl-carousel-inset:hover .owl-next {
  opacity: 1;
  visibility: visible; }

.owl-carousel-inset:hover .owl-prev.disabled,
.owl-carousel-inset:hover .owl-next.disabled {
  opacity: .5; }

.owl-carousel-inset:hover .owl-nav .owl-prev {
  left: 25px; }

.owl-carousel-inset:hover .owl-nav .owl-next {
  right: 25px; }

.owl-carousel .owl-item img {
  width: auto; }

.owl-carousel .owl-item.focus {
  border: 2px solid #333; }

/********************************************************
10. TABS
********************************************************/
.tab-wrap .tabs-title {
  *zoom: 1;
  display: inline-block;
  position: relative;
  z-index: 9;
  margin: 0 0 26px; }
  .tab-wrap .tabs-title:after {
    content: "";
    display: table;
    clear: both; }
  .tab-wrap .tabs-title li {
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    line-height: 40px;
    float: left; }
    .tab-wrap .tabs-title li:before {
      content: "|";
      color: #c9c9c9;
      padding: 0 16px;
      color: #1c1c1c; }
    .tab-wrap .tabs-title li:first-child:before {
      display: none; }
    .tab-wrap .tabs-title li.current {
      color: #212121; }

.tab-wrap .tab-content {
  position: relative; }

ul.tabs li {
  background: none;
  display: inline-block;
  cursor: pointer; }
  ul.tabs li.current {
    color: #000; }

.tab-content {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden; }
  .tab-content.current {
    opacity: 1;
    visibility: visible;
    height: auto;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out; }

/********************************************************
11. ACCORDION
********************************************************/
.accordion .nav-item .tab-pane {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden; }

.accordion .nav-item.active .tab-pane {
  opacity: 1;
  visibility: visible;
  height: auto;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out; }

/*============================================================================
12. QUICKVIEW
==============================================================================*/
#quickview button.btn.btn-close.btn-default {
  position: absolute;
  right: -20px;
  top: -20px;
  width: 40px;
  font-size: 20px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  padding: 0; }

#quickview .modal-body {
  position: relative;
  padding: 30px; }

#quickview .modal-dialog {
  width: 910px;
  border-radius: 0; }

#quickview .status {
  font-size: 1.07143em;
  margin-bottom: 30px;
  font-weight: 400; }

#quickview .inventory {
  display: inline-block;
  line-height: 24px;
  padding: 0 10px;
  color: #fff;
  background: #602023; }

#quickview .selector-wrapper select {
  height: 40px; }

#quickview .info-other {
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ebebeb; }
  #quickview .info-other p {
    margin-bottom: 0; }

#quickview span.discount {
  color: #602023; }

#quickview .product-price {
  font-size: 2.14286em;
  display: inline-block; }

#quickview .price-box {
  margin: 10px 0 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ebebeb; }
  #quickview .price-box .special-price span {
    color: #602023; }
  #quickview .price-box .old-price {
    display: block;
    color: #adadad;
    font-size: 1.07143em;
    margin-top: 7px;
    margin-top: 7px;
    clear: left; }

#quickview .product-description.rte {
  padding-bottom: 15px; }

#quickview #thumbnail_quickview {
  opacity: 0;
  visibility: hidden;
  height: 0; }
  #quickview #thumbnail_quickview.op1 {
    opacity: 1;
    visibility: visible;
    height: auto; }
  #quickview #thumbnail_quickview .item {
    border: 1px solid #ebebeb; }

#quickview .image {
  border: 1px solid #ebebeb; }

#quickview .rte img {
  display: none; }

#quickview .quantity_wanted_p {
  margin-top: 15px; }
  #quickview .quantity_wanted_p label {
    display: inline-block;
    line-height: 45px; }
  #quickview .quantity_wanted_p input {
    margin: 0 5px;
    height: 40px;
    padding: 0;
    width: 40px;
    display: inline-block;
    border-radius: 3px; }
  #quickview .quantity_wanted_p .btn, #quickview .quantity_wanted_p input[type="submit"] {
    font-size: 20px;
    padding: 0 45px;
    border-radius: 3px;
    display: inline-block;
    transform: translateY(-1px);
    -webkit-transform: translateY(-1px);
    -moz-transform: translateY(-1px); }

#quickview .swatch {
  display: none; }

#quickview .hasswatch .swatch {
  display: block; }

#quickview .hasswatch .selector-wrapper {
  display: none; }

/*============================================================================
13. FILTER
==============================================================================*/
.filter-container {
  margin-bottom: 30px; }

.filter-group {
  margin-bottom: 20px; }
  .filter-group ul {
    max-height: 140px;
    overflow-y: auto; }
    .filter-group ul::-webkit-scrollbar-track {
      -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.3);
      -moz-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.3);
      border-radius: 10px;
      background-color: #F5F5F5; }
    .filter-group ul::-webkit-scrollbar {
      width: 8px;
      background-color: #F5F5F5; }
    .filter-group ul::-webkit-scrollbar-thumb {
      border-radius: 10px;
      -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
      -moz-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
      background-color: #333333; }

.filter-group-title {
  display: block;
  font-size: 1.28571em;
  margin-bottom: 10px; }

.filter-item {
  margin: 0;
  cursor: pointer;
  line-height: 2.5em;
  min-width: 50%;
  float: left;
  padding-right: 8px; }
  .filter-item * {
    color: #6f6f6f;
    cursor: pointer;
    font-size: 15px;
    font-weight: normal; }
  .filter-item.color {
    min-width: 20px; }
    .filter-item.color a, .filter-item.color label {
      width: 100%;
      height: 100%;
      display: inline-block;
      font-size: 0; }
    .filter-item.color .fa {
      width: 20px;
      height: 20px;
      background: #fff;
      position: relative; }
      .filter-item.color .fa:before {
        display: none; }
      .filter-item.color .fa:hover {
        border: 1px solid #333333; }
    .filter-item.color input:checked + .fa {
      border: 1px solid #333333; }

.filter-item--green *:hover {
  color: #602023; }

.filter-item--half {
  display: inline-block;
  width: 48%;
  white-space: nowrap;
  overflow: hidden;
  margin-right: 3px; }

.filter-item--check-box input {
  display: none; }

.filter-item--check-box .fa {
  margin-right: 5px;
  width: 14px; }

.filter-item--check-box input + .fa:before {
  content: "\f096"; }

.filter-item--check-box input:checked + .fa:before {
  content: "\f14a";
  color: #602023; }

#sort-by {
  float: right;
  font-size: 14px;
  text-align: left; }
  #sort-by .button-asc, #sort-by .button-desc {
    background-color: #f8f8f8;
    box-shadow: none;
    float: right;
    height: 30px;
    line-height: 28px;
    margin-left: 5px;
    text-align: center;
    width: 30px; }
  #sort-by label {
    float: left;
    font-weight: 400;
    line-height: 33px;
    font-size: 14px;
    margin-right: 6px;
    margin-bottom: 0; }
  #sort-by ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline;
    float: right; }
  #sort-by a:link, #sort-by a:visited {
    color: #333;
    text-decoration: none; }
  #sort-by > ul > li {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-position: right center;
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 28px;
    text-indent: .01px;
    cursor: pointer;
    line-height: 30px;
    background-image: url(//theme.hstatic.net/200000525899/1001103657/14/ico-select.png?v=427) !important; }
    #sort-by > ul > li:hover {
      border-bottom-right-radius: 0;
      border-bottom-left-radius: 0; }
  #sort-by li {
    background: none repeat scroll 0 0 #fff;
    cursor: pointer;
    margin: 0 auto;
    outline: medium none;
    padding: 0 20px;
    position: relative;
    width: 170px;
    float: left;
    color: #333;
    border: 1px solid #ebebeb;
    font-size: 14px; }
    #sort-by li > a {
      display: inline-block;
      width: 100%;
      line-height: 36px;
      transition: all 0s ease-in-out; }
      #sort-by li > a:hover {
        color: #602023; }
    #sort-by li li {
      width: 100%;
      margin-top: 0px;
      border-top: none;
      border-right: none;
      border-left: none; }
      #sort-by li li a:hover {
        color: #007fb8; }
    #sort-by li:hover {
      background-color: #fff; }
    #sort-by li li:hover {
      background-color: #fff;
      color: #007fb8; }
  #sort-by ul ul {
    position: absolute;
    visibility: hidden;
    width: 170px;
    left: -1px;
    top: 30px;
    background: none repeat scroll 0 0 #F8F8F8;
    z-index: 10000;
    border-top: none;
    border: 1px #F0F0F0 solid;
    overflow: hidden; }
    #sort-by ul ul ul {
      position: absolute;
      left: 100%;
      top: -2px;
      border: solid 1px transparent; }
  #sort-by li:hover > ul {
    visibility: visible; }

.filter-container__selected-filter {
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #eee; }

.filter-container__selected-filter-header {
  margin-bottom: 5px; }

.filter-container__selected-filter-header-title {
  font-size: 18px;
  font-weight: bold;
  color: #0038AE; }

.filter-container__clear-all {
  float: right;
  color: #333;
  margin-top: 3px; }

.filter-container__selected-filter-item {
  padding: 3px 0; }
  .filter-container__selected-filter-item > a {
    color: #333;
    font-size: 0.92857em; }
  .filter-container__selected-filter-item .fa {
    margin-right: 10px;
    color: #F44336; }

/*============================================================================
14. POPUP CART NEW
==============================================================================*/
#popup-cart {
  top: 0 !important; }

#popup-cart-desktop {
  width: 900px;
  background: #fff;
  float: none;
  margin: 0 auto;
  margin-top: 5%;
  padding: 30px;
  position: relative; }
  #popup-cart-desktop .title-popup-cart {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 300;
    padding-right: 30px; }
    #popup-cart-desktop .title-popup-cart i {
      color: #602023; }
  #popup-cart-desktop .title-quantity-popup {
    font-size: 17px;
    margin-bottom: 10px;
    cursor: pointer; }
    #popup-cart-desktop .title-quantity-popup .fa-shopping-cart {
      color: #602023;
      font-size: 25px; }
    #popup-cart-desktop .title-quantity-popup .fa-caret-right {
      font-size: 14px; }
  #popup-cart-desktop .content-popup-cart .thead-popup {
    background: #f7f7f7;
    float: left;
    width: 100%;
    clear: both; }
    #popup-cart-desktop .content-popup-cart .thead-popup > div {
      float: left;
      padding: 6px 10px;
      text-transform: uppercase;
      font-size: 13px;
      border: 1px solid #e1e1e1;
      border-left: none; }
      #popup-cart-desktop .content-popup-cart .thead-popup > div:first-child {
        border-left: 1px solid #e1e1e1; }
  #popup-cart-desktop .content-popup-cart .tbody-popup {
    width: 100%;
    float: left;
    clear: both;
    max-height: 280px;
    overflow-x: auto;
    border: 1px solid #ddd;
    border-top: none; }
    #popup-cart-desktop .content-popup-cart .tbody-popup .item-popup {
      width: 100%;
      float: left;
      clear: both;
      border-bottom: 1px dotted #ddd; }
      #popup-cart-desktop .content-popup-cart .tbody-popup .item-popup:last-child {
        border-bottom: none; }
      #popup-cart-desktop .content-popup-cart .tbody-popup .item-popup > div {
        float: left; }
      #popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .item-image {
        padding: 10px;
        float: left; }
        #popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .item-image img {
          border: 1px solid #d2d2d2; }
      #popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .item-name {
        margin-bottom: 0; }
      #popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .add_sus i {
        color: #602023 !important; }
      #popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .item-remove {
        margin-bottom: 0; }
      #popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .item-info {
        padding: 10px 0; }
        #popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .item-info .item-name a {
          display: block;
          margin-bottom: 5px;
          font-weight: bold; }
          #popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .item-info .item-name a:hover {
            color: #602023; }
        #popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .item-info .variant-title-popup {
          font-size: 13px;
          margin-bottom: 5px;
          color: #333333; }
        #popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .item-info .item-remove a {
          font-size: 13px;
          color: #888; }
      #popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .item-price {
        padding: 10px; }
        #popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .item-price span {
          display: block; }
        #popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .item-price .price {
          color: #602023;
          font-size: 14px;
          font-weight: 700; }
        #popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .item-price .compare-price {
          color: #602023;
          font-size: 14px;
          text-decoration: line-through;
          font-weight: 700; }
        #popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .item-price .compare-divide {
          font-size: 12px;
          color: #d71515; }
      #popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .items-count {
        border: 1px solid #ddd;
        outline: none;
        background: #fff;
        height: 24px;
        margin-top: 10px;
        width: 23px;
        text-align: center;
        vertical-align: top;
        padding: 0; }
      #popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .number-sidebar {
        border: 1px solid #ddd;
        height: 24px;
        margin-left: -1px;
        text-align: center;
        width: 24px;
        vertical-align: top;
        margin-right: -1px;
        margin-top: 10px;
        display: inline-block;
        min-height: 24px;
        padding: 0; }
      #popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .cart-price {
        display: block;
        color: #602023;
        font-size: 1em;
        font-weight: 700;
        padding: 10px; }
  #popup-cart-desktop .content-popup-cart .tfoot-popup {
    width: 100%;
    float: left;
    clear: both; }
    #popup-cart-desktop .content-popup-cart .tfoot-popup .tfoot-popup-1 {
      padding: 10px 0; }
      #popup-cart-desktop .content-popup-cart .tfoot-popup .tfoot-popup-1 .popup-ship {
        font-size: 13px;
        width: 320px; }
        #popup-cart-desktop .content-popup-cart .tfoot-popup .tfoot-popup-1 .popup-ship img {
          float: left;
          margin-right: 10px; }
        #popup-cart-desktop .content-popup-cart .tfoot-popup .tfoot-popup-1 .popup-ship p {
          line-height: 20px; }
      #popup-cart-desktop .content-popup-cart .tfoot-popup .tfoot-popup-1 .popup-total p {
        font-size: 15px;
        font-weight: 400;
        padding-bottom: 0; }
        #popup-cart-desktop .content-popup-cart .tfoot-popup .tfoot-popup-1 .popup-total p .total-price {
          color: #602023;
          font-weight: 700; }
    #popup-cart-desktop .content-popup-cart .tfoot-popup .tfoot-popup-2 a {
      cursor: pointer; }
    #popup-cart-desktop .content-popup-cart .tfoot-popup .tfoot-popup-2 .button.btn-continue {
      margin: 10px;
      background: transparent;
      font-size: 13px;
      float: left;
      border: none;
      outline: none;
      color: #602023;
      margin-left: 0;
      position: relative;
      margin-top: -20px; }
    #popup-cart-desktop .content-popup-cart .tfoot-popup .tfoot-popup-2 .button.btn-proceed-checkout {
      background: #602023;
      font-size: 15px;
      float: right;
      display: block;
      padding: 6px 10px;
      color: #fff;
      margin-bottom: 10px; }

.fancybox-skin {
  background: #fff !important; }

.modal-content {
  border: none;
  box-shadow: none;
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  outline: 0; }

.modal-header {
  background-color: #602023;
  color: #fff;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857143px; }

.modal-body {
  position: relative;
  padding: 15px; }

.modal-header .close {
  margin-top: -2px;
  color: #fff;
  opacity: 1; }

.product-new-price {
  color: #602023; }

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none; }

.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20); }

.modal-header .modal-title {
  padding-left: 6rem;
  position: relative;
  min-height: 44px;
  font-weight: normal;
  font-size: 18px;
  line-height: normal;
  margin: 0;
  color: #fff; }
  .modal-header .modal-title span {
    width: 44px;
    height: 44px;
    border-radius: 100%;
    font-size: 23px;
    text-align: center;
    line-height: 44px;
    color: #602023;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    background-color: #fff; }

.media:first-child {
  margin-top: 0; }

.btn-outline-red {
  background: #fff;
  color: #602023 !important;
  font-size: 17px;
  line-height: normal;
  padding: 10px 15px;
  border: 1px solid #602023;
  text-align: center;
  margin-top: 1.5rem; }

.btn-red {
  background: #602023;
  color: #fff !important;
  font-size: 17px;
  line-height: normal;
  padding: 10px 15px;
  border: none;
  text-align: center;
  margin-top: 1.5rem; }

.media .media-left {
  padding-right: 1rem; }

.media-left, .media-right, .media-body {
  display: table-cell;
  vertical-align: top; }

.media .thumb-1x1 {
  width: 7.7rem; }

/*============================================================================
15. CSS FOR CONFIG
==============================================================================*/
body {
  background: #ffffff; }

/*Home page*/
.awe-section-1 {
  margin-bottom: 0; }

.awe-section-2 {
  margin-bottom: 30px; }

.awe-section-3 {
  margin-bottom: 0; }

.awe-section-4 {
  margin-bottom: 50px; }

.awe-section-5 {
  margin-bottom: 50px; }

.awe-section-6 {
  margin-bottom: 45px; }

.awe-section-7 {
  margin-bottom: 10px; }

.awe-section-8 {
  margin-bottom: 50px; }

.awe-section-9 {
  margin-bottom: 30px; }

.awe-section-10 {
  margin-bottom: 30px; }

/*	################################################################
NOTE:

Trong base viết sẵn một số css chung cho theme + css cho một số chức năng trong theme.
Hiện tại thì hầu hết những chức năng này sẽ luôn có trong theme(một số chức năng thì có bật tắt).
Mọi người lúc triển khai nếu khách không dùng một số chức năng nào thì có thể vào xóa css cho nhẹ.
Có vấn đề gì thắc mắc hoặc có điều gì chưa hợp lý, mọi người có thể hỏi hoặc góp ý cho mình.

################################################################# */
/*-----------------------------------------------------------------------------
-	Revolution Slider 4.1 Captions -
*/
.tp-static-layers {
  position: absolute;
  z-index: 505;
  top: 0;
  left: 0; }

.tp-caption.tp-hidden-caption, .tp-hide-revslider {
  visibility: hidden !important;
  display: none !important; }

.tp-caption {
  z-index: 1;
  white-space: nowrap; }

.tp-caption-demo .tp-caption {
  position: relative !important;
  display: inline-block;
  margin-bottom: 10px;
  margin-right: 20px !important; }

.tp-caption.whitedivider3px {
  background-position: initial initial;
  background-repeat: initial initial; }

.tp-caption.whitedivider3px {
  color: #000;
  text-shadow: none;
  background-color: #fff;
  background-color: white;
  text-decoration: none;
  font-size: 0;
  line-height: 0;
  min-width: 468px;
  min-height: 3px;
  border-width: 0;
  border-color: #000;
  border-style: none; }

.tp-caption.boldwide_small_white {
  font-size: 25px;
  line-height: 25px;
  font-weight: 800;
  font-family: "Open Sans",sans-serif;
  color: #fff;
  text-decoration: none;
  background-color: transparent;
  text-shadow: none;
  text-transform: uppercase;
  letter-spacing: 5px;
  border-width: 0;
  border-color: #000;
  border-style: none; }

.tp-caption.whitedivider3px_vertical {
  color: #000;
  text-shadow: none;
  background-color: #fff;
  background-color: white;
  text-decoration: none;
  font-size: 0;
  line-height: 0;
  min-width: 3px;
  min-height: 130px;
  border-width: 0;
  border-color: #000;
  border-style: none; }

.tp-caption.finewide_small_white {
  color: #fff;
  text-shadow: none;
  font-size: 25px;
  line-height: 25px;
  font-weight: 300;
  font-family: "Open Sans",sans-serif;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 5px;
  border-width: 0;
  border-color: #000;
  border-style: none; }

.tp-caption.finewide_verysmall_white_mw {
  font-size: 13px;
  line-height: 25px;
  font-weight: 400;
  font-family: "Open Sans",sans-serif;
  color: #fff;
  text-decoration: none;
  background-color: transparent;
  text-shadow: none;
  text-transform: uppercase;
  letter-spacing: 5px;
  max-width: 470px;
  white-space: normal !important;
  border-width: 0;
  border-color: #000;
  border-style: none; }

.tp-caption.lightgrey_divider {
  background-color: #ebebeb; }

.tp-caption.finewide_large_white {
  color: #FFF;
  text-shadow: none;
  font-size: 60px;
  line-height: 60px;
  font-weight: 300;
  font-family: "Open Sans",sans-serif;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 8px;
  border-width: 0;
  border-color: #000;
  border-style: none; }

.tp-caption.finewide_medium_white {
  color: #FFF;
  text-shadow: none;
  font-size: 34px;
  line-height: 34px;
  font-weight: 300;
  font-family: "Open Sans",sans-serif;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 5px;
  border-width: 0;
  border-color: #000;
  border-style: none; }

.tp-caption.huge_red {
  position: absolute;
  color: #df4b6b;
  font-weight: 400;
  font-size: 150px;
  line-height: 130px;
  font-family: Oswald,sans-serif;
  margin: 0;
  border-width: 0;
  border-style: none;
  white-space: nowrap;
  background-color: #2d3136;
  padding: 0; }

.tp-caption.middle_yellow {
  position: absolute;
  color: #fbd572;
  font-weight: 600;
  font-size: 50px;
  line-height: 50px;
  font-family: 'Open Sans',sans-serif;
  margin: 0;
  border-width: 0;
  border-style: none;
  white-space: nowrap; }

.tp-caption.huge_thin_yellow {
  position: absolute;
  color: #fbd572;
  font-weight: 300;
  font-size: 90px;
  line-height: 90px;
  font-family: 'Open Sans',sans-serif;
  margin: 0;
  letter-spacing: 20px;
  border-width: 0;
  border-style: none;
  white-space: nowrap; }

.tp-caption.big_dark {
  position: absolute;
  color: #333;
  font-weight: 700;
  font-size: 70px;
  line-height: 70px;
  font-family: "Open Sans";
  margin: 0;
  border-width: 0;
  border-style: none;
  white-space: nowrap; }

.tp-caption.medium_dark {
  position: absolute;
  color: #333;
  font-weight: 300;
  font-size: 40px;
  line-height: 40px;
  font-family: "Open Sans";
  margin: 0;
  letter-spacing: 5px;
  border-width: 0;
  border-style: none;
  white-space: nowrap; }

.tp-caption.large_bold_white_25 {
  font-size: 55px;
  line-height: 65px;
  font-weight: 700;
  font-family: "Open Sans";
  color: #fff;
  text-decoration: none;
  background-color: transparent;
  text-align: center;
  text-shadow: #000 0 5px 10px;
  border-width: 0;
  border-color: #fff;
  border-style: none; }

.tp-caption.medium_text_shadow {
  font-size: 25px;
  line-height: 25px;
  font-weight: 600;
  font-family: "Open Sans";
  color: #fff;
  text-decoration: none;
  background-color: transparent;
  text-align: center;
  text-shadow: #000 0 5px 10px;
  border-width: 0;
  border-color: #fff;
  border-style: none; }

.tp-caption.medium_bold_grey {
  font-size: 30px;
  line-height: 30px;
  font-weight: 800;
  font-family: "Open Sans";
  color: #666;
  text-decoration: none;
  background-color: transparent;
  text-shadow: none;
  margin: 0;
  padding: 1px 4px 0;
  border-width: 0;
  border-color: #ffd658;
  border-style: none; }

.tp-caption a {
  color: #ff7302;
  text-shadow: none;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  -ms-transition: all .2s ease-out; }

.tp-caption a:hover {
  color: #ffa902; }

.tp-caption.medium_bg_red a {
  color: #fff;
  text-decoration: none; }

.tp-caption.medium_bg_red a:hover {
  color: #fff;
  text-decoration: underline; }

.tp-caption.smoothcircle {
  font-size: 30px;
  line-height: 75px;
  font-weight: 800;
  font-family: "Open Sans";
  color: #fff;
  text-decoration: none;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.498039);
  padding: 50px 25px;
  text-align: center;
  border-radius: 500px;
  border-width: 0;
  border-color: #000;
  border-style: none; }

.tp-caption.largeblackbg {
  text-decoration: none;
  border-width: 0;
  border-color: #fff;
  border-style: none; }

.tp-caption.medium_bg_orange_new1 {
  font-size: 20px;
  line-height: 20px;
  font-weight: 800;
  font-family: "Open Sans";
  color: #fff;
  text-decoration: none;
  background-color: #f39c12;
  padding: 10px;
  border-width: 0;
  border-color: #ffd658;
  border-style: none; }

.tp-caption.black {
  font-weight: 300;
  font-size: 19px;
  line-height: 19px;
  font-family: 'Open Sans',sans; }

.tp_inner_padding {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  max-height: none !important; }

.tp-caption .frontcorner {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 0 solid transparent;
  border-top: 40px solid #00A8FF;
  position: absolute;
  left: -40px;
  top: 0; }

.tp-caption .backcorner {
  width: 0;
  height: 0;
  border-left: 0 solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 40px solid #00A8FF;
  position: absolute;
  right: 0;
  top: 0; }

.tp-caption .frontcornertop {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 0 solid transparent;
  border-bottom: 40px solid #00A8FF;
  position: absolute;
  left: -40px;
  top: 0; }

.tp-caption .backcornertop {
  width: 0;
  height: 0;
  border-left: 0 solid transparent;
  border-right: 40px solid transparent;
  border-top: 40px solid #00A8FF;
  position: absolute;
  right: 0;
  top: 0; }

img.tp-slider-alternative-image {
  width: 100%;
  height: auto; }

.tp-simpleresponsive .button {
  padding: 6px 13px 5px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  height: 30px;
  cursor: pointer;
  color: #fff !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.6) !important;
  font-size: 15px;
  line-height: 45px !important;
  background: url(g30.png) top repeat-x;
  font-family: arial,sans-serif;
  font-weight: 700;
  letter-spacing: -1px; }

.tp-simpleresponsive .button.big {
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.6);
  font-weight: 700;
  padding: 9px 20px;
  font-size: 19px;
  line-height: 57px !important;
  background: url(g40.png) top repeat-x; }

.tp-simpleresponsive .button.big:hover, .tp-simpleresponsive .button:hover, .tp-simpleresponsive .purchase:hover {
  background-position: bottom,15px 11px; }

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .tp-simpleresponsive .button {
    padding: 4px 8px 3px;
    line-height: 25px !important;
    font-size: 11px !important;
    font-weight: 400; }
  .tp-simpleresponsive a.button {
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    -ms-transition: none; } }

@media only screen and (min-width: 0px) and (max-width: 479px) {
  .tp-simpleresponsive .button {
    padding: 2px 5px;
    line-height: 20px !important;
    font-size: 10px !important; }
  .tp-simpleresponsive a.button {
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    -ms-transition: none; } }

.tp-simpleresponsive .button.green, .tp-simpleresponsive .button:hover.green, .tp-simpleresponsive .purchase.green, .tp-simpleresponsive .purchase:hover.green {
  background-color: #21a117;
  -webkit-box-shadow: 0 3px 0 0 #104d0b;
  -moz-box-shadow: 0 3px 0 0 #104d0b;
  box-shadow: 0 3px 0 0 #104d0b; }

.tp-simpleresponsive .button.blue, .tp-simpleresponsive .button:hover.blue, .tp-simpleresponsive .purchase.blue, .tp-simpleresponsive .purchase:hover.blue {
  background-color: #1d78cb;
  -webkit-box-shadow: 0 3px 0 0 #0f3e68;
  -moz-box-shadow: 0 3px 0 0 #0f3e68;
  box-shadow: 0 3px 0 0 #0f3e68; }

.tp-simpleresponsive .button.red, .tp-simpleresponsive .button:hover.red, .tp-simpleresponsive .purchase.red, .tp-simpleresponsive .purchase:hover.red {
  background-color: #cb1d1d;
  -webkit-box-shadow: 0 3px 0 0 #7c1212;
  -moz-box-shadow: 0 3px 0 0 #7c1212;
  box-shadow: 0 3px 0 0 #7c1212; }

.tp-simpleresponsive .button.orange, .tp-simpleresponsive .button:hover.orange, .tp-simpleresponsive .purchase.orange, .tp-simpleresponsive .purchase:hover.orange {
  background-color: #f70;
  -webkit-box-shadow: 0 3px 0 0 #a34c00;
  -moz-box-shadow: 0 3px 0 0 #a34c00;
  box-shadow: 0 3px 0 0 #a34c00; }

.tp-simpleresponsive .button.darkgrey, .tp-simpleresponsive .button.grey, .tp-simpleresponsive .button:hover.darkgrey, .tp-simpleresponsive .button:hover.grey, .tp-simpleresponsive .purchase.darkgrey, .tp-simpleresponsive .purchase:hover.darkgrey {
  background-color: #555;
  -webkit-box-shadow: 0 3px 0 0 #222;
  -moz-box-shadow: 0 3px 0 0 #222;
  box-shadow: 0 3px 0 0 #222; }

.tp-simpleresponsive .button.lightgrey, .tp-simpleresponsive .button:hover.lightgrey, .tp-simpleresponsive .purchase.lightgrey, .tp-simpleresponsive .purchase:hover.lightgrey {
  background-color: #888;
  -webkit-box-shadow: 0 3px 0 0 #555;
  -moz-box-shadow: 0 3px 0 0 #555;
  box-shadow: 0 3px 0 0 #555; }

.fullscreen-container {
  width: 100%;
  position: relative;
  padding: 0; }

.fullwidthbanner-container {
  width: 100%;
  position: relative;
  padding: 0;
  overflow: hidden; }

.fullwidthbanner-container .fullwidthbanner {
  width: 100%;
  position: relative; }

.tp-simpleresponsive .caption, .tp-simpleresponsive .tp-caption {
  position: absolute;
  visibility: hidden;
  -webkit-font-smoothing: antialiased !important; }

.tp-simpleresponsive img {
  max-width: none; }

.noFilterClass {
  filter: none !important; }

.tp-bannershadow {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none; }

.tp-bannershadow.tp-shadow1 {
  background: url(shadow1.png) no-repeat;
  background-size: 100% 100%;
  width: 890px;
  height: 60px;
  bottom: -60px; }

.tp-bannershadow.tp-shadow2 {
  background: url(shadow2.png) no-repeat;
  background-size: 100% 100%;
  width: 890px;
  height: 60px;
  bottom: -60px; }

.tp-bannershadow.tp-shadow3 {
  background: url(shadow3.png) no-repeat;
  background-size: 100% 100%;
  width: 890px;
  height: 60px;
  bottom: -60px; }

.caption.fullscreenvideo {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%; }

.caption.fullscreenvideo iframe, .caption.fullscreenvideo video {
  width: 100% !important;
  height: 100% !important;
  display: none; }

.tp-caption.fullscreenvideo {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%; }

.tp-caption.fullscreenvideo iframe, .tp-caption.fullscreenvideo iframe video {
  width: 100% !important;
  height: 100% !important;
  display: none; }

.fullcoveredvideo video, .fullscreenvideo video {
  background: #000; }

.fullcoveredvideo .tp-poster {
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0; }

.html5vid.videoisplaying .tp-poster {
  display: none; }

.tp-video-play-button {
  background: #000;
  background: rgba(0, 0, 0, 0.3);
  padding: 5px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 40px;
  color: #FFF;
  z-index: 3;
  margin-top: -27px;
  margin-left: -28px;
  text-align: center;
  cursor: pointer; }

.html5vid .tp-revstop {
  width: 15px;
  height: 20px;
  border-left: 5px solid #fff;
  border-right: 5px solid #fff;
  position: relative;
  margin: 10px 20px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: none; }

.html5vid.videoisplaying .revicon-right-dir {
  display: none; }

.html5vid.videoisplaying .tp-revstop {
  display: block; }

.html5vid.videoisplaying .tp-video-play-button {
  display: none; }

.html5vid:hover .tp-video-play-button {
  display: block; }

.fullcoveredvideo .tp-video-play-button {
  display: none !important; }

.tp-video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5px;
  opacity: 0;
  -webkit-transition: opacity .3s;
  -moz-transition: opacity .3s;
  -o-transition: opacity .3s;
  -ms-transition: opacity .3s;
  transition: opacity .3s;
  background-image: linear-gradient(bottom, #000 13%, #323232 100%);
  background-image: -o-linear-gradient(bottom, #000 13%, #323232 100%);
  background-image: -moz-linear-gradient(bottom, #000 13%, #323232 100%);
  background-image: -webkit-linear-gradient(bottom, #000 13%, #323232 100%);
  background-image: -ms-linear-gradient(bottom, #000 13%, #323232 100%);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.13, #000), color-stop(1, #323232));
  display: table;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box; }

.tp-caption:hover .tp-video-controls {
  opacity: .9; }

.tp-video-button {
  background: rgba(0, 0, 0, 0.5);
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  cursor: pointer;
  line-height: 12px;
  font-size: 12px;
  color: #fff;
  padding: 0;
  margin: 0;
  outline: 0; }

.tp-video-button:hover {
  cursor: pointer; }

.tp-video-button-wrap, .tp-video-seek-bar-wrap, .tp-video-vol-bar-wrap {
  padding: 0 5px;
  display: table-cell; }

.tp-video-seek-bar-wrap {
  width: 80%; }

.tp-video-vol-bar-wrap {
  width: 20%; }

.tp-seek-bar, .tp-volume-bar {
  width: 100%;
  cursor: pointer;
  outline: 0;
  line-height: 12px;
  margin: 0;
  padding: 0; }

.tp-dottedoverlay {
  background-repeat: repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4; }

.tp-dottedoverlay.twoxtwo {
  background: url(gridtile.png); }

.tp-dottedoverlay.twoxtwowhite {
  background: url(gridtile_white.png); }

.tp-dottedoverlay.threexthree {
  background: url(gridtile_3x3.png); }

.tp-dottedoverlay.threexthreewhite {
  background: url(gridtile_3x3_white.png); }

.tpclear {
  clear: both; }

.tp-bullets {
  z-index: 1000;
  position: absolute;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-transition: opacity .2s ease-out;
  -moz-transition: opacity .2s ease-out;
  -o-transition: opacity .2s ease-out;
  -ms-transition: opacity .2s ease-out;
  -webkit-transform: translateZ(5px); }

.tp-bullets.hidebullets {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0; }

.tp-bullets.simplebullets.navbar {
  border: 1px solid #666;
  border-bottom: 1px solid #444;
  background: url(boxed_bgtile.png);
  height: 40px;
  padding: 0 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px; }

.tp-bullets.simplebullets.navbar-old {
  background: url(navigdots_bgtile.png);
  height: 35px;
  padding: 0 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px; }

.tp-bullets.simplebullets.round .bullet {
  cursor: pointer;
  position: relative;
  background: url(bullet.png) top left;
  width: 20px;
  height: 20px;
  margin-right: 0;
  float: left;
  margin-top: 0;
  margin-left: 3px; }

.tp-bullets.simplebullets.round .bullet.last {
  margin-right: 3px; }

.tp-bullets.simplebullets.round-old .bullet {
  cursor: pointer;
  position: relative;
  background: url(bullets.png) bottom left;
  width: 23px;
  height: 23px;
  margin-right: 0;
  float: left;
  margin-top: 0; }

.tp-bullets.simplebullets.round-old .bullet.last {
  margin-right: 0; }

.tp-bullets.simplebullets.square .bullet {
  cursor: pointer;
  position: relative;
  background: url(bullets2.png) bottom left;
  width: 19px;
  height: 19px;
  margin-right: 0;
  float: left;
  margin-top: 0; }

.tp-bullets.simplebullets.square .bullet.last {
  margin-right: 0; }

.tp-bullets.simplebullets.square-old .bullet {
  cursor: pointer;
  position: relative;
  background: url(bullets2.png) bottom left;
  width: 19px;
  height: 19px;
  margin-right: 0;
  float: left;
  margin-top: 0; }

.tp-bullets.simplebullets.square-old .bullet.last {
  margin-right: 0; }

.tp-bullets.simplebullets.navbar .bullet {
  cursor: pointer;
  position: relative;
  background: url(bullet_boxed.png) top left;
  width: 18px;
  height: 19px;
  margin-right: 5px;
  float: left;
  margin-top: 0; }

.tp-bullets.simplebullets.navbar .bullet.first {
  margin-left: 0 !important; }

.tp-bullets.simplebullets.navbar .bullet.last {
  margin-right: 0 !important; }

.tp-bullets.simplebullets.navbar-old .bullet {
  cursor: pointer;
  position: relative;
  background: url(navigdots.png) bottom left;
  width: 15px;
  height: 15px;
  margin-left: 5px !important;
  margin-right: 5px !important;
  float: left;
  margin-top: 10px; }

.tp-bullets.simplebullets.navbar-old .bullet.first {
  margin-left: 0 !important; }

.tp-bullets.simplebullets.navbar-old .bullet.last {
  margin-right: 0 !important; }

.tp-bullets.simplebullets .bullet.selected, .tp-bullets.simplebullets .bullet:hover {
  background-position: top left; }

.tp-bullets.simplebullets.navbar .bullet.selected, .tp-bullets.simplebullets.navbar .bullet:hover, .tp-bullets.simplebullets.round .bullet.selected, .tp-bullets.simplebullets.round .bullet:hover {
  background-position: bottom left; }

.tparrows {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-transition: opacity .2s ease-out;
  -moz-transition: opacity .2s ease-out;
  -o-transition: opacity .2s ease-out;
  -ms-transition: opacity .2s ease-out;
  -webkit-transform: translateZ(5000px);
  -webkit-transform-style: flat;
  -webkit-backface-visibility: hidden;
  z-index: 600;
  position: relative; }

.tparrows.hidearrows {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0; }

.tp-leftarrow {
  z-index: 100;
  cursor: pointer;
  position: relative;
  background: url(large_left.png) top left;
  width: 40px;
  height: 40px; }

.tp-rightarrow {
  z-index: 100;
  cursor: pointer;
  position: relative;
  background: url(large_right.png) top left;
  width: 40px;
  height: 40px; }

.tp-leftarrow.round {
  z-index: 100;
  cursor: pointer;
  position: relative;
  background: url(small_left.png) top left;
  width: 19px;
  height: 14px;
  margin-right: 0;
  float: left;
  margin-top: 0; }

.tp-rightarrow.round {
  z-index: 100;
  cursor: pointer;
  position: relative;
  background: url(small_right.png) top left;
  width: 19px;
  height: 14px;
  margin-right: 0;
  float: left;
  margin-top: 0; }

.tp-leftarrow.round-old {
  z-index: 100;
  cursor: pointer;
  position: relative;
  background: url(arrow_left.png) top left;
  width: 26px;
  height: 26px;
  margin-right: 0;
  float: left;
  margin-top: 0; }

.tp-rightarrow.round-old {
  z-index: 100;
  cursor: pointer;
  position: relative;
  background: url(arrow_right.png) top left;
  width: 26px;
  height: 26px;
  margin-right: 0;
  float: left;
  margin-top: 0; }

.tp-leftarrow.navbar {
  z-index: 100;
  cursor: pointer;
  position: relative;
  background: url(small_left_boxed.png) top left;
  width: 20px;
  height: 15px;
  float: left;
  margin-right: 6px;
  margin-top: 12px; }

.tp-rightarrow.navbar {
  z-index: 100;
  cursor: pointer;
  position: relative;
  background: url(small_right_boxed.png) top left;
  width: 20px;
  height: 15px;
  float: left;
  margin-left: 6px;
  margin-top: 12px; }

.tp-leftarrow.navbar-old {
  z-index: 100;
  cursor: pointer;
  position: relative;
  background: url(arrowleft.png) top left;
  width: 9px;
  height: 16px;
  float: left;
  margin-right: 6px;
  margin-top: 10px; }

.tp-rightarrow.navbar-old {
  z-index: 100;
  cursor: pointer;
  position: relative;
  background: url(arrowright.png) top left;
  width: 9px;
  height: 16px;
  float: left;
  margin-left: 6px;
  margin-top: 10px; }

.tp-leftarrow.navbar-old.thumbswitharrow {
  margin-right: 10px; }

.tp-rightarrow.navbar-old.thumbswitharrow {
  margin-left: 0; }

.tp-leftarrow.square {
  z-index: 100;
  cursor: pointer;
  position: relative;
  background: url(arrow_left2.png) top left;
  width: 12px;
  height: 17px;
  float: left;
  margin-right: 0;
  margin-top: 0; }

.tp-rightarrow.square {
  z-index: 100;
  cursor: pointer;
  position: relative;
  background: url(arrow_right2.png) top left;
  width: 12px;
  height: 17px;
  float: left;
  margin-left: 0;
  margin-top: 0; }

.tp-leftarrow.square-old {
  z-index: 100;
  cursor: pointer;
  position: relative;
  background: url(arrow_left2.png) top left;
  width: 12px;
  height: 17px;
  float: left;
  margin-right: 0;
  margin-top: 0; }

.tp-rightarrow.square-old {
  z-index: 100;
  cursor: pointer;
  position: relative;
  background: url(arrow_right2.png) top left;
  width: 12px;
  height: 17px;
  float: left;
  margin-left: 0;
  margin-top: 0; }

.tp-leftarrow.default {
  z-index: 100;
  cursor: pointer;
  position: relative;
  background: url(large_left.png);
  width: 40px;
  height: 40px; }

.tp-rightarrow.default {
  z-index: 100;
  cursor: pointer;
  position: relative;
  background: url(large_right.png);
  width: 40px;
  height: 40px; }

.tp-leftarrow:hover, .tp-rightarrow:hover {
  background-position: bottom left; }

.tp-bullets.tp-thumbs {
  z-index: 1000;
  position: absolute;
  padding: 3px;
  background-color: #fff;
  width: 500px;
  height: 50px;
  margin-top: -50px; }

.fullwidthbanner-container .tp-thumbs {
  padding: 3px; }

.tp-bullets.tp-thumbs .tp-mask {
  width: 500px;
  height: 50px;
  overflow: hidden;
  position: relative; }

.tp-bullets.tp-thumbs .tp-mask .tp-thumbcontainer {
  width: 5000px;
  position: absolute; }

.tp-bullets.tp-thumbs .bullet {
  width: 100px;
  height: 50px;
  cursor: pointer;
  overflow: hidden;
  background: 0 0;
  margin: 0;
  float: left;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  -moz-opacity: .5;
  -khtml-opacity: .5;
  opacity: .5;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  -ms-transition: all .2s ease-out; }

.tp-bullets.tp-thumbs .bullet.selected, .tp-bullets.tp-thumbs .bullet:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.tp-thumbs img {
  width: 100%; }

.tp-bannertimer {
  width: 100%;
  height: 10px;
  position: absolute;
  z-index: 200;
  top: 0; }

.tp-bannertimer.tp-bottom {
  bottom: 0;
  height: 5px;
  top: auto; }

@media only screen and (min-width: 0px) and (max-width: 479px) {
  .responsive .tp-bullets, .responsive .tparrows {
    display: none; } }

.tp-simpleresponsive img {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none; }

.tp-simpleresponsive a {
  text-decoration: none; }

.tp-simpleresponsive ul, .tp-simpleresponsive ul li, .tp-simpleresponsive ul li:before {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
  overflow-x: visible;
  overflow-y: visible;
  background-image: none; }

.tp-simpleresponsive > ul > li {
  list-style: none;
  position: absolute;
  visibility: hidden; }

.caption.slidelink a div, .tp-caption.slidelink a div {
  width: 3000px;
  height: 1500px;
  background: url(coloredbg.png); }

.tp-caption.slidelink a span {
  background: url(coloredbg.png); }

.tparrows .tp-arr-imgholder, .tparrows .tp-arr-titleholder {
  display: none; }

.tparrows.preview1 {
  width: 100px;
  height: 100px;
  -webkit-transform-style: preserve-3d;
  -webkit-perspective: 1000;
  -moz-perspective: 1000;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  background: 0 0; }

.tparrows.preview1:after {
  position: absolute;
  left: 0;
  top: 0;
  font-family: revicons;
  color: #fff;
  font-size: 30px;
  width: 100px;
  height: 100px;
  text-align: center;
  background: #fff;
  background: rgba(0, 0, 0, 0.15);
  z-index: 2;
  line-height: 100px;
  -webkit-transition: background .3s,color .3s;
  -moz-transition: background .3s,color .3s;
  transition: background .3s,color .3s; }

.tp-rightarrow.preview1:after {
  content: '\e825'; }

.tp-leftarrow.preview1:after {
  content: '\e824'; }

.tparrows.preview1:hover:after {
  background: white;
  color: #aaa; }

.tparrows.preview1 .tp-arr-imgholder {
  background-size: cover;
  background-position: center center;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  -webkit-transition: -webkit-transform .3s;
  transition: transform .3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.tparrows.preview1 .tp-arr-iwrapper {
  -webkit-transition: all .3s;
  transition: all .3s;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0; }

.tparrows.preview1:hover .tp-arr-iwrapper {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.tp-rightarrow.preview1 .tp-arr-imgholder {
  right: 100%;
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0; }

.tp-leftarrow.preview1 .tp-arr-imgholder {
  left: 100%;
  -webkit-transform: rotateY(90deg);
  transform: rotateY(90deg);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0; }

.tparrows.preview1:hover .tp-arr-imgholder {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

@media only screen and (min-width: 768px) and (max-width: 979px) {
  .tparrows.preview1, .tparrows.preview1:after {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 24px; } }

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .tparrows.preview1, .tparrows.preview1:after {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 20px; } }

@media only screen and (min-width: 0px) and (max-width: 479px) {
  .tparrows.preview1, .tparrows.preview1:after {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 12px; } }

.tp-bullets.preview1 {
  height: 21px; }

.tp-bullets.preview1 .bullet {
  cursor: pointer;
  position: relative !important;
  background: rgba(0, 0, 0, 0.15) !important;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  width: 5px !important;
  height: 5px !important;
  border: 8px solid transparent !important;
  display: inline-block;
  margin-right: 5px !important;
  margin-bottom: 0 !important;
  -webkit-transition: background-color .2s,border-color .2s;
  -moz-transition: background-color .2s,border-color .2s;
  -o-transition: background-color .2s,border-color .2s;
  -ms-transition: background-color .2s,border-color .2s;
  transition: background-color .2s,border-color .2s;
  float: none !important;
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; }

.tp-bullets.preview1 .bullet.last {
  margin-right: 0; }

.tp-bullets.preview1 .bullet.selected, .tp-bullets.preview1 .bullet:hover {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: #aaa !important;
  width: 5px !important;
  height: 5px !important;
  border: 8px solid white !important; }

.tparrows.preview2 {
  min-width: 60px;
  min-height: 60px;
  background: #fff;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 1.3s;
  -webkit-transition: width .3s,background-color .3s,opacity .3s;
  transition: width .3s,background-color .3s,opacity .3s;
  backface-visibility: hidden; }

.tparrows.preview2:after {
  position: absolute;
  top: 50%;
  font-family: revicons;
  color: #aaa;
  font-size: 25px;
  margin-top: -12px;
  -webkit-transition: color .3s;
  -moz-transition: color .3s;
  transition: color .3s; }

.tp-rightarrow.preview2:after {
  content: '\e81e';
  right: 18px; }

.tp-leftarrow.preview2:after {
  content: '\e81f';
  left: 18px; }

.tparrows.preview2 .tp-arr-titleholder {
  background-size: cover;
  background-position: center center;
  display: block;
  visibility: hidden;
  position: relative;
  top: 0;
  -webkit-transition: -webkit-transform .3s;
  transition: transform .3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  white-space: nowrap;
  color: #000;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 14px;
  line-height: 60px;
  padding: 0 10px; }

.tp-rightarrow.preview2 .tp-arr-titleholder {
  right: 50px;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%); }

.tp-leftarrow.preview2 .tp-arr-titleholder {
  left: 50px;
  -webkit-transform: translateX(100%);
  transform: translateX(100%); }

.tparrows.preview2.hovered {
  width: 300px; }

.tparrows.preview2:hover {
  background: #fff; }

.tparrows.preview2:hover:after {
  color: #000; }

.tparrows.preview2:hover .tp-arr-titleholder {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
  position: absolute; }

.tp-bullets.preview2 {
  height: 17px; }

.tp-bullets.preview2 .bullet {
  cursor: pointer;
  position: relative !important;
  background: rgba(0, 0, 0, 0.5) !important;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  width: 6px !important;
  height: 6px !important;
  border: 5px solid transparent !important;
  display: inline-block;
  margin-right: 2px !important;
  margin-bottom: 0 !important;
  -webkit-transition: background-color .2s,border-color .2s;
  -moz-transition: background-color .2s,border-color .2s;
  -o-transition: background-color .2s,border-color .2s;
  -ms-transition: background-color .2s,border-color .2s;
  transition: background-color .2s,border-color .2s;
  float: none !important;
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; }

.tp-bullets.preview2 .bullet.last {
  margin-right: 0; }

.tp-bullets.preview2 .bullet.selected, .tp-bullets.preview2 .bullet:hover {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: white !important;
  width: 6px !important;
  height: 6px !important;
  border: 5px solid black !important; }

.tp-arr-titleholder.alwayshidden {
  display: none !important; }

@media only screen and (min-width: 768px) and (max-width: 979px) {
  .tparrows.preview2 {
    min-width: 40px;
    min-height: 40px;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px; }
  .tparrows.preview2:after {
    position: absolute;
    top: 50%;
    font-family: revicons;
    font-size: 20px;
    margin-top: -12px; }
  .tp-rightarrow.preview2:after {
    content: '\e81e';
    right: 11px; }
  .tp-leftarrow.preview2:after {
    content: '\e81f';
    left: 11px; }
  .tparrows.preview2 .tp-arr-titleholder {
    font-size: 12px;
    line-height: 40px;
    letter-spacing: 0; }
  .tp-rightarrow.preview2 .tp-arr-titleholder {
    right: 35px; }
  .tp-leftarrow.preview2 .tp-arr-titleholder {
    left: 35px; } }

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .tparrows.preview2 {
    min-width: 30px;
    min-height: 30px;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px; }
  .tparrows.preview2:after {
    position: absolute;
    top: 50%;
    font-family: revicons;
    font-size: 14px;
    margin-top: -12px; }
  .tp-rightarrow.preview2:after {
    content: '\e81e';
    right: 8px; }
  .tp-leftarrow.preview2:after {
    content: '\e81f';
    left: 8px; }
  .tparrows.preview2 .tp-arr-titleholder {
    font-size: 10px;
    line-height: 30px;
    letter-spacing: 0; }
  .tp-rightarrow.preview2 .tp-arr-titleholder {
    right: 25px; }
  .tp-leftarrow.preview2 .tp-arr-titleholder {
    left: 25px; }
  .tparrows.preview2 .tp-arr-titleholder {
    display: none;
    visibility: none; } }

@media only screen and (min-width: 0px) and (max-width: 479px) {
  .tparrows.preview2 {
    min-width: 30px;
    min-height: 30px;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px; }
  .tparrows.preview2:after {
    position: absolute;
    top: 50%;
    font-family: revicons;
    font-size: 14px;
    margin-top: -12px; }
  .tp-rightarrow.preview2:after {
    content: '\e81e';
    right: 8px; }
  .tp-leftarrow.preview2:after {
    content: '\e81f';
    left: 8px; }
  .tparrows.preview2 .tp-arr-titleholder {
    display: none;
    visibility: none; }
  .tparrows.preview2:hover {
    width: 30px !important;
    height: 30px !important; } }

.tparrows.preview3 {
  width: 70px;
  height: 70px;
  background: #fff;
  background: white;
  -webkit-transform-style: flat; }

.tparrows.preview3:after {
  position: absolute;
  line-height: 70px;
  text-align: center;
  font-family: revicons;
  color: #aaa;
  font-size: 30px;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 100;
  width: 70px;
  height: 70px;
  -webkit-transition: color .3s;
  -moz-transition: color .3s;
  transition: color .3s; }

.tparrows.preview3:hover:after {
  color: #000; }

.tp-rightarrow.preview3:after {
  content: '\e825'; }

.tp-leftarrow.preview3:after {
  content: '\e824'; }

.tparrows.preview3 .tp-arr-iwrapper {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transition: -webkit-transform .2s;
  transition: transform .2s;
  z-index: 0;
  position: absolute;
  background: #000;
  background: rgba(0, 0, 0, 0.75);
  display: table;
  min-height: 90px;
  top: -10px; }

.tp-leftarrow.preview3 .tp-arr-iwrapper {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%; }

.tparrows.preview3 .tp-arr-imgholder {
  background-size: cover;
  background-position: center center;
  display: table-cell;
  min-width: 90px;
  height: 90px;
  position: relative;
  top: 0; }

.tp-rightarrow.preview3 .tp-arr-iwrapper {
  right: 0;
  padding-right: 70px; }

.tp-leftarrow.preview3 .tp-arr-iwrapper {
  left: 0;
  direction: rtl;
  padding-left: 70px; }

.tparrows.preview3 .tp-arr-titleholder {
  display: table-cell;
  padding: 30px;
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
  position: relative;
  clear: right;
  vertical-align: middle; }

.tparrows.preview3:hover .tp-arr-iwrapper {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1); }

.tp-bullets.preview3 {
  height: 17px; }

.tp-bullets.preview3 .bullet {
  cursor: pointer;
  position: relative !important;
  background: rgba(0, 0, 0, 0.5) !important;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  width: 6px !important;
  height: 6px !important;
  border: 5px solid transparent !important;
  display: inline-block;
  margin-right: 2px !important;
  margin-bottom: 0 !important;
  -webkit-transition: background-color .2s,border-color .2s;
  -moz-transition: background-color .2s,border-color .2s;
  -o-transition: background-color .2s,border-color .2s;
  -ms-transition: background-color .2s,border-color .2s;
  transition: background-color .2s,border-color .2s;
  float: none !important;
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; }

.tp-bullets.preview3 .bullet.last {
  margin-right: 0; }

.tp-bullets.preview3 .bullet.selected, .tp-bullets.preview3 .bullet:hover {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: white !important;
  width: 6px !important;
  height: 6px !important;
  border: 5px solid black !important; }

@media only screen and (min-width: 768px) and (max-width: 979px) {
  .tparrows.preview3, .tparrows.preview3:after {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px; }
  .tparrows.preview3 .tp-arr-iwrapper {
    min-height: 70px; }
  .tparrows.preview3 .tp-arr-imgholder {
    min-width: 70px;
    height: 70px; }
  .tp-rightarrow.preview3 .tp-arr-iwrapper {
    padding-right: 50px; }
  .tp-leftarrow.preview3 .tp-arr-iwrapper {
    padding-left: 50px; }
  .tparrows.preview3 .tp-arr-titleholder {
    padding: 10px;
    font-size: 16px; } }

@media only screen and (max-width: 767px) {
  .tparrows.preview3, .tparrows.preview3:after {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px; }
  .tparrows.preview3 .tp-arr-iwrapper {
    min-height: 70px; } }

.tparrows.preview4 {
  width: 30px;
  height: 110px;
  background: 0 0;
  -webkit-transform-style: preserve-3d;
  -webkit-perspective: 1000;
  -moz-perspective: 1000; }

.tparrows.preview4:after {
  position: absolute;
  line-height: 110px;
  text-align: center;
  font-family: revicons;
  color: #fff;
  font-size: 20px;
  top: 0;
  left: 0;
  z-index: 0;
  width: 30px;
  height: 110px;
  background: #000;
  background: rgba(0, 0, 0, 0.25);
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1; }

.tp-rightarrow.preview4:after {
  content: '\e825'; }

.tp-leftarrow.preview4:after {
  content: '\e824'; }

.tparrows.preview4 .tp-arr-allwrapper {
  visibility: hidden;
  width: 180px;
  position: absolute;
  z-index: 1;
  min-height: 120px;
  top: 0;
  left: -150px;
  overflow: hidden;
  -webkit-perspective: 1000px;
  -webkit-transform-style: flat; }

.tp-leftarrow.preview4 .tp-arr-allwrapper {
  left: 0; }

.tparrows.preview4 .tp-arr-iwrapper {
  position: relative; }

.tparrows.preview4 .tp-arr-imgholder {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 180px;
  height: 110px;
  position: relative;
  top: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.tparrows.preview4 .tp-arr-imgholder2 {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 180px;
  height: 110px;
  position: absolute;
  top: 0;
  left: 180px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.tp-leftarrow.preview4 .tp-arr-imgholder2 {
  left: -180px; }

.tparrows.preview4 .tp-arr-titleholder {
  display: block;
  padding: 0 10px;
  text-align: left;
  position: relative;
  background: #000;
  color: #FFF;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 11px;
  line-height: 2.75;
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0; }

.tparrows.preview4:after {
  transform-origin: 100% 100%;
  -webkit-transform-origin: 100% 100%; }

.tp-leftarrow.preview4:after {
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0; }

@media only screen and (min-width: 768px) {
  .tparrows.preview4:hover:after {
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg); }
  .tp-leftarrow.preview4:hover:after {
    -webkit-transform: rotateY(90deg);
    transform: rotateY(90deg); }
  .tparrows.preview4:hover .tp-arr-titleholder {
    -webkit-transition-delay: .4s;
    transition-delay: .4s;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1; } }

.tp-bullets.preview4 {
  height: 17px; }

.tp-bullets.preview4 .bullet {
  cursor: pointer;
  position: relative !important;
  background: rgba(0, 0, 0, 0.5) !important;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  width: 6px !important;
  height: 6px !important;
  border: 5px solid transparent !important;
  display: inline-block;
  margin-right: 2px !important;
  margin-bottom: 0 !important;
  -webkit-transition: background-color .2s,border-color .2s;
  -moz-transition: background-color .2s,border-color .2s;
  -o-transition: background-color .2s,border-color .2s;
  -ms-transition: background-color .2s,border-color .2s;
  transition: background-color .2s,border-color .2s;
  float: none !important;
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; }

.tp-bullets.preview4 .bullet.last {
  margin-right: 0; }

.tp-bullets.preview4 .bullet.selected, .tp-bullets.preview4 .bullet:hover {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: white !important;
  width: 6px !important;
  height: 6px !important;
  border: 5px solid black !important; }

@media only screen and (max-width: 767px) {
  .tparrows.preview4 {
    width: 20px;
    height: 80px; }
  .tparrows.preview4:after {
    width: 20px;
    height: 80px;
    line-height: 80px;
    font-size: 14px; }
  .tparrows.preview1 .tp-arr-allwrapper, .tparrows.preview2 .tp-arr-allwrapper, .tparrows.preview3 .tp-arr-allwrapper, .tparrows.preview4 .tp-arr-allwrapper {
    display: none !important; } }

.tp-loader {
  top: 50%;
  left: 50%;
  z-index: 10000;
  position: absolute; }

.tp-loader.spinner0 {
  width: 40px;
  height: 40px;
  background: url(loader.gif) center center no-repeat #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  margin-top: -20px;
  margin-left: -20px;
  -webkit-animation: tp-rotateplane 1.2s infinite ease-in-out;
  animation: tp-rotateplane 1.2s infinite ease-in-out;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px; }

.tp-loader.spinner1 {
  width: 40px;
  height: 40px;
  background-color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  margin-top: -20px;
  margin-left: -20px;
  -webkit-animation: tp-rotateplane 1.2s infinite ease-in-out;
  animation: tp-rotateplane 1.2s infinite ease-in-out;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px; }

.tp-loader.spinner5 {
  background: url(loader.gif) 10px 10px no-repeat #fff;
  margin: -22px;
  width: 44px;
  height: 44px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px; }

@-webkit-keyframes tp-rotateplane {
  0% {
    -webkit-transform: perspective(120px); }
  50% {
    -webkit-transform: perspective(120px) rotateY(180deg); }
  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg); } }

@keyframes tp-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg); }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); } }

.tp-loader.spinner2 {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  background-color: red;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  border-radius: 100%;
  -webkit-animation: tp-scaleout 1s infinite ease-in-out;
  animation: tp-scaleout 1s infinite ease-in-out; }

@-webkit-keyframes tp-scaleout {
  0% {
    -webkit-transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
    opacity: 0; } }

@keyframes tp-scaleout {
  0% {
    transform: scale(0);
    -webkit-transform: scale(0); }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 0; } }

.tp-loader.spinner3 {
  margin: -9px 0 0 -35px;
  width: 70px;
  text-align: center; }

.tp-loader.spinner3 .bounce1, .tp-loader.spinner3 .bounce2, .tp-loader.spinner3 .bounce3 {
  width: 18px;
  height: 18px;
  background-color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: tp-bouncedelay 1.4s infinite ease-in-out;
  animation: tp-bouncedelay 1.4s infinite ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.tp-loader.spinner3 .bounce1 {
  -webkit-animation-delay: -.32s;
  animation-delay: -.32s; }

.tp-loader.spinner3 .bounce2 {
  -webkit-animation-delay: -.16s;
  animation-delay: -.16s; }

@-webkit-keyframes tp-bouncedelay {
  0%, 100%, 80% {
    -webkit-transform: scale(0); }
  40% {
    -webkit-transform: scale(1); } }

@keyframes tp-bouncedelay {
  0%, 100%, 80% {
    transform: scale(0);
    -webkit-transform: scale(0); }
  40% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

.tp-loader.spinner4 {
  margin: -20px 0 0 -20px;
  width: 40px;
  height: 40px;
  text-align: center;
  -webkit-animation: tp-rotate 2s infinite linear;
  animation: tp-rotate 2s infinite linear; }

.tp-loader.spinner4 .dot1, .tp-loader.spinner4 .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: tp-bounce 2s infinite ease-in-out;
  animation: tp-bounce 2s infinite ease-in-out;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15); }

.tp-loader.spinner4 .dot2 {
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1s;
  animation-delay: -1s; }

@-webkit-keyframes tp-rotate {
  100% {
    -webkit-transform: rotate(360deg); } }

@keyframes tp-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg); } }

@-webkit-keyframes tp-bounce {
  0%, 100% {
    -webkit-transform: scale(0); }
  50% {
    -webkit-transform: scale(1); } }

@keyframes tp-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0); }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

.tp-transparentimg {
  content: "url(transparent.png)"; }

.tp-3d {
  -webkit-transform-style: preserve-3d;
  -webkit-transform-origin: 50% 50%; }

.tp-caption img {
  background: 0 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)";
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF, endColorstr=#00FFFFFF);
  zoom: 1; }

@font-face {
  font-family: revicons;
  src: url(//theme.hstatic.net/200000525899/1001103657/14/revicons.eot?5510888?v=427);
  src: url(//theme.hstatic.net/200000525899/1001103657/14/revicons.eot?5510888#iefix?v=427) format("embedded-opentype"), url(//theme.hstatic.net/200000525899/1001103657/14/revicons.woff?5510888?v=427) format("woff"), url(//theme.hstatic.net/200000525899/1001103657/14/revicons.ttf?5510888?v=427) format("truetype"), url(//theme.hstatic.net/200000525899/1001103657/14/revicons.svg?5510888#revicons?v=427) format("svg");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: 'coolvetica-crammed-rg';
  src: url(//theme.hstatic.net/200000525899/1001103657/14/font-coolvetica-crammed-rg.otf?v=427) format("opentype"); }

@font-face {
  font-family: 'coolvetica-rg';
  src: url(//theme.hstatic.net/200000525899/1001103657/14/font-coolvetica-rg.otf?v=427) format("opentype"); }

@font-face {
  font-family: 'OrientoGrotesk';
  src: url(//theme.hstatic.net/200000525899/1001103657/14/font-OrientoGrotesk-Regular.otf?v=427) format("opentype"); }

[class*=" revicon-"]:before, [class^=revicon-]:before {
  font-family: revicons;
  font-style: normal;
  font-weight: 400;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: .2em; }

.revicon-search-1:before {
  content: '\e802'; }

.revicon-pencil-1:before {
  content: '\e831'; }

.revicon-picture-1:before {
  content: '\e803'; }

.revicon-cancel:before {
  content: '\e80a'; }

.revicon-info-circled:before {
  content: '\e80f'; }

.revicon-trash:before {
  content: '\e801'; }

.revicon-left-dir:before {
  content: '\e817'; }

.revicon-right-dir:before {
  content: '\e818'; }

.revicon-down-open:before {
  content: '\e83b'; }

.revicon-left-open:before {
  content: '\e819'; }

.revicon-right-open:before {
  content: '\e81a'; }

.revicon-angle-left:before {
  content: '\e820'; }

.revicon-angle-right:before {
  content: '\e81d'; }

.revicon-left-big:before {
  content: '\e81f'; }

.revicon-right-big:before {
  content: '\e81e'; }

.revicon-magic:before {
  content: '\e807'; }

.revicon-picture:before {
  content: '\e800'; }

.revicon-export:before {
  content: '\e80b'; }

.revicon-cog:before {
  content: '\e832'; }

.revicon-login:before {
  content: '\e833'; }

.revicon-logout:before {
  content: '\e834'; }

.revicon-video:before {
  content: '\e805'; }

.revicon-arrow-combo:before {
  content: '\e827'; }

.revicon-left-open-1:before {
  content: '\e82a'; }

.revicon-right-open-1:before {
  content: '\e82b'; }

.revicon-left-open-mini:before {
  content: '\e822'; }

.revicon-right-open-mini:before {
  content: '\e823'; }

.revicon-left-open-big:before {
  content: '\e824'; }

.revicon-right-open-big:before {
  content: '\e825'; }

.revicon-left:before {
  content: '\e836'; }

.revicon-right:before {
  content: '\e826'; }

.revicon-ccw:before {
  content: '\e808'; }

.revicon-arrows-ccw:before {
  content: '\e806'; }

.revicon-palette:before {
  content: '\e829'; }

.revicon-list-add:before {
  content: '\e80c'; }

.revicon-doc:before {
  content: '\e809'; }

.revicon-left-open-outline:before {
  content: '\e82e'; }

.revicon-left-open-2:before {
  content: '\e82c'; }

.revicon-right-open-outline:before {
  content: '\e82f'; }

.revicon-right-open-2:before {
  content: '\e82d'; }

.revicon-equalizer:before {
  content: '\e83a'; }

.revicon-layers-alt:before {
  content: '\e804'; }

.revicon-popup:before {
  content: '\e828'; }

.medium_grey, .tp-caption.medium_grey {
  position: absolute;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  font-family: Arial;
  padding: 2px 4px;
  margin: 0;
  border-width: 0;
  border-style: none;
  background-color: #888;
  white-space: nowrap; }

.small_text, .tp-caption.small_text {
  position: absolute;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  font-family: Arial;
  margin: 0;
  border-width: 0;
  border-style: none;
  white-space: nowrap; }

.medium_text, .tp-caption.medium_text {
  position: absolute;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  font-family: Arial;
  margin: 0;
  border-width: 0;
  border-style: none;
  white-space: nowrap; }

.large_text, .tp-caption.large_text {
  position: absolute;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  font-family: Arial;
  margin: 0;
  border-width: 0;
  border-style: none;
  white-space: nowrap; }

.tp-caption.very_large_text, .very_large_text {
  position: absolute;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  font-weight: 700;
  font-size: 60px;
  line-height: 60px;
  font-family: Arial;
  margin: 0;
  border-width: 0;
  border-style: none;
  white-space: nowrap;
  letter-spacing: -2px; }

.tp-caption.very_big_white, .very_big_white {
  position: absolute;
  color: #fff;
  text-shadow: none;
  font-weight: 800;
  font-size: 60px;
  line-height: 60px;
  font-family: Arial;
  margin: 0;
  border-width: 0;
  border-style: none;
  white-space: nowrap;
  padding: 1px 4px 0;
  background-color: #000; }

.tp-caption.very_big_black, .very_big_black {
  position: absolute;
  color: #000;
  text-shadow: none;
  font-weight: 700;
  font-size: 60px;
  line-height: 60px;
  font-family: Arial;
  margin: 0;
  border-width: 0;
  border-style: none;
  white-space: nowrap;
  padding: 1px 4px 0;
  background-color: #fff; }

.modern_medium_fat, .tp-caption.modern_medium_fat {
  position: absolute;
  color: #000;
  text-shadow: none;
  font-weight: 800;
  font-size: 24px;
  line-height: 20px;
  font-family: "Open Sans",sans-serif;
  margin: 0;
  border-width: 0;
  border-style: none;
  white-space: nowrap; }

.modern_medium_fat_white, .tp-caption.modern_medium_fat_white {
  position: absolute;
  color: #fff;
  text-shadow: none;
  font-weight: 800;
  font-size: 24px;
  line-height: 20px;
  font-family: "Open Sans",sans-serif;
  margin: 0;
  border-width: 0;
  border-style: none;
  white-space: nowrap; }

.modern_medium_light, .tp-caption.modern_medium_light {
  position: absolute;
  color: #000;
  text-shadow: none;
  font-weight: 300;
  font-size: 24px;
  line-height: 20px;
  font-family: "Open Sans",sans-serif;
  margin: 0;
  border-width: 0;
  border-style: none;
  white-space: nowrap; }

.modern_big_bluebg, .tp-caption.modern_big_bluebg {
  position: absolute;
  color: #fff;
  text-shadow: none;
  font-weight: 800;
  font-size: 30px;
  line-height: 36px;
  font-family: "Open Sans",sans-serif;
  padding: 3px 10px;
  margin: 0;
  border-width: 0;
  border-style: none;
  background-color: #4e5b6c;
  letter-spacing: 0; }

.modern_big_redbg, .tp-caption.modern_big_redbg {
  position: absolute;
  color: #fff;
  text-shadow: none;
  font-weight: 300;
  font-size: 30px;
  line-height: 36px;
  font-family: "Open Sans",sans-serif;
  padding: 1px 10px 3px;
  margin: 0;
  border-width: 0;
  border-style: none;
  background-color: #de543e;
  letter-spacing: 0; }

.modern_small_text_dark, .tp-caption.modern_small_text_dark {
  position: absolute;
  color: #555;
  text-shadow: none;
  font-size: 14px;
  line-height: 22px;
  font-family: Arial;
  margin: 0;
  border-width: 0;
  border-style: none;
  white-space: nowrap; }

.boxshadow, .tp-caption.boxshadow {
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); }

.black, .tp-caption.black {
  color: #000;
  text-shadow: none; }

.noshadow, .tp-caption.noshadow {
  text-shadow: none; }

.thinheadline_dark, .tp-caption.thinheadline_dark {
  position: absolute;
  color: rgba(0, 0, 0, 0.85);
  text-shadow: none;
  font-weight: 300;
  font-size: 30px;
  line-height: 30px;
  font-family: "Open Sans";
  background-color: transparent; }

.thintext_dark, .tp-caption.thintext_dark {
  position: absolute;
  color: rgba(0, 0, 0, 0.85);
  text-shadow: none;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  font-family: "Open Sans";
  background-color: transparent; }

.largeblackbg, .tp-caption.largeblackbg {
  position: absolute;
  color: #fff;
  text-shadow: none;
  font-weight: 300;
  font-size: 50px;
  line-height: 70px;
  font-family: "Open Sans";
  background-color: #000;
  padding: 0 20px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }

.largepinkbg, .tp-caption.largepinkbg {
  position: absolute;
  color: #fff;
  text-shadow: none;
  font-weight: 300;
  font-size: 50px;
  line-height: 70px;
  font-family: "Open Sans";
  background-color: #db4360;
  padding: 0 20px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }

.largewhitebg, .tp-caption.largewhitebg {
  position: absolute;
  color: #000;
  text-shadow: none;
  font-weight: 300;
  font-size: 50px;
  line-height: 70px;
  font-family: "Open Sans";
  background-color: #fff;
  padding: 0 20px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }

.largegreenbg, .tp-caption.largegreenbg {
  position: absolute;
  color: #fff;
  text-shadow: none;
  font-weight: 300;
  font-size: 50px;
  line-height: 70px;
  font-family: "Open Sans";
  background-color: #67ae73;
  padding: 0 20px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }

.excerpt, .tp-caption.excerpt {
  font-size: 36px;
  line-height: 36px;
  font-weight: 700;
  font-family: Arial;
  color: #fff;
  text-decoration: none;
  background-color: black;
  text-shadow: none;
  margin: 0;
  letter-spacing: -1.5px;
  padding: 1px 4px 0;
  width: 150px;
  white-space: normal !important;
  height: auto;
  border-width: 0;
  border-color: #fff;
  border-style: none; }

.large_bold_grey, .tp-caption.large_bold_grey {
  font-size: 60px;
  line-height: 60px;
  font-weight: 800;
  font-family: "Open Sans";
  color: #666;
  text-decoration: none;
  background-color: transparent;
  text-shadow: none;
  margin: 0;
  padding: 1px 4px 0;
  border-width: 0;
  border-color: #ffd658;
  border-style: none; }

.medium_thin_grey, .tp-caption.medium_thin_grey {
  font-size: 34px;
  line-height: 30px;
  font-weight: 300;
  font-family: "Open Sans";
  color: #666;
  text-decoration: none;
  background-color: transparent;
  padding: 1px 4px 0;
  text-shadow: none;
  margin: 0;
  border-width: 0;
  border-color: #ffd658;
  border-style: none; }

.small_thin_grey, .tp-caption.small_thin_grey {
  font-size: 18px;
  line-height: 26px;
  font-weight: 300;
  font-family: "Open Sans";
  color: #757575;
  text-decoration: none;
  background-color: transparent;
  padding: 1px 4px 0;
  text-shadow: none;
  margin: 0;
  border-width: 0;
  border-color: #ffd658;
  border-style: none; }

.lightgrey_divider, .tp-caption.lightgrey_divider {
  text-decoration: none;
  background-color: #ebebeb;
  width: 370px;
  height: 3px;
  background-position: initial initial;
  background-repeat: initial initial;
  border-width: 0;
  border-color: #222;
  border-style: none; }

.large_bold_darkblue, .tp-caption.large_bold_darkblue {
  font-size: 58px;
  line-height: 60px;
  font-weight: 800;
  font-family: "Open Sans";
  color: #34495e;
  text-decoration: none;
  background-color: transparent;
  border-width: 0;
  border-color: #ffd658;
  border-style: none; }

.medium_bg_darkblue, .tp-caption.medium_bg_darkblue {
  font-size: 20px;
  line-height: 20px;
  font-weight: 800;
  font-family: "Open Sans";
  color: #fff;
  text-decoration: none;
  background-color: #34495e;
  padding: 10px;
  border-width: 0;
  border-color: #ffd658;
  border-style: none; }

.medium_bold_red, .tp-caption.medium_bold_red {
  font-size: 24px;
  line-height: 30px;
  font-weight: 800;
  font-family: "Open Sans";
  color: #e33a0c;
  text-decoration: none;
  background-color: transparent;
  padding: 0;
  border-width: 0;
  border-color: #ffd658;
  border-style: none; }

.medium_light_red, .tp-caption.medium_light_red {
  font-size: 21px;
  line-height: 26px;
  font-weight: 300;
  font-family: "Open Sans";
  color: #e33a0c;
  text-decoration: none;
  background-color: transparent;
  padding: 0;
  border-width: 0;
  border-color: #ffd658;
  border-style: none; }

.medium_bg_red, .tp-caption.medium_bg_red {
  font-size: 20px;
  line-height: 20px;
  font-weight: 800;
  font-family: "Open Sans";
  color: #fff;
  text-decoration: none;
  background-color: #e33a0c;
  padding: 10px;
  border-width: 0;
  border-color: #ffd658;
  border-style: none; }

.medium_bold_orange, .tp-caption.medium_bold_orange {
  font-size: 24px;
  line-height: 30px;
  font-weight: 800;
  font-family: "Open Sans";
  color: #f39c12;
  text-decoration: none;
  background-color: transparent;
  border-width: 0;
  border-color: #ffd658;
  border-style: none; }

.medium_bg_orange, .tp-caption.medium_bg_orange {
  font-size: 20px;
  line-height: 20px;
  font-weight: 800;
  font-family: "Open Sans";
  color: #fff;
  text-decoration: none;
  background-color: #f39c12;
  padding: 10px;
  border-width: 0;
  border-color: #ffd658;
  border-style: none; }

.grassfloor, .tp-caption.grassfloor {
  text-decoration: none;
  background-color: #a0b397;
  width: 4000px;
  height: 150px;
  border-width: 0;
  border-color: #222;
  border-style: none; }

.large_bold_white, .tp-caption.large_bold_white {
  font-size: 58px;
  line-height: 60px;
  font-weight: 800;
  font-family: "Open Sans";
  color: #fff;
  text-decoration: none;
  background-color: transparent;
  border-width: 0;
  border-color: #ffd658;
  border-style: none; }

.medium_light_white, .tp-caption.medium_light_white {
  font-size: 30px;
  line-height: 36px;
  font-weight: 300;
  font-family: "Open Sans";
  color: #fff;
  text-decoration: none;
  background-color: transparent;
  padding: 0;
  border-width: 0;
  border-color: #ffd658;
  border-style: none; }

.mediumlarge_light_white, .tp-caption.mediumlarge_light_white {
  font-size: 34px;
  line-height: 40px;
  font-weight: 300;
  font-family: "Open Sans";
  color: #fff;
  text-decoration: none;
  background-color: transparent;
  padding: 0;
  border-width: 0;
  border-color: #ffd658;
  border-style: none; }

.mediumlarge_light_white_center, .tp-caption.mediumlarge_light_white_center {
  font-size: 34px;
  line-height: 40px;
  font-weight: 300;
  font-family: "Open Sans";
  color: #fff;
  text-decoration: none;
  background-color: transparent;
  padding: 0;
  text-align: center;
  border-width: 0;
  border-color: #ffd658;
  border-style: none; }

.medium_bg_asbestos, .tp-caption.medium_bg_asbestos {
  font-size: 20px;
  line-height: 20px;
  font-weight: 800;
  font-family: "Open Sans";
  color: #fff;
  text-decoration: none;
  background-color: #7f8c8d;
  padding: 10px;
  border-width: 0;
  border-color: #ffd658;
  border-style: none; }

.medium_light_black, .tp-caption.medium_light_black {
  font-size: 30px;
  line-height: 36px;
  font-weight: 300;
  font-family: "Open Sans";
  color: #000;
  text-decoration: none;
  background-color: transparent;
  padding: 0;
  border-width: 0;
  border-color: #ffd658;
  border-style: none; }

.large_bold_black, .tp-caption.large_bold_black {
  font-size: 58px;
  line-height: 60px;
  font-weight: 800;
  font-family: "Open Sans";
  color: #000;
  text-decoration: none;
  background-color: transparent;
  border-width: 0;
  border-color: #ffd658;
  border-style: none; }

.mediumlarge_light_darkblue, .tp-caption.mediumlarge_light_darkblue {
  font-size: 34px;
  line-height: 40px;
  font-weight: 300;
  font-family: "Open Sans";
  color: #34495e;
  text-decoration: none;
  background-color: transparent;
  padding: 0;
  border-width: 0;
  border-color: #ffd658;
  border-style: none; }

.small_light_white, .tp-caption.small_light_white {
  font-size: 17px;
  line-height: 28px;
  font-weight: 300;
  font-family: "Open Sans";
  color: #fff;
  text-decoration: none;
  background-color: transparent;
  padding: 0;
  border-width: 0;
  border-color: #ffd658;
  border-style: none; }

.roundedimage, .tp-caption.roundedimage {
  border-width: 0;
  border-color: #222;
  border-style: none; }

.large_bg_black, .tp-caption.large_bg_black {
  font-size: 40px;
  line-height: 40px;
  font-weight: 800;
  font-family: "Open Sans";
  color: #fff;
  text-decoration: none;
  background-color: #000;
  padding: 10px 20px 15px;
  border-width: 0;
  border-color: #ffd658;
  border-style: none; }

.mediumwhitebg, .tp-caption.mediumwhitebg {
  font-size: 30px;
  line-height: 30px;
  font-weight: 300;
  font-family: "Open Sans";
  color: #000;
  text-decoration: none;
  background-color: #fff;
  padding: 5px 15px 10px;
  text-shadow: none;
  border-width: 0;
  border-color: #000;
  border-style: none; }

.nova_color, .tp-caption.nova_color {
  position: absolute;
  color: #fff;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 2.5px;
  line-height: 48px;
  font-family: Lato;
  padding: 0 15px;
  margin: 0;
  border-width: 0;
  border-style: none;
  background-color: #eeb013;
  white-space: nowrap;
  border-radius: 0; }

.nova_color:hover, .tp-caption.nova_color:hover {
  position: absolute;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  font-weight: 300;
  font-size: 14px;
  line-height: 48px;
  font-family: Lato;
  padding: 0 15px;
  margin: 0;
  border-width: 0;
  border-style: none;
  background-color: #202020;
  white-space: nowrap; }

.rev_slider_wrapper .tp-caption {
  z-index: 9999; }

.rev_slider_wrapper .tp-caption.rv-heading {
  font-size: 80px;
  font-weight: bold;
  letter-spacing: 15px;
  text-transform: uppercase; }

.rev_slider_wrapper .tp-caption.rv-description {
  font-size: 24px;
  letter-spacing: 5px;
  text-transform: none; }

.rev_slider_wrapper .tp-caption.rv-description:before, .rev_slider_wrapper .tp-caption.rv-description:after {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 1px;
  background: #fbf063;
  content: "";
  margin: 0 20px; }

/* -------------------------------------------------------------------- */
/*   MAIN SLIDER   */
/* -------------------------------------------------------------------- */
.main-slider {
  position: relative;
  z-index: 9;
  /* bullet */ }

.main-slider .tp-bullets {
  margin: 0 !important;
  bottom: 30px !important;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); }

.main-slider .tp-bullets.preview3 .bullet, .main-slider .tp-bullets.preview3 .bullet.selected, .main-slider .tp-bullets.preview3 .bullet:hover {
  border-radius: 50%;
  -moz-border-radius: 50%;
  border-width: 1px !important;
  border-color: #333 !important;
  width: 8px !important;
  height: 8px !important;
  margin: 0 5px !important; }

.main-slider .tp-bullets.preview3 .bullet {
  border-color: #535152 !important;
  display: block !important;
  float: left !important; }
