@charset "UTF-8";

/*!
Theme Name: VJT V2
Theme URI: ahmedghazi.com
Author: aeai
AuthorURI: ahmedghazi.com
Description: themeDescription
Version: 1.2
License: The MIT License (MIT)
License URI: http://opensource.org/licenses/MIT
Text Domain: aeai
*/
/* FONTS
-------------------------- */
/* RESET & BASE
------------------ */
/* DEFAULT & RESET CSS*/
/* Table of Contents
==================================================
  1 Generic Styles
  2 Resets
    A Global
    B Media
    C Forms
  3 Typography



/* 1 GENERIC STYLES
================================================== */
/*Mash up based on
  (A) the Bootstrap toolkit from Twitter http://twitter.github.com/bootstrap
  (B) http://csswizardry.com/web-design+/#css
  (C) WordPress image styles */
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  transform-style: flat;
  -webkit-user-drag: none;
  outline: 0;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

div {
  position: relative;
}

.clear {
  clear: both;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

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

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

img.alignleft {
  margin-right: 1em;
  margin-bottom: 1.8em;
}

img.alignright {
  margin-left: 1em;
  margin-bottom: 1.8em;
}

ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.half {
  width: 45%;
  /* Not exactly half to account for paddings, margins etc. */
}

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

.hide {
  /* Hide stuff without resorting to display:none; */
  visibility: hidden;
  width: 0 !important;
  height: 0 !important;
  line-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* 2 RESETS
================================================== */
/* 2A GLOBAL RESET
Based on 'reset.css' in the Yahoo! User Interface Library: http://developer.yahoo.com/yui */
*,
html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
label,
fieldset,
input,
p,
blockquote,
th,
td,
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: inherit;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset {
  border: 0;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  /* Read more > http://bit.ly/qh1V0T */
  vertical-align: top;
}

q:before,
q:after {
  content: '';
}

html {
  overflow-y: scroll;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* The below restores some sensible defaults */
strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

a img {
  border: none;
}

/* Gets rid of IE's blue borders */
/* 2B MEDIA
Based on the Bootstrap toolkit from Twitter http://twitter.github.com/bootstrap */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

audio:not([controls]) {
  display: none;
}

/* 2C FORMS
Based on the Bootstrap toolkit from Twitter http://twitter.github.com/bootstrap */
button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

button,
input {
  line-height: normal;
  *overflow: visible;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button {
  cursor: pointer;
  -webkit-appearance: button;
}

input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}

input[type="search"] {
  -webkit-appearance: textfield;
}

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

textarea {
  overflow: auto;
  vertical-align: top;
}

*:focus {
  outline: none;
}

/* 3 TYPOGRAPHY
================================================== */
.alert {
  background: red;
  color: white;
}

/* 'alert' has a basic style, since it's useful to have it standing out for testing purposes. */
/* SRCSET */
img[data-sizes="auto"] {
  display: block;
  width: 100%;
}

/************************************************************************
 Borrowed from Bourbon: http://bourbon.io/docs/#html5-input-types

 Generate a variable ($all-text-inputs) with a list of all html5 input types that have a text-based input, excluding textarea.
 http://diveintohtml5.org/forms.html
************************************************************************/
/* Bare inputs */
/* Hover Pseudo-class */
/* Focus Pseudo-class */
/***********************************************************
  ANIMATIONS
 ***********************************************************/
/* BASE VARIABLES
 *******************/
/* Sizes */
/* Colors */
/* Fonts */
/* Borders */
/* PADDINGS */
/* Breakpoints */
/***********************************************************
  MISC
 ***********************************************************/
.vhidden {
  visibility: hidden;
  pointer-events: none;
}

.outline {
  /*box-shadow: inset 0 0 1px #fff, inset 0 0 1px #fff, inset 0 0 1px #fff;*/
  border: 1px solid;
}

.prel {
  position: relative;
}

.grayscale {
  /*filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");*/
  /* Firefox 10+, Firefox on Android */
  filter: gray;
  /* IE6-9 */
  -webkit-filter: grayscale(100%);
  /* Chrome 19+, Safari 6+, Safari 6+ iOS */
}

/***********************************************************
  MODAL
 ***********************************************************/
.modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  left: 0;
  top: 0;
  z-index: 249;
  display: block;
  display: none;
}

.modal .flex,
.modal-bg,
.modal-inner {
  height: 100vh;
}

.modal .close,
.modal .modal-close {
  position: absolute;
  right: 1em;
  top: 1em;
}

.modal .center-center {
  pointer-events: none;
}

.modal .center-center * {
  pointer-events: auto;
}

.modal-bg {
  cursor: pointer;
  width: 100vw;
  position: absolute;
}

/***********************************************************
  OPEN/CLOSE
 ***********************************************************/
.open,
.close,
.plus,
.minus {
  display: inline-block;
  width: 25px;
  height: 25px;
  overflow: hidden;
  opacity: 1;
  cursor: pointer;
}

.open::before,
.open::after,
.close::before,
.close::after,
.plus::before,
.plus::after,
.minus::before,
.minus::after {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #000;
}

.open::before,
.plus:before,
.minus:before {
  transform: rotate(0deg);
}

.open::after,
.plus::after {
  transform: rotate(90deg);
}

.close::before {
  transform: rotate(45deg);
}

.close::after {
  transform: rotate(-45deg);
}

.minus:after {
  display: none;
}

.loading>* {
  position: relative;
  opacity: 0.1;
  transition: all 0.2s ease-out 0s;
  transition-timing-function: cubic-bezier(0.37, 0.01, 0, 0.98);
}

.loading:after {
  content: url("assets/images/loader.gif");
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, 0);
}

.ico-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  border-top: 36px solid transparent;
  border-bottom: 36px solid transparent;
  border-left: 52px solid black;
}

.columns {
  -moz-column-count: 2;
  column-count: 2;
  -moz-column-gap: 40px;
  column-gap: 40px;
}

p:empty {
  display: none;
}

.flex {
  display: flex !important;
}

.flex-sa {
  justify-content: space-around;
}

.flex-sb {
  justify-content: space-between;
}

.flex-fs {
  justify-content: flex-start;
}

.flex-auto {
  margin: auto;
}

.vhidden {
  visibility: hidden;
}

pre {
  background-color: yellow !important;
  padding: 1em !important;
  margin-bottom: 1em !important;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.clearfix {
  display: inline-block;
}

/* start commented backslash hack \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

.text-left {
  text-align: left;
}

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

.ib {
  display: inline-block;
}

/* close commented backslash hack */
/***********************************************************
BURGER
***********************************************************/
.burger {
  display: inline-block;
  width: 18px;
  height: 18px;
  cursor: pointer;
  text-decoration: none;
}

.burger i {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  height: 2px;
  color: #252525;
  font: bold 14px/.4 Helvetica;
  text-transform: uppercase;
  text-indent: -55px;
  background: #252525;
  transition: all .2s ease-in-out;
}

.burger i::before,
.burger i::after {
  content: '';
  width: 100%;
  height: 2px;
  background: #252525;
  position: absolute;
  left: 0;
  transition: all .2s ease-in-out;
}

.burger i::before {
  top: -7px;
}

.burger i::after {
  bottom: -7px;
}

.burger:hover i::before {
  top: -5px;
}

.burger:hover i::after {
  bottom: -5px;
}

.burger.active i {
  /*opacity: 0;
  -webkit-transform: translateX(18px);
          transform: translateX(18px);*/
  background-color: transparent;
}

.burger.active i::before {
  top: 0;
  transform: rotateZ(45deg);
}

.burger.active i::after {
  bottom: 0;
  transform: rotateZ(-45deg);
}

/***********************************************************
MODAL
***********************************************************/
.modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  left: 0;
  top: 0;
  z-index: 9999;
  display: block;
  display: none;
}

.modal-inner {
  height: 100%;
}

.modal .close {
  position: absolute;
  right: 1em;
  top: 1em;
}

/***********************************************************
OPEN/CLOSE
***********************************************************/
.open,
.close {
  display: inline-block;
  width: 25px;
  height: 25px;
  overflow: hidden;
  opacity: 1;
  cursor: pointer;
}

.open:hover,
.close:hover {
  transform: rotate(180deg);
}

.open::before,
.open::after,
.close::before,
.close::after {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #000;
}

.close::before {
  transform: rotate(45deg);
}

.close::after {
  transform: rotate(-45deg);
}

.anime {
  transition: all .2s ease-in-out;
}

.anime_md {
  transition: all .4s ease-in-out;
}

.anime_lg {
  transition: all .8s ease-in-out;
}

