@charset "UTF-8";
html, body, div, span,
h1, h2, h3, h4, h5, h6, p, blockquote,
a, address,
em, img,
strike, strong,
ol, ul, li,
fieldset, form, label, legend,
article, aside,
figure, figcaption, footer, header,
menu, nav, output, section,
audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, figcaption, figure,
footer, header, menu, nav, section {
  display: block;
}

label {
  color: #C59100;
  font-size: 1.3rem;
}

input {
  cursor: pointer;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Panton-Regular", sans-serif;
  color: #000;
}

@font-face {
  font-family: Panton-BlackCaps;
  src: url(../font/Panton-BlackCaps.otf);
}

@font-face {
  font-family: Panton-Regular;
  src: url(../font/Panton-Regular.otf);
}

@font-face {
  font-family: Panton-Black;
  src: url(../font/Panton-Black.otf);
}

@font-face {
  font-family: Panton-Light;
  src: url(../font/Panton-Light.otf);
}

@font-face {
  font-family: Panton-Bold;
  src: url(../font/Panton-Bold.otf);
}

@font-face {
  font-family: Panton-ExtraLight;
  src: url(../font/Panton-ExtraLight.otf);
}

@font-face {
  font-family: Panton-LightCaps;
  src: url(../font/Panton-LightCaps.otf);
}

@font-face {
  font-family: Panton-LightitalicCaps;
  src: url(../font/Panton-LightitalicCaps.otf);
}

@font-face {
  font-family: Panton-LightitalicCaps;
  src: url(../font/Panton-ExtraLight.otf);
}

@font-face {
  font-family: Panton-BoldItalic;
  src: url(../font/Panton-BoldItalic.otf);
}

@font-face {
  font-family: Panton-BlackitalicCaps;
  src: url(../font/Panton-BlackitalicCaps.otf);
}

@font-face {
  font-family: Roboto-Black;
  src: url(../font/Roboto-Black.ttf);
}

@font-face {
  font-family: Roboto-Light;
  src: url(../font/Roboto-Light.ttf);
}

@font-face {
  font-family: Roboto-MediumItalic;
  src: url(../font/Roboto-MediumItalic.ttf);
}

@font-face {
  font-family: KaushanScript-Regular;
  src: url(../font/KaushanScript-Regular.ttf);
}

