@import 'https://fonts.googleapis.com/css?family=Ubuntu';
/**
 * Media Queries variables
 *
 * Sets the media queries boundaries
 * for the base theme and some alias.
 */
/**
 * Component: Base
 ========================================================================== */
/**
 * Component: Typography
 ========================================================================== */
/* 'oz_sans_serif', sans-serif; */
/* 'oz_serif', serif; */
/**
 * Component: Grid
 ========================================================================== */
/**
 * Component: Icons
 ========================================================================== */
/**
 * Component: Form
 ========================================================================== */
/**
 * Component: Typography
 ========================================================================== */
/**
 * Component: Grid
 ========================================================================== */
/**
 * Component: Icons
 ========================================================================== */
/**
 * Component: Header
 ========================================================================== */
/**
 * Component: Form
 ========================================================================== */
/**
 * Component: Profile
 ========================================================================== */
@charset "utf-8";
/* CSS Document */
/* --------------------------------

Form

-------------------------------- */
[pop-form] * {
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
[pop-form] {
  max-width: 500px;
  margin-top: 20px;
  margin-bottom: 20px;
}
[pop-form~="center"] {
  margin-left: auto;
  margin-right: auto;
  max-width: 500px;
}
[pop-form] div {
  position: relative;
  margin: 20px 0;
}
[pop-form] h4 {
  color: #999999;
}
.form [pop-form-item~="info"] {
  padding-left: 10px;
  margin-left: 10px;
  margin-bottom: 40px;
  margin-top: 0;
  width: 100%;
  font-size: 12px;
  position: relative;
}
[pop-form] [pop-button] {
  color: white !important;
}
[pop-form] [pop-form-item~="info"]:before {
  background: url("../../assets/icons/dot.svg") no-repeat 0 0px;
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 0px;
  top: -11px;
}
[pop-form] [pop-form-item="danger"] {
  text-align: center;
  border-radius: 5px;
  margin: 20px 0;
}
[pop-form] select,
[pop-form] textarea,
[pop-form] input:not([type]),
[pop-form] input {
  width: 100%;
}
/*
.form .select {
  position: relative;
}
.form .select::after {

  content: '';
  position: absolute;
  z-index: 1;
  right: 16px;
  top: 50%;
  margin-top: -8px;
  display: block;
  width: 16px;
  height: 16px;
  background: url("../assets/icons/icon-arrow.svg") no-repeat center center;
  pointer-events: none;
}

.form select {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.form select::-ms-expand {
  display: none;
}
*/
[pop-form] [pop-form-item~="list"] {
  margin-top: 16px;
  padding: 0;
}
[pop-form] [pop-form-item~="list"]::after {
  clear: both;
  content: "";
  display: table;
}
[pop-form] [pop-form-item~="list"] li {
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0 26px 16px 0;
}
[pop-form] input[type=radio],
[pop-form] input[type=checkbox] {
  /* hide original check and radio buttons */
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  opacity: 0;
  z-index: 2;
  height: 30px;
  width: 37px;
}
/* --------------------------------

Custom radio and checkboxes

-------------------------------- */
[pop-form] input[type="radio"] + label::before,
[pop-form] input[type="radio"] + label::after,
[pop-form] input[type="checkbox"] + label::before,
[pop-form] input[type="checkbox"] + label::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: -8px;
  width: 36px;
  height: 36px;
}
[pop-form] input[type="radio"] + label::before,
[pop-form] input[type="checkbox"] + label::before {
  border: 1px solid #fabf2d;
  background: #ffffff;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
}
[pop-form] input[type="radio"] + label::before,
[pop-form] input[type="radio"] + label::after {
  border-radius: 50%;
}
[pop-form] input[type="checkbox"] + label::before,
[pop-form] input[type="checkbox"] + label::after {
  border-radius: .25em;
}
[pop-form] input[type="radio"] + label::after,
[pop-form] input[type="checkbox"] + label::after {
  background-color: #fabf2d;
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: 0 0 5px rgba(178, 202, 69, 0.32);
  display: none;
}
[pop-form] input[type="radio"] + label::after {
  background-image: url("../../assets/icons/icon-radio.svg");
}
[pop-form] input[type="checkbox"] + label::after {
  background-image: url("../../assets/icons/icon-check.svg");
}
[pop-form] input[type="radio"]:focus + label::before,
[pop-form] input[type="checkbox"]:focus + label::before {
  box-shadow: 0 0 5px rgba(44, 151, 222, 0.6);
}
[pop-form] input[type="radio"]:checked + label::after,
[pop-form] input[type="checkbox"]:checked + label::after {
  display: block;
}
[pop-form] input[type="radio"]:checked + label::before,
[pop-form] input[type="radio"]:checked + label::after,
[pop-form] input[type="checkbox"]:checked + label::before,
[pop-form] input[type="checkbox"]:checked + label::after {
  -webkit-animation: bounce 0.3s;
  -moz-animation: bounce 0.3s;
  animation: bounce 0.3s;
}
[pop-form] textarea {
  min-height: 200px;
  resize: vertical;
  overflow: auto;
}
[pop-form] input:not([required]) {
  background-image: url("../../assets/icons/dot.svg");
  background-position: 100% -5px;
  background-repeat: no-repeat;
}
[pop-form] input[type="submit"] {
  border: none;
  background: #fabf2d;
  border-radius: 12px;
  padding: 10px 20px;
  color: #ffffff;
  font-weight: bold;
  float: right;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
[pop-form] input[type="submit"]:focus {
  outline: none;
}
[pop-form] input[type="submit"]:active {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
}
[pop-form] input[type="submit"]:hover,
[pop-form] input[type="submit"]:focus {
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 3px #fabf2d;
  background-color: #fabf2d;
}
@-webkit-keyframes bounce {
  0%,
  100% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
  }
}
@-moz-keyframes bounce {
  0%,
  100% {
    -moz-transform: scale(1);
  }
  50% {
    -moz-transform: scale(0.8);
  }
}
@keyframes bounce {
  0%,
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }
}
/* --------------------------------

FLoating labels

-------------------------------- */
.js-floating-labels .label {
  pointer-events: none;
}
.js-floating-labels div.clear {
  margin: 20px 0;
}
.js-floating-labels .label:not(.no-floating) {
  position: absolute;
  top: 10px;
  left: 16px;
  cursor: text;
  -webkit-transition: top 0.2s, left 0.2s, font-size 0.2s;
  -moz-transition: top 0.2s, left 0.2s, font-size 0.2s;
  transition: top 0.2s, left 0.2s, font-size 0.2s;
}
.js-floating-labels .label:not(.no-floating).float {
  /* move label out the input field */
  top: -24px;
  left: 5px !important;
}
.js-floating-labels .label:not(.no-floating).float core-icon {
  display: none;
}
@media only screen and (min-width: 600px) {
  .js-floating-labels legend + div {
    /* reduce margin-top for first form element after the legend */
    margin-top: 16px;
  }
  .js-floating-labels .label:not(.no-floating) {
    top: 10px;
  }
}
/* ----------------------------------

Multistep

---------------------------------- */
/** multistep form **/
[pop-form~="multistep"] {
  height: 600px;
  position: relative;
}
[pop-form~="multistep"] fieldset {
  width: 100%;
  position: absolute;
}
/*Hide all except first fieldset*/
[pop-form~="multistep"] fieldset:not(:first-of-type) {
  display: none;
}
/*buttons*/
[pop-form~="multistep"] [pop-form-item~="action"],
[pop-form~="multistep"] input[type="button"],
[pop-form~="multistep"] input[type="submit"] {
  width: 100px;
  background: #fabf2d;
  font-weight: bold;
  color: #ffffff;
  border: 0 none;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
  border-radius: 12px;
}
[pop-form~="multistep"] input[type="submit"] {
  background: #fabf2d;
}
[pop-form~="multistep"] input[type="submit"]:hover,
[pop-form~="multistep"] input[type="submit"]:focus,
[pop-form~="multistep"] input[type="button"]:hover,
[pop-form~="multistep"] input[type="button"]:focus,
[pop-form~="multistep"] [pop-form-item~="action"]:hover,
[pop-form~="multistep"] [pop-form-item~="action"]:focus {
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 3px #fabf2d;
  background-color: #fabf2d;
}
[pop-form~="multistep"] [pop-form-item~="action"] + [pop-form-item~="action"] {
  float: right;
}
/*progressbar*/
[pop-form~="multistep"] [pop-form-item~="progressbar"] {
  text-align: center;
  margin-bottom: 30px;
  overflow: hidden;
  /*CSS counters to number the steps*/
  counter-reset: step;
}
[pop-form~="multistep"] [pop-form-item~="progressbar"] li {
  list-style-type: none;
  color: #444444;
  text-transform: uppercase;
  font-size: 9px;
  width: 25%;
  float: left;
  position: relative;
}
[pop-form~="multistep"] [pop-form-item~="progressbar"] li:before {
  content: counter(step);
  counter-increment: step;
  width: 20px;
  line-height: 20px;
  display: block;
  font-size: 10px;
  color: #2D2C2C;
  background: #eeeeee;
  border-radius: 3px;
  margin: 0 auto 5px auto;
  position: relative;
  z-index: 1;
}
/*progressbar connectors*/
[pop-form~="multistep"] [pop-form-item~="progressbar"] li:after {
  content: '';
  width: 100%;
  height: 2px;
  background: #eeeeee;
  position: absolute;
  left: -50%;
  top: 9px;
  z-index: 0;
  /*put it behind the numbers*/
}
[pop-form~="multistep"] [pop-form-item~="progressbar"] li:first-child:after {
  /*connector not needed before the first step*/
  content: none;
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
[pop-form~="multistep"] [pop-form-item~="progressbar"] li.active:before,
[pop-form~="multistep"] [pop-form-item~="progressbar"] li.active:after {
  background: #fabf2d;
  color: white;
}
[pop-form~="multistep"] input:last-of-type,
[pop-form~="multistep"] .col1_3:last-of-type,
[pop-form~="multistep"] .col3_4:last-of-type,
[pop-form~="multistep"] .col1_2:last-of-type {
  padding-right: 0;
}
[pop-form~="multistep"] .col1_4 {
  width: 25%;
}
[pop-form~="multistep"] .col1_3 {
  width: 33.333%;
}
@media screen and (max-width: 600px) {
  [pop-form~="multistep"] .col1_4 {
    width: 100%;
  }
  [pop-form~="multistep"] .col1_3 {
    width: 100%%;
  }
  [pop-form~="multistep"],
  .form[pop-form~="multistep"] {
    margin: 50px 0;
    position: relative;
    height: 1000px;
  }
}
/* --------------------------------

Custom icons

-------------------------------- */
input[type="radio"] + label,
input[type="checkbox"] + label {
  position: relative;
}
input[type="radio"] + label span {
  padding-left: 20px;
  line-height: 20px;
}
input[type="checkbox"] + label span {
  padding-left: 45px;
  line-height: 20px;
}
input[type="radio"] + label core-icon,
input[type="checkbox"] + label core-icon {
  top: 6px;
  left: 10px;
  cursor: pointer;
}
input[type="radio"] + label::before,
input[type="checkbox"] + label::before {
  padding: 16px;
  cursor: pointer;
}
[pop-form] .icon input[type="text"],
[pop-form] .icon input[type="email"],
[pop-form] input[type="date"],
[pop-form] .icon textarea,
[pop-form] .icon select {
  /*padding: 16px 16px 16px 42px;*/
  padding: 12px;
}
[pop-form] input[disabled] {
  background-color: #ddd !important;
  color: black;
}
/* CSS Document */
html {
  -webkit-font-smoothing: antialiased;
}
.top-header {
  position: fixed;
  height: 30px;
  overflow: hidden;
  background: #428dcc;
  top: 0;
  width: 100%;
  z-index: 99999999;
}
.top-header ul {
  text-align: right;
  max-width: 1170px;
  margin: 0 auto;
}
.top-header li {
  display: inline-block;
  color: white;
  height: 30px;
  padding: 0 6px;
}
.top-header li a {
  color: white;
  font-weight: normal;
  font-size: 14px;
  line-height: 30px;
}
[pop-header],
.fullscreen-slider,
pop-header-main-content {
  -webkit-transform: translate3d(0, 0, 0);
}
[pop-header-nav] ul,
[pop-header-nav] ol {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
[pop-header] {
  -webkit-transform: translate3d(0, 0, 0);
  /* here*/
  position: fixed;
  height: 80px;
  width: 100%;
  top: 30px;
  left: 0;
  background-color: #f5f5f5;
  border-bottom: 2px solid #d0d0d0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
  z-index: 99999;
}
[pop-header].nav-is-visible {
  -webkit-transform: translateX(-260px);
  -moz-transform: translateX(-260px);
  -ms-transform: translateX(-260px);
  -o-transform: translateX(-260px);
  transform: translateX(-260px);
}
[pop-header]::before {
  /* never visible - this is used in jQuery to check the current MQ */
  display: none;
  content: 'mobile';
}
.header-wrapper {
  width: 1170px;
  margin: 0 auto;
}
nav .fa-fw {
  width: 2em;
}
@media only screen and (min-width: 1144px) {
  [pop-header] {
    height: 80px;
  }
  [pop-header].nav-is-visible {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  [pop-header]::before {
    content: 'desktop';
  }
}
[pop-header] .logo {
  position: absolute;
}
[pop-header] .logo {
  display: inline-block;
  width: 200px;
  margin-left: 15px;
  margin-top: 7px;
  /* remove jump on iOS devices - when we fire the navigation */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
[pop-header] .logo img {
  display: block;
  max-width: 100%;
}
@media only screen and (min-width: 1144px) {
  [pop-header] .logo {
    position: absolute;
    z-index: 20;
  }
}
.top-header {
  display: none;
}
[pop-header] {
  top: 0px;
}
[pop-header-nav-trigger] {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
  /* hide text */
  overflow: hidden;
  white-space: nowrap;
  color: transparent !important;
}
[pop-header-nav-trigger] span {
  /* hamburger icon created in CSS */
  position: absolute;
  height: 2px;
  width: 20px;
  top: 50%;
  margin-top: -1px;
  left: 50%;
  margin-left: -10px;
  -webkit-transition: background-color 0.3s 0.3s;
  -moz-transition: background-color 0.3s 0.3s;
  transition: background-color 0.3s 0.3s;
  background-color: #296698;
}
[pop-header-nav-trigger] span::before,
[pop-header-nav-trigger] span::after {
  /* upper and lower lines of the menu icon */
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #296698;
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s 0.3s;
  -moz-transition: -moz-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s;
}
[pop-header-nav-trigger] span::before {
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  -o-transform: translateY(-6px);
  transform: translateY(-6px);
}
[pop-header-nav-trigger] span::after {
  -webkit-transform: translateY(6px);
  -moz-transform: translateY(6px);
  -ms-transform: translateY(6px);
  -o-transform: translateY(6px);
  transform: translateY(6px);
}
.nav-is-visible [pop-header-nav-trigger] span {
  background-color: transparent;
}
.nav-is-visible [pop-header-nav-trigger] span::before {
  -webkit-transform: translateY(0) rotate(-45deg);
  -moz-transform: translateY(0) rotate(-45deg);
  -ms-transform: translateY(0) rotate(-45deg);
  -o-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
}
.nav-is-visible [pop-header-nav-trigger] span::after {
  -webkit-transform: translateY(0) rotate(45deg);
  -moz-transform: translateY(0) rotate(45deg);
  -ms-transform: translateY(0) rotate(45deg);
  -o-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}
@media only screen and (min-width: 1144px) {
  [pop-header-nav-trigger] {
    display: none;
  }
  .top-header {
    display: block;
  }
  [pop-header] {
    top: 30px;
  }
}
nav {
  font-size: 12px;
  z-index: 12;
  position: relative;
}
.main-nav {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  width: 260px;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #428dcc;
  -webkit-transition: -webkit-transform 0.3s, visibility 0.3s;
  -moz-transition: -moz-transform 0.3s, visibility 0.3s;
  transition: transform 0.3s, visibility 0.3s;
  -webkit-transform: translateX(260px);
  -moz-transform: translateX(260px);
  -o-transform: translateX(260px);
  transform: translateX(260px);
}
.main-nav a {
  display: block;
  padding: 18px 12px 19px;
  border-bottom: 1px solid #3480c1;
  color: rgba(0, 0, 0, 0.84);
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
}
.main-nav li ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transform: translateX(260px);
  -moz-transform: translateX(260px);
  -ms-transform: translateX(260px);
  -o-transform: translateX(260px);
  transform: translateX(260px);
}
.main-nav .cart-link a {
  color: rgba(255, 255, 255, 0.84);
  border: 0;
  border-radius: 0;
  background-color: transparent;
  text-indent: -999999px;
}
.main-nav .cart-link .fa {
  text-indent: 999958px;
}
.nav-is-visible .main-nav {
  -webkit-transition: -webkit-transform 0.3s, visibility 0.3s;
  -moz-transition: -moz-transform 0.3s, visibility 0.3s;
  transition: transform 0.3s, visibility 0.3s;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.nav-is-visible .main-nav a {
  color: rgba(255, 255, 255, 0.84);
}
.moves-out a {
  color: rgba(0, 0, 0, 0.84);
}
.nav-is-visible .main-nav [pop-header-subnav-trigger]::before,
.nav-is-visible .main-nav [pop-header-subnav-trigger]::after,
.nav-is-visible .main-nav .go-back a::before,
.nav-is-visible .main-nav .go-back a::after {
  width: 10px;
}
/**
* MAIN NAV
*
*/
.main-nav.moves-out > li > a {
  /* push the navigation items to the left - and lower down opacity - when secondary nav slides in */
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
}
.main-nav.moves-out > li > ul {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.main-nav [pop-header-subnav-trigger],
.main-nav .go-back a {
  position: relative;
}
.main-nav [pop-header-subnav-trigger]::before,
.main-nav [pop-header-subnav-trigger]::after,
.main-nav .go-back a::before,
.main-nav .go-back a::after {
  /* arrow icon in CSS */
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -1px;
  display: inline-block;
  height: 2px;
  width: 6px;
  background: #fff;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.main-nav [pop-header-subnav-trigger]::before,
.main-nav .go-back a::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.main-nav [pop-header-subnav-trigger]::after,
.main-nav .go-back a::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.main-nav [pop-header-subnav-trigger]::before,
.main-nav [pop-header-subnav-trigger]::after {
  /* arrow goes on the right side - children navigation */
  right: 20px;
  -webkit-transform-origin: 9px 50%;
  -moz-transform-origin: 9px 50%;
  -ms-transform-origin: 9px 50%;
  -o-transform-origin: 9px 50%;
  transform-origin: 9px 50%;
}
.main-nav .go-back a {
  padding-left: 40px;
}
.main-nav .go-back a::before,
.main-nav .go-back a::after {
  /* arrow goes on the left side - go back button */
  left: 20px;
  -webkit-transform-origin: 1px 50%;
  -moz-transform-origin: 1px 50%;
  -ms-transform-origin: 1px 50%;
  -o-transform-origin: 1px 50%;
  transform-origin: 1px 50%;
}
.main-nav .placeholder {
  /* never visible or clickable- it is used to take up the same space as the [pop-header-subnav-trigger] */
  display: none;
}
.hidden {
  display: none !important;
}
@media only screen and (min-width: 1144px) {
  .main-nav {
    /* here*/
    position: static;
    visibility: visible;
    width: 100%;
    height: 80px;
    line-height: 80px;
    /* padding left = logo size + logo left position*/
    padding: 0 5% 0 calc(5% + 124px);
    background: transparent;
    text-align: right;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .main-nav li {
    display: inline-block;
    height: 100%;
    padding: 0 6px;
  }
  .main-nav li a {
    display: inline-block;
    padding: 10px;
    line-height: 1;
    font-size: 13px;
    border-bottom: none;
    /* Prevent [pop-header-subnav-trigger] flicker is Safari */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .main-nav .go-back {
    display: none;
  }
  .main-nav [pop-header-subnav-trigger] {
    z-index: 1;
    border: 2px solid #428dcc;
    border-radius: 5px;
    background-color: #428dcc;
    color: white;
    -webkit-transition: border 0.3s, background-color, 0.3s;
    -moz-transition: border 0.3s, background-color, 0.3s;
    transition: border 0.3s, background-color, 0.3s;
  }
  .main-nav [pop-header-subnav-trigger] span {
    transition: none;
  }
  .main-nav [pop-header-subnav-trigger]::before,
  .main-nav [pop-header-subnav-trigger]::after {
    top: 17px;
    right: 19px;
    background-color: white;
    /* change transform-origin to rotate the arrow */
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: -webkit-transform 0.3s, width 0.3s, right 0.3s;
    -moz-transition: -moz-transform 0.3s, width 0.3s, right 0.3s;
    transition: transform 0.3s, width 0.3s, right 0.3s;
  }
  .main-nav [pop-header-subnav-trigger]::before {
    right: 23px;
  }
  .main-nav [pop-header-subnav-trigger="corsi"] {
    border: 0;
    background-color: transparent;
    color: black;
  }
  .main-nav [pop-header-subnav-trigger="corsi"]::before,
  .main-nav [pop-header-subnav-trigger="corsi"]::after {
    background-color: black;
  }
  .main-nav [pop-header-subnav-trigger],
  .main-nav .placeholder {
    padding-right: 40px;
    padding-left: 20px;
  }
  .main-nav li ul {
    height: 80px;
    /* background-color: #eee;*/
    /* padding left = logo size + logo left position*/
    padding: 0 5% 0 calc(5% + 124px);
    -webkit-transform: translateY(-80px);
    -moz-transform: translateY(-80px);
    -ms-transform: translateY(-80px);
    -o-transform: translateY(-80px);
    transform: translateY(-80px);
    -webkit-transition: -webkit-transform 0.3s 0.2s;
    -moz-transition: -moz-transform 0.3s 0.2s;
    transition: transform 0.3s 0.2s;
  }
  .main-nav li ul li {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-transition: -webkit-transform 0.3s 0s, opacity 0.3s 0s;
    -moz-transition: -moz-transform 0.3s 0s, opacity 0.3s 0s;
    transition: transform 0.3s 0s, opacity 0.3s 0s;
  }
  .main-nav .cart-link a {
    color: #ffffff;
    border: 2px solid #fabf2d;
    border-radius: 5px;
    background-color: #fabf2d;
    text-indent: 0;
  }
  .main-nav .cart-link .fa {
    text-indent: 0;
  }
  .main-nav .placeholder {
    /* never visible or clickable- it is used to take up the same space as the [pop-header-subnav-trigger] */
    display: inline-block;
    visibility: hidden;
    opacity: 0;
    pointer-event: none;
  }
  .main-nav.moves-out > li > a {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  .main-nav.moves-out > li > ul {
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .main-nav.moves-out > li ul li {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: -webkit-transform 0.3s 0.2s, opacity 0.3s 0.2s;
    -moz-transition: -moz-transform 0.3s 0.2s, opacity 0.3s 0.2s;
    transition: transform 0.3s 0.2s, opacity 0.3s 0.2s;
  }
  .main-nav.moves-out > li [pop-header-subnav-trigger]::before,
  .main-nav.moves-out > li [pop-header-subnav-trigger]::after {
    width: 14px;
    right: 17px;
  }
  .main-nav.moves-out > li [pop-header-subnav-trigger]::before {
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    -o-transform: rotate(225deg);
    transform: rotate(225deg);
  }
  .main-nav.moves-out > li [pop-header-subnav-trigger]::after {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .sidebar-mobile-yes {
    display: none !important;
  }
}
/**
* MAIN CONTENT
*
*/
[pop-header-main-content]::before {
  /* never visible - this is used in jQuery to check the current MQ */
  display: none;
  content: 'mobile';
}
@media only screen and (min-width: 1024px) {
  [pop-header-main-content]::before {
    content: 'desktop';
  }
}
[pop-header-main-content] {
  /* here*/
  /*position: relative;*/
  z-index: 5;
  min-height: 100vh;
  margin-top: 130px;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
  background: #fff;
}
@media (max-width: 770px) {
  [pop-header-main-content] {
    margin-top: 120px;
  }
}
[pop-header-main-content].nav-is-visible {
  -webkit-transform: translateX(-260px);
  -moz-transform: translateX(-260px);
  -o-transform: translateX(-260px);
  -ms-transform: translateX(-260px);
  transform: translateX(-260px);
}
@media only screen and (min-width: 1024px) {
  [pop-header-main-content] {
    top: 80px;
  }
  [pop-header-main-content].nav-is-visible {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
/* --------------------------------

FORM

-------------------------------- */
[pop-form~="header"] {
  border-bottom: 1px solid #3480c1;
}
[pop-form~="header"] {
  width: 100%;
  margin: 0px auto;
  padding: 16px 12px 17px;
}
[pop-form~="header"] input {
  display: inline-block;
  width: 100%;
  background: #296698;
  color: rgba(255, 255, 255, 0.84);
  border: none;
  border-radius: 5px;
  padding: 10px;
}
[pop-form~="header"] input:focus {
  border-color: transparent;
  background: #296698;
  color: rgba(255, 255, 255, 0.84);
}
[pop-form~="header"] button {
  display: inline-block;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #fabf2d;
  background: #fabf2d;
  color: white;
  cursor: pointer;
}
[pop-form~="header"] input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.84);
  opacity: 1;
}
[pop-form~="header"] input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.84);
  opacity: 1;
}
[pop-form~="header"] input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.84);
  opacity: 1;
}
[pop-form~="header"] input + input {
  margin-top: 20px;
}
[pop-form~="header"] input + button {
  margin-top: 20px;
}
@media only screen and (min-width: 1144px) {
  [pop-form~="header"] {
    border-bottom: none;
  }
  [pop-form~="header"] {
    margin: 0;
    padding: 0;
  }
  [pop-form~="header"] input {
    display: inline-block;
    width: 160px;
    background: white;
    color: #333;
    border: none;
    border-radius: 5px;
  }
  [pop-form~="header"] input:focus {
    border-color: transparent;
    background: white;
    color: #333;
  }
  [pop-form~="header"] button {
    display: inline-block;
    width: 90px;
    padding: 10px;
    margin-left: 10px;
    border-radius: 5px;
    z-index: 1;
    -webkit-transition: border 0.3s, background-color, 0.3s;
    -moz-transition: border 0.3s, background-color, 0.3s;
    transition: border 0.3s, background-color, 0.3s;
  }
  [pop-form~="header"] button:hover {
    background-color: #3480c1;
    border-color: #3480c1;
    color: rgba(255, 255, 255, 0.84);
  }
  [pop-form~="header"] input::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
  }
  [pop-form~="header"] input:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
  }
  [pop-form~="header"] input::-moz-placeholder {
    color: inherit;
    opacity: 1;
  }
  [pop-form~="header"] input + input {
    margin-top: 0px;
  }
  [pop-form~="header"] input + button {
    margin-top: 0px;
  }
}
footer {
  border-top: 1px solid #3480c1;
}
.profilePic {
  position: relative;
  cursor: pointer;
  width: 160px;
  height: 160px;
  display: inline-block;
  vertical-align: top;
}
.profileDescription {
  position: relative;
  cursor: pointer;
  width: calc(100% - 160px - 2%);
  display: inline-block;
  vertical-align: top;
}
.profilePic .tooltip,
#changePicFormContainer {
  display: none;
}
.profilePic:hover .tooltip {
  display: block;
}
.profilePic img {
  width: 100% !important;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #f5f5f5;
  padding: 10px;
}
.tooltip {
  padding: 4px 0;
  background-color: #428dcc;
  color: #ffffff;
  position: absolute;
  top: 0%;
  right: 0%;
  width: 100%;
}
.profile-page ul {
  list-style-type: none;
}
.assistenzaBox li {
  margin-right: 10px;
}
.attivitaBox li {
  margin-top: 10px;
}
.better {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.better li:first-child {
  margin-right: 5px;
}
.better li {
  display: inline-block;
}
.icon_ff {
  background: url(../../assets/icons/firefox.png) no-repeat;
  display: block;
  width: 48px;
  height: 48px;
}
.icon_gg {
  background: url(../../assets/icons/chrome.png) no-repeat;
  display: block;
  width: 48px;
  height: 48px;
}
.icon_gg_mini {
  background: url(../../assets/icons/chrome_mini.png) no-repeat;
  display: block;
  width: 20px;
  height: 20px;
}
.resultBox {
  min-height: 600px;
  height: auto !important;
  height: 600px;
}
.ajaxed {
  background-color: white;
}
.ajaxed [pop-form] {
  max-width: initial;
}
.myOrderslist table {
  width: 100%;
}
.myOrderslist table td {
  padding: 0 10px;
}
/* teacher profile */
.lessonActions {
  position: relative;
  display: block;
  width: 50px;
  height: 20px;
  cursor: pointer;
}
.lessonActions li {
  position: absolute;
  -moz-transition: none;
  -webkit-transition: none;
  -o-transition: color 0 ease-in;
  transition: none;
  text-indent: 90px;
}
.editAction {
  background: url(../assets/icons/editAction.png) no-repeat;
  display: block;
  width: 30px;
  height: 30px;
}
.fileAction {
  background: url(../assets/icons/fileAction.png) no-repeat;
  display: block;
  width: 30px;
  height: 30px;
}
.videoAction {
  background: url(../assets/icons/videoAction.png) no-repeat;
  display: block;
  width: 30px;
  height: 30px;
}
.photoAction {
  background: url(../assets/icons/photoAction.png) no-repeat;
  display: block;
  width: 30px;
  height: 30px;
}
.surveyAction {
  background: url(../assets/icons/surveyAction.png) no-repeat;
  display: block;
  width: 30px;
  height: 30px;
}
.editLessonElement {
  position: relative;
}
.editLessonElement .editLessonControls {
  position: absolute;
  right: 50%;
  top: 0;
  height: 100%;
  padding: 0 5px;
  background-color: #E4E4E4;
  opacity: 0;
  box-shadow: 3px 0px #EEE;
}
.editLessonElement:hover .editLessonControls {
  opacity: 0.7;
}
.editLessonElement .editLessonControls:hover {
  opacity: 1;
  background-color: #f5f5f5;
}
.editLessonElement .editLessonControls .delete {
  background: url(../assets/icons/delete.png) no-repeat;
  width: 37px;
  height: 38px;
  display: block;
}
.editLessonElement .editLessonControls .edit {
  background: url(../assets/icons/pencil.png) no-repeat;
  width: 37px;
  height: 38px;
  display: block;
}
.editOverlay {
  background-color: #f5f5f5;
  position: relative;
}
.editOverlay .ajaxed {
  background-color: #f5f5f5 !important;
}
.editOverlay .label {
  background: url(../assets/triangle.png) no-repeat;
  width: 32px;
  height: 29px;
  position: absolute;
  left: 30%;
  top: -29px;
}
/* Desktop and bigger */
/* Large screen and bigger */
/* Tablet and bigger */
/* Phone landscape and bigger */
@media (max-width: 481px) {
  .profilePic {
    width: 80px;
    height: 80px;
  }
  .profileDescription {
    width: calc(100% - 80px - 2%);
  }
  .tooltip {
    display: none;
  }
  .profilePic:hover .tooltip {
    display: none;
  }
}
.resultsBox ul {
  padding: 0;
}
.resultsBox ul li span {
  font-weight: bold;
}
.resultsBox ul li ul {
  padding: 0 0 10px 0;
}
.resultsBox ul li ul li {
  padding: 10px 0 10px 10px;
  cursor: pointer;
  display: block;
}
.resultsBox ul li ul li:hover {
  background-color: #DBEEF5;
}
.resultsBox ul li ul li + li {
  border-top: 1px solid #EEEEEE;
}
.modal {
  display: none;
  width: 400px;
  background: #fff;
  padding: 15px 30px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 10px #000;
  -moz-box-shadow: 0 0 10px #000;
  -o-box-shadow: 0 0 10px #000;
  -ms-box-shadow: 0 0 10px #000;
  box-shadow: 0 0 10px #000;
}
.modal,
.modal * {
  transition: none;
  -webkit-transition: none;
}
.modal-footer {
  border-top: 1px solid #eee;
  padding: 10px 0;
}
.modal ul {
  padding: 0;
}
.modal form > ul {
  overflow-y: scroll;
  height: 300px;
}
.modal form > ul > li {
  font-weight: bold;
  padding: 10px 0;
}
.modal form > ul > li > span {
  /*border-bottom: 1px solid #eee;*/
  /*display: bold;*/
  padding: 0 0 0 10px;
  font-size: 14px;
}
.modal form > ul > li > ul {
  padding: 10px 0;
}
.modal form > ul > li > ul > li {
  padding: 10px 0;
}
.modal form > ul > li > ul > li > span {
  padding: 0 0 0 10px;
  font-size: 14px;
}
.modal form > ul > li > ul > li {
  font-weight: normal;
}
.modal-footer a + a {
  margin-left: 20px;
}
#dashboard [pop-text="bold h2"] {
  font-size: 14px;
}
#dashboard #riscattacodice {
  padding: 20px;
  background: #eff5fb;
}
#codicilist li {
  margin-right: 10px;
}
#dashboard #ordini2 {
  margin-left: 20px;
}
@media (max-width: 1040px) {
  #dashboard > [pop-width="col 1-3"] {
    width: 100%;
  }
  #dashboard > [pop-width="col 2-3"] {
    width: 100%;
    margin-top: 20px;
    margin-left: 0;
  }
  #dashboard #ordini2 {
    margin-left: 0px;
  }
}
.merge_btn,
.merge_confirm,
.merge_buttons {
  color: #ffffff !important;
  border: 2px solid #fabf2d;
  border-radius: 5px;
  background-color: #fabf2d;
  text-indent: 0;
  padding: 7px 12px;
}
.merge_form table td {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.strikethrough {
  text-decoration: line-through;
  text-decoration: #ff0000 double line-through;
}
.corsi.list,
.news.list {
  padding: 0px;
}
.corsi.list li > div,
.news.list li > div {
  border: 1px solid #d0d0d0;
  background-color: #f9f9f9;
  padding: 10px;
}
.corsi.list li,
.news.list li {
  padding-right: 10px;
}
.corsi.list .btn {
  padding: 2%;
  border-radius: 5px;
  background-color: #fabf2d;
  text-align: center;
  margin-top: 20px;
}
.corsi.list .btn a,
.corsi.list .btn input {
  color: white;
  display: block;
}
.list .btn input:hover {
  box-shadow: none;
  background-color: #fabf2d;
}
.news.list {
  padding: 0px;
}
.news.list li > div {
  background-color: white;
  padding: 10px;
}
.news.list li {
  padding-right: 10px;
}
.news.list .btn {
  text-align: right;
}
.news.list .btn a {
  padding: 5px 10px;
  border-radius: 5px;
  background-color: #428dcc;
  margin-top: 20px;
  color: white;
}
.news.list .data {
  position: absolute;
  border-radius: 100%;
  width: 50px;
  background-color: #428dcc;
  color: white;
  bottom: 8px;
  left: 8px;
  height: 50px;
  text-align: center;
  line-height: 1.2;
  font-size: 12px;
  font-weight: bold;
  padding: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 481px) {
  .corsi.list li,
  .news.list li {
    margin: 0 auto;
    display: block;
    width: 80%;
    margin-bottom: 20px;
  }
}
.corsi.list2 {
  padding: 0px;
  list-style-type: none;
}
.corsi.list2 li {
  padding: 0;
  border-bottom: 1px solid #d0d0d0;
}
.corsi.list2 li [pop-width~="col"] {
  width: 70px;
}
.corsi.list2 li [pop-width~="col"] + [pop-width~="col"] {
  width: calc(100% - 70px);
}
/* CSS Document */
[pop-page~="corsi"] ul.list {
  list-style-type: none;
}
[pop-width~="single-column"] {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.video-info .fa,
.course-details .fa {
  font-size: 20px;
  padding: 5px 10px 5px 5px;
  color: #FF6666;
}
video {
  width: 100%;
}
.bg-android {
  padding: 12px;
  background-color: #628850;
  color: white;
  display: inline-block;
  margin: 20px 0;
}
.bg-ios {
  padding: 12px;
  background-color: #aaa;
  color: white;
  display: inline-block;
  margin: 20px 0;
}
.tabs > ul > li {
  list-style-type: none;
  list-style-position: inside;
  padding: 10px 20px;
  display: inline-block;
  margin: 0;
  background: #fabf2d;
  border-right: 1px solid #fabf2d;
  border-top: 1px solid #fabf2d;
  border-left: 1px solid #fabf2d;
}
.tabs > ul > li.selected {
  background-color: #fabf2d;
}
.tabs > ul > li a {
  color: white;
}
.tabs > div ul {
  list-style-type: decimal;
  list-style-position: inside;
  padding: 0;
  margin: 0;
}
.tabs .docentiList {
  list-style-type: none;
  list-style-position: inside;
}
.tabs > div ul ul {
  list-style-type: decimal;
  list-style-position: inside;
  padding-left: 20px;
  margin: 0;
}
.tabs > div {
  padding: 20px;
  border: 1px solid #fabf2d;
}
.descrizione {
  padding: 40px 10px;
  border-bottom: 1px solid #eee;
}
[lesson-progressBar] {
  height: 5px;
  width: 100%;
  position: relative;
  background: #f5f5f5;
  margin: 20px 0;
}
[lesson-progressBar] .bar {
  height: 5px;
  min-width: 10px;
  width: auto !important;
  border-radius: 10px;
  position: relative;
  background-color: #428dcc;
}
[lesson-progressBar] .bar .progressTooltip {
  position: absolute;
  width: 30px;
  border: 2px solid #FFFFFF;
  background-color: #428dcc;
  color: white;
  text-align: center;
  padding: 1px;
  right: -28px;
  top: -11px;
  font-size: 11px !important;
  cursor: default;
  z-index: 100;
  border-radius: 10px;
}
[lesson-progressBar] .point {
  position: absolute;
  padding: 5px;
  top: -3px;
  background-color: #eee;
  z-index: 90;
  border-radius: 10px;
  background-color: #428dcc;
}
[lesson-progressBar] .left {
  float: left;
}
@media (max-width: 481px) {
  [pop-page~="corsi"] ul.list li {
    display: block;
    padding: 5px;
  }
  [pop-page~="corsi"] ul.better.list li {
    display: inline-block;
    padding: 5px;
  }
  video {
    width: 100%;
  }
}
#attestatiModal {
  position: fixed;
  top: 20%;
  width: 500px;
  z-index: 110000;
  background-color: #fff;
  border-radius: 5px;
  padding: 15px;
}
.closeBTN {
  cursor: pointer;
  position: relative;
  left: calc(100% - 20px);
}
#attestatiModal-bg {
  content: '';
  display: block;
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.64);
  z-index: 100000;
}
@media (max-width: 481px) {
  #attestatiModal {
    position: fixed;
    top: 10%;
    width: 90%;
  }
}
[pop-page="corsi"] [pop-button] {
  color: white !important;
}
[pop-page="corsi"] #resumeProgress {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999999999;
}
[pop-page="corsi"] #resumeProgress > div {
  width: 600px;
  padding: 20px;
  margin: 40px auto;
  background: white;
  position: absolute;
  vertical-align: middle;
  top: calc(50% - 125px);
  height: 250px;
  left: calc(50% - 300px);
}
@media (max-width: 481px) {
  [pop-page="corsi"] #resumeProgress > div {
    width: 100%;
    top: 40px;
    left: 0;
    height: 170px;
  }
}
#carrello a {
  color: white !important;
}
#carrello table {
  position: relative;
}
#carrello table tr.closingLine td {
  border-top: 1px solid #eee;
  font-size: 16px;
}
#carrello thead tr th {
  border-bottom: 1px solid #eee;
  text-align: left;
}
#carrello tr td {
  padding: 10px;
  border-top: 1px solid #eee;
}
#carrello ul {
  list-style-type: none;
  position: relative;
}
#carrelloRiepilogo {
  position: relative;
}
.preloader {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -16px;
  margin-top: -16px;
}
#carrello .even,
#check .even {
  background: #FCFCFC;
}
#check .even td,
#check .odd td {
  padding: 5px;
}
#carrello .odd,
#check .odd {
  background: #F5F8FC;
}
#carrello .clickableElement > div:before {
  content: '\f096';
  font-family: Fontawesome;
  padding-right: 10px;
}
#carrello .clickableElement > div.checked:before {
  content: '\f046';
  font-family: Fontawesome;
  padding-right: 10px;
}
.wrapper:not(.footer) a {
  color: black;
}
.mobile-yes,
.mobile-yes-block {
  display: none;
}
.mobile-no {
  display: inline-block;
}
.mobile-no-block {
  display: block;
}
.tablet-yes,
.tablet-yes-block {
  display: none;
}
.tablet-no {
  display: inline-block;
}
.tablet-no-block {
  display: block;
}
.bold {
  font-weight: bold;
}
@media screen and (max-width: 770px) {
  .tablet-yes {
    display: inline-block !important;
  }
  .tablet-yes-block {
    display: block !important;
  }
  .tablet-no,
  .tablet-no-block {
    display: none !important;
  }
}
@media screen and (max-width: 481px) {
  .mobile-yes {
    display: inline-block !important;
  }
  .mobile-yes-block {
    display: block !important;
  }
  .mobile-no {
    display: none !important;
  }
  .mobile-no-block {
    display: none !important;
  }
}
[pop-icon][icon*=":rocket"] {
  background-color: #37446B;
}
[pop-text~="primary"] {
  color: #428dcc;
}
[pop-text~="primary"][pop-text~="dark"] {
  color: #428dcc;
}
[pop-text~="primary"][pop-text~="light"] {
  color: #428dcc;
}
[pop-text~="accent"] {
  color: #fabf2d;
}
[pop-text~="white"] {
  color: white;
}
[pop-text~="black"] {
  color: black;
}
[pop-text~="green"] {
  color: green;
}
[pop-text~="blue"] {
  color: #0976d2;
}
[pop-text~="red"] {
  color: red;
}
[pop-text~="google"] {
  color: #dd4b39;
}
[pop-text~="twitter"] {
  color: #55acee;
}
[pop-text~="facebook"] {
  color: #3b5998;
}
[pop-text~="2-lines"] {
  min-height: 60px;
  height: auto !important;
  height: 60px;
  display: block;
}
[pop-text~="accent"][pop-text~="dark"] {
  color: #fabf2d;
}
[pop-text~="accent"][pop-text~="light"] {
  color: #fabf2d;
}
[pop-background~="primary"] {
  background-color: #428dcc;
}
[pop-background~="primary"][pop-background~="dark"] {
  background-color: #428dcc;
}
[pop-background~="primary"][pop-background~="light"] {
  background-color: #428dcc;
}
[pop-background~="accent"] {
  background-color: #fabf2d;
}
[pop-background~="white"] {
  background-color: white;
}
[pop-background~="google"] {
  background-color: #dd4b39;
}
[pop-background~="twitter"] {
  background-color: #55acee;
}
[pop-background~="facebook"] {
  background-color: #3b5998;
}
[pop-text~="grey"] {
  color: #999;
}
[pop-text~="accent"][pop-text~="dark"] {
  color: #fabf2d;
}
[pop-text~="accent"][pop-text~="light"] {
  color: #fabf2d;
}
#registerForm {
  height: 1000px;
}
.border-bottom-mini {
  border-bottom: 2px dotted #E5E5E5;
}
.page-title {
  border-bottom: 6px solid #EFEFEF;
}
.pagination {
  margin: 0;
  padding: 0;
  text-align: right;
  border-top: 2px dashed #F5F5F5;
  padding-top: 20px;
}
.pagination li {
  display: inline-block;
  border: 1px solid #ddd;
  padding: 10px 20px 10px 20px;
  border-radius: 12px;
  font-size: 13px;
}
.pagination li:hover {
  background-color: #428dcc;
  color: white;
}
.pagination li:hover a,
.pagination li:hover a:hover {
  color: white;
}
.readmore-js-toggle {
  text-align: right;
  cursor: default;
  width: auto !important;
  float: right;
}
.readmore-js-toggle a {
  display: inline-block;
  border: 1px solid #ddd;
  padding: 10px 20px 10px 20px;
  border-radius: 12px;
  font-size: 13px;
  text-align: center;
}
[pop-info] {
  border-radius: 5px;
  background-color: #2ba6e5;
  color: white;
  padding: 10px;
  margin: 10px 0;
}
[pop-button] {
  border: none;
  background: #e82c3c;
  border-radius: 12px;
  padding: 5px 20px;
  color: #ffffff;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  transition: all linear 0.2s;
}
[pop-button]:active {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
}
[pop-button]:hover,
[pop-button]:focus {
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 3px #fabf2d;
  background-color: #fabf2d;
  color: white !important;
}
[pop-button~="left"] {
  float: left;
}
[pop-button~="right"] {
  float: right;
}
[pop-button~="accent"] {
  border: none;
  background: #fabf2d;
  border-radius: 12px;
  padding: 5px 20px;
  color: #ffffff;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  transition: all linear 0.2s;
}
[pop-button~="accent"] a {
  color: #ffffff;
}
[pop-button~="accent"]:hover {
  box-shadow: none;
  background-color: #fabf2d;
  color: white !important;
}
/* CSS Document */
.featured ul {
  list-style: none;
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  z-index: 0;
  padding: 0;
  margin: 0;
}
/*.featured li,*/
.sidebar li a {
  width: 100%;
  min-height: 250px;
  position: relative;
}
.sidebar ul {
  list-style-type: none;
}
/* If background-size supported we'll add the images to the background of the li */
/*.featured li,*/
.sidebar li a {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.sidebar li a {
  display: block;
}
/*
.featured .featured-content,
.featured li:before{
	position:absolute;
	width:50%;
	height:100%;
	top:0;
	right:0;
	overflow: hidden;
}

.featured li:before{
	background: @accent-color;
	opacity:0.7;
	content: '';
}
*/
/*
.featured li a{
    background-size: contain;
    display: block;
    width: 100%;
    min-height: 250px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
}
*/
.featured .featured-content {
  padding: 20px;
}
.featured .featured-title a {
  padding: 7px 0;
  color: white;
  font-size: 28px;
  font-weight: bold;
}
.featured .featured-description {
  padding: 20px 0 20px;
}
.newsletter {
  margin: 20px 0;
  background: #f9f9f9;
  padding: 20px;
  border: 1px solid #d0d0d0;
}
.newsletter > div {
  font-weight: bold;
  font-size: 18px;
}
.newsletter input {
  display: block;
  padding: 10px;
  border-radius: 5px;
  border: none;
  width: 100%;
  margin: 10px 0;
  border: 1px solid #d0d0d0;
}
.newsletter button {
  display: block;
  padding: 15px;
  border-radius: 5px;
  border: none;
  width: 100%;
  margin: 10px 0;
  background: #428dcc;
  color: white;
  font-weight: bold;
  letter-spacing: 1px;
}
.newsletter > div:nth-child(2) {
  font-weight: normal;
  font-size: 14px;
}
@media (max-width: 770px) {
  .footer {
    text-align: center;
  }
}
#loginpage .wrapper {
  padding-top: 40px;
}
@media (max-height: 400px) {
  #loginpage .wrapper {
    width: 100%;
    height: 100%;
    margin: 0;
    box-shadow: none;
    padding: 0;
  }
  #loginpage #loginformwrapper {
    width: 100%;
    height: 100%;
  }
  #loginpage .logo,
  #loginpage legend {
    display: none;
  }
}