.anime_lgg {
  transition: all 1s ease-in-out;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.outline {
  /*box-shadow: inset 0 0 1px #fff, inset 0 0 1px #fff, inset 0 0 1px #fff;*/
  border: 1px solid;
}

.grayscale {
  /*filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");*/
  /* Firefox 10+, Firefox on Android */
  filter: gray;
  /* IE6-9 */
  -webkit-filter: grayscale(100%);
  /* Chrome 19+, Safari 6+, Safari 6+ iOS */
}

.slideTop {
  transform: translateY(-100%);
  opacity: 0;
}

.slideRight {
  transform: translate(100%);
  opacity: 0;
}

.slideBottom {
  opacity: 0;
  transform: translateY(100%);
}

.slideLeft {
  transform: translate(-100%);
  opacity: 0;
}

/***********************************************************
RADIO/CHECKBOX
***********************************************************/
/*.radio [type="radio"]:not(:checked),
.radio [type="radio"]:checked,
.checkbox [type="checkbox"]:not(:checked),
.checkbox [type="checkbox"]:checked{
  position: absolute;
  left: -9999px;
}
.radio label,
.checkbox label{

  text-indent: -9999px;
  position: relative !important;
  height: 100%;
  width: 100%;
  vertical-align: middle;
}

.radio label:before,
.checkbox label:before{
  width: 8px; height: 8px;
  background-color: transparent;
  border:1px solid #231f20;
  border-radius: 8px;
  content: " ";
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  left: 0; top: 0;
}

.radio label::after,
.checkbox label::after{
  position: absolute;
  left: 0;
  top: 0;
  content: " ";
  width: 8px; height: 8px;
  border:none;
  border-radius: 8px;
  background-color: black;
  -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  -webkit-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  transform: scale(0, 0);
}

.radio [type="radio"]:checked + label::after,
.checkbox [type="checkbox"]:checked + label::after{
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
}*/
input[type='checkbox'],
input[type='radio'] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: 2px solid #000;
  width: 16px;
  height: 16px;
}

input[type='checkbox']:checked,
input[type='radio']:checked {
  background: #000;
}

/* RESET
-------------------------------------------------------------------------------*/
html,
body,
body div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/*******************************************************************************
 GLOBALS
 *******************************************************************************/
h1,
h2,
h3 {
  /*text-transform: uppercase;*/
}

p {
  line-height: 1.4em !important;
  margin-bottom: 1em !important;
}

p:last-child {
  margin-bottom: 0 !important;
}

a,
a:visited,
a:active {
  text-decoration: none;
  color: black;
}

a,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  color: black;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4 {
  font-weight: normal;
}

button:focus {
  outline: none;
}

input,
button,
textarea {
  font-size: 12px;
  border: none;
  background-color: transparent;
}

.button {
  background: transparent;
  border-radius: 0;
  letter-spacing: 0;
}

select {
  background: transparent;
  border: none;
  border: 2px solid;
  font-size: 12px;
  height: 25px;
  font)width: ;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: black;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: black;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: black;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: black;
}

select,
input,
button,
.button {}

/*
font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1, 'clig' 1;
*/
ul {
  list-style: none;
}

p {
  margin-bottom: 1em;
}

p,
button {
  font-variant-ligatures: no-common-ligatures;
}

.strong {
  font-weight: bold;
}

h2,
h3 {
  font-weight: normal;
}

html,
body {
  font-family: 'WelcomeRegular',
    sans-serif;
  font-size: 14px;
  line-height: 1.231em;
  letter-spacing: 1px !important;
  color: #000;
  /* background-color: #f8e0dc; */
  background: #f8e0dc;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#wrapper {
  /*max-width: 1280px;
  margin: 0 auto;*/
  padding-top: 140px;
}

.container {
  width: 1280px;
  margin: 0 auto;
}

@media all and (max-width: 1280px) {
  .container {
    width: calc(100vw - 2rem);
  }

  form.checkout.woocommerce-checkout {
    flex-direction: column;
  }

  #customer_details,
  #order_review .shop_table,
  #order_review .wc_payment_methods,
  div#order_review {
    width: 100% !important;
  }
}

section {
  padding-bottom: 45px;
}

/*******************************************************************************
 FOOTER
 *******************************************************************************/
footer {
  width: 100vw;
  left: 0;
  bottom: 45px;
  position: fixed;
  pointer-events: none;
}

.connecteurs {
  margin-bottom: 25px;
  pointer-events: auto;
}

.connecteurs ul {
  display: flex;
}

.connecteurs li {
  margin-right: 0.5em;
}

.connecteurs li a {
  width: 33px;
  height: 33px;
  display: block;
}

.connecteurs li a img {
  width: 100%;
}

.connecteurs li i {
  position: relative;
  right: -2px;
}

.newsletter-wrap {
  pointer-events: auto;
  font-size: 13px;
  padding-right: 1em;
}

.newsletter-wrap .form-mc {
  border: 1px solid;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.newsletter-wrap .label {
  margin-bottom: 14px;
}

.newsletter-wrap input[type=email] {
  border: none;
  font-size: 13px;
  padding: 7px;
  background: transparent;
  width: calc(100% - 25px);
}

.newsletter-wrap input[type=submit] {
  text-align: center;
  background: transparent;
  width: 25px;
  padding: 0;
}

/*******************************************************************************
 HEADER
 *******************************************************************************/
header {
  font-family: "INFLUENCIADISPLAY" !important;
  letter-spacing: 0.3em;
  padding: 45px 0 0;
  padding: 0;
  z-index: 1;
}

header#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
}

header .slogan {
  margin-bottom: 1em;
}

header h1 {
  margin-bottom: 0;
  padding-bottom: 1em;
}

.header-left,
header h1,
.header-right {
  padding-top: 45px;
}

header .menu,
header h1 {
  font-size: 17px;
}

header h1 {
  position: relative;
  background-color: #f8e0dc;
}

header h1:before {
  content: "";
  width: 30px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -30px;
  background-color: #f8e0dc;
}

section .col-xs-2 {
  background-color: #f8e0dc;
}

header .menu li {
  margin-bottom: 8px;
}

header .menu li:nth-child(2) {
  margin-bottom: 59px;
}

.header-left {
  position: relative;
}

.header-left .draggable {
  left: 1rem;
}

.draggable {
  z-index: 99;
  left: 0;
  top: 0;
}

.badge {
  -webkit-filter: drop-shadow(1px 1px 0.5px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(1px 1px 0.5px rgba(0, 0, 0, 0.2));
}

#draggable-header {
  transform: translate(0px, 228px);
}

/*******************************************************************************
 MINI CART
 *******************************************************************************/
.header-right {
  position: relative;
}

.woocommerce-cart .mini_cart,
.woocommerce-checkout .mini_cart {
  display: none;
}

.mini_cart {
  position: relative;
}

.aside_cart-close {
  display: none;
}

.widget_shopping_cart .widget-title {
  padding-bottom: 1em;
  margin-bottom: 0;
}

.hide_cart_widget_if_empty {
  position: relative;
  top: -1px;
  max-width: 215px;
}

.cart-contents {
  padding-bottom: 0;
  display: block;
  font-family: "INFLUENCIADISPLAY" !important;
  font-size: 17px;
}


.aside_cart {
  /*height: calc(100vh - 77px);
  overflow: auto*/
}

.aside_cart hr {
  margin: 0.5em 0;
}

.aside_cart p {
  margin-bottom: 0 !important;
}

.mini_cart_item {
  position: relative;
  margin-bottom: 1em;
  flex-direction: row-reverse;
}

.mini_cart_item a.remove {
  font-size: 1.5em;
}

.mini_cart_item img {
  margin-bottom: 1em;
  max-width: 100%;
  height: auto;
}

.mini_cart_item dt,
.mini_cart_item dd {
  width: 40%;
  display: inline-block;
}

.wc-forward {
  padding: 10px;
  border: 2px solid;
  display: block;
  text-align: center;
  text-transform: uppercase;
}

/*******************************************************************************
 MESSAGES
 *******************************************************************************/
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  border-top: 2px solid;
  border-bottom: 2px solid;
  padding: 0.5em 0;
}

.woocommerce-error a,
.woocommerce-info a,
.woocommerce-message a {
  text-decoration: underline;
  border: none !important;
}

.woocommerce-error .wc-forward,
.woocommerce-message .wc-forward {
  display: inline-block;
}

/*******************************************************************************
 PRODUCTS
 *******************************************************************************/
.products li {
  margin-bottom: 0;
  position: relative;
}

.products li>span.price {
  display: none;
}

.variations_form.cart.flex td.label {
  padding-right: 10px;
}

.single_variation_wrap {
  position: relative;
  margin-left: 10px;
  display: flex;
}

a.reset_variations {
  margin-left: 1em;
  display: none !important;
}

.woocommerce-variation.single_variation {
  /*position: absolute;
  left: -55px;*/
}

button.wc-variation-selection-needed {
  cursor: not-allowed;
  color: grey;
}

/*******************************************************************************
 SINGLE
 *******************************************************************************/
.single-product .summary p {
  margin-bottom: 0 !important;
}

hr {
  border-top: 2px solid #000;
  margin: 45px 0;
}

.glyphs {
  padding: 0;
  font-size: 87px;
}

.alpha,
.numeric {
  word-wrap: break-word;
  /*text-shadow: 0 0 0px !important;*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px !important;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px !important;
}

.alpha {
  font-size: 2em;
  line-height: 0.85em;
}

.alpha p {
  line-height: 0.85em !important;
}

.numeric {
  font-size: 2em;
  line-height: 0.85em;
}

.numeric p {
  line-height: 0.85em !important;
}

.glyphs.TributeDisplay-Regular .alpha {
  line-height: 1em;
}

.glyphs-inner {
  /*font-size: 2em; */
  line-height: 0.85em;
  word-break: break-all;
}

