/*  

Description: MyFrameMeUP Custom Styles
Version: 1.0
Author: BeeSoft - Web & Mobile Solutions
Author URI: http://www.beesoft.it

*/
/*  

Description: Mixins
Version: 1.0
Author: BeeSoft - Web & Mobile Solutions
Author URI: http://www.beesoft.it

*/
/** MEDIA QUERIES **/
/** TRANSITIONS **/
/** TRANSFORM  **/
/*  

Description: Variables
Version: 1.0
Author: BeeSoft - Web & Mobile Solutions
Author URI: http://www.beesoft.it

*/
/** LIBRARIES **/
@import url("https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css");
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick-theme.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.3.5/jquery.fancybox.min.css");
@import url("https://cdn.jsdelivr.net/npm/animate.css@3.5.2/animate.min.css");
/** FONTS **/
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,600,700|Nunito:400,300,700");
@import url("https://pro.fontawesome.com/releases/v5.7.1/css/all.css");
@import url("../libs/cropper/cropper.min.css");
@font-face {
  font-family: 'Gilroy';
  src: url("../../core/fonts/Gilroy-Regular.eot");
  src: url("../../core/fonts/Gilroy-Regular.eot?#iefix") format("embedded-opentype"), url("../../core/fonts/Gilroy-Regular.woff2") format("woff2"), url("../../core/fonts/Gilroy-Regular.woff") format("woff"), url("../../core/fonts/Gilroy-Regular.ttf") format("truetype"), url("../../core/fonts/Gilroy-Regular.svg#Gilroy-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy Bold';
  src: url("../../core/fonts/Gilroy-Bold.eot");
  src: url("../../core/fonts/Gilroy-Bold.eot?#iefix") format("embedded-opentype"), url("../../core/fonts/Gilroy-Bold.woff2") format("woff2"), url("../../core/fonts/Gilroy-Bold.woff") format("woff"), url("../../core/fonts/Gilroy-Bold.ttf") format("truetype"), url("../../core/fonts/Gilroy-Bold.svg#Gilroy-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
}

/** COLORS **/
/** ANIMATIONS **/
@-webkit-keyframes hit-down {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes hit-down {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes rotate-right {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes rotate-right {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes rotate-left {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}

@keyframes rotate-left {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

/*  

Description: General styles
Version: 1.0
Author: BeeSoft - Web & Mobile Solutions
Author URI: http://www.beesoft.it

*/
* {
  outline: none !important;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

body {
  color: #888888;
  font-family: "Gilroy", sans-serif;
  font-size: 14px;
  overflow-x: hidden;
}

body:before {
  content: '';
  display: block;
  position: fixed;
  background: rgba(255, 255, 255, 0.1);
  z-index: -10000;
  opacity: 0;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

body:after {
  content: '';
  display: block;
  position: fixed;
  z-index: 1100;
  top: -100%;
  left: 50%;
  margin: -40px 0px 0px -40px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #e5e5e5;
  border-top: 3px solid #1d4ebb;
  -webkit-animation: rotate-right 1s linear infinite;
          animation: rotate-right 1s linear infinite;
}

body.init, body.loading {
  background: #ffffff;
}

body.init:before, body.loading:before {
  z-index: 1000;
  opacity: 1;
}

body.init:after, body.loading:after {
  top: 50%;
  opacity: 1;
}

body.lock-scroll, body.side-nav-open {
  overflow-y: hidden;
}

@media only screen and (min-width: 1200px) {
  body {
    background-attachment: fixed;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Gilroy Bold", sans-serif;
  color: #1d4ebb;
}

@media only screen and (max-width: 767px) {
  h1 h1, h2 h1, h3 h1, h4 h1, h5 h1, h6 h1 {
    font-size: 28px;
  }
}

strong {
  font-family: "Gilroy Bold", sans-serif;
}

img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 100%;
}

a {
  color: #1d4ebb;
}

a:hover, a:active, a:focus {
  color: #1d4ebb;
}

.column-2 {
  -webkit-column-count: 2;
          column-count: 2;
}

@media only screen and (max-width: 989px) {
  .column-2 {
    -webkit-column-count: auto;
            column-count: auto;
  }
}

.table th {
  text-transform: uppercase;
}

.table td, .table th {
  border-top: 0px !important;
  border-bottom: 2px dashed #e5e5e5;
  font-size: 12px;
}

.nav-tabs {
  border-bottom: 2px solid rgba(29, 78, 187, 0.1);
}

.nav-tabs li a {
  padding: 0px 0px 5px 0px;
  margin-right: 20px;
  color: rgba(29, 78, 187, 0.5);
  border-radius: 0px;
  border: 0px;
  border-bottom: 5px solid transparent !important;
  background: transparent !important;
  text-transform: uppercase;
  font-family: "Gilroy Bold", sans-serif;
  font-weight: bold;
  font-size: 12px;
}

.nav-tabs li.active a,
.nav-tabs li.active a:focus,
.nav-tabs li.active a:hover {
  color: #1d4ebb !important;
  border: 0px;
  border-bottom: 5px solid #1d4ebb !important;
}

.tab-pane {
  padding: 20px 0px;
}

.dropdown-menu {
  border: 0px;
  border-top: 2px solid #1d4ebb;
  border-radius: 0px;
  background: #ffffff;
  margin: 0px;
}

.dropdown-menu li a {
  padding: 10px 20px;
  color: #888888;
}

.dropdown-menu li.active a,
.dropdown-menu li a:hover,
.dropdown-menu li a:focus {
  color: #1d4ebb !important;
  background: transparent !important;
}

.pagination {
  margin: 20px 0px;
  font-size: 16px;
  text-align: center;
  display: block;
}

.pagination li a {
  margin: 0px 5px;
  display: inline-block;
  color: #1d4ebb;
  background: transparent;
  border: 0px;
  float: none;
}

.pagination li.active a {
  border-radius: 50%;
  background: #1d4ebb;
}

.modal .modal-header {
  background: #5cb8e6;
}

.modal .modal-header .close {
  font-size: 24px;
}

.modal .modal-title {
  font-size: 16px;
  color: #ffffff;
}

.modal .modal-content {
  border: 0px;
  border-radius: 0px;
  -webkit-box-shadow: 0px 0px 40px 0px rgba(51, 51, 51, 0.2);
          box-shadow: 0px 0px 40px 0px rgba(51, 51, 51, 0.2);
}

.cols-divider div[class*="col-"] {
  border-left: 1px solid rgba(51, 51, 51, 0.1);
}

.cols-divider div[class*="col-"]:first-child {
  border-left: 0px;
}

.social {
  font-size: 14px;
}

.social a {
  width: 34px;
  height: 34px;
  line-height: 34px;
  vertical-align: middle;
  display: inline-block;
  text-align: center;
  color: #ffffff;
}

.fb {
  background: #3b579d !important;
}

.tw {
  background: #5ea9dd !important;
}

.gp {
  background: #d84734 !important;
}

.yt {
  background: #c2191e !important;
}

.ig {
  background: #2a5c83 !important;
}

.lin {
  background: #007bb6 !important;
}

.pi {
  background: #c21e27 !important;
}

.vid {
  position: relative;
  display: block;
}

.vid:before {
  content: '\f144';
  display: block;
  font-family: Font Awesome\ 5 Pro;
  color: #ffffff;
  font-size: 30px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  margin: -15px 0px 0px -15px;
  text-shadow: 0px 0px 20px rgba(51, 51, 51, 0.8);
}

.langs {
  text-align: center;
}

.langs a {
  display: inline-block;
  vertical-align: middle;
  margin: 10px;
}

.langs img {
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  padding: 5px;
  width: auto;
  height: 30px;
}

.btn {
  text-transform: uppercase;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-radius: 500px;
  border: 0px !important;
}

.btn.btn-primary {
  background: #c3053b !important;
}

.btn.btn-success {
  background: #8cb63c !important;
}

.btn.btn-info {
  background: #5cb8e6 !important;
}

.btn.btn-default {
  color: #1d4ebb !important;
  background: transparent !important;
  border: 1px solid #1d4ebb !important;
}

.btn.fb, .btn.gp {
  color: #ffffff !important;
}

.btn.fb i, .btn.gp i {
  float: left;
  font-size: 20px;
  margin: 0px;
}

.btn i {
  margin-right: 5px;
}

.btn:active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.form-control {
  border: 0px;
  border-radius: 0px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-compact {
  border-radius: 500px;
  background: #ffffff;
  padding: 0px 10px;
  margin: 0px;
  overflow: hidden;
}

.form-compact .form-control {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0px;
  float: left;
  width: 80%;
}

.form-compact .btn {
  margin-right: -5px;
  float: right;
  width: 20%;
  height: 34px;
}

@media only screen and (max-width: 767px) {
  .form-compact .form-control {
    width: 70%;
  }
  .form-compact .btn {
    width: 30%;
  }
}

.form-group small {
  font-size: 10px;
}

.form-group p {
  margin-bottom: 0px;
}

.help-block {
  font-size: 10px;
}

.req {
  color: red;
}

form .form-group label {
  text-transform: uppercase;
  font-size: 0.8em;
}

form fieldset {
  margin-bottom: 40px;
}

form fieldset:last-child {
  margin-bottom: 0px;
}

.block-info {
  margin-bottom: 20px;
  padding: 20px;
  background: #edf7fc;
}

.block-info h3 {
  font-size: 20px;
  margin: 0px;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}

.block-info h3 small {
  text-transform: uppercase;
  display: block;
}

.block-info p {
  font-size: 14px;
}

.block-info a {
  color: #c3053b;
}

.block-info .btn {
  margin-top: 20px;
  color: #ffffff;
}

.block-info .btn.btn-sm {
  font-size: 0.8em;
}

.block-info .block-image img {
  height: 200px;
}

.block-info .block-icon {
  position: relative;
  padding-left: 40px;
  margin-top: 20px;
}

.block-info .block-icon p {
  font-size: 0.8em;
}

.block-info .block-icon i {
  border-radius: 50%;
  color: #ffffff;
  background: rgba(29, 78, 187, 0.2);
  position: absolute;
  font-size: 16px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  top: -5px;
  left: 0px;
}

.block-info.service {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  margin-bottom: 0px;
}

.block-info.service h3 {
  border-color: rgba(255, 255, 255, 0.2);
}

.block-info.service h3, .block-info.service a {
  color: #ffffff;
}

.block-info.service i {
  color: rgba(255, 255, 255, 0.2);
  position: absolute;
  line-height: 90px;
  font-size: 90px;
  right: -10px;
  top: 50%;
  margin-top: -45px;
}

.block-info.service strong {
  font-size: 1.5em;
}

.block-info.clempad {
  background: #c3053b;
}

.block-info.time {
  background: #1d4ebb;
}

.block-info.hightlight {
  background: #c3053b;
  color: #ffffff;
}

.block-info.hightlight h3 {
  border-color: rgba(255, 255, 255, 0.2);
}

.block-info.hightlight h3, .block-info.hightlight a {
  color: #ffffff;
}

.block-info.success {
  background: #8cb63c;
  color: #ffffff;
}

.block-info.success h3 {
  border-color: rgba(255, 255, 255, 0.2);
}

.block-info.success h1, .block-info.success h2, .block-info.success h3, .block-info.success h4, .block-info.success h5, .block-info.success a {
  color: #ffffff;
}

.slick-slider {
  padding-bottom: 50px;
}

.slick-slider .prod {
  margin: 0px 10px;
  opacity: 0;
}

.slick-slider .item.slick-active .prod {
  opacity: 1;
}

.slick-slider .slick-list {
  z-index: 50;
}

.slick-slider .slick-prev,
.slick-slider .slick-next {
  left: 50%;
  right: auto;
  top: auto;
  bottom: 0px;
  width: 40px;
  height: 30px;
  z-index: 100;
  -webkit-transform: none;
  transform: none;
}

.slick-slider .slick-prev:before,
.slick-slider .slick-next:before {
  font-family: Font Awesome\ 5 Pro;
  color: #1d4ebb;
  font-size: 30px;
  opacity: 1;
  display: block;
  width: 40px;
  height: 30px;
  line-height: 30px;
}

.cat1 .slick-slider .slick-prev:before, .cat1
.slick-slider .slick-next:before {
  color: #99ace4;
}

.cat2 .slick-slider .slick-prev:before, .cat2
.slick-slider .slick-next:before {
  color: #97c8eb;
}

.cat3 .slick-slider .slick-prev:before, .cat3
.slick-slider .slick-next:before {
  color: #ea0029;
}

.cat4 .slick-slider .slick-prev:before, .cat4
.slick-slider .slick-next:before {
  color: #2ba2b3;
}

.cat5 .slick-slider .slick-prev:before, .cat5
.slick-slider .slick-next:before {
  color: #e2634c;
}

.cat6 .slick-slider .slick-prev:before, .cat6
.slick-slider .slick-next:before {
  color: #e81f76;
}

.cat7 .slick-slider .slick-prev:before, .cat7
.slick-slider .slick-next:before {
  color: #6fc795;
}

.cat8 .slick-slider .slick-prev:before, .cat8
.slick-slider .slick-next:before {
  color: #fd9700;
}

.cat9 .slick-slider .slick-prev:before, .cat9
.slick-slider .slick-next:before {
  color: #ea0029;
}

.cat10 .slick-slider .slick-prev:before, .cat10
.slick-slider .slick-next:before {
  color: #1d4ebb;
}

.cat11 .slick-slider .slick-prev:before, .cat11
.slick-slider .slick-next:before {
  color: #ebd500;
}

.slick-slider .slick-prev.slick-disabled:before,
.slick-slider .slick-next.slick-disabled:before {
  color: #e5e5e5;
}

.slick-slider .slick-prev {
  margin-left: -40px;
}

.slick-slider .slick-prev:before {
  content: '\f104';
}

.slick-slider .slick-next {
  margin-right: -40px;
}

.slick-slider .slick-next:before {
  content: '\f105';
}

.slick-slider .slick-dots {
  left: 0px;
}

.slick-slider .slick-dots li button:before {
  color: #1d4ebb;
}

.content-area {
  padding: 30px 0px;
}

.content-area .area-title h1, .content-area .area-title h2, .content-area .area-title h3, .content-area .area-title h4 {
  margin: 0px;
  margin-bottom: 20px;
}

.content-area .area-title strong {
  font-size: 1.2em;
  color: #c3053b;
  display: block;
}

.content-area .boxed-info {
  background: #ffffff;
  padding: 40px;
  -webkit-box-shadow: 0px 0px 50px 0px rgba(51, 51, 51, 0.06);
          box-shadow: 0px 0px 50px 0px rgba(51, 51, 51, 0.06);
}

.content-area .boxed-info .area-title {
  background: #edf7fc;
  padding: 20px;
  margin: -40px;
  margin-bottom: 20px;
}

.content-area .popup-elements .pop {
  cursor: pointer;
  position: relative;
  padding: 0px 20px;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.content-area .popup-elements .pop:before {
  content: '\f067';
  display: block;
  position: absolute;
  z-index: 50;
  font-family: Font Awesome\ 5 Pro;
  font-size: 20px;
  height: 30px;
  width: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  background: #c3053b;
  color: #ffffff;
  bottom: 10px;
  right: 10px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.content-area .popup-elements .pop .photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #ffffff;
  overflow: hidden;
  padding: 30px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.content-area .popup-elements .pop .desc {
  color: #ffffff;
  background: #1d4ebb;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  overflow: hidden;
  font-size: 11px;
  display: none;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.content-area .popup-elements .pop .desc p {
  margin: 0px;
  padding: 15px;
}

.content-area .popup-elements .pop:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.content-area .popup-elements .pop.active {
  position: relative;
  z-index: 200;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.content-area .popup-elements .pop.active:before {
  background: #c3053b;
  top: 0px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.content-area .popup-elements .pop.active .photo {
  -webkit-box-shadow: 0px 0px 40px 0px rgba(51, 51, 51, 0.1);
          box-shadow: 0px 0px 40px 0px rgba(51, 51, 51, 0.1);
}

.content-area .popup-elements .pop.active .desc {
  display: block;
}

.content-area .popup-slider {
  padding-bottom: 40px;
}

.content-area .popup-slider .item.slick-active .pop {
  opacity: 1;
}

.content-area .popup-slider .item.slick-active .pop.active {
  position: absolute;
  margin-top: -40px !important;
  top: 0px;
}

.content-area .popup-slider .item:nth-child(even) .pop {
  margin-top: 60px;
}

.content-area .popup-slider .item:last-child .pop.active {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.content-area .popup-slider .slick-next,
.content-area .popup-slider .slick-prev {
  z-index: 100;
  left: 50%;
}

.content-area .popup-slider .slick-next {
  margin-right: -40px;
}

.content-area .popup-slider .slick-prev {
  margin-left: -40px;
}

.content-area .popup-slider .slick-list {
  padding: 20px 0px;
  overflow: visible;
}

.content-area.spotted .area-title {
  opacity: 0.1;
}

.content-area.spotted .popup-slider .slick-next,
.content-area.spotted .popup-slider .slick-prev {
  opacity: 0;
}

.content-area.spotted .popup-elements .pop {
  opacity: 0.1;
}

.content-area.spotted .popup-elements .pop.active {
  opacity: 1;
}

@media only screen and (min-width: 1200px) {
  .content-area {
    padding: 80px 0px;
  }
  .content-area.full-height {
    min-height: 100vh;
  }
}

@media only screen and (max-width: 767px) {
  .content-area .area-title h1, .content-area .area-title h2, .content-area .area-title h3, .content-area .area-title h4 {
    font-size: 18px;
  }
}

.text {
  font-size: 12px;
}

.text h1, .text h2, .text h3, .text h4, .text h5, .text h6 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: #1d4ebb;
}

.text h1:first-child, .text h2:first-child, .text h3:first-child, .text h4:first-child, .text h5:first-child, .text h6:first-child {
  margin-top: 0px;
}

.text ul {
  margin: 20px 0px;
  padding: 0px;
}

.text ul li {
  margin-bottom: 10px;
  line-height: 160%;
  list-style: none;
}

.text ul li:before {
  content: '\f00c';
  font-family: Font Awesome\ 5 Pro;
  vertical-align: top;
  display: inline-block;
  margin-right: 5px;
  color: #8cb63c;
}

.text ol {
  list-style: none;
  counter-reset: list;
  margin: 20px 0px;
  padding: 0px 15px;
}

.text ol > li {
  margin-bottom: 10px;
  line-height: 160%;
  list-style: none;
}

.text ol > li:before {
  counter-increment: list;
  content: counter(list, lower-alpha) ". ";
  color: #8cb63c;
  font-weight: bold;
  font-size: 16px;
}

.text ol ul {
  padding: 0px 15px;
}

.text .pull-right,
.text .pull-left {
  max-width: 30%;
}

.text .pull-right {
  margin: 0px 0px 30px 30px;
}

.text .pull-left {
  margin: 0px 30px 30px 0px;
}

@media only screen and (min-width: 1200px) {
  .text {
    font-size: 14px;
  }
}

@media only screen and (min-width: 1440px) {
  .text {
    max-width: 1000px;
  }
}

@media only screen and (max-width: 767px) {
  .text .pull-right,
  .text .pull-left {
    float: none !important;
    max-width: none;
    width: 100%;
    margin: 10px 0px 10px 0px;
  }
}

.video {
  position: relative;
}

.video:before {
  content: '\f144';
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 40px;
  text-align: center;
  font-family: 'Font Awesome 5 Pro';
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  opacity: 0.8;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.bg-warning {
  background: #edaf00;
  color: #ffffff;
}

.bg-success {
  background: #4eb764;
  color: #ffffff;
}

.bg-danger {
  background: #e40020;
  color: #ffffff;
}

#disclaimer {
  position: fixed;
  display: none;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  z-index: 10000;
  background: rgba(136, 136, 136, 0.8);
}

#disclaimer .container-fluid {
  position: fixed;
  max-width: none;
  bottom: 0px;
  left: 0px;
  right: 0px;
  padding: 40px;
  margin: 0px;
  background: #1d4ebb;
  color: #ffffff;
}

#disclaimer p {
  font-size: 1.2em;
}

#disclaimer p a {
  text-decoration: underline;
  color: #ffffff;
}

#disclaimer .checks {
  text-transform: uppercase;
  margin-bottom: 10px;
}

#order-area .table label {
  display: none;
}

#order-area .table td {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 1.1em;
}

#order-area .table .order-item-image {
  max-width: 100px;
}

#order-area .top-status {
  text-align: right;
}

@media only screen and (max-width: 767px) {
  #order-area .table {
    display: block;
  }
  #order-area .table label {
    text-transform: uppercase;
    font-size: 10px;
    display: block;
    opacity: 0.5;
  }
  #order-area .table thead {
    display: none;
  }
  #order-area .table tbody,
  #order-area .table tfoot,
  #order-area .table tr,
  #order-area .table th,
  #order-area .table td {
    text-align: left;
    width: 100%;
    display: block;
  }
  #order-area .table tr {
    border: 2px solid rgba(51, 51, 51, 0.1);
    margin-bottom: 20px;
  }
  #order-area .table .order-item-image {
    max-width: none;
  }
}

#order-area .top-status {
  padding-top: 10px;
  text-align: left;
}

