@charset "UTF-8";
/* Giỏ hàng */
.cart h1 {
  font-size: 18px;
  text-transform: uppercase;
  padding: 10px 0;
  margin: 0px 0 20px; }

.cart__freeship {
  display: flex;
  align-items: center; }
  .cart__freeship span {
    font-size: 14px;
    margin-left: 9px; }

.cart__table {
  display: table;
  width: 100%; }
  .cart__table--item {
    display: table-row; }
    .cart__table--item > div {
      border-top: 0;
      border: 1px solid #ccc;
      padding: 6px 10px;
      border-top: 0;
      border-left: 0;
      display: table-cell; }
      .cart__table--item > div:nth-child(1) {
        border-left: 1px solid #ccc; }
    .cart__table--item--head > div {
      border-top: 1px solid #ccc; }
    .cart__table--item .item__image {
      width: calc(100% - 350px); }
      .cart__table--item .item__image > img {
        vertical-align: middle;
        margin-right: 20px;
        max-width: 60px;
        display: inline-block; }
      .cart__table--item .item__image .item__title {
        display: inline-block;
        vertical-align: middle; }
    .cart__table--item .item__price {
      width: 150px;
      text-align: center; }
    .cart__table--item .item__quantity {
      width: 100px;
      text-align: center; }
      .cart__table--item .item__quantity .cart-qty {
        display: flex; }
        .cart__table--item .item__quantity .cart-qty .btn_quantity {
          height: 23px;
          border-radius: 4px 0 0 4px;
          border: 1px solid #dfdfdf;
          background: #fff;
          cursor: pointer;
          color: #333;
          width: 20px;
          text-align: center;
          font-size: 14px;
          margin-right: -1px; }
          .cart__table--item .item__quantity .cart-qty .btn_quantity.btn_plus {
            border-radius: 0 4px 4px 0;
            margin-left: -1px; }
        .cart__table--item .item__quantity .cart-qty .quantity {
          width: 38px;
          border: 1px solid #dfdfdf;
          padding: 0px 5px;
          font-size: 14px;
          color: #757575;
          border-radius: 0;
          text-align: center; }
    .cart__table--item .item__lineprice {
      width: 100px;
      text-align: center; }

.cart .time_order_wrap h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 7px;
  margin-top: 0; }

.cart .time_order_wrap .note_timeout {
  margin-top: 15px;
  color: red;
  font-weight: 700;
  margin-bottom: 10px; }

.cart .time_order_wrap .wrap_time {
  display: flex; }
  .cart .time_order_wrap .wrap_time .time_col {
    width: 50%; }
    .cart .time_order_wrap .wrap_time .time_col:last-child {
      margin-left: 15px; }
  .cart .time_order_wrap .wrap_time .data_order {
    background-color: #0098D1;
    border: none;
    font-weight: bold;
    width: 100%;
    color: #fff; }
  .cart .time_order_wrap .wrap_time select {
    padding: 7px;
    background: #0098D1;
    border: none;
    width: 100%;
    font-weight: bold;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 30px;
    background: url(//theme.hstatic.net/1000030244/1000943806/14/arrow_select.png?v=5279) no-repeat #0098D1;
    background-position: 95% center;
    color: #fff; }

.cart__warning {
  padding: 15px;
  border-radius: 4px; }

.cart__note {
  padding-top: 15px;
  padding-bottom: 15px; }
  .cart__note label {
    font-weight: 700; }

.cart__info {
  padding: 10px; }

.cart__continue--shopping {
  color: #07b0ef;
  font-size: 16px;
  text-transform: uppercase; }
  .cart__continue--shopping svg {
    margin-right: 10px;
    font-size: 24px;
    vertical-align: bottom; }

.cart__btn-checkout {
  padding: 10px 30px;
  background: #ff7200;
  color: #fff;
  border: none;
  box-shadow: none;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  margin-top: 10px; }
  .cart__btn-checkout.disabled {
    cursor: not-allowed; }
  .cart__btn-checkout:hover {
    color: #fff; }

.cart__total--price {
  color: #ff7200;
  font-size: 20px;
  font-weight: 600; }

.cart .cart-gift {
  margin-top: 10px; }
  .cart .cart-gift h3 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 7px;
    position: relative;
    cursor: pointer;
    /*.remove-cart-gift{
			position: absolute;
			right: 0;
			top: 0;
		}*/ }
  .cart .cart-gift .gift-list {
    display: flex;
    flex-wrap: wrap; }
    .cart .cart-gift .gift-list .product__item {
      width: 50%;
      max-width: 350px;
      min-height: inherit; }
      .cart .cart-gift .gift-list .product__item-wrap {
        display: flex; }
      .cart .cart-gift .gift-list .product__item--image {
        width: 40%;
        padding-bottom: 40%; }
      .cart .cart-gift .gift-list .product__item--info {
        width: 60%;
        padding-left: 30px; }

.cart__gift--des {
  color: red;
  font-weight: 700; }

@media (max-width: 767.98px) {
  .cart__table {
    display: block; }
    .cart__table--item {
      display: flex;
      border: 1px solid #ccc;
      border-bottom: 0; }
      .cart__table--item > div {
        display: block;
        border: none; }
        .cart__table--item > div:nth-child(1) {
          border-left: none; }
      .cart__table--item--head {
        display: none; }
      .cart__table--item .item__image {
        width: 20%; }
        .cart__table--item .item__image > img {
          max-width: 100%; }
        .cart__table--item .item__image .item__title {
          display: none; }
      .cart__table--item .item__price {
        display: none; }
      .cart__table--item .item__quantity {
        width: 40%;
        text-align: left; }
        .cart__table--item .item__quantity .item__title {
          font-size: 13px;
          margin-bottom: 5px; }
        .cart__table--item .item__quantity .item__quantity--title {
          font-size: 13px;
          margin-bottom: 5px; }
      .cart__table--item .item__lineprice {
        width: 40%;
        text-align: right;
        margin-right: 0; }
        .cart__table--item .item__lineprice .price {
          font-weight: 700;
          margin-bottom: 10px;
          font-size: 16px; }
      .cart__table--item:last-child {
        border-bottom: 1px solid #ccc; }
  .cart .cart-gift .gift-list-wrap {
    overflow-x: auto; }
  .cart .cart-gift .gift-list {
    white-space: nowrap;
    display: block; }
    .cart .cart-gift .gift-list .product__item {
      width: 300px;
      display: inline-block; } }

.cart2 h1 {
  font-size: 18px;
  text-transform: uppercase;
  padding: 10px 0;
  margin: 0px 0 20px; }

@-moz-keyframes gift-ring {
  0% {
    transform: rotate(0) scale(1) skew(1deg); }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg); }
  20% {
    transform: rotate(25deg) scale(1) skew(1deg); }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg); }
  40% {
    transform: rotate(25deg) scale(1) skew(1deg); }
  50% {
    transform: rotate(0) scale(1) skew(1deg); }
  100% {
    transform: rotate(0) scale(1) skew(1deg); } }

@-webkit-keyframes gift-ring {
  0% {
    transform: rotate(0) scale(0.5) skew(1deg);
    opacity: .1; }
  30% {
    transform: rotate(0) scale(0.7) skew(1deg);
    opacity: .5; }
  100% {
    transform: rotate(0) scale(1) skew(1deg);
    opacity: .1; } }

@-o-keyframes gift-ring {
  0% {
    transform: rotate(0) scale(1) skew(1deg); }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg); }
  20% {
    transform: rotate(25deg) scale(1) skew(1deg); }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg); }
  40% {
    transform: rotate(25deg) scale(1) skew(1deg); }
  50% {
    transform: rotate(0) scale(1) skew(1deg); }
  100% {
    transform: rotate(0) scale(1) skew(1deg); } }