.glyphs-inner p {
  line-height: 0.85em !important;
  word-wrap: break-word;
}

.glyphs-inner p br {
  display: none;
}

/*******************************************************************************
 CART
 *******************************************************************************/
.woocommerce-cart h2 {
  margin-bottom: 2em;
}

.shop_table {
  width: 100%;
}

th.product-remove,
th.product-name,
th.product-price {
  text-align: left;
}

th.product-subtotal,
td.product-subtotal {
  text-align: right;
}

.woocommerce-cart-form__contents thead th {
  border-top: 2px solid;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.woocommerce-cart-form__contents tr:first-child td {
  border-top: 2px solid;
  padding-top: 0.5em;
}

.woocommerce-cart-form__contents tr:nth-last-child(2) td {
  border-bottom: 2px solid;
  padding: 25px 0;
}

.woocommerce-cart-form__contents tr:nth-last-child(1) td {
  padding-top: 0.5em;
}

td.actions {
  text-align: right;
}

td.actions .button {
  padding: 0.5em 1em;
  border: 2px solid;
}

.cart_totals h2 {
  margin-bottom: 1em;
}

.cart_totals th {
  text-align: left;
}

.cart_totals td {
  text-align: right;
}

/*******************************************************************************
 CHECKOUT
 *******************************************************************************/
.woocommerce-checkout h2,
.woocommerce-checkout h3 {
  margin-bottom: 1em;
  text-transform: uppercase;
  border-top: 2px solid;
  padding: 15px 0;
  font-family: "INFLUENCIADISPLAY" !important;
  font-size: 17px;
  border-bottom: 2px solid;
}

#customer_details,
#order_review .shop_table,
#order_review .wc_payment_methods {
  margin-bottom: 2em;
  width: 55%;
}

abbr[title],
dfn[title] {
  border: none;
}

.woocommerce-checkout input,
.woocommerce-checkout select {
  background-color: #FFFFFF;
  border: none;
  font-size: 16px;
  letter-spacing: 0;
  font-family: 'WelcomeRegular',
    sans-serif !important;
}

.woocommerce-checkout input {
  padding: 7px 10px;
}

.woocommerce-checkout select {
  height: 34px;
}

.form-row {
  margin-bottom: 14px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-row label {
  max-width: 40% !important;
  font-size: 16px;
  width: 60%;
}

.form-row input,
.form-row textarea,
.form-row .select2-container,
.form-row select {
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
  background-color: transparent !important;
  border: 1px solid #000 !important;
}

#billing_address_2_field {
  padding-left: 40%;
}

#billing_address_2_field input {
  width: 100% !important;
}

#order_review .shop_table {
  width: 100%;
  text-align: left;
}

#order_review .shop_table tr th:nth-child(2),
#order_review .shop_table tr td:nth-child(2) {
  text-align: right;
  font-size: 16px;
}

#order_review .shop_table .cart-subtotal th,
#order_review .shop_table .cart-subtotal td {
  padding-bottom: 0px;
  padding-top: 10px;
}

#order_review .shop_table .order-total th,
#order_review .shop_table .order-total td {
  padding-top: 0px;
}

.wc_payment_method {
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.wc_payment_method>input {
  margin-right: 1em;
  padding: 10px;
}

.wc_payment_method>div {
  display: none;
}

.wc_payment_method label img {
  margin-right: 1em;
  height: 60px;
  width: 180px;
  object-fit: contain;
  object-position: left;
  margin: 10px 0 5px;
}

.place-order {
  display: flex;
  justify-content: flex-end;
}

.place-order .button {
  border: 1px solid;
  padding: 12px;
  font-size: 17px;
  text-transform: uppercase;
  background: #000;
  color: #FFF;
  font-family: "INFLUENCIADISPLAY" !important;
}

.woocommerce-store-notice {
  background-color: #f8e0dc;
  width: 100vw;
  position: fixed;
  bottom: 0;
  border-top: 2px solid;
  padding: 1em;
  margin: 0 !important;
}

#vat_number_field {
  margin: 1em 0;
  position: relative;
}

#vat_number_field .description {
  position: absolute;
  top: 40px;
  width: 60%;
}

#vat_number_field p {
  justify-content: flex-end;
}

.wc_payment_method p {
  font-size: .8em;
}

.woocommerce-order h2 {
  text-decoration: underline;
}

.woocommerce-order .woocommerce-order-overview {
  list-style: disc;
  padding-left: 1em;
  margin-bottom: 1em;
}

.woocommerce-order .woocommerce-order-details table {
  text-align: left;
  margin-bottom: 1em;
  width: auto;
  min-width: 50%;
}

.woocommerce-order .woocommerce-order-details table thead th,
.woocommerce-order .woocommerce-order-details table tbody td {
  padding-bottom: .5em;
}

/*******************************************************************************
 ARTICLE
 *******************************************************************************/
article img {
  max-width: 100%;
  height: auto;
}

/*******************************************************************************
 CHECKBOX
 *******************************************************************************/
/*******************************************************************************
 MQ
 *******************************************************************************/
.burger,
.burger-cart {
  display: none;
}

@media screen and (max-width: 991px) {

  html,
  body {
    width: 100%;
  }

  .hidden-xs {
    display: none;
  }

  #wrapper {
    padding-top: 38px;
    padding-top: 0;
  }

  .container {
    width: 100%;
  }

  header,
  section,
  footer {
    padding: 10px;
  }

  header#header {
    padding: 0 10px;
    background-color: #f8e0da;
  }

  .burger,
  .burger-cart {
    display: block;
  }

  .aside_cart {
    display: none;
    right: 0;
    width: 50vw;
    background-color: #f8e0da;
  }

  .aside_cart-close {
    position: absolute;
    right: 0;
    top: 0;
  }

  .header-left,
  header h1,
  .header-right {
    padding-top: 10px;
  }

  .draggable {
    display: none;
  }

  #header_sidebarLeft,
  .mini_cart {
    display: none;
    background-color: #f8e0dc;
    position: fixed;
    left: 0;
    top: 44px;
    width: 100vw;
    padding: 0 10px 2em 10px;
  }

  header .col-xs-8 {
    text-align: center;
  }

  header .burger-cart {
    text-align: right;
  }

  a.cart-contents {
    text-align: center;
    margin-bottom: 1em;
  }

  #header_sidebarLeft {
    text-align: center;
  }

  .aside_cart {
    display: block;
    position: static;
    width: 100%;
  }

  .alpha,
  .numeric {
    text-align: center;
  }

  .alpha {
    font-size: 1.3em;
  }

  .numeric {
    font-size: 1.7em;
  }

  footer {
    text-align: center;
    padding: 45px 10px;
    position: static;
  }

  .newsletter-wrap {
    padding-right: 0;
  }

  .wc_payment_method>div.payment_box {
    padding-left: 33px;
    display: none;
  }

  .wc_payment_method>input,
  .wc_payment_method>label {
    display: inline-block;
    vertical-align: top;
  }

  .wc_payment_method label {
    max-width: calc(100% - 43px);
  }

  #place_order {
    width: 100%;
  }

  ._ragne-slider {
    width: 100%;
  }
}

/*******************************************************************************
 STRUCTURE
 *******************************************************************************/
/* =LAYOUTS
------------------ */
/*
.wrapper {
  box-sizing: border-box;
  max-width: $flexboxgrid-max-width;
  margin: 0 auto;
}*/
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
}

.row {
  box-sizing: border-box;
  display: -moz-flex;
  display: flex;
  -moz-flex: 0 1 auto;
  flex: 0 1 auto;
  -moz-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: -20px;
  margin-left: -20px;
}

.row.reverse {
  -moz-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.col.reverse {
  -moz-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.col-1 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 25%;
  max-width: 25%;
}

.col-4 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 50%;
  max-width: 50%;
}

.col-7 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 75%;
  max-width: 75%;
}

.col-10 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  flex-basis: auto;
}

.col-xs-1 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-xs-2 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-xs-3 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-xs-5 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-xs-6 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-xs-8 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-xs-9 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-xs-11 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-xs-12 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-1 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: 8.3333333333%;
}

.col-xs-offset-2 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: 16.6666666667%;
}

.col-xs-offset-3 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: 25%;
}

.col-xs-offset-4 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: 33.3333333333%;
}

.col-xs-offset-5 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: 41.6666666667%;
}

.col-xs-offset-6 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: 50%;
}

.col-xs-offset-7 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: 58.3333333333%;
}

.col-xs-offset-8 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: 66.6666666667%;
}

.col-xs-offset-9 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: 75%;
}

.col-xs-offset-10 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: 83.3333333333%;
}

.col-xs-offset-11 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: 91.6666666667%;
}

.col-xs-offset-12 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: 100%;
}

.col-xs {
  -moz-flex-grow: 1;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
}

.start-xs {
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -moz-justify-content: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  -moz-align-items: flex-start;
  align-items: flex-start;
}

.middle-xs {
  -moz-align-items: center;
  align-items: center;
}

.bottom-xs {
  -moz-align-items: flex-end;
  align-items: flex-end;
}

.around-xs {
  -moz-justify-content: space-around;
  justify-content: space-around;
}