#modal-callto .modal-dialog {
  text-align: center;
}

@media only screen and (min-width: 990px) {
  #modal-callto .modal-dialog {
    position: absolute;
    bottom: 0;
    right: 30px;
    max-width: 60vh;
  }
}

/*  

Description: Layout Styles
Version: 1.0
Author: BeeSoft - Web & Mobile Solutions
Author URI: http://www.beesoft.it

*/
.container-fluid {
  max-width: 98%;
}

.container-fluid.limit-width {
  max-width: 1600px;
}

@media only screen and (max-width: 767px) {
  .container-fluid {
    max-width: none;
  }
}

.row-eq-height {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 989px) {
  .row-eq-height {
    display: block;
  }
}

.v-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#head {
  background: #ffffff;
  padding: 20px 0px;
  position: fixed;
  z-index: 500;
  top: 0px;
  left: 0px;
  width: 100%;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(51, 51, 51, 0.2);
          box-shadow: 0px 0px 20px 0px rgba(51, 51, 51, 0.2);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

#head .container-fluid {
  max-width: none;
}

#head .area-announcement {
  border-radius: 0px;
  margin: -20px 0px 10px 0px;
  padding-top: 5px;
  padding-bottom: 5px;
  background: #1d4ebb;
  color: #edf7fc;
  text-align: center;
}

#head .area-announcement a {
  color: #edf7fc;
}

#head .navbar-nav {
  margin: 0px;
  margin-bottom: 15px;
  font-size: 12px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#head .navbar-nav > li {
  float: none;
  margin: 0px 10px;
  display: inline-block;
  vertical-align: middle;
}

#head .navbar-nav > li > a {
  padding: 5px 10px;
  line-height: 16px;
  border-bottom: 2px solid transparent;
}

#head .navbar-nav > li > a:focus, #head .navbar-nav > li > a:hover {
  background: transparent;
}

#head .navbar-nav > li.active > a {
  font-weight: bold;
  border-color: #1d4ebb;
}

#head .navbar-nav > li.open > a {
  background: #1d4ebb;
  color: #ffffff;
}

#head .navbar-nav li.btn-club {
  margin-right: 0px;
  text-align: left;
}

#head .navbar-nav li.btn-club > a {
  border-radius: 500px;
  padding: 3px 20px 3px 35px;
  background: #8cb63c !important;
  color: #ffffff !important;
  line-height: 10px;
  font-size: 8px;
}

#head .navbar-nav li.btn-club > a i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  position: absolute;
  left: 8px;
  top: 5px;
}

#head .navbar-nav li.btn-club > a strong {
  line-height: 12px;
  font-size: 10px;
  display: block;
}

#head .navbar-nav li.btn-club > a[aria-expanded="true"] {
  border-radius: 15px 0px 0px 0px;
}

#head .navbar-nav li.btn-club .dropdown-menu {
  border-top-color: #1d4ebb;
}

#head .navbar-nav li.btn-club .dropdown-menu a i {
  margin-right: 5px;
}

#head .logo {
  margin-top: 5px;
  display: inline-block;
  vertical-align: top;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#head .logo img {
  position: relative;
  z-index: 100;
  height: 35px;
  margin-top: 10px;
}

