@charset "UTF-8";
/*------------------------------------------------------------------
[Main Stylesheet]
Project:	The Trickster
Version:	1.0
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Table of contents]

1. Style Reset
-------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Lato:400,400i,700,900");
* {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  box-sizing: border-box;
}

h1, h2, h3, h4,
h5, h6, p, a {
  line-height: 1em;
}

a {
  text-decoration: none;
  color:blue; 
}

a:hover { color:#ff5400}

ul, ol {
  list-style: none;
}

input.error, textarea.error {border: 2px solid red !important;}

main, header, nav, article,
section, aside, footer {
  display: block;
}

figure {
  line-height: 0;
}
figure > img {
  width: 100%;
}
figure > figcaption {
  display: none;
}

/*------------------------------------------------------------------
[Table of contents]

1. Template Font Styles
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Table of contents]

1. Template Colors
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Table of contents]

1. Mixins / MIXINS
2. Z-Index Values / INDEX
-------------------------------------------------------------------*/
/*-------------
    MIXINS
-------------*/
/*------------
    INDEX
------------*/
/*------------------------------------------------------------------
[Table of contents]

1. Grid Box / LIMIT BOX
2. Grid Columns / COLUMNS
3. Reponsive Layout / MEDIA QUERIES
-------------------------------------------------------------------*/
/*----------------
    GRID BOX
----------------*/
.widget-line, .navigation,
.slide-content-wrap, .section-navigation,
.section, .action-poster, .widget-form,
.footer-top, .footer-bottom,
.aboutus-banner, .product-builder {
  max-width: 1170px;
  width: 95%;
  margin: 0 auto;
}

.column-full-3-wrap:after {
  content: "";
  display: table;
  clear: both;
}
.column-full-3-wrap .column {
  float: left;
  width: 33.3333333333%;
}

.column-full-2-wrap:after {
  content: "";
  display: table;
  clear: both;
}
.column-full-2-wrap .column {
  float: left;
  width: 48%;
  margin-bottom: 80px;
}
.column-full-2-wrap .column + .column {
  float: right;
}

.column-4-wrap, .column-3-wrap {
  margin: 0 auto;
}
.column-4-wrap:after, .column-3-wrap:after {
  content: "";
  display: table;
  clear: both;
}
.column-4-wrap .column, .column-3-wrap .column {
  float: left;
  width: 270px;
  margin: 0 30px 60px 0;
}

.column-4-wrap .column:nth-child(4n+4) {
  margin-right: 0;
}

.column-3-wrap {
  width: 870px;
}
.column-3-wrap .column:nth-child(3n+3) {
  margin-right: 0;
}

.column-big-3-wrap {
  margin: 0 auto;
}
.column-big-3-wrap:after {
  content: "";
  display: table;
  clear: both;
}
.column-big-3-wrap .column {
  float: left;
  width: 370px;
  margin: 0 30px 60px 0;
}
.column-big-3-wrap .column:nth-child(3n+3) {
  margin-right: 0;
}

.column-3-2-wrap:after {
  content: "";
  display: table;
  clear: both;
}
.column-3-2-wrap .column {
  float: left;
  width: 670px;
}
.column-3-2-wrap .column:last-child {
  float: right;
  width: 470px;
}

@media screen and (max-width: 1260px) {
  .column-full-3-wrap .column {
    width: 50%;
  }
  .column-full-3-wrap .column.builder-actions-item-wrap:nth-child(2), .column-full-3-wrap .column.builder-actions-item-wrap:nth-child(3) {
    border-right: none;
  }
  .column-full-3-wrap .column.builder-actions-item-wrap:nth-child(3) {
    margin-top: 80px;
  }
  .column-full-3-wrap .column:nth-child(3) {
    width: 100%;
  }

  .column-4-wrap {
    width: 870px;
  }
  .column-4-wrap .column:nth-child(4n+4) {
    margin-right: 30px;
  }
  .column-4-wrap .column:nth-child(3n+3) {
    margin-right: 0;
  }

  .column-big-3-wrap {
    width: 770px;
  }
  .column-big-3-wrap .column:nth-child(3n+3) {
    margin-right: 30px;
  }
  .column-big-3-wrap .column:nth-child(2n+2) {
    margin-right: 0;
  }

  .column-3-2-wrap .column {
    float: none;
    width: 100%;
    margin-bottom: 60px;
  }
  .column-3-2-wrap .column:last-child {
    float: none;
    width: 100%;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1024px) {
  .column-4-wrap,
.column-3-wrap {
    width: 570px;
  }
  .column-4-wrap .column:nth-child(3n+3),
.column-3-wrap .column:nth-child(3n+3) {
    margin-right: 30px;
  }
  .column-4-wrap .column:nth-child(2n+2),
.column-3-wrap .column:nth-child(2n+2) {
    margin-right: 0;
  }

  .column-big-3-wrap {
    width: 100%;
  }
  .column-big-3-wrap .column {
    float: none;
    width: 100%;
    margin-right: 0;
  }
  .column-big-3-wrap .column:nth-child(3n+3) {
    margin-right: 0;
  }

  .column-full-2-wrap .column {
    float: none;
    width: 100%;
  }
  .column-full-2-wrap .column + .column {
    float: none;
  }
}
@media screen and (max-width: 680px) {
  .column-full-3-wrap .column {
    width: 100%;
  }
  .column-full-3-wrap .column.builder-actions-item-wrap {
    margin-top: 80px;
    border-right: none;
  }
  .column-full-3-wrap .column.builder-actions-item-wrap:first-child {
    margin-top: 0;
  }

  .column-4-wrap,
.column-3-wrap {
    width: 270px;
  }
  .column-4-wrap .column,
.column-3-wrap .column {
    margin-right: 0;
  }
}
/*------------------------------------------------------------------
[Table of contents]

1. Form Input Styles / INPUT STYLES
2. Quantity Input / .quantity-input
3. Input Result / .input-result
4. Placeholder Styles / PLACEHOLDER STYLES
5. Form Row / .form-row
6. Form Oneline / .form-oneline
7. Top Checkbox / .top-checkbox
8. Reponsive Layout / MEDIA QUERIES
-------------------------------------------------------------------*/
/*------------------
    INPUT STYLES
------------------*/
input, textarea,
label, button {
  font-family: "Lato", sans-serif;
}

input[type=text], textarea,
input[type=password] {
  width: 100%;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  padding: 14px;
  color: #8b8b8b;
  font-size: 0.875em;
}
input[type=text].dark, textarea.dark,
input[type=password].dark {
  background-color: #333;
  border: none;
}
input[type=text]:focus, textarea:focus,
input[type=password]:focus {
  border-color: #ff5400;
}
input[type=text]:disabled, textarea:disabled,
input[type=password]:disabled {
  background-color: #f1f1f1;
}
input[type=text].nofocus:focus, textarea.nofocus:focus,
input[type=password].nofocus:focus {
  border-color: #e8e8e8;
}

input[type=text].short {
  width: 315px;
}

input[type=radio],
input[type=checkbox] {
  display: none;
}
input[type=radio]:checked + .checkbox .box,
input[type=checkbox]:checked + .checkbox .box {
  border-color: #ff5400;
  background-color: #ff5400;
}
input[type=radio]:checked + .checkbox .box .svg-check,
input[type=checkbox]:checked + .checkbox .box .svg-check {
  display: block;
}
input[type=radio]:checked + .radio .circle,
input[type=checkbox]:checked + .radio .circle {
  border-color: #ff5400;
  background-color: #ff5400;
}
input[type=radio]:checked + .radio .circle .inner-circle,
input[type=checkbox]:checked + .radio .circle .inner-circle {
  display: block;
}

textarea {
  height: 160px;
}

label {
  color: #8b8b8b;
  font-size: 0.875em;
  font-family: "Lato", sans-serif;
}
label.inline {
  float: left;
  margin-right: 14px;
}
label.inline + .rating {
  position: relative;
  top: 2px;
}
label.radio {
  cursor: pointer;
}
label.radio .circle {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  border-radius: 50%;
  border: 1px solid #e8e8e8;
  position: relative;
  top: 2px;
}
label.radio .circle .inner-circle {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 4px;
  left: 50%;
  margin-left: -2px;
  display: none;
}
label.checkbox {
  cursor: pointer;
}
label.checkbox .box {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  background-color: #fff;
  position: relative;
  top: 2px;
}
label.checkbox .box .svg-check {
  margin-left: -4px;
  position: absolute;
  top: 3px;
  left: 50%;
  display: none;
}
label.select-block {
  width: 100%;
  display: inline-block;
  position: relative;
}
label.select-block.medium select {
  height: 47px;
  line-height: 47px;
}
label.select-block.medium .svg-arrow {
  top: 20px;
}
label.select-block .svg-arrow {
  fill: #b2b2b2;
  width: 6px;
  height: 10px;
  position: absolute;
  top: 17px;
  right: 17px;
  pointer-events: none;
}
label.rl-label {
  display: block;
  margin-bottom: 12px;
  color: #242424;
  font-size: 0.9375em;
  font-weight: 700;
}
label.rl-label.separated {
  margin-bottom: 26px;
}
label.rl-label.required:after {
  content: "*";
  margin-left: 4px;
  color: #ff5400;
}

select {
  width: 100%;
  height: 42px;
  padding: 0 42px 0 15px;
  border: 1px solid #e8e8e8;
  background-color: #fff;
  border-radius: 4px;
  color: #8b8b8b;
  font-family: "Lato", sans-serif;
  line-height: 42px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

/* REMOVE IE SELECT ARROW */
select::-ms-expand {
  display: none;
}

button {
  cursor: pointer;
}

.quantity-input {
  width: 70px;
  height: 47px;
  padding-left: 20px;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  color: #8b8b8b;
  font-family: "Lato", sans-serif;
  font-size: 0.875em;
  line-height: 47px;
  position: relative;
}
.quantity-input .increment-count,
.quantity-input .decrement-count {
  width: 26px;
  height: 50%;
  position: absolute;
  right: 0;
  cursor: pointer;
}
.quantity-input .increment-count {
  top: 0;
}
.quantity-input .increment-count .svg-arrow {
  top: 9px;
}
.quantity-input .decrement-count {
  bottom: 0;
}
.quantity-input .decrement-count .svg-arrow {
  bottom: 7px;
}
.quantity-input .svg-arrow {
  fill: #b2b2b2;
  width: 6px;
  height: 8px;
  position: absolute;
  right: 15px;
  cursor: pointer;
}

.input-result {
  position: relative;
}
.input-result .svg-check,
.input-result .svg-cross {
  position: absolute;
  top: 19px;
  right: 14px;
  pointer-events: none;
}
.input-result .input-result-message {
  margin-top: 12px;
  font-size: 0.8125em;
  line-height: 1em;
}
.input-result.success .svg-check {
  fill: #ff5400;
  width: 11px;
  height: 9px;
}
.input-result.error input[type=text], .input-result.error textarea,
.input-result.error input[type=password] {
  border-color: #8b8b8b;
}
.input-result.error .svg-cross {
  fill: #242424;
}

/*-------------------------
    PLACEHOLDER STYLES
-------------------------*/
::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #b2b2b2;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #b2b2b2;
  opacity: 1;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #b2b2b2;
  opacity: 1;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #b2b2b2;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #b2b2b2;
}

.form-row {
  margin-bottom: 24px;
}
.form-row:after {
  content: "";
  display: table;
  clear: both;
}
.form-row.short-space {
  margin-bottom: 20px;
}
.form-row.separated {
  margin-top: 40px;
}
.form-row.right {
  text-align: right;
}
.form-row.right .button {
  margin-top: 56px;
  display: inline-block;
}
.form-row:last-child {
  margin-bottom: 0;
}
.form-row .half {
  float: left;
  width: 49%;
}
.form-row .half.no-label {
  padding-top: 30px;
}
.form-row .half + .half {
  float: right;
}
.form-row .third {
  float: left;
  width: 57%;
}
.form-row .third + .third {
  float: right;
  width: 40%;
}
.form-row .link:last-child {
  float: right;
  position: relative;
  top: 3px;
}
.form-row input + input {
  margin-top: 12px;
}
.form-row .rating {
  float: left;
}
.form-row .radio-selected-info {
  padding-left: 25px;
  font-size: 0.875em;
  line-height: 24px;
}

.form-oneline {
  padding: 20px 36px 0 0;
  border-bottom: 1px solid #e8e8e8;
  overflow: hidden;
  position: relative;
}
.form-oneline .radio {
  margin-bottom: 20px;
}
.form-oneline p {
  margin: 0 0 26px 26px;
  font-size: 0.875em;
  line-height: 24px;
  display: none;
}
.form-oneline .img-list {
  position: absolute;
  top: 20px;
  right: 0;
}

.top-checkbox {
  position: relative;
}
.top-checkbox > .checkbox {
  position: absolute;
  top: 2px;
  right: 0;
}

@media screen and (max-width: 680px) {
  input[type=text].short {
    width: 100%;
  }

  .form-row .half {
    float: none;
    width: 100%;
  }
  .form-row .half.no-label {
    padding-top: 0;
  }
  .form-row .half + .half {
    float: none;
    margin-top: 24px;
  }
  .form-row .third {
    float: none;
    width: 100%;
  }
  .form-row .third + .third {
    float: none;
    width: 100%;
    margin-top: 24px;
  }
}
@media screen and (max-width: 480px) {
  .top-checkbox .line-separator + form {
    margin-top: 66px;
  }
  .top-checkbox > .checkbox {
    position: absolute;
    top: 68px;
    left: 0;
    right: auto;
  }
}
/*------------------------------------------------------------------
[Table of contents]

1. Form Popup Versions / .form-popup
2. Magnific Popup Styles / MFP STYLES
3. Reponsive Layout / MEDIA QUERIES
-------------------------------------------------------------------*/
.form-popup {
  width: 430px;
  margin: 0 auto;
  background-color: #fff;
  position: relative;
}
.form-popup:after {
  content: "";
  display: table;
  clear: both;
}
.form-popup .close-btn {
  fill: #242424;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}
.form-popup.medium {
  width: 831px;
}
.form-popup .form-popup-column {
  float: left;
  width: 430px;
  padding: 45px 40px 40px;
}
.form-popup .form-popup-column.centered .subsection-title, .form-popup .form-popup-column.centered p {
  text-align: center;
}
.form-popup .form-popup-column.centered .line-separator {
  margin-left: auto;
  margin-right: auto;
}
.form-popup .form-popup-column.small {
  width: 415px;
  padding: 45px 48px 50px;
}
.form-popup .form-popup-column-separator {
  float: left;
  width: 1px;
  height: 400px;
  margin-top: 72px;
  background-color: #e8e8e8;
}

/*----------------
    MFP STYLES
----------------*/
.mfp-bg {
  opacity: 0.85;
  background-color: #000;
}

/* magnificPopup animations */
.mfp-anim {
  /* overlay at start */
}
.mfp-anim.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-in-out;
  /* overlay animate in */
  /* overlay animate out */
}
.mfp-anim.mfp-bg.mfp-ready {
  opacity: 0.8;
}
.mfp-anim.mfp-bg.mfp-removing {
  opacity: 0;
}
.mfp-anim.mfp-wrap {
  /* content at start */
  /* content animate in */
  /* content animate out */
}
.mfp-anim.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  transition: all 0.3s ease-in-out;
}
.mfp-anim.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.mfp-anim.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