.between-xs {
  -moz-justify-content: space-between;
  justify-content: space-between;
}

.first-xs {
  order: -1;
}

.last-xs {
  order: 1;
}

@media only screen and (min-width: 320px) {
  .col-sm {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: auto;
  }

  .col-sm-1 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-sm-2 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-3 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-sm-5 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-sm-6 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-sm-8 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-sm-9 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-sm-11 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-sm-12 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-sm-offset-1 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 8.3333333333%;
  }

  .col-sm-offset-2 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 16.6666666667%;
  }

  .col-sm-offset-3 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 33.3333333333%;
  }

  .col-sm-offset-5 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 41.6666666667%;
  }

  .col-sm-offset-6 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 58.3333333333%;
  }

  .col-sm-offset-8 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 66.6666666667%;
  }

  .col-sm-offset-9 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 83.3333333333%;
  }

  .col-sm-offset-11 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 91.6666666667%;
  }

  .col-sm-offset-12 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 100%;
  }

  .col-sm {
    -moz-flex-grow: 1;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .start-sm {
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-sm {
    -moz-justify-content: center;
    justify-content: center;
    text-align: center;
  }

  .end-sm {
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-sm {
    -moz-align-items: flex-start;
    align-items: flex-start;
  }

  .middle-sm {
    -moz-align-items: center;
    align-items: center;
  }

  .bottom-sm {
    -moz-align-items: flex-end;
    align-items: flex-end;
  }

  .around-sm {
    -moz-justify-content: space-around;
    justify-content: space-around;
  }

  .between-sm {
    -moz-justify-content: space-between;
    justify-content: space-between;
  }

  .first-sm {
    order: -1;
  }

  .last-sm {
    order: 1;
  }
}

@media only screen and (min-width: 992px) {
  .col-md {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: auto;
  }

  .col-md-1 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-md-2 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-3 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-md-5 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-md-6 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-md-8 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-md-9 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-md-11 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-md-12 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-md-offset-1 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 8.3333333333%;
  }

  .col-md-offset-2 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 16.6666666667%;
  }

  .col-md-offset-3 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 25%;
  }

  .col-md-offset-4 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 33.3333333333%;
  }

  .col-md-offset-5 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 41.6666666667%;
  }

  .col-md-offset-6 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 50%;
  }

  .col-md-offset-7 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 58.3333333333%;
  }

  .col-md-offset-8 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 66.6666666667%;
  }

  .col-md-offset-9 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 75%;
  }

  .col-md-offset-10 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 83.3333333333%;
  }

  .col-md-offset-11 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 91.6666666667%;
  }

  .col-md-offset-12 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 100%;
  }

  .col-md {
    -moz-flex-grow: 1;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .start-md {
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-md {
    -moz-justify-content: center;
    justify-content: center;
    text-align: center;
  }

  .end-md {
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-md {
    -moz-align-items: flex-start;
    align-items: flex-start;
  }

  .middle-md {
    -moz-align-items: center;
    align-items: center;
  }

  .bottom-md {
    -moz-align-items: flex-end;
    align-items: flex-end;
  }

  .around-md {
    -moz-justify-content: space-around;
    justify-content: space-around;
  }

  .between-md {
    -moz-justify-content: space-between;
    justify-content: space-between;
  }

  .first-md {
    order: -1;
  }

  .last-md {
    order: 1;
  }
}

@media only screen and (min-width: 1441px) {
  .col-lg {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: auto;
  }

  .col-lg-1 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-lg-2 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-3 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-lg-5 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-lg-6 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-lg-8 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-lg-9 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-lg-11 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-lg-12 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-lg-offset-1 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 8.3333333333%;
  }

  .col-lg-offset-2 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 16.6666666667%;
  }

  .col-lg-offset-3 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 33.3333333333%;
  }

  .col-lg-offset-5 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 41.6666666667%;
  }

  .col-lg-offset-6 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 58.3333333333%;
  }

  .col-lg-offset-8 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 66.6666666667%;
  }

  .col-lg-offset-9 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 83.3333333333%;
  }

  .col-lg-offset-11 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 91.6666666667%;
  }

  .col-lg-offset-12 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: 100%;
  }

  .col-lg {
    -moz-flex-grow: 1;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .start-lg {
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-lg {
    -moz-justify-content: center;
    justify-content: center;
    text-align: center;
  }

  .end-lg {
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-lg {
    -moz-align-items: flex-start;
    align-items: flex-start;
  }

  .middle-lg {
    -moz-align-items: center;
    align-items: center;
  }

  .bottom-lg {
    -moz-align-items: flex-end;
    align-items: flex-end;
  }

  .around-lg {
    -moz-justify-content: space-around;
    justify-content: space-around;
  }

  .between-lg {
    -moz-justify-content: space-between;
    justify-content: space-between;
  }

  .first-lg {
    order: -1;
  }

  .last-lg {
    order: 1;
  }
}

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

#wrapper {
  padding-top: 171px;
  padding-top: 147px;
}

#main:after,
#footer:after,
.row:after {
  content: '';
  display: table;
  width: 100%;
  height: 0.1px;
  clear: both;
}

@media screen and (max-width: 991px) {
  .hidden-xs {
    display: none;
  }
}

@media screen and (min-width: 991px) {
  .xs-only {
    display: none;
  }
}

/* =VENDOR
------------------ */
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("./assets/fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("./assets/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("./assets/fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("./assets/fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("./assets/fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("./assets/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.2857142857em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.1428571429em;
  list-style-type: none;
}

.fa-ul>li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.1428571429em;
  width: 2.1428571429em;
  top: 0.1428571429em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.8571428571em;
}

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: .3em;
}

.fa.fa-pull-right {
  margin-left: .3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: .3em;
}

.fa.pull-right {
  margin-left: .3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(359deg);
  }
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(359deg);
  }
}

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  -webkit-filter: none;
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "";
}

.fa-music:before {
  content: "";
}

.fa-search:before {
  content: "";
}

.fa-envelope-o:before {
  content: "";
}

.fa-heart:before {
  content: "";
}

.fa-star:before {
  content: "";
}

.fa-star-o:before {
  content: "";
}

.fa-user:before {
  content: "";
}

.fa-film:before {
  content: "";
}

.fa-th-large:before {
  content: "";
}

.fa-th:before {
  content: "";
}

.fa-th-list:before {
  content: "";
}

.fa-check:before {
  content: "";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "";
}

.fa-search-plus:before {
  content: "";
}

.fa-search-minus:before {
  content: "";
}

.fa-power-off:before {
  content: "";
}

.fa-signal:before {
  content: "";
}

.fa-gear:before,
.fa-cog:before {
  content: "";
}

.fa-trash-o:before {
  content: "";
}

.fa-home:before {
  content: "";
}

.fa-file-o:before {
  content: "";
}

.fa-clock-o:before {
  content: "";
}

.fa-road:before {
  content: "";
}

.fa-download:before {
  content: "";
}

.fa-arrow-circle-o-down:before {
  content: "";
}

.fa-arrow-circle-o-up:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-play-circle-o:before {
  content: "";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "";
}

.fa-refresh:before {
  content: "";
}

.fa-list-alt:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

.fa-volume-off:before {
  content: "";
}

.fa-volume-down:before {
  content: "";
}

.fa-volume-up:before {
  content: "";
}

.fa-qrcode:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-book:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-print:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

.fa-font:before {
  content: "";
}

.fa-bold:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

.fa-text-height:before {
  content: "";
}

.fa-text-width:before {
  content: "";
}

.fa-align-left:before {
  content: "";
}

.fa-align-center:before {
  content: "";
}

.fa-align-right:before {
  content: "";
}

.fa-align-justify:before {
  content: "";
}

.fa-list:before {
  content: "";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "";
}

.fa-indent:before {
  content: "";
}

.fa-video-camera:before {
  content: "";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "";
}

.fa-pencil:before {
  content: "";
}

.fa-map-marker:before {
  content: "";
}

.fa-adjust:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "";
}

.fa-share-square-o:before {
  content: "";
}

.fa-check-square-o:before {
  content: "";
}

.fa-arrows:before {
  content: "";
}

.fa-step-backward:before {
  content: "";
}

.fa-fast-backward:before {
  content: "";
}

.fa-backward:before {
  content: "";
}

.fa-play:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

.fa-fast-forward:before {
  content: "";
}

.fa-step-forward:before {
  content: "";
}

.fa-eject:before {
  content: "";
}

.fa-chevron-left:before {
  content: "";
}

.fa-chevron-right:before {
  content: "";
}

.fa-plus-circle:before {
  content: "";
}

.fa-minus-circle:before {
  content: "";
}

.fa-times-circle:before {
  content: "";
}

.fa-check-circle:before {
  content: "";
}

.fa-question-circle:before {
  content: "";
}

.fa-info-circle:before {
  content: "";
}

.fa-crosshairs:before {
  content: "";
}

.fa-times-circle-o:before {
  content: "";
}

.fa-check-circle-o:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

.fa-arrow-left:before {
  content: "";
}

.fa-arrow-right:before {
  content: "";
}

.fa-arrow-up:before {
  content: "";
}

.fa-arrow-down:before {
  content: "";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "";
}

.fa-expand:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