#head .logo .payoff {
  font-size: 11px;
  padding-left: 40px;
  margin: 0px 5px;
  text-align: center;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

#head .form-compact {
  vertical-align: middle;
  border: 1px solid rgba(51, 51, 51, 0.1);
  background: rgba(255, 255, 255, 0.2);
  width: 100%;
  max-width: 410px;
  float: right;
  clear: both;
}

#head .form-compact .form-control {
  background: transparent;
}

#head .form-compact .btn {
  border: 0px !important;
  padding: 0px;
  font-size: 20px;
  width: 34px;
}

#head .nav-button {
  margin-right: 10px;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

#head .nav-button .btn {
  position: relative;
  width: 70px;
  height: 70px;
  text-align: center;
  border-radius: 50%;
  padding: 0px;
  -webkit-animation-iteration-count: 0;
          animation-iteration-count: 0;
}

#head .nav-button .btn i {
  font-size: 24px;
  height: 24px;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#head .nav-button .btn i.icon-open {
  display: block;
}

#head .nav-button .btn i.icon-close {
  display: none;
}

#head .nav-button .btn small {
  margin-top: 2px;
  font-size: 8px;
  display: block;
}

.home #head {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.home #head .nav-button .btn {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
  -webkit-animation-iteration-count: 3;
          animation-iteration-count: 3;
}

.home #head .navbar-nav > li > a {
  color: #ffffff;
}

.home #head .form-compact .form-control {
  color: #ffffff;
}

.home #head .form-compact .btn {
  color: #ffffff !important;
}

.home.init #head {
  opacity: 0;
  top: -100px;
}

.scrolling #head,
.side-nav-open #head {
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(51, 51, 51, 0.2);
          box-shadow: 0px 0px 30px 0px rgba(51, 51, 51, 0.2);
  overflow: hidden;
  height: 45px;
  padding: 0px;
}

.scrolling #head .logo,
.side-nav-open #head .logo {
  margin-top: -5px;
}

.scrolling #head .logo .payoff,
.side-nav-open #head .logo .payoff {
  opacity: 0;
  margin-top: -100px;
}

.scrolling #head .area-announcement,
.side-nav-open #head .area-announcement {
  height: 0px;
  margin: 0px;
  padding: 0px;
  overflow: hidden;
  display: none;
}

.scrolling #head .navbar-nav,
.side-nav-open #head .navbar-nav {
  margin-top: -40px;
}

.scrolling #head .nav-button,
.side-nav-open #head .nav-button {
  margin-top: -13px;
}

.scrolling #head .nav-button .btn small,
.side-nav-open #head .nav-button .btn small {
  display: none;
}

.scrolling #head .form-compact .form-control,
.side-nav-open #head .form-compact .form-control {
  color: inherit;
}

.scrolling #head .form-compact .btn,
.side-nav-open #head .form-compact .btn {
  color: #1d4ebb !important;
}

.side-nav-open #head .nav-button .btn i.icon-open {
  display: none;
}

.side-nav-open #head .nav-button .btn i.icon-close {
  display: block;
}

@media only screen and (min-width: 1850px) {
  #head .top-nav .navbar-nav > li > a {
    padding: 2px 10px;
  }
}

@media only screen and (max-width: 989px) {
  #head .navbar-nav {
    display: none;
  }
  .scrolling #head .form-compact,
  .side-nav-open #head .form-compact {
    margin-top: 4px;
  }
}

@media only screen and (max-width: 767px) {
  #head {
    padding-top: 0px;
  }
  #head .logo {
    text-align: center;
    display: block;
  }
  #head .area-announcement {
    margin-top: -10px;
  }
  #head .nav-button {
    position: absolute;
    left: -10px;
    top: -10px;
  }
  #head .form-compact {
    display: none;
  }
  .scrolling #head .nav-button,
  .side-nav-open #head .nav-button {
    margin-top: -5px;
  }
}

#side-nav {
  background: rgba(51, 51, 51, 0.9);
  overflow-y: scroll;
  padding: 65px 0px;
  position: fixed;
  font-size: 14px;
  z-index: 110;
  bottom: 0px;
  top: 0px;
  left: -380px;
  width: 320px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#side-nav .nav-slider:before {
  display: none;
}

#side-nav .nav-slider .nav-group {
  opacity: 0;
  max-height: 0px;
  padding: 0px 15px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#side-nav .nav-slider .nav-group.slick-current {
  opacity: 1;
  max-height: 90000px;
}

#side-nav .nav-slider .nav-group h5 {
  font-size: 12px;
  color: #888888;
  margin: 20px 0px 10px 0px;
}

#side-nav .btn-back {
  color: #ffffff;
  font-size: 18px;
  text-decoration: none;
  display: block;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.2);
}

#side-nav .nav {
  margin-bottom: 20px;
}

#side-nav .nav li {
  margin-top: 2px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  /*
			&.active {
				
				background: rgba($color_palette9, 0.2);
				
				& > a {
					margin-bottom: 10px;
					background: rgba($color_palette9, 0.2);
				}
				
			}
			*/
}

#side-nav .nav li a {
  color: #ffffff;
  border-radius: 0px;
  background: transparent;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#side-nav .nav li a:hover {
  background: rgba(255, 255, 255, 0.2);
}

#side-nav .nav .nav {
  padding: 0px 10px 10px 10px;
  margin-bottom: 0px;
}

#side-nav .nav .nav li {
  margin: 0px;
}

#side-nav .nav .nav li a {
  padding: 10px;
}

.cat1 #side-nav .nav .nav li.active a {
  background: #99ace4 !important;
  color: #ffffff !important;
}

.cat2 #side-nav .nav .nav li.active a {
  background: #97c8eb !important;
  color: #ffffff !important;
}

.cat3 #side-nav .nav .nav li.active a {
  background: #ea0029 !important;
  color: #ffffff !important;
}

.cat4 #side-nav .nav .nav li.active a {
  background: #2ba2b3 !important;
  color: #ffffff !important;
}

.cat5 #side-nav .nav .nav li.active a {
  background: #e2634c !important;
  color: #ffffff !important;
}

.cat6 #side-nav .nav .nav li.active a {
  background: #e81f76 !important;
  color: #ffffff !important;
}

.cat7 #side-nav .nav .nav li.active a {
  background: #6fc795 !important;
  color: #ffffff !important;
}

.cat8 #side-nav .nav .nav li.active a {
  background: #fd9700 !important;
  color: #ffffff !important;
}

.cat9 #side-nav .nav .nav li.active a {
  background: #ea0029 !important;
  color: #ffffff !important;
}

.cat10 #side-nav .nav .nav li.active a {
  background: #1d4ebb !important;
  color: #ffffff !important;
}

.cat11 #side-nav .nav .nav li.active a {
  background: #ebd500 !important;
  color: #ffffff !important;
}

#side-nav .nav .nav li.active {
  padding-bottom: 0px;
  background: transparent;
}

#side-nav .nav .nav li.active a {
  margin-bottom: 0px;
}

#side-nav .nav.nav-secondary {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

#side-nav .icon {
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  width: 45px;
  height: 45px;
  padding: 5px;
  margin-right: 10px;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#side-nav .icon img {
  display: block;
  width: 100%;
  height: 100%;
}

#side-nav .icon i {
  color: #ffffff;
  font-size: 18px !important;
  line-height: 35px;
}

#side-nav .brand {
  display: block;
  background: #ffffff !important;
  text-align: center;
  border: 1px solid transparent;
}

#side-nav .brand img {
  display: inline-block;
  max-width: 100%;
}

#side-nav .brand:hover {
  border-color: rgba(92, 184, 230, 0.2);
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

#side-nav .mobile-search {
  display: none;
}

#side-nav #m1 .nav li.active {
  background: rgba(255, 255, 255, 0.2);
}

#side-nav #m1 .nav li.active > a {
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.2);
}

#side-nav #m2 .nav li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#side-nav #m2 .nav li.active > a {
  border: 3px solid #ffffff;
}

#side-nav #m3 .nav li.active > a {
  border: 3px solid #c3053b;
}

#side-nav .cat1 {
  background: #99ace4;
}

#side-nav .cat1 a {
  color: #ffffff;
}

#side-nav .cat1:hover {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

#side-nav .cat2 {
  background: #97c8eb;
}

#side-nav .cat2 a {
  color: #ffffff;
}

#side-nav .cat2:hover {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

#side-nav .cat3 {
  background: #ea0029;
}

#side-nav .cat3 a {
  color: #ffffff;
}

#side-nav .cat3:hover {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

#side-nav .cat4 {
  background: #2ba2b3;
}

#side-nav .cat4 a {
  color: #ffffff;
}

#side-nav .cat4:hover {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

#side-nav .cat5 {
  background: #e2634c;
}

#side-nav .cat5 a {
  color: #ffffff;
}

#side-nav .cat5:hover {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

#side-nav .cat6 {
  background: #e81f76;
}

#side-nav .cat6 a {
  color: #ffffff;
}

#side-nav .cat6:hover {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

#side-nav .cat7 {
  background: #6fc795;
}

#side-nav .cat7 a {
  color: #ffffff;
}

#side-nav .cat7:hover {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

#side-nav .cat8 {
  background: #fd9700;
}

#side-nav .cat8 a {
  color: #ffffff;
}

#side-nav .cat8:hover {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

#side-nav .cat9 {
  background: #ea0029;
}

#side-nav .cat9 a {
  color: #ffffff;
}

#side-nav .cat9:hover {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

#side-nav .cat10 {
  background: #1d4ebb;
}

#side-nav .cat10 a {
  color: #ffffff;
}

#side-nav .cat10:hover {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

#side-nav .cat11 {
  background: #ebd500;
}

#side-nav .cat11 a {
  color: #ffffff;
}

#side-nav .cat11:hover {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

.side-nav-open #side-nav {
  left: 0px;
  -webkit-box-shadow: 0px 0px 40px 0px rgba(51, 51, 51, 0.3);
          box-shadow: 0px 0px 40px 0px rgba(51, 51, 51, 0.3);
}

@media only screen and (max-width: 767px) {
  #side-nav {
    left: -100%;
    width: 100%;
  }
  #side-nav .mobile-search {
    padding-bottom: 20px;
    margin: 0px 15px;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  #side-nav .mobile-search .form-compact {
    background: rgba(255, 255, 255, 0.2);
    width: 100%;
  }
  #side-nav .mobile-search .form-compact .form-control {
    color: #ffffff;
    background: transparent;
  }
  #side-nav .mobile-search .form-compact .btn {
    border: 0px !important;
    padding: 0px;
    font-size: 20px;
    width: 34px;
    color: #ffffff !important;
  }
  .side-nav-open #side-nav {
    left: 0px;
  }
}

#area-nav {
  position: fixed;
  z-index: 400;
  right: -300px;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  margin-top: -130px;
  width: 200px;
  height: 260px;
  overflow: hidden;
  background: #1d4ebb;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#area-nav .nav {
  margin-left: -150px;
}

#area-nav .nav li a {
  border: 2px solid #ffffff;
  background: transparent;
  border-radius: 50%;
  margin: 15px auto;
  padding: 0px;
  width: 8px;
  height: 8px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#area-nav .nav li strong {
  display: none;
}

#area-nav .nav li.active a {
  background: #ffffff;
  width: 15px;
  height: 15px;
}

.scrolling #area-nav {
  right: -150px;
}

.side-nav-open #area-nav {
  right: -300px;
}

@media only screen and (max-width: 767px) {
  #area-nav {
    display: none;
  }
}

#main-content {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#main-content .cover-slider {
  padding-bottom: 0px;
  margin-bottom: 0px;
  z-index: 1;
}

#main-content .cover-slider:before {
  display: none;
}

#main-content .cover-slider .item {
  position: relative;
}

#main-content .cover-slider .slide {
  background-position: center center;
  background-size: cover;
  height: calc(100vh - 200px);
}

#main-content .cover-slider .slide[data-target] {
  cursor: pointer;
}

#main-content .cover-slider .slide .videobg {
  background: #333333;
  position: relative;
  padding-bottom: 56.25%;
  height: 100%;
  opacity: 0;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#main-content .cover-slider .slide .videobg iframe {
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

