body {
  background: url(../../images/bg-loop.jpg);
  background-position: center center;
  font-family: "Lato";
  overflow: hidden;
  overflow-y: auto;
}

#page .btn-primary {
  background: white;
  border-radius: 10px;
  color: #00838f;
  font-size: 20px;
  font-weight: 800;
  border: none;
  padding: 5px 20px;
  transition: all 0.2s ease-in-out;
}

#page .btn-primary:hover {
  background: #00838f;
  color: white;
}

#page .button-aqua {
  background: #139290;
  color: white;
  border: none;
  padding: 8px 20px;
}

#page .logo-wrapper {
  padding: 15px 0;
}

#page .logo-wrapper .page-logo {
  height: 50px;
  width: 100%;
  height: auto;
  max-width: 543px;
}

@media (max-width: 768px) {
  #page .logo-wrapper .page-logo {
    height: 40px;
  }
}

@media (max-width: 400px) {
  #page .logo-wrapper .page-logo {
    height: 30px;
  }
}

#page .content {
  color: black;
}

#page .code-page {
  padding-right: 400px;
}

@media (max-width: 991px) {
  #page .code-page {
    padding-right: 180px;
  }
}

@media (max-width: 640px) {
  #page .code-page {
    padding-right: 0;
  }
}

#page .code-page .code-page-left {
  margin-top: 40px;
}

#page .code-page .code-page-left h1 {
  font-size: 36px;
}

#page .code-page .code-page-left p {
  font-size: 28px;
  font-weight: 300;
  line-height: 30px;
  margin-top: 20px;
}

#page .code-page .code-page-left b {
  font-weight: 800;
}

#page .code-page .code-page-left .code-box-wrapper {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  margin-top: 50px;
}

@media (max-width: 991px) {
  #page .code-page .code-page-left .code-box-wrapper {
    -webkit-box-pack: left;
    justify-content: left;
  }
}

#page .code-page .code-page-left .code-box-wrapper .code-box {
  width: 320px;
  border-left: 4px solid black;
  border-top: 4px solid black;
  border-bottom: 4px solid black;
  padding: 40px 20px;
  position: relative;
}

@media (max-width: 640px) {
  #page .code-page .code-page-left .code-box-wrapper .code-box {
    width: 280px;
  }
}

#page .code-page .code-page-left .code-box-wrapper .code-box:before {
  content: "";
  height: 45px;
  width: 4px;
  display: inline-block;
  position: absolute;
  background: var(--white);
  right: 0;
  top: 0;
}

#page .code-page .code-page-left .code-box-wrapper .code-box:after {
  content: "";
  height: 45px;
  width: 4px;
  display: inline-block;
  position: absolute;
  background: var(--white);
  right: 0;
  bottom: 0;
}

#page .code-page .code-page-left .code-box-wrapper .code-box label {
  display: none;
}

#page .code-page .code-page-left .code-box-wrapper .code-box .enter-code {
  background: transparent;
  border-bottom: 2px solid black;
  border-top: none;
  box-shadow: none;
  border-left: none;
  border-right: none;
  margin-bottom: 20px;
  color: var(--white);
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 300;
  height: 50px;
}

@media (max-width: 640px) {
  #page .code-page .code-page-left .code-box-wrapper .code-box .enter-code {
    font-size: 20px;
  }
}

#page .code-page .code-page-left .code-box-wrapper .code-box .enter-code::-webkit-input-placeholder {
  color: var(--white);
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 300;
}

@media (max-width: 640px) {
  #page .code-page .code-page-left .code-box-wrapper .code-box .enter-code::-webkit-input-placeholder {
    font-size: 20px;
  }
}

#page .code-page .code-page-left .code-box-wrapper .code-box .enter-code::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--white);
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 300;
}

@media (max-width: 640px) {
  #page .code-page .code-page-left .code-box-wrapper .code-box .enter-code::-moz-placeholder {
    font-size: 20px;
  }
}

#page .code-page .code-page-left .code-box-wrapper .code-box .enter-code:-ms-input-placeholder {
  /* IE 10+ */
  color: var(--white);
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 300;
}

@media (max-width: 640px) {
  #page .code-page .code-page-left .code-box-wrapper .code-box .enter-code:-ms-input-placeholder {
    font-size: 20px;
  }
}

#page .code-page .code-page-left .code-box-wrapper .code-box .enter-code:-moz-placeholder {
  /* Firefox 18- */
  color: var(--white);
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 300;
}