.fa-minus:before {
  content: "";
}

.fa-asterisk:before {
  content: "";
}

.fa-exclamation-circle:before {
  content: "";
}

.fa-gift:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-eye:before {
  content: "";
}

.fa-eye-slash:before {
  content: "";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "";
}

.fa-plane:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

.fa-chevron-up:before {
  content: "";
}

.fa-chevron-down:before {
  content: "";
}

.fa-retweet:before {
  content: "";
}

.fa-shopping-cart:before {
  content: "";
}

.fa-folder:before {
  content: "";
}

.fa-folder-open:before {
  content: "";
}

.fa-arrows-v:before {
  content: "";
}

.fa-arrows-h:before {
  content: "";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-camera-retro:before {
  content: "";
}

.fa-key:before {
  content: "";
}

.fa-gears:before,
.fa-cogs:before {
  content: "";
}

.fa-comments:before {
  content: "";
}

.fa-thumbs-o-up:before {
  content: "";
}

.fa-thumbs-o-down:before {
  content: "";
}

.fa-star-half:before {
  content: "";
}

.fa-heart-o:before {
  content: "";
}

.fa-sign-out:before {
  content: "";
}

.fa-linkedin-square:before {
  content: "";
}

.fa-thumb-tack:before {
  content: "";
}

.fa-external-link:before {
  content: "";
}

.fa-sign-in:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-github-square:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-lemon-o:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-square-o:before {
  content: "";
}

.fa-bookmark-o:before {
  content: "";
}

.fa-phone-square:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

.fa-credit-card:before {
  content: "";
}

.fa-feed:before,
.fa-rss:before {
  content: "";
}

.fa-hdd-o:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bell:before {
  content: "";
}

.fa-certificate:before {
  content: "";
}

.fa-hand-o-right:before {
  content: "";
}

.fa-hand-o-left:before {
  content: "";
}

.fa-hand-o-up:before {
  content: "";
}

.fa-hand-o-down:before {
  content: "";
}

.fa-arrow-circle-left:before {
  content: "";
}

.fa-arrow-circle-right:before {
  content: "";
}

.fa-arrow-circle-up:before {
  content: "";
}

.fa-arrow-circle-down:before {
  content: "";
}

.fa-globe:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-tasks:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

.fa-arrows-alt:before {
  content: "";
}

.fa-group:before,
.fa-users:before {
  content: "";
}

.fa-chain:before,
.fa-link:before {
  content: "";
}

.fa-cloud:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-cut:before,
.fa-scissors:before {
  content: "";
}

.fa-copy:before,
.fa-files-o:before {
  content: "";
}

.fa-paperclip:before {
  content: "";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "";
}

.fa-square:before {
  content: "";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "";
}

.fa-list-ul:before {
  content: "";
}

.fa-list-ol:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-table:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

.fa-pinterest-square:before {
  content: "";
}

.fa-google-plus-square:before {
  content: "";
}

.fa-google-plus:before {
  content: "";
}

.fa-money:before {
  content: "";
}

.fa-caret-down:before {
  content: "";
}

.fa-caret-up:before {
  content: "";
}

.fa-caret-left:before {
  content: "";
}

.fa-caret-right:before {
  content: "";
}

.fa-columns:before {
  content: "";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "";
}

.fa-legal:before,
.fa-gavel:before {
  content: "";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "";
}

.fa-comment-o:before {
  content: "";
}

.fa-comments-o:before {
  content: "";
}

.fa-flash:before,
.fa-bolt:before {
  content: "";
}

.fa-sitemap:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "";
}

.fa-lightbulb-o:before {
  content: "";
}

.fa-exchange:before {
  content: "";
}

.fa-cloud-download:before {
  content: "";
}

.fa-cloud-upload:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-stethoscope:before {
  content: "";
}

.fa-suitcase:before {
  content: "";
}

.fa-bell-o:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-cutlery:before {
  content: "";
}

.fa-file-text-o:before {
  content: "";
}

.fa-building-o:before {
  content: "";
}

.fa-hospital-o:before {
  content: "";
}

.fa-ambulance:before {
  content: "";
}

.fa-medkit:before {
  content: "";
}

.fa-fighter-jet:before {
  content: "";
}

.fa-beer:before {
  content: "";
}

.fa-h-square:before {
  content: "";
}

.fa-plus-square:before {
  content: "";
}

.fa-angle-double-left:before {
  content: "";
}

.fa-angle-double-right:before {
  content: "";
}

.fa-angle-double-up:before {
  content: "";
}

.fa-angle-double-down:before {
  content: "";
}

.fa-angle-left:before {
  content: "";
}

.fa-angle-right:before {
  content: "";
}

.fa-angle-up:before {
  content: "";
}

.fa-angle-down:before {
  content: "";
}

.fa-desktop:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-tablet:before {
  content: "";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "";
}

.fa-circle-o:before {
  content: "";
}

.fa-quote-left:before {
  content: "";
}

.fa-quote-right:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "";
}

.fa-github-alt:before {
  content: "";
}

.fa-folder-o:before {
  content: "";
}

.fa-folder-open-o:before {
  content: "";
}

.fa-smile-o:before {
  content: "";
}

.fa-frown-o:before {
  content: "";
}

.fa-meh-o:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-keyboard-o:before {
  content: "";
}

.fa-flag-o:before {
  content: "";
}

.fa-flag-checkered:before {
  content: "";
}

.fa-terminal:before {
  content: "";
}

.fa-code:before {
  content: "";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "";
}

.fa-location-arrow:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

.fa-code-fork:before {
  content: "";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "";
}

.fa-question:before {
  content: "";
}

.fa-info:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-subscript:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-puzzle-piece:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

.fa-microphone-slash:before {
  content: "";
}

.fa-shield:before {
  content: "";
}

.fa-calendar-o:before {
  content: "";
}

.fa-fire-extinguisher:before {
  content: "";
}

.fa-rocket:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

.fa-chevron-circle-left:before {
  content: "";
}

.fa-chevron-circle-right:before {
  content: "";
}

.fa-chevron-circle-up:before {
  content: "";
}

.fa-chevron-circle-down:before {
  content: "";
}

.fa-html5:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

.fa-ellipsis-h:before {
  content: "";
}

.fa-ellipsis-v:before {
  content: "";
}

.fa-rss-square:before {
  content: "";
}

.fa-play-circle:before {
  content: "";
}

.fa-ticket:before {
  content: "";
}

.fa-minus-square:before {
  content: "";
}

.fa-minus-square-o:before {
  content: "";
}

.fa-level-up:before {
  content: "";
}

.fa-level-down:before {
  content: "";
}

.fa-check-square:before {
  content: "";
}

.fa-pencil-square:before {
  content: "";
}

.fa-external-link-square:before {
  content: "";
}

.fa-share-square:before {
  content: "";
}

.fa-compass:before {
  content: "";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "";
}

.fa-euro:before,
.fa-eur:before {
  content: "";
}

.fa-gbp:before {
  content: "";
}

.fa-dollar:before,
.fa-usd:before {
  content: "";
}

.fa-rupee:before,
.fa-inr:before {
  content: "";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "";
}

.fa-won:before,
.fa-krw:before {
  content: "";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "";
}

.fa-file:before {
  content: "";
}

.fa-file-text:before {
  content: "";
}

.fa-sort-alpha-asc:before {
  content: "";
}

.fa-sort-alpha-desc:before {
  content: "";
}

.fa-sort-amount-asc:before {
  content: "";
}

.fa-sort-amount-desc:before {
  content: "";
}

.fa-sort-numeric-asc:before {
  content: "";
}

.fa-sort-numeric-desc:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-youtube-play:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-stack-overflow:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-bitbucket:before {
  content: "";
}

.fa-bitbucket-square:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-long-arrow-down:before {
  content: "";
}

.fa-long-arrow-up:before {
  content: "";
}

.fa-long-arrow-left:before {
  content: "";
}

.fa-long-arrow-right:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "";
}

.fa-sun-o:before {
  content: "";
}

.fa-moon-o:before {
  content: "";
}

.fa-archive:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-vk:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-stack-exchange:before {
  content: "";
}

.fa-arrow-circle-o-right:before {
  content: "";
}

.fa-arrow-circle-o-left:before {
  content: "";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "";
}

.fa-dot-circle-o:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "";
}

.fa-plus-square-o:before {
  content: "";
}

.fa-space-shuttle:before {
  content: "";
}

.fa-slack:before {
  content: "";
}

.fa-envelope-square:before {
  content: "";
}

.fa-wordpress:before {
  content: "";
}

.fa-openid:before {
  content: "";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "";
}

.fa-yahoo:before {
  content: "";
}

.fa-google:before {
  content: "";
}

.fa-reddit:before {
  content: "";
}

.fa-reddit-square:before {
  content: "";
}

.fa-stumbleupon-circle:before {
  content: "";
}

.fa-stumbleupon:before {
  content: "";
}

.fa-delicious:before {
  content: "";
}

.fa-digg:before {
  content: "";
}

.fa-pied-piper-pp:before {
  content: "";
}

.fa-pied-piper-alt:before {
  content: "";
}

.fa-drupal:before {
  content: "";
}

.fa-joomla:before {
  content: "";
}