#main-content .cover-slider .slide .videobg.loaded {
  opacity: 1;
}

#main-content .cover-slider .slide .text {
  text-align: center;
  position: absolute;
  max-width: 500px;
  padding: 20px;
  z-index: 10;
  left: 50%;
  bottom: 60px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

#main-content .cover-slider .slide .text h1, #main-content .cover-slider .slide .text h2, #main-content .cover-slider .slide .text h3, #main-content .cover-slider .slide .text h4 {
  text-shadow: 1px 1px 0px rgba(51, 51, 51, 0.3);
  margin: 10px 0px;
  font-size: 24px;
  color: #ffffff;
}

#main-content .cover-slider .slide .text a {
  text-decoration: none;
  color: #ffffff;
}

#main-content .cover-slider .slide .text img {
  width: auto;
  height: auto;
  max-height: 150px;
  display: inline-block;
}

#main-content .cover-slider .slide:before {
  content: '';
  display: block;
  position: absolute;
  z-index: 10;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: rgba(51, 51, 51, 0.15);
}

#main-content .cover-slider .slide.left {
  background-position: left bottom;
}

#main-content .cover-slider .slide.left .text {
  left: 20px;
  -webkit-transform: none;
  transform: none;
}

#main-content .cover-slider .slide.right {
  background-position: right bottom;
  left: auto;
  right: 20px;
  -webkit-transform: none;
  transform: none;
}

#main-content .cover-slider .slick-prev,
#main-content .cover-slider .slick-next {
  background: transparent;
  bottom: 20px;
}

#main-content .cover-slider .slick-prev:before,
#main-content .cover-slider .slick-next:before {
  background: transparent;
  color: #ffffff;
}

#main-content .cover-slider.full-height .item {
  height: 100vh;
}

#main-content .cover-slider.full-height .slide {
  height: auto;
  position: absolute;
  overflow: hidden;
  z-index: 1;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
}

#main-content .heading {
  position: relative;
  z-index: 10;
  padding-top: 120px;
  background: #1d4ebb;
}

.cat1 #main-content .heading {
  background: #99ace4;
}

.cat2 #main-content .heading {
  background: #97c8eb;
}

.cat3 #main-content .heading {
  background: #ea0029;
}

.cat4 #main-content .heading {
  background: #2ba2b3;
}

.cat5 #main-content .heading {
  background: #e2634c;
}

.cat6 #main-content .heading {
  background: #e81f76;
}

.cat7 #main-content .heading {
  background: #6fc795;
}

.cat8 #main-content .heading {
  background: #fd9700;
}

.cat9 #main-content .heading {
  background: #ea0029;
}

.cat10 #main-content .heading {
  background: #1d4ebb;
}

.cat11 #main-content .heading {
  background: #ebd500;
}

#main-content .heading .cat-icon {
  vertical-align: middle;
  display: inline-block;
  margin-right: 15px;
  margin-left: -20px;
}

#main-content .heading .cat-icon .avatar {
  border-radius: 50%;
  -webkit-box-shadow: 3px 3px 0px 0px rgba(51, 51, 51, 0.1);
          box-shadow: 3px 3px 0px 0px rgba(51, 51, 51, 0.1);
}

#main-content .heading h2 {
  display: inline-block;
  vertical-align: middle;
  font-size: 24px;
  margin: 20px 0px;
  color: #ffffff;
}

#main-content .heading h2 small {
  display: block;
  color: rgba(255, 255, 255, 0.6);
}

#main-content .heading h2.double-line {
  line-height: normal;
}

#main-content .heading .v-center {
  height: 100%;
}

#main-content .heading .breadcrumb {
  font-size: 10px;
  text-align: right;
  background: transparent;
  color: #ffffff;
  padding: 0px;
  margin: 0px;
  margin-top: 30px;
}

#main-content .heading .breadcrumb i {
  font-size: 14px;
  margin-right: 5px;
}

#main-content .heading .breadcrumb li + li:before {
  color: rgba(255, 255, 255, 0.6);
}

#main-content .heading .breadcrumb a,
#main-content .heading .breadcrumb .active {
  color: rgba(255, 255, 255, 0.6);
}

#main-content .heading .breadcrumb a:hover {
  color: #ffffff;
}

.init #main-content {
  opacity: 0;
}

.loading #main-content {
  opacity: 0.3;
}

.side-nav-open #main-content:after {
  content: '';
  display: block;
  position: fixed;
  z-index: 100;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: rgba(51, 51, 51, 0.3);
}

@media only screen and (max-width: 989px) {
  #main-content .cover-slider .slide {
    height: calc(60vh - 200px);
  }
  #main-content .cover-slider.full-height .item {
    height: 45vh;
  }
}

@media only screen and (max-width: 767px) {
  #main-content {
    margin: 0px;
  }
  #main-content .cover-slider .slide .text {
    width: 100%;
    bottom: 40px;
  }
  #main-content .cover-slider .slide .text h1, #main-content .cover-slider .slide .text h2, #main-content .cover-slider .slide .text h3, #main-content .cover-slider .slide .text h4 {
    font-size: 14px;
  }
  #main-content .cover-slider .slide .text img {
    height: 60px;
  }
  #main-content .cover-slider .slide .text .btn-lg {
    font-size: 14px;
  }
  #main-content .cover-slider .slide .text.left, #main-content .cover-slider .slide .text.right {
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  #main-content .heading {
    text-align: center;
  }
  #main-content .heading h2 {
    font-size: 20px;
    margin-top: 0px;
    margin-bottom: 10px;
    display: block;
  }
  #main-content .heading .cat-icon {
    margin: -30px auto 10px auto;
  }
  #main-content .heading .breadcrumb {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 20px;
  }
}

#foot {
  background: #ffffff;
  border-top: 1px solid #e5e5e5;
  padding: 40px 0px;
}

#foot .links {
  margin-bottom: 20px;
  font-size: 12px;
}

#foot .links a {
  color: #888888;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}

#foot .text {
  font-size: 10px;
}

#foot .social {
  margin-bottom: 20px;
  text-align: right;
}

#foot .social a {
  margin-left: 5px;
}

#foot .lang-switch {
  text-align: right;
}

#foot .lang-switch .lang {
  display: inline-block;
  font-size: 12px;
  margin-left: 5px;
}

#foot .lang-switch .lang .btn {
  display: inline-block;
  border: 1px solid #e5e5e5 !important;
  border-radius: 0px;
  padding: 3px;
}

#foot .lang-switch .lang img {
  height: 20px;
}

@media only screen and (max-width: 767px) {
  #foot {
    text-align: center;
  }
  #foot .social,
  #foot .lang-switch {
    text-align: center;
  }
  #foot .social a {
    margin: 5px;
  }
  #foot .lang {
    display: inline-block;
    margin: 10px;
  }
}

/*  

Description: MyFrameMeUP - General Styles
Version: 1.0
Author: BeeSoft - Web & Mobile Solutions
Author URI: http://www.beesoft.it

*/
@font-face {
  font-family: 'Avenir Black';
  src: url("../fonts/AvenirLTStd-Black.eot");
  src: url("../fonts/AvenirLTStd-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/AvenirLTStd-Black.woff2") format("woff2"), url("../fonts/AvenirLTStd-Black.woff") format("woff"), url("../fonts/AvenirLTStd-Black.ttf") format("truetype"), url("../fonts/AvenirLTStd-Black.svg#AvenirLTStd-Black") format("svg");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Avenir Medium';
  src: url("../fonts/AvenirLTStd-Medium.eot");
  src: url("../fonts/AvenirLTStd-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/AvenirLTStd-Medium.woff2") format("woff2"), url("../fonts/AvenirLTStd-Medium.woff") format("woff"), url("../fonts/AvenirLTStd-Medium.ttf") format("truetype"), url("../fonts/AvenirLTStd-Medium.svg#AvenirLTStd-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'DK Cinnabar Brush';
  src: url("../fonts/DKCinnabarBrush.eot");
  src: url("../fonts/DKCinnabarBrush.eot?#iefix") format("embedded-opentype"), url("../fonts/DKCinnabarBrush.woff2") format("woff2"), url("../fonts/DKCinnabarBrush.woff") format("woff"), url("../fonts/DKCinnabarBrush.ttf") format("truetype"), url("../fonts/DKCinnabarBrush.svg#DKCinnabarBrush") format("svg");
  font-weight: normal;
  font-style: normal;
}

body {
  color: #000;
}

body:after {
  border-top-color: #000;
}

body:before {
  background-image: url("../images/favicon.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 40px;
}

body.stepscroll {
  overflow-y: hidden;
}

body.modal-open {
  width: auto !important;
}

h1, h2, h3, h4, h5 {
  font-family: "Avenir Medium", sans-serif;
  color: #000;
}

h1 a,
h1 a:hover, h2 a,
h2 a:hover, h3 a,
h3 a:hover, h4 a,
h4 a:hover, h5 a,
h5 a:hover {
  color: #000;
}

form label {
  text-transform: uppercase;
  font-size: 0.8em;
  font-weight: bold;
  opacity: 0.5;
}

form label.btn {
  opacity: 1;
}

form label.normalcase {
  text-transform: none;
}

form hr {
  margin: 20px 0px;
  border: 0px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.checkbox label {
  opacity: 1;
  font-size: inherit;
}

.checkbox + .checkbox, .radio + .radio {
  margin-top: 0px;
}

.btn {
  font-family: "DK Cinnabar Brush", cursive, sans-serif;
  border-radius: 0px !important;
  letter-spacing: 2px;
  font-size: 1.2rem;
}

.btn.btn-underline {
  background: url("../images/bg-btn-underline.png") no-repeat center bottom !important;
  background-size: 100% auto !important;
  color: #000 !important;
  border: 0px !important;
}

.btn.btn-default {
  background: url("../images/bg-btn-gray.png") no-repeat !important;
  background-size: 100% 100% !important;
  color: #4d4d4d !important;
  border: 0px !important;
  padding: 15px 30px;
}

.btn.btn-primary {
  background: url("../images/bg-btn.png") no-repeat !important;
  background-size: 100% 100% !important;
  padding: 15px 30px;
}

.btn.btn-primary[data-type="junior"],
[data-type="junior"] .btn.btn-primary {
  background-image: url("../images/bg-btn-junior.png") !important;
}

[data-type="junior"] .btn.btn-primary[data-type="classic"] {
  background-image: url("../images/bg-btn.png") !important;
}

.btn.btn-danger {
  background: url("../images/bg-btn-danger.png") no-repeat !important;
  background-size: 100% 100% !important;
  padding: 15px 30px;
  color: #ffffff !important;
}

.btn.btn-link {
  background-color: #ffffff !important;
  color: #000 !important;
}

.btn.btn-lg {
  font-size: 1.4rem;
}

.btn.disabled, .btn[disabled] {
  opacity: 0.3;
}

#head .nav-button .btn {
  font-family: inherit;
  letter-spacing: inherit;
}

.nav-tabs {
  border-bottom: 0px;
  padding-bottom: 10px;
}

.nav-tabs li {
  border-right: 2px solid rgba(0, 0, 0, 0.5);
  vertical-align: bottom;
  display: inline-block;
  float: none;
  padding-right: 10px;
  margin-right: 10px;
}

.nav-tabs li:last-child {
  border-right: 0px;
}

.nav-tabs li a {
  font-family: "DK Cinnabar Brush", cursive, sans-serif;
  font-size: 1.2em;
  color: #000;
  border: 0px !important;
  opacity: 0.5;
  margin: 0px;
}

.nav-tabs li i {
  margin-right: 10px;
}

.nav-tabs li.active a,
.nav-tabs li.active a:hover,
.nav-tabs li.active a:focus {
  color: #000 !important;
  border: 0px !important;
  opacity: 1;
}

[data-type="junior"] .nav-tabs li.active a,
[data-type="junior"] .nav-tabs li.active a:hover,
[data-type="junior"] .nav-tabs li.active a:focus {
  color: #00b091 !important;
}

@media only screen and (max-width: 767px) {
  .nav-tabs {
    overflow-x: scroll;
    white-space: nowrap;
    padding-bottom: 5px;
  }
  .nav-tabs li a {
    padding: 10px 10px 5px 10px;
    font-size: 10px;
  }
}

.faq-block {
  margin-bottom: 10px;
}

.faq-block .faq-title {
  background: rgba(0, 0, 0, 0.1);
}

.faq-block .faq-title a {
  padding: 5px 10px;
  display: block;
}

.faq-block .faq-title a .icon {
  margin-right: 5px;
  width: 16px;
  height: 16px;
  opacity: 0.2;
}

.faq-block .faq-title a.active .icon {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 1;
}

.faq-block .faq-title .h5 {
  margin-bottom: 10px;
}

.faq-block .faq-text {
  padding-bottom: 20px;
}

.form-control {
  border-radius: 4px;
  background-color: rgba(241, 238, 229, 0.6);
}

.modal .modal-header {
  background: #000;
  font-family: "Avenir Black", sans-serif;
}

.modal .modal-header .close {
  color: #ffffff;
  opacity: 0.5;
}

.modal .modal-dialog {
  margin-top: 100px;
}

.langs img {
  border-radius: 0px;
}

.content-area .area-title h1, .content-area .area-title h2, .content-area .area-title h3, .content-area .area-title h4, .content-area .area-title h5 {
  font-family: "DK Cinnabar Brush", cursive, sans-serif;
  margin-bottom: 10px;
}

.content-area .area-title h1 strong, .content-area .area-title h2 strong, .content-area .area-title h3 strong, .content-area .area-title h4 strong, .content-area .area-title h5 strong {
  font-family: "Avenir Black", sans-serif;
  display: inline-block;
  color: inherit;
}

.content-area .area-text h1, .content-area .area-text h2, .content-area .area-text h3, .content-area .area-text h4, .content-area .area-text h5 {
  margin: 40px 0px 15px 0px;
}

.content-area .area-text h1:first-child, .content-area .area-text h2:first-child, .content-area .area-text h3:first-child, .content-area .area-text h4:first-child, .content-area .area-text h5:first-child {
  margin-top: 0px;
}

[data-type="junior"] .content-area .area-title h1, [data-type="junior"] .content-area .area-title h2, [data-type="junior"] .content-area .area-title h3, [data-type="junior"] .content-area .area-title h4, [data-type="junior"] .content-area .area-title h5 {
  color: #00b091;
}

@media only screen and (min-width: 990px) {
  .content-area {
    padding: 80px 0px;
  }
  .content-area.full-height {
    min-height: 100vh;
  }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .content-area.full-height {
    min-height: 0px;
  }
}

.filled {
  position: relative;
}

.filled:before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  z-index: 10;
  background: red;
}

#disclaimer .container-fluid {
  background: #000;
}

