@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
html {
  font-family: "Roboto", sans-serif;
}

body {
  overflow-x: hidden;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.none-style {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.none-anchor, .category-btn {
  text-decoration: none !important;
}

.bg-light-grey {
  background-color: #fbfbfb;
}

.padding-large-bottom {
  padding-bottom: 70px;
}

.txt-bold-500 {
  font-weight: 500;
}

.txt-color-gray {
  color: #a0a0a0 !important;
}

.txt-color-white {
  color: white;
}

.bg-color-white {
  background-color: white !important;
}

.txt-color-black {
  color: #333;
}

/*
  =========================
  All Custom Margin Start
*/
.m-top-4rem {
  margin-top: clamp(2rem, 3.5vw, 6rem) !important;
}

.m-top-custom_rem {
  margin-top: clamp(1rem, 2vw, 0rem) !important;
  text-align: center;
}

.m-bottom-4rem {
  margin-bottom: clamp(1.5rem, 3.5vw, 1.9rem) !important;
}

.m-bottom-4-6rem {
  margin-bottom: clamp(2.2rem, 3.7vw, 4.4rem) !important;
}

.m-b-45 {
  margin-bottom: 45px !important;
}

.m-t-45 {
  margin-top: 45px !important;
}

.mb-31 {
  margin-bottom: 31px;
}

.mb-42 {
  margin-top: 42px;
}

.mt-40 {
  margin-top: 40px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-26 {
  margin-bottom: 28px;
}

.mb-26-2 {
  margin-bottom: 26px;
}

.mt-48 {
  margin-top: 48px;
}

.mb-62 {
  margin-bottom: 62px;
}

.my-same {
  margin-top: 62px !important;
  margin-bottom: 62px !important;
}

.uk-button {
  padding: 3px 30px 0 30px !important;
}

/*
  =========================
  All Custom Margin End
*/
.pb-45 {
  padding-bottom: 45px;
}

.wid-100 {
  width: 100%;
}

.clear-float {
  clear: both;
}

.border-none {
  border: none !important;
}

.pb-62 {
  padding-bottom: 62px;
}

.py-same {
  padding-top: 54px !important;
  padding-bottom: 62px !important;
}

.category-btn {
  padding: 10px 0;
  width: 200px;
  border-radius: 5px;
  display: inline-block;
  font-weight: bold;
  -webkit-transition: color, background-color 0.3s;
  transition: color, background-color 0.3s;
}

.category-btn:hover {
  color: #fff;
  background-color: #f35451;
}

.txt-center {
  text-align: center;
}

.dataTable-wrapper td {
  padding: 10px;
}

.dataTable-wrapper .row .col-sm-12 {
  width: 100%;
}

.dataTable-wrapper .row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.dataTable-wrapper .row select {
  width: 100px;
}

.dataTable-wrapper .row input {
  max-width: 100%;
  width: 100%;
}

.dataTable-wrapper .row input,
.dataTable-wrapper .row select {
  border: 0 none;
  padding: 0 10px;
  background: #fff;
  color: #666;
  border: 1px solid #e5e5e5;
  height: 35px;
  outline: none;
  vertical-align: middle;
  display: inline-block;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-transition-property: color, background-color, border;
  transition-property: color, background-color, border;
}

.f-20 {
  font-size: 20px;
}

.line-height-38 {
  line-height: 38px;
}

.display-none {
  display: none;
}

.uk-breadcrumb li a,
.uk-breadcrumb li span {
  font-size: 18px;
}

.uk-breadcrumb > :nth-child(n + 2):not(.uk-first-column)::before {
  font-size: 18px;
}

/*
  =======================
  Custom MOdal
*/
.onestop-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1011;
  display: none;
}

.onestop-custom-modal {
  position: fixed;
  top: 5%;
  left: 50%;
  width: 98%;
  max-width: 600px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: white;
  z-index: 1012;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}

.onestop-custom-modal.active {
  opacity: 1;
  top: 10%;
  pointer-events: auto;
}

.onestop-custom-modal header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 10px;
}

.onestop-custom-modal header .title {
  margin: 0;
  color: white;
}

.onestop-custom-modal header a {
  color: white;
}

.onestop-custom-modal .modal-body {
  padding: 10px;
}

/*
   ================
   Custom Scrollbar
*/
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #d6d6d6;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}

/*
  Css Loader
*/
.main-loader {
  position: fixed;
  top: 0;
  left: 0;
  background-color: white;
  width: 100%;
  height: 100vh;
  z-index: 200;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-loader .lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.main-loader .lds-roller div {
  -webkit-animation: lds-roller 2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
          animation: lds-roller 2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  -webkit-transform-origin: 40px 40px;
          transform-origin: 40px 40px;
}

.main-loader .lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin: -4px 0 0 -4px;
}

.main-loader .lds-roller div:nth-child(1) {
  -webkit-animation-delay: -0.036s;
          animation-delay: -0.036s;
}

.main-loader .lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}