.fa-language:before {
  content: "";
}

.fa-fax:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-child:before {
  content: "";
}

.fa-paw:before {
  content: "";
}

.fa-spoon:before {
  content: "";
}

.fa-cube:before {
  content: "";
}

.fa-cubes:before {
  content: "";
}

.fa-behance:before {
  content: "";
}

.fa-behance-square:before {
  content: "";
}

.fa-steam:before {
  content: "";
}

.fa-steam-square:before {
  content: "";
}

.fa-recycle:before {
  content: "";
}

.fa-automobile:before,
.fa-car:before {
  content: "";
}

.fa-cab:before,
.fa-taxi:before {
  content: "";
}

.fa-tree:before {
  content: "";
}

.fa-spotify:before {
  content: "";
}

.fa-deviantart:before {
  content: "";
}

.fa-soundcloud:before {
  content: "";
}

.fa-database:before {
  content: "";
}

.fa-file-pdf-o:before {
  content: "";
}

.fa-file-word-o:before {
  content: "";
}

.fa-file-excel-o:before {
  content: "";
}

.fa-file-powerpoint-o:before {
  content: "";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "";
}

.fa-file-code-o:before {
  content: "";
}

.fa-vine:before {
  content: "";
}

.fa-codepen:before {
  content: "";
}

.fa-jsfiddle:before {
  content: "";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "";
}

.fa-circle-o-notch:before {
  content: "";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "";
}

.fa-ge:before,
.fa-empire:before {
  content: "";
}

.fa-git-square:before {
  content: "";
}

.fa-git:before {
  content: "";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "";
}

.fa-tencent-weibo:before {
  content: "";
}

.fa-qq:before {
  content: "";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "";
}

.fa-history:before {
  content: "";
}

.fa-circle-thin:before {
  content: "";
}

.fa-header:before {
  content: "";
}

.fa-paragraph:before {
  content: "";
}

.fa-sliders:before {
  content: "";
}

.fa-share-alt:before {
  content: "";
}

.fa-share-alt-square:before {
  content: "";
}

.fa-bomb:before {
  content: "";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "";
}

.fa-tty:before {
  content: "";
}

.fa-binoculars:before {
  content: "";
}

.fa-plug:before {
  content: "";
}

.fa-slideshare:before {
  content: "";
}

.fa-twitch:before {
  content: "";
}

.fa-yelp:before {
  content: "";
}

.fa-newspaper-o:before {
  content: "";
}

.fa-wifi:before {
  content: "";
}

.fa-calculator:before {
  content: "";
}

.fa-paypal:before {
  content: "";
}

.fa-google-wallet:before {
  content: "";
}

.fa-cc-visa:before {
  content: "";
}

.fa-cc-mastercard:before {
  content: "";
}

.fa-cc-discover:before {
  content: "";
}

.fa-cc-amex:before {
  content: "";
}

.fa-cc-paypal:before {
  content: "";
}

.fa-cc-stripe:before {
  content: "";
}

.fa-bell-slash:before {
  content: "";
}

.fa-bell-slash-o:before {
  content: "";
}

.fa-trash:before {
  content: "";
}

.fa-copyright:before {
  content: "";
}

.fa-at:before {
  content: "";
}

.fa-eyedropper:before {
  content: "";
}

.fa-paint-brush:before {
  content: "";
}

.fa-birthday-cake:before {
  content: "";
}

.fa-area-chart:before {
  content: "";
}

.fa-pie-chart:before {
  content: "";
}

.fa-line-chart:before {
  content: "";
}

.fa-lastfm:before {
  content: "";
}

.fa-lastfm-square:before {
  content: "";
}

.fa-toggle-off:before {
  content: "";
}

.fa-toggle-on:before {
  content: "";
}

.fa-bicycle:before {
  content: "";
}

.fa-bus:before {
  content: "";
}

.fa-ioxhost:before {
  content: "";
}

.fa-angellist:before {
  content: "";
}

.fa-cc:before {
  content: "";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "";
}

.fa-meanpath:before {
  content: "";
}

.fa-buysellads:before {
  content: "";
}

.fa-connectdevelop:before {
  content: "";
}

.fa-dashcube:before {
  content: "";
}

.fa-forumbee:before {
  content: "";
}

.fa-leanpub:before {
  content: "";
}

.fa-sellsy:before {
  content: "";
}

.fa-shirtsinbulk:before {
  content: "";
}

.fa-simplybuilt:before {
  content: "";
}

.fa-skyatlas:before {
  content: "";
}

.fa-cart-plus:before {
  content: "";
}

.fa-cart-arrow-down:before {
  content: "";
}

.fa-diamond:before {
  content: "";
}

.fa-ship:before {
  content: "";
}

.fa-user-secret:before {
  content: "";
}

.fa-motorcycle:before {
  content: "";
}

.fa-street-view:before {
  content: "";
}

.fa-heartbeat:before {
  content: "";
}

.fa-venus:before {
  content: "";
}

.fa-mars:before {
  content: "";
}

.fa-mercury:before {
  content: "";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "";
}

.fa-transgender-alt:before {
  content: "";
}

.fa-venus-double:before {
  content: "";
}

.fa-mars-double:before {
  content: "";
}

.fa-venus-mars:before {
  content: "";
}

.fa-mars-stroke:before {
  content: "";
}

.fa-mars-stroke-v:before {
  content: "";
}

.fa-mars-stroke-h:before {
  content: "";
}

.fa-neuter:before {
  content: "";
}

.fa-genderless:before {
  content: "";
}

.fa-facebook-official:before {
  content: "";
}

.fa-pinterest-p:before {
  content: "";
}

.fa-whatsapp:before {
  content: "";
}

.fa-server:before {
  content: "";
}

.fa-user-plus:before {
  content: "";
}

.fa-user-times:before {
  content: "";
}

.fa-hotel:before,
.fa-bed:before {
  content: "";
}

.fa-viacoin:before {
  content: "";
}

.fa-train:before {
  content: "";
}

.fa-subway:before {
  content: "";
}

.fa-medium:before {
  content: "";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "";
}

.fa-optin-monster:before {
  content: "";
}

.fa-opencart:before {
  content: "";
}

.fa-expeditedssl:before {
  content: "";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "";
}

.fa-mouse-pointer:before {
  content: "";
}

.fa-i-cursor:before {
  content: "";
}

.fa-object-group:before {
  content: "";
}

.fa-object-ungroup:before {
  content: "";
}

.fa-sticky-note:before {
  content: "";
}

.fa-sticky-note-o:before {
  content: "";
}

.fa-cc-jcb:before {
  content: "";
}

.fa-cc-diners-club:before {
  content: "";
}

.fa-clone:before {
  content: "";
}

.fa-balance-scale:before {
  content: "";
}

.fa-hourglass-o:before {
  content: "";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "";
}

.fa-hourglass:before {
  content: "";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "";
}

.fa-hand-scissors-o:before {
  content: "";
}

.fa-hand-lizard-o:before {
  content: "";
}

.fa-hand-spock-o:before {
  content: "";
}

.fa-hand-pointer-o:before {
  content: "";
}

.fa-hand-peace-o:before {
  content: "";
}

.fa-trademark:before {
  content: "";
}

.fa-registered:before {
  content: "";
}

.fa-creative-commons:before {
  content: "";
}

.fa-gg:before {
  content: "";
}

.fa-gg-circle:before {
  content: "";
}

.fa-tripadvisor:before {
  content: "";
}

.fa-odnoklassniki:before {
  content: "";
}

.fa-odnoklassniki-square:before {
  content: "";
}

.fa-get-pocket:before {
  content: "";
}

.fa-wikipedia-w:before {
  content: "";
}

.fa-safari:before {
  content: "";
}

.fa-chrome:before {
  content: "";
}

.fa-firefox:before {
  content: "";
}

.fa-opera:before {
  content: "";
}

.fa-internet-explorer:before {
  content: "";
}

.fa-tv:before,
.fa-television:before {
  content: "";
}

.fa-contao:before {
  content: "";
}

.fa-500px:before {
  content: "";
}

.fa-amazon:before {
  content: "";
}

.fa-calendar-plus-o:before {
  content: "";
}

.fa-calendar-minus-o:before {
  content: "";
}

.fa-calendar-times-o:before {
  content: "";
}

.fa-calendar-check-o:before {
  content: "";
}

.fa-industry:before {
  content: "";
}

.fa-map-pin:before {
  content: "";
}

.fa-map-signs:before {
  content: "";
}

.fa-map-o:before {
  content: "";
}

.fa-map:before {
  content: "";
}

.fa-commenting:before {
  content: "";
}

.fa-commenting-o:before {
  content: "";
}

.fa-houzz:before {
  content: "";
}

.fa-vimeo:before {
  content: "";
}

.fa-black-tie:before {
  content: "";
}

.fa-fonticons:before {
  content: "";
}

.fa-reddit-alien:before {
  content: "";
}

.fa-edge:before {
  content: "";
}

.fa-credit-card-alt:before {
  content: "";
}

.fa-codiepie:before {
  content: "";
}

.fa-modx:before {
  content: "";
}

.fa-fort-awesome:before {
  content: "";
}

.fa-usb:before {
  content: "";
}