#msg-ie {
  display: none;
}

#head {
  background: #000;
  position: absolute;
  padding: 0px;
}

#head .logo img {
  margin-top: 10px;
  height: auto;
  max-height: 35px;
}

#head .nav-button .btn {
  background: transparent !important;
}

#head .navbar-nav {
  margin-top: 15px;
  margin-bottom: 0px;
}

#head .navbar-nav li a {
  padding: 5px 0px;
  color: #ffffff;
}

#head .navbar-nav li a:hover {
  color: #ffffff !important;
}

#head .navbar-nav li.active a {
  border-color: #ffffff;
}

#head .navbar-nav li.btn-club > a {
  padding: 5px 20px 5px 40px;
  background: #4d4d4d !important;
}

#head .navbar-nav li.btn-club > a i {
  left: 10px;
  font-size: 22px;
  color: #ffffff;
}

#head .navbar-nav li.btn-club > a[aria-expanded="true"] {
  border-radius: 15px 15px 0px 0px;
}

#head .navbar-nav li.btn-club .dropdown-menu {
  padding: 20px;
  background: #4d4d4d;
  border-top-color: #4d4d4d;
}

#head .navbar-nav li.btn-cart {
  font-size: 28px;
}

#head .navbar-nav li.btn-cart.filled:before {
  top: 2px;
  right: -5px;
}

#head .navbar-nav li.lang img {
  border-radius: 2px;
  height: 20px;
}

#head .head-msg {
  color: #ffffff;
  background: #00b091;
  text-align: center;
  padding: 3px 0px;
  font-size: 13px;
}

#head .head-msg p {
  margin: 0px;
}

#head .head-msg a {
  display: block;
  color: #ffffff;
  text-decoration: none;
}

.home #head {
  background: #000;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}

.scrolling #head,
.side-nav-open #head {
  background: #000;
}

.scrolling #head .logo,
.side-nav-open #head .logo {
  margin-top: -150px;
}

.scrolling #head .head-msg,
.side-nav-open #head .head-msg {
  display: none;
}

@media only screen and (max-width: 1199px) {
  #head .navbar-nav li {
    margin: 0px 5px;
  }
}

@media only screen and (max-width: 989px) {
  #head .navbar-nav {
    display: block;
    text-align: right;
  }
  #head .navbar-nav .lang,
  #head .navbar-nav .btn-club {
    display: none;
  }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  #head .navbar-nav {
    display: block;
    text-align: right;
  }
  #head .navbar-nav .lang,
  #head .navbar-nav .btn-club {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  #head .logo {
    margin: 0px 0px 10px 0px;
  }
  #head .nav-button .btn small {
    display: none;
  }
  #head .navbar-nav {
    margin-top: 5px;
    margin-right: -5px;
  }
}

#side-nav .nav-cart.filled:before {
  top: 8px;
  right: 5px;
}

#area-nav {
  display: none;
}

#main-content .btn {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

#main-content .btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.loading #main-content {
  opacity: 0.3;
}

.prod-frame-over {
  position: relative;
  display: inline-block;
  padding: 12.5%;
}

.prod-frame-over:after {
  content: '';
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 100% 100%;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

.prod-frame-over.p0:after {
  background-image: url("../images/img-frame-60.png");
}

.prod-frame-over.p1:after {
  background-image: url("../images/img-frame-100.png");
}

.prod-frame-over.p2:after {
  background-image: url("../images/img-frame-250.png");
}

#page {
  padding-top: 140px;
}

#page a {
  color: #000;
}

#page p a {
  text-decoration: underline;
}

#page p a:hover {
  text-decoration: none;
}

#page .form-tabs {
  margin: 40px auto -30px auto;
  max-width: 800px;
  text-align: center;
}

#page form {
  margin: 40px auto;
  padding: 20px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
}

#page form fieldset {
  margin-bottom: 20px;
}

#page form p {
  font-size: 0.8em;
}

#page form .highlight {
  background: rgba(237, 175, 0, 0.5);
  padding: 20px;
  overflow: hidden;
  position: relative;
}

#page form .highlight label {
  opacity: 1;
}

#page form .highlight p {
  margin-bottom: 5px;
  opacity: 0.5;
}

#page form .highlight .form-group {
  margin-bottom: 0px;
  position: relative;
  z-index: 10;
}

#page form .highlight .form-control {
  background: #fff;
}

#page form .highlight .btn {
  color: #fff;
  position: relative;
  z-index: 10;
  border-radius: 4px !important;
  height: 34px;
  line-height: 25px;
  margin-top: 45px;
}

#page form .highlight .icon {
  position: absolute;
  z-index: 1;
  text-align: center;
  font-size: 180px;
  opacity: 0.05;
  top: 50%;
  right: 5%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media only screen and (max-width: 989px) {
  #page form .highlight .btn {
    margin-top: 0px;
  }
}

#page .block-related {
  display: none;
}

#page .block-info {
  max-width: 450px;
  padding: 30px;
  margin: 0px auto 40px auto;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
}

#page .block-info h3 {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

#page .block-info .btn {
  padding: 10px;
}

#page .area-title,
#page .area-text {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (min-width: 1200px) {
  #page {
    background: url("../images/bg-dirty.jpg") no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
  }
}

@media only screen and (max-width: 767px) {
  #page {
    padding-top: 90px;
  }
}

#frm-login {
  max-width: 450px;
}

#frm-register,
#frm-delete,
#frm-billing {
  max-width: 800px;
  text-align: left;
}

#validate-promo .feedback {
  display: none;
}

#area-shipping {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
}

#area-shipping .price {
  font-size: 2em;
}

#area-shipping .price small {
  display: block;
}

#area-shipping .help-block {
  font-weight: bold;
  font-size: 0.8em;
  margin-top: 5px;
}

#area-shipping .help-block.not-free {
  display: block;
}

#area-shipping .help-block.free {
  color: #8cb63c;
  display: none;
}

#area-shipping .help-block.shipping-alert {
  color: red;
}

#area-shipping.compact {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0px;
  margin: 0px 0px 20px 0px;
}

#area-shipping.compact p {
  margin: 0px 0px 5px 0px !important;
}

#area-shipping.compact .price {
  font-size: 1.5em;
  line-height: 1;
}

#area-shipping.compact .form-group {
  margin: 0px 5px;
  display: inline-block;
  vertical-align: middle;
}

#area-shipping.compact .area-group {
  display: inline-block;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 10px;
}

#foot {
  background: #000;
  color: #ffffff;
  border: 0px;
  text-align: center;
  padding: 40px 0px;
}

#foot .text {
  margin: 10px 0px;
  max-width: none;
}

#foot .links {
  font-size: 11px;
  margin: 10px 0px;
}

#foot .links a {
  color: #ffffff;
}

#foot .foot-logo {
  text-align: left;
}

#foot .foot-logo img {
  vertical-align: top;
  width: 180px;
}

#foot .social {
  text-align: left;
}

#foot .social a {
  margin: 0px 2px;
  background: transparent !important;
  font-size: 20px;
  width: 26px;
  height: 26px;
  line-height: 26px;
}

#foot .lang-switch .lang .btn {
  padding: 5px;
  border: 0px !important;
  background: transparent !important;
}

#foot .lang-switch .lang img {
  border-radius: 2px;
}

.home #foot {
  position: relative;
  z-index: 50;
}

@media only screen and (max-width: 989px) {
  #foot {
    padding-bottom: 100px;
  }
  #foot .social,
  #foot .lang-switch,
  #foot .foot-logo,
  #foot .links {
    text-align: center !important;
  }
  #foot .text {
    max-width: 500px;
    margin: 10px auto;
  }
  #foot .foot-logo {
    margin: 20px 0px;
  }
  #foot .social {
    margin-bottom: 20px;
  }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  #foot {
    padding-bottom: 100px;
  }
  #foot .social,
  #foot .lang-switch,
  #foot .foot-logo,
  #foot .links {
    text-align: center !important;
  }
  #foot .text {
    max-width: 500px;
    margin: 10px auto;
  }
  #foot .foot-logo {
    margin: 20px 0px;
  }
  #foot .social {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 989px) {
  div[class*="col-md-"] {
    float: none;
    width: auto;
    margin: 0px;
  }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  div[class*="col-md-"] {
    float: none;
    width: auto;
    margin: 0px;
  }
}

#rotate {
  display: none;
  position: fixed;
  z-index: 1000000;
  background: #ffffff;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
}

#rotate i {
  text-align: center;
  font-size: 80px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  position: absolute;
  opacity: 0.3;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  #rotate {
    display: block;
  }
}

@media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
  #rotate {
    display: block;
  }
}

@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
  #rotate {
    display: block;
  }
}

@media screen and (device-width: 360px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape) {
  #rotate {
    display: block;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) and (orientation: landscape) {
  #rotate {
    display: block;
  }
}

.abcRioButton {
  width: 100% !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.abcRioButtonContents {
  text-transform: uppercase !important;
  font-family: "Avenir Black", sans-serif !important;
  letter-spacing: 2px !important;
  font-size: 1.2rem !important;
}

/*  

Description: MyFrameMeUP - Home Styles
Version: 1.0
Author: BeeSoft - Web & Mobile Solutions
Author URI: http://www.beesoft.it

*/
#main-content {
  font-family: "Avenir Medium", sans-serif;
}

#main-content .cover-slider .slide:before {
  display: none;
}

#main-content .cover-slider .slide .text {
  text-align: center;
  padding: 0px;
  bottom: auto;
  max-width: none;
  width: 80vh;
  top: calc(52% + 45px);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#main-content .cover-slider .slide .text h3 {
  text-shadow: none;
  margin-bottom: 1.5vh;
  font-size: 3.2vh;
}

#main-content .cover-slider .slide .text h3 a {
  color: #000;
}

