@charset "UTF-8";
/**
* @author      Dominik Douděra(doudera@grow-studio.eu)
* @copyright   (C) 2016 Všechna práva vyhrazena.
* @link        https://grow-studio.eu/
* 
*/
.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 black;
      /* Light grey */
      border-top: 16px solid black;
      /* Blue */
      border-radius: 50%;
      width: 120px;
      height: 120px;
      animation: spin 2s linear infinite;
      position: absolute;
      left: calc(50% - 60px);
      top: calc(60vh - 77px); }
@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
  .order .menu {
    background: #f3f3f3;
    margin-top: 12px;
    padding: 15px 0; }
    @media (max-width: 680px) {
      .order .menu {
        padding: 15px 10px; } }
    .order .menu a {
      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: black;
        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: #c5c5c5;
          -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; }
          @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; } }
          @media (max-width: 680px) {
            .order .menu ul li .number .num {
              display: none; } }
          @media (min-width: 680px) {
            .order .menu ul li .number .fa.mobileIcon {
              display: none; } }
        .order .menu ul li .name {
          display: inline-block;
          vertical-align: top;
          margin-left: 5px;
          color: #c5c5c5; }
          @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: #c5c5c5;
          display: inline-block;
          vertical-align: top;
          margin-left: 15px;
          margin-right: 15px; }
          @media (max-width: 680px) {
            .order .menu ul li .arrow {
              display: none; } }
        .order .menu ul li.active {
          color: black; }
          .order .menu ul li.active .number {
            background: black; }
          .order .menu ul li.active .name {
            color: black; }
          .order .menu ul li.active .arrow {
            color: black; }
        .order .menu ul li.completed {
          color: black; }
          .order .menu ul li.completed .number {
            background: black; }
          .order .menu ul li.completed .arrow {
            color: black; }
          .order .menu ul li.completed .name {
            color: black; }
  .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: 60px;
      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: 10px;
      top: 16px;
      width: 22px;
      height: 22px;
      border: 1px solid grey;
      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: 15px;
      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 {
    text-align: right;
    padding-right: 0; }
    @media (max-width: 680px) {
      .order .freePostage .left {
        width: 100%;
        text-align: center;
        margin-bottom: 15px; } }
  .order .freePostage .right {
    color: black;
    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: black;
      position: relative; }
      .order .freePostage .right .box .completed {
        position: absolute;
        top: 0;
        left: 0;
        height: 4px;
        background: black; }
  .order .buttons {
    margin-top: 20px; }
    .order .buttons button {
      box-shadow: none; }
    .order .buttons .left {
      text-align: left; }
      @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%; } }
    .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 .buttons .btn-default.btn-arrow-left {
      position: relative;
      top: 4px; }
      .order .buttons .btn-default.btn-arrow-left:before {
        content: " < ";
        display: inline-block;
        vertical-align: top;
        margin-right: 10px; }
    .order .buttons .btn-default.btn-arrow-right {
      position: relative;
      top: 4px; }
      .order .buttons .btn-default.btn-arrow-right:after {
        content: " > ";
        display: inline-block;
        vertical-align: top;
        margin-left: 10px; }
  .order .callout {
    margin-top: 10px;
    margin-bottom: 20px; }
  .order .text-red {
    color: red; }
  .order .address {
    background: #f9f9f9;
    padding: 10px 10px; }
    .order .address .form-group {
      margin-bottom: 10px;
      position: relative; }
      .order .address .form-group label {
        color: black;
        font-size: 14px;
        font-weight: normal;
        margin-bottom: 5px; }
      .order .address .form-group input {
        border: 1px solid #e2e2e2;
        border-radius: 3px;
        color: black;
        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 .address .control {
      display: block;
      position: relative;
      padding-left: 29px;
      margin-bottom: 9px;
      padding-top: 2px;
      cursor: pointer; }
      .order .address .control input {
        position: absolute;
        z-index: -1;
        opacity: 0; }
        .order .address .control input:focus ~ .control_indicator {
          background: #e6e6e6; }
        .order .address .control input:checked ~ .control_indicator {
          background: black; }
          .order .address .control input:checked ~ .control_indicator:after {
            display: block; }
        .order .address .control input:checked:focus ~ .control_indicator {
          background: black; }
        .order .address .control input:disabled ~ .control_indicator {
          background: #e6e6e6;
          opacity: 0.6;
          pointer-events: none; }
      .order .address .control:hover input ~ .control_indicator {
        background: #e6e6e6; }
      .order .address .control:hover input:not([disabled]):checked ~ .control_indicator {
        background: #f0412d; }
    .order .address .control_indicator {
      position: absolute;
      top: 2px;
      left: 0;
      height: 20px;
      width: 20px;
      background: #e6e6e6;
      border: 0px solid #000000;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      border-radius: 5px;
      -khtml-border-radius: 5px; }
      .order .address .control_indicator:after {
        box-sizing: unset;
        content: '';
        position: absolute;
        display: none; }
    .order .address .control-radio .control_indicator {
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      border-radius: 5px;
      -khtml-border-radius: 5px; }
    .order .address .control-checkbox .control_indicator:after {
      left: 6px;
      top: 0.8px;
      width: 2px;
      height: 7px;
      border-width: 0 2px 2px 0;
      transform: rotate(10deg);
      content: '✔';
      color: white;
      font-size: 11px; }
    .order .address .control-checkbox input:disabled ~ .control_indicator:after {
      border-color: #7b7b7b; }
  .order .cart {
    position: static; }
    .order .cart .products .product {
      margin-top: 15px;
      text-align: left; }
      .order .cart .products .product .wrap {
        border-top: 1px solid #dedbd4;
        padding: 10px 0;
        border-bottom: 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 {
          color: black;
          font-size: 16px;
          font-weight: 500;
          padding-top: 10px;
          padding-bottom: 10px;
          height: auto;
          display: block;
          text-align: left; }
          .order .cart .products .product .wrap .name .variant {
            color: #a3a3a3; }
        .order .cart .products .product .wrap .remove {
          color: black;
          border: 1px solid #dedbd4;
          cursor: pointer;
          width: 35px;
          height: 35px;
          padding: 4.5px;
          text-align: center;
          -moz-border-radius: 50%;
          -webkit-border-radius: 50%;
          border-radius: 50%;
          -khtml-border-radius: 50%;
          display: inline-block;
          vertical-align: top;
          float: right;
          margin-right: 40px; }
        .order .cart .products .product .wrap .price {
          color: black;
          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: black;
            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 #dedbd4;
            width: 30px;
            font-size: 20px;
            color: black;
            font-weight: 500;
            text-align: center;
            display: inline-block;
            vertical-align: top;
            cursor: pointer;
            height: 30px; }
            .order .cart .products .product .wrap .quantity .minus:before {
              content: '-';
              position: relative;
              top: -3px; }
          .order .cart .products .product .wrap .quantity .totalinput {
            display: inline-block;
            vertical-align: top;
            border-top: 1px solid #dedbd4;
            border-bottom: 1px solid #dedbd4;
            width: 82px;
            line-height: 26px;
            color: black;
            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: black;
              font-size: 14px; }
            .order .cart .products .product .wrap .quantity .totalinput .unit {
              width: 39%;
              display: inline-block;
              vertical-align: top;
              margin-top: 1px; }
          .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 #dedbd4;
            width: 30px;
            font-size: 20px;
            color: black;
            font-weight: 500;
            text-align: center;
            display: inline-block;
            vertical-align: top;
            position: relative;
            left: -8px;
            cursor: pointer;
            height: 30px; }
            .order .cart .products .product .wrap .quantity .plus:before {
              content: '+';
              position: relative;
              top: -2px;
              left: 1px; }
        .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: black;
          margin-top: 4px; }
    .order .cart .total {
      background: #f3f3f3;
      padding: 20px;
      font-size: 26px;
      font-weight: bold;
      border-top: 4px solid #0d516d;
      margin-top: 10px; }
      .order .cart .total .name {
        color: black; }
      .order .cart .total .price {
        text-align: right;
        color: black;
        position: relative;
        right: -19px;
        color: black;
        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: black;
        font-size: 15px; }
    .order .cart .bottom {
      margin-top: 25px; }
      .order .cart .bottom .cupon {
        color: black;
        font-size: 14px;
        text-align: left; }
        @media (max-width: 980px) {
          .order .cart .bottom .cupon {
            margin-bottom: 20px; } }
        .order .cart .bottom .cupon .info {
          color: green;
          background: #f3f3f3;
          text-align: center;
          padding: 10px 40px;
          border-top: 3px solid green;
          margin-top: 10px;
          position: relative; }
          .order .cart .bottom .cupon .info.error {
            color: black;
            border-top: 3px solid red; }
          .order .cart .bottom .cupon .info a {
            color: black; }
          .order .cart .bottom .cupon .info .removeCoupon {
            color: black;
            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-default {
            -moz-border-radius-topleft: 0;
            -moz-border-radius-bottomleft: 0;
            -webkit-border-top-left-radius: 0;
            -webkit-border-bottom-left-radius: 0;
            padding: 7.5px 37px;
            box-shadow: none; }
            @media (max-width: 980px) {
              .order .cart .bottom .cupon .coupon-form .btn-default {
                width: 100%; } }
            @media (max-width: 450px) {
              .order .cart .bottom .cupon .coupon-form .btn-default {
                -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 .payment-and-shipping {
    padding: 30px 15px; }
    .order .payment-and-shipping h1, .order .payment-and-shipping h2 {
      color: black;
      font-size: 26px;
      font-weight: 500;
      margin-bottom: 15px; }
      @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: #f9f9f9;
      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;
        font-size: 15px; }
        .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: 30px; }
        .order .payment-and-shipping .choosing .item .name {
          display: inline-block;
          vertical-align: top;
          line-height: 50px;
          color: black;
          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: black;
            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: black;
            font-size: 12px; }
        .order .payment-and-shipping .choosing .item .info .icon {
          background: #a3a3a3;
          width: 22px;
          height: 22px;
          color: white;
          border-radius: 50%;
          text-align: center;
          font-weight: bold;
          margin-top: 16px;
          position: relative;
          left: -10px; }
        .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: #a3a3a3;
          color: white;
          z-index: 10;
          position: absolute;
          padding: 15px;
          margin-top: 8px;
          margin-left: -18px; }
          .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 #a3a3a3;
            top: -5px;
            position: absolute; }
    .order .payment-and-shipping .freePostage {
      margin-top: 25px; }
    .order .payment-and-shipping .not-choosen-shippment {
      background: #f9f9f9;
      padding: 20px; }
  .order .summary {
    margin-top: -28px; }
    @media (max-width: 990px) {
      .order .summary {
        margin-top: 20px; } }
    .order .summary h2 {
      font-size: 16px;
      color: black;
      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 #dedbd4;
      padding: 10px; }
      @media (max-width: 680px) {
        .order .summary .products .product {
          text-align: center; } }
      .order .summary .products .product .name .variant {
        color: #a3a3a3; }
      @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: black;
        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;
          margin-top: 10px; }
          @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: black; }
        @media (max-width: 990px) {
          .order .summary .products .product .desc .name {
            font-size: 18px; } }
    .order .summary .additional-info {
      color: black;
      font-size: 14px;
      border-top: 1px solid #dedbd4;
      padding: 10px; }
      .order .summary .additional-info .value {
        font-weight: bold;
        text-align: right; }
        .order .summary .additional-info .value .price {
          font-size: 12px;
          color: black; }
        .order .summary .additional-info .value.not-choosen {
          color: black; }
    .order .summary .total {
      border-top: 3px solid #0D516D;
      background: #f9f9f9;
      font-weight: bold;
      font-size: 15px;
      color: black;
      padding: 15px 10px; }
      .order .summary .total .value {
        text-align: right;
        color: black; }
  .order .address-page {
    padding: 30px 15px; }
    .order .address-page h1 {
      color: #28201a;
      font-size: 26px;
      margin-bottom: 20px; }
      @media (max-width: 680px) {
        .order .address-page h1 {
          font-size: 24px;
          text-align: center; } }
    .order .address-page .form-group a {
      color: black;
      text-decoration: underline; }
  .order .empty-cart {
    margin-top: 60px; }
    .order .empty-cart .headline {
      background: black;
      color: white;
      padding: 10px; }
    .order .empty-cart .content-text {
      background: #f3f3f3;
      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;
      background: #f9f9f9; }
    .order .payment .btn {
      margin-top: 20px;
      margin-bottom: 20px;
      min-width: 250px; }
      .order .payment .btn i {
        margin-right: 10px; }
  .order .order-completed {
    padding: 30px 15px;
    text-align: center; }
