/**
* @author      Dominik Douděra(doudera@grow-studio.eu)
* @copyright   (C) 2016 Všechna práva vyhrazena.
* @link        https://grow-studio.eu/
* 
*/
/**
* @author      Dominik Douděra(doudera@grow-studio.eu)
* @copyright   (C) 2016 Všechna práva vyhrazena.
* @link        https://grow-studio.eu/
* 
*/
@font-face {
  font-family: 'Cinzel';
  src: url('font/Cinzel-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.order {
  padding-bottom: 100px;
  position: relative;
}
.order .no-padding {
  padding: 0;
}
.order .no-margin {
  margin: 0;
}
.order .loading {
  position: absolute;
  z-index: 10;
  text-align: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.5);
}
.order .loading .loader {
  border: 16px solid #000000;
  /* Light grey */
  border-top: 16px solid #237b6d;
  /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  position: absolute;
  left: calc(50% - 60px);
  top: calc(60vh - 77px);
}
.order .menu {
  background: #efefef;
  margin-top: 25px;
  margin-bottom: 10px;
  padding: 15px 0;
  text-align: center;
}
@media (max-width: 680px) {
  .order .menu {
    padding: 15px 10px;
  }
}
.order .menu a:hover {
  text-decoration: none;
}
.order .menu ul {
  list-style-type: none;
  margin: 0;
  padding-left: 16px;
}
@media (max-width: 680px) {
  .order .menu ul {
    padding: 0;
    text-align: center;
  }
}
.order .menu ul li {
  display: inline-block;
  vertical-align: top;
  color: #a5a5a5;
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 680px) {
  .order .menu ul li {
    width: 23.9%;
    text-align: center;
  }
}
.order .menu ul li .number {
  color: white;
  font-size: 16px;
  font-weight: 500;
  background: #a5a5a5;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -khtml-border-radius: 50%;
  width: 30px;
  text-align: center;
  display: inline-block;
  vertical-align: top;
  height: 30px;
  line-height: 30px;
  display: none;
}
@media (min-width: 680px) {
  .order .menu ul li .number.check {
    color: black;
    font-size: 14px;
    font-weight: 500;
    line-height: 30px;
    background: none;
    display: inline-block;
    vertical-align: top;
  }
}
@media (max-width: 680px) {
  .order .menu ul li .number {
    width: 100%;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    -khtml-border-radius: 0;
    display: inline-block;
    vertical-align: middle;
  }
}
@media (max-width: 680px) {
  .order .menu ul li .number .num {
    display: none;
  }
}
@media (min-width: 680px) {
  .order .menu ul li .fa.mobileIcon {
    display: none;
  }
}
.order .menu ul li .name {
  display: inline-block;
  vertical-align: top;
  margin-left: 5px;
  color: black;
  font-weight: 300;
}
@media (max-width: 990px) {
  .order .menu ul li .name {
    font-size: 16px;
    margin-top: 3px;
  }
}
@media (max-width: 680px) {
  .order .menu ul li .name {
    display: none;
  }
}
.order .menu ul li .arrow {
  color: black;
  display: inline-block;
  vertical-align: top;
  margin-left: 45px;
  margin-right: 45px;
}
@media (max-width: 991px) {
  .order .menu ul li .arrow {
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media (max-width: 680px) {
  .order .menu ul li .arrow {
    display: none;
  }
}
.order .menu ul li.active .number {
  background: #237b6d;
}
.order .menu ul li.active .arrow {
  font-weight: normal;
}
.order .menu ul li.active .name {
  color: black;
  font-weight: bold;
}
.order .menu ul li.active .number {
  background: #237B6D;
}
.order .menu ul li.completed {
  color: #237B6D;
}
.order .menu ul li.completed .number {
  background: #282622;
}
.order .menu ul li.completed .name {
  color: #237B6D;
  font-weight: bold;
}
.order .checkbox {
  margin: 0;
}
.order .checkbox [type="radio"]:checked,
.order .checkbox [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.order .checkbox [type="radio"]:checked + label,
.order .checkbox [type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
}
.order .checkbox [type="radio"]:checked + label:before,
.order .checkbox [type="radio"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 22px;
  height: 22px;
  border: 1px solid #000000;
  border-radius: 100%;
  background: white;
}
.order .checkbox [type="radio"]:checked + label:after,
.order .checkbox [type="radio"]:not(:checked) + label:after {
  content: '';
  width: 12px;
  height: 12px;
  background: black;
  position: absolute;
  top: 21px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.order .checkbox [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.order .checkbox [type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.order .freePostage .left {
  padding-right: 0;
  text-align: center;
}
@media (max-width: 680px) {
  .order .freePostage .left {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }
}
.order .freePostage .left img {
  margin-top: 4px;
}
.order .freePostage .right {
  color: #000000;
  font-size: 14px;
}
@media (max-width: 680px) {
  .order .freePostage .right {
    width: 100%;
    text-align: center;
  }
}
.order .freePostage .right span {
  font-weight: bold;
}
.order .freePostage .right .box {
  width: 100%;
  height: 4px;
  margin-top: 7px;
  background: #e4e4e4;
  position: relative;
}
.order .freePostage .right .box .completed {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  background: #237b6d;
}
.order .cupon {
  text-align: right;
}
.order .cupon .i-have-coupon {
  color: black;
  font-weight: bold;
}
@media (max-width: 991px) {
  .order .cupon .i-have-coupon {
    text-align: center;
    display: block;
  }
}
.order .cupon .i-have-coupon img {
  margin-right: 10px;
}
.order .buttons {
  margin-top: 20px;
}
.order .buttons button {
  box-shadow: none;
  padding: 16px 33px;
}
.order .buttons button.btn-arrow-right {
  background: #237B6D;
  color: white;
}
.order .buttons button.btn-arrow-right:hover {
  background: #1B8076;
}
@media (max-width: 680px) {
  .order .buttons .left {
    width: 100%;
    margin-bottom: 10px;
  }
}
.order .buttons .left button {
  font-size: 14px;
  min-width: 200px;
  padding: 10px 27px;
}
@media (max-width: 680px) {
  .order .buttons .left button {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .order .buttons .left a {
    display: block;
  }
}
.order .buttons .right {
  text-align: right;
}
@media (max-width: 680px) {
  .order .buttons .right {
    width: 100%;
  }
}
.order .buttons .right button {
  min-width: 200px;
}
@media (max-width: 680px) {
  .order .buttons .right button {
    width: 100%;
  }
}
.order .callout {
  margin-top: 10px;
}
.order .text-red {
  color: red;
}
.order .heureka-help {
  background: #F6F4F6;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  text-align: left;
  color: black;
  padding: 24px 0;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .order .heureka-help {
    text-align: center;
  }
}
.order .heureka-help h2 {
  font-size: 28px;
  font-weight: 400;
  line-height: 38px;
  color: black;
  text-align: left;
  margin-top: 0;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .order .heureka-help h2 {
    text-align: center;
  }
}
.order .heureka-help a {
  color: #E1A840;
  text-decoration: underline;
}
.order .heureka-help #showHeurekaBadgeHere-11 {
  text-align: right;
  margin-top: -20px;
}
@media (max-width: 991px) {
  .order .heureka-help #showHeurekaBadgeHere-11 {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 0;
  }
}
.order .heureka-help #showHeurekaBadgeHere-11 img {
  max-width: 100%;
  height: auto;
}
.order .address {
  background: #f9f9f9;
  padding: 10px 10px;
}
.order .address .form-group {
  margin-bottom: 10px;
  position: relative;
}
.order .address .form-group label {
  color: #000000;
  font-size: 14px;
  font-weight: normal;
}
.order .address .form-group input {
  border: 1px solid #e2e2e2;
  border-radius: 3px;
  color: #000000;
  font-weight: bold;
}
.order .address .form-group textarea {
  border: 1px solid #e2e2e2;
  border-radius: 3px;
  color: #000000;
  font-weight: bold;
  min-height: 140px;
  padding: 10px 18px;
}
.order .address .form-group.has-error input {
  border: 1px solid red;
  background: #ffeded;
}
.order .address .form-group.is-valid:after {
  content: ' ';
  position: absolute;
  background: url(../images/validationSuccess.png) no-repeat;
  width: 21px;
  height: 21px;
  right: 6px;
  top: 35px;
}
.order .cart {
  position: static;
  display: block;
}
.order .cart h1 {
  font-family: Cinzel;
  font-size: 40px;
  font-weight: 400;
  line-height: 54px;
  text-align: center;
  color: black;
  margin-top: 40px;
}
.order .cart .products .product {
  margin-top: 15px;
}
.order .cart .products .product .wrap {
  border-top: 1px solid #e8e8e8;
  padding: 10px 0;
  background: none;
}
.order .cart .products .product .wrap .image {
  padding-left: 0;
  text-align: center;
  height: auto;
  line-height: initial;
}
@media (max-width: 680px) {
  .order .cart .products .product .wrap .image {
    width: 30%;
  }
}
.order .cart .products .product .wrap .image img {
  max-width: 100%;
  height: auto;
  max-height: 85px;
}
@media (max-width: 680px) {
  .order .cart .products .product .wrap .name-quantity-wrap {
    width: 60%;
    padding-right: 0;
  }
}
.order .cart .products .product .wrap .name-quantity-wrap .variant {
  font-size: 13px;
  color: #a0a0a0;
  margin-top: 3px;
}
.order .cart .products .product .wrap .name {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0;
  text-align: left;
}
.order .cart .products .product .wrap .remove {
  color: #000000;
  border: 1px solid #efefef;
  cursor: pointer;
  width: 35px;
  padding: 6.5px;
  text-align: center;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -khtml-border-radius: 5px;
  display: inline-block;
  vertical-align: top;
  float: right;
}
.order .cart .products .product .wrap .remove .fas {
  position: relative;
  top: 1px;
}
.order .cart .products .product .wrap .price {
  color: #000000;
  text-align: right;
  font-size: 20px;
  margin-top: 4px;
}
@media (max-width: 680px) {
  .order .cart .products .product .wrap .price {
    text-align: left;
    padding: 0;
  }
}
.order .cart .products .product .wrap .price span {
  font-weight: bold;
}
.order .cart .products .product .wrap .price .cupon-product {
  text-align: right;
  color: #237b6d;
  font-size: 12px;
}
.order .cart .products .product .wrap .quantity {
  padding-right: 0;
}
.order .cart .products .product .wrap .quantity .minus {
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 5px;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border: 1px solid #efefef;
  width: 30px;
  font-size: 20px;
  color: #000000;
  font-weight: 500;
  text-align: center;
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  height: 30px;
  border-right: none;
}
.order .cart .products .product .wrap .quantity .minus:before {
  content: '-';
  position: relative;
  top: -2px;
}
.order .cart .products .product .wrap .quantity .totalinput {
  display: inline-block;
  vertical-align: top;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  width: 55px;
  line-height: 26px;
  color: #282622;
  padding: 0 2px;
  font-size: 14px;
  position: relative;
  left: -4px;
  height: 30px;
}
.order .cart .products .product .wrap .quantity .totalinput input {
  width: 47%;
  border: none;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  color: #000000;
  font-size: 14px;
}
.order .cart .products .product .wrap .quantity .totalinput .unit {
  width: 39%;
  display: inline-block;
  vertical-align: top;
  margin-top: 1px;
  color: #000000;
}
.order .cart .products .product .wrap .quantity .plus {
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 0;
  -webkit-border-top-left-radius: 0;
  -webkit-border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border: 1px solid #efefef;
  width: 30px;
  font-size: 20px;
  color: #000000;
  font-weight: 500;
  text-align: center;
  display: inline-block;
  vertical-align: top;
  position: relative;
  left: -8px;
  cursor: pointer;
  height: 30px;
  border-left: none;
}
.order .cart .products .product .wrap .quantity .plus:before {
  content: '+';
  position: relative;
  left: -2px;
}
.order .cart .products .product .wrap .price-wrap {
  margin-top: 27px;
  padding-right: 0;
}
@media (max-width: 680px) {
  .order .cart .products .product .wrap .price-wrap {
    width: 100%;
    padding: 0;
  }
}
.order .cart .products .product .wrap .store {
  padding-left: 0;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  margin-top: 4px;
}
.order .cart .total {
  background: #efefef;
  padding: 20px;
  font-size: 26px;
  font-weight: bold;
  border-top: 4px solid #dcdcdc;
  margin-top: 10px;
}
.order .cart .total .name {
  color: #000000;
}
.order .cart .total .price {
  text-align: right;
  color: #000000;
  padding-right: 10px;
}
@media (max-width: 680px) {
  .order .cart .total .price {
    text-align: center;
  }
}
@media (max-width: 680px) {
  .order .cart .total .total-price-name {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 680px) {
  .order .cart .total .total-price {
    width: 100%;
    text-align: center;
  }
}
.order .cart .total .coupon-price {
  color: #237b6d;
  font-size: 15px;
}
.order .cart .bottom {
  margin-top: 25px;
}
.order .cart .bottom .cupon {
  color: #237b6d;
  font-size: 14px;
}
@media (max-width: 980px) {
  .order .cart .bottom .cupon {
    margin-bottom: 0;
    margin-top: 40px;
    text-align: left;
  }
}
.order .cart .bottom .cupon .info {
  color: #528075;
  background: #efefef;
  text-align: center;
  padding: 10px 40px;
  border-top: 3px solid #528075;
  margin-top: 10px;
  position: relative;
}
.order .cart .bottom .cupon .info.error {
  color: #000000;
  border-top: 3px solid #f35e5e;
}
.order .cart .bottom .cupon .info a {
  color: #237b6d;
}
.order .cart .bottom .cupon .info .removeCoupon {
  color: #237b6d;
  position: absolute;
  right: 20px;
  top: 10px;
  cursor: pointer;
}
.order .cart .bottom .cupon .coupon-form {
  margin-top: 10px;
}
.order .cart .bottom .cupon .coupon-form .no-padding-left {
  padding-left: 0;
}
.order .cart .bottom .cupon .coupon-form .no-padding-right {
  padding-right: 0;
}
@media (max-width: 450px) {
  .order .cart .bottom .cupon .coupon-form .side {
    width: 100%;
    padding: 5px 15px;
    -moz-border-radius-topright: 21px;
    -moz-border-radius-bottomright: 21px;
    -webkit-border-top-right-radius: 21px;
    -webkit-border-bottom-right-radius: 21px;
  }
}
.order .cart .bottom .cupon .coupon-form input {
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 0;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
}
@media (max-width: 450px) {
  .order .cart .bottom .cupon .coupon-form input {
    -moz-border-radius-topright: 21px;
    -moz-border-radius-bottomright: 21px;
    -webkit-border-top-right-radius: 21px;
    -webkit-border-bottom-right-radius: 21px;
    border-radius: 21px;
  }
}
.order .cart .bottom .cupon .coupon-form .btn {
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 0;
  -webkit-border-top-left-radius: 0;
  -webkit-border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 9px 33px;
}
@media (max-width: 991px) {
  .order .cart .bottom .cupon .coupon-form .btn {
    width: 100%;
    border-radius: 5px;
  }
}
.order .payment-and-shipping {
  padding: 0 15px;
}
.order .payment-and-shipping h1,
.order .payment-and-shipping h2 {
  color: #000000;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 15px;
  text-align: left;
}
@media (max-width: 680px) {
  .order .payment-and-shipping h1,
  .order .payment-and-shipping h2 {
    font-size: 24px;
    text-align: center;
  }
}
.order .payment-and-shipping h2 {
  margin-top: 40px;
}
.order .payment-and-shipping .choosing {
  background: #efefef;
  padding: 7px;
  padding-bottom: 1px;
}
.order .payment-and-shipping .choosing .item {
  background: white;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -khtml-border-radius: 5px;
  margin-bottom: 8px;
}
.order .payment-and-shipping .choosing .item .image {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  line-height: 50px;
}
@media (max-width: 680px) {
  .order .payment-and-shipping .choosing .item .image {
    display: none;
  }
}
.order .payment-and-shipping .choosing .item .image img {
  max-width: 100%;
  max-height: 40px;
}
.order .payment-and-shipping .choosing .item .name {
  display: inline-block;
  vertical-align: top;
  line-height: 50px;
  color: #000000;
  font-weight: 600;
}
@media (max-width: 680px) {
  .order .payment-and-shipping .choosing .item .name {
    line-height: initial;
    width: 100%;
    margin-top: 17px;
  }
}
.order .payment-and-shipping .choosing .item label {
  width: 100%;
}
@media (max-width: 680px) {
  .order .payment-and-shipping .choosing .item .price-free-wrap {
    width: 100%;
  }
}
.order .payment-and-shipping .choosing .item .price {
  text-align: right;
  margin-top: 6px;
}
@media (max-width: 680px) {
  .order .payment-and-shipping .choosing .item .price {
    padding: 0;
  }
}
.order .payment-and-shipping .choosing .item .price .now {
  color: #000000;
  font-weight: 600;
}
.order .payment-and-shipping .choosing .item .price .now.alone {
  position: relative;
  top: 10px;
}
@media (max-width: 680px) {
  .order .payment-and-shipping .choosing .item .price .now.alone {
    top: 0;
  }
}
.order .payment-and-shipping .choosing .item .price .free {
  color: #000000;
  font-size: 12px;
}
@media (max-width: 1200px) {
  .order .payment-and-shipping .choosing .item .info {
    display: none;
  }
}
.order .payment-and-shipping .choosing .item .info .icon {
  background: #237b6d;
  width: 22px;
  height: 22px;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-weight: bold;
  margin-top: 16px;
  padding-top: 2px;
}
.order .payment-and-shipping .choosing .item .info:hover .tooltip-info {
  display: inline-block;
  vertical-align: top;
}
.order .payment-and-shipping .choosing .item .info .tooltip-info {
  display: none;
  width: 320px;
  background: #237b6d;
  color: white;
  z-index: 10;
  position: absolute;
  padding: 15px;
  margin-top: 8px;
  margin-left: -8px;
}
.order .payment-and-shipping .choosing .item .info .tooltip-info::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #237b6d;
  top: -5px;
  position: absolute;
}
.order .payment-and-shipping .freePostage {
  margin-top: 25px;
}
.order .payment-and-shipping .not-choosen-shippment {
  background: #000000;
  padding: 20px;
}
.order .summary {
  margin-top: -28px;
}
@media (max-width: 990px) {
  .order .summary {
    margin-top: 20px;
  }
}
.order .summary h2 {
  font-size: 16px;
  color: #000000;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 10px;
}
@media (max-width: 680px) {
  .order .summary h2 {
    font-size: 24px;
    text-align: center;
    font-weight: normal;
  }
}
.order .summary .products .product {
  border-top: 1px solid #e8e8e8;
  padding: 10px;
}
@media (max-width: 680px) {
  .order .summary .products .product {
    text-align: center;
  }
}
.order .summary .products .product .image {
  height: auto;
  line-height: initial;
}
@media (max-width: 680px) {
  .order .summary .products .product .image {
    width: 100%;
    margin-bottom: 10px;
  }
}
.order .summary .products .product .image img {
  max-width: 100%;
}
@media (max-width: 990px) {
  .order .summary .products .product .image img {
    max-height: 50px;
  }
}
.order .summary .products .product .desc {
  color: #000000;
  font-size: 14px;
  padding-left: 0;
}
@media (max-width: 680px) {
  .order .summary .products .product .desc {
    text-align: center;
    width: 100%;
    padding-left: 15px;
  }
}
.order .summary .products .product .desc .total-product {
  text-align: right;
}
@media (max-width: 990px) {
  .order .summary .products .product .desc .total-product {
    font-size: 18px;
  }
}
@media (max-width: 680px) {
  .order .summary .products .product .desc .total-product {
    text-align: center;
  }
}
.order .summary .products .product .desc .total-product .bold {
  font-weight: bold;
}
.order .summary .products .product .desc .cupon-product {
  text-align: right;
  color: #237b6d;
}
.order .summary .products .product .desc .name {
  text-align: left;
}
@media (max-width: 990px) {
  .order .summary .products .product .desc .name {
    font-size: 18px;
    text-align: center;
  }
}
.order .summary .products .product .desc .name .variant {
  font-size: 13px;
  color: #a0a0a0;
  margin-top: 3px;
}
.order .summary .additional-info {
  color: #000000;
  font-size: 14px;
  border-top: 1px solid #e8e8e8;
  padding: 10px;
}
@media (max-width: 1200px) {
  .order .summary .additional-info {
    text-align: center;
  }
}
.order .summary .additional-info .value {
  font-weight: bold;
  text-align: right;
}
@media (max-width: 1200px) {
  .order .summary .additional-info .value {
    text-align: center;
  }
}
.order .summary .additional-info .value .price {
  font-size: 12px;
  color: #237b6d;
}
.order .summary .additional-info .value.not-choosen {
  color: #237b6d;
}
.order .summary .total {
  border-top: 3px solid #dcdcdc;
  background: #efefef;
  font-weight: bold;
  font-size: 15px;
  color: #000000;
  padding: 15px 10px;
}
.order .summary .total .value {
  text-align: right;
  color: #000000;
}
.order .summary .total .name {
  font-size: 14px;
}
.order .address-page h1 {
  color: #000000;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 15px;
  text-align: left;
}
@media (max-width: 680px) {
  .order .address-page h1 {
    font-size: 24px;
    text-align: center;
  }
}
.order .address-page .form-group a {
  color: #237b6d;
  text-decoration: underline;
}
.order .address-page .form-control {
  height: 40px;
}
.order .empty-cart .headline {
  background: #237b6d;
  color: white;
  padding: 10px;
}
.order .empty-cart .content-text {
  background: #efefef;
  padding: 20px 10px;
}
.order .empty-cart .subheadline {
  font-weight: bold;
  margin-bottom: 10px;
}
.order .empty-cart.green .headline {
  background: #7aad65;
}
.order .payment {
  border: 1px solid #e2e2e2;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  vertical-align: top;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 30px;
}
@media (max-width: 990px) {
  .order .payment {
    width: 100%;
  }
}
.order .payment img {
  margin-top: 20px;
}
.order .payment h2 {
  font-size: 25px;
}
.order .payment .price {
  font-size: 35px;
  font-weight: bold;
  margin-top: 35px;
  margin-bottom: 15px;
}
.order .payment .btn {
  margin-top: 20px;
  margin-bottom: 20px;
  min-width: 250px;
}
.order .payment .btn i {
  margin-right: 10px;
}
.order-completed {
  text-align: center;
  background: #F6F4F6;
  padding-bottom: 15px;
}
.order-completed .content {
  color: black;
  background: white;
  padding: 40px 0;
  line-height: 24px;
}
.order-completed .content p {
  margin: 0;
}
.order-completed .content .logo {
  background: url("/template/default/images/raf3.png") no-repeat;
  width: 54px;
  height: 54px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.order-completed .content a {
  color: #237b6d;
}
.order-completed .content .empty-cart {
  text-align: left;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