@media (max-width: 640px) {
  #page .code-page .code-page-left .code-box-wrapper .code-box .enter-code:-moz-placeholder {
    font-size: 20px;
  }
}

#page .code-page .code-page-left .code-box-wrapper .code-box .code-box-buttons {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

#page .code-page .gift {
  position: absolute;
  right: 200px;
  top: 0;
  height: 480px;
  z-index: -1;
}

@media (min-width: 992px) and (max-width: 1300px) {
  #page .code-page .gift {
    right: 80px;
  }
}

@media (min-width: 641px) and (max-width: 991px) {
  #page .code-page .gift {
    height: 280px;
    top: -50px;
    right: 0;
  }
}

@media (max-width: 640px) {
  #page .code-page .gift {
    right: 0px;
    top: -70px;
    height: 230px;
  }
}

#page .gifts-page {
  padding-right: 400px;
  margin-top: 40px;
}

@media (max-width: 1199px) {
  #page .gifts-page {
    padding-right: 0;
  }
}

@media (min-width: 991px) and (max-width: 1199px) {
  #page .gifts-page .textbox {
    padding-right: 400px;
  }
}

#page .gifts-page .textbox h1 {
  font-size: 36px;
  font-weight: bold;
}

#page .gifts-page .textbox p {
  font-size: 28px;
  font-weight: 300;
  line-height: 30px;
  margin-top: 20px;
}

#page .gifts-page .textbox b {
  font-weight: 800;
}

#page .gifts-page #myProducts {
  margin-top: 40px;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

#page .gifts-page #myProducts .product-wrapper {
  padding: 20px;
}

@media (max-width: 767px) {
  #page .gifts-page #myProducts .product-wrapper {
    padding: 40px 100px;
  }
}

@media (max-width: 450px) {
  #page .gifts-page #myProducts .product-wrapper {
    padding: 30px;
  }
}

#page .gifts-page #myProducts .product-wrapper .product {
  background: url("../../images/gift2.png");
  background-size: cover;
  color: black;
  height: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 0;
  padding: 0;
  padding-bottom: 120%;
}

@media (min-width: 992px) and (max-width: 1200px) {
  #page .gifts-page #myProducts .product-wrapper .product {
    min-height: 330px;
  }
}

@media (max-width: 991px) {
  #page .gifts-page #myProducts .product-wrapper .product {
    height: 0;
    padding: 0;
    padding-bottom: 120%;
  }
}

@media (max-width: 767px) {
  #page .gifts-page #myProducts .product-wrapper .product {
    height: 0;
    padding: 0;
    padding-bottom: 120%;
  }
}

#page .gifts-page #myProducts .product-wrapper .product:before {
  content: "";
  background: url("../../images/gift2_black.png");
  height: 100%;
  width: 100%;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  opacity: 0;
  z-index: 2;
  transition: all 0.2s ease-in-out;
}

#page .gifts-page #myProducts .product-wrapper .product:hover:before {
  content: "";
  background: url("../../images/gift2_black.png");
  height: 100%;
  width: 100%;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  opacity: 0.8;
  cursor: pointer;
  z-index: 2;
}

#page .gifts-page #myProducts .product-wrapper .product:hover .product-title {
  display: inline-block;
}

#page .gifts-page #myProducts .product-wrapper .product:hover .product-title .select-label {
  display: block;
  margin-bottom: 5px;
}

#page .gifts-page #myProducts .product-wrapper .product .product-thumbnail {
  height: 140px;
  max-width: 100%;
  transition: all 0.2s ease-in-out;
  position: absolute;
  top: 50%;
  -webkit-transform: translateXY(-50%, -50%);
  transform: translateXY(-50%, -50%);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 0;
}

@media (max-width: 991px) {
  #page .gifts-page #myProducts .product-wrapper .product .product-thumbnail {
    height: 200px;
  }
}

@media (max-width: 640px) {
  #page .gifts-page #myProducts .product-wrapper .product .product-thumbnail {
    height: 180px;
  }
}

#page .gifts-page #myProducts .product-wrapper .product .product-title {
  font-size: 20px;
  font-weight: bold;
  line-height: inherit;
  display: none;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: white;
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
}

@media (max-width: 450px) {
  #page .gifts-page #myProducts .product-wrapper .product .product-title {
    font-size: 18px;
  }
}

#page .gifts-page #myProducts .product-wrapper .product .product-title .select-label {
  color: #ed1a3b;
  font-size: 18px;
  text-transform: uppercase;
  display: none;
}