#main-content .cover-slider .slide .text h3 strong {
  font-family: "Avenir Black", sans-serif;
}

#main-content .cover-slider .slide .text img {
  max-height: none;
  max-width: none;
  width: 40vh;
  height: 40vh;
}

#main-content .cover-slider .slide .text .fade-images {
  position: relative;
}

#main-content .cover-slider .slide .text .fade-images .gal {
  padding: 0px;
  margin: 0px;
}

#main-content .cover-slider .slide .text .prod-frame-over {
  padding: 10%;
}

#main-content .cover-slider .slide .text .bulb {
  color: #000;
  padding: 10px;
  text-align: center;
  position: absolute;
  z-index: 50;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 10vw;
  top: 6vh;
  right: -4vw;
  font-size: 1.2vw;
  line-height: 1.2;
}

#main-content .cover-slider .slide .text .bulb strong {
  display: block;
  font-family: "DK Cinnabar Brush", cursive, sans-serif;
  font-weight: normal;
  font-size: 4vw;
}

#main-content .cover-slider .slide .text .bulb:after {
  content: '';
  display: block;
  width: 5vw;
  height: 4vw;
  position: absolute;
  top: -2vw;
  right: -2vw;
  background-image: url("../images/title-accent4.gif");
  background-size: 100% 100%;
}

#main-content .cover-slider .slide .text .btn {
  font-size: 2vh;
}

@media only screen and (max-width: 989px) {
  #main-content .cover-slider .slide .text {
    top: auto;
    bottom: 0px;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
  }
  #main-content .cover-slider .slide .text img {
    width: 37vh;
    height: 37vh;
  }
  #main-content .cover-slider .slide .text .bulb {
    font-size: 1.3vh;
    right: 5vw;
    width: 12vh;
    height: 12vh;
  }
  #main-content .cover-slider .slide .text .bulb strong {
    font-size: 4vh;
  }
  #main-content .cover-slider .slide .text .bulb:after {
    top: 2vh;
    right: 0px;
  }
  #main-content .cover-slider.full-height .item {
    height: 100vh;
  }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  #main-content .cover-slider .slide .text {
    top: auto;
    bottom: 0px;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
  }
  #main-content .cover-slider .slide .text img {
    width: 37vh;
    height: 37vh;
  }
  #main-content .cover-slider .slide .text .bulb {
    font-size: 1.3vh;
    right: 5vw;
    width: 12vh;
    height: 12vh;
  }
  #main-content .cover-slider .slide .text .bulb strong {
    font-size: 4vh;
  }
  #main-content .cover-slider .slide .text .bulb:after {
    top: 2vh;
    right: 0px;
  }
  #main-content .cover-slider.full-height .item {
    height: 100vh;
  }
}

@media only screen and (max-width: 767px) {
  #main-content .cover-slider .slide .text {
    width: 100%;
  }
  #main-content .cover-slider .slide .text h3 {
    margin-top: 7vh;
  }
  #main-content .cover-slider .slide .text img {
    width: 32vh;
    height: 32vh;
  }
  #main-content .cover-slider .slide .text .bulb {
    top: auto !important;
    bottom: -9vh;
    left: 50%;
    right: auto;
    margin-left: -6vh;
  }
}

@-webkit-keyframes bgchange {
  0% {
    background-image: url("../images/img-frame-intro-junior1.png");
  }
  25% {
    background-image: url("../images/img-frame-intro-junior2.png");
  }
  50% {
    background-image: url("../images/img-frame-intro-junior3.png");
  }
  75% {
    background-image: url("../images/img-frame-intro-junior4.png");
  }
  100% {
    background-image: url("../images/img-frame-intro-junior1.png");
  }
}

@keyframes bgchange {
  0% {
    background-image: url("../images/img-frame-intro-junior1.png");
  }
  25% {
    background-image: url("../images/img-frame-intro-junior2.png");
  }
  50% {
    background-image: url("../images/img-frame-intro-junior3.png");
  }
  75% {
    background-image: url("../images/img-frame-intro-junior4.png");
  }
  100% {
    background-image: url("../images/img-frame-intro-junior1.png");
  }
}

#area-intro {
  position: relative;
  z-index: 50;
  padding: 0px;
}

#area-intro:before {
  content: '';
  position: absolute;
  z-index: -1000;
  width: 0px;
  height: 0px;
  overflow: hidden;
  background-image: url("../images/img-frame-intro-junior1.png"), url("../images/img-frame-intro-junior2.png"), url("../images/img-frame-intro-junior3.png"), url("../images/img-frame-intro-junior4.png");
}

#area-intro .bg {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  position: absolute;
  z-index: 1;
  top: 0px;
  bottom: 0px;
  -webkit-transition: 0.4s linear;
  transition: 0.4s linear;
}

#area-intro .bg[data-type="classic"] {
  left: 0px;
  right: 50%;
}

#area-intro .bg[data-type="junior"] {
  right: 0px;
  left: 50%;
}

#area-intro #logo-mfmu {
  text-align: center;
  position: absolute;
  z-index: 20;
  top: 10vh;
  left: -10vw;
  width: 13vw;
  max-width: 300px;
}

#area-intro #logo-mfmu img {
  width: 100%;
  height: auto;
}

#area-intro .info-block {
  text-align: center;
  position: absolute;
  z-index: 50;
  width: 15vw;
  top: 10vh;
  right: -9vw;
  font-size: 1.4vw;
}

#area-intro .info-block p {
  line-height: 1.2;
  margin: 0px;
}

#area-intro .info-block strong {
  font-family: "Avenir Black", sans-serif;
}

#area-intro .info-block .price {
  color: #00b091;
  font-family: "DK Cinnabar Brush", cursive, sans-serif;
  font-weight: normal;
  font-size: 5vw;
  position: relative;
}

#area-intro .info-block .price:after {
  content: '';
  display: block;
  width: 5vw;
  height: 4vw;
  position: absolute;
  top: -1.5vw;
  right: 0px;
  background-image: url("../images/price-accent.gif");
  background-size: 100% 100%;
}

#area-intro .info-block .btn {
  display: none;
}

#area-intro .bottom-link {
  margin-top: 3vh;
  opacity: 0;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

#area-intro .bottom-link a {
  display: inline-block;
  color: #000 !important;
  background: url("../images/bg-bottom-link.png") no-repeat center center;
  background-size: 100% 100%;
  width: 3vh;
  height: 2vh;
}

#area-intro .prod-frame-over:before, #area-intro .prod-frame-over:after {
  content: '';
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: auto 100%;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  -webkit-transition: 0.4s linear;
  transition: 0.4s linear;
}

#area-intro .prod-frame-over:before {
  background-image: url("../images/img-frame-intro-classic.png");
  background-position: top left;
  right: 50%;
}

#area-intro .prod-frame-over:after {
  background-image: url("../images/img-frame-intro-junior1.png");
  background-position: top right;
  left: 50%;
  -webkit-animation: bgchange 6s steps(1) infinite;
          animation: bgchange 6s steps(1) infinite;
}

#area-intro .btn-tgl-type {
  margin: 0px 20px;
}

#area-intro .callto-block {
  font-size: 1.4vw;
  margin-top: 2vh;
}

#area-intro .callto-block strong {
  font-family: "Avenir Black", sans-serif;
}

[data-type="classic"] #area-intro .callto-block .bottom-link,
[data-type="junior"] #area-intro .callto-block .bottom-link {
  opacity: 1;
  -webkit-animation: hit-down 1s infinite ease-in-out;
          animation: hit-down 1s infinite ease-in-out;
}

[data-type="classic"] #area-intro .callto-block .btn-tgl-type,
[data-type="junior"] #area-intro .callto-block .btn-tgl-type {
  opacity: 0.3;
}

[data-type="classic"] #area-intro .callto-block .btn-tgl-type.active,
[data-type="junior"] #area-intro .callto-block .btn-tgl-type.active {
  opacity: 1;
}

[data-type="classic"] #area-intro .bg[data-type="classic"],
[data-type="classic"] #area-intro .prod-frame-over:before {
  right: 0px;
}

[data-type="classic"] #area-intro .bg[data-type="junior"],
[data-type="classic"] #area-intro .prod-frame-over:after {
  left: 100%;
}

[data-type="classic"] #area-intro .info-block .btn[data-type="classic"] {
  display: inline-block;
}

[data-type="classic"] #area-intro .price {
  color: #000;
}

[data-type="junior"] #area-intro .bg[data-type="classic"],
[data-type="junior"] #area-intro .prod-frame-over:before {
  right: 100%;
}

[data-type="junior"] #area-intro .bg[data-type="junior"],
[data-type="junior"] #area-intro .prod-frame-over:after {
  left: 0px;
}

[data-type="junior"] #area-intro .info-block .btn[data-type="junior"] {
  display: inline-block;
}

@media only screen and (max-width: 989px) {
  #area-intro #logo-mfmu {
    width: auto;
    height: 10vh;
    top: -10vh;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  #area-intro #logo-mfmu img {
    width: auto;
    height: 100%;
  }
  #area-intro .info-block {
    margin-top: 3vh;
    font-size: 1.8vh;
    position: relative;
    width: auto;
    top: 0px;
    right: 0px;
  }
  #area-intro .info-block br {
    display: none;
  }
  #area-intro .info-block .price {
    display: inline-block;
  }
  #area-intro .info-block .price:after {
    right: -3vw;
  }
  #area-intro .info-block .btn {
    margin-top: 0px;
    position: absolute;
    top: -8vh;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  #area-intro .callto-block {
    margin-top: 0px;
    font-size: 1.8vh;
  }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  #area-intro #logo-mfmu {
    width: auto;
    height: 10vh;
    top: -10vh;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  #area-intro #logo-mfmu img {
    width: auto;
    height: 100%;
  }
  #area-intro .info-block {
    margin-top: 3vh;
    font-size: 1.8vh;
    position: relative;
    width: auto;
    top: 0px;
    right: 0px;
  }
  #area-intro .info-block br {
    display: none;
  }
  #area-intro .info-block .price {
    display: inline-block;
  }
  #area-intro .info-block .price:after {
    right: -3vw;
  }
  #area-intro .info-block .btn {
    margin-top: 0px;
    position: absolute;
    top: -8vh;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  #area-intro .callto-block {
    margin-top: 0px;
    font-size: 1.8vh;
  }
}

@media only screen and (max-width: 767px) {
  #area-intro #logo-mfmu {
    height: 13vh;
    top: -15vh;
  }
}

#area-about {
  position: relative;
  visibility: hidden;
  height: 0px;
  overflow: hidden;
}

#area-about.active {
  visibility: visible;
  overflow: visible;
  height: auto;
}

#area-about .bg {
  position: fixed;
  z-index: 1;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background: url("../images/bg-about-classic.jpg") no-repeat center top, url("../images/bg-about-junior.jpg") no-repeat center bottom;
  background-size: cover;
}

#area-about .content-area {
  position: relative;
  z-index: 50;
}

#area-about .container-fluid {
  width: 100%;
  padding: 0px;
}

#area-about .area-desc {
  text-align: center;
}

#area-about .area-icon {
  margin: 6vh 0px;
  height: 30vh;
}

#area-about .area-icon img {
  width: auto;
  height: 100%;
}

#area-about .area-text {
  font-size: 1.4em;
  width: 60%;
  max-width: 400px;
  margin: 20px auto;
}

#area-about .area-title {
  margin: 0px -15px;
}

#area-about .area-title h2 {
  color: #ffffff;
  position: relative;
  font-weight: normal;
  font-family: "DK Cinnabar Brush", cursive, sans-serif;
  font-size: 3.6em;
  margin-bottom: 0px;
  background-size: auto 100%;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 20px 0px;
}

[data-type="classic"] #area-about .bg {
  background: url("../images/bg-about-classic.jpg") no-repeat center top;
  background-size: cover;
}

[data-type="junior"] #area-about .bg {
  background: url("../images/bg-about-junior.jpg") no-repeat center bottom;
  background-size: cover;
}

