/*custom font*/
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700;800;900&display=swap');
html body {
  font-family: 'Nunito Sans', sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/*basic reset*/
* {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
    
}

body {
   background: #283c86;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #45a247, #286c86);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #45a247, #286c86); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

   padding: 15px;
}

*:focus {
  outline: none !important;
}
.centered{
    float: none;
    margin: 0 auto;
}

/*form styles*/
#msform {
    text-align: center;
    position: relative;
    margin-top: 30px;
}

span.del-cart-item {
    padding: 5px;
    border: 0px;
    outline: 0px;
    margin-left: 10px;
    cursor: pointer;
    color: #ff0019;
    transition: all 0.4s ease 0s;
    background-color: transparent;
}


#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 10px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    padding: 20px 30px;
    box-sizing: border-box;
    margin: auto;
    width: 100%;

    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
    display: none;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 42px;
  user-select: none;
  -webkit-user-select: none;
  margin-bottom: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
   text-align: left;
   line-height: 2.5;
   font-size: 13px;
}

/*inputs*/
#msform input, #msform textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    font-family: Nunito Sans;
    color: #2C3E50;
    font-size: 13px;
}

#msform input:focus, #msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #ee0979;
    outline-width: 0;
    transition: All 0.5s ease-in;
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
}

/*buttons*/
#msform .action-button {
    width: 100px;
    background: #ee0979;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#msform .action-button:hover, #msform .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #ee0979;
}

#msform .action-button-previous {
    width: 100px;
    background: #C5C5F1;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#msform .action-button-previous:hover, #msform .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1;
}

/*@media screen and (max-width: 767px){
  .next  {
    position: fixed;
    bottom:10px;
    z-index: 1000;
    left: 50%;
    }
  }

  @media screen and (max-width: 767px){
 .action-button-previous {
    position: fixed;
    right: 50%;
    bottom:10px;
    z-index: 1000;
    }
  }
*/
/*headings*/
.fs-title {
    font-size: 18px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: bold;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#progressbar li {
    list-style-type: none;
    color: white;
    text-transform: uppercase;
    font-size: 9px;
    width: 33.33%;
    float: left;
    position: relative;
    letter-spacing: 1px;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 24px;
    height: 24px;
    line-height: 26px;
    display: block;
    font-size: 12px;
    color: #333;
    background: white;
    border-radius: 25px;
    margin: 0 auto 10px auto;
}

/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: white;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1; /*put it behind the numbers*/
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before, #progressbar li.active:after {
    background: #ee0979;
    color: white;
}


/* Not relevant to this form */
.dme_link {
    margin-top: 30px;
    text-align: center;
}
.dme_link a {
    background: #FFF;
    font-weight: bold;
    color: #ee0979;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 5px 25px;
    font-size: 12px;
}

.dme_link a:hover, .dme_link a:focus {
    background: #C5C5F1;
    text-decoration: none;
}

.shipping-info {
    padding: 15px 16px;
    margin: 16px 0;
    display: grid;
    grid-template-columns: 20px 100px 1fr auto;
    grid-gap: 24px;
    cursor:pointer;
}


.shipping-info:hover {
   box-shadow: 0 0 16px 0px #28a74573;
}

img.img-select{
  width: 20%;
    border: solid 1px #a1b5a2;
    border-radius: 10px;
}

img.img-selected{
  width:13%;
}

span.text-selected{
  margin-left:5px;
}

.payment-info {
    padding: 15px 16px;
    margin: 16px 0;
    display: grid;
    grid-template-columns: 20px 100px 1fr auto;
    grid-gap: 24px;
    cursor:pointer;
}

.payment-info:hover {
   box-shadow: 0 0 16px 0px #28a74573;
}

.payment-info:hover {
   box-shadow: 0 0 16px 0px #bcb3ce42;
}

.switch-input {
  display: none;
}
.switch-label {
  position: relative;
  display: inline-block;
  min-width: 112px;
  cursor: pointer;
  color: #727272;
  font-weight: 500;
  text-align: left;
  margin: 16px;
  padding: 16px 0 16px 44px;
}
.switch-label:before, .switch-label:after {
  content: "";
  position: absolute;
  margin: 0;
  outline: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.switch-label:before {
  left: 1px;
  width: 34px;
  height: 14px;
  background-color: #b6b6b6;
  border-radius: 8px;
}
.switch-label:after {
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #FAFAFA;
  border-radius: 50%;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.14), 0 2px 2px 0 rgba(0, 0, 0, 0.098), 0 1px 5px 0 rgba(0, 0, 0, 0.084);
}
.switch-label .toggle--on {
  display: none;
}
.switch-label .toggle--off {
  display: inline-block;
}
.switch-input:checked + .switch-label:before {
  background-color: #2F6FA8;
}
.switch-input:checked + .switch-label:after {
  background-color: #428BCA;
  -webkit-transform: translate(80%, -50%);
  transform: translate(80%, -50%);
}
.switch-input:checked + .switch-label .toggle--on {
  display: inline-block;
}
.switch-input:checked + .switch-label .toggle--off {
  display: none;
}
.switch-input:checked + .switch-label .toggle--option {
  color: #428BCA;
}