#page .gifts-page #myProducts .product-wrapper .product .product-price {
  font-size: 13px;
  line-height: inherit;
  color: #00838f;
  font-weight: 800;
  margin-bottom: 20px;
}

@media (max-width: 450px) {
  #page .gifts-page #myProducts .product-wrapper .product .product-price {
    font-size: 9px;
  }
}

#page .gifts-page #myProducts .product-wrapper .product .absolute-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-bottom: 20px;
  display: none;
}

#page .gifts-page #myProducts .product-wrapper .product .absolute-bottom .add-to-cart {
  background: #00838f;
  color: white;
  padding: 10px 15px;
  position: relative;
  transition: all 0.2s ease-in-out;
}

@media (max-width: 450px) {
  #page .gifts-page #myProducts .product-wrapper .product .absolute-bottom .add-to-cart {
    padding: 5px 15px;
  }
}

#page .gifts-page #myProducts .product-wrapper .product .absolute-bottom .add-to-cart:hover {
  text-decoration: none;
  background: #00545c;
}

#page .gifts-page .gift-open {
    position: absolute;
    right: 0;
    top: 15px;
    height: 1016px;
    z-index: -1;
}

@media (min-width: 1601px) and (max-width: 1750px) {
  #page .gifts-page .gift-open {
    height: 480px;
  }
}

@media (min-width: 1301px) and (max-width: 1600px) {
  #page .gifts-page .gift-open {
    height: 380px;
  }
}

@media (min-width: 992px) and (max-width: 1300px) {
  #page .gifts-page .gift-open {
    height: 315px;
    right: 0px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #page .gifts-page .gift-open {
    height: 270px;
    right: -340px;
    top: 10px;
  }
}

@media (max-width: 767px) {
  #page .gifts-page .gift-open {
    top: auto;
    height: 253px;
    right: -75px;
    bottom: 23px;
    display: none;
  }
}

#page .order-page {
  padding-right: 400px;
}

@media (max-width: 991px) {
  #page .order-page {
    padding-right: 310px;
    position: relative;
  }
}

@media (max-width: 767px) {
  #page .order-page {
    padding-right: 0px;
    padding: 10px;
  }
}

#page .order-page .order-steps {
  margin-top: 50px;
  margin-bottom: 25px;
  padding: 0 15px;
}

#page .order-page .step-1 {
  background: #139290;
}

#page .order-page .step-1:after {
  content: "";
  border-color: transparent transparent transparent #139290;
}

#page .order-page .step-2 {
  background: #107b79;
  margin-left: -2px;
}

#page .order-page .step-2:after {
  content: "";
  border-color: transparent transparent transparent #107b79;
}

#page .order-page .step {
  display: inline-block;
  width: 200px;
  height: 45px;
  color: white;
  text-align: center;
  position: relative;
  font-size: 17px;
}

@media (max-width: 767px) {
  #page .order-page .step {
    width: 49%;
  }
}

@media (max-width: 450px) {
  #page .order-page .step {
    font-size: 13px;
  }
}

#page .order-page .step:after {
  content: "";
  border-style: solid;
  border-width: 22px 2px 23px 24px;
  position: absolute;
  left: 100%;
  z-index: 2;
}

#page .order-page .step span {
  margin-top: 7px;
  display: inline-block;
}

@media (max-width: 450px) {
  #page .order-page .step span {
    margin-top: 12px;
  }
}

#page .order-page .delivery-guy {
  position: fixed;
  right: 65px;
  bottom: 0px;
}

@media (max-width: 991px) {
  #page .order-page .delivery-guy {
    position: absolute;
    right: -7px;
    bottom: 109px;
    height: 450px;
  }
}

@media (max-width: 767px) {
  #page .order-page .delivery-guy {
    display: none;
  }
}

#page .order-page label {
  display: none;
}

@media (min-width: 768px) and (max-width: 991px) {
  #page .order-page .order-form {
    padding-right: 80px;
  }
}

#page .order-page .order-form .form-column input {
  width: 100%;
  margin: 10px 0;
  height: 38px;
  padding: 5px 15px;
  font-size: 17px;
  color: black;
  border: none;
}

#page .order-page .order-form .form-column input::-webkit-input-placeholder {
  color: #a8a8a8;
  font-size: 17px;
}

#page .order-page .order-form .form-column input.textbox-small {
  width: 49%;
  display: inline-block;
}