@media only screen and (max-width: 989px) {
  #area-about.active {
    padding-top: 80vh;
    padding-bottom: 20px;
  }
  #area-about:before {
    background-position: -50vw 0px;
  }
  #area-about .content-area {
    background: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    width: 90%;
    padding: 20px 0px;
    margin: 0px auto 40px auto;
  }
  [data-type="classic"] #area-about .bg {
    background-position: 20% top;
  }
  [data-type="junior"] #area-about .bg {
    background-position: 10% bottom;
  }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  #area-about.active {
    padding-top: 80vh;
    padding-bottom: 20px;
  }
  #area-about:before {
    background-position: -50vw 0px;
  }
  #area-about .content-area {
    background: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    width: 90%;
    padding: 20px 0px;
    margin: 0px auto 40px auto;
  }
  [data-type="classic"] #area-about .bg {
    background-position: 20% top;
  }
  [data-type="junior"] #area-about .bg {
    background-position: 10% bottom;
  }
}

@media only screen and (max-width: 767px) {
  #area-about:before {
    background-position: -80vw 0px;
  }
  [data-type="classic"] #area-about .bg {
    background-position: 35% top;
  }
}

#area-about1 {
  background-size: 50% 100%;
}

#area-about1 .area-title h2 {
  background-image: url("../images/bg-title-about1.png");
  background-position: center left;
  background-size: 90% 100%;
}

#area-about2 {
  background-size: 50% 100%;
  position: relative;
}

#area-about2 .area-title h2 {
  background-image: url("../images/bg-title-about2.png");
}

#area-about2 #step-slider {
  margin: 0px auto;
  width: 60%;
}

#area-about2 #step-slider .slick-dots {
  bottom: 0px;
}

#area-about2 #step-slider .slick-dots li button:before {
  font-size: 20px;
  color: #000;
}

#area-about3 {
  background-size: 50% 100%;
}

#area-about3 .area-title h2 {
  background-image: url("../images/bg-title-about3.png");
  background-position: center right;
  background-size: 80% 100%;
}

#area-callto {
  background: url("../images/bg-dirty.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 50;
  display: none;
  min-height: calc(100vh - 200px);
}

#area-callto.active {
  display: block;
}

#area-callto .area-desc {
  margin-top: 3vh;
}

#area-callto .area-title h2 {
  font-weight: normal;
  font-family: "DK Cinnabar Brush", cursive, sans-serif;
  font-size: 3.5vw;
}

#area-callto .area-text strong {
  font-family: "Avenir Black", sans-serif;
}

#area-callto .btn {
  margin-top: 3vh;
  font-size: 1.5em;
  position: relative;
  z-index: 10;
  display: none;
}

#area-callto .pack {
  margin-top: 10%;
  margin-left: -45%;
  margin-top: 30%;
  width: 170%;
  max-width: none;
}

[data-type="classic"] #area-callto .btn[data-type="classic"] {
  display: inline-block;
}

[data-type="junior"] #area-callto .btn[data-type="junior"] {
  display: inline-block;
}

@media only screen and (min-width: 1850px) {
  #area-callto .container-fluid {
    max-width: 1600px;
  }
  #area-callto .area-title h2 {
    font-size: 60px;
  }
}

@media only screen and (min-width: 1200px) {
  #area-callto .area-text {
    padding-top: 3vh;
    max-width: 80%;
    font-size: 1.2em;
  }
}

@media only screen and (max-width: 989px) {
  #area-callto {
    text-align: center;
  }
  #area-callto .container-fluid {
    max-width: 90%;
  }
  #area-callto .area-title h2 {
    font-size: 30px;
  }
  #area-callto .area-text {
    margin: 20px auto;
    max-width: 500px;
  }
  #area-callto .pack {
    display: none;
  }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  #area-callto {
    text-align: center;
  }
  #area-callto .container-fluid {
    max-width: 90%;
  }
  #area-callto .area-title h2 {
    font-size: 30px;
  }
  #area-callto .area-text {
    margin: 20px auto;
    max-width: 500px;
  }
  #area-callto .pack {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  #area-callto .area-desc {
    margin: 0px;
  }
}

/*  

Description: MyFrameMeUP - Create Styles
Version: 1.0
Author: BeeSoft - Web & Mobile Solutions
Author URI: http://www.beesoft.it

*/
.prod-frame {
  position: relative;
  padding: 12.5%;
  display: block;
}

.prod-frame .slice {
  background-repeat: no-repeat;
  position: absolute;
  z-index: 10;
  display: block;
}

.prod-frame .slice.top {
  left: 15%;
  right: 15%;
  top: 0px;
  height: 15.58%;
  background-image: url("../images/img-frame-default.png");
  background-position: center top;
}

.prod-frame .slice.bottom {
  left: 15%;
  right: 15%;
  bottom: 0px;
  height: 15.58%;
  background-image: url("../images/img-frame-default.png");
  background-position: center bottom;
}

.prod-frame .slice.left {
  left: 0px;
  top: 0px;
  bottom: 0px;
  width: 15.1%;
  background-image: url("../images/img-frame-default.png");
  background-position: left center;
}

.prod-frame .slice.right {
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 15.1%;
  background-image: url("../images/img-frame-default.png");
  background-position: right center;
}

.prod-frame .slice.center {
  top: 15.58%;
  left: 15%;
  bottom: 15.58%;
  right: 15%;
}

.prod-frame .slice.center.p0 {
  background-image: url("../images/frame-slice_C_60.png");
}

.prod-frame .slice.center.p1 {
  background-image: url("../images/frame-slice_C_100.png");
}

.prod-frame .slice.center.p2 {
  background-image: url("../images/frame-slice_C_250.png");
}

.cropper-face {
  background-color: transparent;
}

#area-create {
  background: url("../images/bg-dirty.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  padding-top: 120px;
}

#area-create .container-fluid {
  margin: 0px auto;
  max-width: 1200px;
  position: relative;
  z-index: 10;
}

#area-create .area-title {
  margin-top: 4vh;
}

#area-create .area-title h2 {
  font-size: 36px;
}

#area-create .area-title h4 {
  font-size: 1.3em;
  margin-bottom: 10px;
}

#area-create .custom-step {
  position: relative;
  min-height: calc(100vh - 200px);
}

#area-create .custom-step .area-text {
  margin-bottom: 20px;
}

#area-create .step-list {
  vertical-align: middle;
  display: inline-block;
  margin-right: 20px;
}

#area-create .step-list .step-num {
  width: 40px;
  height: 40px;
  line-height: 40px;
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: 1.5em;
  font-family: "DK Cinnabar Brush", cursive, sans-serif;
  color: #4d4d4d;
  background: url("../images/bg-btn-circle-gray.png") no-repeat;
  background-size: 100% 100%;
}

#area-create .step-list .step-num:nth-child(4) {
  text-indent: -9000px;
}

#area-create .step-list .step-num:nth-child(4):after {
  content: '';
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  left: 50%;
  background: url("../images/num4.svg") no-repeat;
  background-size: 100% 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#area-create .step-list .step-num.done, #area-create .step-list .step-num.active {
  color: #ffffff;
}

#area-create .step-list .step-num.done:nth-child(4):after, #area-create .step-list .step-num.active:nth-child(4):after {
  background-image: url("../images/num4-active.svg");
}

[data-type="junior"] #area-create .step-list .step-num.done, [data-type="junior"] #area-create .step-list .step-num.active {
  background-image: url("../images/bg-btn-circle-junior.png");
}

[data-type="classic"] #area-create .step-list .step-num.done, [data-type="classic"] #area-create .step-list .step-num.active {
  background-image: url("../images/bg-btn-circle.png");
}

#area-create .limit-check,
#area-create .input-check {
  padding: 10px;
  margin: 20px 0px;
  font-size: 0.8em;
  background: #d22e26;
  color: #ffffff;
}

#area-create .frame-actions {
  position: absolute;
  width: 40px;
  top: 20px;
  left: -25px;
  text-align: center;
}

#area-create .frame-actions .btn {
  background-image: url("../images/bg-btn-circle.png") !important;
  height: 40px;
  width: 40px;
  padding: 10px;
  margin: 3px;
}

#area-create .frame-actions .btn i {
  margin: 0px;
  font-size: 16px;
}

[data-type="junior"] #area-create .frame-actions .btn {
  background-image: url("../images/bg-btn-circle-junior.png") !important;
}

#area-create .step-nav {
  text-align: right;
  position: absolute;
  z-index: 50;
  right: 0px;
  bottom: -60px;
}

#area-create .step-nav .btn {
  margin: 0px 5px;
  font-size: 1.1em;
}

#area-create .step-nav .btn img {
  width: 20px;
}

#area-create .step-nav .btn.btn-step-prev {
  background-image: url("../images/bg-btn-gray.png") !important;
  color: #4d4d4d;
}

#area-create .nav-tabs {
  margin-top: 4vh;
  margin-left: -60px;
  padding-left: 60px;
}

#area-create .nav-tabs li a {
  font-size: 26px;
}

#area-create .block-title {
  display: inline-block;
  font-family: "Avenir Black", sans-serif;
  margin-bottom: 10px;
  padding-bottom: 5px;
  background: url("../images/bg-underline.png") no-repeat bottom center;
  background-size: 100% auto;
}

#area-create .items-list {
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 15px;
  border-radius: 20px;
}

#area-create .items-list .list-cont {
  overflow-y: scroll;
  height: 30vh;
  max-height: 300px;
}

#area-create .items-list .item-img {
  width: 19%;
  margin: 4px 2px;
  cursor: pointer;
  display: block;
  float: left;
  background: rgba(241, 238, 229, 0.6);
}

#area-create .text-wrap {
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 10px 15px;
  border-radius: 20px;
  margin-top: 20px;
}

@media only screen and (min-width: 1200px) {
  #area-create {
    overflow: hidden;
  }
}

@media only screen and (min-width: 1440px) {
  #area-create .container-fluid {
    max-width: 1300px;
  }
}

@media only screen and (max-width: 1199px) {
  #area-create .container-fluid {
    max-width: 90%;
  }
  #area-create .nav-tabs li a {
    font-size: 20px;
  }
}

@media only screen and (max-width: 989px) {
  #area-create {
    padding-bottom: 100px;
  }
  #area-create + #foot {
    display: none;
  }
  #area-create .custom-step {
    text-align: center;
  }
  #area-create .nav-tabs {
    margin-left: 0px;
    padding-left: 0px;
  }
  #area-create .step-nav {
    -webkit-box-shadow: -5px 0px 20px 0px rgba(0, 0, 0, 0.1);
            box-shadow: -5px 0px 20px 0px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    position: fixed;
    z-index: 10000;
    padding: 5px;
    height: 60px;
    bottom: 0px;
    left: 0px;
    text-align: center;
  }
  #area-create .step-nav .btn {
    padding: 15px;
  }
  #area-create .step-nav .btn-step-prev {
    position: absolute;
    left: 0px;
  }
  #area-create .step-nav .btn-step-next {
    position: absolute;
    right: 0px;
  }
  #area-create .step-list {
    margin: 5px 0px;
  }
  #area-create .items-list .list-cont {
    height: auto;
    overflow-x: scroll;
    white-space: nowrap;
  }
  #area-create .items-list .item-img {
    float: none;
    display: inline-block;
    vertical-align: top;
    width: 28%;
  }
  #area-create .items-list .masonry {
    height: auto !important;
  }
  #area-create .items-list .masonry .item-img {
    position: static !important;
    width: auto;
  }
  #area-create .items-list .masonry .item-img img {
    height: 180px;
  }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  #area-create {
    padding-bottom: 100px;
  }
  #area-create + #foot {
    display: none;
  }
  #area-create .custom-step {
    text-align: center;
  }
  #area-create .nav-tabs {
    margin-left: 0px;
    padding-left: 0px;
  }
  #area-create .step-nav {
    -webkit-box-shadow: -5px 0px 20px 0px rgba(0, 0, 0, 0.1);
            box-shadow: -5px 0px 20px 0px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    position: fixed;
    z-index: 10000;
    padding: 5px;
    height: 60px;
    bottom: 0px;
    left: 0px;
    text-align: center;
  }
  #area-create .step-nav .btn {
    padding: 15px;
  }
  #area-create .step-nav .btn-step-prev {
    position: absolute;
    left: 0px;
  }
  #area-create .step-nav .btn-step-next {
    position: absolute;
    right: 0px;
  }
  #area-create .step-list {
    margin: 5px 0px;
  }
  #area-create .items-list .list-cont {
    height: auto;
    overflow-x: scroll;
    white-space: nowrap;
  }
  #area-create .items-list .item-img {
    float: none;
    display: inline-block;
    vertical-align: top;
    width: 28%;
  }
  #area-create .items-list .masonry {
    height: auto !important;
  }
  #area-create .items-list .masonry .item-img {
    position: static !important;
    width: auto;
  }
  #area-create .items-list .masonry .item-img img {
    height: 180px;
  }
}