.main-loader .lds-roller div:nth-child(2) {
  -webkit-animation-delay: -0.072s;
          animation-delay: -0.072s;
}

.main-loader .lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}

.main-loader .lds-roller div:nth-child(3) {
  -webkit-animation-delay: -0.108s;
          animation-delay: -0.108s;
}

.main-loader .lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}

.main-loader .lds-roller div:nth-child(4) {
  -webkit-animation-delay: -0.144s;
          animation-delay: -0.144s;
}

.main-loader .lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}

.main-loader .lds-roller div:nth-child(5) {
  -webkit-animation-delay: -0.18s;
          animation-delay: -0.18s;
}

.main-loader .lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}

.main-loader .lds-roller div:nth-child(6) {
  -webkit-animation-delay: -0.216s;
          animation-delay: -0.216s;
}

.main-loader .lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}

.main-loader .lds-roller div:nth-child(7) {
  -webkit-animation-delay: -0.252s;
          animation-delay: -0.252s;
}

.main-loader .lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}

.main-loader .lds-roller div:nth-child(8) {
  -webkit-animation-delay: -0.288s;
          animation-delay: -0.288s;
}

.main-loader .lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}

@-webkit-keyframes lds-roller {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes lds-roller {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.delivery-address-change-wrapper .default-showing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
  border-top: 0px;
  margin-top: -2px;
}

.delivery-address-change-wrapper .default-showing .left-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.delivery-address-change-wrapper .default-showing .left-one .fas {
  font-size: 25px;
}

.delivery-address-change-wrapper .default-showing .left-one span {
  margin-left: 40px;
  font-weight: bold;
}

.delivery-address-change-wrapper .default-showing .middle-one p {
  margin: 0;
}

.delivery-address-change-wrapper .default-showing .right-one button {
  background-color: white;
  border: 1px solid #f35451;
  color: #f35451;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.delivery-address-change-wrapper .default-showing .right-one button:hover {
  background-color: #f35451;
  color: white;
}

.delivery-address-change-wrapper .change-address-option {
  background-color: #f7f7f7;
  margin-top: 30px;
  border-radius: 5px;
}

.delivery-address-change-wrapper .change-address-option header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #e8e8e8;
  padding: 20px;
}

.delivery-address-change-wrapper .change-address-option header .fas {
  font-size: 25px;
}

.delivery-address-change-wrapper .change-address-option header span {
  font-weight: bold;
  margin-left: 30px;
}

.delivery-address-change-wrapper .change-address-option .options-wrapper ul {
  list-style-type: none;
  margin: 0;
  padding: 20px;
}

.delivery-address-change-wrapper .change-address-option .options-wrapper ul li {
  position: relative;
  padding: 10px 20px 10px 50px;
  background-color: rgba(221, 221, 221, 0.4);
  margin-bottom: 20px;
  border-radius: 5px;
  cursor: pointer;
}

.delivery-address-change-wrapper .change-address-option .options-wrapper ul li.active {
  background-color: rgba(98, 230, 98, 0.2);
}

.delivery-address-change-wrapper .change-address-option .options-wrapper ul li.active i {
  opacity: 1;
  color: #62e662;
}

.delivery-address-change-wrapper .change-address-option .options-wrapper ul li:last-child {
  margin-bottom: 0;
}

.delivery-address-change-wrapper .change-address-option .options-wrapper ul li i {
  position: absolute;
  top: 50%;
  left: 10px;
  font-size: 23px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}

.delivery-address-change-wrapper .change-address-option .options-wrapper ul li .address-txt {
  width: 100%;
}

.delivery-address-change-wrapper .change-address-option .options-wrapper ul li .address-txt p {
  margin: 0;
}

.delivery-address-change-wrapper .change-address-option .options-wrapper ul li .address-txt p:last-child {
  font-weight: bold;
}

.delivery-address-change-wrapper .change-address-option .options-wrapper ul li button {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: transparent;
  font-size: 18px;
  border: none;
  outline: none;
  cursor: pointer;
  color: #f35451;
  z-index: 1;
}