.banking{
    width: 80%;
}
.payment-info{
    padding: 0px 16px;
    margin: 16px 0;
    display: grid;
    grid-template-columns: 20px 100px 1fr auto;
    grid-gap: 24px;
}

.radio-pay{
    position: relative;
    top: 40%;
}
.name-pay{
    display: inline-flex;
    align-items: center;
}

.radio-wrapper {
    -ms-flex-item-align: center;
    align-self: center;
}

.finish {
    display:none;
}
.checkout {
    margin-top: 175px;
    margin-bottom :50px;
}

@media screen and (max-width: 767px){
  .checkout {
    margin-top: 50px;
}
}



.checkout .checkout-wrapper .checkout-item-detail {
    font-weight: 400;
    grid-area: checkoutRight;
}

.checkout .checkout-wrapper .checkout-item-detail .card {
    padding: 16px;
    height: auto;
}
.checkout .checkout-wrapper .checkout-item-detail .summary-wrapper .cart-item-wrapper .cart-item .left-content img {
    width: 100%;
    height: auto;
}

.card {
    width: 100%;
    padding: 16px 8px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: auto;
    background-color: #fff;
    border-radius: 6px;
    -webkit-box-shadow: 0 2px 8px 0 rgba(53,64,90,.1);
    box-shadow: 0 2px 8px 0 rgba(53,64,90,.1);
}

label.card.payment-info {
padding: 4px 8px;

}