.fa-product-hunt:before {
  content: "";
}

.fa-mixcloud:before {
  content: "";
}

.fa-scribd:before {
  content: "";
}

.fa-pause-circle:before {
  content: "";
}

.fa-pause-circle-o:before {
  content: "";
}

.fa-stop-circle:before {
  content: "";
}

.fa-stop-circle-o:before {
  content: "";
}

.fa-shopping-bag:before {
  content: "";
}

.fa-shopping-basket:before {
  content: "";
}

.fa-hashtag:before {
  content: "";
}

.fa-bluetooth:before {
  content: "";
}

.fa-bluetooth-b:before {
  content: "";
}

.fa-percent:before {
  content: "";
}

.fa-gitlab:before {
  content: "";
}

.fa-wpbeginner:before {
  content: "";
}

.fa-wpforms:before {
  content: "";
}

.fa-envira:before {
  content: "";
}

.fa-universal-access:before {
  content: "";
}

.fa-wheelchair-alt:before {
  content: "";
}

.fa-question-circle-o:before {
  content: "";
}

.fa-blind:before {
  content: "";
}

.fa-audio-description:before {
  content: "";
}

.fa-volume-control-phone:before {
  content: "";
}

.fa-braille:before {
  content: "";
}

.fa-assistive-listening-systems:before {
  content: "";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "";
}

.fa-glide:before {
  content: "";
}

.fa-glide-g:before {
  content: "";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "";
}

.fa-low-vision:before {
  content: "";
}

.fa-viadeo:before {
  content: "";
}

.fa-viadeo-square:before {
  content: "";
}

.fa-snapchat:before {
  content: "";
}

.fa-snapchat-ghost:before {
  content: "";
}

.fa-snapchat-square:before {
  content: "";
}

.fa-pied-piper:before {
  content: "";
}

.fa-first-order:before {
  content: "";
}

.fa-yoast:before {
  content: "";
}

.fa-themeisle:before {
  content: "";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "";
}

.fa-handshake-o:before {
  content: "";
}

.fa-envelope-open:before {
  content: "";
}

.fa-envelope-open-o:before {
  content: "";
}

.fa-linode:before {
  content: "";
}

.fa-address-book:before {
  content: "";
}

.fa-address-book-o:before {
  content: "";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "";
}

.fa-user-circle:before {
  content: "";
}

.fa-user-circle-o:before {
  content: "";
}

.fa-user-o:before {
  content: "";
}

.fa-id-badge:before {
  content: "";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "";
}

.fa-quora:before {
  content: "";
}

.fa-free-code-camp:before {
  content: "";
}

.fa-telegram:before {
  content: "";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "";
}

.fa-shower:before {
  content: "";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "";
}

.fa-podcast:before {
  content: "";
}

.fa-window-maximize:before {
  content: "";
}

.fa-window-minimize:before {
  content: "";
}

.fa-window-restore:before {
  content: "";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "";
}

.fa-bandcamp:before {
  content: "";
}

.fa-grav:before {
  content: "";
}

.fa-etsy:before {
  content: "";
}

.fa-imdb:before {
  content: "";
}

.fa-ravelry:before {
  content: "";
}

.fa-eercast:before {
  content: "";
}

.fa-microchip:before {
  content: "";
}

.fa-snowflake-o:before {
  content: "";
}

.fa-superpowers:before {
  content: "";
}

.fa-wpexplorer:before {
  content: "";
}

.fa-meetup:before {
  content: "";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/* =TYPE
------------------ */


@font-face {
  font-family: 'INFLUENCIADISPLAY';
  src: url("assets/fonts/INFLUENCIADISPLAY-OCT-Regular.eot");
  /* IE9 Compat Modes */
  src: url("assets/fonts/INFLUENCIADISPLAY-OCT-Regular.eot?#iefix") format("embedded-opentype"), url("assets/fonts/INFLUENCIADISPLAY-OCT-Regular.woff") format("woff"), url("assets/fonts/INFLUENCIADISPLAY-OCT-Regular.woff") format("woff2");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "WelcomeRegular";
  src: url("assets/fonts/Welcomeweb-Regular.woff") format("woff"),
    url("assets/fonts/Welcomeweb-Regular.woff2") format("woff2");
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  unicode-range: U+0, U+D, U+20-7E, U+A0-A9, U+AB-B1, U+B4-B8, U+BB, U+BF-EF, U+F1-103, U+106-107, U+10A-110, U+112-113, U+116-117, U+11A-11B, U+11E-123, U+12A-12B, U+130-131, U+136-137, U+139-13E, U+141-148, U+14C-14D, U+150-15B, U+15E-161, U+174-178, U+17B-17C, U+218-21B, U+2C6-2C7, U+2D8-2DA, U+2DC-2DD, U+312-313, U+326, U+394, U+3A9, U+3BC, U+3C0, U+1E80-1E85, U+1EF2-1EF3, U+2007-2008, U+200B, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122, U+2205, U+220F, U+2211-2212, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+2460-2468, U+24EA, U+25AF, U+25CA, U+3046, U+304D, U+3068, U+3088, U+30B3, U+30D9, U+5E02, U+6238, U+795E, U+FB01, U+FEFF;
}

th,
strong {
  font-weight: normal;
}

.texte p {
  letter-spacing: 0px;
}

/* =COMPONENTS
------------------ */
/* Includes password protection for pages and posts, 404 page */
/* =PROJECT PAGES SPECIFIC
------------------ */
header#header {
  z-index: 100;
  position: fixed;
  height: 100px;
  background: #f8e0dc;
}

header#header .header-left {
  position: fixed;
  top: 0;
}

header#header .header-right .mini-cart {
  position: absolute;
  top: 45px;
  width: 100%;
  pointer-events: auto;
}

header#header .header-right .mini-cart .main-mini-cart>a {
  margin-bottom: 10px;
}

header#header .header-right .mini-cart .main-mini-cart .mini_cart_item {
  margin: 0;
}

.mini-cart p {
  display: none !important;
}

.mini-cart a {
  text-align: center;
  border: 2px solid;
  padding: 6px 10px;
  letter-spacing: 0.1em;
  font-weight: normal;
}

@media screen and (max-width: 991px) {
  header#header {
    height: auto;
  }

  header#header .header-right .mini-cart {
    top: 10px;
  }
}

.page-link {
  clear: both;
  display: block;
  margin: 0 0 1.5em;
}

.page-link span {
  margin-right: 6px;
}

.woocommerce-page article h1 {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  display: block;
}

.woocommerce-cart .entry-header,
.woocommerce-checkout .entry-header {
  margin-bottom: 20px;
}

.woocommerce-cart .entry-header h1,
.woocommerce-checkout .entry-header h1 {
  font-size: 17px;
  text-transform: uppercase;
  font-family: "INFLUENCIADISPLAY" !important;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  position: absolute;
  width: 100%;
}

.woocommerce-error a.wc-forward,
.woocommerce-info a.wc-forward,
.woocommerce-message a.wc-forward {
  padding-left: 0 !important;
}

.woocommerce-cart .woocommerce-error,
.woocommerce-cart .woocommerce-info,
.woocommerce-cart .woocommerce-message {
  position: initial;
}

.products {
  position: relative;
  display: block;
  top: -20px;
}

.variations_form .variations_form--header {
  display: -moz-flex;
  display: flex;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -moz-align-items: flex-end;
  align-items: flex-end;
  padding-top: 4px;
  padding-bottom: 8px;
}

.variations_form .variations_form--header .label {}

.variations_form .single_variation_wrap {
  display: -moz-flex;
  display: flex;
  -moz-align-items: center;
  align-items: center;
}

/* .variations_form .single_variation_wrap, .variations_form .single_variation_wrap * {
    color: grey !important; } */
.variations_form .single_variation_wrap .price {
  margin-left: 15px;
}

.variations_form .single_variation_wrap span {
  vertical-align: middle;
}

.variations_form table.variations,
.variations_form select {
  width: 100%;
}

.home .products .product .font-atc,
.home .products .product .font-atc * {
  text-decoration: none;
}

.home .products .product .font-atc form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}

.home .products .product .font-atc form table,
.home .products .product .font-atc form select {
  width: auto;
  margin: 0;
  height: 30px;
}

.home .products .product .font-atc form select {
  max-width: 190px;
}

.home .products .product .font-atc form td {
  line-height: 1em;
  vertical-align: middle;
}

.home .products .product .font-atc form label {
  margin-right: 10px;
}

.home .products .product .font-atc form .single_variation_wrap {
  line-height: 0;
}

.single-product .sidebar-right {
  padding-top: 220px;
}

.single-product .variations_form {
  border-top: 2px solid;
  margin: 0;
  padding-top: 6px;
}

.home .header-right,
.tax-product_cat .header-right,
.single-family .header-right {
  pointer-events: none;
}

.home .sidebar-right .mini-cart,
.tax-product_cat .sidebar-right .mini-cart,
.single-family .sidebar-right .mini-cart {
  position: absolute;
  top: 0;
  width: 100%;
}

.home .font-tester,
.tax-product_cat .font-tester,
.single-family .font-tester {
  overflow-x: unset;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 261px;
}