.delivery-address-change-wrapper .change-address-option .options-wrapper .add-new-address {
  padding: 0 20px 20px 20px;
}

.delivery-address-change-wrapper .change-address-option .options-wrapper .add-new-address button {
  width: 100%;
  padding: 10px;
  font-size: 15px;
  cursor: pointer;
  background-color: rgba(136, 136, 136, 0.2);
  outline: none;
  border: none;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.delivery-address-change-wrapper .delivery-time-option {
  background-color: #f7f7f7;
  margin-top: 30px;
  border-radius: 5px;
}

.delivery-address-change-wrapper .delivery-time-option header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #e8e8e8;
  padding: 20px;
}

.delivery-address-change-wrapper .delivery-time-option header .fas {
  font-size: 25px;
}

.delivery-address-change-wrapper .delivery-time-option header span {
  font-weight: bold;
  margin-left: 30px;
}

.delivery-address-change-wrapper .delivery-time-option .time-field-wrapper {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.delivery-address-change-wrapper .delivery-time-option .time-field-wrapper > div {
  width: 300px;
}

.delivery-address-change-wrapper .delivery-time-option .time-field-wrapper > div label {
  display: block;
  margin-bottom: 5px;
}

.delivery-address-change-wrapper .delivery-time-option .time-field-wrapper > div:first-child {
  margin-right: 30px;
}

.delivery-address-change-wrapper .delivery-time-option .time-field-wrapper .date-picker-wrapper .p_d_date {
  height: 40px;
}

.delivery-address-change-wrapper .delivery-form {
  background-color: #f7f7f7;
  margin-top: 30px;
  border-radius: 5px;
}

.delivery-address-change-wrapper .delivery-form header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #e8e8e8;
  padding: 20px;
}

.delivery-address-change-wrapper .delivery-form header .fas {
  font-size: 25px;
}

.delivery-address-change-wrapper .delivery-form header span {
  font-weight: bold;
  margin-left: 30px;
}

.delivery-address-change-wrapper .delivery-form .form-field-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px 20px;
}

.delivery-address-change-wrapper .delivery-form .form-field-wrapper .btn-box {
  text-align: center;
}

.delivery-address-change-wrapper .delivery-form .form-field-wrapper .btn-box button {
  width: 200px;
  height: 40px;
}

/*
  Payment Method Section
*/
.paymentMethod .banner-txt {
  max-width: 732px;
  background-color: rgba(243, 84, 81, 0.1);
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #f35451;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.paymentMethod .banner-txt img {
  width: 60px;
  height: auto;
  margin-right: 20px;
}

.paymentMethod .banner-txt .title {
  margin: 0 0 5px 0;
  font-weight: 400;
  font-size: 1.5rem;
  text-align: left;
}

.paymentMethod .banner-txt .title span {
  font-weight: bold;
}

.paymentMethod .banner-txt .subtitle {
  text-align: left;
  font-weight: bold;
  /*   font-size: 1rem;*/
  margin: 0;
}

.paymentMethod .payment-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.paymentMethod .paymentBtnBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 1px solid #ddd;
  padding: 35px;
  border-radius: 5px;
  background-color: #f7f7f7;
}

.paymentMethod .paymentBtnBox [data-status="check"] {
  background-color: #9e9e9e !important;
}

.paymentMethod .paymentBtnBox [data-status="check"] span {
  color: white;
}

.paymentMethod .paymentBtnBox [data-status="check"]::before {
  content: "\f058";
  font-family: "Font Awesome 5 free";
  font-weight: 900;
  position: absolute;
  top: 6px;
  left: 10px;
  color: #30f130;
  font-size: 20px;
}

.paymentMethod .paymentBtnBox label {
  position: relative;
  border-radius: 5px;
  background-color: rgba(221, 221, 221, 0.658);
  margin-right: 30px;
  padding: 15px 15px 8px 15px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  cursor: pointer;
}

.paymentMethod .paymentBtnBox label:last-child {
  margin-right: 0;
}

.paymentMethod .paymentBtnBox label:last-child {
  margin-right: 0;
}

.paymentMethod .paymentBtnBox label input {
  display: none;
}

.paymentMethod .paymentBtnBox label img {
  width: 100px;
  height: auto;
  display: block;
  margin: 0 auto;
  margin-bottom: 6px;
}

.paymentMethod .paymentBtnBox label span {
  display: block;
}

