.my-wishlist-area{
  margin: 30px 0px 60px;
}

.my-wishlist-area .heading{
  text-align: center;
}

.wished-items{
  padding:30px 0;
  border-bottom: 1px solid #BB6831;
}

.my-wish-line{
  background: #BB6831;
  width: 1px;
  height: 100%;
  display: inline-block;
}

.wished-item-desc{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wished-item-desc span {
  width: 20px;
  height: 20px;
  display: flex;
  background: linear-gradient(45deg, #FF8500 0%, #CE3113 100%);
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

.item-out-stock .wished-item-desc span {
  background: rgba(187, 104, 49, 0.6);
}

.wished-item-desc span svg {
  color: #fff;
  font-size: 12px;
}

.wished-item-desc .wish-image-content{
  width: 75%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wish-image-content img{
  width: 120px;
  border-radius: 10px;  
  margin-right: 15px;
}

.wish-content h3{
  font-size: 20px;
  font-family: 'Raleway';
}

.wish-content label{
  font-size: 20px;
  font-family: 'Raleway';
  font-weight: 600;
}

.wish-content p{
  color: #606060;
  margin-bottom: 0;
}

.item-wish-size{
  font-size: 18px;
}

.action-column{
  display: flex;
  align-items: center;
}

.item-wish-action{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.item-wish-action span{
  font-size: 18px;
}

.item-wish-action a{
  padding: 12px 30px;
}

.item-out-stock .item-wish-action a{
  background: linear-gradient(to right, #CE3113 0%, #FF8500 100%);
  background-clip: text;
  color: transparent;
  border: 1.5px solid #CE3113;
}

.continue-shop{
  background: linear-gradient(to right, #CE3113 0%, #FF8500 80%);
  background-clip: text;
  color: transparent;
  padding-bottom: 5px;
  border-bottom: 1px solid #FF8500;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 30px;
  font-size: 18px;
}

.continue-shop:hover{
  color: transparent;
  transform: scale(1.05);
}

/* add to cart page */

.shop-cart-area{
  margin: 30px 0 60px ;
}

.heading.cart-main-head{
  margin-bottom: 60px;
}

.cart-items{
  padding: 20px 0;
}

.cart-header{
  padding-bottom: 10px;
  border-bottom: 1px solid #BB6831;
}

.cart-header ul{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
  padding: 0;
}

.cart-header ul li{
  list-style: none;
  display: inline-block;
  width: 15%;
  font-size: 18px;
  font-weight: 600;
}

.cart-header ul li:first-child{
  width: 50%;
}

.cart-body{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  border-bottom:1px solid #BB6831;
}

.cart-item{
  width: 48%;
  display: flex;
  align-items: center;
}

.cart-item img{
  width: 100px;
  border-radius: 10px;
  margin-right: 15px;
}

.cart-item .item-cart-name h3{
  font-size: 14px;
  font-family: "Raleway";
}

.cart-item .item-cart-name span{
  display: block;
  font-size: 12px;
  color: rgba(0,0,0,0.7);
}

.cart-item .item-cart-name label{
  font-size: 12px;
  color: #606060;
  font-weight: 600;
  margin-bottom: 0;
  cursor: pointer;
}

.cart-item-price{
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-wrap-cart span{
  font-size: 18px;
  color: rgba(0,0,0,0.9);
}

.quantity-wrap .qty-container{
  position: relative;
  border:1px solid rgba(0,0,0,0.15);
  overflow: hidden;
  border-radius: 5px;
  padding: 3px 0;
}

.quantity-wrap .qty-container input{
  width: 100px;
  text-align: center;
  border:0;
  padding-left: 0;
}

.quantity-wrap .qty-container button{
  position: absolute;
  top: 0;
  bottom: 0;
  border:0;
}

.quantity-wrap .qty-container button.qty-btn-minus{
  left: 0;
  background: transparent;
}

.quantity-wrap .qty-container button.qty-btn-plus{
  right: 0;
  background: #F4F4F4;
  width: 35px;
}

.quantity-wrap .qty-container button.qty-btn-plus:focus-visible,
.quantity-wrap .qty-container button.qty-btn-plus:focus{
  box-shadow: none!important;
  border: none;
}

.total-price-star{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 105px;
}

.total-price-star label{
  font-size: 18px;
  margin-bottom: 0;
}

.total-price-star span svg{
  color: #CE3113;
}

.coupon-input{
  width: 48%;
  position: relative;
}

.coupon-input form input{
  border-radius: 40px;
  border: 1px solid #CE3113;
}

.coupon-input form input:focus{
  border-color: #CE3113;
  box-shadow: none;
}

.coupon-input form .butn-default{
  position: absolute;
  top:0;
  bottom:0;
  right: 0;
  padding: 12px 25px;
}

.cart-coupon {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.butn-default.transparent-btn{
  background: linear-gradient(to right, #CE3113 0%, #FF8500 90%);
  background-clip: text;
  color: transparent;
  border: 1px solid #ce3113;
  font-weight: 500;
  text-transform: capitalize;
}

.butn-default.transparent-btn:hover{
  background-clip:border-box;
  color: #fff;
}

.cart-final-amount{
  border-radius: 15px;
  border:1px solid #BB6831;
  overflow: hidden;
}

.cart-final-amount h4{
  background-color: #BB6831;
  font-size: 18px;
  font-family: "Raleway";
  text-transform: capitalize;
  font-weight: 600;
  padding: 10px 15px;
  color: #fff;
}

.cart-final-amount ul{
  list-style: none;
  padding: 25px 15px;
  margin-bottom: 0;
}

.cart-final-amount ul li{
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.cart-final-amount ul li:last-child{
  margin-bottom: 0px;
}

.cart-final-amount .subject-cart span{
  font-size: 14px;
  color: rgba(0,0,0,0.7);
  text-transform: capitalize;
}

.cart-final-amount .description-cart span{
  font-size: 16px;
  color: rgba(0,0,0);
  font-weight: 600;
}

.cart-final-amount .description-cart label{
  color: #BB6831;
  margin-bottom: 0;
  font-size: 14px;
  text-align: right;
  display: block;
  text-transform: capitalize;
  font-weight: 500;
}

.cart-final-amount .description-cart p{
  margin-bottom: 0;
  text-align: right;
  font-size: 14px;
}

.cart-final-amount .checkout-btn{
  margin-bottom: 25px;
  text-align: center;
  margin-top: 10px;
}

.countinue-shopping-cart{
  text-align: center;
  margin-top: 20px;
}

.countinue-shopping-cart a{
  background: linear-gradient(to right, #CE3113 0%, #FF8500 80%);
  background-clip: text;
  color: transparent;
  padding-bottom: 3px;
  border-bottom: 1.5px solid #FF8500;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.countinue-shopping-cart a:hover{
  background: linear-gradient(to right, #CE3113 0%, #FF8500 80%);
  background-clip: text;
  color: transparent;
  transform: scale(1.05);
}

/* checkout page */

#progressbar-wrap {
  display: flex;
  align-items: center;
  position: relative;
  margin:0;
  padding: 0;
}

.checkout-form-fields .loading-dots-dot {
  background-color: #D0D0D0;
  border-radius: 50%;
  display: inline-block;
  height: 10px;
  width: 10px;
  position: absolute;
  left: 0px;
  top: 12px;
}

.checkout-form-fields .loading-dots-dot-right {
  background-color: #D0D0D0;
  border-radius: 50%;
  display: inline-block;
  height: 10px;
  width: 10px;
  position: absolute;
  right: 0;
  top: 12px;
}

#progressbar-wrap li {
  position: relative;
  width: 36.33%;
  overflow: hidden;
  z-index: 1;
}

#progressbar-wrap li:after {
  content: "";
  width: 120%;
  height: 1px;
  background: #D0D0D0;
  position: absolute;
  left: -3%;
  top: 17px;
  z-index: -1;
}

#progressbar-wrap .stepper-head {
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}

#progressbar-wrap li.active .stepper-head-icon {
  /* background: #AD8F71; */
  background: linear-gradient(to right, #CE3113 0%, #FF8500 80%);
  color: #fff;
}

#progressbar-wrap .stepper-head-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  height: 32px;
  width: 32px;
  color: #000;
  background: #EAC6AE;
  font-size: 13px;
  margin: 0 auto;
}

#progressbar-wrap .stepper-head-text {
  font-style: normal;
  font-size: 14px;
  color: #000000;
  padding-top: 8px;
  display: block;
}

.checkout-form-fields .form-checkbox {
  margin: 30px 0px;
}

.checkout-form-fields  .form-control {
  border: 0px;
  width: 100%;
  font-size: 14px;
  line-height: 1.2;
  color: #000;
  margin-bottom: 15px;
  font-weight: 400;
  border-bottom: 1px solid #999999;
  transition: all .5s ease-in-out;
  border-radius: 0px;
  padding: 10px 0px 6px;
  height: auto;
  background: transparent;
  box-shadow: none;
}

.mice-checkfield span input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.checkout-form-fields label#emailLabel {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  cursor: pointer;
}

.mice-checkfield span label {
  position: relative;
  display: inline-block;
  line-height: 1.3;
  padding: 0 0 0 22px;
  cursor: pointer;
  margin: 0px !important;
  color: rgba(0, 0, 0, 0.6);
}

.mice-checkfield span label::before, .mice-checkfieldspan label::after {
  -webkit-transition: .25s all ease;
  -o-transition: .25s all ease;
  transition: .25s all ease;
}

.mice-checkfield span label::before {
  content: " ";
  border: 1px solid #bdc3c7;
  border-radius: 20%;
  top: 1.5px;
}

.mice-checkfield span label::before, .mice-checkfield span label::after {
  position: absolute;
  left: 0;
  display: block;
  width: 15px;
  height: 15px;
}

.mice-checkfield span input[type="checkbox"] + label::after {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  top: 1px;
  border: 0px;
}

.mice-checkfield span input[type="checkbox"] + label::after {
  content: "\2714";
  color: #fff;
  line-height: 1.3;
  text-align: center;
  font-size: 12px;
}

.mice-checkfield span input[type="checkbox"]:checked + label::before {
  background: linear-gradient(to right, #CE3113 0%, #FF8500 80%);
  border-color: #CE3113;
}

.mice-checkfield span input[type="checkbox"]:checked + label::after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.checkout-form-fields h4 {
  color: #000;
  font-size: 34px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.half-sized-input{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-form-fields .half-sized-input input,
.checkout-form-fields .half-sized-input select{
  width: 47%;
}

.checkout-form-fields{
  margin-top: 50px;
  margin-bottom: 50px;
}

.checkout-area{
  position: relative;
}

.billing-address{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.billing-address div{
  margin-right: 50px;
  display: flex;
  align-items: center;
}

.billing-address div span{
  font-size: 14px;
  margin-left: 8px;
}

.billing-address div input[type='checkbox'] {
  accent-color: #CE3113;
  height: 18px;
}

.back-to-shop{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.back-to-shop .back-shop-btn{
  color: transparent;
  background: linear-gradient(to right, #CE3113 0%, #FF8500 80%);
  background-clip: text;
  padding-bottom: 3px;
  border-bottom: 1.5px solid #ce3113;
  text-transform: capitalize;
  font-weight: 500;
  transition: all 0.3s ease;
}

.back-to-shop .back-shop-btn:hover{
  transform: scale(1.05);
}


.right-container-area{
  background: url(../img/checkout-back.webp) no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  width: 49%;
  top: 0;
  right: 0;
  bottom: 0;
}


.scroller-area{
  max-height: 360px;
  overflow-y: scroll;
  margin-right: -28px;
  padding-right: 28px;
}

.scroller-area::-webkit-scrollbar{
  width:6px;
  background-color:transparent;
  }
  
.scroller-area::-webkit-scrollbar-thumb{
background:linear-gradient(to bottom, #CE3113 0%, #FF8500 80%);
border-radius:6px;
}

.hidden-form-input{
  display: none;
}

.right-whole-content{
  position: relative;
  width: 100%;
  height: 100%;
}

.whole-content-box{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0px 2px 10px 0 rgba(0, 0, 0, 0.25);
  width: 70%;
}

.checkout-product{
  display: flex;
  align-items: center;
}

.checkout-product img{
  border-radius: 8px;
  width: 100px;
  margin-right: 15px;
}

.checkout-product .checkout-product-name h3{
  font-size: 16px;
  font-family: 'Raleway';
}

.checkout-product .checkout-product-name span{
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
}

.checkout-weight label{
  display: block;
  color: #000;
  font-size: 14px;
  margin-top: 15px;
  margin-bottom: 5px;
}

.checkout-weight :last-child{
  margin: 0;
}

.checkout-coupon{
  margin-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #606060;
  position: relative;
}

.checkout-coupon form input{
  border-radius: 40px;
  border: 1px solid #CE3113;
}

.checkout-coupon form input:focus{
  border-color: #CE3113;
  box-shadow: none;
}

.checkout-coupon .butn-default{
  position: absolute;
  top: 0;
  right: 0;
}

.whole-content-box ul{
  padding: 30px 0;
  border-bottom: 1px solid #606060;
  list-style: none;
}

.whole-content-box ul li{
  display: flex;
  justify-content: space-between;
}

.whole-content-box ul li span{
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
}

.whole-content-box ul li label{
  font-size: 16px;
  font-weight: 600;
}

.whole-content-box ul li .free-ship-checkout{
 text-align: right;
}

.whole-content-box ul li .free-ship-checkout span{
 color: #BB6831;
 font-weight: 600;
}

.whole-content-box ul li .free-ship-checkout p{
 margin-bottom: 0;
}

.checkout-grand-total{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-grand-total span{
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
}

.checkout-grand-total label{
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.popup-book-content{
  position: relative;
  padding: 50px 20px;
}

.end-booking-btn{
  position: absolute;
  top: 15px;
  right:15px;
  border: none;
  background: linear-gradient(to right, #CE3113 0%, #FF8500 80%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
    width: 25px;
    height: 25px;
    cursor: pointer !important;
    z-index: 1;
}

.end-booking-btn{
  color: #fff;
}

.book-image img{
  width: 100%;
}

.popup-book-wrap h3{
  font-size: 23px;
  text-align: center;
  text-transform: capitalize;
  position: relative;
  padding-bottom: 15px;
}

.popup-book-wrap h3::before{
  content: "";
  position: absolute;
  width: 33px;
  height: 3px;
  border-radius: 15px;
  background: linear-gradient(to right, #CE3113 0%, #FF8500 80%);
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}

.booking-popup .modal-content{
  border-radius: 15px;
  overflow: hidden;
  padding: 0;
}

.popup-book-content .form-control {
  border: 0px;
  width: 100%;
  font-size: 14px;
  line-height: 1.2;
  color: #000;
  margin-bottom: 15px;
  font-weight: 400;
  border-bottom: 1px solid #999999;
  transition: all .5s ease-in-out;
  border-radius: 0px;
  padding: 10px 0px 6px;
  height: auto;
  background: transparent;
  box-shadow: none;
}

.half-book-fields{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.popup-book-content .half-book-fields input{
  width: 48%;
}

.submit-book-btn{
    margin-top: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.popup-book-content .vec-book-1{
    position: absolute;
    top: 2px;
    left: -30px;
    width: 74px;
}



.booking-popup form {
    padding-top: 40px;
}


.booking-popup  .book-image,
.booking-popup  .book-image img {
    height: 100%;
}

.popup-book-content .vec-book-2{
    position: absolute;
    right: 0;
    width: 45px;
    top: 88px;
}





.popup-book-content .vec-book-3{
position: absolute;
    bottom: 0;
    z-index: 1;
}
.booking-popup .qty-container  button {
    background: transparent;
    border: 0px;
}


.booking-popup .qty-container .input-qty {
    border: 0px;
    text-align: center;
}

.booking-popup .price-range-area {
    width: 48%;
}
.booking-popup .qty-container {
     border-bottom: 1px solid #999999;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