@media screen and (max-width: 1024px) {
  .form-popup.medium {
    width: 430px;
  }
  .form-popup .form-popup-column {
    float: none;
  }
  .form-popup .form-popup-column-separator {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .form-popup {
    width: 100%;
  }
  .form-popup.medium {
    width: 100%;
  }
  .form-popup .form-popup-column {
    width: 100%;
    padding: 45px 20px 40px;
  }
  .form-popup .form-popup-column.small {
    width: 100%;
    padding: 45px 24px 50px;
  }
}
/*------------------------------------------------------------------
[Table of contents]

1. Button Versions / .button
2. Button List / .button-list
3. Reponsive Layout / MEDIA QUERIES
-------------------------------------------------------------------*/
.button {
  display: block;
  width: 200px;
  height: 46px;
  line-height: 46px;
  border-radius: 4px;
  background-color: #ff5400;
  color: #fff;
  font-size: 0.75em;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 0.15s ease-in-out;
}
.button.v2 {
  background-color: #fff;
  border: 2px solid #ff5400;
  color: #ff5400;
}
.button.v2:hover {
  background-color: #ff5400;
  color: #fff;
}
.button.cart-icon {
  padding-right: 10px;
}
.button.cart-icon .svg-cart {
  margin-right: 10px;
  position: relative;
  top: 5px;
}
.button.centered {
  margin: 0 auto;
}
.button.full {
  width: 100%;
}
.button.long {
  width: 270px;
}
.button.short {
  width: 170px;
}
.button.small {
  width: 116px;
  height: 32px;
  line-height: 32px;
  font-size: 0.625em;
}
.button.medium {
  width: 190px;
  height: 54px;
  line-height: 54px;
  font-size: 0.8125em;
}
.button.medium.long {
  width: 200px;
}
.button.medium.long.with-icon {
  padding-left: 32px;
}
.button.medium.long.with-icon .svg-arrow {
  margin-left: 20px;
}
.button.medium.full {
  width: 100%;
}
.button.medium.with-icon {
  padding-left: 28px;
  text-align: left;
}
.button.medium.with-icon.full {
  text-align: center;
  padding-right: 30px;
}
.button.medium.with-icon .svg-arrow {
  width: 6px;
  height: 8px;
  margin-left: 14px;
  position: relative;
  top: -1px;
}
.button.big {
  width: 300px;
  height: 66px;
  line-height: 66px;
  font-size: 1.0625em;
}
.button.large {
  height: 80px;
  line-height: 80px;
  font-size: 0.9375em;
}
.button.square {
  width: 32px;
  height: 32px;
  line-height: 32px;
  background-color: #b2b2b2;
  position: relative;
}
.button.square .svg-cart-small, .button.square .svg-heart {
  margin-top: 10px;
}
.button.square .svg-cart-small {
  position: absolute;
  left: 7px;
}
.button.square:hover {
  background-color: #ff5400;
}
.button.dark {
  background-color: #242424;
}
.button.dark:hover {
  background-color: #3e3e3e;
}
.button.light {
  background-color: #b2b2b2;
}
.button.light:hover {
  background-color: #ff5400;
}
.button.disabled {
  color: #8b8b8b;
  background-color: #f1f1f1;
}
.button.disabled:hover {
  background-color: #f1f1f1;
}
.button.blue {
  background-color: #2c5990;
}
.button.blue:hover {
  background-color: #3468a7;
}
.button.lightblue {
  background-color: #16bce5;
}
.button.lightblue:hover {
  background-color: #24ccf5;
}
.button:hover {
  background-color: #ff7200;
}

.button-list:after {
  content: "";
  display: table;
  clear: both;
}
.button-list.wrap-4 {
  width: 152px;
}
.button-list.wrap-3 {
  width: 112px;
}
.button-list.wrap-3 .button:nth-child(3n+3) {
  margin-right: 0;
}
.button-list.wrap-2 {
  width: 72px;
}
.button-list.wrap-2 .button:nth-child(2n+2) {
  margin-right: 0;
}
.button-list .button {
  float: left;
  margin-right: 8px;
}
.button-list .button:last-child {
  margin-right: 0;
}

@media screen and (max-width: 680px) {
  .button.long {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .button.big {
    width: 100%;
  }
}
/*------------------------------------------------------------------
[Table of contents]

1. Svg Arrow / .svg-arrow
2. Svg Checkmark / .svg-check
3. Svg Magnifying Glass / .svg-mag-glass
4. Svg Cross / .svg-cross
5. Svg Cart / .svg-cart
6. Svg Cart Small / .svg-cart-small
7. Svg Heart / .svg-heart
8. Svg Burger / .svg-burger
9. Svg Plus Sign / .svg-plus
10. Svg Minus Sign / .svg-minus
11. Svg Grid / .svg-grid
12. Svg List / .svg-list
13. Svg Check Big / .svg-check-big
14. Svg Restart / .svg-restart
-------------------------------------------------------------------*/
.svg-arrow {
  fill: #fff;
  width: 8px;
  height: 6px;
}
.svg-arrow.medium {
  width: 5px;
  height: 9px;
}
.svg-arrow.small {
  width: 7px;
  height: 6px;
}
.svg-arrow.tiny {
  width: 4px;
  height: 8px;
}
.svg-arrow.inverted {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.svg-arrow.face-down {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.svg-arrow.face-up {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.svg-check {
  fill: #fff;
  width: 10px;
  height: 7px;
}
.svg-check.medium {
  width: 20px;
  height: 16px;
}

.svg-mag-glass {
  fill: #fff;
  width: 12px;
  height: 12px;
}

.svg-cross {
  fill: #fff;
  width: 10px;
  height: 10px;
}
.svg-cross.small {
  width: 9px;
  height: 9px;
}
.svg-cross.medium {
  width: 12px;
  height: 12px;
}
.svg-cross.large {
  width: 102px;
  height: 102px;
}

.svg-cart {
  fill: #fff;
  width: 22px;
  height: 18px;
}
.svg-cart.large {
  width: 321px;
  height: 262px;
}

.svg-cart-small {
  fill: #fff;
  width: 16px;
  height: 13px;
}

.svg-heart {
  fill: #fff;
  width: 14px;
  height: 12px;
}

.svg-burger {
  fill: #fff;
  width: 22px;
  height: 14px;
}

.svg-plus, .svg-minus {
  fill: #ff5400;
  width: 10px;
  height: 10px;
}

.svg-plus.medium {
  fill: #fff;
  width: 12px;
  height: 12px;
}

.svg-grid {
  fill: #b2b2b2;
  width: 16px;
  height: 16px;
}

.svg-list {
  fill: #b2b2b2;
  width: 16px;
  height: 14px;
}

.svg-check-big {
  width: 130px;
  height: 101px;
}

.svg-restart {
  fill: #fff;
  width: 10px;
  height: 10px;
}

/*------------------------------------------------------------------
[Table of contents]

1. General Styles / GENERAL STYLES
2. Logo / .logo
3. Title / .title
4. Subsection Title / .subsection-title
5. Line Separator / .line-separator
6. Promo / .promo
7. Rating / .rating
8. Product Description / .product-description
9. Product Price / .product-price
10. Product Quantity / .product-quantity
11. Product Image / .product-img
12. Timestamp / .timestamp
13. Tabbed Content / .tabbed-content
14. Feature Enum / .feature-enum
15. Reviews / .reviews
16. Oneline / .oneline
17. Steps Header / .steps-header
18. Image List / .img-list
19. Details List / .details-list
20. Quote Box / .quote-box
21. Regular List / .regular-list
22. Reponsive Layout / MEDIA QUERIES
-------------------------------------------------------------------*/
/*--------------------
    GENERAL STYLES
--------------------*/
body {
  overflow-x: hidden;
}

h1, h2, h3, h4,
h5, h6, p, a {
  font-family: "Lato", sans-serif;
}

h1, h2, h3, h4,
h5, h6 {
  text-transform: uppercase;
  font-weight: 900;
}

p {
  color: #333333;
  font-size: 1em;
  line-height: 30px;
}
p.small {
  font-size: 0.9375em;
  line-height: 28px;
}
p.small + form {
  margin-top: 30px;
}
p.tiny {
  font-size: 0.8125em;
  line-height: 24px;
}

a.link {
  color: #8b8b8b;
  font-size: 0.875em;
  transition: color 0.15s ease-in-out;
}
a.link:hover {
  color: #ff5400;
}
a.link.no-hover {
  color: #ff5400;
}
a.link.medium {
  font-size: 1em;
}

::-moz-selection {
  color: #fff;
  background: #ff5400;
}

::selection {
  color: #fff;
  background: #ff5400;
}

span.bold {
  color: #ff5400;
}

.logo {
  width: 145px;
  height: 27px;
}

.title {
  color: #242424;
  font-size: 1.125em;
  font-weight: 900;
  line-height: 1em;
}
.title.secondary {
  color: #fff;
}
.title.large {
  font-size: 2.625em;
}
.title.bigger {
  font-size: 1.875em;
}
.title.medium {
  font-size: 1.5em;
}
.title.small {
  font-size: 1em;
}
.title.tiny {
  font-size: 0.875em;
}
.title.micro {
  font-size: 0.8125em;
}

.subsection-title {
  font-size: 1.25em;
}
.subsection-title.medium {
  font-size: 1.5em;
}
.subsection-title.big {
  font-size: 1.75em;
}

.line-separator {
  width: 30px;
  height: 3px;
  border: none;
  margin-top: 18px;
  background-color: #ff5400;
  text-align: left;
}
.line-separator.big {
  width: 50px;
  height: 4px;
  margin: 24px auto 26px;
}
.line-separator + p.small {
  margin-top: 30px;
}
.line-separator + form {
  margin-top: 35px;
}
.line-separator + form.top-short {
  margin-top: 20px;
}
.line-separator + .widget-dropdown {
  margin-top: 10px;
}
.line-separator + .checkbox-list {
  margin-top: 28px;
}
.line-separator + .range-slider {
  margin-top: 34px;
}
.line-separator + .product-preview-list {
  margin-top: 26px;
}
.line-separator + .comment-list {
  margin-top: 60px;
}
.line-separator + .oneline {
  margin-top: 16px;
}
.line-separator + .details-list {
  margin-top: 40px;
}

.promo {
  width: 230px;
  height: 190px;
}

.rating {
  width: 76px;
}
.rating:after {
  content: "";
  display: table;
  clear: both;
}
.rating.changeable .rating-item {
  cursor: pointer;
}
.rating .rating-item {
  float: left;
  margin-right: 4px;
}
.rating .rating-item:last-child {
  margin-right: 0;
}
.rating .rating-item.filled .svg-star {
  fill: #ff5400;
}
.rating .rating-item .svg-star {
  width: 12px;
  height: 11px;
  fill: #b2b2b2;
}
.rating.small {
  width: 71px;
}
.rating.small .rating-item .svg-star {
  width: 11px;
  height: 10px;
}
.rating.medium {
  width: 100px;
}
.rating.medium .rating-item {
  margin-right: 5px;
}
.rating.medium .rating-item:last-child {
  margin-right: 0;
}
.rating.medium .rating-item .svg-star {
  width: 16px;
  height: 14px;
}

.product-description {
  font-size: 0.875em;
  line-height: 1em;
}
.product-description.medium {
  font-size: 0.9375em;
}
.product-description.small {
  font-size: 0.8125em;
}

.product-price, .product-quantity {
  color: #242424;
  font-weight: 900;
  line-height: 1em;
}

.product-price {
  font-size: 1em;
}
.product-price.small {
  font-size: 0.8125em;
}
.product-price.medium {
  font-size: 1.375em;
}
.product-price.big {
  font-size: 1.75em;
}

.product-quantity {
  font-size: 0.875em;
}

.product-img {
  width: 270px;
  height: 290px;
}
.product-img.large {
  width: 612px;
  height: 459px;
}
.product-img.big {
  width: 460px;
  height: 494px;
}
.product-img.small {
  width: 100px;
  height: 100px;
}
.product-img.tiny {
  width: 70px;
  height: 70px;
}

.timestamp {
  color: #b2b2b2;
  font-size: 0.875em;
  line-height: 1em;
}
.timestamp a {
  color: #b2b2b2;
  transition: color 0.15s ease-in-out;
}
.timestamp a:hover {
  color: #ff5400;
}

.tabbed-content.short {
  width: 970px;
  margin: 0 auto;
}
.tabbed-content.separated {
  margin-top: 100px;
}
.tabbed-content .tab-separator {
  height: 1px;
  background-color: #e8e8e8;
}
.tabbed-content.centered {
  text-align: center;
}
.tabbed-content.centered .tabbed-content-header .tabbed-content-item-title {
  margin-right: 100px;
}
.tabbed-content .tabbed-content-header {
  display: inline-block;
  padding-bottom: 24px;
}
.tabbed-content .tabbed-content-header:after {
  content: "";
  display: table;
  clear: both;
}
.tabbed-content .tabbed-content-header .tabbed-content-item-title {
  float: left;
  margin-right: 60px;
  cursor: pointer;
  transition: color 0.15s ease-in-out;
  position: relative;
}
.tabbed-content .tabbed-content-header .tabbed-content-item-title:last-child {
  margin-right: 0;
}
.tabbed-content .tabbed-content-header .tabbed-content-item-title.selected {
  color: #ff5400;
}
.tabbed-content .tabbed-content-header .tabbed-content-item-title.selected .triangle {
  opacity: 1;
  visibility: visible;
}
.tabbed-content .tabbed-content-header .tabbed-content-item-title .triangle {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #e8e8e8;
  position: absolute;
  top: 38px;
  left: 50%;
  margin-left: -10px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease-in-out;
}
.tabbed-content .tabbed-content-item {
  padding: 80px 0;
  text-align: left;
}
.tabbed-content .tabbed-content-item.padded {
  padding: 80px 70px;
}
.tabbed-content .tabbed-content-item.hidden {
  display: none;
}
.tabbed-content .tabbed-content-item .feature-enum {
  margin-top: 70px;
}

.feature-enum {
  width: 830px;
  margin: 0 auto;
}
.feature-enum:after {
  content: "";
  display: table;
  clear: both;
}
.feature-enum.full {
  width: 100%;
}
.feature-enum.full .feature-enum-item {
  width: 33.3333333333%;
  margin-bottom: 74px;
}
.feature-enum.full .feature-enum-item .title {
  margin: 54px 0 20px;
  font-size: 1.125em;
}
.feature-enum.full .feature-enum-item:first-child {
  width: 33.3333333333%;
}
.feature-enum .feature-enum-item {
  float: left;
  width: 415px;
  padding: 0 40px;
  text-align: center;
}
.feature-enum .feature-enum-item:first-child {
  width: 414px;
}
.feature-enum .feature-enum-item .s-icon {
  color: #ff5400;
  font-size: 46px;
}
.feature-enum .feature-enum-item .title {
  margin: 24px 0 30px;
  font-size: 1.625em;
  font-weight: 700;
  text-transform: none;
}
.feature-enum .separator {
  float: left;
  width: 1px;
  height: 200px;
  margin-top: 40px;
  background-color: #e8e8e8;
}

.reviews .title {
  font-size: 2.875em;
}
.reviews .title.review-title {
  font-size: 1.25em;
}
.reviews .reviews-header {
  margin-bottom: 50px;
  position: relative;
}
.reviews .reviews-header:after {
  content: "";
  display: table;
  clear: both;
}
.reviews .reviews-header .title:first-child {
  margin-bottom: 14px;
}
.reviews .reviews-header .title.review-title {
  float: left;
  margin-right: 14px;
}
.reviews .reviews-header .rating {
  float: left;
  position: relative;
  top: 3px;
}
.reviews .reviews-header .button {
  width: 170px;
  position: absolute;
  top: 4px;
  right: 0;
}
.reviews .reviews-item {
  margin-bottom: 46px;
}
.reviews .reviews-item:last-child {
  margin-bottom: 0;
}
.reviews .reviews-item .rating {
  margin: 8px 0 20px;
}
.reviews .reviews-item .review-author {
  color: #242424;
  font-weight: 700;
}
.reviews .reviews-item .timestamp {
  margin-top: 14px;
}

.oneline {
  color: #242424;
  font-size: 0.9375em;
  font-weight: 700;
  line-height: 60px;
  border-bottom: 1px solid #e8e8e8;
}
.oneline .annotation {
  float: right;
  font-weight: 900;
}

.steps-header {
  height: 75px;
  margin-bottom: 80px;
  border-bottom: 1px solid #e8e8e8;
  text-align: center;
}
.steps-header:after {
  content: "";
  display: table;
  clear: both;
}
.steps-header .steps-header-item {
  line-height: 75px;
}
.steps-header .steps-header-item:after {
  content: "";
  display: table;
  clear: both;
}
.steps-header .steps-header-item.current .step-number {
  background-color: #ff5400;
}
.steps-header .steps-header-item.complete .step-number {
  background-color: #242424;
}
.steps-header .steps-header-item:nth-child(1) {
  float: left;
}
.steps-header .steps-header-item:nth-child(2) {
  display: inline-block;
}
.steps-header .steps-header-item:nth-child(3) {
  float: right;
}
.steps-header .steps-header-item .step-number {
  float: left;
  width: 34px;
  height: 34px;
  margin: 21px 10px 0 0;
  border-radius: 50%;
  background-color: #b2b2b2;
}
.steps-header .steps-header-item .step-number p {
  color: #fff;
  font-size: 0.75em;
  line-height: 34px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}
.steps-header .steps-header-item .title {
  float: left;
  line-height: 75px;
}

.img-list:after {
  content: "";
  display: table;
  clear: both;
}
.img-list .img-list-item {
  float: left;
  margin-right: 14px;
}
.img-list .img-list-item.card-01 {
  width: 36px;
  height: 13px;
  background-image: url("../img/shop/card_01.png");
  position: relative;
  top: 3px;
}
.img-list .img-list-item.card-02 {
  width: 31px;
  height: 19px;
  background-image: url("../img/shop/card_02.png");
}
.img-list .img-list-item.card-03 {
  width: 32px;
  height: 19px;
  background-image: url("../img/shop/card_03.png");
}
.img-list .img-list-item.card-04 {
  width: 31px;
  height: 19px;
  background-image: url("../img/shop/card_04.png");
}
.img-list .img-list-item.card-05 {
  width: 62px;
  height: 16px;
  background-image: url("../img/shop/card_05.png");
}
.img-list .img-list-item:last-child {
  margin-right: 0;
}

.details-list {
  width: 470px;
  margin: 0 auto;
}
.details-list:after {
  content: "";
  display: table;
  clear: both;
}
.details-list.full {
  width: 100%;
}
.details-list.full .details-list-item {
  float: none;
  width: 100%;
}
.details-list .details-list-item {
  float: left;
  width: 220px;
  margin: 0 30px 30px 0;
}
.details-list .details-list-item:nth-child(2n+2) {
  margin-right: 0;
}
.details-list .details-list-item .details-list-title {
  margin-bottom: 20px;
  font-size: 0.9375em;
  font-weight: 700;
  text-transform: none;
}
.details-list .details-list-item .details-list-info {
  font-size: 0.875em;
  line-height: 24px;
}
.details-list .details-list-item .details-list-info span {
  color: #242424;
}
.details-list .details-list-item .details-list-info span:nth-child(2) {
  margin-left: 16px;
}
.details-list .details-list-item .details-list-info span.push {
  margin-right: 8px;
}

.quote-box {
  position: relative;
}
.quote-box .quote-text {
  margin-bottom: 12px;
  font-size: 1.375em;
  font-style: italic;
}
.quote-box .quote-author {
  color: #242424;
  font-size: 0.75em;
  font-weight: 900;
}
.quote-box.v1 {
  padding: 40px 12px 36px 54px;
  border-left: 6px solid #ff5400;
  background-color: #fff;
}
.quote-box.v1:before {
  content: '"';
  font-family: "Lato", sans-serif;
  font-size: 3.75em;
  line-height: 1em;
  position: absolute;
  top: 10px;
  left: 16px;
}
.quote-box.v2, .quote-box.v3 {
  padding: 40px 35px 36px;
  border-radius: 4px;
}
.quote-box.v2 {
  background-color: #ff5400;
}
.quote-box.v2:before {
  content: '"';
  color: #242424;
  font-family: "Lato", sans-serif;
  font-size: 21.375em;
  line-height: 1em;
  position: absolute;
  top: -58px;
  left: -26px;
  opacity: 0.1;
}
.quote-box.v2 .quote-text {
  color: #fff;
}
.quote-box.v3 {
  background-color: #f1f1f1;
}
.quote-box.v3:before {
  content: '"';
  width: 30px;
  height: 30px;
  padding: 5px 0 0 8px;
  background-color: #ff5400;
  border-radius: 4px;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 2.25em;
  line-height: 1em;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
}

.regular-list {
  margin: 35px 0 0 35px;
}
.regular-list.v1 .regular-list-item {
  padding-left: 35px;
}
.regular-list.v1 .regular-list-item .triangle {
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid #ff5400;
  position: absolute;
  top: 4px;
  left: 10px;
}
.regular-list.v2 .regular-list-item {
  padding-left: 40px;
}
.regular-list.v2 .regular-list-item .item-number {
  color: #242424;
  font-size: 0.875em;
  font-weight: 900;
  position: absolute;
  top: 2px;
  left: 5px;
}
.regular-list .regular-list-item {
  margin-bottom: 16px;
  position: relative;
}
.regular-list .regular-list-item p {
  line-height: 1em;
}

@media screen and (max-width: 1260px) {
  .tabbed-content.short {
    width: 100%;
  }
  .tabbed-content .tabbed-content-item {
    padding: 80px 30px;
  }
  .tabbed-content .tabbed-content-item.padded {
    padding: 80px 30px;
  }
}
@media screen and (max-width: 1024px) {
  .tabbed-content.centered .tabbed-content-header .tabbed-content-item-title {
    margin: 0 0 20px 0;
  }
  .tabbed-content .tabbed-content-header .tabbed-content-item-title {
    float: none;
    margin: 0 0 20px 0;
  }
  .tabbed-content .tabbed-content-header .tabbed-content-item-title:last-child {
    margin-bottom: 0;
  }
  .tabbed-content .tabbed-content-header .tabbed-content-item-title .triangle {
    display: none;
  }

  .feature-enum {
    width: 570px;
  }
  .feature-enum.full {
    width: 570px;
  }
  .feature-enum.full .feature-enum-item {
    width: 270px;
    margin-right: 30px;
    padding: 0;
  }
  .feature-enum.full .feature-enum-item:first-child {
    width: 270px;
  }
  .feature-enum.full .feature-enum-item:nth-child(2n+2) {
    margin-right: 0;
  }
  .feature-enum .feature-enum-item {
    width: 270px;
    padding: 0;
  }
  .feature-enum .feature-enum-item:first-child {
    width: 270px;
    margin-right: 30px;
  }
  .feature-enum .separator {
    display: none;
  }
}
@media screen and (max-width: 680px) {
  .tabbed-content {
    width: 95%;
  }
  .tabbed-content.short {
    width: 95%;
  }
  .tabbed-content .tabbed-content-item {
    padding: 80px 0;
  }
  .tabbed-content .tabbed-content-item.padded {
    padding: 80px 0;
  }

  .feature-enum {
    width: 270px;
  }
  .feature-enum.full {
    width: 270px;
  }
  .feature-enum.full .feature-enum-item {
    margin-right: 0;
  }
  .feature-enum.full .feature-enum-item:first-child {
    margin-bottom: 74px;
  }
  .feature-enum .feature-enum-item:first-child {
    margin: 0 0 60px 0;
  }

  .reviews .reviews-header .rating {
    margin-bottom: 20px;
  }
  .reviews .reviews-header .button {
    position: static;
    clear: both;
  }

  .steps-header {
    height: auto;
  }
  .steps-header .steps-header-item {
    width: 100%;
    padding-left: 10px;
  }
  .steps-header .steps-header-item:nth-child(1), .steps-header .steps-header-item:nth-child(3) {
    float: none;
  }

  .details-list {
    width: 220px;
  }
  .details-list .details-list-item {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .subsection-title.big {
    line-height: 1.2;
  }

  .regular-list {
    margin-left: 12px;
  }
}
/*------------------------------------------------------------------
[Table of contents]

1. Widget Line Container / .widget-line-wrap
2. Widget Line 2 / .widget-line-2
3. Widget Line Versions / .widget-line
4. Actions List Versions / .actions-list
5. Reponsive Layout / MEDIA QUERIES
-------------------------------------------------------------------*/
.widget-line-wrap {
  background-color: #242424;
}
.widget-line-wrap.dark {
  background-color: #1b1b1b;
}
.widget-line-wrap.dark .actions-list {
  background-color: #1b1b1b;
}
.widget-line-wrap.dark .actions-list .dropdown-list {
  background-color: #1b1b1b;
  outline: 1px solid #1b1b1b;
}
.widget-line-wrap.dark .actions-list input[type=text] {
  background-color: #1b1b1b;
}
.widget-line-wrap.light {
  background-color: #fff;
  border-bottom: 1px solid #e8e8e8;
}
.widget-line-wrap.light .actions-list {
  background-color: #fff;
}
.widget-line-wrap.light .actions-list .actions-list-item {
  border-color: #e8e8e8;
}
.widget-line-wrap.light .actions-list .actions-list-item .social-link a {
  color: #b2b2b2;
}
.widget-line-wrap.light .actions-list .actions-list-item .social-link a:hover {
  color: #fff;
}
.widget-line-wrap.light .actions-list .actions-list-item .action-button {
  color: #8b8b8b;
}
.widget-line-wrap.light .actions-list .actions-list-item .action-button .svg-arrow {
  fill: #b2b2b2;
}
.widget-line-wrap.light .actions-list .dropdown-list {
  background-color: #fff;
  outline-color: #e8e8e8;
  border-color: #e8e8e8;
  border-top-color: #fff;
}
.widget-line-wrap.light .actions-list .dropdown-list .dropdown-list-item a {
  color: #8b8b8b;
}
.widget-line-wrap.light .actions-list .search-form .svg-mag-glass,
.widget-line-wrap.light .actions-list .search-form .svg-cross {
  fill: #ff5400;
}
.widget-line-wrap.light .actions-list .search-form input[type=text] {
  color: #8b8b8b;
  background-color: #fff;
}

.widget-line-2 {
  display: none;
}

.widget-line {
  height: 50px;
}
.widget-line:after {
  content: "";
  display: table;
  clear: both;
}
.widget-line.big {
  height: 60px;
}
.widget-line.big .actions-list .actions-list-item .social-link a {
  line-height: 60px;
}
.widget-line.big .actions-list .actions-list-item .action-button {
  line-height: 60px;
}
.widget-line.big .copyright {
  line-height: 60px;
}
.widget-line .copyright {
  float: left;
  color: #666;
  font-size: 0.8125em;
  margin-left: 8px;
  line-height: 50px;
}

.actions-list {
  background-color: #242424;
}
.actions-list:after {
  content: "";
  display: table;
  clear: both;
}
.actions-list.left {
  float: left;
}
.actions-list.right {
  float: right;
}
.actions-list .actions-list-item {
  float: left;
  border-left: 1px solid #3e3e3e;
  position: relative;
}
.actions-list .actions-list-item.last {
  border-right: 1px solid #3e3e3e;
}
.actions-list .actions-list-item.full {
  float: none;
}
.actions-list .actions-list-item.void {
  border: none;
}
.actions-list .actions-list-item.void:last-child {
  border: none;
}
.actions-list .actions-list-item:last-child {
  border-right: 1px solid #3e3e3e;
}
.actions-list .actions-list-item .social-link {
  width: 50px;
}
.actions-list .actions-list-item .social-link a {
  display: block;
  text-align: center;
  line-height: 50px;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.actions-list .actions-list-item .social-link a:hover {
  background-color: #ff5400;
}
.actions-list .actions-list-item .action-button {
  display: block;
  padding: 0 18px;
  color: #fff;
  font-size: 0.6875em;
  line-height: 50px;
  position: relative;
}
.actions-list .actions-list-item .action-button.regular {
  color: #8b8b8b;
}
.actions-list .actions-list-item .action-button .bold {
  margin-left: 5px;
}
.actions-list .actions-list-item .options-dropdown {
  text-transform: uppercase;
  padding-right: 12px;
}
.actions-list .actions-list-item .options-dropdown .svg-arrow {
  margin-left: 10px;
}
.actions-list .actions-list-item .dropdown-list {
  width: 100%;
  padding: 8px 0;
  background-color: #242424;
  outline: 1px solid #242424;
  border-top: 1px solid #3e3e3e;
  position: absolute;
  top: 50px;
  left: 0;
  z-index: 10;
  display: none;
}
.actions-list .actions-list-item .dropdown-list .dropdown-list-item a {
  display: block;
  padding-left: 18px;
  color: #fff;
  font-size: 0.6875em;
  line-height: 24px;
  text-transform: uppercase;
  transition: color 0.3s ease-in-out;
}
.actions-list .actions-list-item .dropdown-list .dropdown-list-item a:hover {
  color: #ff5400;
}
.actions-list .actions-list-item .dropdown-list .dropdown-list-item.selected a {
  color: #ff5400;
}
.actions-list .actions-list-item .search-form {
  min-width: 210px;
  position: relative;
  transition: min-width 0.3s ease-in-out;
}
.actions-list .actions-list-item .search-form.extended {
  min-width: 260px;
}
.actions-list .actions-list-item .search-form.v2 {
  border: 1px solid #e8e8e8;
  border-radius: 0;
  position: absolute;
  top: 89px;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.actions-list .actions-list-item .search-form.v2.open {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 52px);
  transform: translate(0, 52px);
}
.actions-list .actions-list-item .search-form input[type=text] {
  width: 100%;
  padding-right: 50px;
  color: #fff;
}
.actions-list .actions-list-item .search-form .search-submit, .actions-list .actions-list-item .search-form .search-cancel {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}
.actions-list .actions-list-item .search-form .search-submit.hidden, .actions-list .actions-list-item .search-form .search-cancel.hidden {
  display: none;
}
.actions-list .actions-list-item ::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #8b8b8b;
}
.actions-list .actions-list-item :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #8b8b8b;
  opacity: 1;
}
.actions-list .actions-list-item ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #8b8b8b;
  opacity: 1;
}
.actions-list .actions-list-item :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #8b8b8b;
}
.actions-list .actions-list-item ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #8b8b8b;
}
.actions-list .actions-list-item input[type=text] {
  padding: 0 18px;
  line-height: 50px;
  border: none;
  background-color: #242424;
  font-size: 0.6875em;
}

@media screen and (max-width: 620px) {
  .widget-line-copy .actions-list {
    display: none;
  }
  .widget-line-copy .copyright {
    float: none;
    text-align: center;
  }
}
/*------------------------------------------------------------------
[Table of contents]

1. Navigation Container / .navigation-wrap
2. Navigation / .navigation
3. Main Menu / .main-menu
4. Mobile Menu / .mobile-menu-wrap
5. Cart Dropdown Container / .cart-dropdown-wrap
6. Search Control / .search-control
7. Cart Dropdown Control / .cart-dropdown-control
8. Cart Dropdown / .cart-dropdown
9. Menu Dropdown / .menu-dropdown
10. Content Dropdown / .content-dropdown
11. Link List / .link-list
12. Reponsive Layout / MEDIA QUERIES
-------------------------------------------------------------------*/
.navigation-wrap {
  background-color: #fff;
}

.navigation {
  height: 90px;
}
.navigation:after {
  content: "";
  display: table;
  clear: both;
}
.navigation .logo {
  float: left;
  margin-top: 35px;
}
.navigation .cart-dropdown-control, .navigation .main-menu {
  float: right;
}

.main-menu {
  position: relative;
  margin-right: 18px;
}
.main-menu:after {
  content: "";
  display: table;
  clear: both;
}
.main-menu .main-menu-item {
  float: left;
  position: relative;
}
.main-menu .main-menu-item.sub {
  position: static;
}
.main-menu .main-menu-item:hover > a {
  color: #ff5400;
}
.main-menu .main-menu-item:hover > .menu-dropdown, .main-menu .main-menu-item:hover > .content-dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 100px);
  transform: translate(0, 100px);
  pointer-events: auto;
}
.main-menu .main-menu-item > a {
  display: block;
  padding: 0 30px;
  color: #242424;
  font-size: 0.75em;
  line-height: 90px;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 0.15s ease-in-out;
  position: relative;
}