.home .font-tester .contenteditable,
.tax-product_cat .font-tester .contenteditable,
.single-family .font-tester .contenteditable {
  padding-top: 42px;
  padding-top: 55px;
  padding-bottom: 37px;
  display: block;
  height: auto !important;
  white-space: unset;
}

.home .family-atc li,
.tax-product_cat .family-atc li,
.single-family .family-atc li {
  min-height: 261px;
  border-top: 2px solid;
}

.home .family-atc li:last-child,
.tax-product_cat .family-atc li:last-child,
.single-family .family-atc li:last-child {
  min-height: 166px !important;
}

.home .variations_form,
.tax-product_cat .variations_form,
.single-family .variations_form {
  margin: 0;
  padding-top: 6px;
}

.home .variations_form .woocommerce-variation.single_variation,
.tax-product_cat .variations_form .woocommerce-variation.single_variation,
.single-family .variations_form .woocommerce-variation.single_variation {
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: initial !important;
  height: auto !important;
}

.home .variations_form .variations,
.tax-product_cat .variations_form .variations,
.single-family .variations_form .variations {
  margin-bottom: 6px;
}

.home .variations_form .single_variation_wrap,
.tax-product_cat .variations_form .single_variation_wrap,
.single-family .variations_form .single_variation_wrap {
  margin: 0;
  justify-content: flex-end;
}

.home .full-family:before,
.tax-product_cat .full-family:before,
.single-family .full-family:before {
  content: "";
  position: absolute;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  border: 2px solid;
  left: -20px;
  top: -20px;
  pointer-events: none;
}

.home .full-family .variations_form,
.tax-product_cat .full-family .variations_form,
.single-family .full-family .variations_form {
  min-height: auto;
  border: none;
  padding-bottom: 40px;
}

.home .texte,
.tax-product_cat .texte,
.single-family .texte {
  margin: 105px 0 0 0;
  height: 133px;
}

.home .specimen,
.tax-product_cat .specimen,
.single-family .specimen {
  margin-top: 0;
}

.family-atc {
  padding-top: 220px;
}

.family-atc .header,
.family-atc .products {
  margin-bottom: 1em;
}

.family-atc hr {
  margin: 20px 0;
}

.family-atc .product-name {
  display: -moz-flex;
  display: flex;
  -moz-justify-content: space-between;
  justify-content: space-between;
  color: grey;
  cursor: pointer;
  letter-spacing: 0;
}

.family-atc .product-name.active {
  color: black;
}

.family-atc .product-name.p-e-n {
  pointer-events: none;
}

.family-atc .form-wrap {
  margin-bottom: 45px;
}

.family-atc .form-wrap .header {
  display: -moz-flex;
  display: flex;
  -moz-align-items: center;
  align-items: center;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

.family-atc .form-wrap .header button {
  line-height: 1em;
  color: black;
}

.family-atc .form-wrap .header button.wc-variation-selection-needed {
  color: grey;
}

.family-atc .form-wrap .header button.wc-variation-selection-needed span {
  margin-left: .2em;
}

.family-atc .form-wrap .header button span {
  transition: all 0.2s ease-out 0s;
  transition-timing-function: cubic-bezier(0.37, 0.01, 0, 0.98);
  margin-left: .4em;
}

.family-atc .form-wrap table,
.family-atc .form-wrap select {
  width: 100%;
}


button.single_add_to_cart_button {
  border: none;
  border: 2px solid black;
  color: black !important;
  padding: 6px 10px;
  width: auto;
  margin-top: 0;
  text-transform: uppercase;
  margin-left: 10px;
}

button.single_add_to_cart_button u {
  text-decoration: none;
  text-transform: uppercase;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  position: absolute;
  width: 100%;
  margin-bottom: 20px !important;
  padding: 20px 0 !important;
  top: -55px;
}

.woocommerce-checkout .no-bottom {
  margin-bottom: 0;
}

.woocommerce-checkout .woocommerce-error {
  position: relative;
  top: 0;
}

.woocommerce-checkout .message {
  margin: 25px 0;
  padding: 15px;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  border-left: 2px solid;
  border-right: 2px solid;
}

@media screen and (max-width: 991px) {

  .tax-product_cat .texte,
  .single-family .texte {
    height: auto;
  }
}

.notice {
  font-size: 17px;
  line-height: 1em;
  color: red;
  border: 2px solid red;
  padding: 15px;
  display: block;
  margin: 20px 0;
  font-weight: 400;
}

#payment label .ib {
  /* transform: translateY(-5px); */
}

.tpl-about h1 {
  margin-bottom: 30px;
}

.tpl-about .block_1 {
  position: relative;
  padding-bottom: 80px;
}

.tpl-about .block_1:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}

.tpl-about .block_2 {
  margin-top: 40px;
}

.tpl-about .block_2 .block_image {
  width: 100%;
  height: auto;
}

.tpl-about .block_2 .block_image img {
  width: 100%;
  height: auto;
}

.tpl-about .block_2 .block_text {
  margin-top: 40px;
  padding: 30px 0 30px 35%;
  width: 100%;
  height: auto;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}


.tpl-about .block_3 {
  margin-top: 40px;
}

.tpl-about .block_3 .block_image img {
  width: 100%;
  height: auto;
}

.tpl-about .block_3 .block_text_top {
  margin-top: 40px;
  padding: 30px 0 30px 35%;
  width: 100%;
  height: auto;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}

.tpl-about .block_3 .block_table {
  margin-top: 40px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tpl-about .block_3 .block_table .block_table_row {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
}

.tpl-about .block_3 .block_table .block_table_row div:first-child {
  flex: 1;
  width: 20%;
  max-width: 20%;
  border-right: 1px solid #000000;
}

.tpl-about .block_3 .block_table .block_table_row div:last-child {
  width: 65%;
  max-width: 65%;
}

.tpl-about .block_3 .block_table .block_table_row:first-child div:first-child {
  padding-bottom: 30px;
}

.tpl-about .block_3 .block_table .block_table_row:not(:first-child):not(:last-child) div:first-child {
  padding: 30px 0;
}

.tpl-about .block_3 .block_table .block_table_row:last-child div:first-child {
  padding-top: 30px;
}

.tpl-about .block_3 .block_table .block_table_row:first-child div:last-child {
  padding-bottom: 30px;
}

.tpl-about .block_3 .block_table .block_table_row:not(:first-child):not(:last-child) div:last-child {
  padding: 30px 0;
}

.tpl-about .block_3 .block_table .block_table_row:last-child div:last-child {
  padding-top: 30px;
}

.tpl-about .block_3 .block_table .block_table_row:not(:first-child) div:last-child {
  border-top: 1px solid #000000;
}

.tpl-about .block_3 .block_text_bottom {
  margin-top: 40px;
  padding: 30px 0 30px 35%;
  width: 100%;
  height: auto;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}

.tpl-about .block_4 {
  margin-top: 40px;
}

.tpl-about .block_4 .block_image img {
  width: 100%;
  height: auto;
}

.tpl-about .block_4 .block_text {
  margin-top: 40px;
  padding: 30px 0 30px 35%;
  width: 100%;
  height: auto;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}

@media (max-width: 991px) {
  .tpl-about .block_2 .block_text {
    padding: 30px 0 30px 25%;
  }

  .tpl-about .block_3 .block_text_top {
    padding: 30px 0 30px 25%;
  }

  .tpl-about .block_3 .block_table .block_table_row div:first-child {
    width: 20%;
    max-width: 20%;
  }

  .tpl-about .block_3 .block_table .block_table_row div:first-child p {
    font-size: 10px;
    text-orientation: upright;
    writing-mode: vertical-lr;
  }

  .tpl-about .block_3 .block_table .block_table_row div:last-child {
    width: 75%;
    max-width: 75%;
  }

  .tpl-about .block_3 .block_text_bottom {
    padding: 30px 0 30px 25%;
  }

  .tpl-about .block_4 .block_text {
    padding: 30px 0 30px 25%;
  }

  #vat_number_field .description {
    display: none;
  }

  .form-row {
    flex-direction: column
  }

  .form-row label {
    width: 100%;
    max-width: 100% !important;
    padding-bottom: 5px;
  }

  .main-mini-cart {
    display: none !important;
  }

  .mini-cart a {
    padding: 0;
    border: none;

  }
}

.woocommerce-variation-add-to-cart {
  width: 100%;
}

td.product-name {
  font-size: 16px;
  padding: 12px 0 15px;
}

tfoot {
  border-top: 1px solid;
}

tr.cart-subtotal {}

tr.tax-rate.tax-rate-fr-tva-20-1 {}

tr.tax-rate th {
  padding: 7px 0 11px;
}

tr.order-total {
  border-top: 0px solid;
  font-family: "INFLUENCIADISPLAY" !important;
  font-size: 17px;
}

div#payment {
  padding: 20px 0;
}

.wc_payment_method label .flex,
.wc_payment_method label .flex div,
.wc_payment_method label .flex img {
  display: inline-block;
  /* width: 100%; */
  font-size: 0;
  vertical-align: middle;
}

.wc_payment_method label .flex div a {
  display: none;
}

form.checkout.woocommerce-checkout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

div#order_review {
  width: 40%;
}

.entry-title {
  display: none;
}