.checkout .checkout-wrapper .checkout-item-detail .summary-wrapper .summary {
    margin: 0;
    padding-bottom: 16px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

.checkout .checkout-wrapper .checkout-item-detail .summary-wrapper .cart-item-wrapper .cart-item:first-child {
    padding-top: 0;
}
.checkout .checkout-wrapper .checkout-item-detail .summary-wrapper .cart-item-wrapper .cart-item {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    grid-gap: 16px;
    padding: 16px 0;
}

.checkout .checkout-wrapper .checkout-item-detail .summary-wrapper .cart-item-wrapper .cart-item .middle-content .product-name {
    font-size: 12px;
    line-height: 18px;
    color: #8c909e;
}

.checkout .checkout-wrapper .checkout-item-detail .summary-wrapper .cart-item-wrapper .cart-item .right-content .price {
    font-size: 14px;
    line-height: 22px;
    color: #303135;
}

.checkout .checkout-wrapper .checkout-item-detail .summary-wrapper .calculation-wrapper {
    padding: 16px 0;
    border-top: 1px solid #dee2ee;
    border-bottom: 1px solid #dee2ee;
}

.checkout .checkout-wrapper .checkout-item-detail .summary-wrapper .calculation-wrapper .calculation {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 8px 0;
}

.checkout .checkout-wrapper .checkout-item-detail .summary-wrapper .calculation-wrapper .calculation p{
  margin-top: 0;
   margin-bottom: 0 !important;
}

.checkout .checkout-wrapper .checkout-item-detail .summary-wrapper .summary-price {
    display: grid;
    grid-template-columns: 1fr auto;
    font-size: 14px;
    line-height: 22px;
    color: #303135;
    font-weight: 700;
    padding: 16px 0;
}

.checkout .checkout-wrapper .checkout-item-detail .summary-wrapper .summary-price .total-price {
    color: #ee0979;
    font-size: 16px;
}

.loader {
  position: relative;
  text-align: center;
  margin: 15px auto 35px auto;
  z-index: 9999;
  display: block;
  width: 80px;
  height: 80px;
  border: 10px solid rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  border-top-color: #28a745;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
/** MODAL STYLING **/
.modal-content {
  border-radius: 15px;
  box-shadow: 0 0 20px 8px rgba(0, 0, 0, 0.7);
}
.modal-backdrop.show {
  opacity: 0.75;
}
.loader-txt p {
  font-size: 13px;
  color: #666;
}
.loader-txt p small {
  font-size: 11.5px;
  color: #999;
}


 .eQWeQh {
    height: auto;
    width: auto;
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    background-color: rgb(0, 158, 127);
    padding: 0px;
    border-radius: 6px 0px 0px 6px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 21px 36px;
    border: 0px;
    outline: 0px;
    cursor: pointer;
    position: fixed;
    right: 0px;
    bottom: 50%;
    margin-top: -46px;
    z-index: 99;
}

@media screen and (max-width: 767px){
.eQWeQh {
    width: calc(100% - 60px);
    height: 48px;
    padding: 2px 2px 2px 30px;
    bottom: 5%;
    right: 30px;
    border-radius: 60px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 21px 36px;
    flex-direction: row !important;
}
}


p.wSQSS {
    margin-top: 0;
    margin-bottom: 0;
}

.fwHpZC {
    font-family: Lato, sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    padding: 15px 10px;
}

.EpzpR {
    width: auto;
    height: 35px;
    min-width: 80px;
    overflow: hidden;
    border-radius: 6px;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    font-family: Lato, sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgb(0, 158, 127);
    margin: 0px 10px 10px;
}




@media (max-width: 767px){
.EpzpR {
    width: 90px;
    height: 41px;
    overflow: hidden;
    border-radius: 28px;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    font-family: Lato, sans-serif;
    font-size: 12px;
    font-weight: 700;
    margin: 0px 3px 0px auto;
    color: rgb(0, 158, 127);
}}

@media (max-width: 767px){
.fwHpZC {
    font-family: Lato, sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    padding-left: 5px;
    padding-right: 10px;
}}


.lcNHvK {
    width: 420px;
    height: 100vh;
    background-color: rgb(255, 255, 255);
    position: fixed;
    bottom: 0px;
    right: -450px;
    z-index: 1010;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 21px 36px;
    transition: all 0.35s ease-in-out 0s;
}

@media (max-width: 767px){
.lcNHvK {
    width: 100%;
    height: 93vh;
    background-color: rgb(255, 255, 255);
    position: fixed;
    bottom: 0px;
    right: -450px;
    z-index: 1010;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 21px 36px;
    transition: all 0.35s ease-in-out 0s;
}}

.lcNHvK.cartPopupFixed {
    right: 0px;
}


@media (min-width: 581px){
.lcNHvK {
    display: block;
}
}

.lcNHvK .cartstyle__CartPopupBody-sc-1cp3kia-0 {
    height: 100%;
    width: 100%;
}

.dFeQup {
    height: auto;
    width: 385px;
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    background-color: rgb(255, 255, 255);
    box-sizing: content-box;
}

.dFeQup .cart-scrollbar {
    height: 100%;
    max-height: calc(100vh - 245px);
}




.fcKVxd {
    padding: 15px 25px;
    background-color: rgb(255, 255, 255);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid rgb(241, 241, 241);
}

.fapdBV {
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    color: rgb(0, 158, 127);
}

.fapdBV span {
    font-family: Lato, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: rgb(0, 158, 127);
    padding-left: 10px;
}

.hWFznQ {
    width: 14px;
    height: 14px;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    padding: 0px;
    border: 0px;
    outline: 0px;
    flex-shrink: 0;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease 0s;
    background-color: transparent;
}


.bFINkV {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.fFELFc {
    height: 48px;
    width: calc(100% - 30px);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    background-color: rgb(0, 158, 127);
    padding: 0px;
    border-radius: 48px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px;
    border: 0px;
    outline: 0px;
    cursor: pointer;
    margin-bottom: 15px;
    margin-left: 15px;
}



.fFELFc > a {
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding-left: 30px;
}
.iBcuuA {
    font-family: Lato, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    padding-left: 5px;
    padding-right: 10px;
}

.gqvsRO {
    width: auto;
    height: 44px;
    padding: 0px 30px;
    overflow: hidden;
    border-radius: 28px;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    font-family: Lato, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: rgb(0, 158, 127);
    margin-right: 2px;
}

.gLgTPS {
    font-size: 10px;
    font-weight: 700;
    padding: 1px 0;
    border-bottom: 1px solid rgb(247, 247, 247);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.kiRsVN {
    display: none;
    font-size: 15px;
    font-weight: 700;
    border-radius: 200px;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    overflow: hidden;
    flex-shrink: 0;
    width: 30px;
    height: 90px;
    flex-direction: column-reverse;
    background-color: rgb(247, 247, 247);
    color: rgb(13, 17, 54);
}

.gexPka {
    border: none;
    background-color: transparent;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    height: 100%;
    padding: 10px;
    cursor: pointer;
    color: rgb(119, 121, 140);
}

.gVZrld {
    pointer-events: none;
}

.fUPMgQ {
    width: 60px;
    height: auto;
    object-fit: cover;
    margin: 0px 5px;
}
.hVnkGQ {
    display: flex;
    flex-direction: column;
    margin-left: 15px;
}

.hbOVsb {
    color: rgb(13, 17, 54);
    margin-bottom: 0px;
    line-height: 1.5;
}
.lncjNS {
    color: rgb(0, 158, 127);
    margin-top: 10px;
    margin-bottom: 10px;
    display:none;
}
.hgvlaZ {
    font-size: 8px;
    font-weight: 400;
    color: rgb(119, 121, 140);
    margin-bottom: 5px;
}

.hwtTeB {
    color: rgb(13, 17, 54);
    margin-left: auto;
}
.cWbyMy {
.eQWeQh    padding: 5px;
    border: 0px;
    outline: 0px;
    margin-left: 15px;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease 0s;
    background-color: transparent;
}

.select2-results__options::-webkit-scrollbar {
  width: 16px;
  background-clip: padding-box;
}

.select2-results__options::-webkit-scrollbar-thumb {
  background-clip: padding-box;
  background-color: #065d26;
  border-right: 10px solid rgba(0, 0, 0, 0);
  border-top: 10px solid rgba(0, 0, 0, 0);
  border-bottom: 10px solid rgba(0, 0, 0, 0);
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color:#2a9c08;
    color: white;
}