.main-menu .main-menu-item > a.active {color: #ff5400}
 
.main-menu .main-menu-item > a .svg-arrow {
  fill: #ff5400;
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-left: -4px;
  pointer-events: none;
}

.mobile-menu-wrap {
  background-color: #242424;
  display: none;
}
.mobile-menu-wrap .mobile-menu-control {
  height: 50px;
  padding-top: 18px;
  text-align: center;
  cursor: pointer;
}
.mobile-menu-wrap .mobile-menu {
  border-top: 1px solid #3e3e3e;
  display: none;
}
.mobile-menu-wrap .mobile-menu .mobile-menu-item {
  position: relative;
}
.mobile-menu-wrap .mobile-menu .mobile-menu-item > a {
  display: block;
  height: 50px;
  padding: 0 30px;
  border-bottom: 1px solid #3e3e3e;
  color: #fff;
  font-size: 0.75em;
  line-height: 50px;
  font-weight: 900;
  text-transform: uppercase;
  transition: background-color 0.15s ease-in-out;
}
.mobile-menu-wrap .mobile-menu .mobile-menu-item > a:hover {
  background-color: #2d2d2d;
}
.mobile-menu-wrap .mobile-menu .mobile-menu-item > a.open .svg-arrow.rotable {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.mobile-menu-wrap .mobile-menu .mobile-menu-item > a .bold {
  float: right;
}
.mobile-menu-wrap .mobile-menu .mobile-menu-item > a .selected-option {
  margin-left: 6px;
  color: #ff5400;
}
.mobile-menu-wrap .mobile-menu .mobile-menu-item.void a {
  color: #8b8b8b;
}
.mobile-menu-wrap .mobile-menu .mobile-menu-item .svg-arrow {
  position: absolute;
  top: 20px;
  right: 32px;
  pointer-events: none;
  transition: transform 0.3s ease-in-out;
}
.mobile-menu-wrap .mobile-menu-dropdown {
  padding: 16px 0;
  border-bottom: 1px solid #3e3e3e;
  background-color: #1b1b1b;
  display: none;
}
.mobile-menu-wrap .mobile-menu-dropdown .mobile-menu-dropdown-item > a {
  display: block;
  height: 40px;
  padding: 0 38px;
  color: #8b8b8b;
  font-size: 0.6875em;
  line-height: 40px;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 0.3s ease-in-out;
}
.mobile-menu-wrap .mobile-menu-dropdown .mobile-menu-dropdown-item > a:hover {
  color: #fff;
}
.mobile-menu-wrap .mobile-menu-dropdown .mobile-menu-dropdown-item.selected > a {
  color: #fff;
}

.cart-dropdown-wrap {
  position: relative;
  z-index: 9999;
}
.cart-dropdown-wrap .cart-dropdown {
  top: 0;
  right: 0;
}

.search-control {
  float: right;
  width: 50px;
  height: 50px;
  margin: 20px 20px 0 10px;
  padding-top: 17px;
  border-radius: 50%;
  background-color: #242424;
  text-align: center;
  cursor: pointer;
}
.search-control .svg-mag-glass-big {
  fill: #fff;
  width: 16px;
  height: 16px;
}

.cart-dropdown-control {
  width: 90px;
  height: 90px;
  padding-top: 35px;
  background-color: #ff5400;
  text-align: center;
  cursor: pointer;
  position: relative;
}
.cart-dropdown-control.v2 {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding-top: 17px;
  margin-top: 20px;
}
.cart-dropdown-control.v2 .cart-item-quantity {
  top: 0;
  right: 0;
}
.cart-dropdown-control .svg-cross.hidden, .cart-dropdown-control .svg-cart.hidden {
  display: none;
}
.cart-dropdown-control .cart-item-quantity {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  padding-left: 1px;
  background-color: #242424;
  position: absolute;
  top: 28px;
  right: 24px;
}
.cart-dropdown-control .cart-item-quantity p {
  color: #fff;
  font-size: 0.625em;
  font-weight: 700;
  line-height: 16px;
}

.cart-dropdown {
  width: 500px;
  background-color: #fff;
  text-align: left;
  position: absolute;
  cursor: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.cart-dropdown.opened {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 90px);
  transform: translate(0, 90px);
}
.cart-dropdown .cart-dropdown-items {
  overflow-y: auto;
  border-top: 1px solid #e8e8e8;
}
.cart-dropdown .cart-dropdown-items .cart-dropdown-item {
  height: 149px;
  padding: 24px 30px 0 148px;
  border-bottom: 1px solid #e8e8e8;
  position: relative;
}
.cart-dropdown .cart-dropdown-items .cart-dropdown-item:last-child {
  border-bottom: none;
}
.cart-dropdown .cart-dropdown-items .cart-dropdown-item .product-img {
  position: absolute;
  top: 24px;
  left: 30px;
}
.cart-dropdown .cart-dropdown-items .cart-dropdown-item .cart-dropdown-item-info {
  padding-top: 10px;
}
.cart-dropdown .cart-dropdown-items .cart-dropdown-item .cart-dropdown-item-info .title {
  display: inline-block;
  margin-bottom: 6px;
}
.cart-dropdown .cart-dropdown-items .cart-dropdown-item .cart-dropdown-item-info .product-description {
  margin-bottom: 4px;
}
.cart-dropdown .cart-dropdown-items .cart-dropdown-item .cart-dropdown-item-info .rating {
  margin-bottom: 6px;
}
.cart-dropdown .cart-dropdown-items .cart-dropdown-item .cart-dropdown-item-info .product-price {
  position: absolute;
  top: 34px;
  right: 80px;
}
.cart-dropdown .cart-dropdown-items .cart-dropdown-item .svg-cross {
  fill: #b2b2b2;
  position: absolute;
  top: 34px;
  right: 30px;
  cursor: pointer;
}
.cart-dropdown .cart-dropdown-subtotal {
  height: 60px;
  padding: 0 80px 0 148px;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}
.cart-dropdown .cart-dropdown-subtotal:after {
  content: "";
  display: table;
  clear: both;
}
.cart-dropdown .cart-dropdown-subtotal p {
  float: right;
  font-size: 0.9375em;
  line-height: 60px;
}
.cart-dropdown .cart-dropdown-subtotal .title {
  float: left;
  font-weight: 700;
}
.cart-dropdown .cart-dropdown-actions:after {
  content: "";
  display: table;
  clear: both;
}
.cart-dropdown .cart-dropdown-actions .button {
  float: left;
  width: 50%;
  border-radius: 0;
}

.menu-dropdown {
  width: 220px;
  background-color: #242424;
  position: absolute;
  top: -10px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
.menu-dropdown .menu-dropdown-item {
  position: relative;
}
.menu-dropdown .menu-dropdown-item > a {
  display: block;
  padding-left: 20px;
  border-bottom: 1px solid #3e3e3e;
  color: #8b8b8b;
  font-size: 0.6875em;
  line-height: 48px;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 0.15s ease-in-out;
}
.menu-dropdown .menu-dropdown-item > .menu-dropdown {
  top: 0;
  left: 110px;
}
.menu-dropdown .menu-dropdown-item .svg-arrow {
  fill: #8b8b8b;
  pointer-events: none;
  position: absolute;
  top: 20px;
  right: 18px;
}
.menu-dropdown .menu-dropdown-item:hover > a {
  color: #fff;
}
.menu-dropdown .menu-dropdown-item:hover > .svg-arrow {
  fill: #fff;
}
.menu-dropdown .menu-dropdown-item:hover > .menu-dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(110px, 0);
  transform: translate(110px, 0);
  pointer-events: auto;
}
.menu-dropdown .menu-dropdown-item:last-child > a {
  border-bottom: none;
}

.content-dropdown {
  width: 970px;
  padding: 50px;
  background-color: #242424;
  position: absolute;
  top: -10px;
  right: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 9999;
  transition: all 0.3s ease-in-out;
}
.content-dropdown:after {
  content: "";
  display: table;
  clear: both;
}
.content-dropdown .content-dropdown-column {
  float: left;
  margin-right: 80px;
}
.content-dropdown .content-dropdown-column:after {
  content: "";
  display: table;
  clear: both;
}
.content-dropdown .content-dropdown-column .link-list {
  float: left;
  margin: 30px 48px 0 0;
}
.content-dropdown .content-dropdown-column .link-list:last-child {
  margin-right: 0;
}
.content-dropdown.with-bg {
  background-image: url("../img/promo/helmet.png");
  background-repeat: no-repeat;
  background-position: 100% 50px;
}
.content-dropdown .promo {
  position: absolute;
  top: 74px;
  right: 50px;
}

.link-list .link-list-item {
  margin-bottom: 16px;
}
.link-list .link-list-item a {
  display: block;
  color: #8b8b8b;
  font-size: 0.6875em;
  font-weight: 900;
  transition: color 0.15s ease-in-out;
}
.link-list .link-list-item:hover a {
  color: #fff;
}
.link-list .link-list-item:last-child {
  margin-bottom: 0;
}
.link-list.simple .link-list-item a {
  text-transform: uppercase;
}
.link-list.decorated .link-list-item a {
  padding-left: 18px;
  font-size: 0.875em;
  font-weight: 400;
  position: relative;
}
.link-list.decorated .link-list-item a .svg-arrow {
  fill: #ff5400;
  pointer-events: none;
  position: absolute;
  top: 4px;
  left: 0;
}

@media screen and (max-width: 1260px) {
  .navigation {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
  }
  
  

  .widget-line-1, .main-menu {
    display: none;
  }

  .mobile-menu-wrap, .widget-line-2 {
    display: block;
  }
}
@media screen and (max-width: 680px) {
  .cart-dropdown {
    width: 100%;
    z-index: 9999;
  }
  .cart-dropdown.opened {
    top: 50px;
  }
  .cart-dropdown .cart-dropdown-items .cart-dropdown-item {
    height: auto;
    padding-left: 118px;
    padding-bottom: 24px;
  }
  .cart-dropdown .cart-dropdown-items .cart-dropdown-item .product-img {
    width: 70px;
    height: 70px;
  }
  .cart-dropdown .cart-dropdown-subtotal {
    padding-left: 118px;
  }
}
@media screen and (max-width: 480px) {
  .cart-dropdown .cart-dropdown-items .cart-dropdown-item .cart-dropdown-item-info {
    padding-top: 4px;
  }
  .cart-dropdown .cart-dropdown-items .cart-dropdown-item .cart-dropdown-item-info .title {
    font-size: 0.875em;
  }
  .cart-dropdown .cart-dropdown-items .cart-dropdown-item .cart-dropdown-item-info .product-description {
    font-size: 0.8125em;
    margin-bottom: 4px;
  }
  .cart-dropdown .cart-dropdown-items .cart-dropdown-item .cart-dropdown-item-info .product-price {
    position: static;
    font-size: 0.875em;
  }
  .cart-dropdown .cart-dropdown-items .cart-dropdown-item .cart-dropdown-item-info .product-quantity {
    margin-bottom: 4px;
  }
  .cart-dropdown .cart-dropdown-items .cart-dropdown-item .svg-cross {
    width: 10px;
    height: 10px;
    top: 10px;
    right: 12px;
  }
  .cart-dropdown .cart-dropdown-subtotal {
    padding-left: 30px;
    padding-right: 30px;
  }
  .cart-dropdown .cart-dropdown-actions .button {
    width: 100%;
  }
}
/*------------------------------------------------------------------
[Table of contents]

1. Main Slider / .main-slider
2. Slide List / .slide-list
3. Slide / .slide
4. Slider Controls / .slider-controls
5. Slider Control / .slider-control
6. Banner Title / .banner-title
7. Reponsive Layout / MEDIA QUERIES
-------------------------------------------------------------------*/
.main-slider {
  height: 660px;
  position: relative;
  overflow: hidden;
}

.slide-list {
  width: 100%;
  height: 100%;
  position: absolute;
}

.slide.slide-1 {
  background: url("../img/slider/slide1.png") no-repeat center;
  background-size: cover;
}
.slide.slide-1 .slide-content {
  padding-top: 115px;
}
.slide.slide-1 .banner-title {
  text-align: center;
}
.slide.slide-1 .banner-title:first-child {
  margin-bottom: 5px;
}
.slide.slide-1 .banner-title:nth-child(2) {
  margin-bottom: 20px;
}
.slide.slide-2 {
  background: url("../img/slider/slide2.png") no-repeat center;
  background-size: cover;
}
.slide.slide-2 .slide-content {
  padding: 160px 0 0 70px;
}
.slide.slide-2 .banner-title:first-child {
  margin-bottom: 5px;
}
.slide.slide-2 .banner-title:nth-child(3) {
  margin-bottom: 24px;
}
.slide.slide-2 .button {
  margin-top: 40px;
}
.slide.slide-3 {
  background: url("../img/slider/slide3.png") no-repeat center;
  background-size: cover;
}
.slide.slide-3 .slide-content-wrap:after {
  content: "";
  display: table;
  clear: both;
}
.slide.slide-3 .slide-content-wrap .slide-content {
  float: right;
  width: 600px;
  padding-top: 166px;
}
.slide.slide-3 .slide-content-wrap .slide-content .banner-title {
  text-align: center;
}
.slide.slide-3 .slide-content-wrap .slide-content .banner-title:nth-child(3) {
  margin: 36px 0 54px;
}
.slide.slide-3 .slide-content-wrap .slide-content .button {
  margin: 0 auto;
}

.slider-controls {
  position: absolute;
  top: 280px;
  right: 38px;
  z-index: 10;
}
.slider-controls.secondary .slider-control {
  border-color: #cdcdcd;
}
.slider-controls.secondary .slider-control.selected {
  border-color: #ff5400;
  background-color: #ff5400;
}

.slider-control {
  width: 10px;
  height: 10px;
  margin-bottom: 14px;
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer;
}
.slider-control:last-child {
  margin-bottom: 0;
}
.slider-control.selected {
  background-color: #fff;
}

.banner-title {
  color: #fff;
  font-size: 5.375em;
}
.banner-title.dark {
  color: #242424;
}
.banner-title.main {
  color: #ff5400;
}
.banner-title.micro {
  font-size: 1em;
}
.banner-title.micro.light {
  color: #8b8b8b;
  font-weight: 700;
}
.banner-title.tiny {
  font-size: 1.75em;
}
.banner-title.small {
  font-size: 3.375em;
}
.banner-title.medium {
  font-size: 4em;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.banner-title.large {
  font-size: 5.625em;
}
.banner-title span.highlighted {
  display: inline-block;
  height: 88px;
  padding: 0 14px;
  color: #00063c;
  background-color: #ff5400;
}

@media screen and (max-width: 1260px) {
  .main-slider {
    height: 600px;
  }

  .slide.slide-1 {
    background-image: url("../img/slider/slide1_r.png");
  }
  .slide.slide-1 .slide-content {
    padding-top: 115px;
  }
  .slide.slide-1 .banner-title {
    text-align: center;
  }
  .slide.slide-1 .banner-title:first-child {
    margin-bottom: 5px;
  }
  .slide.slide-1 .banner-title:nth-child(2) {
    margin-bottom: 20px;
  }
  .slide.slide-2 {
    background-image: url("../img/slider/slide2_r.png");
  }
  .slide.slide-2 .slide-content {
    padding: 100px 0 0;
  }
  .slide.slide-2 .banner-title {
    text-align: center;
  }
  .slide.slide-2 .button {
    margin: 40px auto 0;
  }
  .slide.slide-3 {
    background-image: none;
    background-color: #f0f0f0;
  }
  .slide.slide-3 .slide-content-wrap .slide-content {
    float: none;
    width: 100%;
    padding-top: 115px;
  }

  .slider-controls {
    width: 58px;
    top: auto;
    right: auto;
    bottom: 38px;
    left: 50%;
    margin-left: -29px;
  }
  .slider-controls:after {
    content: "";
    display: table;
    clear: both;
  }

  .slider-control {
    float: left;
    margin-bottom: 0;
    margin-right: 14px;
  }
  .slider-control:last-child {
    margin-right: 0;
  }
}
@media screen and (max-width: 860px) {
  .main-slider {
    height: 500px;
  }

  .slide.slide-1 .slide-content {
    padding-top: 100px;
  }
  .slide.slide-1 .banner-title {
    font-size: 2.875em;
    line-height: 1.2;
  }
  .slide.slide-1 .banner-title.tiny {
    font-size: 1.125em;
  }
  .slide.slide-1 .banner-title:nth-child(3) {
    font-size: 0.875em;
    line-height: 1.6;
  }
  .slide.slide-2 .banner-title {
    font-size: 2.875em;
  }
  .slide.slide-2 .banner-title span.highlighted {
    height: 48px;
    padding: 0 6px;
  }
  .slide.slide-2 .banner-title.small {
    font-size: 1.75em;
  }
  .slide.slide-2 .banner-title.micro {
    font-size: 0.875em;
    line-height: 1.6;
  }
  .slide.slide-3 .slide-content-wrap .slide-content {
    padding-top: 100px;
  }
  .slide.slide-3 .slide-content-wrap .slide-content .banner-title.large {
    font-size: 2.875em;
  }
  .slide.slide-3 .slide-content-wrap .slide-content .banner-title.medium {
    font-size: 2.5em;
  }
  .slide.slide-3 .slide-content-wrap .slide-content .banner-title.micro {
    font-size: 0.875em;
    line-height: 1.6;
  }
}
/*------------------------------------------------------------------
[Table of contents]

1. Section Navigation Container / .section-navigation-wrap
2. Section Navigation / .section-navigation
3. Section Container / .section-wrap
4. Section / .section
5. Product Showcase / .product-showcase
6. Welcome Section Container / .welcome-section-wrap
7. Welcome Section / .welcome-section
8. Features Section / .features-section
9. Reponsive Layout / MEDIA QUERIES
-------------------------------------------------------------------*/
.section-navigation-wrap {
  border-top: 1px solid #e8e8e8;
  background-color: #f9f9f9;
}

.section-navigation {
  height: 60px;
}
.section-navigation .section-navigation-path {
  font-size: 0.75em;
  line-height: 60px;
}
.section-navigation .section-navigation-path .path {
  margin-right: 5px;
}
.section-navigation .section-navigation-path .path:last-child {
  margin-right: 0;
}
.section-navigation .section-navigation-path .path.bold .svg-arrow {
  fill: #ff5400;
}
.section-navigation .section-navigation-path .path.current {
  color: #242424;
  font-weight: 700;
}
.section-navigation .section-navigation-path .svg-arrow {
  fill: #8b8b8b;
  width: 3px;
  height: 6px;
}

.section-wrap {
  background-color: #fff;
}
.section-wrap.dark {
  background-color: #1b1b1b;
}
.section-wrap.gmap {
  position: relative;
  background-color: #fbfbfb;
}
.section-wrap.gmap #map {
  width: 100%;
  height: 100%;
}

.section, .product-showcase {
  padding: 30px 0 150px;
}
.section:after, .product-showcase:after {
  content: "";
  display: table;
  clear: both;
}
.section.no-title, .product-showcase.no-title {
  padding-top: 80px;
}
.section.top-short, .product-showcase.top-short {
  padding-top: 50px;
}
.section.bottom-short, .product-showcase.bottom-short {
  padding-bottom: 110px;
}
.section.bottom-shorter, .product-showcase.bottom-shorter {
  padding-bottom: 70px;
}
.section.void, .product-showcase.void {
  padding: 0;
}
.section.bottom-void, .product-showcase.bottom-void {
  padding-bottom: 0;
}
.section.form-demo .form-popup, .product-showcase.form-demo .form-popup {
  margin-bottom: 60px;
}
.section.left-aligned > .title, .product-showcase.left-aligned > .title {
  text-align: left;
}
.section.left-aligned > .title + .line-separator, .product-showcase.left-aligned > .title + .line-separator {
  margin: 28px 0 60px;
}
.section.left-aligned .pretitle, .product-showcase.left-aligned .pretitle {
  text-align: left;
}
.section > .title, .product-showcase > .title {
  text-align: center;
}
.section > .title + .line-separator, .product-showcase > .title + .line-separator {
  margin: 28px auto 60px;
}
.section > .title + .line-separator.short, .product-showcase > .title + .line-separator.short {
  margin-bottom: 50px;
}
.section .pretitle, .product-showcase .pretitle {
  color: #b2b2b2;
  font-size: 0.875em;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}
.section .section-description, .product-showcase .section-description {
  width: 770px;
  margin: 0 auto;
  text-align: center;
}

.welcome-section-wrap {
  background-image: url("../img/home/welcome.jpg");
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-color: #f9f9f9;
}

.welcome-section {
  padding-bottom: 470px;
}

.features-section {
  position: relative;
}
.features-section .bg-decoration {
  position: absolute;
  top: 244px;
  right: -88px;
}

@media screen and (max-width: 1260px) {
  .features-section {
    padding-bottom: 100px;
  }
  .features-section .bg-decoration {
    display: none;
  }

  .section.no-title {
    padding-top: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .section .section-description {
    width: 90%;
  }
}
@media screen and (max-width: 680px) {
  .section-navigation {
    padding-left: 10px;
  }
}
@media screen and (max-width: 480px) {
  .section > .title, .product-showcase > .title {
    font-size: 1.75em;
    line-height: 1.2;
  }
}
/*------------------------------------------------------------------
[Table of contents]

1. Builder Actions / .builder-actions
2. Action Poster Container / .action-poster-wrap
3. Action Poster / .action-poster
4. Feature List / .feature-list
5. Service Banners / .service-banners
6. Step List / .step-list
7. Promo Banners / .promo-banners
8. Widget Form / .widget-form-wrap
9. Reponsive Layout / MEDIA QUERIES
-------------------------------------------------------------------*/
.builder-actions {
  padding: 80px 0 34px;
  background-color: #fff;
  overflow: hidden;
}
.builder-actions .builder-actions-item-wrap {
  border-right: 1px solid #e8e8e8;
}
.builder-actions .builder-actions-item {
  text-align: center;
  transition: transform 0.4s ease-in-out;
}
.builder-actions .builder-actions-item:hover {
  -webkit-transform: translate(0, -32px);
  transform: translate(0, -32px);
}
.builder-actions .builder-actions-item:hover .button {
  opacity: 1;
  visibility: visible;
}
.builder-actions .builder-actions-item img {
  display: block;
  margin: 0 auto 28px;
}
.builder-actions .builder-actions-item .title {
  margin-bottom: 10px;
}
.builder-actions .builder-actions-item p {
  font-size: 0.9em;
  line-height: 1.1em;
}
.builder-actions .builder-actions-item .button {
  width: 126px;
  margin: 18px auto 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.builder-actions .builder-actions-item:last-child {
  border-right: none;
}

.action-poster-wrap {
  background: url("../img/home/action-poster-bg.jpg") no-repeat center;
  background-size: cover;
}

.action-poster {
  min-height: 250px;
  padding: 90px 100px 0;
}
.action-poster:after {
  content: "";
  display: table;
  clear: both;
}
.action-poster .action-poster-info {
  float: left;
}
.action-poster .title {
  color: #fff;
  font-size: 2.5em;
  margin-bottom: 10px;
}
.action-poster p {
  font-size: 1.125em;
  line-height: 1em;
}
.action-poster .button {
  float: right;
  margin-top: 3px;
}

.feature-list {
  margin-top: 96px;
}
.feature-list:after {
  content: "";
  display: table;
  clear: both;
}
.feature-list.small {
  width: 705px;
}
.feature-list.small .feature-list-item {
  width: 335px;
  margin: 0 35px 45px 0;
  padding-left: 35px;
}
.feature-list.small .feature-list-item:nth-child(2n+2) {
  margin-right: 0;
}
.feature-list.small .feature-list-item:nth-last-child(1), .feature-list.small .feature-list-item:nth-last-child(2) {
  margin-bottom: 0;
}
.feature-list.big {
  margin-left: auto;
  margin-right: auto;
}
.feature-list.big .feature-list-item {
  width: 370px;
  padding-left: 70px;
  margin: 0 30px 40px 0;
}
.feature-list.big .feature-list-item:nth-child(3n+3) {
  margin-right: 0;
}
.feature-list.big .feature-list-item:nth-last-child(1), .feature-list.big .feature-list-item:nth-last-child(2), .feature-list.big .feature-list-item:nth-last-child(3) {
  margin-bottom: 0;
}
.feature-list .feature-list-item {
  float: left;
  position: relative;
}
.feature-list .feature-list-item .title {
  margin-bottom: 30px;
  font-weight: 700;
}
.feature-list .feature-list-item .s-icon {
  color: #ff5400;
  font-size: 30px;
  position: absolute;
  top: -10px;
  left: 14px;
}
.feature-list .feature-list-item .svg-check {
  fill: #ff5400;
  position: absolute;
  top: 0;
  left: 0;
}

.service-banners:after {
  content: "";
  display: table;
  clear: both;
}
.service-banners .service-banner {
  float: left;
  width: 33.3333333333%;
  height: 436px;
}
.service-banners .service-banner .service-banner-content {
  height: 100%;
  padding-top: 108px;
  text-align: center;
  transition: transform 0.4s ease-in-out;
}
.service-banners .service-banner .service-banner-content:hover {
  -webkit-transform: translate(0, -16px);
  transform: translate(0, -16px);
}
.service-banners .service-banner .service-banner-content:hover p {
  opacity: 1;
  visibility: visible;
}
.service-banners .service-banner .service-banner-content .s-icon {
  display: block;
  margin-bottom: 30px;
  color: #fff;
}
.service-banners .service-banner .service-banner-content .s-icon.icon-badge {
  font-size: 52px;
}
.service-banners .service-banner .service-banner-content .s-icon.icon-like {
  font-size: 46px;
}
.service-banners .service-banner .service-banner-content .s-icon.icon-rocket {
  font-size: 48px;
}
.service-banners .service-banner .service-banner-content .title {
  color: #fff;
}
.service-banners .service-banner .service-banner-content .title.medium {
  font-size: 1.375em;
}
.service-banners .service-banner .service-banner-content .title.big {
  font-size: 3em;
}
.service-banners .service-banner .service-banner-content .line-separator {
  background-color: #fff;
}
.service-banners .service-banner .service-banner-content p {
  width: 370px;
  margin: 0 auto;
  color: #fff;
  font-size: 0.9375em;
  line-height: 28px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.service-banners .service-banner.main {
  background-color: #ff5400;
}
.service-banners .service-banner.secondary {
  background-color: #ff7200;
}
.service-banners .service-banner.tertiary {
  background-color: #ffae00;
}

.step-list .step-list-item {
  margin-bottom: 80px;
}
.step-list .step-list-item:after {
  content: "";
  display: table;
  clear: both;
}
.step-list .step-list-item:last-child {
  margin-bottom: 0;
}
.step-list .step-list-item.left .step-list-item-info {
  float: left;
  text-align: left;
}
.step-list .step-list-item.left .step-list-item-img {
  float: right;
}
.step-list .step-list-item.right .step-list-item-info {
  float: right;
  text-align: right;
}
.step-list .step-list-item.right .step-list-item-img {
  float: left;
}
.step-list .step-list-item .step-list-item-info {
  width: 570px;
}
.step-list .step-list-item .step-list-item-info .title.medium {
  font-size: 1.25em;
}
.step-list .step-list-item .step-list-item-info .title.large {
  font-size: 2.875em;
  line-height: 1.2;
}
.step-list .step-list-item .step-list-item-info .title.small {
  margin: 10px 0 38px;
  font-size: 1.25em;
  font-weight: 700;
  text-transform: none;
}

.promo-banners:after {
  content: "";
  display: table;
  clear: both;
}
.promo-banners .promo-banner {
  float: left;
  width: 50%;
  height: 430px;
  padding-top: 60px;
}
.promo-banners .promo-banner .promo-banner-title-wrap {
  width: 480px;
  margin: 0 auto;
}
.promo-banners .promo-banner .promo-banner-title-wrap:after {
  content: "";
  display: table;
  clear: both;
}
.promo-banners .promo-banner .promo-banner-title-wrap .title {
  float: left;
}
.promo-banners .promo-banner .title, .promo-banners .promo-banner p {
  color: #fff;
  text-align: center;
}
.promo-banners .promo-banner .title.title-promo {
  font-size: 7.25em;
}
.promo-banners .promo-banner .title.title-percent {
  font-size: 71px;
  line-height: 0.5em;
  margin-top: 25px;
}
.promo-banners .promo-banner .title.title-percent .title-unit {
  font-size: 33px;
}
.promo-banners .promo-banner .title.title-extra {
  margin: 14px 0 0 5px;
  font-size: 52px;
  line-height: 0.92em;
  text-align: left;
}
.promo-banners .promo-banner .title.title-description {
  margin: 30px 0 26px;
  font-size: 1.25em;
  letter-spacing: 0.01em;
}
.promo-banners .promo-banner p {
  font-size: 0.6875em;
  font-weight: 700;
  line-height: 1em;
}
.promo-banners .promo-banner .button {
  margin: 50px auto 0;
}
.promo-banners .promo-banner.main {
  background-color: #ff5400;
}
.promo-banners .promo-banner.dark {
  background-color: #242424;
}

.widget-form-wrap {
  background-color: #ff5400;
}
.widget-form-wrap .widget-form {
  padding: 66px 100px 60px;
}
.widget-form-wrap .widget-form:after {
  content: "";
  display: table;
  clear: both;
}
.widget-form-wrap .widget-form .widget-form-info {
  float: left;
}
.widget-form-wrap .widget-form .widget-form-info .title, .widget-form-wrap .widget-form .widget-form-info p {
  color: #fff;
}
.widget-form-wrap .widget-form .widget-form-info .title {
  font-size: 1.625em;
  margin-bottom: 16px;
}
.widget-form-wrap .widget-form .widget-form-info p {
  font-size: 0.9375em;
  line-height: 1em;
}
.widget-form-wrap .widget-form .widget-form-input {
  float: right;
  width: 500px;
  margin-top: 4px;
  position: relative;
}
.widget-form-wrap .widget-form .widget-form-input input[type=text] {
  padding-right: 54px;
}
.widget-form-wrap .widget-form .widget-form-input .icon-envelope {
  color: #242424;
  font-size: 24px;
  position: absolute;
  top: 13px;
  right: 14px;
}

@media screen and (max-width: 1260px) {
  .action-poster {
    text-align: center;
    padding: 90px 0 60px;
  }
  .action-poster .action-poster-info, .action-poster .button {
    float: none;
  }
  .action-poster .button {
    margin: 40px auto 0;
  }

  .service-banners .service-banner {
    float: none;
    width: 100%;
    height: 380px;
  }
  .service-banners .service-banner .service-banner-content {
    padding-top: 68px;
  }

  .step-list .step-list-item.left .step-list-item-info {
    float: none;
  }
  .step-list .step-list-item.right .step-list-item-info {
    float: none;
  }
  .step-list .step-list-item .step-list-item-info {
    margin: 0 auto;
  }
  .step-list .step-list-item-img {
    display: none;
  }

  .promo-banners .promo-banner {
    float: none;
    width: 100%;
    height: auto;
    padding: 60px 10px;
  }

  .widget-form-wrap .widget-form {
    padding-right: 0;
    padding-left: 0;
  }
  .widget-form-wrap .widget-form .widget-form-info {
    float: none;
  }
  .widget-form-wrap .widget-form .widget-form-info .title, .widget-form-wrap .widget-form .widget-form-info p {
    text-align: center;
  }
  .widget-form-wrap .widget-form .widget-form-input {
    float: none;
    margin: 30px auto 0;
  }

  .feature-list.small {
    margin: 96px auto 0;
  }
  .feature-list.big {
    width: 770px;
  }
  .feature-list.big .feature-list-item:nth-child(3n+3) {
    margin-right: 30px;
  }
  .feature-list.big .feature-list-item:nth-child(2n+2) {
    margin-right: 0;
  }
  .feature-list.big .feature-list-item:nth-last-child(3) {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 860px) {
  .feature-list.small, .feature-list.big {
    width: 90%;
    margin-top: 70px;
  }
  .feature-list.small .feature-list-item, .feature-list.big .feature-list-item {
    float: none;
    width: 100%;
    padding: 40px 0 0;
    margin-bottom: 60px;
    text-align: center;
  }
  .feature-list.small .feature-list-item:nth-last-child(2), .feature-list.big .feature-list-item:nth-last-child(2) {
    margin-bottom: 60px;
  }
  .feature-list .feature-list-item .svg-check {
    left: 50%;
    margin-left: -10px;
  }
  .feature-list .feature-list-item .s-icon {
    left: 50%;
    margin-left: -15px;
  }
}
@media screen and (max-width: 680px) {
  .step-list .step-list-item .step-list-item-info {
    width: 95%;
  }
  .step-list .step-list-item .step-list-item-info .title.large {
    font-size: 1.75em;
    line-height: 1.2;
  }

  .promo-banners .promo-banner .promo-banner-title-wrap {
    width: 270px;
  }
  .promo-banners .promo-banner .title.title-promo {
    font-size: 5.375em;
    margin-bottom: 10px;
    text-align: center;
  }
  .promo-banners .promo-banner .title.title-promo.simple {
    float: none;
  }
  .promo-banners .promo-banner .title.title-promo.composed {
    margin-left: 62px;
  }
  .promo-banners .promo-banner .title.title-percent {
    font-size: 52px;
    margin-top: 20px;
  }
  .promo-banners .promo-banner .title.title-percent .title-unit {
    font-size: 23px;
  }
  .promo-banners .promo-banner .title.title-extra {
    float: none;
    clear: left;
    font-size: 28px;
    text-align: center;
  }
  .promo-banners .promo-banner .title.title-extra br {
    display: none;
  }
  .promo-banners .promo-banner .title.title-description {
    line-height: 1.2em;
  }
  .promo-banners .promo-banner p {
    font-size: 0.6875em;
    font-weight: 700;
    line-height: 1em;
  }
  .promo-banners .promo-banner .button {
    margin: 50px auto 0;
  }

  .widget-form-wrap .widget-form .widget-form-info .title {
    margin-bottom: 6px;
    line-height: 1.2;
  }
  .widget-form-wrap .widget-form .widget-form-info p {
    line-height: 30px;
  }
  .widget-form-wrap .widget-form .widget-form-input {
    width: 90%;
    margin-top: 20px;
  }
}
@media screen and (max-width: 480px) {
  .action-poster .title {
    font-size: 1.75em;
    line-height: 1.2;
  }
  
@media screen and (max-width: 480px) {
  #doc_menu2 {display:none}
  }

  .service-banners .service-banner .service-banner-content p {
    width: 95%;
  }
}
/*------------------------------------------------------------------
[Table of contents]

1. Product List Versions / .product-list
2. Product Preview List / .product-preview-list
3. Reponsive Layout / MEDIA QUERIES
-------------------------------------------------------------------*/
.product-list.v2 {
  margin: 0 auto;
}
.product-list.v2 .product-list-item {
  min-height: 290px;
  margin-bottom: 24px;
  padding-left: 300px;
  position: relative;
}
.product-list.v2 .product-list-item .product-img {
  position: absolute;
  top: 0;
  left: 0;
}
.product-list.v2 .product-list-item .product-list-item-info {
  text-align: left;
  padding-top: 1px;
}
.product-list.v2 .product-list-item .product-list-item-info .rating {
  margin-bottom: 16px;
}
.product-list.v2 .product-list-item .product-list-item-info .product-price {
  position: absolute;
  top: 14px;
  right: 0;
}
.product-list.v2 .product-list-item .product-list-item-info .button-list {
  margin-top: 25px;
}
.product-list .product-list-item .product-list-item-preview {
  width: 100%;
  height: 290px;
  position: relative;
}
.product-list .product-list-item .product-list-item-preview:hover .product-list-item-actions {
  opacity: 1;
  visibility: visible;
}
.product-list .product-list-item .product-list-item-preview:hover .product-list-item-actions .button-list .button {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.product-list .product-list-item .product-list-item-preview .product-list-item-actions {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.product-list .product-list-item .product-list-item-preview .product-list-item-actions .button-list {
  margin: 128px auto 0;
}
.product-list .product-list-item .product-list-item-preview .product-list-item-actions .button-list .button {
  -webkit-transform: scale(0);
  transform: scale(0);
  transition: transform 0.3s ease-in-out;
}
.product-list .product-list-item .product-list-item-preview .product-list-item-actions .button-list .button:nth-child(1) {
  transition-delay: 0.1s;
}
.product-list .product-list-item .product-list-item-preview .product-list-item-actions .button-list .button:nth-child(2) {
  transition-delay: 0.15s;
}
.product-list .product-list-item .product-list-item-preview .product-list-item-actions .button-list .button:nth-child(3) {
  transition-delay: 0.2s;
}
.product-list .product-list-item .product-list-item-preview .product-list-item-actions .button-list .button:nth-child(4) {
  transition-delay: 0.25s;
}
.product-list .product-list-item .product-list-item-info {
  padding-top: 30px;
  text-align: center;
}
.product-list .product-list-item .product-list-item-info .title {
  display: inline-block;
}
.product-list .product-list-item .product-list-item-info .product-description {
  margin: 12px 0 16px;
}
.product-list .product-list-item .product-list-item-price {
  padding-left: 70px;
}
.product-list .product-list-item .product-list-item-price:after {
  content: "";
  display: table;
  clear: both;
}
.product-list .product-list-item .product-list-item-price .rating {
  float: left;
  margin-right: 14px;
}
.product-list .product-list-item .product-list-item-price .product-price {
  float: left;
  margin-top: 1px;
}

.product-preview-list .product-preview-list-item {
  min-height: 70px;
  margin-bottom: 20px;
  padding: 6px 0 0 82px;
  position: relative;
}
.product-preview-list .product-preview-list-item:last-child {
  margin-bottom: 0;
}
.product-preview-list .product-preview-list-item .product-img {
  position: absolute;
  top: 0;
  left: 0;
}
.product-preview-list .product-preview-list-item .title {
  margin-bottom: 2px;
}

@media screen and (max-width: 1024px) {
  .product-list.v2 {
    width: 570px;
  }
  .product-list.v2:after {
    content: "";
    display: table;
    clear: both;
  }
  .product-list.v2 .product-list-item {
    float: left;
    width: 270px;
    height: auto;
    margin: 0 30px 60px 0;
    padding: 115px 0 0;
  }
  .product-list.v2 .product-list-item:nth-child(2n+2) {
    margin-right: 0;
  }
  .product-list.v2 .product-list-item .product-img {
    width: 100px;
    height: 100px;
    top: 0;
    left: 50%;
    margin-left: -50px;
  }
  .product-list.v2 .product-list-item .product-list-item-info {
    padding-top: 0;
    text-align: center;
  }
  .product-list.v2 .product-list-item .product-list-item-info .title {
    font-size: 1em;
  }
  .product-list.v2 .product-list-item .product-list-item-info .product-description {
    font-size: 0.875em;
    margin-bottom: 10px;
  }
  .product-list.v2 .product-list-item .product-list-item-info .rating {
    display: inline-block;
    margin-bottom: 6px;
  }
  .product-list.v2 .product-list-item .product-list-item-info .product-description-preview {
    font-size: 0.875em;
    line-height: 26px;
    margin-top: 12px;
    text-align: justify;
  }
  .product-list.v2 .product-list-item .product-list-item-info .product-price {
    position: static;
    font-size: 1em;
  }
  .product-list.v2 .product-list-item .product-list-item-info .button-list {
    display: inline-block;
  }
}
@media screen and (max-width: 680px) {
  .product-list.v2 {
    width: 270px;
  }
  .product-list.v2 .product-list-item {
    margin-right: 0;
  }
}
/*------------------------------------------------------------------
[Table of contents]

1. Footer Container / .footer-wrap
2. Footer Top Section / .footer-top
3. Footer Bottom Section / .footer-bottom
4. About Us Preview / .aboutus-preview
5. Contact Us List / .contactus-list
6. Quick Contact Form / .quick-contact-form
7. Payment List / .payment-list
8. Reponsive Layout / MEDIA QUERIES
-------------------------------------------------------------------*/
.footer-wrap {
  background-color: #242424;
}

.footer-top {
  padding: 84px 0 50px;
}
.footer-top:after {
  content: "";
  display: table;
  clear: both;
}
.footer-top .description {
  color: #666;
  font-size: 0.875em;
  line-height: 24px;
}
.footer-top .aboutus-preview {
  float: left;
  margin-right: 100px;
}
.footer-top .content-dropdown-column {
  float: left;
  width: 200px;
}
.footer-top .content-dropdown-column.full {
  width: 370px;
  margin-left: 30px;
}
.footer-top .content-dropdown-column.full .line-separator {
  margin-bottom: 30px;
}
.footer-top .content-dropdown-column .line-separator {
  margin-bottom: 36px;
}

.footer-bottom {
  height: 122px;
  padding-left: 70px;
  border-top: 1px solid #3e3e3e;
}
.footer-bottom:after {
  content: "";
  display: table;
  clear: both;
}
.footer-bottom .title, .footer-bottom .payment-list {
  float: left;
}
.footer-bottom .title {
  margin-right: 15px;
  font-size: 0.6875em;
  line-height: 121px;
}
.footer-bottom .payment-list .payment-list-item a {
  height: 121px;
  line-height: 132px;
}
.footer-bottom .payment-list .payment-list-item:nth-child(4) a {
  line-height: 142px;
}

.aboutus-preview {
  width: 270px;
}
.aboutus-preview .logo {
  margin-bottom: 40px;
}
.aboutus-preview p {
  font-size: 0.875em;
  line-height: 24px;
}
.aboutus-preview p.description {
  margin-bottom: 30px;
}

.contactus-list .contactus-list-item {
  padding-left: 35px;
  margin-bottom: 20px;
  position: relative;
}
.contactus-list .contactus-list-item:last-child {
  margin-bottom: 0;
}
.contactus-list .contactus-list-item .s-icon {
  color: #fff;
  font-size: 20px;
  position: absolute;
  top: 0;
  left: 6px;
}
.contactus-list .contactus-list-item .s-icon.icon-location-pin {
  top: -4px;
}
.contactus-list .contactus-list-item .s-icon.icon-phone {
  top: -2px;
  left: 9px;
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
}
.contactus-list .contactus-list-item p {
  line-height: 1em;
}

.quick-contact-form {
  margin-top: 12px;
}
.quick-contact-form input[type=text] {
  height: 42px;
  margin-bottom: 14px;
}
.quick-contact-form textarea {
  height: 90px;
  margin-bottom: 16px;
}
.quick-contact-form .button {
  width: 100%;
}
.quick-contact-form ::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #6c6c6c;
}
.quick-contact-form :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #6c6c6c;
  opacity: 1;
}
.quick-contact-form ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #6c6c6c;
  opacity: 1;
}
.quick-contact-form :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #6c6c6c;
}
.quick-contact-form ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #6c6c6c;
}

.payment-list:after {
  content: "";
  display: table;
  clear: both;
}
.payment-list .payment-list-item {
  float: left;
}
.payment-list .payment-list-item a {
  display: block;
  width: 150px;
  text-align: center;
  opacity: 0.2;
  transition: opacity 0.3s ease-in-out;
}
.payment-list .payment-list-item a:hover {
  opacity: 1;
}

@media screen and (max-width: 1260px) {
  .footer-top {
    width: 600px;
  }
  .footer-top .aboutus-preview {
    margin-bottom: 60px;
  }
  .footer-top .content-dropdown-column:nth-child(2) {
    margin-bottom: 60px;
  }

  .footer-bottom {
    height: auto;
    padding-left: 0;
  }
  .footer-bottom .title {
    display: none;
  }
  .footer-bottom .payment-list {
    float: none;
    width: 450px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 680px) {
  .footer-top {
    width: 270px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer-top .aboutus-preview,
.footer-top .content-dropdown-column {
    float: none;
    width: 100%;
  }
  .footer-top .content-dropdown-column:nth-child(3) {
    margin-bottom: 60px;
  }
  .footer-top .content-dropdown-column.full {
    width: 100%;
    margin-left: 0;
  }

  .footer-bottom .payment-list {
    width: 300px;
  }
}
@media screen and (max-width: 480px) {
  .footer-bottom .payment-list {
    width: 150px;
  }
}
/*------------------------------------------------------------------
[Table of contents]

1. About Us Banner Container / .aboutus-banner-wrap
2. About Us Banner / .aboutus-banner
3. Reponsive Layout / MEDIA QUERIES
-------------------------------------------------------------------*/
.aboutus-banner-wrap {
  background-image: url(../img/aboutus/aboutus_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.aboutus-banner-wrap .aboutus-banner-bg-fill {
  width: 51%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  right: 0;
}

.aboutus-banner {
  min-height: 704px;
}
.aboutus-banner:after {
  content: "";
  display: table;
  clear: both;
}
.aboutus-banner .aboutus-banner-content {
  padding-top: 136px;
  float: right;
  width: 540px;
  position: relative;
  z-index: 10;
}
.aboutus-banner .aboutus-banner-content .title {
  margin-bottom: 14px;
  font-size: 3.375em;
}
.aboutus-banner .aboutus-banner-content p.title {
  margin-bottom: 40px;
  color: #fff;
  font-size: 1.25em;
  font-weight: 700;
}
.aboutus-banner .aboutus-banner-content .button {
  margin-top: 56px;
}

@media screen and (max-width: 1260px) {
  .aboutus-banner-wrap {
    background-image: url(../img/aboutus/aboutus_nobg.png);
  }
  .aboutus-banner-wrap .aboutus-banner-bg-fill {
    width: 100%;
    height: 100%;
  }

  .aboutus-banner {
    min-height: 600px;
  }
  .aboutus-banner .aboutus-banner-content {
    float: none;
    width: 95%;
    padding: 100px 0;
    text-align: center;
  }
  .aboutus-banner .aboutus-banner-content .button {
    margin: 56px auto 0;
  }
}
@media screen and (max-width: 680px) {
  .aboutus-banner .aboutus-banner-content .title {
    font-size: 2.625em;
  }
  .aboutus-banner .aboutus-banner-content p.title {
    line-height: 1.6;
  }
}
/*------------------------------------------------------------------
[Table of contents]

1. Sidebar Box / .sidebar
2. Content Box / .content
3. Sidebar Widget / .sidebar-widget
4. Widget Dropdown / .widget-dropdown
5. Widget Inner Dropdown / .widget-inner-dropdown
6. Checkbox List / .checkbox-list
7. Range Slider / .range-slider
8. Filter Header / .filter-header
9. Filter Options / .filter-options
10. View Selectors / .view-selectors
11. Pager Container / .pager-wrap
12. Pager / .pager
13. Reponsive Layout / MEDIA QUERIES
-------------------------------------------------------------------*/
.sidebar.left, .content.left {
  float: left;
}
.sidebar.right, .content.right {
  float: right;
}

.sidebar {
  width: 270px;
}

.sidebar-widget {
  margin-bottom: 40px;
}

.content {
  width: 870px;
}

.widget-dropdown .widget-dropdown-item > a.active {
	color:#ff5400;
}
.widget-dropdown .widget-dropdown-item > a {
  display: block;
  height: 51px;
  line-height: 51px;
  border-bottom: 1px solid #e8e8e8;
  color: #242424;
  font-size: 0.875em;
  font-weight: 700;
  position: relative;
  transition: color 0.15s ease-in-out;
}
.widget-dropdown .widget-dropdown-item > a:hover {
  color: #ff5400;
}
.widget-dropdown .widget-dropdown-item > a.open .svg-plus {
  display: none;
}
.widget-dropdown .widget-dropdown-item > a.open .svg-minus {
  display: block;
}
.widget-dropdown .widget-dropdown-item > a .svg-plus, .widget-dropdown .widget-dropdown-item > a .svg-minus {
  position: absolute;
  top: 20px;
  right: 0;
}
.widget-dropdown .widget-dropdown-item > a .svg-minus {
  display: none;
}
.widget-dropdown .widget-dropdown-item:last-child a {
  border-bottom: none;
}

.widget-inner-dropdown {
  padding: 10px 0;
  border-bottom: 1px solid #e8e8e8;
  display: none;
}
.widget-inner-dropdown .widget-inner-dropdown-item > a {
  display: block;
  height: 40px;
  line-height: 40px;
  padding-left: 14px;
  color: #8b8b8b;
  font-size: 0.875em;
  transition: color 0.15s ease-in-out;
}
.widget-inner-dropdown .widget-inner-dropdown-item > a:hover {
  color: #242424;
}

.checkbox-list:after {
  content: "";
  display: table;
  clear: both;
}
.checkbox-list .checkbox {
  float: left;
  width: 75px;
  margin: 0 55px 20px 0;
}
.checkbox-list .checkbox:nth-child(odd) {
  float: right;
}

.range-slider:after {
  content: "";
  display: table;
  clear: both;
}
.range-slider .range-slider-actions {
  width: 270px;
  margin: 34px auto 20px;
}
.range-slider .range-slider-actions .button {
  float: left;
  margin-right: 20px;
}
.range-slider .range-slider-actions p {
  float: left;
  margin-top: 10px;
  font-size: 0.875em;
  line-height: 1em;
}
.range-slider .range-slider-actions p .price-from, .range-slider .range-slider-actions p .price-to {
  color: #242424;
  font-weight: 700;
}

.filter-header {
  min-height: 64px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e8e8e8;
}
.filter-header:after {
  content: "";
  display: table;
  clear: both;
}
.filter-header .title {
  float: left;
  font-size: 0.75em;
  margin-top: 16px;
}
.filter-header .filter-options {
  float: right;
}
.filter-header .view-selectors {
  float: right;
  margin-left: 24px;
}

.filter-options:after {
  content: "";
  display: table;
  clear: both;
}
.filter-options .filter-option {
  float: left;
  margin-right: 12px;
}
.filter-options .filter-option:last-child {
  margin-right: 0;
}
.filter-options .filter-option .title {
  margin-right: 12px;
}
.filter-options .filter-option .select-block {
  float: left;
  width: 194px;
}

.view-selectors:after {
  content: "";
  display: table;
  clear: both;
}
.view-selectors .view-selector {
  float: left;
  width: 42px;
  height: 42px;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  margin-right: 12px;
  text-align: center;
}
.view-selectors .view-selector:last-child {
  margin-right: 0;
}
.view-selectors .view-selector .svg-list {
  margin-top: 13px;
}
.view-selectors .view-selector .svg-grid {
  margin-top: 12px;
}
.view-selectors .view-selector.selected .svg-list, .view-selectors .view-selector.selected .svg-grid {
  fill: #ff5400;
}

.pager-wrap {
  text-align: center;
  margin-top: 40px;
}

.pager {
  display: inline-block;
}
.pager .pager-item {
  float: left;
  margin-right: 8px;
}
.pager .pager-item:last-child {
  margin-right: 0;
}
.pager .pager-item a {
  display: block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  color: #242424;
  font-size: 0.8125em;
  font-weight: 700;
  text-align: center;
  transition: color 0.15s ease-in-out;
}
.pager .pager-item a:hover {
  color: #ff5400;
}
.pager .pager-item a:hover .svg-arrow {
  fill: #ff5400;
}
.pager .pager-item a .svg-arrow {
  fill: #242424;
  transition: fill 0.15s ease-in-out;
}
.pager .pager-item.selected a {
  color: #ff5400;
}

@media screen and (max-width: 1260px) {
  .content.right, .content.left, .sidebar.right, .sidebar.left {
    float: none;
    width: 95%;
    margin: 0 auto;
  }

  .sidebar.left, .sidebar.right {
    margin-top: 60px;
  }

  .section > .filter-header {
    padding-bottom: 20px;
    text-align: center;
  }
  .section > .filter-header > .title {
    float: none;
    margin-bottom: 20px;
  }
  .section > .filter-header .filter-options {
    float: none;
  }
  .section > .filter-header .filter-options .filter-option {
    float: none;
    margin-right: 0;
  }
  .section > .filter-header .filter-options .filter-option .title {
    margin: 0 0 10px 0;
  }
  .section > .filter-header .filter-options .filter-option .select-block {
    width: 100%;
    margin-bottom: 15px;
  }
  .section > .filter-header .view-selectors {
    float: none;
    display: inline-block;
    margin: 0 0 20px 0;
  }
}
@media screen and (max-width: 1024px) {
  .content .filter-header {
    padding-bottom: 20px;
    text-align: center;
  }
  .content .filter-header > .title {
    float: none;
    margin-bottom: 20px;
  }
  .content .filter-header .filter-options {
    float: none;
  }
  .content .filter-header .filter-options .filter-option {
    float: none;
    margin-right: 0;
  }
  .content .filter-header .filter-options .filter-option .title {
    margin: 0 0 10px 0;
  }
  .content .filter-header .filter-options .filter-option .select-block {
    width: 100%;
    margin-bottom: 15px;
  }
  .content .filter-header .view-selectors {
    float: none;
    display: inline-block;
    margin: 0 0 20px 0;
  }
}
/*------------------------------------------------------------------
[Table of contents]

1. Product View Versions / .product-view
2. Product Image List Versions / .product-img-list
3. Reponsive Layout / MEDIA QUERIES
-------------------------------------------------------------------*/
.product-view {
  height: 494px;
  padding-left: 600px;
  position: relative;
}
.product-view.short {
  height: 480px;
  padding-left: 370px;
}
.product-view.short .product-img-list {
  top: auto;
  bottom: 0;
}
.product-view.short > .product-img {
  width: 340px;
  height: 365px;
  left: 0;
}
.product-view.short .product-details .rating {
  margin-bottom: 24px;
}
.product-view.short .product-details form {
  margin: 26px 0 68px;
}
.product-view .product-img-list {
  position: absolute;
  top: 0;
  left: 0;
}
.product-view > .product-img {
  position: absolute;
  top: 0;
  left: 110px;
}
.product-view .product-details {
  padding-top: 10px;
}
.product-view .product-details .title {
  margin-bottom: 12px;
}
.product-view .product-details .rating {
  margin: 16px 0 30px;
}
.product-view .product-details .product-price {
  margin-bottom: 6px;
  position: absolute;
  top: 10px;
  right: 0;
}
.product-view .product-details form {
  margin: 36px 0 88px;
}
.product-view .product-details form:after {
  content: "";
  display: table;
  clear: both;
}
.product-view .product-details form .form-row {
  float: left;
  margin-bottom: 0;
}
.product-view .product-details form .form-row .select-block {
  width: 180px;
  margin-right: 12px;
}
.product-view .product-details .product-details-actions:after {
  content: "";
  display: table;
  clear: both;
}
.product-view .product-details .product-details-actions > .button {
  float: left;
  width: 200px;
  margin-right: 12px;
}
.product-view .product-details .product-details-actions .button-list {
  float: left;
  margin-top: 22px;
}

.product-img-list .product-img-list-item {
  width: 100px;
  height: 100px;
  cursor: pointer;
  position: relative;
}
.product-img-list .product-img-list-item .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.product-img-list.vertical .product-img-list-item {
  margin-bottom: 10px;
}
.product-img-list.vertical .product-img-list-item:last-child {
  margin-bottom: 0;
}
.product-img-list.horizontal:after {
  content: "";
  display: table;
  clear: both;
}
.product-img-list.horizontal .product-img-list-item {
  float: left;
  margin-right: 20px;
}
.product-img-list.horizontal .product-img-list-item:last-child {
  margin-right: 0;
}
.product-img-list.border-anim .product-img-list-item .overlay {
  border: 4px solid transparent;
  transition: border-color 0.15s ease-in-out;
}
.product-img-list.border-anim .product-img-list-item:hover .overlay, .product-img-list.border-anim .product-img-list-item.selected .overlay {
  border-color: #dedede;
}
.product-img-list.bg-anim .product-img-list-item .overlay {
  transition: background-color 0.15s ease-in-out;
}
.product-img-list.bg-anim .product-img-list-item:hover .overlay, .product-img-list.bg-anim .product-img-list-item.selected .overlay {
  background-color: rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 1260px) {
  .product-view.full {
    height: auto;
    padding: 510px 0 0;
    text-align: center;
  }
  .product-view.full > .product-img {
    top: 0;
    left: 50%;
    margin-left: -230px;
  }
  .product-view.full .product-img-list {
    display: inline-block;
    position: static;
    margin-bottom: 40px;
  }
  .product-view.full .product-img-list.vertical:after {
    content: "";
    display: table;
    clear: both;
  }
  .product-view.full .product-img-list.vertical .product-img-list-item {
    float: left;
    margin: 0 10px 0 0;
  }
  .product-view.full .product-img-list.vertical .product-img-list-item:last-child {
    margin-right: 0;
  }
  .product-view.full .product-details .rating {
    display: inline-block;
    margin-bottom: 10px;
  }
  .product-view.full .product-details .product-price {
    position: static;
    margin-bottom: 12px;
  }
  .product-view.full .product-details form {
    margin: 40px 0 20px;
  }
  .product-view.full .product-details form .form-row {
    float: none;
    margin-bottom: 20px;
  }
  .product-view.full .product-details form .form-row .select-block {
    width: 100%;
  }
  .product-view.full .product-details form .quantity-input {
    display: inline-block;
    text-align: left;
  }
  .product-view.full .product-details .product-details-actions > .button {
    float: none;
    margin: 0 auto;
  }
  .product-view.full .product-details .product-details-actions .button-list {
    float: none;
    display: inline-block;
  }
}
@media screen and (max-width: 1024px) {
  .product-view.short {
    height: auto;
    padding: 380px 0 0;
    text-align: center;
  }
  .product-view.short > .product-img {
    top: 0;
    left: 50%;
    margin-left: -170px;
  }
  .product-view.short .product-img-list {
    display: inline-block;
    position: static;
    margin-bottom: 40px;
  }
  .product-view.short .product-details .rating {
    display: inline-block;
    margin-bottom: 10px;
  }
  .product-view.short .product-details .product-price {
    position: static;
    margin-bottom: 12px;
  }
  .product-view.short .product-details form {
    margin: 40px 0 20px;
  }
  .product-view.short .product-details form .form-row {
    float: none;
    margin-bottom: 20px;
  }
  .product-view.short .product-details form .form-row .select-block {
    width: 100%;
  }
  .product-view.short .product-details form .quantity-input {
    display: inline-block;
    text-align: left;
  }
  .product-view.short .product-details .product-details-actions > .button {
    float: none;
    margin: 0 auto;
  }
  .product-view.short .product-details .product-details-actions .button-list {
    float: none;
    display: inline-block;
  }
}
@media screen and (max-width: 680px) {
  .product-view.full {
    padding-top: 285px;
  }
  .product-view.full > .product-img {
    width: 250px;
    height: 270px;
    margin-left: -125px;
  }
  .product-view.full .product-img-list {
    margin-bottom: 20px;
  }
  .product-view.full .product-img-list.vertical {
    width: 230px;
  }
  .product-view.full .product-img-list.vertical .product-img-list-item {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
  }
  .product-view.full .product-img-list.vertical .product-img-list-item:nth-child(3n+3) {
    margin-right: 0;
  }
  .product-view.full .product-img-list.vertical .product-img-list-item .product-img {
    width: 70px;
    height: 70px;
  }
}
@media screen and (max-width: 480px) {
  .product-view.short {
    padding-top: 285px;
  }
  .product-view.short > .product-img {
    width: 250px;
    height: 270px;
    margin-left: -125px;
  }
  .product-view.short .product-img-list .product-img-list-item {
    width: 70px;
    height: 70px;
  }
  .product-view.short .product-img-list .product-img-list-item .product-img {
    width: 70px;
    height: 70px;
  }
}
/*------------------------------------------------------------------
[Table of contents]

1. Post Text Row / .text-row
2. Post Images / .post-img
3. Post Timestamp / .post-timestamp
4. Post Author / .post-author
5. Post Preview Boxes / .post-preview-list
6. Open Post / .open-post
7. Tag List / .tag-list
8. Reply Button / .reply-btn
9. Post Comments / .comment-list
10. Post Reply Form / .response-form
11. Reponsive Layout / MEDIA QUERIES
-------------------------------------------------------------------*/
.text-row {
  margin-bottom: 50px;
}
.text-row:after {
  content: "";
  display: table;
  clear: both;
}
.text-row:last-child {
  margin-bottom: 0;
}
.text-row .title {
  margin-bottom: 40px;
}
.text-row .title.main-title {
  font-size: 2.875em;
  line-height: 1.1;
}
.text-row .title.subtitle {
  font-size: 1.625em;
  font-weight: 700;
  line-height: 1.2;
  text-transform: none;
}
.text-row .half {
  float: left;
  width: 49%;
}
.text-row .half + .half {
  float: right;
}

.post-img {
  width: 370px;
  height: 230px;
}
.post-img.large {
  width: 100%;
  height: 590px;
}

.post-timestamp {
  color: #ff5400;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1em;
  text-transform: uppercase;
}

.post-author {
  font-size: 0.8125em;
  line-height: 1em;
}
.post-author .separator {
  margin: 0 6px;
}

.post-preview-list {
  margin: 0 auto;
}
.post-preview-list + .pager-wrap {
  margin-top: 60px;
}
.post-preview-list .post-preview-list-item {
  width: 370px;
  margin-bottom: 40px;
}
.post-preview-list .post-preview-list-item .post-preview-img {
  margin-bottom: 32px;
  position: relative;
}
.post-preview-list .post-preview-list-item .post-preview-img:hover .overlay {
  opacity: 1;
}
.post-preview-list .post-preview-list-item .post-preview-img:hover .overlay .circle {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.post-preview-list .post-preview-list-item .post-preview-img .overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 84, 0, 0.9);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.post-preview-list .post-preview-list-item .post-preview-img .overlay .circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  position: absolute;
  top: 95px;
  left: 50%;
  margin-left: -20px;
  transition: transform 0.3s ease-in-out;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.post-preview-list .post-preview-list-item .post-preview-img .overlay .circle .svg-plus {
  position: absolute;
  top: 13px;
  left: 50%;
  margin-left: -6px;
}
.post-preview-list .post-preview-list-item .post-timestamp {
  margin-bottom: 16px;
}
.post-preview-list .post-preview-list-item .title {
  margin-bottom: 10px;
  line-height: 32px;
}
.post-preview-list .post-preview-list-item .post-author {
  margin-bottom: 26px;
}
.post-preview-list .post-preview-list-item .button {
  width: 170px;
  margin-top: 32px;
}

.open-post {
  width: 970px;
  margin: 0 auto;
  padding: 50px 70px 20px;
  background-color: #fff;
  position: relative;
  top: -130px;
}
.open-post .post-timestamp {
  margin-bottom: 10px;
}
.open-post iframe {
  width: 100%;
  height: 430px;
}
.open-post .button-list {
  float: left;
}
.open-post .tag-list {
  float: right;
  margin-top: 10px;
}
.open-post .tag-list a:nth-child(1) {
  margin-left: 3px;
}
.open-post .comments {
  margin-top: 90px;
}
.open-post .comment-list {
  margin-bottom: 70px;
}
.open-post .response-form {
  margin-top: 90px;
}

.tag-list {
  color: #242424;
  font-size: 0.75em;
  line-height: 1em;
  font-weight: 900;
  text-transform: uppercase;
}
.tag-list a {
  color: #ff5400;
}
.tag-list a:hover {
  text-decoration: underline;
}

.reply-btn {
  color: #ff5400;
  font-size: 0.75em;
  font-weight: 900;
  text-transform: uppercase;
}
.reply-btn:hover {
  text-decoration: underline;
}

.comment-list .comment-list-item {
  margin-bottom: 46px;
  position: relative;
}
.comment-list .comment-list-item .comment-list {
  margin: 40px 0;
  padding-left: 66px;
}
.comment-list .comment-list-item:last-child {
  margin-bottom: 0;
}
.comment-list .comment-list-item .title {
  margin-bottom: 24px;
  text-transform: none;
}
.comment-list .comment-list-item .timestamp {
  margin-top: 12px;
}
.comment-list .comment-list-item .reply-btn {
  position: absolute;
  top: 4px;
  right: 0;
}

.response-form form {
  margin-top: 54px;
}
.response-form form .button {
  width: 300px;
}

@media screen and (max-width: 1260px) {
  .post-preview-list {
    width: 770px;
  }
}
@media screen and (max-width: 1024px) {
  .post-header .post-img {
    height: 300px;
  }

  .open-post {
    width: 100%;
    padding: 50px 10px 150px;
    position: static;
  }
}
@media screen and (max-width: 860px) {
  .text-row .half {
    float: none;
    width: 100%;
    margin-bottom: 50px;
  }
  .text-row .half + .half {
    float: none;
    margin-bottom: 0;
  }

  .post-preview-list {
    width: 370px;
  }
}
@media screen and (max-width: 680px) {
  .open-post .button-list {
    float: none;
  }
  .open-post .tag-list {
    float: none;
    margin-top: 30px;
    line-height: 1.6;
  }

  .comment-list .comment-list-item .comment-list {
    padding-left: 33px;
  }
}
@media screen and (max-width: 480px) {
  .text-row .title.main-title {
    font-size: 2.5em;
    line-height: 1.2;
  }

  .post-preview-list {
    width: 270px;
  }
  .post-preview-list .post-preview-list-item {
    width: 270px;
  }
  .post-preview-list .post-preview-list-item .post-preview-img {
    width: 270px;
    height: 230px;
  }
  .post-preview-list .post-preview-list-item .post-preview-img .post-img {
    width: 270px;
    height: 230px;
  }

  .response-form form .button {
    width: 100%;
  }
}
/*------------------------------------------------------------------
[Table of contents]

1. Product Table / .product-table
2. Section Message / .section-message
3. Section Actions / .section-actions
4. Reponsive Layout / MEDIA QUERIES
-------------------------------------------------------------------*/
.product-table .product-table-row:after,
.product-table .product-table-header:after {
  content: "";
  display: table;
  clear: both;
}
.product-table .product-table-row > *,
.product-table .product-table-header > * {
  float: left;
  height: 100%;
}
.product-table .product-table-header {
  height: 50px;
  border-bottom: 1px solid #e8e8e8;
}
.product-table .product-table-header .title {
  font-size: 0.75em;
  line-height: 50px;
}
.product-table .product-table-row {
  height: 150px;
  padding-right: 35px;
  border-bottom: 1px solid #e8e8e8;
  position: relative;
}
.product-table .product-table-row .product-table-photo {
  padding-top: 24px;
}
.product-table .product-table-row .product-table-photo .product-img {
  display: inline-block;
}
.product-table .product-table-row .product-table-name {
  padding-top: 40px;
}
.product-table .product-table-row .product-table-name .title {
  display: inline-block;
}
.product-table .product-table-row .product-table-name .product-description {
  margin-bottom: 4px;
}
.product-table .product-table-row .product-table-description {
  padding-top: 36px;
}
.product-table .product-table-row .product-table-description p {
  width: 270px;
}
.product-table .product-table-row .product-table-price,
.product-table .product-table-row .product-table-total {
  padding-top: 56px;
}
.product-table .product-table-row .product-table-quantity {
  padding-top: 40px;
}
.product-table .product-table-row .product-table-quantity.numerical {
  padding-top: 56px;
}
.product-table .product-table-row .product-table-quantity .quantity-input {
  text-align: left;
  margin: 0 auto;
}
.product-table .product-table-row .product-table-availability {
  padding-top: 58px;
}
.product-table .product-table-row .product-table-availability .title.void {
  color: #b2b2b2;
}
.product-table .product-table-row .product-table-actions {
  padding: 48px 0 0 25px;
}
.product-table .product-table-row .remove-fcart {
  position: absolute;
  top: 58px;
  right: 34px;
}
.product-table .product-table-row .remove-fcart .svg-cross {
  fill: #b2b2b2;
  cursor: pointer;
}
.product-table .product-table-photo {
  width: 150px;
}
.product-table .product-table-name {
  width: 234px;
}
.product-table .product-table-description {
  width: 315px;
}
.product-table .product-table-description.long {
  width: 475px;
}
.product-table .product-table-price {
  width: 104px;
}
.product-table .product-table-quantity,
.product-table .product-table-availability {
  width: 190px;
}
.product-table .product-table-quantity .title .times {
  display: none;
}
.product-table .product-table-total {
  width: 90px;
}
.product-table .product-table-quantity,
.product-table .product-table-availability,
.product-table .product-table-price,
.product-table .product-table-total {
  text-align: center;
}

.section-message {
  text-align: center;
}
.section-message .section-decoration {
  width: 362px;
  height: 330px;
  margin: 0 auto;
  position: relative;
}
.section-message .section-decoration.big {
  height: 368px;
}
.section-message .section-decoration .s-icon {
  color: #ebebeb;
  font-size: 306px;
}
.section-message .section-decoration .svg-cart {
  fill: #ebebeb;
  position: absolute;
  top: 0;
  left: 0;
}
.section-message .section-decoration .svg-check-big {
  fill: #ff5400;
  position: absolute;
  top: 125px;
  right: 0;
}
.section-message .section-decoration .svg-cross {
  fill: #ff5400;
  position: absolute;
  top: 178px;
  right: 14px;
}
.section-message .title.medium {
  margin-bottom: 20px;
  font-size: 2.375em;
}
.section-message .title.small {
  font-size: 1.375em;
}
.section-message p {
  width: 720px;
  margin: 40px auto 0;
}

.section-actions {
  width: 430px;
  margin: 70px auto 0;
}
.section-actions:after {
  content: "";
  display: table;
  clear: both;
}
.section-actions .button {
  float: left;
}
.section-actions .button:last-child {
  float: right;
}

@media screen and (max-width: 1260px) {
  .product-table {
    width: 870px;
    margin: 0 auto;
  }
  .product-table .product-table-description {
    display: none;
  }
  .product-table.v2 .product-table-header,
.product-table.v2 .product-table-row {
    padding-left: 120px;
  }
}
@media screen and (max-width: 1024px) {
  .product-table {
    width: 570px;
    margin-top: 50px;
  }
  .product-table:after {
    content: "";
    display: table;
    clear: both;
  }
  .product-table.v2 .product-table-header,
.product-table.v2 .product-table-row {
    padding-left: 0;
  }
  .product-table.v2 .product-table-row {
    margin-bottom: 10px;
  }
  .product-table.v2 .product-table-row:last-child {
    margin-bottom: 60px;
  }
  .product-table.v2 .product-table-quantity.numerical {
    padding: 20px 0 0 100px;
  }
  .product-table.v2 .product-table-quantity.numerical .title .times {
    display: inline;
  }
  .product-table.v2 .product-table-quantity.numerical + .product-table-total {
    padding: 20px 100px 0 0;
    margin-top: 0;
  }
  .product-table .product-table-header {
    display: none;
  }
  .product-table .product-table-row {
    float: left;
    width: 270px;
    height: auto;
    margin: 0 30px 30px 0;
    padding-right: 0;
    padding-bottom: 30px;
    text-align: center;
  }
  .product-table .product-table-row:nth-child(odd) {
    margin-right: 0;
  }
  .product-table .product-table-row:last-child {
    margin-bottom: 60px;
  }
  .product-table .product-table-row > * {
    float: none;
    width: 270px;
    height: auto;
  }
  .product-table .product-table-row .product-table-name,
.product-table .product-table-row .product-table-price,
.product-table .product-table-row .product-table-quantity,
.product-table .product-table-row .product-table-total,
.product-table .product-table-row .product-table-availability,
.product-table .product-table-row .product-table-actions {
    padding: 20px 0 0;
  }
  .product-table .product-table-row .product-table-photo {
    padding-top: 0;
  }
  .product-table .product-table-row .button,
.product-table .product-table-row .rating {
    display: inline-block;
  }
  .product-table .product-table-row .remove-fcart {
    width: auto;
    top: 5px;
  }
  .product-table .product-table-row .product-table-quantity {
    float: left;
    width: auto;
    padding-left: 70px;
  }
  .product-table .product-table-row .product-table-total {
    float: right;
    width: auto;
    margin-top: 16px;
    padding-right: 70px;
  }
}
@media screen and (max-width: 860px) {
  .section-message p {
    width: 95%;
  }
}
@media screen and (max-width: 680px) {
  .product-table {
    width: 270px;
  }
  .product-table .product-table-row {
    margin-right: 0;
  }

  .section-actions {
    width: 200px;
  }
  .section-actions .button {
    float: none;
    margin-bottom: 20px;
  }
  .section-actions .button:last-child {
    float: none;
  }
}
@media screen and (max-width: 480px) {
  .section-message .section-decoration {
    width: 270px;
    height: 270px;
  }
  .section-message .section-decoration.big {
    width: 270px;
    height: 320px;
  }
  .section-message .section-decoration .svg-cart {
    width: 270px;
    height: 211px;
  }
  .section-message .section-decoration .svg-check-big {
    top: 112px;
    width: 80px;
    height: 51px;
  }
  .section-message .section-decoration .s-icon {
    font-size: 270px;
  }
  .section-message .section-decoration .svg-cross {
    width: 90px;
    height: 90px;
    top: 166px;
    right: 0;
  }
  .section-message .title {
    line-height: 1.2;
  }
  .section-message .title.medium {
    font-size: 1.875em;
  }
}
/*------------------------------------------------------------------
[Table of contents]

1. Contact Actions / .contact-actions
2. Contact Map / .contact-map
3. Reponsive Layout / MEDIA QUERIES
-------------------------------------------------------------------*/
.contact-actions {
  position: relative;
}
.contact-actions:after {
  content: "";
  display: table;
  clear: both;
}
.contact-actions .contact-form {
  float: right;
  width: 500px;
  min-height: 608px;
  padding-top: 5px;
}
.contact-actions .contact-form .button {
  width: 240px;
}

.contact-map {
  width: 50%;
  height: 608px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}

@media screen and (max-width: 1260px) {
  .contact-actions .contact-form {
    float: none;
    width: 100%;
    padding: 30px 0 100px;
  }
  .contact-actions .contact-form .button {
    margin: 0 auto;
  }

  .contact-map {
    width: 100%;
    position: static;
  }
}
/*------------------------------------------------------------------
[Table of contents]

1. Shortcode Title / .shortcode-title
2. Color Boxes / .color-boxes
3. Font Display / .font-display
4. Form Display / .form-display
5. Button Display / .button-display
6. Alert Box Display / .alert-box-display
7. Quotes Display / .quotes-display
8. Reponsive Layout / MEDIA QUERIES
-------------------------------------------------------------------*/
.shortcode-title {
  margin-bottom: 50px;
}

.color-boxes:after {
  content: "";
  display: table;
  clear: both;
}
.color-boxes .color-box {
  float: left;
  width: 70px;
  margin: 0 15px 15px 0;
  text-align: center;
}
.color-boxes .color-box:last-child {
  margin-right: 0;
}
.color-boxes .color-box .cbox {
  width: 70px;
  height: 70px;
  border-radius: 2px;
  margin-bottom: 15px;
}
.color-boxes .color-box .cbox.main {
  background-color: #ff5400;
}
.color-boxes .color-box .cbox.secondary {
  background-color: #ff7200;
}
.color-boxes .color-box .cbox.tertiary {
  background-color: #ffae00;
}
.color-boxes .color-box .cbox.black {
  background-color: #242424;
}
.color-boxes .color-box .cbox.gray {
  background-color: #8b8b8b;
}
.color-boxes .color-box .cbox.light-gray {
  background-color: #b2b2b2;
}
.color-boxes .color-box .ccode {
  font-size: 0.6875em;
  color: #8b8b8b;
}

.font-display:after {
  content: "";
  display: table;
  clear: both;
}
.font-display .font-weight {
  float: left;
  width: 20%;
}
.font-display .font-weight .title {
  text-transform: none;
  margin-bottom: 25px;
}
.font-display .font-weight .title.bold {
  font-weight: 700;
}
.font-display .font-weight .title.regular {
  color: #8b8b8b;
  font-weight: 400;
}
.font-display .font-paragraph {
  float: right;
  width: 78%;
  position: relative;
  top: -9px;
}

.form-display:after {
  content: "";
  display: table;
  clear: both;
}
.form-display .input-display {
  float: left;
  width: 65%;
}
.form-display .radio-check-display {
  float: right;
  width: 33%;
  padding-top: 24px;
}
.form-display .radio-check-display .form-row {
  margin-bottom: 30px;
}

.button-display {
  margin-top: 70px;
}
.button-display .button-display-list:after {
  content: "";
  display: table;
  clear: both;
}
.button-display .button-display-list .button-display-list-item {
  float: left;
  width: 200px;
  margin: 0 70px 40px 0;
}
.button-display .button-display-list .button-display-list-item:last-child {
  margin-right: 0;
}
.button-display .button-display-list .button-display-list-item.short .button {
  margin-bottom: 10px;
}
.button-display .button-display-list .button-display-list-item .button {
  margin-bottom: 20px;
}

.alert-box-display {
  margin-top: 60px;
}
.alert-box-display .alert-box {
  margin-bottom: 24px;
}

.quotes-display {
  margin-top: 80px;
}
.quotes-display .quote-box.v1 {
  margin-bottom: 34px;
}

@media screen and (max-width: 1260px) {
  .form-display .input-display,
.form-display .radio-check-display {
    float: none;
    width: 100%;
  }
  .form-display .input-display {
    margin-bottom: 30px;
  }

  .quotes-display .quote-box.v1 {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 680px) {
  .font-display .font-weight,
.font-display .font-paragraph {
    float: none;
    width: 100%;
  }
  .font-display .font-weight {
    margin-bottom: 40px;
  }
}
/*------------------------------------------------------------------
[Table of contents]

1. Alert Boxes Versions / .alert-box
2. Reponsive Layout / MEDIA QUERIES
-------------------------------------------------------------------*/
.alert-box {
  min-height: 100px;
  padding-left: 140px;
  border-radius: 4px;
  position: relative;
}
.alert-box:after {
  content: "";
  display: table;
  clear: both;
}
.alert-box.v2 .alert-title, .alert-box.v3 .alert-title {
  color: #242424;
}
.alert-box.v2 .alert-text, .alert-box.v3 .alert-text {
  color: #8b8b8b;
}
.alert-box.v2.info, .alert-box.v3.info {
  background-color: #f1f1f1;
}
.alert-box.v2.info .alert-close-btn, .alert-box.v3.info .alert-close-btn {
  fill: #242424;
}
.alert-box.v2.info .svg-exclamation, .alert-box.v3.info .svg-exclamation {
  fill: #ff5400;
}
.alert-box.v3.small {
  padding-left: 62px;
}
.alert-box.v3.small .alert-decoration {
  width: 43px;
  height: 42px;
}
.alert-box.v3.small.info .svg-exclamation {
  fill: #fff;
  top: 12px;
  left: 20px;
}
.alert-box.v3 .alert-decoration {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #ff5400;
  position: absolute;
  top: 0;
  left: 0;
}
.alert-box .alert-title,
.alert-box .alert-text {

  line-height: 30px;
  color: #fff;
}
.alert-box .alert-title {
  margin-right: 18px;
  font-size: 1em;
}
.alert-box .alert-text .strong {
  font-weight: 700;
}
.alert-box .button {
  position: absolute;
  top: 34px;
  right: 35px;
}
.alert-box .svg-exclamation,
.alert-box .svg-check,
.alert-box .svg-cross {
  fill: #fff;
  position: absolute;
}
.alert-box .alert-close-btn {
  top: 16px;
  right: 18px;
  cursor: pointer;
}
.alert-box.info {
  background-color: #8B8B8B;
  margin-bottom:20px;
  max-width:800px;
	
}
.alert-box.info .svg-exclamation {
  top: 12px;
  left: 6px;
}
.alert-box.success {
  background-color: #ff5400;
}
.alert-box.success .svg-check {
  width: 42px;
  height: 32px;
  top: 34px;
  left: 32px;
}
.alert-box.error {
  background-color: #242424;
}
.alert-box.error .svg-cross {
  fill: #ff5400;
  width: 30px;
  height: 30px;
  top: 35px;
  left: 37px;
}
.alert-box.small {
  height: 42px;
  padding-left: 50px;
}
.alert-box.small .alert-title,
.alert-box.small .alert-text {
  font-size: 0.75em;
  line-height: 42px;
}
.alert-box.small .button {
  width: 170px;
  height: 42px;
  line-height: 42px;
  border-radius: 0;
  top: 0;
  right: 0;
}
.alert-box.small.info .svg-exclamation {
  width: 8px;
  height: 18px;
  top: 12px;
  left: 24px;
}
.alert-box.small.success .svg-check {
  width: 15px;
  height: 11px;
  top: 16px;
  left: 20px;
}
.alert-box.small.error .svg-cross {
  width: 11px;
  height: 11px;
  top: 16px;
  left: 22px;
}

@media screen and (max-width: 1260px) {
  .alert-box {
    height: auto;
    padding: 40px 30px;
    text-align: center;
  }
  .alert-box.v3.small {
    padding: 24px 15px;
  }
  .alert-box.v3 .alert-decoration {
    margin: 0 auto;
    padding: 10px 0 10px 4px;
    border-radius: 4px;
    position: static;
  }
  .alert-box .alert-title,
.alert-box .alert-text {
    float: none;
    line-height: 1em;
  }
  .alert-box .alert-title {
    margin: 20px 0 14px 0;
  }
  .alert-box .alert-text {
    line-height: 30px;
  }
  .alert-box .button {
    position: static;
    display: inline-block;
    margin-top: 24px;
  }
  .alert-box .svg-exclamation,
.alert-box .svg-check,
.alert-box .svg-cross {
    position: static;
  }
  .alert-box .alert-close-btn {
    position: absolute;
  }
  .alert-box.small {
    height: auto;
    padding: 24px 15px;
  }
  .alert-box.small .alert-title {
    margin: 12px 0 6px;
    line-height: 1em;
  }
  .alert-box.small .alert-text {
    line-height: 24px;
  }
  .alert-box.small .button {
    width: 116px;
    height: 32px;
    border-radius: 4px;
    line-height: 32px;
  }
}
/*------------------------------------------------------------------
[Table of contents]

1. Product Builder Container / .product-builder-wrap
2. Product Builder Versions / .product-builder
3. Reponsive Layout / MEDIA QUERIES
-------------------------------------------------------------------*/
.product-builder-wrap {
  background-color: #f1f1f1;
  position: relative;
}
.product-builder-wrap .builder-overlay {
  width: 100%;
  height: 100%;
  background: url("../img/builder/builder_bg.png") no-repeat center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
}

.product-builder {
  min-height: 770px;
  position: relative;
}
.product-builder.v2 .product-builder-colorpicker {
  left: 450px;
}
.product-builder.v2 .product-builder-sizepicker {
  left: 524px;
}
.product-builder .restart-builder-button {
  width: 46px;
  height: 46px;
  border-radius: 4px;
  background-color: #b2b2b2;
  position: absolute;
  top: 64px;
  left: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.product-builder .restart-builder-button:after {
  content: "";
  display: table;
  clear: both;
}
.product-builder .restart-builder-button:hover {
  width: 130px;
  background-color: #242424;
}
.product-builder .restart-builder-button .svg-restart {
  float: left;
  margin: 18px 22px 0 18px;
}
.product-builder .restart-builder-button .title {
  float: left;
  font-size: 0.75em;
  line-height: 46px;
}
.product-builder .product-builder-img {
  position: absolute;
  top: 160px;
  left: -27px;
}
.product-builder .product-builder-colorpicker {
  position: absolute;
  top: 76px;
  left: 482px;
}
.product-builder .product-builder-colorpicker .svg-colorpicker {
  width: 110px;
  height: 110px;
  cursor: pointer;
}
.product-builder .product-builder-colorpicker .svg-colorpicker .check {
  display: none;
}
.product-builder .product-builder-colorpicker .svg-colorpicker .check.selected {
  display: block;
}
.product-builder .product-builder-sizepicker {
  position: absolute;
  top: 232px;
  left: 540px;
}
.product-builder .product-builder-sizepicker .svg-sizepicker {
  width: 110px;
  height: 110px;
  cursor: pointer;
}
.product-builder .product-builder-sizepicker .svg-sizepicker .selected {
  fill: #ff5400;
}
.product-builder .selectable-info {
  width: 68px;
  height: 68px;
  padding-top: 20px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 21px;
  left: 21px;
}
.product-builder .selectable-info .title {
  font-size: 0.9375em;
  font-weight: 700;
  text-transform: none;
  text-align: center;
  margin-bottom: 1px;
}
.product-builder .selectable-info .title.tiny {
  font-size: 0.6875em;
}
.product-builder .product-builder-actions {
  width: 470px;
  height: 100%;
  padding-top: 60px;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
}
.product-builder .product-builder-actions.v2 {
  width: 430px;
  padding-top: 40px;
}
.product-builder .product-builder-actions .builder-tab-controls {
  width: 80px;
  position: absolute;
  top: 240px;
  left: -65px;
}
.product-builder .product-builder-actions .builder-tab-controls .builder-tab-control {
  width: 65px;
  height: 60px;
  margin-bottom: 14px;
  padding-top: 16px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #b2b2b2;
  text-align: center;
  cursor: pointer;
}
.product-builder .product-builder-actions .builder-tab-controls .builder-tab-control:last-child {
  margin-bottom: 0;
}
.product-builder .product-builder-actions .builder-tab-controls .builder-tab-control.with-icon {
  padding-top: 4px;
}
.product-builder .product-builder-actions .builder-tab-controls .builder-tab-control .svg-check {
  fill: #fff;
  width: 10px;
  height: 8px;
}
.product-builder .product-builder-actions .builder-tab-controls .builder-tab-control .title {
  font-size: 0.6875em;
  color: #fff;
  line-height: 1.2;
  font-weight: 700;
  text-transform: none;
}
.product-builder .product-builder-actions .builder-tab-controls .builder-tab-control .sl-icon {
  display: inline-block;
  color: #fff;
  font-size: 30px;
}
.product-builder .product-builder-actions .builder-tab-controls .builder-tab-control.selected {
  background-color: #fff;
}
.product-builder .product-builder-actions .builder-tab-controls .builder-tab-control.selected .svg-check {
  fill: #ff5400;
}
.product-builder .product-builder-actions .builder-tab-controls .builder-tab-control.selected .title {
  color: #242424;
}
.product-builder .product-builder-actions .builder-tab-controls .builder-tab-control.selected .sl-icon {
  color: #ff5400;
}
.product-builder .product-builder-actions .builder-separator {
  width: 100%;
  height: 1px;
  margin-top: 34px;
  background-color: #e8e8e8;
}
.product-builder .product-builder-actions .product-builder-actions-info {
  padding: 0 35px;
  position: relative;
}
.product-builder .product-builder-actions .product-builder-actions-info.overview-scroll {
  overflow-y: auto;
  height: 454px;
  padding-bottom: 120px;
}
.product-builder .product-builder-actions .product-builder-actions-info.hidden {
  display: none;
}
.product-builder .product-builder-actions .product-builder-actions-info .title {
  margin-bottom: 12px;
}
.product-builder .product-builder-actions .product-builder-actions-info .product-description {
  margin-bottom: 18px;
}
.product-builder .product-builder-actions .product-builder-actions-info .product-price {
  position: absolute;
  top: 0;
  right: 35px;
}
.product-builder .product-builder-actions .product-builder-actions-info form {
  margin-top: 35px;
}
.product-builder .product-builder-actions .product-builder-actions-info .details-list {
  margin-top: 35px;
}
.product-builder .product-builder-actions .product-builder-actions-info .button-list {
  margin-top: 34px;
}
.product-builder .product-builder-actions .add-to-cart {
  border-radius: 0;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 1260px) {
  .product-builder-wrap .builder-responsive-overlay {
    width: 100%;
    height: 786px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .product-builder-wrap.v2 .builder-responsive-overlay {
    height: 888px;
  }

  .product-builder .product-builder-view {
    padding-top: 30px;
  }
  .product-builder .restart-builder-button,
.product-builder .product-builder-img {
    position: static;
    margin: 0 auto 40px;
  }
  .product-builder .product-builder-pickers {
    width: 260px;
    margin: 0 auto 60px;
  }
  .product-builder .product-builder-pickers:after {
    content: "";
    display: table;
    clear: both;
  }
  .product-builder .product-builder-pickers .product-builder-colorpicker,
.product-builder .product-builder-pickers .product-builder-sizepicker {
    position: relative;
    top: auto;
    left: auto;
  }
  .product-builder .product-builder-pickers .product-builder-colorpicker {
    float: left;
  }
  .product-builder .product-builder-pickers .product-builder-sizepicker {
    float: right;
  }
  .product-builder .product-builder-actions {
    width: 100%;
    height: auto;
    padding: 60px 0 152px;
    position: static;
  }
  .product-builder .product-builder-actions.v2 {
    width: 100%;
    height: 888px;
    padding-top: 60px;
    position: relative;
  }
  .product-builder .product-builder-actions.v2 .builder-separator {
    margin-bottom: 120px;
  }
  .product-builder .product-builder-actions .builder-tab-controls {
    width: 320px;
    top: 254px;
    left: 50%;
    margin-left: -160px;
  }
  .product-builder .product-builder-actions .builder-tab-controls:after {
    content: "";
    display: table;
    clear: both;
  }
  .product-builder .product-builder-actions .builder-tab-controls .builder-tab-control {
    float: left;
    width: 80px;
    margin-bottom: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
@media screen and (max-width: 680px) {
  .product-builder-wrap .builder-responsive-overlay {
    height: 887px;
  }
  .product-builder-wrap.v2 .builder-responsive-overlay {
    height: 1101px;
  }

  .product-builder .product-builder-img {
    width: 280px;
    height: 210px;
  }
  .product-builder .product-builder-actions.v2 {
    height: 1101px;
  }
  .product-builder .product-builder-actions .product-builder-actions-info.overview-scroll {
    height: 700px;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .product-builder-wrap .builder-responsive-overlay {
    height: 939px;
  }

  .product-builder .product-builder-actions .product-builder-actions-info {
    padding: 0 20px;
  }
  .product-builder .product-builder-actions .product-builder-actions-info .product-price {
    position: static;
    margin-top: 24px;
  }
  .product-builder .product-builder-actions .builder-tab-controls {
    width: 320px;
    top: 306px;
  }
}

/*# sourceMappingURL=test.css.map */