.wrapper {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

.wrapper1500 {
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
}

@media screen and (max-width: 1500px) {
  .wrapper1500 {
    max-width: 1200px;
  }
}

@media screen and (max-width: 1200px) {
  .padding {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 900px) {
  .mix:last-child {
    margin-right: 51% !important;
  }
}

.header {
  width: 100%;
  display: -webkit-box;
  display: flex;
  padding: 30px 60px;
  z-index: 99999999999;
  position: fixed;
  background-color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  height: 150px;
}

.header__logo {
  width: 15%;
}

.header__logo img {
  max-width: 220px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header__nav {
  width: 80%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  padding-right: 50px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header__nav ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  width: 100%;
  /*li:hover a {
        transition: all .5s;
        color: $gold;
      }
      li:hover a:after {
        width: 100%;
        background: $gold;
      }*/
}

.header__nav ul li a {
  text-decoration: none;
  font-size: 2.9rem;
  color: #000;
  padding: 15px 0;
  position: relative;
}

.header__nav ul li a:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 5px;
  height: 3px;
  width: 0;
  background: transparent;
  -webkit-transition: width .5s ease, background-color .5s ease;
  transition: width .5s ease, background-color .5s ease;
}

.header__nav ul li a.underline-active {
  color: #C59100;
}

.header__nav ul li a.underline-active:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 5px;
  height: 3px;
  width: 100%;
  background: #C59100;
  -webkit-transition: width .5s ease, background-color .5s ease;
  transition: width .5s ease, background-color .5s ease;
}

.header__bracket {
  width: 5%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
          align-items: center;
}

.header__bracket a {
  display: block;
  position: relative;
}

.header__bracket-counter {
  position: absolute;
  height: 25px;
  width: 25px;
  background-color: #C59100;
  border-radius: 100%;
  top: 30px;
  left: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__bracket-counter p {
  color: #fff;
  font-family: "Panton-Bold", sans-serif;
/*  position: absolute;
  top: 6px;
  left: 8px;*/
  font-size: 1.6rem;
}

.current-active2 {
  color: #C59100 !important;
}

.current-active2:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 5px;
  height: 3px;
  width: 100% !important;
  background: #C59100 !important;
  -webkit-transition: width .5s ease, background-color .5s ease;
  transition: width .5s ease, background-color .5s ease;
}

.header.header-fixed {
  height: 90px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.header.header-fixed .header__logo img {
  max-width: 180px;
}

.hamburger-container {
  display: none;
}

.menu-button {
  border: 4px solid #000;
  width: 60px;
  height: 58px;
  border-radius: 50px;
}

.menu-button-bar1, .menu-button-bar2, .menu-button-bar3 {
  position: relative;
  top: 11px;
  left: 5px;
  border-radius: 0px;
  display: block;
  background-color: #000;
  width: 30px;
  height: 3px;
  margin: 5px;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.animate1 {
  -webkit-transition: 0.25s;
  transition: 0.25s;
  -webkit-transform: translate(0px, 8px) rotate(45deg);
          transform: translate(0px, 8px) rotate(45deg);
}

.animate2 {
  -webkit-transition: 0.25s;
  transition: 0.25s;
  opacity: 0;
}

.animate3 {
  -webkit-transition: 0.25s;
  transition: 0.25s;
  -webkit-transform: translate(0px, -8px) rotate(-45deg);
          transform: translate(0px, -8px) rotate(-45deg);
}

@media screen and (max-width: 1700px) {
  .header {
    padding: 30px 30px;
  }
  .header__nav {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 1550px) {
  .header__logo img {
    max-width: 170px;
  }
  .header__nav ul li a {
    font-size: 2.4rem;
  }
  .header__bracket a img {
    max-width: 55px;
  }
  .header__bracket a img {
    max-width: 40px;
  }
  .header__bracket-counter {
    width: 20px;
    height: 20px;
    top: 25px;
    left: 30px;
  }
  .header {
    height: 130px;
  }
  .header__bracket-counter p {
    font-size: 1.4rem;
   /* top: 4px;
    left: 6px;*/
  }
  .header.header-fixed {
    height: 70px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .header.header-fixed .header__logo img {
    max-width: 130px;
  }
  .header__nav {
    padding-left: 0px;
  }
}

@media screen and (max-width: 1300px) {
  .header__logo img {
    max-width: 150px;
  }
  .header__nav ul li a {
    font-size: 2rem;
  }
  .header__bracket a img {
    max-width: 45px;
  }
  .header__bracket-counter {
    top: 20px;
    left: 20px;
    height: 20px;
    width: 20px;
  }
  .header__bracket-counter p {
 /*   top: 4px;
    left: 6px;*/
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 1050px) {
  .header__nav {
    display: none;
  }
  .hamburger-container {
    width: 20%;
    -webkit-box-ordinal-group: 2;
            order: 1;
    display: block;
  }
  .header__logo {
    -webkit-box-ordinal-group: 3;
            order: 2;
    width: 60%;
    text-align: center;
    margin-right: 80px;
  }
  .header__bracket {
    -webkit-box-ordinal-group: 4;
            order: 3;
    width: 20%;
  }
  .header.header-active {
  /*  flex-wrap: wrap;*/
  }
  .header.header-active .header__nav {
    display: block;
    -webkit-box-ordinal-group: 5;
            order: 4;
    margin: 0 auto;
    flex-wrap: wrap;
    position: absolute;
    width: 100%;
    top: 100px;
    left: 0;
    z-index: 10;
    background-color: #fff;
    padding-top: 10px;
  }
  .header.header-active.header-fixed .header__nav {
    top: 70px;
  }
  .header.header-active .header__nav ul {
    display: block;
    padding-bottom: 30px;
    width: 100%;
  }
  .header.header-active .header__nav li {
    text-align: center;
    padding: 10px 0;
  }
  .header {
    height: 120px;
  }
  .header__nav ul li a.underline-active:after {
    width: 0px;
  }
}

@media screen and (max-width: 500px) {
  .header {
    padding-left: 15px;
    padding-right: 15px;
  }
  .header__logo img {
    max-width: 130px;
  }
  .header__bracket a img {
    max-width: 40px;
  }
  .header.header-active .header__nav {
    padding-top: 10px;
    position: absolute;
    top: 114px;
  }
  .header__logo {
    margin-right: 0px;
  }
}

.footer {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 40px 0;
  border-top: 1px solid black;
}

.footer-nav {
  width: 85%;
}

.footer-nav ul {
  display: -webkit-box;
  display: flex;
}

.footer-nav ul li {
  padding-right: 50px;
}

.footer-nav ul li a {
  text-decoration: none;
  color: #000;
  font-size: 2.4rem;
}

.footer-nav ul li a:hover {
  color: #C59100;
}

.footer-social {
  width: 15%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
          justify-content: flex-end;
}

.footer-social li {
  padding-right: 20px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.footer-social li:last-of-type {
  padding-right: 0px;
}

.footer-wds {
  width: 100%;
  text-align: center;
  padding-top: 50px;
  font-size: 1.9rem;
}

.footer-logo:hover {
  fill: #C59100;
}

@media screen and (max-width: 1500px) {
  .footer-nav ul li a {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 1200px) {
  .footer-nav ul li a {
    font-size: 1.8rem;
  }
  .footer {
    padding: 40px 20px;
  }
  .footer-wds {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 1100px) {
  .footer-nav {
    width: 100%;
  }
  .footer-nav ul {
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  .footer-nav ul li {
    padding: 0;
  }
  .footer-social {
    width: 100%;
    -webkit-box-pack: center;
            justify-content: center;
    padding-top: 20px;
  }
}

@media screen and (max-width: 700px) {
  .footer-nav {
    width: 100%;
  }
  .footer-nav ul {
    -webkit-box-pack: center;
            justify-content: center;
    text-align: center;
    flex-wrap: wrap;
  }
  .footer-nav ul li {
    width: 33.33%;
  }
  .footer-nav ul li:first-of-type {
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 500px) {
  .footer-nav {
    width: 100%;
  }
  .footer-nav ul {
    -webkit-box-pack: center;
            justify-content: center;
    text-align: center;
    flex-wrap: wrap;
  }
  .footer-nav ul li {
    width: 100%;
    padding-bottom: 10px;
  }
}

.contact-form {
  width: 100%;
  display: -webkit-box;
  display: flex;
  position: relative;
  padding-top: 50px;
  margin-top: 150px;
}

.contact-form__info {
  width: 25%;
  background-color: #F4F4F4;
  margin-right: 20px;
  min-height: 474px;
}

.contact-form__info h2 {
  font-family: "Panton-Bold", sans-serif;
  font-size: 2.8rem;
  padding: 30px 30px 30px 40px;
}

.contact-form__info address {
  font-family: "Panton-Bold", sans-serif;
  font-size: 2.1rem;
  padding: 5px 0;
  padding-left: 80px;
  background-image: url(../images/contact-sign1.png);
  background-repeat: no-repeat;
  background-position: 35px 50%;
  line-height: 1.3;
}

.contact-form__info p {
  font-size: 1.7rem;
  padding-left: 80px;
  background-image: url(../images/contact-sign2.png);
  background-repeat: no-repeat;
  background-position: 33px 100%;
  margin-bottom: 15px;
  line-height: 20px;
}

.contact-form__info a {
  display: block;
  text-decoration: none;
  color: #000;
  font-size: 1.6rem;
  padding-left: 80px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.contact-form__info a:nth-of-type(2), .contact-form__info a:nth-of-type(4) {
  margin-bottom: 40px;
}

.contact-form__info a:nth-of-type(1), .contact-form__info a:nth-of-type(3) {
  background-image: url(../images/contact-sign3.png);
  background-repeat: no-repeat;
  background-position: 37px 50%;
  font-size: 2rem;
}

.contact-form__info a:nth-of-type(2), .contact-form__info a:nth-of-type(4) {
  background-image: url(../images/contact-sign4.png);
  background-repeat: no-repeat;
  background-position: 33px 50%;
  font-size: 2rem;
}

.contact-form__info-base {
  width: 370px;
  height: 30px;
  background-color: #C59100;
  position: absolute;
  bottom: 0;
}

.contact-form__form {
  width: 75%;
  position: relative;
  min-height: 474px;
  z-index: 2;
  background: #fff;
}

.contact-form__form-header {
  border: 2px solid #1D1D1B;
  width: 50%;
  position: relative;
  font-family: "Panton-Bold", sans-serif;
  font-size: 2.8rem;
  text-align: center;
  padding: 20px;
  min-height: 74px;
}

.contact-form__form-header:after {
  content: "";
  height: 6px;
  width: 100%;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 69px;
}

.form1 {
  border: 2px solid #1D1D1B;
  padding: 20px;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: end;
          justify-content: flex-end;
  min-height: 400px;
}

.form1__name, .form1__company, .form1__tel {
  margin-right: 1%;
}

.form1__name, .form1__surname, .form1__company, .form1__email, .form1__tel {
/*  width: 49.5%;*/
  margin-bottom: 10px;
}

.form1__code {
  width: 29.5%;
  margin-bottom: 10px;
  margin-right: 1%;
}

.form1__image {
  width: 19%;
  margin-bottom: 10px;
  background-color: #808080;
  color: #fff;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  font-size: 1.7rem;
  height: 40px;
  margin-right: 0.5%;
}

.form1__area {
  width: 100%;
  margin-bottom: 10px;
}

.form1 input, .form1 textarea {
  padding: 10px;
  font-size: 1.4rem;
  color: #706F6F;
  font-family: "Panton-Regular", sans-serif;
  border: none;
  border: 1px solid #1D1D1B;
  outline: none;
  height: 40px;
}

.form1 input:hover, .form1 input:focus {
  border: 1px solid #C59100;
  box-shadow: 0 0 0 1px #C59100;
}

.form1 textarea:hover, .form1 textarea:focus {
  border: 1px solid #C59100;
  box-shadow: 0 0 0 1px #C59100;
}

.form1 textarea {
  height: 154px;
}

.form1 input::-webkit-input-placeholder, .form1 textarea::-webkit-input-placeholder {
  color: #706F6F;
  font-size: 1.4rem;
  font-family: "Panton-Regular", sans-serif;
  opacity: 1;
}

.form1 input:-ms-input-placeholder, .form1 textarea:-ms-input-placeholder {
  color: #706F6F;
  font-size: 1.4rem;
  font-family: "Panton-Regular", sans-serif;
  opacity: 1;
}

.form1 input::placeholder, .form1 textarea::placeholder {
  color: #706F6F;
  font-size: 1.4rem;
  font-family: "Panton-Regular", sans-serif;
  opacity: 1;
}

.inputfile:focus + label, .inputfile + label:hover {
  border: 1px solid #C59100 !important;
  box-shadow: 0 0 0 1px #C59100 !important;
}

.inputfile:focus + label, .inputfile + label:hover {
  border: 1px solid #C59100 !important;
  box-shadow: 0 0 0 1px #C59100 !important;
}

.form1 input[type="submit"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: none;
  background-color: black;
  color: white;
  padding: 10px 30px 10px 20px;
  background-image: url(../images/contact-arrow.svg);
  background-repeat: no-repeat;
  background-position: right 10px bottom 50%;
  font-size: 1.4rem;
  text-align: left;
  cursor: pointer;
}

@media screen and (max-width: 1550px) {
  .contact-form {
    margin-top: 130px;
  }
}

@media screen and (max-width: 1500px) {
  .contact-form__info-base {
    width: 354px;
  }
  .contact-form__info {
    width: 30%;
  }
  .contact-form__form {
    width: 70%;
  }
  .contact-form__info h2 {
    font-size: 2.2rem;
  }
  .contact-form__info address {
    font-size: 1.8rem;
  }
  .contact-form__info p, .contact-form__info a {
    font-size: 1.6rem;
  }
  .contact-form__info p {
    font-size: 2rem;
  }
  .contact-form__form-header {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 1200px) {
  .contact-form__info-base {
    width: 28.4%;
  }
}

@media screen and (max-width: 1100px) {
  .contact-form {
    flex-wrap: wrap;
    padding-top: 20px;
  }
  .contact-form__info {
    width: 100%;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    z-index: 2;
    margin: 0;
    min-height: auto;
    margin-bottom: 30px;
  }
  .contact-form__info h2 {
    width: 100%;
  }
  .contact-form__info-wrapper1, .contact-form__info-wrapper2 {
    width: 50%;
  }
  .contact-form__form {
    width: 100%;
  }
  .contact-form {
    padding: 0;
  }
  .contact-form__form {
    padding: 0 20px;
  }
}

@media screen and (max-width: 1050px) {
  .contact-form {
    margin-top: 100px;
  }
}

@media screen and (max-width: 800px) {
  .form1__name, .form1__company {
    margin-right: 1.5%;
  }
  .form1__name, .form1__surname, .form1__company, .form1__email, .form1__tel {
    /*width: 49.25%;*/
  }
  .form1__code {
    width: 30%;
    margin-right: 1.5%;
  }
  .form1__image {
    width: 17.75%;
  }
  .form1__tel {
    margin-right: 2%;
    margin-left: -0.5%;
  }
}

@media screen and (max-width: 700px) {
  .contact-form {
    padding: 0;
  }
  .contact-form__info h2 {
    text-align: center;
  }
  .contact-form__info-wrapper1, .contact-form__info-wrapper2 {
    width: 100%;
  }
  .contact-form__info-wrapper1 address, .contact-form__info-wrapper1 p, .contact-form__info-wrapper1 a, .contact-form__info-wrapper2 address, .contact-form__info-wrapper2 p, .contact-form__info-wrapper2 a {
    width: 300px;
    margin: 5px auto;
  }
}

@media screen and (max-width: 560px) {
  .form1__name, .form1__company, .form1__tel {
    margin-right: 0%;
  }
  .form1__name, .form1__surname, .form1__company, .form1__email, .form1__tel {
    width: 100%;
  }
  .form1__code {
    width: 67%;
    margin-right: 2.5%;
  }
  .form1__image {
    width: 30%;
  }
  .contact-form__form-header {
    width: 100%;
  }
  .form1 textarea {
    height: 100px;
  }
  .form1__tel {
    margin-left: 0%;
  }
}

@media screen and (max-width: 400px) {
  .contact-form__info h2 {
    text-align: center;
  }
  .contact-form__info-wrapper1, .contact-form__info-wrapper2 {
    width: 100%;
  }
  .contact-form__info-wrapper1 address, .contact-form__info-wrapper1 p, .contact-form__info-wrapper1 a, .contact-form__info-wrapper2 address, .contact-form__info-wrapper2 p, .contact-form__info-wrapper2 a {
    padding-left: 50px;
  }
  .contact-form__info-wrapper1 h2, .contact-form__info-wrapper2 h2 {
    padding: 30px 30px 30px 40px;
  }
  .contact-form__info-wrapper1 address, .contact-form__info-wrapper2 address {
    background-position: 13px 50%;
  }
  .contact-form__info-wrapper1 p, .contact-form__info-wrapper2 p {
    background-position: 11px 100%;
  }
  .contact-form__info-wrapper1 a:nth-of-type(1), .contact-form__info-wrapper1 a:nth-of-type(3), .contact-form__info-wrapper2 a:nth-of-type(1), .contact-form__info-wrapper2 a:nth-of-type(3) {
    background-position: 15px 50%;
  }
  .contact-form__info-wrapper1 a:nth-of-type(2), .contact-form__info-wrapper1 a:nth-of-type(4), .contact-form__info-wrapper2 a:nth-of-type(2), .contact-form__info-wrapper2 a:nth-of-type(4) {
    background-position: 11px 50%;
  }
}

.contact-localization h2 {
  font-family: "Panton-Bold", sans-serif;
  font-size: 15rem;
  color: #E6E6E6;
  padding: 30px 0 30px;
  position: relative;
}

.contact-localization figure {
  position: absolute;
  top: 590px;
  right: 0px;
  z-index: 1;
  overflow: hidden;
  width: 600px;
  height: 360px;
}

.contact-localization figure img {
  position: absolute;
  right: -50px;
}

.contact-localization__map {
  height: 500px;
  width: 100%;
  z-index: 2;
  margin-bottom: 50px;
}

@media screen and (max-width: 1500px) {
  .contact-localization h2 {
    font-size: 10rem;
  }
  .contact-localization figure {
    top: 570px;
    width: 400px;
    height: 260px;
  }
  .contact-localization figure img {
    right: -100px;
  }
}

@media screen and (max-width: 1300px) {
  .contact-localization figure img {
    right: -150px;
  }
}

@media screen and (max-width: 1100px) {
  .contact-localization figure {
    top: 780px;
  }
  .contact-localization figure img {
    right: -150px;
  }
}

@media screen and (max-width: 1050px) {
  .contact-localization h2 {
    padding: 30px 20px;
  }
  .contact-localization figure {
    top: 950px;
    display: none;
  }
  .contact-localization figure img {
    right: -150px;
  }
  .contact-localization__map {
    height: 400px;
  }
}

@media screen and (max-width: 600px) {
  .contact-localization h2 {
    font-size: 5rem;
  }
  .contact-localization__map {
    height: 350px;
  }
}

.subgallery-others {
  width: 100%;
}

.subgallery-others__heading {
  font-family: "Panton-Bold", sans-serif;
  font-size: 3rem;
  padding-bottom: 20px;
  position: relative;
}

.subgallery-others__heading:after {
  content: "";
  height: 1px;
  width: 14%;
  background: #1D1D1B;
  position: absolute;
  top: 50px;
  left: 0;
}

.subgallery-slider-bottom-container {
  margin: 40px 0;
}

.subgallery-slider-bottom__slide {
  height: 200px;
  width: 20%;
  background-size: cover;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
          align-items: flex-end;
  text-decoration: none;
  background-position: center;
}

.subgallery-slider-bottom__slide:hover .subgallery-slider-bottom__slide-overlay {
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
          align-items: flex-end;
}

.subgallery-slider-bottom__slide-overlay {
  background: rgba(197, 145, 0, 0.58);
  width: 100%;
}

.subgallery-slider-bottom__slide-overlay h2 {
  font-family: "Panton-BlackCaps", sans-serif;
  color: white;
  padding: 20px;
}

.subgallery-slider-bottom__slide1 {
  background-image: url(../images/subgallery-bottom1.jpg);
}

.subgallery-slider-bottom__slide2 {
  background-image: url(../images/subgallery-bottom2.jpg);
}

.subgallery-slider-bottom__slide3 {
  background-image: url(../images/subgallery-bottom3.jpg);
}

.subgallery-slider-bottom__slide4 {
  background-image: url(../images/subgallery-bottom4.jpg);
}

.subgallery-slider-bottom__slide5 {
  background-image: url(../images/subgallery-bottom5.jpg);
}

.subgallery-slider-bottom__slide6 {
  background-image: url(../images/subgallery-bottom4.jpg);
}

.subgallery-slider-bottom-container.swiper-container {
  width: 100%;
  height: 200px;
}

.subgallery-slider-bottom-container .swiper-button-next, .subgallery-slider-bottom-container .swiper-button-prev {
  height: 100%;
  top: 0;
  width: 50px;
  margin-top: 0;
  background-color: rgba(197, 145, 0, 0.89);
}

.subgallery-slider-bottom-container .swiper-button-next {
  right: 0;
  background-image: url(../images/subgallery-bottom-arrow-right.png);
  background-size: 25px 40px;
}

.subgallery-slider-bottom-container .swiper-button-prev {
  left: 0;
  background-image: url(../images/subgallery-bottom-arrow-left.png);
  background-size: 25px 40px;
}

@media screen and (max-width: 1599px) {
  .subgallery-others {
    max-width: 1200px;
  }
  .subgallery-slider-bottom-container.swiper-container {
    width: 100%;
    height: 180px;
  }
  .subgallery-others__heading {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 1200px) {
  .subgallery-others {
    padding: 0 20px;
  }
}

@media screen and (max-width: 1000px) {
  .subgallery-others__heading:after {
    width: 30%;
  }
  .subgallery-slider-bottom__slide-overlay h2 {
    text-align: center;
  }
}

@media screen and (max-width: 700px) {
  .subgallery-others__heading {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 500px) {
  .subgallery-others__heading:after {
    width: 40%;
  }
}

.subgallery-slider-main {
  max-width: 1920px;
}

.subgallery-slider-main__slide {
  display: -webkit-box;
  display: flex;
}

.subgallery-slider-main__slide-picture {
  box-sizing: content-box;
  width: 100%;
  margin-left: 50px;
  background-image: url(../images/galler2-main1.jpg);
  background-size: cover;
  background-position: 50% 50%;
}

.subgallery-slider-main__description {
  width: 22%;
  margin-left: 3%;
  margin-top: 50px;
}

.subgallery-slider-main__description h2 {
  font-size: 4.8rem;
  font-family: "Panton-Bold", sans-serif;
  padding-bottom: 35px;
  border-bottom: 1px solid black;
}

.subgallery-slider-main__description p {
  text-align: justify;
  font-family: "Panton-Regular", sans-serif;
  padding: 25px 0;
  font-size: 2rem;
}

.subgallery-whole {
  margin-top: 150px;
  max-width: 1550px;
  display: -webkit-box;
  display: flex;
  position: relative;
}

.subgallery-2 {
  display: -webkit-box;
  display: flex;
  position: relative;
  left: -25px;
  width: inherit;
}

.subgallery-slider-main-wrapper {
  margin: 50px 0;
  width: 70%;
}

.subgallery-slider-main-wrapper.swiper-container {
  width: 100%;
  height: 700px;
}

.subgallery-slider-main-wrapper.swiper-container-vertical > .swiper-pagination-bullets {
  left: 0px;
}

.subgallery-slider-main-wrapper .swiper-pagination-bullet-active {
  height: 20px;
  width: 20px;
  background: #C59100 !important;
  border: 5px solid #C59100 !important;
  opacity: 1;
}

.subgallery-slider-main-wrapper .swiper-pagination-bullet {
  height: 20px;
  width: 20px;
  border: 4px solid #fff;
  opacity: 1;
}

@media screen and (max-width: 1599px) {
  .subgallery-whole {
    max-width: 1250px;
  }
  .subgallery-slider-main-wrapper.swiper-container {
    height: 500px;
  }
  .subgallery-slider-main__description {
    width: 30%;
  }
  .subgallery-slider-main-wrapper {
    width: 70%;
  }
  .subgallery-slider-main__description h2 {
    font-family: "Panton-Bold", sans-serif;
    font-size: 3.5rem;
  }
  .subgallery-slider-main__description p {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 1550px) {
  .subgallery-whole {
    margin-top: 130px;
  }
}

@media screen and (max-width: 1350px) {
  .subgallery-whole {
    max-width: 1200px;
    display: -webkit-box;
    display: flex;
    position: relative;
  }
  .subgallery-2 {
    display: -webkit-box;
    display: flex;
    position: relative;
    left: 0px;
    width: inherit;
  }
  .subgallery-whole {
    max-width: 1200px;
  }
  .subgallery-slider-main__slide-picture {
    margin-left: 0;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 1200px) {
  .subgallery-whole {
    padding: 0 20px;
  }
}

@media screen and (max-width: 1050px) {
  .subgallery-whole {
    margin-top: 100px;
  }
}

@media screen and (max-width: 1000px) {
  .subgallery-slider-main__description {
    width: 40%;
  }
  .subgallery-slider-main-wrapper {
    width: 60%;
  }
}

@media screen and (max-width: 1000px) {
  .subgallery-slider-main__description h2 {
    padding-bottom: 20px;
  }
  .subgallery-slider-main__description p {
    padding: 15px 0;
  }
}

@media screen and (max-width: 700px) {
  .subgallery-slider-main__description {
    width: 100%;
    -webkit-box-ordinal-group: 2;
            order: 1;
    margin-left: 0;
  }
  .subgallery-slider-main-wrapper {
    width: 100%;
    -webkit-box-ordinal-group: 3;
            order: 2;
    margin: 25px 0;
  }
  .subgallery-2 {
    flex-wrap: wrap;
  }
  .subgallery-slider-main__description {
    margin-top: 20px;
  }
  .subgallery-slider-main__description h2 {
    font-size: 2.5rem;
  }
  .subgallery-slider-main__description p {
    font-size: 1.5rem;
  }
  .subgallery-slider-main-wrapper.swiper-container {
    height: 400px;
  }
}

@media screen and (max-width: 500px) {
  .subgallery-slider-main-wrapper.swiper-container {
    height: 350px;
  }
}

.lokal1 {
  background-image: url(../images/Musso/Galeria/Lokal/fot_Piotr_Szalanski_7060.jpg);
}

.lokal2 {
  background-image: url(../images/Musso/Galeria/Lokal/fot_Piotr_Szalanski_7064.jpg);
}

.lokal3 {
  background-image: url(../images/Musso/Galeria/Lokal/fot_Piotr_Szalanski_7071.jpg);
}

.lokal4 {
  background-image: url(../images/Musso/Galeria/Lokal/fot_Piotr_Szalanski_7072.jpg);
}

.lokal5 {
  background-image: url(../images/Musso/Galeria/Lokal/fot_Piotr_Szalanski_7073.jpg);
}

.lokal6 {
  background-image: url(../images/Musso/Galeria/Lokal/fot_Piotr_Szalanski_7076.jpg);
}

.lokal7 {
  background-image: url(../images/Musso/Galeria/Lokal/fot_Piotr_Szalanski_7077.jpg);
}

.lokal8 {
  background-image: url(../images/Musso/Galeria/Lokal/fot_Piotr_Szalanski_7092.jpg);
}

.warsztaty_sushi1 {
  background-image: url(../images/Musso/Galeria/Warsztaty_Sushi/fot_Piotr_Szalanski_4292.jpg);
}

.warsztaty_sushi2 {
  background-image: url(../images/Musso/Galeria/Warsztaty_Sushi/fot_Piotr_Szalanski_4295.jpg);
}

.warsztaty_sushi3 {
  background-image: url(../images/Musso/Galeria/Warsztaty_Sushi/fot_Piotr_Szalanski_4296.jpg);
}

.warsztaty_sushi4 {
  background-image: url(../images/Musso/Galeria/Warsztaty_Sushi/fot_Piotr_Szalanski_4300.jpg);
}

.warsztaty_sushi5 {
  background-image: url(../images/Musso/Galeria/Warsztaty_Sushi/fot_Piotr_Szalanski_4303.jpg);
}

.warsztaty_sushi6 {
  background-image: url(../images/Musso/Galeria/Warsztaty_Sushi/fot_Piotr_Szalanski_4311.jpg);
}

.warsztaty_sushi7 {
  background-image: url(../images/Musso/Galeria/Warsztaty_Sushi/fot_Piotr_Szalanski_4319.jpg);
}

.warsztaty_sushi8 {
  background-image: url(../images/Musso/Galeria/Warsztaty_Sushi/fot_Piotr_Szalanski_4323.jpg);
}

.warsztaty_sushi9 {
  background-image: url(../images/Musso/Galeria/Warsztaty_Sushi/fot_Piotr_Szalanski_4326.jpg);
}

.warsztaty_sushi10 {
  background-image: url(../images/Musso/Galeria/Warsztaty_Sushi/fot_Piotr_Szalanski_4341.jpg);
}

.warsztaty_sushi11 {
  background-image: url(../images/Musso/Galeria/Warsztaty_Sushi/fot_Piotr_Szalanski_4433-2.jpg);
}

.warsztaty_sushi12 {
  background-image: url(../images/Musso/Galeria/Warsztaty_Sushi/fot_Piotr_Szalanski_4440-2.jpg);
}

.warsztaty_sushi13 {
  background-image: url(../images/Musso/Galeria/Warsztaty_Sushi/fot_Piotr_Szalanski_4456-2.jpg);
}

.gallery {
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: flex;
  padding: 50px 0;
  margin-top: 150px;
}

.gallery-slider-container {
  width: 80%;
  min-height: 550px;
}

.gallery-description {
  width: 20%;
  margin-left: 3%;
  min-height: 550px;
}

.gallery-description h2 {
  font-family: "Panton-Bold", sans-serif;
  font-size: 4.8rem;
  padding-bottom: 25px;
  margin-bottom: 25px;
  position: relative;
}

.gallery-description h2:after {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  background-color: #000;
  left: 0;
  bottom: 0;
}

.gallery-description p {
  font-size: 2rem;
  text-align: justify;
  line-height: 30px;
}

.gallery-slider-wrapper {
  display: -webkit-box;
  display: flex;
}

.gallery-slide {
  height: 550px;
  width: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  text-decoration: none;
  color: #000;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
          justify-content: flex-end;
}

.gallery-slide:hover .gallery-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 10;
}

.gallery-slide-text {
  width: 30%;
  height: 50%;
  background-color: rgba(77, 77, 77, 0.82);
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
}

.gallery-slide-text h2 {
  color: white;
  font-size: 2.1rem;
  position: absolute;
  width: 400%;
  left: 50%;
  bottom: 0;
  margin-right: -50%;
  -webkit-transform: rotate(-90deg) translate(0%, -50%);
          transform: rotate(-90deg) translate(0%, -50%);
  -webkit-transform-origin: top left;
          transform-origin: top left;
}

.gallery-slide10 {
  background: #fff;
}

.gallery-slide1 {
  background-image: url(../images/Musso/Galeria/Lokal/Musso_Sushi.jpg);
}

.gallery-slide2 {
  background-image: url(../images/Musso/Galeria/Warsztaty_Sushi/glowne.png);
}

.gallery-slide3 {
  background-image: url(../images/gallery3.jpg);
}

.gallery-slide4 {
  background-image: url(../images/gallery4.jpg);
}

.gallery-slide5 {
  background-image: url(../images/gallery2.jpg);
}

.gallery-slide6 {
  background-image: url(../images/gallery3.jpg);
}

.gallery-slider-container.swiper-container {
  height: 600px;
}

.gallery-slider-container.swiper-container .swiper-wrapper {
  height: 550px;
}

.gallery-slide.swiper-slide {
  width: 300px;
}

.gallery-slider-container.swiper-container .swiper-scrollbar {
  bottom: 20px;
}

.gallery-slider-container.swiper-container .swiper-scrollbar-drag {
  height: 200%;
  border-radius: 0;
  top: -2px;
  background-color: #C59100;
}

@media screen and (max-width: 1550px) {
  .gallery {
    margin-top: 130px;
  }
}

@media screen and (max-width: 1500px) {
  .gallery {
    max-width: 1200px;
  }
  .gallery-description h2 {
    font-size: 3.4rem;
  }
  .gallery-description p {
    font-size: 1.5rem;
    line-height: 23px;
  }
  .gallery-slide-text h2 {
    font-size: 1.8rem;
  }
  .gallery-slider-container.swiper-container {
    height: 500px;
  }
  .gallery-slider-container.swiper-container .swiper-wrapper {
    height: 450px;
  }
}

@media screen and (max-width: 1200px) {
  .gallery {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 1050px) {
  .gallery {
    flex-wrap: wrap;
  }
  .gallery-slider-container {
    width: 100%;
    -webkit-box-ordinal-group: 3;
            order: 2;
  }
  .gallery-description {
    width: 100%;
    -webkit-box-ordinal-group: 2;
            order: 1;
    min-height: auto;
    padding-bottom: 30px;
    margin: 0;
  }
  .gallery {
    margin-top: 100px;
  }
}

.waitress {
  margin-top: 150px;
}

.waitress__ad {
  background-image: url(../images/work-waitress.jpg);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  height: 500px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  overflow: hidden;
}

.waitress__ad h2 {
  font-family: "Roboto-Black", sans-serif;
  font-size: 5.6rem;
  color: #C59100;
  width: 60%;
  text-align: center;
  padding-bottom: 25px;
}

.waitress__ad h3 {
  font-family: "Roboto-Light", sans-serif;
  font-size: 2.5rem;
  width: 60%;
  text-align: center;
  padding-bottom: 10px;
}

.waitress__info {
  border-top: 1px solid #C59100;
  border-bottom: 1px solid #C59100;
  padding-top: 50px;
  padding-bottom: 0px;
}

.waitress__info h2 {
  font-family: "Panton-Bold", sans-serif;
  font-size: 4.3rem;
  padding-left: 50px;
  padding-bottom: 20px;
}

.waitress__info ul li {
  font-family: "Roboto-Light", sans-serif;
  font-size: 2.3rem;
  padding-left: 50px;
  background-image: url(../images/waitress-list.png);
  background-repeat: no-repeat;
  background-position: center left;
  margin-bottom: 15px;
}

.waitress__info ul li:last-child {
  margin-bottom: 50px;
}

.waitress__info-social {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.waitress__info-social p {
  font-family: "Roboto-Light", sans-serif;
  font-size: 1.4rem;
  padding-right: 20px;
}

.waitress__info-social a {
  width: 30px;
  height: 30px;
}

.waitress__form-wrapper {
  width: 75%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.waitress__form-wrapper h2 {
  font-family: "Roboto-Bold", sans-serif;
  font-size: 3.5rem;
  padding-bottom: 20px;
}

.waitress__form {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.waitress__form-container-inputs {
  width: 48.5%;
  margin-right: 3%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.waitress__form-container-inputs input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  border: none;
  border: 1px solid #808080;
  border-radius: 2px;
  padding: 22px 10px;
  margin-bottom: 10px;
  outline: none;
  font-size: 1.6rem;
  height: 44px;
  margin-top: 5px;
}

.waitress__form-container-inputs input:hover, .waitress__form-container-inputs input:focus {
  /*box-shadow: 0 0 0 1px #C59100; */
  border: 1px solid #C59100;
  box-shadow: 0 0 0 1px #C59100;
}

.waitress__form-container-inputs input::-webkit-input-placeholder {
  color: #4C4C4C;
  font-family: "Roboto-Light", sans-serif;
  font-size: 1.6rem;
  opacity: 1;
}

.waitress__form-container-inputs input:-ms-input-placeholder {
  color: #4C4C4C;
  font-family: "Roboto-Light", sans-serif;
  font-size: 1.6rem;
  opacity: 1;
}

.waitress__form-container-inputs input::placeholder {
  color: #4C4C4C;
  font-family: "Roboto-Light", sans-serif;
  font-size: 1.6rem;
  opacity: 1;
}

.waitress__form-container-add {
  width: 48.5%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-top: 5px;
}

.waitress__form-container-add input, .waitress__form-container-add div {
  width: 100%;
}

.waitress__form-container-checkbox {
  padding-bottom: 10px;
  padding-left: 50px;
}

.waitress__form-container-send {
  width: 100%;
  padding-top: 20px;
}

.waitress__form-container-send input[type="checkbox"] {
  display: none;
}

.waitress__form-container-send input[type="checkbox"] + label {
  color: #4C4C4C;
  font-size: 1.8rem;
}

.waitress__form-container-send input[type="checkbox"] + label span {
  display: inline-block;
  width: 25px;
  height: 23px;
  vertical-align: middle;
  background: url(../images/waitress-checkbox.svg) center no-repeat;
  cursor: pointer;
  margin-right: 20px;
  margin-left: -50px;
}

.waitress__form-container-send input[type="checkbox"]:checked + label span {
  background: url(../images/waitress-checkbox-arrow.svg) center no-repeat;
}

.waitress__form-container-send input[type="submit"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: #C59100;
  padding: 10px 15px;
  border-radius: 50px;
  color: white;
  font-size: 2rem;
  font-family: "Roboto-MediumItalic", sans-serif;
  padding-right: 70px;
  padding-left: 60px;
  background-image: url(../images/work-button-arrow.svg);
  background-repeat: no-repeat;
  background-position: top 50% right 0px;
  background-size: 40px 20px;
  outline: none;
  margin-left: 50px;
  margin-top: 20px;
}

.waitress__button {
  border-top: 1px solid #C59100;
  padding-bottom: 50px;
}

.waitress__button button {
  float: right;
  overflow: hidden;
  font-size: 3rem;
  color: #fff;
  font-family: "Roboto-Black", sans-serif;
  border: none;
  outline: none;
  background-color: #C59100;
  background-image: url(../images/work-button-arrow-down.svg);
  background-repeat: no-repeat;
  background-size: 50px 30px;
  background-position: right 10px bottom 50%;
  padding: 15px 80px;
  -webkit-animation-name: work-button;
          animation-name: work-button;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

.chef__ad {
  background-image: url(../images/work-chef.jpg);
}

.chef__form-wrapper {
  width: 75%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.chef__form-wrapper h2 {
  font-family: "Roboto-Bold", sans-serif;
  font-size: 3.5rem;
  padding-bottom: 20px;
}

.chef__form {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.chef__form-container-inputs {
  width: 48.5%;
  margin-right: 3%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.chef__form-container-inputs input {
  width: 100%;
  border: none;
  border: 1px solid #808080;
  border-radius: 2px;
  padding: 10px;
  margin-bottom: 10px;
  outline: none;
  height: 44px;
}

.chef__form-container-inputs input:hover, .chef__form-container-inputs input:focus {
  box-shadow: 0 0 0 1px #808080;
}

.chef__form-container-inputs input::-webkit-input-placeholder {
  color: #4C4C4C;
  font-family: "Roboto-Light", sans-serif;
  font-size: 1.6rem;
  opacity: 1;
}

.chef__form-container-inputs input:-ms-input-placeholder {
  color: #4C4C4C;
  font-family: "Roboto-Light", sans-serif;
  font-size: 1.6rem;
  opacity: 1;
}

.chef__form-container-inputs input::placeholder {
  color: #4C4C4C;
  font-family: "Roboto-Light", sans-serif;
  font-size: 1.6rem;
  opacity: 1;
}

.chef__form-container-add {
  width: 48.5%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.chef__form-container-add input, .chef__form-container-add div {
  width: 100%;
}

.chef__form-container-checkbox {
  padding-bottom: 10px;
  padding-left: 50px;
}

.chef__form-container-send {
  width: 100%;
  padding-top: 20px;
}

.chef__form-container-send input[type="checkbox"] {
  display: none;
}

.chef__form-container-send input[type="checkbox"] + label {
  color: #4C4C4C;
  font-size: 1.8rem;
}

.chef__form-container-send input[type="checkbox"] + label span {
  display: inline-block;
  width: 25px;
  height: 23px;
  vertical-align: middle;
  background: url(../images/waitress-checkbox.svg) center no-repeat;
  cursor: pointer;
  margin-right: 20px;
  margin-left: -50px;
}

.chef__form-container-send input[type="checkbox"]:checked + label span {
  background: url(../images/waitress-checkbox-arrow.svg) center no-repeat;
}

.chef__form-container-send input[type="submit"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: #C59100;
  padding: 10px 15px;
  border-radius: 50px;
  color: white;
  font-size: 2rem;
  font-family: "Roboto-MediumItalic", sans-serif;
  padding-right: 70px;
  padding-left: 60px;
  background-image: url(../images/work-button-arrow.svg);
  background-repeat: no-repeat;
  background-position: top 50% right 0px;
  background-size: 40px 20px;
  outline: none;
  margin-left: 50px;
  margin-top: 20px;
}

.master__form-wrapper {
  width: 75%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.master__form-wrapper h2 {
  font-family: "Roboto-Bold", sans-serif;
  font-size: 3.5rem;
  padding-bottom: 20px;
}

.master__form {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.master__form-container-inputs {
  width: 48.5%;
  margin-right: 3%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.master__form-container-inputs input {
  width: 100%;
  border: none;
  border: 1px solid #808080;
  border-radius: 2px;
  padding: 10px;
  margin-bottom: 10px;
  outline: none;
  height: 44px;
}

.master__form-container-inputs input:hover, .master__form-container-inputs input:focus {
  box-shadow: 0 0 0 1px #808080;
}

.master__form-container-inputs input::-webkit-input-placeholder {
  color: #4C4C4C;
  font-family: "Roboto-Light", sans-serif;
  font-size: 1.6rem;
  opacity: 1;
}

.master__form-container-inputs input:-ms-input-placeholder {
  color: #4C4C4C;
  font-family: "Roboto-Light", sans-serif;
  font-size: 1.6rem;
  opacity: 1;
}

.master__form-container-inputs input::placeholder {
  color: #4C4C4C;
  font-family: "Roboto-Light", sans-serif;
  font-size: 1.6rem;
  opacity: 1;
}

.master__form-container-add {
  width: 48.5%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.master__form-container-add input, .master__form-container-add div {
  width: 100%;
}

.master__form-container-checkbox {
  padding-bottom: 10px;
  padding-left: 50px;
}

.master__form-container-send {
  width: 100%;
  padding-top: 20px;
}

.master__form-container-send input[type="checkbox"] {
  display: none;
}

.master__form-container-send input[type="checkbox"] + label {
  color: #4C4C4C;
  font-size: 1.8rem;
}

.master__form-container-send input[type="checkbox"] + label span {
  display: inline-block;
  width: 25px;
  height: 23px;
  vertical-align: middle;
  background: url(../images/waitress-checkbox.svg) center no-repeat;
  cursor: pointer;
  margin-right: 20px;
  margin-left: -50px;
}

.master__form-container-send input[type="checkbox"]:checked + label span {
  background: url(../images/waitress-checkbox-arrow.svg) center no-repeat;
}

.master__form-container-send input[type="submit"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: #C59100;
  padding: 10px 15px;
  border-radius: 50px;
  color: white;
  font-size: 2rem;
  font-family: "Roboto-MediumItalic", sans-serif;
  padding-right: 70px;
  padding-left: 60px;
  background-image: url(../images/work-button-arrow.svg);
  background-repeat: no-repeat;
  background-position: top 50% right 0px;
  background-size: 40px 20px;
  outline: none;
  margin-left: 50px;
  margin-top: 20px;
}

.inputfile {
  width: 0.1px !important;
  height: 0.1px !important;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.inputfile + label {
  font-family: "Panton-Light", sans-serif;
  height: 44px;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 700;
  color: #808080;
  display: inline-block;
  border: 1px solid #808080;
  border-radius: 3px;
  padding-left: 100px;
  padding-top: 15px;
  background-image: url(../images/form-plus.svg);
  background-repeat: no-repeat;
  background-position: left 40px center;
  background-size: 30px;
  margin-bottom: 10px;
}

.inputfile:focus + label,
.inputfile + label:hover {
  background-color: none;
  box-shadow: 0 0 0 1px #808080;
}

.inputfile + label {
  cursor: pointer;
  /* "hand" cursor */
}

.input-after {
  display: -webkit-box;
  display: flex;
  justify-content: space-around;
  -webkit-box-align: center;
          align-items: center;
  margin-top: 10px;
  width: 100%;
  padding: 5px 50px;
}

.input-after p {
  font-size: 1.6rem;
  width: 100%;
}

.input-after div {
  font-size: 2rem;
  width: 20px;
  color: red;
  cursor: pointer;
}

@media screen and (max-width: 1550px) {
  .waitress {
    margin-top: 130px;
  }
}

@media screen and (max-width: 1500px) {
  .waitress__ad {
    height: 350px;
  }
  .waitress__ad h2 {
    font-size: 4rem;
  }
  .waitress__ad h3 {
    font-size: 1.8rem;
  }
  .waitress__info h2 {
    font-size: 3rem;
  }
  .waitress__info ul li {
    font-size: 1.6rem;
  }
  .waitress__form-wrapper h2, .chef__form-wrapper h2 {
    font-size: 2.4rem;
  }
  .waitress__form-container-inputs input, .chef__form-container-inputs input {
    font-size: 1.1rem;
  }
  .waitress__form-container-send input[type="checkbox"] + label, .chef__form-container-send input[type="checkbox"] + label {
    font-size: 1.6rem;
  }
  .waitress__form-container-send input[type="submit"], .chef__form-container-send input[type="submit"] {
    font-size: 2rem;
  }
  .waitress__button button, .chef__button button {
    font-size: 2.2rem;
    background-size: 50px 20px;
    padding: 10px 50px;
  }
}

@media screen and (max-width: 1050px) {
  .waitress {
    margin-top: 100px;
  }
}

@media screen and (max-width: 700px) {
  .waitress__form-wrapper, .chef__form-wrapper {
    width: 100%;
  }
  .waitress__form-container-inputs, .chef__form-container-inputs {
    width: 100%;
    margin: 0;
  }
  .waitress__form-container-add, .chef__form-container-add {
    width: 100%;
  }
  .waitress__form-container-send input[type="submit"], .chef__form-container-send input[type="submit"] {
    margin: 0 auto;
    display: block;
    margin-top: 15px;
  }
  .inputfile + label {
    background-position: left 20px center;
    padding-left: 70px;
  }
}

@media screen and (max-width: 500px) {
  .waitress__info ul li, .waitress__info h2 {
    padding-left: 30px;
  }
}

@media screen and (max-width: 400px) {
  .waitress__ad h2 {
    padding-top: 100px;
    padding-bottom: 20px;
  }
}

.order-form {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.order-form-radio-wrapper {
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding-top: 50px;
  padding-bottom: 50px;
}

.order-form-radio1, .order-form-radio2, .order-form-radio3 {
  width: 350px;
}

.order-form-radio1 select, .order-form-radio2 select, .order-form-radio3 select {
  display: none;
  margin-top: 20px;
  outline: none;
  font-size: 1.8rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 5px 10px;
  padding-right: 40px;
  border: 1px solid #000;
  background-color: #fff;
  background-image: url(../images/select-arrow.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
}

.order-form-radio1 h2, .order-form-radio2 h2, .order-form-radio3 h2 {
  font-family: "Roboto-Black", sans-serif;
  font-size: 3.5rem;
  padding-left: 80px;
  padding-top: 4px;
  padding-bottom: 4px;
  background-repeat: no-repeat;
  background-position: 0px 50%;
  background-size: contain;
  margin-bottom: 15px;
}

.order-form-radio1 h2 span, .order-form-radio2 h2 span, .order-form-radio3 h2 span {
  font-family: "Roboto-Light", sans-serif;
  font-size: 3.5rem;
  color: #C59100;
}

.order-form-radio1 ul li, .order-form-radio2 ul li, .order-form-radio3 ul li {
  display: block;
  position: relative;
  float: left;
  width: 100%;
}

.order-form-radio1 ul li input[type=radio], .order-form-radio2 ul li input[type=radio], .order-form-radio3 ul li input[type=radio] {
  position: absolute;
  visibility: hidden;
}

.order-form-radio1 ul li label, .order-form-radio2 ul li label, .order-form-radio3 ul li label {
  display: block;
  position: relative;
  font-size: 2em;
  padding: 8px 0px 8px 50px;
  height: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.25s linear;
}

.order-form-radio1 ul li .check, .order-form-radio2 ul li .check, .order-form-radio3 ul li .check {
  display: block;
  position: absolute;
  border: 1px solid #C59100;
  border-radius: 100%;
  height: 16px;
  width: 16px;
  top: 10px;
  left: 10px;
  z-index: 5;
  transition: border .25s linear;
  -webkit-transition: border .25s linear;
}

.order-form-radio1 ul li .check::before, .order-form-radio2 ul li .check::before, .order-form-radio3 ul li .check::before {
  display: block;
  position: absolute;
  content: '';
  border-radius: 100%;
  height: 10px;
  width: 10px;
  top: 2px;
  left: 2px;
  margin: auto;
  transition: background 0.25s linear;
  -webkit-transition: background 0.25s linear;
}

.order-form-radio1 ul li input[type=radio]:checked ~ .check, .order-form-radio2 ul li input[type=radio]:checked ~ .check, .order-form-radio3 ul li input[type=radio]:checked ~ .check {
  border: 1px solid #C59100;
}

.order-form-radio1 ul li input[type=radio]:checked ~ .check::before, .order-form-radio2 ul li input[type=radio]:checked ~ .check::before, .order-form-radio3 ul li input[type=radio]:checked ~ .check::before {
  background: #C59100;
}

.order-form-radio1 ul li input[type=radio]:checked ~ label, .order-form-radio2 ul li input[type=radio]:checked ~ label, .order-form-radio3 ul li input[type=radio]:checked ~ label {
  color: #C59100;
}

.order-form-radio1 ul li input#order-datapick, .order-form-radio2 ul li input#order-datapick, .order-form-radio3 ul li input#order-datapick {
  visibility: hidden;
  border: none;
  font-size: 1.8rem;
  font-family: "Roboto-Light", sans-serif;
  display: block;
  margin: 20px 0 20px 0px;
  outline: none;
  border: 1px solid #C59100;
  padding: 5px 10px;
  width: auto;
  text-align: center;
}

.order-form-radio1 h2 {
  padding-left: 60px;
  background-image: url(../images/order-icon1.svg);
}

.order-form-radio2 {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  padding: 0 50px;
  width: 450px;
}

.order-form-radio2 h2 {
  background-image: url(../images/order-icon2.svg);
}

.order-form-radio3 h2 {
  background-image: url(../images/order-icon3.svg);
}

.order-form-main {
  width: 100%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  padding-top: 80px;
  padding-bottom: 15px;
}

.order-form-main input {
  font-family: "Roboto-Light", sans-serif;
  font-size: 1.7rem;
  border: none;
  border: 1px solid #000;
  padding: 13px 20px;
  margin-bottom: 10px;
  outline: none;
}

.order-form-main input::-webkit-input-placeholder {
  color: #000;
  opacity: 1;
}

.order-form-main input:-ms-input-placeholder {
  color: #000;
  opacity: 1;
}

.order-form-main input::placeholder {
  color: #000;
  opacity: 1;
}

.order-form-main1 {
  width: 32%;
  margin-right: 2%;
}

.order-form-main1 input {
  width: 100%;
}

.order-form-main2 {
  width: 32%;
  margin-right: 2%;
}

.order-form-main2 .order-number-wrapper {
  width: 100%;
  display: -webkit-box;
  display: flex;
}

.order-form-main2 .order-number-wrapper input {
  width: 32%;
  margin-right: 2%;
}

.order-form-main2 .order-number-wrapper input:last-of-type {
  margin-right: 0;
}

.order-form-main2 input {
  width: 100%;
}

.order-form-main2 .order__form-container-checkbox {
  width: 100%;
  padding-left: 50px;
}

.order-form-main2 .order__form-container-checkbox input[type="checkbox"] {
  display: none;
}

.order-form-main2 .order__form-container-checkbox input[type="checkbox"] + label {
  color: #000;
  font-size: 1.8rem;
  margin-left: -50px;
}

.order-form-main2 .order__form-container-checkbox input[type="checkbox"] + label span {
  display: inline-block;
  width: 26px;
  height: 24px;
  vertical-align: middle;
  border: 1px solid #000;
  cursor: pointer;
  margin-right: 20px;
}

.order-form-main2 .order__form-container-checkbox input[type="checkbox"]:checked + label span {
  background: url(../images/order-checkbox-arrow.svg) center no-repeat;
}

.order-form-main3 {
  width: 32%;
}

.order-form-main3 textarea {
  width: 100%;
  border: none;
  border: 1px solid #000;
  font-family: "Roboto-Light", sans-serif;
  font-size: 1.7rem;
  padding: 13px 20px;
  margin-bottom: 20px;
  height: 184px;
  outline: none;
  resize: none;
}

.order-form-main3 textarea::-webkit-input-placeholder {
  color: #000;
  opacity: 1;
}

.order-form-main3 textarea:-ms-input-placeholder {
  color: #000;
  opacity: 1;
}

.order-form-main3 textarea::placeholder {
  color: #000;
  opacity: 1;
}

.order-form-main-button-send {
  width: 100%;
}

.order-form-base {
  display: -webkit-box;
  display: flex;
  width: 100%;
  padding-top: 25px;
}

.order-form-base__text1 {
  width: 32%;
  margin-right: 2%;
}

.order-form-base__text2 {
  width: 205px;
}

.order-form-base__text2 p:first-child {
  padding-bottom: 20px;
}

.order-form-base p {
  text-align: left;
  font-size: 1.8rem;
}

@media screen and (max-width: 1500px) {
  .order-form-radio1 h2, .order-form-radio2 h2, .order-form-radio3 h2 {
    font-size: 2.5rem;
  }
  .order-form-radio1 h2 span, .order-form-radio2 h2 span, .order-form-radio3 h2 span {
    font-size: 2.5rem;
  }
  .order-form-radio1 ul li label, .order-form-radio2 ul li label, .order-form-radio3 ul li label {
    font-size: 1.8rem;
  }
  #order-datapick {
    font-size: 1.6rem !important;
  }
  .order-form-main input, .order-form-main3 textarea {
    font-size: 1.3rem;
  }
  .order-form-main3 textarea {
    height: 170px;
  }
  .order-form-main2 .order__form-container-checkbox input[type="checkbox"] + label {
    font-size: 1.5rem;
  }
  .order-form-base p {
    font-size: 1.5rem;
  }
  .order-form-base input {
    font-size: 1.8rem;
  }
  .order-form-radio1, .order-form-radio3 {
    width: 265px;
  }
  .order-form-radio2 {
    width: 466px;
    padding: 0px 100px;
  }
}

@media screen and (max-width: 1200px) {
  .order-form-radio-wrapper {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: -115px;
  }
  .order-form-radio1, .order-form-radio2, .order-form-radio3 {
    width: 285px;
  }
  .order-form-radio2 {
    padding: 0px;
    border: 0;
  }
  .order-form-main {
    padding-top: 50px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 850px) {
  .order-form-main1 {
    width: 100%;
    margin: 0;
  }
  .order-form-main2 {
    width: 100%;
    margin: 0;
  }
  .order-form-main3 {
    width: 100%;
  }
  .order-form-base {
    flex-wrap: wrap;
  }
  .order-form-base__text1, .order-form-base__text2 {
    width: 100%;
  }
  .order-form-base__text2 p:first-child {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 900px) {
  .order-form-radio-wrapper {
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .order-form-radio1, .order-form-radio2, .order-form-radio3 {
    margin-bottom: 30px;
  }
  .order-form-radio3 ul li input#order-datapick {
    margin: 0 auto;
    margin-top: 20px;
  }
  .order-form-radio1 h2, .order-form-radio2 h2, .order-form-radio3 h2 {
    padding-left: 60px;
  }
  .order-form-main2 .order__form-container-checkbox input[type="checkbox"] + label span {
    margin-top: 5px;
  }
}

@media screen and (max-width: 500px) {
  .order-form-radio-wrapper {
    padding-top: 10px;
  }
  .order-form-radio1, .order-form-radio2, .order-form-radio3 {
    width: 245px;
  }
}

@media screen and (max-width: 350px) {
  .order-form-radio-wrapper {
    padding-top: 10px;
  }
  .order-form-base input {
    font-size: 1.3rem;
  }
  .order-form-radio1 h2, .order-form-radio2 h2, .order-form-radio3 h2 {
    font-size: 2.2rem;
  }
  .order-form-radio1 h2 span, .order-form-radio2 h2 span, .order-form-radio3 h2 span {
    font-size: 2.2rem;
  }
  .order-form-radio1 ul li label, .order-form-radio2 ul li label, .order-form-radio3 ul li label {
    font-size: 1.5rem;
  }
  #order-datapick {
    font-size: 1.6rem !important;
  }
  .order-form-main input, .order-form-main2 textarea {
    font-size: 1.2rem;
  }
  .order-form-main2 textarea {
    height: 106px;
  }
  .order-form-main2 .order__form-container-checkbox input[type="checkbox"] + label {
    font-size: 1.4rem;
  }
  .order-form-base p {
    font-size: 1.4rem;
  }
  .order-form-base input {
    font-size: 1.5rem;
  }
  .order-form-radio1, .order-form-radio3 {
    width: 265px;
  }
  .order-form-radio2 {
    width: 466px;
  }
  .order-form-radio1, .order-form-radio2, .order-form-radio3 {
    width: 222px;
  }
}

.order-header {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 30px 50px;
  padding-bottom: 50px;
  margin-top: 150px;
}

.order-header h2 {
  font-family: "Panton-Regular", sans-serif;
  font-size: 4.5rem;
  color: #C59100;
}

.order-header span {
  padding-left: 30px;
  font-size: 5.3rem;
  font-family: "Panton-Bold", sans-serif;
  color: #000;
}

.order-pick-list {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0px 20px;
}

.order-pick-list ul {
  display: -webkit-box;
  display: flex;
  justify-content: space-around;
  border-bottom: 1px solid #000;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.order-pick-list ul li {
  position: relative;
  top: 1px;
  width: 20%;
  padding: 25px 0px;
  border: 1px solid #000;
  text-align: center;
  margin: 0 8px;
}

.order-pick-list ul li a {
  text-decoration: none;
  color: #000;
  font-family: "Panton-Bold", sans-serif;
  font-size: 2.5rem;
}

.order-pick-list ul li:hover {
  background-color: #C59100;
}

.order-pick-list ul li:hover a {
  color: #fff;
}

.order-pick-list-active {
  background: #C59100;
  border-bottom: none !important;
}

.order-pick-list-active a {
  color: #fff !important;
}

.order-pick-list-active a {
  color: #fff;
}

.order-content {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 25px 48px;
  display: -webkit-box;
  display: flex;
}

.order-content-row {
  margin-left: -1%;
  margin-right: -1%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  width: 102%;
}

.order-cube-huge {
  width: 38%;
  border: 1px solid #000;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-left: 1%;
  margin-right: 1%;
  margin-bottom: 20px;
}

.order-cube-huge__background {
  height: 250px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.order-cube-huge__name {
  padding-left: 15px;
  padding-right: 15px;
}

.order-cube-huge__name h2 {
  font-family: "Panton-Bold", sans-serif;
  font-size: 1.7rem;
  padding: 10px 0;
}

.order-cube-huge__name p {
  font-family: "Panton-Regular", sans-serif;
  font-size: 1.2rem;
  padding-bottom: 15px;
  position: relative;
}

.order-cube-huge__bracket {
  display: -webkit-box;
  display: flex;
  margin-left: 15px;
  margin-right: 15px;
  padding-bottom: 15px;
  border-top: 1px solid #000;
  height: 80px;
}

.order-cube-huge__bracket h3 {
  font-family: "Panton-Regular", sans-serif;
  font-size: 1.2rem;
  padding: 15px 0;
}

.order-cube-huge__bracket-price {
  padding-right: 40px;
  text-align: center;
}

/*@media screen and (max-width: 767px) {
  .order-cube-huge__bracket-price {
    padding-left: 0;
  }
}*/

.order-cube-huge__bracket-price p {
  font-family: "Panton-Bold", sans-serif;
  font-size: 2.2rem;
}

.order-cube-huge__bracket-quantity {
  padding-right: 40px;
  text-align: center;
}

.order-cube-huge__bracket-quantity-input {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.order-cube-huge__bracket-quantity-input input {
  width: 35px;
  height: 20px;
  border-radius: 50px;
  border: none;
  border: 1px solid black;
  text-align: center;
  font-size: 1.5rem;
  padding-top: 0px;
  outline: none;
}

.order-cube-huge__bracket-quantity-input input[type=button] {
  -ms-grid-row-align: center;
      align-self: center;
  border: none;
  background: none;
  outline: none;
  width: 20px;
  font-size: 1.9rem;
  font-family: "Panton-Light", sans-serif;
  margin-bottom: 4px;
}

.order-cube-huge__bracket-add {
  text-align: center;
}

.order-cube-huge__bracket-add h3 {
  padding-bottom: 5px;
}

.order-cube-huge__bracket-add img {
  max-width: 100%;
  height: auto;
}

.order-cube-huge__background1 {
  background-image: url(../images/order-product1.jpg);
}

.order-cube-huge__background2 {
  background-image: url(../images/order-product1.jpg);
}

.order-cube-huge__background3 {
  background-image: url(../images/order-product1.jpg);
}

.order-cube {
  width: 18%;
  border: 1px solid #000;
  margin-left: 1%;
  margin-right: 1%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: justify;
          justify-content: space-between;
  min-height: 200px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-bottom: 20px;
}

.order-cube__background {
  height: 200px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 11;
}

.order-cube__wrapper {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 9;
}

.order-cube__promotion {
  width: 160px;
  height: 64px;
  background: url(../images/order-promotion-background.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: -17px;
  top: 20px;
  z-index: 12;
}

.order-cube__promotion p {
  position: absolute;
  top: 25%;
  left: 50%;
  margin-right: -50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 2rem;
  font-family: "Panton-Bold", sans-serif;
  color: #fff;
  padding-top: 8%;
}

.order-cube__name {
  padding-left: 15px;
  padding-right: 15px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: start;
          justify-content: flex-start;
}

.order-cube__name h2 {
  font-family: "Panton-Bold", sans-serif;
  font-size: 1.7rem;
  padding: 10px 0;
}

.order-cube__name p {
  font-family: "Panton-Regular", sans-serif;
  font-size: 1.2rem;
  padding-bottom: 15px;
  position: relative;
}

.order-cube__bracket {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  text-align: center;
  margin-left: 15px;
  margin-right: 15px;
  padding-bottom: 15px;
  border-top: 1px solid #000;
  height: 80px;
}

.order-cube__bracket h3 {
  font-family: "Panton-Regular", sans-serif;
  font-size: 1.2rem;
  padding: 15px 0;
}

.order-cube__bracket-price {
  text-align: center;
}

.order-cube__bracket-price p {
  font-family: "Panton-Bold", sans-serif;
  font-size: 2.2rem;
}

.order-cube__bracket-quantity {
  text-align: center;
  padding-left: 20px;
}

.order-cube__bracket-quantity h3 {
  padding-bottom: 12px;
}

.order-cube__bracket-quantity-input {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.order-cube__bracket-quantity-input input {
  width: 35px;
  height: 20px;
  border-radius: 50px;
  border: none;
  border: 1px solid black;
  text-align: center;
  font-size: 1.5rem;
  padding-top: 1px;
}

.order-cube__bracket-quantity-input input[type=button] {
  border: none;
  background: none;
  outline: none;
  width: 20px;
  font-size: 1.9rem;
  font-family: "Panton-Light", sans-serif;
  margin-bottom: 6px;
  cursor: pointer;
}

.order-cube__bracket-add {
  text-align: center;
}

.order-cube__bracket-add h3 {
  padding-bottom: 6px;
}

.order-cube__bracket-add img {
  max-width: 100%;
  height: auto;
}

.order-cube__background1 {
  background-image: url(../images/order-product2.jpg);
}

.order-cube__background2 {
  background-image: url(../images/order-product2.jpg);
}

.order-cube__background3 {
  background-image: url(../images/order-product2.jpg);
}

.order-cube__background4 {
  background-image: url(../images/order-product2.jpg);
}

.order-cube__background5 {
  background-image: url(../images/order-product2.jpg);
}

.order-cube__background6 {
  background-image: url(../images/order-product2.jpg);
}

.order-cube__background7 {
  background-image: url(../images/order-product2.jpg);
}

.order-cube__background8 {
  background-image: url(../images/order-product2.jpg);
}

.order-cube__background9 {
  background-image: url(../images/order-product2.jpg);
}

.order-cube__background10 {
  background-image: url(../images/order-product2.jpg);
}

.order-cube__background11 {
  background-image: url(../images/order-product2.jpg);
}

.order-cube__background12 {
  background-image: url(../images/order-product2.jpg);
}

.order-cube:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 9999999;
  box-shadow: 0px 0px 20px -1px #4f4f4f;
  border: none;
  -webkit-transform: scale(1.035);
          transform: scale(1.035);
}

.order-cube-huge:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 9999999;
  box-shadow: 0px 0px 20px -1px #4f4f4f;
  border: 1px solid white;
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.order-navigation {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  padding: 30px 0;
}

.order-navigation-prev {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  font-size: 1.8rem;
  padding-right: 10px;
}

.order-navigation-prev img {
  padding-left: 5px;
}

.order-navigation-numbers {
  display: -webkit-box;
  display: flex;
}

.order-navigation-numbers p {
  font-family: "Panton-Regular", sans-serif;
  font-size: 2.3rem;
  width: 25px;
  height: 25px;
  padding-top: 1px;
  padding-left: 5px;
}

.order-navigation-numbers p.active {
  border: 1px solid #C59100;
  border-radius: 100%;
}

.order-navigation-next {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  font-size: 1.8rem;
  padding-left: 10px;
}

.order-navigation-next img {
  padding-right: 5px;
}

.order-bracket-logo:hover path {
  fill: #000;
}

.order-nav-fill {
  display: none;
}

.order-navigation-button, .order-navigation-numbers {
  padding-top: 5px;
  padding-bottom: 5px;
}

.order-navigation-button:hover .order-nav {
  display: none;
  cursor: pointer;
}

.order-navigation-button:hover .order-nav-fill {
  display: -webkit-box;
  display: flex;
  cursor: pointer;
}

@media screen and (max-width: 1750px) {
  .order-cube__bracket-quantity {
    padding-left: 0;
  }
}

@media screen and (max-width: 1700px) {
  .order-header h2 {
    font-size: 3.5rem;
  }
  .order-header span {
    font-size: 4.5rem;
  }
  .order-pick-list ul li a {
    font-size: 2rem;
  }
  .order-pick-list ul li {
    padding-left: 10px;
    padding-right: 10px;
  }
  .order-cube__bracket-price p {
    font-size: 1.5rem;
  }
  .order-cube__bracket-add img {
    max-width: 20px;
  }
  .order-cube__background {
    height: 150px;
  }
  .order-cube-huge__background {
    height: 200px;
  }
  .order-cube__bracket h3 {
    padding-left: 4px;
  }
  .order-cube__bracket-add h3 {
    padding-bottom: 12px;
  }
}

@media screen and (max-width: 1550px) {
  .order-header {
    margin-top: 130px;
  }
}

@media screen and (max-width: 1500px) {
  .order-cube__bracket-add h3 {
    padding-bottom: 3px;
  }
  .order-cube__bracket-quantity {
    padding-left: 15px;
  }
}

@media screen and (max-width: 1320px) {
  .order-cube-huge__bracket-price p {
    font-size: 1.5rem;
  }
  .order-cube__bracket-quantity {
    padding-left: 0px;
  }
  .order-cube-huge__bracket-price p {
    margin-top: 5px;
  }
}

@media screen and (max-width: 1254px) {
  .order-cube-huge__bracket-add img {
    max-width: 20px;
  }
  .order-cube-huge__bracket-price p {
    margin-top: 0px;
  }
}

@media screen and (max-width: 1200px) {
  .order-content .order-row {
    flex-wrap: wrap;
    -webkit-box-pack: start;
            justify-content: flex-start;
  }
  .order-cube-huge {
    width: 64.6666%;
    margin-bottom: 30px;
  }
  .order-cube {
    width: 31.3333%;
    margin-bottom: 30px;
  }
  .order-cube-huge__bracket-add img, .order-cube__bracket-add img {
    max-width: 100%;
  }
  .order-cube-huge__bracket-price p {
    margin-top: 5px;
  }
  .order-cube__bracket-price p {
    margin-top: 3px;
  }
}

@media screen and (max-width: 1050px) {
  .order-cube:hover {
    -webkit-transition: all 0s;
    transition: all 0s;
    z-index: 9999999;
    box-shadow: 0px 0px 0px 0px #4f4f4f;
    border: 1px solid #000;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .order-cube-huge:hover {
    -webkit-transition: all 0s;
    transition: all 0s;
    z-index: 9999999;
    box-shadow: 0px 0px 0px 0px #4f4f4f;
    border: 1px solid #000;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .order-header {
    margin-top: 100px;
  }
  .order-cube__bracket-add img {
    padding-top: 2px;
  }
}

@media screen and (max-width: 990px) {
  .order-cube__bracket-add img {
    padding-top: 0px;
  }
}

@media screen and (max-width: 865px) {
  .order-cube__bracket-add img {
    max-width: 20px;
  }
}

@media screen and (max-width: 860px) {
  .order-cube__bracket-price p {
    margin-top: -2px;
  }
}

@media screen and (max-width: 750px) {
  .order-header span {
    width: 100%;
    display: block;
    padding-left: 0;
  }
}

@media screen and (max-width: 700px) {
  .order-cube-huge__bracket {
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  .order-cube-huge__bracket-price, .order-cube-huge__bracket-quantity {
    padding-right: 0px;
  }
  .order-cube__bracket-add img {
    max-width: 100%;
  }
  .order-cube__bracket-price p {
    margin-top: 3px;
  }
  .order-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  .order-content .order-row {
    margin-bottom: 0px;
  }
  .order-cube-huge {
    width: 48%;
    margin-bottom: 30px;
  }
  .order-cube {
    width: 48%;
    margin-bottom: 30px;
  }
  .order-cube-huge__background {
    height: 200px;
  }
  .order-pick-list ul {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
    border-bottom: none;
    flex-wrap: wrap;
  }
  .order-pick-list ul li {
    width: auto;
    padding: 10px 10px;
    border: none;
  }
}

@media screen and (max-width: 500px) {
  .order-pick-list ul {
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    flex-wrap: wrap;
  }
  .order-pick-list ul li {
    padding: 10px 0px;
  }
  .order-header {
    padding-bottom: 30px;
  }
  .order-header h2 {
    font-size: 3rem;
    text-align: center;
  }
  .order-header span {
    font-size: 4rem;
  }
}

@media screen and (max-width: 1200px) {
   .order-cube__background {
    height: 200px;
  }
}

@media screen and (max-width: 440px) {
  .order-content {
    padding-left: 10px;
    padding-right: 10px;
  }
  .order-cube__background {
    height: 200px;
  }
  .order-content .order-row {
    margin-bottom: 0px;
  }
  .order-cube-huge {
    width: 100%;
    margin-bottom: 30px;
  }
  .order-cube {
    width: 100%;
    margin-bottom: 30px;
  }
}

/*.event-banner1 {
  background-image: url(../images/Musso/Wydarzenia/1.Kurs_Sushi/Kurs_Sushi_Podstrona.jpg);
}
.event-banner2 {
  background-image: url(../images/Musso/Wydarzenia/2.Warsztaty_Sushi_dla_Klienta_Korporacyjnego/Kurs_Sushi_Podstrona.jpg);
}
.event-banner3 {
  background-image: url(../images/Musso/Wydarzenia/3.Warsztaty_origami/Warsztaty_Origami_podstrona.jpg);
}
.event-banner4 {
  background-image: url(../images/Musso/Wydarzenia/4.Voucher/Voucher_Podstrona.jpg);
}
.event-banner5 {
  background-image: url(../images/Musso/Wydarzenia/5.Walentynki/Walentynki_Podstrona.jpg);
}
.event-banner6 {
  background-image: url(../images/Musso/Wydarzenia/6.Dzień_kobiet/Dzień_Kobiet_Podstrona.jpg);
}
.event-banner7 {
  background-image: url(../images/Musso/Wydarzenia/7.Targ_Rybny/Targ_Rybny_Podstrona.jpg);
}
.event-banner8 {
  background-image: url(../images/Musso/Wydarzenia/1.Kurs_Sushi/Kurs_Sushi_Podstrona.jpg);
}*/
.event-banner {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  height: 300px;
  background: transparent;
}

.event-banner-text {
  margin-top: 150px;
  margin-left: 15%;
}

.event-banner-text h2 {
  font-family: "Panton-Bold", sans-serif;
  font-size: 5.5rem;
  color: #fff;
  padding-left: 140px;
  background-image: url(../images/event-banner-hat.svg);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: 0 50%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.event-banner-text h3 {
  font-family: "Panton-ExtraLight", sans-serif;
  font-size: 3.6rem;
  color: #fff;
  padding-left: 140px;
}

.event-banner-text h3 span {
  font-size: 5.5rem;
}

.event-sushi {
  position: absolute;
  right: 0px;
  z-index: -1;
}

.event-offer {
  padding-top: 50px;
  padding-bottom: 50px;
  display: -webkit-box;
  display: flex;
}

.event-offer-course {
  width: 40%;
  font-family: "Panton-Bold", sans-serif;
  font-size: 2.3rem;
}

.event-offer-course div {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  margin-right: 40%;
  border: 1px solid #000;
  background-color: #fff;
  cursor: pointer;
  height: 75px;
}

.event-offer-course div p {
  text-align: center;
  padding: 25px;
  color: black;
}

.event-offer-course div.event-offer-active {
  background-color: #C59100;
}

.event-offer-course div.event-offer-active p {
  color: #fff;
}

.event-offer-course div:hover {
  background-color: #C59100;
}

.event-offer-course div:hover p {
  color: #fff;
}

.event-offer-list {
  width: 45%;
}

.event-offer-list h2 {
  font-family: "Panton-Bold", sans-serif;
  font-size: 3.4rem;
  padding-top: 10px;
  padding-left: 50px;
  padding-bottom: 35px;
}

.event-offer-list ul li {
  font-family: "Roboto-Light", sans-serif;
  font-size: 2.1rem;
  padding-left: 50px;
  padding-top: 7px;
  padding-bottom: 7px;
  background-image: url(../images/event-list-background.png);
  background-repeat: no-repeat;
  background-position: 0 50%;
}

.event-padding h2 {
  padding-left: 0;
}

.event-padding a {
  text-decoration: none;
  color: #000;
}

.event-info {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 50px;
  padding-bottom: 50px;
  border-top: 1px solid #C59100;
  border-bottom: 1px solid #C59100;
}

.event-info p {
  padding: 0 50px;
  font-family: "Panton-Bold", sans-serif;
  font-size: 2.5rem;
  line-height: 3rem;
}

.event-info p a {
  text-decoration: none;
  color: #000;
}

.event-form-header {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}

.event-form-header h2 {
  font-family: "Panton-Bold", sans-serif;
  font-size: 3.4rem;
}

.event-form-header img {
  position: relative;
  right: -35px;
}

.form-event {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 50px;
}

.form-event select {
  height: 56px;
}

.form-event input, .form-event textarea, .form-event select {
  width: 100%;
  padding: 15px;
  outline: none;
  font-family: "Panton-Bold", sans-serif;
  font-size: 1.8rem;
  border: none;
  border: 1px solid #000;
  resize: none;
  margin-bottom: 10px;
  color: #000;
}

.form-event select {
  background-image: url(../images/select-arrow.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.form-event textarea {
  height: 202px;
}

.form-event input:hover, .form-event input:focus, .form-event select:hover, .form-event select:focus, .form-event textarea:focus, .form-event textarea:hover {
  border: 1px solid #C59100 !important;
  box-shadow: 0 0 0 1px #C59100 !important;
  outline: none;
}

.form-event input[type="submit"]:hover, .form-event input[type="submit"]:focus {
  outline: none;
}

.form-event input::-webkit-input-placeholder, .form-event textarea::-webkit-input-placeholder {
  font-family: "Panton-Bold", sans-serif;
  font-size: 1.8rem;
  color: #000;
  opacity: 1;
}

.form-event input:-ms-input-placeholder, .form-event textarea:-ms-input-placeholder {
  font-family: "Panton-Bold", sans-serif;
  font-size: 1.8rem;
  color: #000;
  opacity: 1;
}

.form-event input::placeholder, .form-event textarea::placeholder {
  font-family: "Panton-Bold", sans-serif;
  font-size: 1.8rem;
  color: #000;
  opacity: 1;
}

.form-event input::-webkit-input-placeholder {
  font-family: "Panton-Bold", sans-serif;
  font-size: 1.8rem;
  color: #000;
  opacity: 1;
}

.form-event input:-moz-placeholder {
  /* Firefox 18- */
  font-family: "Panton-Bold", sans-serif;
  font-size: 1.8rem;
  color: #000;
  opacity: 1;
}

.form-event input::-moz-placeholder {
  /* Firefox 19+ */
  font-family: "Panton-Bold", sans-serif;
  font-size: 1.8rem;
  color: #000;
  opacity: 1;
}

.form-event input:-ms-input-placeholder {
  font-family: "Panton-Bold", sans-serif;
  font-size: 1.8rem;
  color: #000;
  opacity: 1;
}

.form-event-area1 {
  width: 28%;
  margin-right: 2.5%;
}

.form-event-area2 {
  width: 28%;
  margin-right: 2.5%;
}

.form-event-area3 {
  width: 39%;
}

.form-event-area4 {
  width: 69.5%;
  margin-left: 30.5%;
  display: -webkit-box;
  display: flex;
}

.form-event-area4 p {
  width: 44%;
  font-size: 1.7rem;
}

.form-event-area4 section {
  width: 56%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.form-event-area4 section input, .form-event-area4 section div:first-of-type {
  width: 30%;
}

.form-event-area4 section input:first-of-type, .form-event-area4 section div:first-of-type {
  margin-right: 5%;
}

.form-event-area4 section input[type="submit"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #C59100 !important;
  border-radius: 50px;
  border: none;
  color: #fff;
  padding: 0px;
}

.form-event-area4 section div:first-of-type {
  border: 1px solid black;
  margin-bottom: 20px;
  text-align: center;
}

.form-event-area4 .zgoda {
  width: 100%;
}

.form-event-area4 .zgoda input[type="checkbox"] {
  display: none;
}

.form-event-area4 .zgoda input[type="checkbox"] + label {
  color: #000;
  font-size: 1.7rem;
}

.form-event-area4 .zgoda input[type="checkbox"] + label span {
  display: inline-block;
  width: 26px;
  height: 24px;
  vertical-align: middle;
  border: 1px solid #000;
  cursor: pointer;
  margin-right: 20px;
}

.form-event-area4 .zgoda input[type="checkbox"]:checked + label span {
  background: url(../images/order-checkbox-arrow.svg) center no-repeat;
}

.form-event .style2 {
  margin-top: -75px;
}

@media screen and (max-width: 1700px) {
  .event-sushi img {
    max-width: 400px;
  }
}

@media screen and (max-width: 1500px) {
  .event-banner-text h3 span {
    font-size: 4rem;
  }
  .event-banner-text {
    background-size: 80px;
  }
  .event-banner-text h2 {
    font-size: 4rem;
    padding-left: 120px;
  }
  .event-banner-text h3 {
    font-size: 3.2rem;
    padding-left: 120px;
  }
  .event-offer-course {
    font-size: 1.9rem;
    width: 32%;
  }
  .event-offer-list h2 {
    font-size: 2.7rem;
    padding-bottom: 20px;
  }
  .event-offer-list ul li {
    font-size: 1.6rem;
  }
  .event-offer-course div {
    margin-right: 20%;
  }
  .event-sushi img {
    max-width: 350px;
  }
  .event-form-header h2 {
    font-size: 2.7rem;
  }
}

@media screen and (max-width: 1200px) {
  .event-sushi img {
    max-width: 250px;
  }
  .event-offer-course div {
    margin-right: 20%;
  }
  .event-offer {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 1050px) {
  .style2 {
    margin-top: 0px !important;
  }
  .event-sushi {
    display: none;
  }
  .event-offer {
    flex-wrap: wrap;
    padding-bottom: 10px;
  }
  .event-offer-course {
    width: 100%;
  }
  .event-offer-course div {
    width: 50%;
    margin: 0 auto;
  }
  .event-offer-list {
    width: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  .event-offer-list h2 {
    padding-top: 40px;
    padding-left: 0px;
  }
  .event-form-header {
    padding-bottom: 40px;
  }
  .form-event-area1 {
    width: 100%;
    margin-right: 0;
    -webkit-box-ordinal-group: 3;
            order: 2;
  }
  .form-event-area2 {
    width: 100%;
    margin-right: 0;
    -webkit-box-ordinal-group: 2;
            order: 1;
  }
  .form-event-area3 {
    width: 100%;
    margin-right: 0;
    -webkit-box-ordinal-group: 4;
            order: 3;
  }
  .form-event-area4 {
    width: 100%;
    -webkit-box-ordinal-group: 5;
            order: 4;
    margin-left: 0;
    flex-wrap: wrap;
  }
  .form-event-area4 p {
    width: 100%;
    padding-bottom: 20px;
  }
  .form-event-area4 section {
    width: 100%;
  }
  .event-offer.event-padding .event-offer-list {
    -webkit-box-align: start !important;
            align-items: flex-start !important;
  }
}

@media screen and (max-width: 700px) {
  .event-offer.event-padding .event-offer-list {
    -webkit-box-align: start !important;
            align-items: flex-start !important;
  }
  .event-offer.event-padding h2 {
    padding-left: 20px;
    padding-right: 20px;
    -webkit-box-pack: start;
            justify-content: flex-start;
  }
  .event-offer.event-padding a {
    text-decoration: none;
    color: #000;
  }
  .event-info p {
    font-size: 2.2rem;
    padding-left: 0px;
    padding-right: 0px;
  }
  .event-form-header img {
    max-width: 200px;
    right: -25px;
  }
  .event-offer-list ul li {
    padding-left: 30px;
    margin-left: 10px;
  }
  .event-offer {
    padding-left: 0px;
    padding-right: 0px;
  }
  .event-offer-course {
    padding-left: 20px;
    padding-right: 20px;
  }
  .event-banner {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
  }
  .event-banner-text {
    margin: 0;
    padding: 0;
    padding-top: 90px;
    background-position: top center;
    padding-left: 20px;
    padding-right: 20px;
  }
  .event-banner-text h3 {
    padding: 0;
    text-align: center;
  }
  .event-banner-text h2 {
    padding: 20px 0 20px 70px;
    background-size: 50px;
  }
}

@media screen and (max-width: 600px) {
  .event-offer-course div {
    width: 70%;
  }
}

@media screen and (max-width: 520px) {
  .form-event-area4 section {
    justify-content: space-around;
  }
  .form-event-area4 section input, .form-event-area4 section div:first-of-type {
    width: 47.5%;
  }
  .form-event-area4 section input:first-of-type, .form-event-area4 section div:first-of-type {
    margin: 0;
    margin-bottom: 20px;
  }
  .form-event-area4 section input:first-of-type {
    margin-right: 5%;
  }
  .event-offer-course div {
    width: 100%;
  }
  .event-form-header img {
    display: none;
  }
  .event-banner-text h2 {
    font-size: 3rem;
  }
}

@media screen and (max-width: 350px) {
  .form-event-area4 section input:first-of-type {
    font-size: 1.6rem;
  }
  .form-event-area4 section input:first-of-type::-webkit-input-placeholder {
    font-size: 1.6rem;
  }
  .form-event-area4 section input:first-of-type:-ms-input-placeholder {
    font-size: 1.6rem;
  }
  .form-event-area4 section input:first-of-type::placeholder {
    font-size: 1.6rem;
  }
}

.event-categories {
  padding: 20px 0 40px 0;
  margin-top: 150px;
}

.event-categories ul {
  display: -webkit-box;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.event-categories ul li {
  font-family: "Panton-Bold", sans-serif;
  font-size: 2.8rem;
  padding: 10px 0px 10px 70px;
  background-repeat: no-repeat;
  background-position: left 15px top 50%;
  background-size: 45px;
  cursor: pointer;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.event-categories ul li:hover {
  opacity: 0.5;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.event-categories ul li.event-active {
  color: #C59100;
}

.event-categories ul li.event-active:hover {
  opacity: 1;
}

.event-categories1 {
  background-image: url(../images/event-list-sign1.svg);
}

.event-categories1.event-active {
  background-image: url(../images/event-list-sign1-active.svg);
}

.event-categories2 {
  background-image: url(../images/event-list-sign2.svg);
}

.event-categories2.event-active {
  background-image: url(../images/event-list-sign2-active.svg);
}

.event-categories3 {
  background-image: url(../images/event-list-sign3.svg);
}

.event-categories3.event-active {
  background-image: url(../images/event-list-sign3-active.svg);
}

.event-categories4.event-active {
  background-image: url(../images/event-list-sign4-active.svg);
}

.event-categories4 {
  background-image: url(../images/event-list-sign4.svg);
}

.event-categories5 {
  background-image: url(../images/event-list-sign5.svg);
}

.event-categories5.event-active {
  background-image: url(../images/event-list-sign5-active.svg);
}

.event-elements {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.event-element:nth-child(3n+3) {
  margin-right: 0;
}

.event-element {
  width: 29%;
  min-height: 525px;
  border: 2px solid #fff;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  margin-right: 6.5%;
  margin-bottom: 80px;
}

.event-element-wrapper1 {
  width: 100%;
}

.event-element-wrapper2 {
  width: 100%;
}

.event-element__background {
  height: 320px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.event-element__header h2 {
  padding-top: 10px;
  height: 70px;
  line-height: 29px;
  white-space: pre-wrap;
  font-family: "Panton-Bold", sans-serif;
  font-size: 2.8rem;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-line-clamp: 2;
  display: block;
  /* Fallback for non-webkit */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.event-element__text {
  display: none;
  padding-top: 30px;
}

.event-element__text p {
  font-size: 1.9rem;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 2.5rem;
  padding-left: 15px;
  padding-right: 15px;
}

.event-element__price p {
  padding-top: 10px;
  padding-bottom: 20px;
  font-family: "Panton-ExtraLight", sans-serif;
  font-size: 1.9rem;
  padding-left: 15px;
  padding-right: 15px;
}

.event-element__price p span {
  font-family: "Panton-Bold", sans-serif;
  font-size: 2.9rem;
}

.event-element__button {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
          justify-content: flex-end;
}

.event-element__button a {
  text-align: right;
}

.event-element__button button {
  cursor: pointer;
  margin-top: 20px;
  padding: 10px;
  font-size: 2.4rem;
  border: none;
  border: 1px solid #000;
  background-color: #fff;
}

.event-element:hover {
  border: 2px solid #000;
  -webkit-transition: all 1.3s;
  transition: all 1.3s;
  min-height: 525px;
}

.event-element:hover .event-element__background {
  display: none;
}

.event-element:hover .event-element__button button {
  background-color: #000;
  color: #fff;
}

.event-element:hover .event-element__text {
  display: block;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.event-element:hover .event-element__header h2 {
  overflow: visible;
  text-overflow: inherit;
  height: auto;
  display: block;
}

.event-element1 {
  background-image: url(../images/Musso/Wydarzenia/1.Kurs_Sushi/Kurs_Sushi_Miniatura.jpg);
}

.event-element2 {
  background-image: url(../images/Musso/Wydarzenia/2.Warsztaty_Sushi_dla_Klienta_Korporacyjnego/Kurs_Sushi_Miniatura.jpg);
}

.event-element3 {
  background-image: url(../images/Musso/Wydarzenia/3.Warsztaty_origami/Warsztaty_Origami_Miniatura.jpg);
}

.event-element4 {
  background-image: url(../images/Musso/Wydarzenia/4.Voucher/Voucher_Miniaturka.jpg);
}

.event-element5 {
  background-image: url(../images/Musso/Wydarzenia/5.Walentynki/Walentynki_miniaturka.jpg);
}

.event-element6 {
  background-image: url(../images/Musso/Wydarzenia/6.Dzień_kobiet/Dzień_Kobiet_Miniaturka.jpg);
}

.event-element7 {
  background-image: url(../images/Musso/Wydarzenia/7.Targ_Rybny/Targ_Rybny_Miniaturka.jpg);
}

.event-element8 {
  background-image: url(../images/event-element3.jpg);
}

.event-element9 {
  background-image: url(../images/event-element9.jpg);
}

@media screen and (max-width: 1500px) {
  .event-categories ul li {
    font-size: 2rem;
    background-size: 35px;
    padding-left: 60px;
  }
  .event-element__header h2 {
    font-size: 2rem;
    line-height: 2.2rem;
    height: 55px;
  }
  .event-element__price p {
    font-size: 1.4rem;
  }
  .event-element__price p span {
    font-size: 2rem;
  }
  .event-element__button button {
    font-size: 1.8rem;
  }
  .event-element__price p {
    padding-bottom: 0px;
  }
  .event-element {
    min-height: 425px;
  }
  .event-element:hover {
    min-height: 425px;
  }
  .event-element__text p {
    font-size: 1.4rem;
  }
  .event-element__background {
    height: 300px;
  }
}

@media screen and (max-width: 1200px) {
  .event-element__background {
    height: 270px;
  }
}

@media screen and (max-width: 1050px) {
  .event-element {
    margin-right: 2%;
    width: 31%;
  }
  .margin-mine {
    margin-left: 2%;
  }
}

@media screen and (max-width: 900px) {
  .margin-mine {
    margin-left: 0%;
  }
}


@media screen and (max-width: 900px) {
  .event-element {
    margin-right: 1%;
    width: 49%;
    margin-bottom: 50px;
  }
  .event-element:nth-child(2n+2) {
    margin-right: 0;
  }
  .event-elements {
    justify-content: space-around;
  }
}

@media screen and (max-width: 500px) {
  .event-element {
    margin-right: 0%;
    width: 100%;
    margin-bottom: 50px;
    min-height: 430px !important;
  }
  .event-element:hover {
    min-height: 430px !important;
  }
  .event-categories ul {
    margin: 0 auto;
    -webkit-box-pack: start;
            justify-content: flex-start;
  }
  .event-categories ul li {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .event-categories {
    padding-top: 0px;
  }
}

.main-slider {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  z-index: 11;
  position: relative;
  margin-top: 150px;
}

.slide {
  max-width: 1920px;
  width: 100%;
}

.slide__wrapper {
  width: 85%;
  margin: 0 auto;
}

.slide__content {
  padding-top: 80px;
}

.slide__content p {
  font-family: "Panton-ExtraLight", sans-serif;
  font-size: 3.5rem;
  color: #fff;
}

.slide__buttons a button {
  margin-top: 30px;
  font-family: "Panton-Bold", sans-serif;
  font-size: 1.5rem;
  border: none;
  background: none;
  border: 1px solid #000;
  border-radius: 50px;
  padding: 10px 10px;
  width: 145px;
  cursor: pointer;
  outline: none;
}

.slide__buttons a:first-child button {
  background: #000;
  color: #fff;
  margin-right: 30px;
}

.slide__buttons a:last-child button {
  background: #fff;
  color: #000;
}

.slide {
  background-color: lightgrey;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  background-position: center;
}

.slide1 {
  background-image: url(../images/Musso/Slider/Musso_Sushi_1.jpg);
}

.slide2 {
  background-image: url(../images/Musso/Slider/Musso_Sushi_2.jpg);
}

.slide3 {
  background-image: url(../images/Musso/Slider/Musso_Sushi_3.jpg);
}

.slide4 {
  background-image: url(../images/Musso/Slider/Musso_Sushi_4.jpg);
}

.slide5 {
  background-image: url(../images/Musso/Slider/Musso_Sushi_5.jpg);
}

.slide__hide1 {
  width: 100%;
  height: 300px;
  background-color: #F2F6F7;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  position: relative;
  top: 450px;
  margin-left: -150px;
  position: absolute;
  z-index: 10;
}

.slide__hide2 {
  width: 100%;
  height: 200px;
  background-color: #F2F6F7;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  position: relative;
  top: 600px;
  margin-left: 100px;
  margin-left: 100px;
  position: absolute;
  z-index: 10;
}

.slider-container.swiper-container {
  height: 570px;
  position: relative;
}

.slider-container.swiper-container .swiper-button-next {
  top: 35%;
  right: 10%;
  left: auto;
  background-image: url(../images/main-slider-arrow1.svg);
  background-size: 20px;
}

.slider-container.swiper-container .swiper-button-prev {
  top: 28%;
  left: auto;
  right: 10%;
  background-size: 20px;
  background-image: url(../images/main-slider-arrow2.svg);
}

.main-slider-button {
  z-index: 13;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: #000;
  margin-left: 70%;
  position: absolute;
  top: 520px;
  cursor: pointer;
  background-image: url(../images/main-slider-arrow3.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.order-main-heading h2 {
  font-family: "Panton-Bold", sans-serif;
  background-color: #F2F6F7;
  font-size: 7.2rem;
  padding-left: 50px;
  padding-bottom: 40px;
  padding-top: 10px;
}

.order-main-heading h2 span {
  color: #C59100;
  font-size: 5.5rem;
  padding-right: 3%;
}

.order-main-pick-list {
  background: #F2F6F7;
}

.order-main-active {
  background: #fff;
  border-bottom: none !important;
}

.order-main-active a {
  color: #000 !important;
}

.order-main-pick-list ul li:hover {
  background: #fff;
}

.order-main-pick-list ul li:hover a {
  color: #000;
}

.order-navigation {
  position: relative;
}

.order-navigation a {
  text-decoration: none;
  color: #000;
  padding: 10px 20px;
  border: none;
  border: 1px solid #C59100;
  border-radius: 50px;
  background-color: #fff;
  font-size: 2rem;
  position: absolute;
  right: 50px;
  top: 20px;
}

.order-navigation a:hover {
  color: #fff;
  border: 1px solid #C59100;
  background-color: #C59100;
}

@media screen and (max-width: 1650px) {
  .main-slider-button {
    margin-left: 72%;
  }
}

@media screen and (max-width: 1550px) {
  .main-slider {
    margin-top: 130px;
  }
}

@media screen and (max-width: 1500px) {
  .slide__content p {
    font-size: 2.5rem;
  }
  .slide__buttons button {
    font-size: 1.2rem;
    width: 120px;
  }
  .order-main-heading h2 span {
    font-size: 3.9rem;
    padding-right: 2%;
  }
  .order-main-heading h2 {
    font-size: 5.2rem;
  }
  .slide__hide2 {
    top: 540px;
  }
  .slide__hide1 {
    -webkit-transform: rotate(11deg);
            transform: rotate(11deg);
    top: 410px;
  }
  .main-slider-button {
    margin-left: 70%;
    top: 475px;
  }
  .main-slider {
    padding-top: 0px;
    padding-bottom: 10px;
  }
  .slider-container.swiper-container {
    height: 520px;
  }
}

@media screen and (max-width: 1385px) {
  .main-slider-button {
    margin-left: 71%;
  }
}

@media screen and (max-width: 1250px) {
  .main-slider-button {
    margin-left: 73%;
  }
}

@media screen and (max-width: 1200px) {
  .slide__hide2 {
    top: 490px;
  }
  .slide__hide1 {
    -webkit-transform: rotate(11deg);
            transform: rotate(11deg);
    top: 380px;
  }
  .main-slider-button {
    margin-left: 71%;
    top: 435px;
  }
  .slider-container.swiper-container {
    height: 500px;
  }
  .slide {
    height: 470px;
  }
  .slide__wrapper {
    width: 90%;
  }
  .slider-container.swiper-container .swiper-button-next, .slider-container.swiper-container .swiper-button-prev {
    right: 3%;
  }
}

@media screen and (max-width: 1050px) {
  .main-slider {
    margin-top: 100px;
  }
  .slide__hide1 {
    top: 350px;
  }
  .slide__hide2 {
    top: 450px;
  }
  .main-slider-button {
    top: 395px;
  }
  .slider-container.swiper-container {
    height: 450px;
  }
  .slide {
    height: 430px;
  }
  .order-navigation {
    padding-top: 0px;
    padding-bottom: 80px;
  }
  .order-navigation a {
    color: #000;
    padding: 10px 20px;
    border: none;
    border: 1px solid #C59100;
    border-radius: 50px;
    background-color: #fff;
    font-size: 2rem;
    position: absolute;
    right: auto;
    top: 50px;
  }
  .order-content {
    padding-bottom: 0px;
  }
}

@media screen and (max-width: 950px) {
  .main-slider-button {
    margin-left: 73%;
  }
}

@media screen and (max-width: 800px) {
  .slide__hide1 {
    top: 340px;
  }
  .slide__hide2 {
    top: 420px;
  }
  .main-slider-button {
    margin-left: 71%;
    top: 375px;
  }
  .order-main-heading h2 span {
    display: block;
  }
}

@media screen and (max-width: 700px) {
  .slide__hide1, .slide__hide2, .main-slider-button {
    display: none;
  }
}

@media screen and (max-width: 700px) {
  .main-slider {
    padding-top: 10px;
  }
  .slide {
    background-size: 1200px;
  }
  .slider-container.swiper-container {
    height: 300px;
  }
  .main-slider {
    padding-bottom: 0;
  }
  .slide__content {
    padding-top: 50px;
  }
  .order-main-heading h2 {
    padding-top: 30px;
    text-align: center;
    padding-left: 0;
  }
  .order-main-pick-list {
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 500px) {
  .slide {
    background-size: 1100px;
  }
  .slide__content p {
    font-family: "Panton-Regular", sans-serif;
  }
  .order-main-heading h2 span {
    font-size: 2.9rem;
  }
  .order-main-heading h2 {
    font-size: 4rem;
  }
}

@media screen and (max-width: 400px) {
  .slide {
    background-size: 1050px;
  }
}

@media screen and (max-width: 330px) {
  .slider-container.swiper-container .swiper-button-next, .slider-container.swiper-container .swiper-button-prev {
    right: 1%;
  }
}

.main-chef-wrapper {
  padding-top: 50px;
  border-top: 1px solid #C59100;
  border-bottom: 1px solid #C59100;
}

.main-chef {
  display: -webkit-box;
  display: flex;
}

.main-chef1 {
  width: 60%;
  background-image: url(../images/main-chef-background.png);
  background-repeat: no-repeat;
  background-size: 480px;
  background-position: left 220px bottom 0;
}

.main-chef1-heading {
  position: relative;
  height: 100px;
  margin-bottom: 20px;
}

.main-chef1-heading div {
  height: 80px;
  width: 145px;
  border: 1px solid #000;
}

.main-chef1-heading h2 {
  font-size: 3rem;
  background-color: #fff;
  position: relative;
  top: -65px;
  padding: 10px 0px 10px 30px;
  font-family: "Panton-Regular", sans-serif;
}

.main-chef1-heading h2 span {
  font-family: "Panton-Bold", sans-serif;
  color: #C59100;
}

.main-chef1-quote {
  font-family: "Panton-Light", sans-serif;
  font-size: 2.5rem;
  line-height: 31px;
}

.main-chef1-quote p:last-child {
  padding-top: 30px;
  padding-bottom: 70px;
}

.main-chef2-wrapper {
  width: 450px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.main-chef2 {
  width: 100%;
  position: relative;
  top: -30px;
}

.main-chef2-heading {
  position: relative;
  width: 100%;
  height: 100px;
  margin-bottom: 20px;
}

.main-chef2-heading div {
  height: 80px;
  width: 50%;
  border: 1px solid #000;
}

.main-chef2-heading h2 {
  font-size: 3rem;
  background-color: #fff;
  position: relative;
  top: -65px;
  padding: 10px 0px 10px 30px;
  font-family: "Panton-Regular", sans-serif;
}

.main-chef2-heading h2 span {
  font-family: "Panton-Bold", sans-serif;
  color: #C59100;
}

.main-chef2-row {
  width: 100%;
  display: -webkit-box;
  display: flex;
  height: 195px;
  text-decoration: none;
  color: #000;
}

.main-chef2-row-text {
  width: 50%;
}

.main-chef2-row-text h2 {
  font-family: "Panton-Bold", sans-serif;
  font-size: 2.4rem;
  padding: 15px 0;
  margin-right: 15px;
  border-bottom: 1px solid #000;
}

.main-chef2-row-text p {
  display: block;
  font-family: "Panton-Light", sans-serif;
  font-size: 1.9rem;
  line-height: 2.75rem;
  margin: 15px;
  height: 110px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: pre-wrap;
}

.main-chef2-row-img {
  height: 195px;
  width: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.main-chef2-row-img h2 {
  background-color: #000;
  position: relative;
  top: 30px;
  color: #fff;
  float: left;
  width: auto;
  padding: 8px 20px;
  font-family: "Panton-Light", sans-serif;
  font-size: 1.5rem;
}

.main-chef-slide-img1 {
  background-image: url(../images/main-chef2.jpg);
}

.main-chef-slide-img2 {
  background-image: url(../images/main-chef2.jpg);
}

.main-chef-slide-img3 {
  background-image: url(../images/main-chef1.jpg);
}

.main-chef-slide-img4 {
  background-image: url(../images/main-chef1.jpg);
}

.swiper-container.main-chef-slider-container {
  height: 390px;
}

.swiper-container.main-chef-slider-container .main-chef-slide h2 {
  margin-right: 15px;
  margin-left: 15px;
}

.swiper-container.main-chef-slider-container .main-chef-slide p {
  margin-right: 15px;
  margin-left: 15px;
}

.main-chef2-row-img h2 {
  margin-left: 0px !important;
}

.swiper-container.main-chef-slider-container .swiper-pagination {
  left: 25%;
  bottom: 0;
}

.swiper-container.main-chef-slider-container .swiper-pagination-bullet {
  background: #000;
  opacity: 1;
  height: 12px;
  width: 12px;
}

.swiper-container.main-chef-slider-container .swiper-pagination-bullet-active {
  background: #C59100;
}

@media screen and (max-width: 1500px) {
  .main-chef1-heading h2, .main-chef2-heading h2 {
    font-size: 2.1rem;
  }
  .main-chef1-quote, .main-chef2-row-text h2 {
    font-size: 1.7rem;
  }
  .main-chef2-row-text p {
    font-size: 1.5rem;
  }
  .main-chef1-quote {
    line-height: 25px;
  }
  .main-chef1 {
    background-size: 400px;
    background-position: left 120px bottom 0;
  }
  .main-chef1-quote p:last-child {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 1500px) {
  .main-chef {
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  .main-chef1-heading h2, .main-chef2-heading h2 {
    top: -60px;
  }
}

@media screen and (max-width: 1050px) {
  .main-chef {
    flex-wrap: wrap;
    -webkit-box-pack: center;
            justify-content: center;
  }
  .main-chef1 {
    width: 510px;
  }
  .main-chef2-wrapper {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .main-chef2 {
    top: 0px;
  }
}

@media screen and (max-width: 550px) {
  .main-chef1 {
    background: none!important;
  }
  .main-chef1-quote {
    text-align: justify;
  }
  .main-chef1-quote p br {
    content: "";
  }
  .main-chef2-wrapper {
    width: 100%;
  }
  .main-chef1-quote p:last-child {
    padding-bottom: 0px;
  }
}

.main-form-header {
  margin-top: 80px;
  padding: 50px 0;
  background-image: url(../images/main-form-background.jpg);
  background-position: right 50px center;
  background-repeat: no-repeat;
}

.main-form-header h2 {
  font-size: 7.4rem;
  color: #C59100;
}

.main-form-header h3 {
  font-size: 9.8rem;
  font-family: "Panton-Bold", sans-serif;
}

#main-form-data {
  background-image: url(../images/main-form-icon1.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 30px;
}

#main-form-hour {
  background-image: url(../images/main-form-icon2.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 30px;
}

@media screen and (max-width: 1050px) {
  .main-form-area1 {
    -webkit-box-ordinal-group: 2;
            order: 1;
  }
}

.main-form {
  z-index: 2;
  padding-bottom: 0px;
}

#map2 {
  height: 600px;
  width: 100%;
}

.map-header-wrapper {
  position: relative;
}

.map-header-figure {
  position: absolute;
  z-index: -1;
  top: -100px;
}

.map-header {
  padding-top: 80px;
  padding-bottom: 40px;
}

.map-header h2 {
  z-index: 2;
  font-family: "Panton-Bold", sans-serif;
  font-size: 17.5rem;
  color: #E6E6E6;
  text-align: right;
}

.map {
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}

.map-decription {
  border: 10px solid rgba(255, 255, 255, 0.6);
  background-clip: padding-box;
  background-color: #fff;
  padding: 20px 20px;
  position: absolute;
  top: 50px;
  bottom: 50px;
  right: 50px;
  width: 375px;
  z-index: 999;
  text-align: center;

  height: 250px;
}

.map-decription h2 {
  font-family: "KaushanScript-Regular", sans-serif;
  font-size: 3.6rem;
  color: #C59100;
  padding-bottom: 20px;
  padding-top: 5px;
}

.map-decription address {
  font-family: "Panton-BoldItalic", sans-serif;
  font-size: 2.4rem;
}

.map-decription p, .map-decription a {
  font-size: 2.2rem;
}

.map-decription a {
  text-decoration: none;
  color: #000;
  display: inline-block;
}

.map-decription a span {
  color: #C59100;
}

.map-decription a:nth-of-type(2) {
  padding-bottom: 15px;
}

.map-decription address, .map-decription p, .map-decription a {
  line-height: 3rem;
}

@media screen and (max-width: 1500px) {
  .main-form-header h2 {
    font-size: 5.2rem;
  }
  .main-form-header h3 {
    font-size: 7rem;
  }
  .map-decription {
    height: 200px;
  }
  .map-decription h2 {
    font-size: 2.5;
  }
  .map-decription address {
    font-size: 1.7rem;
  }
  .map-decription p, .map-decription a {
    font-size: 1.5rem;
  }
  .main-form-header {
    background-position: right center;
    background-size: contain;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 20px;
  }
  .map-header h2 {
    font-size: 13rem;
  }
  .map-header-figure img {
    width: 600px;
  }
  .map-decription {
    width: 300px;
    padding: 20px;
  }
  .map-decription address, .map-decription p, .map-decription a {
    line-height: 2rem;
  }
  #map2 {
    height: 500px;
  }
}

@media screen and (max-width: 1200px) {
  .main-form-header {
    padding-left: 20px;
    padding-right: 20px;
  }
  .map-header-figure img {
    width: 500px;
    top: -200px;
  }
}

@media screen and (max-width: 1050px) {
  .map-header-figure {
    display: none;
  }
  .map-header {
    padding-top: 40px;
  }
  .map {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 1000px) {
  .map-decription {
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
    left: auto;
    margin: 0 auto;
  }
}

@media screen and (max-width: 900px) {
  .main-form-header {
    background: none!important;
    margin-top: 20px;
  }
}

@media screen and (max-width: 700px) {
  .main-form-header {
    text-align: center;
  }
  .map-header h2 {
    font-size: 10rem;
    text-align: center;
  }
}

@media screen and (max-width: 500px) {
  .main-form-header h2 {
    font-size: 3rem;
  }
  .main-form-header h3 {
    font-size: 4rem;
  }
  .map-header h2 {
    font-size: 5rem;
  }
  #map2 {
    height: 400px;
  }
}

.order1 {
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
}

.order1__heading {
  font-size: 3rem;
  font-family: "Roboto-Black", sans-serif;
  text-align: center;
  padding: 80px 0 0px 0;
  color: #3C3C3B;
}

.order1 h3 {
  font-size: 2rem;
  padding: 20px 0;
}

.order1-element-wrapper {
  border-top: 1px solid #1D1D1B;
  border-bottom: 1px solid #1D1D1B;
}

.order1-element {
  display: -webkit-box;
  display: flex;
  padding: 40px 0;
  border-bottom: 1px dashed #1D1D1B;
}

.order1-element__image {
  width: 15%;
  margin-right: 10%;
  min-height: 1px;
}

.order1-element__image figure img {
  max-width: 332px;
  height: 200px;
}

.order1-element__data {
  width: 70%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.order1-element__data h2 {
  font-size: 2rem;
}

.order1-element__data p, .order1-element__data s {
  font-size: 2.2rem;
}

.order1-element__data input {
  font-family: "Panton-Regular", sans-serif;
  font-size: 2rem;
  width: 40px;
  outline: none;
  text-align: center;
}

.order1-element__data div {
  display: -webkit-box;
 /* display: flex;*/
}

.order1-element__data-p {
  padding-left: 10px;
  color: #C59100;
}

.order1-element__x {
  width: 5%;
  font-family: "Roboto-Black", sans-serif;
  font-size: 2.5rem;
  text-align: right;
}

.order1-element__x img {
  width: 20px;
}

.order1-element:last-child {
  border-bottom: none;
}

.order-summury-container {
  width: 100%;
  height: 400px;
  background-color: #F4F4F4;
  margin-top: 30px;
}

.order-summary {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
}

.sending-info {
  width: 35%;
  margin-left: 50%;
}

.sending-info div {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding: 20px 0;
}

.sending-info div p {
  font-family: "Panton-Bold", sans-serif;
  font-size: 2rem;
  line-height: 3rem;
}

.sending-info div:first-child {
  border-bottom: 1px solid #1D1D1D;
  padding-top: 30px;
}

.order1__buttons {
  padding-top: 70px;
}

.order-summury-container2 {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.order-summary-buttons {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
}

.order-summary-buttons a {
  width: 40%;
  border: none;
  font-family: "Panton-Bold", sans-serif;
  font-size: 1.9rem;
  cursor: pointer;
  padding: 10px;
  text-align: center;
  text-decoration: none;
}

.order-summary-buttons a:first-child {
  border: 1px solid #C59100;
  background: #F4F4F4;
  margin-right: 1%;
  color: #000;
}

.order-summary-buttons a:last-child {
  margin-left: 1%;
  background-color: #C59100;
  color: #fff;
}

.order2-heading {
  width: 100%;
  font-size: 3rem;
  font-family: "Roboto-Black", sans-serif;
  text-align: center;
  color: #3C3C3B;
  padding-bottom: 0px;
  border-bottom: 1px solid #1D1D1B;
  margin-bottom: 40px;
}

.order3-heading {
  padding-top: 80px;
}

.orderinfo {
  padding-top: 10px;
  line-height: 18px;
  font-size: 1.5rem;
  padding-left: 50px;
}

.orderinfo h4 {
  font-size: 1.5rem;
  font-family: "Panton-Bold", sans-serif;
}

.orderinfo p:nth-child(5) {
  padding-bottom: 20px;
}

#onlinelabel {
  display: none;
}

.order4-heading {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1500px) {
  .heading-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }
  .order-form-radio1 ul li:first-child label {
    padding-bottom: 30px;
  }
  .order-bar {
    padding-top: 130px !important;
  }
  .order1__heading {
    font-size: 2.2rem;
    padding-top: 50px;
    /*padding-bottom: 30px;*/
  }
  .order2-heading {
    font-size: 2.2rem;
  }
  .order1-element__data h2 {
    font-size: 1.5rem;
  }
  .order1-element__data p, .order1-element__data s, .order1-element__data input {
    font-size: 1.7rem;
  }
  .order1 h3 {
    font-size: 1.5rem;
  }
  .order1-element__data input {
    width: 30px;
  }
  .order1 {
    max-width: 1200px;
  }
  .sending-info div p {
    font-size: 1.5rem;
  }
  .order-summary-buttons button {
    font-size: 1.5rem;
  }
  .order-summury-container {
    height: 300px;
  }
  .order1__buttons {
    padding-top: 30px;
  }
  .order1-element {
    padding: 25px 0;
  }
  .order1-element__data {
    margin-left: 69px;
  }
}

@media screen and (max-width: 1200px) {
  .heading-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .order1 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .order1-element {
    display: -webkit-box;
    display: flex;
    padding: 40px 0;
    border-bottom: 1px dashed #1D1D1B;
  }
  .order1-element__image {
    width: 266px;
  }
  .order-bar-circle-container p {
    text-align: center;
  }
  .order-form-radio1 ul li:first-child label {
    padding-bottom: 8px;
  }
}

@media screen and (max-width: 900px) {
  #colletionlabel {
    margin-left: 40.5px;
  }
}

@media screen and (max-width: 500px) {
  .order1-element {
    flex-wrap: wrap;
  }
  .order1-element__data--input {
    margin-bottom: -25px;
    margin-top: 15px;
  }
  .order1-element__data--input > div{
    display: flex;
    flex-direction: row;
    margin-top: 9px;
  }
  .order1-element {
    display: -webkit-box;
    display: flex;
    padding: 40px 0;
    border-bottom: 1px dashed #1D1D1B;
  }
  .order1-element__image {
    width: 100%;
    margin: 0;
    text-align: center;
  }
  .order1-element__data {
    width: 100%;
    width: 266px;
    margin: 15px auto 0px auto;
  }
  .order1-element__x {
    width: 100%;
    text-align: right;
    width: 266px;
    margin: 0 auto;
  }
  .sending-info {
    width: 100%;
    margin: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .order-bar-circle-container4 p {
    padding-right: 10px;
  }
  .order2-heading {
    padding-top: 50px;
  }
  .order-form-radio1 ul li:first-child label {
    padding-bottom: 30px;
  }
}

.order4-wrapper {
  display: -webkit-box;
  display: flex;
  width: 100%;
  margin: 0 auto -50px auto;
}

.order4 {
  width: 60%;
  margin-left: 0;
  margin-right: 5%;
  border-top: 0px;
}

.order4-element-wrapper {
  border-top: 0px;
}

.sidebar {
  width: 35%;
  padding-top: 40px;
}

.sidebar-element {
  padding-bottom: 50px;
}

.sidebar-element__header {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  border-bottom: 1px solid black;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.sidebar-element__header h2 {
  font-family: "Roboto-Black", sans-serif;
  font-size: 3.5rem;
  color: #3C3C3B;
}

.sidebar-element__header a {
  width: 30px;
  margin-right: 10px;
}

.sidebar-element__header a img {
  max-width: 30px;
}

.sidebar-element__content p, .sidebar-element__content h5 {
  font-size: 2rem;
}

.sidebar-element__content p:nth-of-type(4) {
  padding-bottom: 20px;
}

.sidebar-element__content h5 {
  padding-left: 35px;
  background-image: url(../images/sidebar-radio.svg);
  background-repeat: no-repeat;
  background-position: left 5px center;
}

.padding-top {
  margin-top: 50px;
}

.sending-info4 {
  width: 100%;
  margin: 0;
  background-color: #F4F4F4;
}

.sending-info4 div {
  margin-left: 10%;
  margin-right: 10%;
}

.sending-info4 div:nth-child(3) > p {
  font-size: 1.8rem;
  font-family: "Roboto-Light", sans-serif;
}

.sending-info4 button {
  background: #C59100;
  width: 100%;
  padding: 30px 50px;
  border: none;
  text-align: center;
  color: #fff;
  font-family: "Panton-Bold", sans-serif;
  font-size: 2.8rem;
}

.order4-element__image {
  width: 266px;
  margin-right: 5%;
}

.summary-logo {
  margin: 0 auto;
  display: block;
  padding-top: 150px;
  width: 400px;
}

.summary-container {
  text-align: center;
  margin: 0 auto;
  background-color: #F4F4F4;
  height: 400px;
  margin: 50px auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  justify-content: space-around;
  padding-top: 50px;
  padding-bottom: 50px;
}

.summary-container h2 {
  font-family: "Roboto-Bold", sans-serif;
  font-size: 5.5rem;
  border: 2px solid #C59100;
  width: 60%;
  margin: 0 auto;
  padding: 30px 50px;
}

.summary-container p {
  font-family: "Roboto-Light", sans-serif;
  font-size: 4.1rem;
}

.summary-ok {
  margin: 0 auto;
  display: block;
  max-width: 100px;
}

@media screen and (max-width: 1500px) {
  .sidebar-element__header h2 {
    font-size: 2.4rem;
  }
  .sidebar-element__content p, .sidebar-element__content h5 {
    font-size: 1.4rem;
  }
  .sending-info4 div:nth-child(3) > p {
    font-size: 1.2rem;
    line-height: 15px;
  }
  .sending-info4 button {
    font-size: 2rem;
  }
}

@media screen and (max-width: 1500px) {
  .order4-wrapper {
    padding-right: 20px;
  }
  .summary-logo {
    width: 300px;
  }
  .summary-container {
    height: 300px;
    margin: 50px auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .summary-container h2 {
    font-size: 3.9rem;
    width: 60%;
    padding: 30px 50px;
  }
  .summary-container p {
    font-family: "Roboto-Light", sans-serif;
    font-size: 3rem;
  }
  .summary-ok {
    max-width: 80px;
  }
}

@media screen and (max-width: 900px) {
  .order4 {
    width: 100%;
    margin: 0;
  }
  .order4-wrapper {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
  }
  .order4-wrapper {
    padding-right: 0px;
  }
  .sidebar {
    display: -webkit-box;
    display: flex;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .sidebar-flex {
    width: 55%;
    margin-right: 5%;
  }
  .sending-info4 {
    width: 40%;
  }
}

@media screen and (max-width: 800px) {
  .order4-wrapper {
    padding-right: 20px;
  }
  .summary-logo {
    width: 250px;
  }
  .summary-container {
    height: 300px;
    margin: 50px auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .summary-container h2 {
    font-size: 3.9rem;
    width: 80%;
    padding: 30px 50px;
  }
  .summary-container p {
    font-family: "Roboto-Light", sans-serif;
    font-size: 3rem;
  }
  .summary-ok {
    max-width: 60px;
  }
}

@media screen and (max-width: 600px) {
  .sidebar {
    flex-wrap: wrap;
  }
  .sidebar-flex {
    width: 100%;
    margin-right: 0%;
  }
  .sending-info4 {
    width: 100%;
  }
  .order4-element__image {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
  }
  .summary-container {
    height: auto;
    margin: 50px auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .summary-container h2 {
    border: none;
    font-size: 3.9rem;
    width: 80%;
    padding: 20px 20px;
  }
  .summary-container p {
    padding: 10px 20px;
  }
}

@-webkit-keyframes work-button {
  0% {
    background-position: right 10px bottom 35%;
  }
  50% {
    background-position: right 10px bottom 60%;
  }
  100% {
    background-position: right 10px bottom 35%;
  }
}

@keyframes work-button {
  0% {
    background-position: right 10px bottom 35%;
  }
  50% {
    background-position: right 10px bottom 60%;
  }
  100% {
    background-position: right 10px bottom 35%;
  }
}

.order-bar {
  padding-top: 150px;
  max-width: 1700px;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  position: relative;
}

.order-bar-circle-container {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  width: 25%;
}

.order-bar-circle-container p {
  font-size: 1.8rem;
  padding-top: 15px;
}

.order-bar-circle {
  width: 55px;
  height: 55px;
  border-radius: 100%;
  z-index: 10;
  background-color: #fff;
}

.order-bar-circle-container1 {
  position: relative;
}

.order-bar-circle-container1:after {
  content: "";
  width: 50%;
  right: 0;
  position: absolute;
  height: 1px;
  background: #9B9B97;
  top: 27px;
  z-index: -1;
}

.order-bar-circle-container2 {
  position: relative;
}

.order-bar-circle-container2:after {
  content: "";
  width: 50%;
  right: 0;
  position: absolute;
  height: 1px;
  background: #9B9B97;
  top: 27px;
  z-index: -1;
}

.order-bar-circle-container2:before {
  content: "";
  width: 50%;
  left: 0;
  position: absolute;
  height: 1px;
  background: #9B9B97;
  top: 27px;
  z-index: -1;
}

.order-bar-circle-container3 {
  position: relative;
}

.order-bar-circle-container3:after {
  content: "";
  width: 50%;
  right: 0;
  position: absolute;
  height: 1px;
  background: #9B9B97;
  top: 27px;
  z-index: -1;
}

.order-bar-circle-container3:before {
  content: "";
  width: 50%;
  left: 0;
  position: absolute;
  height: 1px;
  background: #9B9B97;
  top: 27px;
  z-index: -1;
}

.order-bar-circle-container4 {
  position: relative;
}

.order-bar-circle-container4:before {
  content: "";
  width: 50%;
  left: 0;
  position: absolute;
  height: 1px;
  background: #9B9B97;
  top: 27px;
  z-index: -1;
}

.order-bar-circle-container1-after:after {
  background: #C59100;
}

.order-bar-circle-container2-after:after {
  background: #C59100;
}

.order-bar-circle-container2-before:before {
  background: #C59100;
}

.order-bar-circle-container3-after:after {
  background: #C59100;
}

.order-bar-circle-container3-before:before {
  background: #C59100;
}

.order-bar-circle-container4-before:before {
  background: #C59100;
}

@media screen and (max-width: 1500px) {
  .order-bar-circle {
    width: 40px;
    height: 40px;
  }
  .order-bar-circle-container1:after {
    top: 20px;
  }
  .order-bar-circle-container2:after {
    top: 20px;
  }
  .order-bar-circle-container2:before {
    top: 20px;
  }
  .order-bar-circle-container3:after {
    top: 20px;
  }
  .order-bar-circle-container3:before {
    top: 20px;
  }
  .order-bar-circle-container4:before {
    top: 20px;
  }
  .order-bar-circle-container p {
    font-size: 1.3rem;
  }
}

.voucher {
  margin-right: 40%;
}

.voucher select {
  width: 100%;
  height: 75px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #000;
  background-color: #fff;
  margin-top: 5px;
  font-family: "Panton-Bold", sans-serif;
  font-size: 2.3rem;
  text-align: center;
  padding: 0 20px;
  background-image: url(../images/select-arrow.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  text-align: center;
  text-align-last: center;
  outline: none;
}

.voucher select:hover {
  outline: 2px solid #C59100;
  border: 1px solid #C59100;
}

.voucher a {
  text-decoration: none;
  margin-top: 5px;
  display: block;
  width: 100%;
  height: 75px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #fff;
  border: 1px solid #000;
  background-color: #C59100;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}

@media screen and (max-width: 1500px) {
  .voucher {
    margin-right: 20%;
  }
  .voucher select {
    font-size: 1.9rem;
  }
}

@media screen and (max-width: 1050px) {
  .voucher {
    margin-right: 0%;
    width: 50%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 600px) {
  .voucher {
    margin-right: 0%;
    width: 70%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 520px) {
  .voucher {
    margin-right: 0%;
    width: 100%;
    margin: 0 auto;
  }
}

/*# sourceMappingURL=maps/main.min.css.map */



.main-chef2-row-text h2
{
    height: 50px;
    line-height: 31px;
    overflow: hidden;
}

.event-offer-list h2.biznes-font
{
  font-size: 2.1rem;
  line-height: 2.5rem;
  padding-bottom: 10px;
  font-family: "Roboto-Light", sans-serif;
}

.summary-ok
{
  margin-bottom: 50px;
}


.form-event-area4 section input[type="submit"]
{
  transition: 0.2s;
  cursor: pointer;
  height: 56px;
}

.form-event-area4 section input[type="submit"]:hover
{
  outline: none;
  background-color: #fff !important;
  box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.75);
  color: #C59100;
}

.fast{ 
  display: flex;
 }

.order-bar-circle img {
  width: 100%;
  height: 100%;
}

.event-offer-list ul li
{
  background-position: left top 10px;
}

.order-summary-buttons a:hover {
  background-color: #000;
  border-color: #000;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.order-cube-huge__bracket-quantity-input input[type=button]
{
  cursor: pointer;
}

.longer-text {
  width: 32%;
}

@media screen and (max-width: 850px) {
  .longer-text {
    width: 100%;
  }
}

.voucher-button
{
  display:none!important;
}

.event-offer-course div.payment
{
  display: none;
  margin-top: 10px;
  border: none!important;
  background: none!important;
  min-height: 275px;
}

.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 0 !important;
}

.payment form input:hover, .payment form input:focus {
  border: 1px solid #C59100 !important;
  box-shadow: 0 0 0 1px #C59100 !important;
  outline: none;
}

.validate-label>label {
  color: #C59100;
  margin-bottom: 5px;
}

.validate-label-message>label {
  color: #C59100;
  margin-bottom: 5px;
}

.main-form-area1>label {
  color: #C59100;
  font-size: 14px;
}

.main-form-area2>label {
  color: #C59100;
  font-size: 14px;
}

.form-event-area3>label {
  color: #C59100;
  font-size: 14px;
}

.main-form-area1>input {
  margin-top: 10px;
}

.main-form-area2>input {
  margin-top: 10px;
}

#main-form-data {
  margin-top: 0px;
}

.validate-label {
  width: 49.5%;
  margin-right: 0.5%;
  display: flex;
  flex-direction: column;
}

#kod-z-obrazka {
  height: 56px;
}

@media screen and (max-width: 561px) {
  .validate-label {
    width: 100%;
    margin-right: 0%;
  }
  .validate-label-message {
    width: 100%;
    margin-right: 0%;
  }
}

.validate-label-message {
  width: 100%;
  display: flex;
  flex-direction: column;
}

#buy-voucher>label {
   margin-bottom: 10px;
}

#dla-biznesu-phone {
  margin-top: 10px;
}

#dla-biznesu-email {
  margin-top: 10px;
}

#order-city, #order-street, #order-company, #order-email {
  margin-top: 10px;
} 

@media screen and (max-width: 850px) {
  .order-number-wrapper, .order__form__area {
    margin-top: 10px;
  }
}

#date-event, #course-event, #phone-event, #email-event {
  margin-top: 10px;
}

#error-checkbox {
  border: none !important;
  width: 100% !important;
}


.dropbtn {
    background-color: #fff;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    background-image: url(../images/poland.png);
    width: 80px;
    background-repeat: no-repeat;
    position: relative;
}

.dropbtn:focus {
  outline: none;
}

.dropdown {
    position: relative;
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: transparent;
    /*box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
    z-index: 1;
    background-image: url(../images/english.jpg);
    bottom: -25px;
    width: 80px;
    height: 50px;
    left: 0px;
    top: 65px;
    background-repeat: no-repeat;
}
.dropdown-content-scroll {
  bottom: -35px !important;
  top: 55px !important;
}

@media screen and (max-width: 1366px) {
  .dropdown-content {
    bottom: -35px;
    top: 55px ;
  }
  .dropdown-content-scroll {
    bottom: -45px !important;
     top: 45px !important;
  }
}

.dropdown-content-show {
    display: block;
}

.dropbtn-eng {
    background-color: #fff;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    background-image: url(../images/english.jpg);
    width: 80px;
    background-repeat: no-repeat;
    position: relative;
}

.dropdown-content-eng {
    display: none;
    position: absolute;
    background-color: transparent;
    /*box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
    z-index: 1;
    background-image: url(../images/poland.svg);
    bottom: -35px;
    width: 80px;
    height: 50px;
    left: 0px;
    top: 65px;
    background-repeat: no-repeat;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content-eng a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.strzalka {
  width: 25px;
  height: 15px;
  background-image: url("../images/strzalka.svg");
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: 25%;
}

.zgoda {
  width: 100% !important;
  border: 0px solid black !important; 
  text-align: left !important;
  margin-right: 0% !important;
}

.zgoda label span {
    display: inline-block;
    width: 26px;
    height: 24px;
    vertical-align: middle;
    border: 1px solid #000;
    cursor: pointer;
    margin-right: 20px;
}

.kod {
  width: 30% !important;
}

.rezerwuj-div {
  display: flex !important;
  width: 100% !important;
  flex-wrap: wrap!important;
  flex-direction: row;
  border: 0px solid !important;
  justify-content: space-between;
  margin-right: 0% !important;
}

/*.dropdown-content a:hover {background-color: #f1f1f1}*/

/*.dropdown:hover .dropdown-content {
    display: block;
}*/

/*.dropdown:hover .dropdown-content-eng {
    display: block;
}*/

.dropdown:focus {
  border: 0px solid #fff;
}

@media(max-width: 1050px){
  .payment form {
    width: 100% !important;
  }
}

.payment form input[type="submit"] {
  -webkit-appearance: none;
}

.timeOrder {
  font-size: 1.8rem;
  padding-bottom: 15px;
  text-align: center;
  font-weight: normal !important;
  color: #000 !important;
  font-family: 'Panton-Regular', sans-serif;
  padding-top: 15px;
  line-height: 1.3em;
}



/*.boxContainer {
  display: flex;
  flex-wrap: wrap;
}*/

/*.dropdown:hover .dropbtn {
    background-color: #3e8e41;
}
*/
input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; } /* FF 4-18 */
input:focus::-moz-placeholder { color:transparent; } /* FF 19+ */
input:focus:-ms-input-placeholder { color:transparent; } /* IE 10+ */

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; } /* FF 4-18 */
textarea:focus::-moz-placeholder { color:transparent; } /* FF 19+ */
textarea:focus:-ms-input-placeholder { color:transparent; } /* IE 10+ */
/*Swiper*/

/**
 * Swiper 3.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * 
 * http://www.idangero.us/swiper/
 * 
 * Copyright 2016, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 * 
 * Licensed under MIT
 * 
 * Released on: December 13, 2016
 */
.swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;z-index:1}.swiper-container-no-flexbox .swiper-slide{float:left}.swiper-container-vertical>.swiper-wrapper{-webkit-box-orient:vertical;-moz-box-orient:vertical;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-transition-property:-webkit-transform;-moz-transition-property:-moz-transform;-o-transition-property:-o-transform;-ms-transition-property:-ms-transform;transition-property:transform;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-o-transform:translate(0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.swiper-container-multirow>.swiper-wrapper{-webkit-box-lines:multiple;-moz-box-lines:multiple;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap}.swiper-container-free-mode>.swiper-wrapper{-webkit-transition-timing-function:ease-out;-moz-transition-timing-function:ease-out;-ms-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out;margin:0 auto}.swiper-slide{-webkit-flex-shrink:0;-ms-flex:0 0 auto;flex-shrink:0;width:100%;height:100%;position:relative}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{-webkit-box-align:start;-ms-flex-align:start;-webkit-align-items:flex-start;align-items:flex-start;-webkit-transition-property:-webkit-transform,height;-moz-transition-property:-moz-transform;-o-transition-property:-o-transform;-ms-transition-property:-ms-transform;transition-property:transform,height}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-wp8-horizontal{-ms-touch-action:pan-y;touch-action:pan-y}.swiper-wp8-vertical{-ms-touch-action:pan-x;touch-action:pan-x}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:27px;height:44px;margin-top:-22px;z-index:10;cursor:pointer;-moz-background-size:27px 44px;-webkit-background-size:27px 44px;background-size:27px 44px;background-position:center;background-repeat:no-repeat}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");left:10px;right:auto}.swiper-button-prev.swiper-button-black,.swiper-container-rtl .swiper-button-next.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")}.swiper-button-prev.swiper-button-white,.swiper-container-rtl .swiper-button-next.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");right:10px;left:auto}.swiper-button-next.swiper-button-black,.swiper-container-rtl .swiper-button-prev.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")}.swiper-button-next.swiper-button-white,.swiper-container-rtl .swiper-button-prev.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")}.swiper-pagination{position:absolute;text-align:center;-webkit-transition:.3s;-moz-transition:.3s;-o-transition:.3s;transition:.3s;-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:100%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-moz-appearance:none;-ms-appearance:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-white .swiper-pagination-bullet{background:#fff}.swiper-pagination-bullet-active{opacity:1;background:#007aff}.swiper-pagination-white .swiper-pagination-bullet-active{background:#fff}.swiper-pagination-black .swiper-pagination-bullet-active{background:#000}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;-webkit-transform:translate3d(0,-50%,0);-moz-transform:translate3d(0,-50%,0);-o-transform:translate(0,-50%);-ms-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:5px 0;display:block}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 5px}.swiper-pagination-progress{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progress .swiper-pagination-progressbar{background:#007aff;position:absolute;left:0;top:0;width:100%;height:100%;-webkit-transform:scale(0);-ms-transform:scale(0);-o-transform:scale(0);transform:scale(0);-webkit-transform-origin:left top;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;transform-origin:left top}.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar{-webkit-transform-origin:right top;-moz-transform-origin:right top;-ms-transform-origin:right top;-o-transform-origin:right top;transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progress{width:100%;height:4px;left:0;top:0}.swiper-container-vertical>.swiper-pagination-progress{width:4px;height:100%;left:0;top:0}.swiper-pagination-progress.swiper-pagination-white{background:rgba(255,255,255,.5)}.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar{background:#fff}.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar{background:#000}.swiper-container-3d{-webkit-perspective:1200px;-moz-perspective:1200px;-o-perspective:1200px;perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-ms-transform-style:preserve-3d;transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-moz-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:-webkit-gradient(linear,right top,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-moz-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-moz-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:-webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-moz-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-coverflow .swiper-wrapper,.swiper-container-flip .swiper-wrapper{-ms-perspective:1200px}.swiper-container-cube,.swiper-container-flip{overflow:visible}.swiper-container-cube .swiper-slide,.swiper-container-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-container-cube .swiper-slide .swiper-slide,.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active,.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top,.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-slide{visibility:hidden;-webkit-transform-origin:0 0;-moz-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;width:100%;height:100%}.swiper-container-cube.swiper-container-rtl .swiper-slide{-webkit-transform-origin:100% 0;-moz-transform-origin:100% 0;-ms-transform-origin:100% 0;transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0;width:100%;height:100%;background:#000;opacity:.6;-webkit-filter:blur(50px);filter:blur(50px);z-index:0}.swiper-container-fade.swiper-container-free-mode .swiper-slide{-webkit-transition-timing-function:ease-out;-moz-transition-timing-function:ease-out;-ms-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none;-webkit-transition-property:opacity;-moz-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-zoom-container{width:100%;height:100%;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-pack:center;-moz-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-moz-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;-webkit-transform-origin:50%;-moz-transform-origin:50%;transform-origin:50%;-webkit-animation:swiper-preloader-spin 1s steps(12,end) infinite;-moz-animation:swiper-preloader-spin 1s steps(12,end) infinite;animation:swiper-preloader-spin 1s steps(12,end) infinite}.swiper-lazy-preloader:after{display:block;content:"";width:100%;height:100%;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");background-position:50%;-webkit-background-size:100%;background-size:100%;background-repeat:no-repeat}.swiper-lazy-preloader-white:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")}@-webkit-keyframes swiper-preloader-spin{100%{-webkit-transform:rotate(360deg)}}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}

/*Datapicker*/

.xdsoft_datetimepicker{box-shadow:0 5px 15px -5px rgba(0,0,0,0.506);background:#fff;border-bottom:1px solid #bbb;border-left:1px solid #ccc;border-right:1px solid #ccc;border-top:1px solid #ccc;color:#333;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;padding:8px;padding-left:0;padding-top:2px;position:absolute;z-index:9999;-moz-box-sizing:border-box;box-sizing:border-box;display:none}.xdsoft_datetimepicker.xdsoft_rtl{padding:8px 0 8px 8px}.xdsoft_datetimepicker iframe{position:absolute;left:0;top:0;width:75px;height:210px;background:transparent;border:0}.xdsoft_datetimepicker button{border:none !important}.xdsoft_noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.xdsoft_noselect::selection{background:transparent}.xdsoft_noselect::-moz-selection{background:transparent}.xdsoft_datetimepicker.xdsoft_inline{display:inline-block;position:static;box-shadow:none}.xdsoft_datetimepicker *{-moz-box-sizing:border-box;box-sizing:border-box;padding:0;margin:0}.xdsoft_datetimepicker .xdsoft_datepicker,.xdsoft_datetimepicker .xdsoft_timepicker{display:none}.xdsoft_datetimepicker .xdsoft_datepicker.active,.xdsoft_datetimepicker .xdsoft_timepicker.active{display:block}.xdsoft_datetimepicker .xdsoft_datepicker{width:224px;float:left;margin-left:8px}.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_datepicker{float:right;margin-right:8px;margin-left:0}.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_datepicker{width:256px}.xdsoft_datetimepicker .xdsoft_timepicker{width:58px;float:left;text-align:center;margin-left:8px;margin-top:0}.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker{float:right;margin-right:8px;margin-left:0}.xdsoft_datetimepicker .xdsoft_datepicker.active+.xdsoft_timepicker{margin-top:8px;margin-bottom:3px}.xdsoft_datetimepicker .xdsoft_monthpicker{position:relative;text-align:center}.xdsoft_datetimepicker .xdsoft_label i,.xdsoft_datetimepicker .xdsoft_prev,.xdsoft_datetimepicker .xdsoft_next,.xdsoft_datetimepicker .xdsoft_today_button{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Q0NBRjI1NjM0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Q0NBRjI1NjQ0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDQ0FGMjU2MTQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDQ0FGMjU2MjQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PoNEP54AAAIOSURBVHja7Jq9TsMwEMcxrZD4WpBYeKUCe+kTMCACHZh4BFfHO/AAIHZGFhYkBBsSEqxsLCAgXKhbXYOTxh9pfJVP+qutnZ5s/5Lz2Y5I03QhWji2GIcgAokWgfCxNvcOCCGKqiSqhUp0laHOne05vdEyGMfkdxJDVjgwDlEQgYQBgx+ULJaWSXXS6r/ER5FBVR8VfGftTKcITNs+a1XpcFoExREIDF14AVIFxgQUS+h520cdud6wNkC0UBw6BCO/HoCYwBhD8QCkQ/x1mwDyD4plh4D6DDV0TAGyo4HcawLIBBSLDkHeH0Mg2yVP3l4TQMZQDDsEOl/MgHQqhMNuE0D+oBh0CIr8MAKyazBH9WyBuKxDWgbXfjNf32TZ1KWm/Ap1oSk/R53UtQ5xTh3LUlMmT8gt6g51Q9p+SobxgJQ/qmsfZhWywGFSl0yBjCLJCMgXail3b7+rumdVJ2YRss4cN+r6qAHDkPWjPjdJCF4n9RmAD/V9A/Wp4NQassDjwlB6XBiCxcJQWmZZb8THFilfy/lfrTvLghq2TqTHrRMTKNJ0sIhdo15RT+RpyWwFdY96UZ/LdQKBGjcXpcc1AlSFEfLmouD+1knuxBDUVrvOBmoOC/rEcN7OQxKVeJTCiAdUzUJhA2Oez9QTkp72OTVcxDcXY8iKNkxGAJXmJCOQwOa6dhyXsOa6XwEGAKdeb5ET3rQdAAAAAElFTkSuQmCC)}.xdsoft_datetimepicker .xdsoft_label i{opacity:.5;background-position:-92px -19px;display:inline-block;width:9px;height:20px;vertical-align:middle}.xdsoft_datetimepicker .xdsoft_prev{float:left;background-position:-20px 0}.xdsoft_datetimepicker .xdsoft_today_button{float:left;background-position:-70px 0;margin-left:5px}.xdsoft_datetimepicker .xdsoft_next{float:right;background-position:0 0}.xdsoft_datetimepicker .xdsoft_next,.xdsoft_datetimepicker .xdsoft_prev,.xdsoft_datetimepicker .xdsoft_today_button{background-color:transparent;background-repeat:no-repeat;border:0 none;cursor:pointer;display:block;height:30px;opacity:.5;-ms-filter:"alpha(opacity=50)";outline:medium none;overflow:hidden;padding:0;position:relative;text-indent:100%;white-space:nowrap;width:20px;min-width:0}.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev,.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next{float:none;background-position:-40px -15px;height:15px;width:30px;display:block;margin-left:14px;margin-top:7px}.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker .xdsoft_prev,.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker .xdsoft_next{float:none;margin-left:0;margin-right:14px}.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev{background-position:-40px 0;margin-bottom:7px;margin-top:0}.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box{height:151px;overflow:hidden;border-bottom:1px solid #ddd}.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div{background:#f5f5f5;border-top:1px solid #ddd;color:#666;font-size:12px;text-align:center;border-collapse:collapse;cursor:pointer;border-bottom-width:0;height:25px;line-height:25px}.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div:first-child{border-top-width:0}.xdsoft_datetimepicker .xdsoft_today_button:hover,.xdsoft_datetimepicker .xdsoft_next:hover,.xdsoft_datetimepicker .xdsoft_prev:hover{opacity:1;-ms-filter:"alpha(opacity=100)"}.xdsoft_datetimepicker .xdsoft_label{display:inline;position:relative;z-index:9999;margin:0;padding:5px 3px;font-size:14px;line-height:20px;font-weight:bold;background-color:#fff;float:left;width:182px;text-align:center;cursor:pointer}.xdsoft_datetimepicker .xdsoft_label:hover>span{text-decoration:underline}.xdsoft_datetimepicker .xdsoft_label:hover i{opacity:1.0}.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select{border:1px solid #ccc;position:absolute;right:0;top:30px;z-index:101;display:none;background:#fff;max-height:160px;overflow-y:hidden}.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select.xdsoft_monthselect{right:-7px}.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select.xdsoft_yearselect{right:2px}.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select>div>.xdsoft_option:hover{color:#fff;background:#ff8000}.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select>div>.xdsoft_option{padding:2px 10px 2px 5px;text-decoration:none !important}.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select>div>.xdsoft_option.xdsoft_current{background:#3af;box-shadow:#178fe5 0 1px 3px 0 inset;color:#fff;font-weight:700}.xdsoft_datetimepicker .xdsoft_month{width:100px;text-align:right}.xdsoft_datetimepicker .xdsoft_calendar{clear:both}.xdsoft_datetimepicker .xdsoft_year{width:48px;margin-left:5px}.xdsoft_datetimepicker .xdsoft_calendar table{border-collapse:collapse;width:100%}.xdsoft_datetimepicker .xdsoft_calendar td>div{padding-right:5px}.xdsoft_datetimepicker .xdsoft_calendar th{height:25px}.xdsoft_datetimepicker .xdsoft_calendar td,.xdsoft_datetimepicker .xdsoft_calendar th{width:14.2857142%;background:#f5f5f5;border:1px solid #ddd;color:#666;font-size:12px;text-align:right;vertical-align:middle;padding:0;border-collapse:collapse;cursor:pointer;height:25px}.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar td,.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar th{width:12.5%}.xdsoft_datetimepicker .xdsoft_calendar th{background:#f1f1f1}.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_today{color:#3af}.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_highlighted_default{background:#ffe9d2;box-shadow:#ffb871 0 1px 4px 0 inset;color:#000}.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_highlighted_mint{background:#c1ffc9;box-shadow:#00dd1c 0 1px 4px 0 inset;color:#000}.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current{background:#3af;box-shadow:#178fe5 0 1px 3px 0 inset;color:#fff;font-weight:700}.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month,.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled,.xdsoft_datetimepicker .xdsoft_time_box>div>div.xdsoft_disabled{opacity:.5;-ms-filter:"alpha(opacity=50)";cursor:default}.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month.xdsoft_disabled{opacity:.2;-ms-filter:"alpha(opacity=20)"}.xdsoft_datetimepicker .xdsoft_calendar td:hover,.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div:hover{color:#fff !important;background:#ff8000 !important;box-shadow:none !important}.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current.xdsoft_disabled:hover,.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current.xdsoft_disabled:hover{background:#3af !important;box-shadow:#178fe5 0 1px 3px 0 inset !important;color:#fff !important}.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled:hover,.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_disabled:hover{color:inherit !important;background:inherit !important;box-shadow:inherit !important}.xdsoft_datetimepicker .xdsoft_calendar th{font-weight:700;text-align:center;color:#999;cursor:default}.xdsoft_datetimepicker .xdsoft_copyright{color:#ccc !important;font-size:10px;clear:both;float:none;margin-left:8px}.xdsoft_datetimepicker .xdsoft_copyright a{color:#eee !important}.xdsoft_datetimepicker .xdsoft_copyright a:hover{color:#aaa !important}.xdsoft_time_box{position:relative;border:1px solid #ccc}.xdsoft_scrollbar>.xdsoft_scroller{background:#ccc !important;height:20px;border-radius:3px}.xdsoft_scrollbar{position:absolute;width:7px;right:0;top:0;bottom:0;cursor:pointer}.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_scrollbar{left:0;right:auto}.xdsoft_scroller_box{position:relative}.xdsoft_datetimepicker.xdsoft_dark{box-shadow:0 5px 15px -5px rgba(255,255,255,0.506);background:#000;border-bottom:1px solid #444;border-left:1px solid #333;border-right:1px solid #333;border-top:1px solid #333;color:#ccc}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box{border-bottom:1px solid #222}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box>div>div{background:#0a0a0a;border-top:1px solid #222;color:#999}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label{background-color:#000}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label>.xdsoft_select{border:1px solid #333;background:#000}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label>.xdsoft_select>div>.xdsoft_option:hover{color:#000;background:#007fff}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label>.xdsoft_select>div>.xdsoft_option.xdsoft_current{background:#c50;box-shadow:#b03e00 0 1px 3px 0 inset;color:#000}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label i,.xdsoft_datetimepicker.xdsoft_dark .xdsoft_prev,.xdsoft_datetimepicker.xdsoft_dark .xdsoft_next,.xdsoft_datetimepicker.xdsoft_dark .xdsoft_today_button{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QUExQUUzOTA0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QUExQUUzOTE0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBQTFBRTM4RTQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBQTFBRTM4RjQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pp0VxGEAAAIASURBVHja7JrNSgMxEMebtgh+3MSLr1T1Xn2CHoSKB08+QmR8Bx9A8e7RixdB9CKCoNdexIugxFlJa7rNZneTbLIpM/CnNLsdMvNjM8l0mRCiQ9Ye61IKCAgZAUnH+mU3MMZaHYChBnJUDzWOFZdVfc5+ZFLbrWDeXPwbxIqrLLfaeS0hEBVGIRQCEiZoHQwtlGSByCCdYBl8g8egTTAWoKQMRBRBcZxYlhzhKegqMOageErsCHVkk3hXIFooDgHB1KkHIHVgzKB4ADJQ/A1jAFmAYhkQqA5TOBtocrKrgXwQA8gcFIuAIO8sQSA7hidvPwaQGZSaAYHOUWJABhWWw2EMIH9QagQERU4SArJXo0ZZL18uvaxejXt/Em8xjVBXmvFr1KVm/AJ10tRe2XnraNqaJvKE3KHuUbfK1E+VHB0q40/y3sdQSxY4FHWeKJCunP8UyDdqJZenT3ntVV5jIYCAh20vT7ioP8tpf6E2lfEMwERe+whV1MHjwZB7PBiCxcGQWwKZKD62lfGNnP/1poFAA60T7rF1UgcKd2id3KDeUS+oLWV8DfWAepOfq00CgQabi9zjcgJVYVD7PVzQUAUGAQkbNJTBICDhgwYTjDYD6XeW08ZKh+A4pYkzenOxXUbvZcWz7E8ykRMnIHGX1XPl+1m2vPYpL+2qdb8CDAARlKFEz/ZVkAAAAABJRU5ErkJggg==)}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td,.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th{background:#0a0a0a;border:1px solid #222;color:#999}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th{background:#0e0e0e}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_today{color:#c50}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_highlighted_default{background:#ffe9d2;box-shadow:#ffb871 0 1px 4px 0 inset;color:#000}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_highlighted_mint{background:#c1ffc9;box-shadow:#00dd1c 0 1px 4px 0 inset;color:#000}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_default,.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_current,.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current{background:#c50;box-shadow:#b03e00 0 1px 3px 0 inset;color:#000}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td:hover,.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box>div>div:hover{color:#000 !important;background:#007fff !important}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th{color:#666}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright{color:#333 !important}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a{color:#111 !important}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a:hover{color:#555 !important}.xdsoft_dark .xdsoft_time_box{border:1px solid #333}.xdsoft_dark .xdsoft_scrollbar>.xdsoft_scroller{background:#333 !important}.xdsoft_datetimepicker .xdsoft_save_selected{display:block;border:1px solid #ddd !important;margin-top:5px;width:100%;color:#454551;font-size:13px}.xdsoft_datetimepicker .blue-gradient-button{font-family:"museo-sans","Book Antiqua",sans-serif;font-size:12px;font-weight:300;color:#82878c;height:28px;position:relative;padding:4px 17px 4px 33px;border:1px solid #d7d8da;background:-moz-linear-gradient(top,#fff 0,#f4f8fa 73%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(73%,#f4f8fa));background:-webkit-linear-gradient(top,#fff 0,#f4f8fa 73%);background:-o-linear-gradient(top,#fff 0,#f4f8fa 73%);background:-ms-linear-gradient(top,#fff 0,#f4f8fa 73%);background:linear-gradient(to bottom,#fff 0,#f4f8fa 73%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff',endColorstr='#f4f8fa',GradientType=0)}.xdsoft_datetimepicker .blue-gradient-button:hover,.xdsoft_datetimepicker .blue-gradient-button:focus,.xdsoft_datetimepicker .blue-gradient-button:hover span,.xdsoft_datetimepicker .blue-gradient-button:focus span{color:#454551;background:-moz-linear-gradient(top,#f4f8fa 0,#FFF 73%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#f4f8fa),color-stop(73%,#FFF));background:-webkit-linear-gradient(top,#f4f8fa 0,#FFF 73%);background:-o-linear-gradient(top,#f4f8fa 0,#FFF 73%);background:-ms-linear-gradient(top,#f4f8fa 0,#FFF 73%);background:linear-gradient(to bottom,#f4f8fa 0,#FFF 73%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4f8fa',endColorstr='#FFF',GradientType=0)}
/*
timepicker*/

/**
 * jQuery Timepicker - v1.3.5 - 2016-07-10
 * http://timepicker.co
 *
 * Enhances standard form input fields helping users to select (or type) times.
 *
 * Copyright (c) 2016 Willington Vega; Licensed MIT, GPL
 */


.ui-timepicker-container{position:absolute;overflow:hidden;box-sizing:border-box}.ui-timepicker{box-sizing:content-box;display:block;height:205px;list-style:none outside none;margin:0;padding:0 1px;text-align:center}.ui-timepicker-viewport{box-sizing:content-box;display:block;height:205px;margin:0;padding:0;overflow:auto;overflow-x:hidden}.ui-timepicker-standard{font-family:Verdana,Arial,sans-serif;font-size:1.1em;background-color:#FFF;border:1px solid #AAA;color:#222;margin:0;padding:2px}.ui-timepicker-standard a{border:1px solid transparent;color:#222;display:block;padding:.2em .4em;text-decoration:none}.ui-timepicker-standard .ui-state-hover{background-color:#DADADA;border:1px solid #999;font-weight:400;color:#212121}.ui-timepicker-standard .ui-menu-item{margin:0;padding:0}.ui-timepicker-corners,.ui-timepicker-corners .ui-corner-all{-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px}.ui-timepicker-hidden{display:none}.ui-timepicker-no-scrollbar .ui-timepicker{border:0}