#page .order-page .order-form .order-buttons {
  padding: 30px 15px;
  margin-top: 30px;
  clear: both;
  font-size: 17px;
}

@media (max-width: 767px) {
  #page .order-page .order-form .order-buttons {
    margin-top: 0px;
  }
}

@media (max-width: 450px) {
  #page .order-page .order-form .order-buttons {
    font-size: 12px;
  }
}

#page .order-page .order-form .order-buttons .change-order {
  background: #139290;
  color: white;
  border: none;
  padding: 8px 20px;
}

@media (max-width: 450px) {
  #page .order-page .order-form .order-buttons .change-order {
    padding: 8px 10px;
    font-size: 12px;
  }
}

#page .order-page .order-form .order-buttons .change-order i {
  display: none;
}

#page .order-page .order-form .order-buttons .make-order {
  background: #ed1a3b;
  color: white;
  border: none;
  margin-left: 20px;
  padding: 8px 20px;
}

@media (max-width: 450px) {
  #page .order-page .order-form .order-buttons .make-order {
    padding: 8px 10px;
    font-size: 12px;
  }
}

#page .confirmation-page {
  padding-right: 400px;
}

@media (max-width: 991px) {
  #page .confirmation-page {
    position: relative;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #page .confirmation-page {
    padding-right: 385px;
  }
}

@media (max-width: 767px) {
  #page .confirmation-page {
    padding-right: 0px;
    padding: 10px;
  }
}

#page .confirmation-page .order-steps {
  margin-top: 50px;
  margin-bottom: 25px;
  padding: 0 15px;
}

#page .confirmation-page .step-1 {
  background: #107b79;
}

#page .confirmation-page .step-1:after {
  content: "";
  border-color: transparent transparent transparent #107b79;
}

#page .confirmation-page .step-2 {
  background: #139290;
  margin-left: -2px;
}

#page .confirmation-page .step-2:after {
  content: "";
  border-color: transparent transparent transparent #139290;
}

#page .confirmation-page .step {
  display: inline-block;
  width: 200px;
  height: 45px;
  color: white;
  text-align: center;
  position: relative;
  font-size: 17px;
}

@media (max-width: 991px) {
  #page .confirmation-page .step {
    width: 49%;
  }
}

@media (max-width: 450px) {
  #page .confirmation-page .step {
    font-size: 13px;
  }
}

#page .confirmation-page .step:after {
  content: "";
  border-style: solid;
  border-width: 22px 2px 23px 24px;
  position: absolute;
  left: 100%;
  z-index: 2;
}

#page .confirmation-page .step span {
  margin-top: 7px;
  display: inline-block;
}

@media (max-width: 450px) {
  #page .confirmation-page .step span {
    margin-top: 12px;
  }
}

#page .confirmation-page .order-buttons {
  padding: 30px 15px;
  clear: both;
  font-size: 17px;
}

@media (max-width: 450px) {
  #page .confirmation-page .order-buttons {
    font-size: 12px;
  }
}

#page .confirmation-page .order-buttons .change-order {
  background: #139290;
  color: white;
  border: none;
  padding: 8px 20px;
}

@media (max-width: 450px) {
  #page .confirmation-page .order-buttons .change-order {
    padding: 8px 10px;
    font-size: 12px;
  }
}

#page .confirmation-page .order-buttons .change-order i {
  display: none;
}

#page .confirmation-page .order-buttons .make-order {
  background: #ed1a3b;
  color: white;
  border: none;
  margin-left: 20px;
  padding: 8px 20px;
}

@media (max-width: 450px) {
  #page .confirmation-page .order-buttons .make-order {
    padding: 8px 10px;
    font-size: 12px;
  }
}

#page .confirmation-page .data-overview-wrapper {
  background: white;
  color: black;
  padding: 25px;
}

#page .confirmation-page .data-overview-wrapper .data-overview-label {
  font-size: 17px;
  font-weight: bold;
}

#page .confirmation-page .data-overview-wrapper label {
  font-weight: normal;
}

#page .confirmation-page .data-overview-wrapper .edit-data {
  float: right;
  cursor: pointer;
}

@media (max-width: 767px) {
  #page .confirmation-page .product-info-wrapper {
    padding: 20px 100px;
  }
}

@media (max-width: 500px) {
  #page .confirmation-page .product-info-wrapper {
    padding: 20px 30px;
  }
}

#page .confirmation-page .product-info-wrapper .product {
  position: relative;
  background: url("../../images/gift2.png");
  color: black;
  text-align: center;
  height: 0;
  padding-bottom: 120%;
  background-size: cover;
  margin-top: -36px;
}