@keyframes gift-ring {
  0% {
    transform: rotate(0) scale(1) skew(1deg); }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg); }
  20% {
    transform: rotate(25deg) scale(1) skew(1deg); }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg); }
  40% {
    transform: rotate(25deg) scale(1) skew(1deg); }
  50% {
    transform: rotate(0) scale(1) skew(1deg); }
  100% {
    transform: rotate(0) scale(1) skew(1deg); } }

.cart2 .promotion-process {
  margin-bottom: 30px;
  text-align: center; }
  .cart2 .promotion-process .promotion-process-bar {
    padding: 15px 0;
    position: relative; }
    .cart2 .promotion-process .promotion-process-bar .line {
      position: relative;
      height: 30px; }
      .cart2 .promotion-process .promotion-process-bar .line:before {
        position: absolute;
        content: '';
        width: 100%;
        height: 10px;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 3;
        background-color: #cfcfcf;
        background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.3) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.3) 75%, transparent 75%, transparent);
        background-size: 1rem 1rem;
        animation: progress-bar-stripes 1s linear infinite;
        -webkit-animation: progress-bar-stripes 1s linear infinite;
        -moz-animation: progress-bar-stripes 1s linear infinite; }
      .cart2 .promotion-process .promotion-process-bar .line:after {
        position: absolute;
        content: '';
        width: var(--percent);
        height: 10px;
        background: #0098D1;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 21; }
      .cart2 .promotion-process .promotion-process-bar .line .item-gift-cart {
        display: inline-block;
        width: 30px;
        height: 30px;
        background: #ff6600;
        border-radius: 100%;
        text-align: center;
        opacity: 1;
        position: relative;
        z-index: 22;
        position: absolute;
        top: 0;
        left: var(--percent1);
        cursor: pointer; }
        .cart2 .promotion-process .promotion-process-bar .line .item-gift-cart:nth-child(2) {
          left: var(--percent2); }
        .cart2 .promotion-process .promotion-process-bar .line .item-gift-cart .item-gift-content {
          background: #0098D1;
          position: absolute;
          bottom: 45px;
          width: 160px;
          text-align: left;
          padding: 5px;
          border-radius: 5px;
          color: #fff;
          left: -15px;
          display: none;
          flex-wrap: wrap; }
          .cart2 .promotion-process .promotion-process-bar .line .item-gift-cart .item-gift-content a {
            color: #fff; }
          .cart2 .promotion-process .promotion-process-bar .line .item-gift-cart .item-gift-content .img {
            width: 40px; }
          .cart2 .promotion-process .promotion-process-bar .line .item-gift-cart .item-gift-content .content {
            margin-left: 10px;
            width: calc(100% - 60px); }
          .cart2 .promotion-process .promotion-process-bar .line .item-gift-cart .item-gift-content:after {
            bottom: -20px;
            left: 30px;
            border: solid transparent;
            height: 0;
            width: 0;
            position: absolute;
            pointer-events: none;
            border-color: rgba(194, 225, 245, 0);
            border-top-color: #0098D1;
            border-width: 10px;
            margin-left: -10px;
            content: ''; }
          .cart2 .promotion-process .promotion-process-bar .line .item-gift-cart .item-gift-content.active {
            display: flex; }
          @media (max-width: 767px) {
            .cart2 .promotion-process .promotion-process-bar .line .item-gift-cart .item-gift-content {
              left: auto;
              right: -25px; }
              .cart2 .promotion-process .promotion-process-bar .line .item-gift-cart .item-gift-content:after {
                left: auto;
                right: 30px; } }
        @media (max-width: 767px) {
          .cart2 .promotion-process .promotion-process-bar .line .item-gift-cart:hover .item-gift-content {
            display: flex; } }
        .cart2 .promotion-process .promotion-process-bar .line .item-gift-cart.active {
          background: #0098D1; }
      .cart2 .promotion-process .promotion-process-bar .line svg {
        -webkit-animation: gift-ring 3s infinite ease-in-out;
        -moz-animation: gift-ring 3s infinite ease-in-out;
        -ms-animation: gift-ring 3s infinite ease-in-out;
        -o-animation: gift-ring 3s infinite ease-in-out;
        animation: gift-ring 3s infinite ease-in-out; }
        .cart2 .promotion-process .promotion-process-bar .line svg path, .cart2 .promotion-process .promotion-process-bar .line svg rect {
          color: #fff !important;
          fill: #fff !important;
          stroke: #fff !important; }

.cart2.cart .cart__freeship {
  display: flex;
  align-items: center;
  margin: 0; }
  .cart2.cart .cart__freeship span {
    font-size: 14px;
    margin-left: 9px; }

.cart2.cart .cart__table {
  display: table;
  width: 100%;
  margin-bottom: 30px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ededed; }
  .cart2.cart .cart__table--item {
    display: table-row;
    position: relative; }
    .cart2.cart .cart__table--item > div {
      border: 0;
      padding: 6px 10px;
      display: table-cell;
      border-top: 1px solid #ededed;
      padding: 10px 0;
      vertical-align: top;
      padding-left: 15px; }
      .cart2.cart .cart__table--item > div:nth-child(1) {
        border-left: 0;
        border-top: 1px solid #ededed;
        padding: 10px 0;
        vertical-align: top; }
    .cart2.cart .cart__table--item--head > div {
      border-top: 1px solid #ccc; }
    .cart2.cart .cart__table--item .item__image {
      width: 110px; }
      .cart2.cart .cart__table--item .item__image > img {
        vertical-align: middle;
        margin-right: 0;
        max-width: 100%;
        display: inline-block; }
      .cart2.cart .cart__table--item .item__image .item__title {
        display: inline-block;
        vertical-align: middle; }
    .cart2.cart .cart__table--item .item__info {
      position: relative; }
    .cart2.cart .cart__table--item .item__title {
      font-size: 16px;
      margin: 0 0 5px; }
      .cart2.cart .cart__table--item .item__title--variant {
        font-size: 13px; }
    .cart2.cart .cart__table--item .item__price {
      width: auto;
      text-align: left;
      font-size: 16px;
      margin-bottom: 5px; }
    .cart2.cart .cart__table--item .item__quantity {
      width: auto;
      text-align: center;
      margin: 0;
      float: left; }
      .cart2.cart .cart__table--item .item__quantity .cart-qty {
        display: flex; }
        .cart2.cart .cart__table--item .item__quantity .cart-qty .btn_quantity {
          height: 23px;
          border-radius: 4px 0 0 4px;
          border: 1px solid #dfdfdf;
          background: #fff;
          cursor: pointer;
          color: #333;
          width: 20px;
          text-align: center;
          font-size: 14px;
          margin-right: -1px; }
          .cart2.cart .cart__table--item .item__quantity .cart-qty .btn_quantity.btn_plus {
            border-radius: 0 4px 4px 0;
            margin-left: -1px; }
          .cart2.cart .cart__table--item .item__quantity .cart-qty .btn_quantity.disabled {
            cursor: not-allowed; }
        .cart2.cart .cart__table--item .item__quantity .cart-qty .quantity {
          width: 38px;
          border: 1px solid #dfdfdf;
          padding: 0px 5px;
          font-size: 14px;
          color: #757575;
          border-radius: 0;
          text-align: center; }
          .cart2.cart .cart__table--item .item__quantity .cart-qty .quantity[disabled] {
            cursor: not-allowed; }
    .cart2.cart .cart__table--item .item__lineprice {
      width: 100px;
      text-align: center;
      margin: 0;
      float: right;
      font-size: 16px;
      padding-right: 0;
      font-weight: 700; }
      .cart2.cart .cart__table--item .item__lineprice .price {
        font-size: 16px; }
      .cart2.cart .cart__table--item .item__lineprice p {
        margin: 0; }
    .cart2.cart .cart__table--item .item__title-delete {
      position: absolute;
      right: 0;
      padding: 10px 0;
      top: 0;
      margin: 0; }

.cart2.cart .cart .time_order_wrap h3 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 7px;
  margin-top: 15px; }

.cart2.cart .cart .time_order_wrap .note_timeout {
  margin-top: 15px;
  color: red;
  font-weight: 700;
  margin-bottom: 10px; }

.cart2.cart .cart .time_order_wrap .wrap_time {
  display: flex; }
  .cart2.cart .cart .time_order_wrap .wrap_time .time_col:last-child {
    margin-left: 15px; }
  .cart2.cart .cart .time_order_wrap .wrap_time .data_order {
    background: #0098D1;
    border: none;
    padding: 7px;
    text-align: center;
    font-weight: bold;
    width: 100%;
    color: #fff; }
  .cart2.cart .cart .time_order_wrap .wrap_time select {
    padding: 7px;
    background: #0098D1;
    border: none;
    font-weight: bold;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 30px;
    background: url(//theme.hstatic.net/1000030244/1000943806/14/arrow_select.png?v=5279) no-repeat #0098D1;
    background-position: 95% center;
    color: #fff; }
  @media (min-width: 768px) and (max-width: 991.98px) {
    .cart2.cart .cart .time_order_wrap .wrap_time {
      flex-wrap: wrap; }
      .cart2.cart .cart .time_order_wrap .wrap_time .time_col {
        margin-bottom: 10px; }
        .cart2.cart .cart .time_order_wrap .wrap_time .time_col:last-child {
          margin-left: 0; } }

.cart2.cart .cart__warning {
  padding: 15px;
  border-radius: 4px; }

.cart2.cart .cart__note {
  padding-top: 15px;
  padding-bottom: 15px; }
  .cart2.cart .cart__note label {
    font-weight: 700; }

.cart2.cart .cart__info {
  padding: 10px;
  margin-bottom: 10px; }

.cart2.cart .cart__continue--shopping {
  color: #07b0ef;
  font-size: 16px;
  text-transform: uppercase; }
  .cart2.cart .cart__continue--shopping svg {
    margin-right: 10px;
    font-size: 24px;
    vertical-align: bottom; }

.cart2.cart .cart__btn-checkout {
  padding: 12px 20px;
  background: #ff7200;
  color: #fff;
  border: none;
  box-shadow: none;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  margin-top: 0;
  width: 100%; }
  .cart2.cart .cart__btn-checkout.disabled {
    cursor: not-allowed; }
  .cart2.cart .cart__btn-checkout:hover {
    color: #fff; }

.cart2.cart .cart__total--price {
  color: #ff7200;
  font-size: 20px;
  font-weight: 600; }

.cart2.cart .cart-gift {
  margin-top: 10px; }
  .cart2.cart .cart-gift > h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 7px;
    color: #129fd8; }
  .cart2.cart .cart-gift .gift-list {
    display: flex;
    flex-wrap: wrap; }
    .cart2.cart .cart-gift .gift-list .product__item {
      width: 50%;
      max-width: 350px;
      min-height: inherit; }
      .cart2.cart .cart-gift .gift-list .product__item-wrap {
        display: flex; }
      .cart2.cart .cart-gift .gift-list .product__item--image {
        width: 40%;
        padding-bottom: 40%; }
        .cart2.cart .cart-gift .gift-list .product__item--image .tag_icon.icon_tag_1 {
          bottom: 15px; }
          .cart2.cart .cart-gift .gift-list .product__item--image .tag_icon.icon_tag_1 img {
            max-height: 20px; }
      .cart2.cart .cart-gift .gift-list .product__item--info {
        width: 60%;
        padding-left: 15px; }

.cart2.cart .cart__gift--des {
  color: #000;
  font-weight: normal;
  font-style: italic; }

.cart2.cart .link-continue {
  margin: 10px 0 0;
  text-align: center; }
  .cart2.cart .link-continue a {
    color: #2e9ed5; }

.cart2 .sidebox-order {
  background: #fff;
  padding: 5px 10px;
  position: relative;
  margin-bottom: 30px;
  border: 1px solid #e1e3e4;
  border-radius: 2px; }
  .cart2 .sidebox-order div[class^="sidebox-order_"] {
    margin-bottom: 10px; }
  .cart2 .sidebox-order div[class^="sidebox-order_"]:last-child {
    margin-bottom: 0px; }
  .cart2 .sidebox-order_title h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0; }
  .cart2 .sidebox-order_total {
    font-size: 16px;
    color: #5c5c5c;
    font-weight: 600;
    padding: 10px 0;
    border-top: 1px dotted #dfe0e1;
    border-bottom: 1px dotted #dfe0e1; }
    .cart2 .sidebox-order_total p {
      margin: 0; }
      .cart2 .sidebox-order_total p .total-price {
        float: right;
        color: red;
        font-size: 22px; }
  .cart2 .sidebox-order_note {
    font-size: 16px;
    color: #5c5c5c;
    font-weight: 600; }
    .cart2 .sidebox-order_note textarea {
      border-radius: 5px;
      resize: none;
      background: #ededed;
      color: #252a2b;
      font-size: 14px;
      padding: 10px;
      outline: none;
      width: 100% !important;
      font-weight: 500;
      border: 1px solid transparent;
      transition: all 150ms linear;
      -webkit-appearance: none;
      -ms-appearance: none;
      appearance: none; }
  .cart2 .sidebox-order_action .btncart-checkout {
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 15px;
    font-weight: 400;
    padding: 12px 20px;
    border-color: #e00707; }
    .cart2 .sidebox-order_action .btncart-checkout:before {
      background-color: #e00707; }
  @media (max-width: 767.98px) {
    .cart2 .sidebox-order {
      border: 0;
      margin-bottom: 60px; } }

.cart2 .d-flex-owl:not(.owl-loaded) > div {
  flex: 0 0 20%; }

@media (min-width: 768px) {
  .cart2 .sidebarCart-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 70px; } }

@media (max-width: 991px) and (min-width: 768px) {
  .cart2 .d-flex-owl:not(.owl-loaded) > div {
    flex: 0 0 50%; } }

@media (max-width: 1199px) and (min-width: 992) {
  .cart2 .d-flex-owl:not(.owl-loaded) > div {
    flex: 0 0 33.3333%; } }

@media (max-width: 767.98px) {
  .cart2.cart .cart__freeship {
    background: rgba(46, 158, 213, 0.3);
    padding: 10px 15px; }
    .cart2.cart .cart__freeship span {
      margin-left: 0;
      padding-left: 10px;
      width: calc(100% - 18px); }
      .cart2.cart .cart__freeship span.icon {
        width: 20px;
        padding: 0; }
  .cart2.cart .cart__table {
    display: block;
    border-bottom: 0;
    margin-bottom: 0; }
    .cart2.cart .cart__table--item {
      display: flex;
      border: 0;
      border-bottom: 0; }
      .cart2.cart .cart__table--item > div {
        display: block; }
      .cart2.cart .cart__table--item--head {
        display: none; }
      .cart2.cart .cart__table--item .item__image {
        width: 65px; }
        .cart2.cart .cart__table--item .item__image > img {
          max-width: 60px; }
      .cart2.cart .cart__table--item .item__info {
        width: calc(100% - 65px);
        float: left;
        padding-left: 5px; }
      .cart2.cart .cart__table--item .item__price {
        display: none; }
      .cart2.cart .cart__table--item .item__quantity {
        width: 40%;
        text-align: left; }
        .cart2.cart .cart__table--item .item__quantity .item__title {
          font-size: 13px;
          margin-bottom: 5px; }
        .cart2.cart .cart__table--item .item__quantity .item__quantity--title {
          font-size: 13px;
          margin-bottom: 5px; }
      .cart2.cart .cart__table--item .item__lineprice {
        width: 150px;
        text-align: right; }
        .cart2.cart .cart__table--item .item__lineprice .price {
          font-weight: 700;
          margin-bottom: 10px;
          font-size: 13px; }
  .cart2.cart .cart-gift {
    margin-top: 30px; }
    .cart2.cart .cart-gift .gift-list-wrap {
      overflow-x: auto; }
    .cart2.cart .cart-gift .gift-list {
      white-space: nowrap;
      display: block; }
      .cart2.cart .cart-gift .gift-list .product__item {
        width: 300px;
        display: inline-block; }
    .cart2.cart .cart-gift.active h3 i {
      transform: rotate(180deg); }
  .cart2 .time_order_wrap h3 {
    font-size: 14px; }
  .cart2 .sidebox-order_title h3 {
    font-size: 14px; }
  .cart2 .d-flex-owl:not(.owl-loaded) > div {
    flex: 0 0 50%; } }

.cart--voucher--item {
  background: repeating-linear-gradient(#c4c4c4, #c4c4c4 10px, transparent 0, transparent 30px, #c4c4c4 0, #c4c4c4 42px) 0/1px 100% no-repeat, radial-gradient(circle at 0, at 20px, transparent, transparent 0, #c4c4c4 0, #c4c4c4 11px, #00A1EC 0) 1px 0/100% 42px repeat-y;
  background: repeating-linear-gradient(#c4c4c4, #c4c4c4 10px, transparent 0, transparent 30px, #c4c4c4 0, #c4c4c4 42px) 0/1px 100% no-repeat, radial-gradient(circle at 0 20px, transparent, transparent 10px, #c4c4c4 0, #c4c4c4 11px, #00A1EC 0) 1px 0/100% 42px repeat-y;
  border: 1px solid #c4c4c4;
  border-left: none;
  border-radius: 2px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex; }
  .cart--voucher--item .cart--voucher--left {
    width: 80px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    text-align: center;
    margin: auto 0; }
  .cart--voucher--item .cart--voucher--icon {
    width: 50px;
    height: 50px;
    margin: 0 auto; }
  .cart--voucher--item .cart--voucher--content {
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    -moz-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    background-color: white;
    padding: 10px 20px; }
    .cart--voucher--item .cart--voucher--content .voucher-title {
      color: #212121;
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 5px; }
    .cart--voucher--item .cart--voucher--content .voucher-content {
      margin-bottom: 10px;
      color: #757575;
      font-size: 14px; }
    .cart--voucher--item .cart--voucher--content .voucher-note {
      margin-bottom: 7px;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      overflow: hidden; }
      .cart--voucher--item .cart--voucher--content .voucher-note span {
        font-size: 14px;
        border-radius: 3px;
        padding: 0 10px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        color: #00A1EC;
        border: 1px solid #00A1EC; }
    .cart--voucher--item .cart--voucher--content .btn_voucher {
      border: 0;
      background-color: #00A1EC;
      color: white;
      font-size: 12px;
      text-align: center;
      padding: 2px 15px;
      border-radius: 999px; }
      .cart--voucher--item .cart--voucher--content .btn_voucher span {
        display: block;
        line-height: 24px;
        height: 24px;
        font-size: 12px; }
      .cart--voucher--item .cart--voucher--content .btn_voucher.disbaled {
        opacity: .65; }
    .cart--voucher--item .cart--voucher--content .voucher-dk a {
      color: #00A1EC;
      font-size: 12px;
      text-decoration: underline; }
    .cart--voucher--item .cart--voucher--content p {
      margin: 0; }
  @media (max-width: 767.98px) {
    .cart--voucher--item .cart--voucher--icon {
      width: 50px;
      height: 50px; }
    .cart--voucher--item .cart--voucher--content .voucher-title {
      line-height: inherit;
      font-size: 16px; }
    .cart--voucher--item .cart--voucher--content .voucher-content {
      font-size: 14px;
      margin-bottom: 0px; }
    .cart--voucher--item .cart--voucher--content .voucher-note span {
      font-size: 14px; }
    .cart--voucher--item .cart--voucher--content .btn_voucher {
      font-size: 14px;
      height: 35px; }
    .cart--voucher--item .cart--voucher--content .voucher-dk a {
      color: #00A1EC;
      font-size: 16px; } }

@media (max-width: 1024px) {
  .cart--voucher--wrap {
    flex-wrap: nowrap;
    overflow-x: auto;
    flex-wrap: nowrap; } }