.paymentMethod .payment-summary {
  max-width: 732px;
  margin: 4rem auto 0 auto;
}

.paymentMethod .payment-summary .item .innerDiv {
  border: 1px dashed #ddd;
  background-color: #f7f7f7;
  height: 100%;
}

.paymentMethod .payment-summary .item:first-child {
  text-align: center;
}

.paymentMethod .payment-summary .item:first-child .innerDiv {
  padding: 20px 40px;
}

.paymentMethod .payment-summary .item:first-child p {
  margin: 0;
}

.paymentMethod .payment-summary .item:first-child p:nth-child(1) {
  margin-bottom: 10px;
  font-size: 18px;
  color: #777;
}

.paymentMethod .payment-summary .item:first-child p:nth-child(2), .paymentMethod .payment-summary .item:first-child p:nth-child(3) {
  font-weight: bold;
}

.paymentMethod .payment-summary .item:first-child .top-content {
  margin-bottom: 20px;
}

.paymentMethod .payment-summary .item:last-child .innerDiv {
  padding: 20px 40px;
}

.paymentMethod .payment-summary .item:last-child .title {
  text-align: center;
  color: #777;
  margin-top: 0;
  margin-bottom: 11px;
  font-size: 18px;
}

.paymentMethod .payment-summary .item:last-child ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.paymentMethod .payment-summary .item:last-child li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 27px;
}

.paymentMethod .payment-summary .item:last-child .due {
  margin: 0;
  border-top: 2px dashed #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.paymentMethod .instruction {
  max-width: 732px;
  margin: 30px auto 30px auto;
}

.paymentMethod .instruction .item > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.paymentMethod .instruction .item > div input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.paymentMethod .instruction .item > div button {
  margin-left: 20px;
}

.paymentMethod .instruction .item > div p {
  margin: 0;
}

.paymentMethod .confirm-btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.paymentMethod .confirm-btn-box button {
  width: 200px;
  padding: 5px 0;
}

tbody.populate_orders td a.uk-button {
  font-size: 13px;
  padding: 1px 10px;
}

/*
  Order Details View
*/
.view-order-details .address-info {
  text-align: center;
  padding: 5px 0 10px 0;
  border-bottom: 1px solid #ddd;
}

.view-order-details .address-info p:first-child {
  font-weight: bold;
}

.view-order-details .delivery-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 10px;
  border-bottom: 1px solid #ddd;
}

.view-order-details .delivery-time span:first-child {
  font-weight: bold;
}

.view-order-details .list-of-products {
  list-style-type: none;
  margin: 0;
  padding: 0;
  height: 300px;
  overflow-y: auto;
}

.view-order-details .list-of-products li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.view-order-details .list-of-products li .product-img {
  width: 60px;
  height: auto;
  margin-right: 10px;
}

.view-order-details .list-of-products li > div .title {
  font-size: 15px;
  font-weight: bold;
  margin: 0;
}

.view-order-details .list-of-products li > div div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5px;
}

/*
  Default Select2
*/
.select2-container .select2-selection--single {
  height: 100%;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 40px;
  width: 40px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-right: 0;
  width: calc(100% - 38px);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-width: 12px 10px 0 10px;
  margin-left: 0;
  margin-top: 0;
  position: relative;
  left: 0;
  top: 0;
  border-top-color: white;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-width: 0 10px 12px 10px;
  border-bottom-color: white;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 38px;
}

.select2-container--default .select2-selection--single {
  background-color: #f5f5f5;
  border-color: transparent;
}

.product-info-wrapper .variation_product_select_div .select2-container .select2-selection--single {
  height: 100%;
}

.product-info-wrapper .variation_product_select_div .select2-container--default .select2-selection--single .select2-selection__rendered {
  border: 1px solid #f35451 !important;
}

.product-info-wrapper .variation_product_select_div .select2-container--default .select2-selection--single .select2-selection__arrow {
  font-size: 30px;
}

/*
======================
  All Media Query
*/
@media (max-width: 600px) {
  .delivery-address-change-wrapper .default-showing {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .delivery-address-change-wrapper .default-showing .left-one {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .delivery-address-change-wrapper .default-showing .left-one span {
    margin-left: 10px;
  }
  .delivery-address-change-wrapper .default-showing .left-one,
  .delivery-address-change-wrapper .default-showing .middle-one {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .delivery-address-change-wrapper .delivery-time-option .time-field-wrapper > div:first-child {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
/*# sourceMappingURL=orderForm.css.map */