@media (max-width: 1200px) {
  #page .confirmation-page .product-info-wrapper .product {
    margin-top: 0;
  }
  #page .confirmation-page .product-info-wrapper .product img {
    height: 100px;
  }
}

@media (max-width: 991px) {
  #page .confirmation-page .product-info-wrapper .product {
    margin-top: 20px;
  }
  #page .confirmation-page .product-info-wrapper .product img {
    height: 150px;
  }
}

#page .confirmation-page .product-info-wrapper .product:before {
  content: "";
  background: url("../../images/gift2_black.png");
  height: 100%;
  width: 100%;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  opacity: 0;
  z-index: 2;
  transition: all 0.2s ease-in-out;
}

#page .confirmation-page .product-info-wrapper .product .product-title {
  display: none;
  color: white;
  font-size: 20px;
  z-index: 2;
  top: 50%;
  left: 50;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
}

#page .confirmation-page .product-info-wrapper .product:hover:before {
  content: "";
  background: url("../../images/gift2_black.png");
  height: 100%;
  width: 100%;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  opacity: 0.8;
  cursor: pointer;
  z-index: 2;
}

#page .confirmation-page .product-info-wrapper .product:hover .product-title {
  display: inline-block;
}

#page .confirmation-page .product-info-wrapper .product img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#page .confirmation-page .delivery-guy {
  position: fixed;
  right: 65px;
  bottom: 0px;
}

@media (max-width: 991px) {
  #page .confirmation-page .delivery-guy {
    right: -18px;
    bottom: 0px;
    height: 535px;
    position: fixed;
  }
}

@media (max-width: 767px) {
  #page .confirmation-page .delivery-guy {
    display: none;
  }
}

#page .success-page .success-wrapper {
  position: relative;
  margin-top: 100px;
}

#page .success-page .success-wrapper .decoration-box {
  border: 4px solid var(--white);
  width: 280px;
  border-right: none;
  display: inline-block;
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
}

@media (max-width: 500px) {
  #page .success-page .success-wrapper .decoration-box {
    width: 200px;
  }
}

#page .success-page .success-wrapper .decoration-box:before {
  content: "";
  height: 50px;
  background: var(--white);
  width: 4px;
  display: inline-block;
  right: 0;
  top: 0;
  position: absolute;
}

#page .success-page .success-wrapper .decoration-box:after {
  content: "";
  height: 50px;
  background: var(--white);
  width: 4px;
  display: inline-block;
  right: 0;
  bottom: 0;
  position: absolute;
}

#page .success-page .success-wrapper .success {
  font-weight: bold;
  font-size: 45px;
  padding: 70px 0px 70px 100px;
  margin: 0;
}

@media (max-width: 991px) {
  #page .success-page .success-wrapper .success {
    font-size: 27px;
  }
}

@media (max-width: 500px) {
  #page .success-page .success-wrapper .success {
    font-size: 27px;
    padding: 60px 0px 60px 20px;
  }
}

#page .success-page .success-wrapper .success .number {
  white-space: nowrap;
}

#page .success-page .success-wrapper .success a {
  color: var(--white);
}

#page .contact-page .contact-text-wrapper {
  position: relative;
  margin-top: 100px;
}

#page .contact-page .contact-text-wrapper .decoration-box {
  border: 4px solid var(--white);
  width: 280px;
  border-right: none;
  display: inline-block;
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
}

@media (max-width: 500px) {
  #page .contact-page .contact-text-wrapper .decoration-box {
    width: 200px;
  }
}

#page .contact-page .contact-text-wrapper .decoration-box:before {
  content: "";
  height: 50px;
  background: var(--white);
  width: 4px;
  display: inline-block;
  right: 0;
  top: 0;
  position: absolute;
}

#page .contact-page .contact-text-wrapper .decoration-box:after {
  content: "";
  height: 50px;
  background: var(--white);
  width: 4px;
  display: inline-block;
  right: 0;
  bottom: 0;
  position: absolute;
}

#page .contact-page .contact-text-wrapper .contact-text {
  font-weight: bold;
  font-size: 45px;
  padding: 70px 0px 70px 100px;
  margin: 0;
}

@media (max-width: 991px) {
  #page .contact-page .contact-text-wrapper .contact-text {
    font-size: 27px;
  }
}