@media only screen and (max-width: 767px) {
  #area-create {
    padding-top: 70px;
  }
  #area-create .container-fluid {
    max-width: none;
  }
  #area-create .tab-pane {
    padding: 0px;
  }
  #area-create .prod-frame {
    margin: -20px -15px 0px -15px;
  }
  #area-create .frame-actions {
    left: auto;
    right: 5px;
    top: 50px;
    z-index: 100;
  }
  #area-create .area-title {
    margin-top: 0px;
  }
  #area-create .area-title h2 {
    font-size: 22px;
  }
  #area-create #t1 .area-text:first-child, #area-create #t2 .area-text:first-child {
    display: none;
  }
  #area-create .nav-tabs {
    margin-top: 0px;
  }
  #area-create .nav-tabs li {
    margin: 0px;
    padding: 0px;
  }
  #area-create .nav-tabs li a {
    font-size: 14px;
  }
  #area-create .custom-step .block-title {
    display: none;
  }
  #area-create .items-list .masonry .item-img img {
    height: 80px;
  }
  #area-create .btn-list {
    margin: 0px;
  }
}

#s1 {
  text-align: center;
}

.gallery-list .item-img {
  padding: 3px;
}

.gallery-list .gallery-placeholder {
  margin: 40px 0px;
  text-align: center;
}

.gallery-list .gallery-placeholder .icon {
  margin-bottom: 20px;
  font-size: 80px;
  opacity: 0.1;
}

.gallery-list .gallery-placeholder .btn {
  max-width: 300px;
  margin: 0px auto;
}

#sticker-list .item-img {
  border-radius: 50%;
  padding: 20px;
}

@media only screen and (max-width: 989px) {
  #sticker-list.items-list .list-cont {
    height: auto;
  }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  #sticker-list.items-list .list-cont {
    height: auto;
  }
}

#crop-image {
  cursor: pointer;
}

#crop-area-frame {
  overflow: hidden;
}

#custom-text {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  font-size: 1.2em;
  padding: 20px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

#text-options {
  margin-bottom: 10px;
  padding: 5px;
  text-align: center;
}

#text-options .opt-group {
  vertical-align: top;
  margin: 0px 10px;
}

#text-options .opt-group > button {
  opacity: 0.3;
  vertical-align: top;
  width: 30px;
  height: 30px;
  line-height: 30px;
  padding: 0px;
  font-size: 16px;
}

#text-options .opt-group > button i {
  margin: 0px;
}

#text-options .opt-group > button.active {
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  #text-options .opt-group {
    margin: 0px;
  }
}

#text-color {
  border-radius: 500px;
  background: #ffffff;
  color: #000;
  height: 30px;
  width: 80px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 767px) {
  #text-color {
    width: 60px;
  }
}

#font-picker {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  width: 50%;
}

#font-picker .dropdown-button {
  color: #000 !important;
  background: #ffffff !important;
  height: 30px !important;
  border-radius: 500px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

#font-picker ul {
  background: #ffffff;
  z-index: 100;
}

@media only screen and (max-width: 767px) {
  #font-picker {
    width: 100px;
  }
}

.btn-list .image {
  display: block;
  margin-bottom: 10px;
  position: relative;
}

.btn-list .title {
  padding-bottom: 5px;
  display: inline-block;
  font-family: "Avenir Black", sans-serif;
}

.btn-list .title small {
  display: block;
  font-family: "Avenir Medium", sans-serif;
  font-size: 0.8em;
}

.btn-list .btn {
  letter-spacing: normal;
  text-transform: none;
  padding: 10px;
  margin: 10px;
  position: relative;
  float: none;
  width: 30%;
}

.btn-list .btn:hover {
  -webkit-transform: none !important;
          transform: none !important;
}

.btn-list .btn.active .image:after {
  content: '';
  display: block;
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 26%;
  height: 24%;
  max-width: 60px;
  max-height: 55px;
  background: url("../images/icon-check.png") no-repeat center center;
  background-size: 100% 100%;
}

.btn-list#frame-colors img {
  border-radius: 20px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 989px) {
  .btn-list .btn.active .image:after {
    right: -5px;
    bottom: -5px;
  }
  .btn-list#prod-vars .btn {
    width: 42%;
  }
  .btn-list#frame-colors .btn {
    margin: 0px;
    padding: 0px;
  }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .btn-list .btn.active .image:after {
    right: -5px;
    bottom: -5px;
  }
  .btn-list#prod-vars .btn {
    width: 42%;
  }
  .btn-list#frame-colors .btn {
    margin: 0px;
    padding: 0px;
  }
}

#prod-vars {
  margin: 20px 0px 40px;
  text-align: center;
}

#AddToCart {
  margin: 3vh 0px;
}

#AddToCart i {
  font-size: 26px;
  margin: -5px 0px;
}

@media only screen and (max-width: 989px) {
  #AddToCart {
    position: fixed;
    z-index: 100000;
    bottom: 5px;
    right: -20px;
    margin: 0;
  }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  #AddToCart {
    position: fixed;
    z-index: 100000;
    bottom: 5px;
    right: -20px;
    margin: 0;
  }
}

#progress-bar {
  position: fixed;
  z-index: 10000;
  bottom: -100px;
  opacity: 0;
  left: 50%;
  height: 5px;
  width: 200px;
  margin-left: -100px;
  background: rgba(0, 0, 0, 0.2);
  -webkit-transition: width 0.5s ease-out;
  transition: width 0.5s ease-out;
}

#progress-bar .bar {
  display: inline-block;
  height: 5px;
  width: 5px;
  background: #000;
  position: absolute;
  left: 0px;
  top: 0px;
}

#progress-bar .num {
  font-size: 10px;
  display: inline-block;
  position: absolute;
  right: 0px;
  top: 3px;
}

.uploading #progress-bar {
  opacity: 1;
  bottom: 35vh;
}

#prod-info {
  margin-top: 5vh;
  font-size: 1.4em;
}

#prod-info .prod-desc {
  margin-bottom: 40px;
}

#prod-info h4 {
  font-family: "Avenir Black", sans-serif;
  font-size: 1.2em;
  margin: 0px;
}

@media only screen and (max-width: 989px) {
  #prod-info {
    margin: 0px;
    margin-bottom: 10vh;
    padding: 40px;
  }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  #prod-info {
    margin: 0px;
    margin-bottom: 10vh;
    padding: 40px;
  }
}

/*  

Description: MyFrameMeUP - Cart Styles
Version: 1.0
Author: BeeSoft - Web & Mobile Solutions
Author URI: http://www.beesoft.it

*/
#area-cart {
  background: url("../images/bg-dirty.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  padding-top: 120px;
  min-height: calc(100vh - 200px);
}

#area-cart .container-fluid {
  margin: 0px auto;
  max-width: 1200px;
  position: relative;
  z-index: 10;
}

#area-cart .table thead {
  text-align: right;
}

#area-cart .table th {
  font-family: "Avenir Black", sans-serif;
}

#area-cart .table td, #area-cart .table th {
  font-size: 1.1em;
  border: 0px;
}

#area-cart .table tbody td {
  padding-top: 10px;
  padding-bottom: 20px;
}

#area-cart .table .cart-item-desc {
  font-size: 1.1em;
}

#area-cart .table .cart-item-image {
  max-width: 150px;
}

#area-cart .table .cart-item-qty {
  text-align: center;
  padding-top: 40px;
}

#area-cart .table .cart-item-qty .form-control {
  border-radius: 100px;
  width: 60px;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
}

#area-cart .table .cart-item-qty .btn {
  background-image: url("../images/bg-btn-circle.png") !important;
}

#area-cart .table .cart-item-qty .btn i {
  margin: 0px;
}

#area-cart .table .cart-item-price,
#area-cart .table .cart-item-tot {
  display: inline-block;
  padding-top: 20px;
  line-height: 35px;
  font-size: 1.1em;
}

#area-cart .btn-minus,
#area-cart .btn-plus {
  padding: 5px 10px;
}

#area-cart .cart-footer {
  text-align: right;
}

#area-cart .cart-footer .billing-info {
  text-align: left;
  padding: 20px;
}

#area-cart .cart-footer .billing-info .info-group {
  display: none;
  background: #ffffff;
  padding: 20px;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
}

#area-cart .cart-footer .cart-total {
  font-size: 1.1em;
}

#area-cart .cart-footer p {
  font-size: 0.9em;
  margin-bottom: 40px;
}

#area-cart .cart-footer p a {
  color: #000;
  text-decoration: underline;
}

#area-cart .cart-footer p a:hover {
  text-decoration: underline;
}

#area-cart .back-create {
  padding-top: 40px;
}

@media only screen and (min-width: 1200px) {
  #area-cart {
    /*
		background-attachment: fixed;
		overflow: hidden;
		
		&:before {
			content: '';
			display: block;
			background: url('../images/bg-dirty-frame.gif') no-repeat center center;
			background-size: 100% 100%;
			position: absolute;
			z-index: 1;
			left: 50%;
			bottom: 0px;
			width: 100%;
			height: calc(100% - 80px);
			max-width: 1500px;
			min-width: 1400px;
			@include translateX(-50%);
		}
		*/
  }
}

@media only screen and (min-width: 768px) {
  #area-cart .table td, #area-cart .table th {
    background: url("../images/bg-table-border.png") repeat-x bottom;
  }
}

@media only screen and (max-width: 767px) {
  #area-cart {
    padding-top: 70px;
  }
  #area-cart .area-title h2 {
    margin-bottom: 0px;
  }
  #area-cart .table th {
    display: none;
  }
  #area-cart .table td {
    border-bottom: 0px !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    text-align: center;
    display: block;
    width: 100%;
  }
  #area-cart .table tr {
    display: block;
    padding-bottom: 20px;
    margin-bottom: 20px;
    background: url("../images/bg-table-border.png") repeat-x bottom;
  }
  #area-cart .table .cart-item-image {
    max-width: 100%;
  }
  #area-cart .cart-footer {
    text-align: center;
  }
  #area-cart .cart-footer strong {
    display: block;
    margin-top: 10px;
  }
}

#msg-prods-limit {
  display: none;
  margin: 40px 0px;
}

#cart-empty {
  display: none;
}

#form-cart {
  max-width: 1200px;
  margin: 0px auto;
  display: none;
}

/*  

Description: MyFrameMeUP - Billing Styles
Version: 1.0
Author: BeeSoft - Web & Mobile Solutions
Author URI: http://www.beesoft.it

*/
#area-billing {
  background: url("../images/bg-dirty.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  padding-top: 120px;
  min-height: calc(100vh - 200px);
}

#area-billing .container-fluid {
  margin: 0px auto;
  max-width: 1200px;
  position: relative;
  z-index: 10;
}

@media only screen and (min-width: 1200px) {
  #area-billing {
    background-attachment: fixed;
    overflow: hidden;
    /*
		&:before {
			content: '';
			display: block;
			background: url('../images/bg-dirty-frame.gif') no-repeat center center;
			background-size: 100% 100%;
			position: absolute;
			z-index: 1;
			left: 50%;
			bottom: 0px;
			width: 100%;
			height: calc(100% - 80px);
			max-width: 1500px;
			min-width: 1400px;
			@include translateX(-50%);
		}
		*/
  }
}

@media only screen and (max-width: 767px) {
  #area-billing {
    padding-top: 70px;
  }
  #area-billing .area-title h2 {
    margin-bottom: 0px;
  }
}

/*  

Description: MyFrameMeUP - Orders Styles
Version: 1.0
Author: BeeSoft - Web & Mobile Solutions
Author URI: http://www.beesoft.it

*/
#order-area {
  background: #ffffff;
  padding: 20px;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
}

#page .link-back {
  margin-bottom: 20px;
}

#page .top-status {
  margin-bottom: 40px;
}

#page .label {
  text-transform: uppercase;
}
/*# sourceMappingURL=myframemeup.css.map */