@media (max-width: 500px) {
  #page .contact-page .contact-text-wrapper .contact-text {
    font-size: 27px;
    padding: 60px 0px 60px 20px;
  }
}

#page .contact-page .contact-text-wrapper .contact-text .number {
  white-space: nowrap;
}

#page .contact-page .contact-text-wrapper .contact-text a {
  color: var(--white);
}

#page .terms-page, #page .cookies-page {
  padding-bottom: 60px;
}

#page .cookies-page ul {
  list-style: none;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  padding-bottom: 20px;
  color: var(--white);
}

@media (max-width: 768px) {
  .footer {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.footer .footer-left {
  float: left;
}

@media (max-width: 620px) {
  .footer .footer-left {
    float: none;
  }
}

.footer .footer-left .contact, .footer .footer-left .terms, .footer .footer-left .cookies {
  display: inline-block;
  margin-right: 20px;
}

.footer .footer-left .contact a, .footer .footer-left .terms a, .footer .footer-left .cookies a {
  color: var(--white);
  font-weight: bold;
  font-size: 16px;
}

@media (max-width: 640px) {
  .footer .footer-left .contact a, .footer .footer-left .terms a, .footer .footer-left .cookies a {
    font-size: 14px;
  }
}

.footer .footer-left .terms {
  display: inline-block;
}

.footer .footer-right {
  float: right;
}

@media (max-width: 620px) {
  .footer .footer-right {
    float: none;
  }
}

.footer .footer-right .realisation {
  font-weight: bold;
}

.footer .footer-right .realisation .realisation-lang {
  color: var(--white);
  font-weight: normal;
  font-size: 16px;
}

@media (max-width: 640px) {
  .footer .footer-right .realisation .realisation-lang {
    font-size: 14px;
  }
}

.footer .footer-right .realisation a {
  color: var(--white);
  font-weight: bold;
  font-size: 16px;
}

@media (max-width: 640px) {
  .footer .footer-right .realisation a {
    font-size: 14px;
  }
}

@font-face {
  font-family: Lato;
  src: url("../../Fonts/Lato-Light.ttf");
  font-weight: 300;
}

@font-face {
  font-family: Lato;
  src: url("../../Fonts/Lato-Regular.ttf");
  font-weight: normal;
}

@font-face {
  font-family: Lato;
  src: url("../../Fonts/Lato-Bold.ttf");
  font-weight: 800;
}

html,
body {
  min-width: 320px;
}

legend {
  padding-bottom: 20px;
  border-bottom: 1px solid #ecf0f1;
  font-size: 18px;
}

body.bg {
  background: url(../../images/bg.jpg) no-repeat center center fixed;
  background-size: cover;
}

.reset-row-margin {
  margin: 0;
}

:focus {
  outline: 0 !important;
}

.copy {
  color: #FFFFFF;
  text-shadow: 1px 1px 5px #333;
}

.navbar-default {
  background-color: #233240;
}

.navbar-fixed-top {
  min-width: 360px;
}

.container-body {
  padding: 15px 15px 0 15px;
}

.container-login {
  padding-top: 100px;
}

.panel-heading {
  font-size: 15px;
}

.required {
  color: #b94a48;
}

.confirm .btn-group {
  margin-left: 10px;
}

.tab-content {
  padding-top: 15px;
}

.text-static {
  padding-top: 11px;
  padding-bottom: 11px;
  margin-bottom: 0;
}

.startup-error {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  padding: 2px;
  text-align: center;
  background-color: red;
  border-color: transparent;
  color: white;
  font-size: 12px;
  z-index: 1040;
}

.imageupload .fileinput .thumbnail {
  padding: 5px;
  margin-right: 5px;
  border-width: 1px;
}

.imageupload .fileinput-new .btn-file {
  width: 212px;
}

.imageupload .fileinput.fileinput-exists .btn-file,
.imageupload .fileinput.fileinput-exists .btn-remove {
  width: 104px;
}

.row-margin {
  margin-top: 15px;
  margin-bottom: 15px;
  overflow: hidden;
}

.row-margin:first-child {
  margin-top: 0;
}

.row-margin:last-child {
  margin-bottom: 0;
}

.nav-tabs > li > a {
  font-size: 18px;
}

.pull-left-xs {
  float: left;
}

.pull-right-xs {
  float: right;
}

@media (min-width: 768px) {
  .pull-left-sm {
    float: left;
  }
  .pull-right-sm {
    float: right;
  }
}

@media (min-width: 992px) {
  .pull-left-md {
    float: left;
  }
  .pull-right-md {
    float: right;
  }
}

@media (min-width: 1200px) {
  .pull-left-lg {
    float: left;
  }
  .pull-right-lg {
    float: right;
  }
}

/* DateTime Picker */
.bootstrap-datetimepicker-widget .btn:hover {
  color: inherit;
}

input[data-toggle="date"] + .input-group-addon,
input[data-toggle="datetime"] + .input-group-addon {
  cursor: pointer;
}

/* Sticky Footer */
html {
  position: relative;
  min-height: 100%;
}

.form-footer {
  bottom: 15px;
  left: 245px;
  right: 15px;
}

@media (min-width: 768px) {
  .form-footer-spacer {
    margin-bottom: 54px;
    padding-bottom: 15px;
  }
  .form-footer {
    position: absolute;
  }
}

/*
 * Buttons
 */
.btn-wide {
  width: 100%;
}

.btn-w50 {
  width: 50px;
}

.btn-w100 {
  width: 104px;
}

.btn-w150 {
  width: 158px;
}

.btn-w200 {
  width: 212px;
}

.btn-group .btn-w50 {
  width: 50px;
}

.btn-group .btn-w100 {
  width: 100px;
}

.btn-group .btn-w150 {
  width: 150px;
}

.btn-group .btn-w200 {
  width: 200px;
}

.btn-label {
  left: -15px;
}

.form-group .btn {
  margin: 0px 2px;
}

.form-group .btn:first-child {
  margin-left: 0;
}

/*
 * Elementy blokowe
 */
.p1 {
  padding: 1px !important;
}

.p2 {
  padding: 2px !important;
}

.p3 {
  padding: 3px !important;
}

.p0 {
  padding: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.p5 {
  padding: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.p10 {
  padding: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.p20 {
  padding: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.m0 {
  margin: 0px !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.m5 {
  margin: 5px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.m10 {
  margin: 10px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.m20 {
  margin: 20px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

@media (min-width: 1200px) {
  .col-lg-p0 {
    padding: 0px !important;
  }
  .col-lg-pt0 {
    padding-top: 0px !important;
  }
  .col-lg-pr0 {
    padding-right: 0px !important;
  }
  .col-lg-pb0 {
    padding-bottom: 0px !important;
  }
  .col-lg-pl0 {
    padding-left: 0px !important;
  }
}

@media (min-width: 768px) {
  .col-sm-p0 {
    padding: 0px !important;
  }
  .col-sm-pt0 {
    padding-top: 0px !important;
  }
  .col-sm-pr0 {
    padding-right: 0px !important;
  }
  .col-sm-pb0 {
    padding-bottom: 0px !important;
  }
  .col-sm-pl0 {
    padding-left: 0px !important;
  }
  .col-sm-p10 {
    padding: 10px !important;
  }
  .col-sm-pt10 {
    padding-top: 10px !important;
  }
  .col-sm-pr10 {
    padding-right: 10px !important;
  }
  .col-sm-pb10 {
    padding-bottom: 10px !important;
  }
  .col-sm-pl10 {
    padding-left: 10px !important;
  }
}

.form-group-block > .form-group {
  display: block;
}

.form-group-block > .form-group > .input-group,
.form-group-block > .form-group > .form-control {
  width: 100%;
}

/*
 * Validation
 */
.field-validation-error {
  color: #b94a48;
}

.field-validation-valid {
  display: none;
}

input.input-validation-error {
  border: 1px solid #b94a48;
}

input[type="checkbox"].input-validation-error {
  border: 0 none;
}

.validation-summary-errors ul {
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

.validation-summary-errors ul li {
  padding: 10px 0px;
  border-top: 1px solid #ebccd1;
}

.validation-summary-errors ul li:first-child {
  padding-top: 0;
  border-top: none;
}

.validation-summary-errors ul li:last-child {
  padding-bottom: 0;
}

.validation-summary-valid {
  display: none;
}

/*
 * GridView
 */
.table-transparent > thead > tr > th,
.table-transparent > tbody > tr > th,
.table-transparent > tfoot > tr > th,
.table-transparent > thead > tr > td,
.table-transparent > tbody > tr > td,
.table-transparent > tfoot > tr > td {
  border-top: none;
}

.table th {
  border-bottom-width: 4px !important;
}

.table th > a {
  display: block;
  text-decoration: none !important;
}

.table td > p:first-child {
  margin-top: 10px;
}

.table td > p:last-child {
  margin-bottom: 10px;
}

.table td:not(.buttons) > a {
  display: block;
  text-decoration: none;
  color: #2c3e50;
}

.table td:not(.buttons) > a:hover {
  text-decoration: underline;
}

.gridview .buttons {
  padding: 3px;
  width: 10px;
}

.gridview .buttons .btn-group {
  white-space: nowrap;
}

.gridview .buttons .btn-group .btn {
  float: none;
  display: inline-block;
  white-space: nowrap;
}

.gridview .empty {
  padding: 15px;
  border: 1px solid #ddd;
  border-top: none;
}

.gridview .footer {
  overflow: hidden;
  text-align: right;
}

.gridview .pagination {
  margin-top: 0;
}

.gridview .stats {
  padding: 12px 0px 13px 10px;
  float: left;
}

.gridview select.pagesize {
  width: 70px;
  margin: 6px 0px 7px 10px;
  float: left;
}

.gridview a.pagesize {
  display: none;
}

.panel .gridview .table {
  margin-bottom: 0;
  border-top: none;
}

.panel .gridview .table,
.panel .gridview .table th:first-child,
.panel .gridview .table td:first-child {
  border-left: none;
}

.panel .gridview .table,
.panel .gridview .table th:last-child,
.panel .gridview .table td:last-child {
  border-right: none;
}

.panel .gridview .table:last-child,
.panel .gridview .table:last-child tr:last-child td {
  border-bottom: none;
}

.panel .gridview .table-responsive {
  margin-bottom: 0;
  border: none;
}

.panel .gridview .empty {
  border: none;
}

.panel .gridview .footer {
  border-top: 1px solid #ecf0f1;
}

.panel .gridview .pagination {
  margin: 7px 7px 3px 10px;
}

/*
 * Off Canvas
 */
.offcanvas-wrap {
  margin-top: 50px;
}

.offcanvas-sidebar {
  position: fixed;
  left: 0px;
  top: 50px;
  bottom: 0px;
  width: 230px;
  overflow: auto;
  background: #383838;
}

.offcanvas-content {
  margin-left: 230px;
  min-height: 400px;
}

@media screen and (max-width: 767px) {
  .offcanvas-wrap,
  .offcanvas-sidebar {
    transition: all .25s ease-out;
  }
  .offcanvas-content {
    position: static;
    margin-left: 0px;
  }
  .offcanvas-wrap {
    position: relative;
    left: 0px;
  }
  .offcanvas-wrap .offcanvas-sidebar {
    left: -230px;
  }
  .offcanvas-wrap.active {
    left: 230px;
  }
  .offcanvas-wrap.active .offcanvas-sidebar {
    left: 0px;
  }
}

/*
 * Sidebar
 */
.sidebar {
  display: block;
}

.sidebar-nav {
  background-image: linear-gradient(to right, #337ab7 10px, #383838 10px);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff383838', GradientType=1);
}

.sidebar-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav a,
.sidebar-nav a:hover,
.sidebar-nav a:focus,
.sidebar-nav a:active {
  outline: none;
}

.sidebar-nav ul li,
.sidebar-nav ul a {
  display: block;
}

.sidebar-nav ul a {
  padding: 10px 20px;
  color: #a7b1c2;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.5);
}

.sidebar-nav ul li.active > a,
.sidebar-nav ul a:hover,
.sidebar-nav ul a:focus,
.sidebar-nav ul a:active {
  color: #fff;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.2);
}

.sidebar-nav ul ul a {
  padding: 10px 30px;
  background-color: rgba(0, 0, 0, 0.2);
}

.sidebar-nav ul ul ul a {
  padding: 10px 40px;
}

.sidebar-nav-item {
  padding-left: 5px;
}

.sidebar-nav-item-icon {
  display: inline-block;
  text-align: center;
}

/*
 * Metis Menu
 */
.arrow {
  float: right;
  line-height: 1.42857;
}

.glyphicon.arrow:before {
  content: "\e079";
}

.active > a > .glyphicon.arrow:before {
  content: "\e114";
}

.fa.arrow:before {
  content: "\f104";
}

.active > a > .fa.arrow:before {
  content: "\f107";
}

.plus-times {
  float: right;
}

.fa.plus-times:before {
  content: "\f067";
}

.active > a > .fa.plus-times {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.plus-minus {
  float: right;
}

.fa.plus-minus:before {
  content: "\f067";
}

.active > a > .fa.plus-minus:before {
  content: "\f068";
}
