@font-face {
  font-family: "montserrat";
  src: url("../font/Montserrat-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "montserrat-bold";
  src: url("../font/Montserrat-SemiBold.ttf") format("truetype");
}
body {
  font-family: 'montserrat';
  background: #fff;
  margin: 0;
  padding: 0;
  padding-top: 80px;
}

b,
h1,
h2,
h3,
.strong {
  font-family: 'montserrat-bold';
}
* {
  box-sizing: border-box;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
}
.rltv {
  position: relative;
}
.flex {
  display: flex;
}
.flex.center {
  align-items: center;
}
.flex.top {
  align-items: flex-start;
}
.flex.bottom {
  align-items: flex-end;
}
.flex.flex-center {
  justify-content: center;
}
.flex.between {
  justify-content: space-between;
}
.flex.flex-right {
  justify-content: flex-end;
}
.text-center {
  text-align: center;
}
.primary_icons{
  color:var(--primary-color);
  position: absolute;
  left: 11px;
}

.product_show_active{
  display: none;
}
h1,
h2,
h3,
h4 {
  margin: 0;
}

h2 {
  font-size: 24px;
}

p {
  font-size: 15px;
  color: #90A1B5;
  margin: 0;
}

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mr-1 {
  margin-right: 10px;
}

.mr-2 {
  margin-right: 20px;
}

.mb-1 {
  margin-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}

input,
select {
  outline: 0;
  font-family: 'montserrat';
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #90A1B5;
}

.scrollbar::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.scrollbar::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 10px;
}

.scrollbar::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #bbb;
}


body::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

body::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #bbb;
}


.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-color);
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked+.slider {
  background-color: var(--primary-color);
}

input:focus+.slider {
  box-shadow: 0 0 1px var(--primary-color);
}

input:checked+.slider:before {
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}


.blod {
  font-weight: 600;
}

.textBtn {
  background: transparent;
  padding: 0;
  font-size: 14px;
  border: 0;
}

.textBtn.cancel {
  color: #90A1B5;
}

.small {
  font-size: 13px;
}

header {
  background: #fff;
  padding: 10px 20px;
  height: 80px;
  position: fixed;
  width: 100%;
  z-index: 99;
  top: 0;
  border-bottom: 1px solid #E1E5EE;
}

header .logo {
  position: absolute;
  left: 0;
  top: 12px;
}

.wizard {
  height: 60px;
  margin: 0 -30px;
}

.wizard .step {
  padding: 0 30px;
  display: flex;
  align-items: center;
  color: #90A1B5;
  font-size: 13px;
  position: relative;
  font-weight: 500;
  font-family: "montserrat-bold";
  position: relative;
}

.wizard .step span {
  width: 30px;
  height: 30px;
  border: 1px solid #f1f1f1;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  display: block;
  margin-right: 10px;
}

.wizard .step:after {
  content: '';
  width: 40px;
  position: absolute;
  height: 1px;
  background: #e1e1e1;
  top: 16px;
  right: -20px;
}

.wizard .step:last-child:after {
  display: none;
}

.wizard .step.complete {
  color: var(--primary-color);
}

.wizard .step.active {
  color: var(--primary-color);
}

.wizard .step.complete:after {
  background: var(--primary-color);
}

.wizard .step.active span {
  background: var(--primary-color);
  color: #fff;
}

.wizard .step.complete span {
  background: var(--primary-color);
  color: var(--primary-color);
}

.wizard .step.complete:before {
  content: '';
  position: absolute;
  left: 41px;
  display: inline-block;
  transform: rotate(45deg);
  height: 12px;
  width: 6px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  top: 7px;
}

.head {
  padding: 30px 0 0;
}

.innerContainer {
  width: 865px;
  margin: 0 auto;

}

.innerContainer .card {
  min-height: 340px;
}

.card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #E1E5EE;
}

.formBlock {
  /* width: 445px; */
  border-right: 2px solid #E1E5EE;
  padding: 20px;
  box-sizing: border-box;
  flex: 1;
}

.formBlock .w-50 {
  width: calc(50% - 10px);
}

.inputBlock {
  margin-bottom: 20px;
}

.formBlock .inputBlock:last-child {
  margin-bottom: 0;
}

.inputBlock label {
  color: #2D3649;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  display: block;
  margin-bottom: 12px;
  letter-spacing: 0.16px;
}

button {
  font-family: 'montserrat';
}

.inputBlock input,
.inputBlock textarea {
  height: 40px;
  border: 1px solid #E1E5EE;
  border-radius: 10px;
  padding: 0 15px;
  width: 100%;
  font-family: 'montserrat';
}

.inputBlock textarea {
  height: 100px;
  padding: 15px 15px;
}

.inputBlock select {
  height: 44px;
  border: 1px solid #E1E5EE;
  border-radius: 10px;
  padding: 0 10px;
  width: 100%;
}

.iti {
  width: 100%;

}

.btnsSec {
  padding: 50px 0 40px;
}

.btn {
  padding: 10px 10px;
  border-radius: 30px;
  border: 1px solid;
  min-width: 160px;
  height: 40px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  line-height: 20px;
  border: 1px solid;
}

.btn-primary {
  background: var(--primary-color);
  color: #fff;
  transition: all .3s;
}

.btn-primary:hover {
  background: var(--primary-color);
}

.btn-danger {
  background: #FC4741;
  color: #fff;
  transition: all .3s;
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
  transition: all .3s;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: #fff;
}

.btn-outline.back {
  transition: all .3s;
}

.btn-outline.back:hover {

  color: #fff;
}

.addBtn {
  height: 36px;
  min-width: 140px;
  line-height: 16px;
}

.btn:disabled {
  background: #F4F6F8;
  color: #90A1B5;
  border-color: #F4F6F8;
  cursor: not-allowed;
}
.signup-step-right-info{
  flex: 1;
}
.detailsBlock {
  /* width: 408px; */
  padding: 20px;
  position: relative;
  height: 100%;
  padding-bottom: 130px;
}
.detailsBlock h4 {
  color: #90A1B5;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 20px;
  letter-spacing: 0.32px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.product {
  border: 1px solid #E1E5EE;
  padding: 14px;
  border-radius: 10px;
  font-size: 14px;
}

.product p {
  margin: 5px 0 0;
  font-size: 14px;
}

.product b {
  font-size: 14px;
  color: #5d6474;
  cursor: pointer;
}

.product .price {
  text-align: right;
  padding-left: 0;
  /* min-width: 150px; */
  margin-top: 5px;
}

.product img {
  width: 48px;
}

.product .content {
  width: calc(100% - 50px);
  padding-right: 30px;
}

.color {
  color: var(--primary-color);
}

.product .price span {
  font-weight: 500;
}


.otherinputBlk {
  display: none;
}

.step2,
.step3,
.step4 {
  display: none;
}

.paymentBlock {
  border: 1px solid #E1E5EE;
  border-radius: 10px;
}

.paymentBlock.invalid {
  border-color: red;
}

.paymentBlock .inputBlock {
  margin: 0;
  position: relative;
}

.paymentBlock input {
  border-radius: 0;
}

.bankcards {
  position: absolute;
  right: 10px;
  top: 7px;

}

.bankcards img {
  margin-right: -5px;
}

.bankCard input {
  border-radius: 10px 10px 0 0;
  border: 0;
  border-bottom: 1px solid #E1E5EE;
  padding-right: 180px;
}

.paymentBlock .expire {
  border-radius: 0 0 0 10px;
  border: 0;
  border-right: 1px solid #E1E5EE;
}

.paymentBlock .cvc {
  border-radius: 0 0 10px 0;
  border: 0;
}

.label-check {
  font-size: 12px;
  font-weight: 600;
}

.label-check input {
  width: 16px;
  height: 16px !important;
}

.finalPrice {
  background: #F6F7F9;
  border-radius: 0px 0px 12px 0;
  padding: 20px;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
}

.finalPrice div {
  margin-bottom: 16px;
}

.finalPrice span {
  font-size: 14px;
  color: #90A1B5;
  line-height: 16px;
  letter-spacing: 0.28px;
  text-transform: capitalize;
}

.finalPrice span b {
  color: #2D3649;
}

.finalPrice .total {
  color: #2D3649;
  text-align: right;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.32px;
}



#dateSelector {
  margin-top: 15px;
  overflow-x: scroll;
  white-space: nowrap;
  width: 100%;
  padding-bottom: 8px;
  overflow-y: hidden;
  padding-right: 10px;
  padding-left: 1px;
}


.dateBox {
  display: inline-block;
  background: #fff;
  margin-right: 9px;
  border-radius: 12px;
  text-align: center;
  width: 90px;
  height: 95px;
  cursor: pointer;
  vertical-align: top;
  border: 1px solid #E1E5EE;
  border-top: 0;
}

.dateBox:hover {
  border: 1px solid #287efc;
  border-top: 0;
}

.topMonth {
  background: var(--primary-color);
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  padding: 6px 0 6px;
  text-transform: uppercase;
  border-radius: 12px 12px 0px 0px;
  border: 1px solid var(--primary-color);
}

.midDay {
  font-size: 20px;
  margin-top: 8px;
  margin-bottom: 5px;
  font-weight: 600;
  color: #28a0fc;
}

.bottomWeek {
  font-weight: 400;
  font-size: 12px;
  color: #000;
}

.locked {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
  background: repeating-linear-gradient(45deg, #eeeeee, #eeeeee 10px, #d6d6d6 10px, #d6d6d6 20px);
}

.dateBlk p {
  margin: 5px 0 15px;
}

.numberTitle {
  font-weight: 600;
  font-size: 18x;
  color: #333;
}

.assistantQuestion {
  padding: 30px 0 0;
}

.questionHelper {
  margin: 5px 0 15px;
  color: #90A1B5;
  font-size: 14px;
}

.bubbleOption {
  border: 1px solid var(--primary-color);
  font-size: 12px;
  color: var(--primary-color);
  border-radius: 50px;
  padding: 5px 10px;
  display: inline-block;
  cursor: pointer !important;
  margin-bottom: 7px;
  position: relative;
}

.bubbleOption input {
  cursor: pointer !important;
}

.bubbleOption.active {
  background: var(--primary-color);
  color: #fff;
  padding-left: 24px;
}



.bubbleOption.active:before {
  content: '';
  position: absolute;
  left: 10px;
  display: inline-block;
  transform: rotate(45deg);
  height: 8px;
  width: 3px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 7px;
}


.specialist .bubbleOption {
  border-color: #EFA836;
  color: #EFA836;
}

.specialist .bubbleOption.active {
  background: #EFA836;
  color: #fff;
}



.chooseList .bubbleOption input {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  margin: 0;
  opacity: 0;
}

.seqText {
  padding: 50px 20% 40px;
  line-height: 24px;
  font-size: 12px;
}

.seqText img {
  vertical-align: middle;
}

.pad-2 {
  padding: 20px;
}

.modalPopup {
  width: 100%;
  height: 100vh;
  overflow: auto;
  background: rgb(0 0 0 / 30%);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  display: none;
}


.modal-body {
  margin: 0 auto;
  background: #fff;
  width: 530px;
  border-radius: 10px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.heading {
  padding: 20px;
  border-bottom: 1px solid #E1E5EE;
  position: relative;
}

.heading h3 {
  margin-bottom: 8px;
}

.closeIcon {
  position: absolute;
  right: -15px;
  top: -15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  box-shadow: 0px 10px 20px rgba(108, 127, 151, 0.2);
  background: #fff;
  font-size: 18px;
}

.hours .switch {
  margin: 0 12px;
}

.hours span.hour {
  width: max-content;
}

.hours span {
  color: #90A1B5;
  font-size: 14px;
}

.hours span.active {
  color: var(--primary-color);
  font-weight: 600;
}

.hrsBlk {
  border-radius: 12px;
  padding: 16px;
  background: #fff;
  margin: 0 0 20px;
  box-sizing: border-box;
}

.hours {
  position: relative;
}

.hours .sugest {
  /* position: absolute; */
  background: #E9F5FF;
  top: -15px;
  color: var(--primary-color);
  padding: 2px 8px;
  border-radius: 30px;
  font-size: 10px;
  left: -6px;
  text-transform: uppercase;
  font-weight: 600;
  margin-right: 5px;
}

.selectProducts .selectproductList{
  padding: 0 30px;
}

.modal-body h4 {
  color: #90A1B5;
  font-size: 14px;
  margin-bottom: 10px;
}

.pDetails {
  padding: 10px 0 0;
  border-top: 1px solid #e1e1e1;
  margin: 10px 0 0;
}

.pDetails b {
  font-size: 13px;
  cursor: pointer;
}

.pDetails b:hover {
  text-decoration: underline;
}

.pDetails .actionBtn {
  padding: 0;
  border: none;
  /* border: 1px solid #e1e1e1; */
  background: transparent;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  line-height: 30px;
  /* margin-right: 20px; */
}



.pDetails .arrow {
  width: 13px;
}

.pDetails .product-details-box.in  img.arrow { 
  transform: rotate(180deg);
}

button {
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pDetails ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
  padding: 10px 0 0;
}

.pDetails ul li {
  width: 50%;
  padding: 0 10px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
  display: flex;
  align-items: center;
}

.product .tipImg {
  margin-left: 5px;
  width: 16px;
}

svg path{
  stroke: #fff
}
.svg_p {
  fill: none;
  stroke: #fff!important;
}

.pDetails ul li:before {
  content: '';
  /*background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' style='color:var(--primary-color)' viewBox='0 0 16 16' fill='var(--primary-color)' xmlns='http://www.w3.org/2000/svg'><circle cx='7.99967' cy='7.99967' r='6.66667' /%3E%3Cpath d='M4.8877 8.44401L6.66547 10.2218L11.1099 5.77734' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");*/
  /*background-color: var(--primary-color);
  -webkit-mask-image: url(../images/tick.svg);
  mask-image: url(../images/tick.svg);*/
  /*background: url(../images/tick.svg)no-repeat;*/
  width: 16px;
  height: 16px;
  position: absolute;
  left: 10px;
  top: 0;
}


.circleBtn {
  border-radius: 30px;
  border: 0;
}

.circleBtn.sub {
  background: #fff;
  font-size: 12px;
  font-weight: 400;
  color: #90A1B5;
  line-height: 32px;
  min-width: 80px;
}

.circleBtn.add {
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  color: var(--primary-color);
  line-height: 32px;
  min-width: 124px;
  font-weight: 600;
  border: 1px solid var(--primary-color);
}

.offerPrice {
  text-decoration: line-through;
  padding: 0 2px;
  color: #90A1B5;
}


.otherProducts {
  background: #F6F7F9;
  border-radius: 0 0 20px 20px;
  padding: 20px 30px;
}

.otherProducts .product {
  margin-bottom: 15px;
}

.dropBtn {
  background: transparent;
  border: 0;
  padding: 0;
}

.dropBtn .arrow {
  width: 14px;
}

.teamBlock {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #E1E5EE;
}

.teamBlock h3,
.dateBlk h3 {
  font-size: 13px;
}

.teamBlock p,
.dateBlk p {
  font-size: 14px;
  margin-bottom: 10px;
}

.teamBlock:last-child {
  border: 0;
  margin: 0;
  padding-bottom: 0;
}


.number {
  width: 100px;
  display: flex;
  align-items: center;
}

.directionBtn {
  cursor: pointer;
  font-size: 20px;
  background: var(--primary-color)c7;
  border-radius: 50px;
  color: #fff;
  padding: 0px 8px;
  width: 26px;
  height: 26px;
  display: block;
}

.directionBtn:hover {
  background: var(--primary-color);
}

.plus {
  padding: 0px 7px;
}

#assistantCount {
  width: 30px;
  text-align: center;
  border: 0;
  margin: 0;
  font-weight: 600;
  font-size: 16px;
}

div#addMoreAssistantsBlock {
  font-size: 14px;
  display: inline-block;
  width: 275px;
  line-height: 18px;
  vertical-align: -6px;
  border-left: 3px solid #ff7600;
  background: #f6f6f6;
  padding: 10px 15px;
  color: #90A1B5;
  border-radius: 4px;
}


.dropDown {
  display: none;
}

.dropDown .arrow {
  opacity: .7;
}

.dropBtn.in .arrow {
  transform: rotate(180deg);
}

.dolist {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
  padding: 10px 0 0;
}

.dolist li {
  width: 50%;
  padding: 0 5px;
}

.dolist li span {
  color: #90A1B5;
}

.dolist li input:checked+span {
  color: #203551;
}

.dolist li .label-check {
  margin-bottom: 10px;
}

.timeZoneBlk {
  display: flex;
  justify-content: space-between;
  margin: 10px 0 0;
}

.timeZoneBlk .form-control {
  width: 48%;
  height: 40px;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  padding: 0 10px;
  font-size: 12px;
}

.specialist,
.generlist {
  display: none;
}

.changeBtn {
  text-decoration: none;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 12px;
  border-bottom: 1px solid;
  margin-left: 10px;
}

.changeBtn:hover {
  border: 0;
}

.paymentPage input {
  height: 40px;
}

.paymentPage select {
  height: 40px;
}

.paymentPage .btnsSec {
  padding-top: 30px;
  padding-bottom: 0;
}

.paymentPage .inputBlock {
  margin-bottom: 15px;
}

.paymentPage .paymentBlock .inputBlock {
  margin-bottom: 0;
}


.paySuccessPopup {
  text-align: center;
}

.paySuccessPopup .heading {
  padding: 40px 20px;
  margin-top: 50%;
}

.paySuccessPopup h3 {
  font-size: 24px;
  margin: 10px 0 10px;
}

.paySuccessPopup p {
  margin-bottom: 30px;
  padding: 0 5%;
}

.paySuccessPopup .btn-primary {
  width: 320px;
  height: 44px;
}

.errorMsg {
  color: #FC4741;
  font-size: 13px;
  display: flex;
  align-items: center;
  display: none;
}

.errorMsg .errorIcon {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #FC4741;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-weight: 600;
  margin-right: 5px;
}

.selectproductList .product {
  margin-bottom: 10px;
}
body.modal-open{
  overflow: hidden;
}
.productsPopup .selectproductList .product {
  margin-bottom: 20px;
  border-color: var(--primary-color);
  background: #E9F5FF;
}

.productsPopup .selectproductList .pDetails {
  border-color: var(--primary-color);
}

.productsPopup .selectproductList .pDetails .actionBtn {
  border-color: transparent;
  margin-right: 0;
}
.productsPopup .modal-body{
  width: 576px;
  border-radius: 20px;
}
.productsPopup .heading{
  padding: 20px 30px;
}
.productsPopup .heading h3,
.receptionistPopup .heading .header-title{
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.16px;
  color: #2D3649;
  font-weight: 600;
}
.productsPopup .heading p{
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.32px;
  color: #90A1B5;
  font-weight: normal;
}
.productsPopup .heading .closeIcon svg,
.closeIcon svg{
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.productsPopup .heading .closeIcon svg path,
.closeIcon svg path{
  stroke: #90A1B5;
}
.innerContainer .iti--separate-dial-code .iti__selected-flag{
  padding: 0 12px 0 16px;
}
.innerContainer .iti--separate-dial-code .iti__selected-flag,
.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag{
  background-color: transparent;
}
.innerContainer .iti--separate-dial-code .iti__arrow{
  border: none;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSI1IiB2aWV3Qm94PSIwIDAgOCA1IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNNy4xOTkyMiAxTDQuMTk5MjYgNEwxLjE5OTIyIDEiIHN0cm9rZT0iIzkwQTFCNSIgc3Ryb2tlLXdpZHRoPSIxLjMiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K');
  width: 8px;
  height: 5px;
}
.innerContainer .iti--separate-dial-code .iti__selected-flag::after{
  content: '';
  position: absolute;
  right: 3px;
  top: 10px;
  height: calc(100% - 20px);
  width: 1.5px;
  background-color: #E1E5EE;
  display: block;
}
.signup-step-one__note{
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #90A1B5;
  letter-spacing: 0.32px;
  font-style: italic;
  margin-top: 36px;
  display: block;
}
.dateBlk.payment .signup-step-one__note-help{
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.28px;
  margin: 20px 0 0 0;
}

.selectProducts .circleBtn.add {
  display: none;
}

.detailsBlock .selectproductList .pDetails {
  display: none;
}

.detailsBlock .circleBtn.add {
  display: none;
}

.recommend {
  margin: 8px;
  padding: 5px 10px;
  background: #E9F5FF;
  color: var(--primary-color) !important;
  font-size: 10px !important;
  border-radius: 10px !important;
}

.detailsBlock .product {
  width: 100%;
  position: relative;
}

.detailsBlock .product .removeProduct {
  padding: 0;
  border: 0;
  background: transparent;
  right: 10px;
  border: 1px solid #e1e1e1;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 12px;
}

.detailsBlock .product .removeProduct img {
  width: 16px;
  display: inline-block;
  margin: 1px 0;
}

.errorPopup {
  background: #FC4741;
  border-radius: 10px;
  color: #fff;
  padding: 12px 15px;
  width: 780px;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 20px;
  z-index: 99;
  left: 50%;
  margin-left: calc(-390px);
  box-shadow: 0 0 15px rgb(252 71 65 / 39%);
  height: inherit;
  display: none;
}

.errorPopup p {
  color: #fff;
  float: left;
  display: flex;
  align-items: center;
}

.errorPopup .close {
  background: transparent;
  border: 0;
  float: right;
  color: #fff;
  border-left: 1px solid;
  padding-left: 10px;
  font-size: 14px;
}

.finalPrice .curncy {
  background: #2D3649;
  color: #fff;
  padding: 4px 8px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  line-height: 12px;
  letter-spacing: 0.24px;
  margin-right: 8px;
}

.finalPrice .tooltip {
  top: 3px;
  left: 2px;
}

.showBtn {
  position: absolute;
  right: 10px;
  top: 34px;
}

.showBtn.in:before {
  content: '';
  width: 20px;
  height: 2px;
  background: #aaaaaa;
  display: block;
  transform: rotate(145deg);
  position: absolute;
  top: 6px;
}

.onBoardClick {
  text-align: center;
  display: flex;
  justify-content: center;
  text-decoration: none;
}

.onBoardClick img {
  margin-left: 10px;
  margin-left: 10px;
  position: relative;
  top: 2px;
}


#cartBlock1 #cartBlock1,
#cartBlock2 #cartBlock2,
#cartBlock3 #cartBlock3,
#cartBlock4 #cartBlock4 {
  height: 100%;
}

#ccerrorMsg {
  color: #ff0000;
  display: none;
}

.main {
  position: relative;
  z-index: 2;
}

#chosenStartDate {
  display: flex;
  align-items: center;
  font-size: 15px;
}

#chosenStartDate .tikicon {
  margin-right: 6px;
}

.errorCard {
  background: rgb(252 71 65 / 12%);
  padding: 10px 15px;
  border-radius: 10px;
  color: #FC4741;
  font-size: 13px;
}

.errorCard img {
  margin-right: 5px;
}


.tTip:hover:before {
  content: attr(data-title);
  display: block;
  position: absolute;
  bottom: 100%;
  right: 0;
  background: #007bff;
  color: #fff;
  width: 230px;
  border-radius: 4px;
  line-height: 18px;
  font-size: 12px;
  padding: 10px 15px;
}

.tTip:hover:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #007bff transparent transparent transparent;
  position: absolute;
  content: "";
  right: 5px;
  bottom: 15px;
}

.tTip {
  position: relative;
}

.rTip:hover:before {
  content: attr(data-title);
  display: block;
  position: absolute;
  top: 25px;
  left: -12px;
  background: var(--primary-color);
  color: #fff;
  width: 230px;
  border-radius: 4px;
  line-height: 18px;
  font-size: 12px;
  padding: 10px 15px;
  z-index: 100;
}

.rTip:hover:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 5px 5px;
  border-color: transparent transparent #007bff transparent;
  position: absolute;
  content: "";
  right: 2px;
  bottom: -6px;
}

.rTip {
  position: relative;
}

.promoBlk {
  margin: 20px 0 0;
}

.promo {
  position: relative;
}

.paymentPage .promo input {
  height: 45px;
}

.promo .btn-primary {
  position: absolute;
  right: 3px;
  padding: 10px 24px;
  top: 3px;
  border-radius: 8px;
  min-width: unset;
  line-height: 16px;
  font-size: 14px;
  text-transform: capitalize;
  letter-spacing: 0.28px;
}

.productDrp {
  position: absolute;
  border: 1px solid #e1e1e1;
  width: 150px;
  background: #fff;
  border-radius: 10px;
  right: 0;
  z-index: 99;
  top: 30px;
  padding: 10px 0;
  display: none;
  box-shadow: 0 3px 4px rgb(76 76 76 / 15%);
}

.productDrp li {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  font-size: 14px;
  color: #2D3649;
  cursor: pointer;

}

.productDrp li:hover {
  background: #f1f1f1;
}

.productDrp li img {
  width: 15px;
  margin: 0 10px 0 0;
}

.prntrmvPrdct {
  position: absolute;
  right: 10px;
  width: 30px;
  height: 30px;
}

.prntrmvPrdct:hover .productDrp {
  display: block;
}

.confirmPopup .modal-body {
  padding: 20px;
}

.confirmPopup h2 {
  font-size: 18px;
}

.confirmPopup p {
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  padding: 15px 0;
  margin: 20px 0 20px;
}



@-webkit-keyframes animationFramesLeft {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }

  20% {
    -webkit-transform: translate(-73px, 1px) rotate(-36deg);
    transform: translate(-73px, 1px) rotate(-36deg);
  }

  40% {
    -webkit-transform: translate(-141px, -72px) rotate(-72deg);
    transform: translate(-141px, -72px) rotate(-72deg);
  }

  60% {
    -webkit-transform: translate(-83px, -122px) rotate(-108deg);
    transform: translate(-83px, -122px) rotate(-108deg);
  }

  80% {
    -webkit-transform: translate(40px, -72px) rotate(-144deg);
    transform: translate(40px, -72px) rotate(-144deg);
  }

  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes animationFramesLeft {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }

  20% {
    -webkit-transform: translate(-73px, 1px) rotate(-36deg);
    transform: translate(-73px, 1px) rotate(-36deg);
  }

  40% {
    -webkit-transform: translate(-141px, -72px) rotate(-72deg);
    transform: translate(-141px, -72px) rotate(-72deg);
  }

  60% {
    -webkit-transform: translate(-83px, -122px) rotate(-108deg);
    transform: translate(-83px, -122px) rotate(-108deg);
  }

  80% {
    -webkit-transform: translate(40px, -72px) rotate(-144deg);
    transform: translate(40px, -72px) rotate(-144deg);
  }

  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}

@-webkit-keyframes animationFramesRight {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }

  20% {
    -webkit-transform: translate(73px, 1px) rotate(36deg);
    transform: translate(73px, 1px) rotate(36deg);
  }

  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
    transform: translate(141px, 72px) rotate(72deg);
  }

  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
    transform: translate(83px, 122px) rotate(108deg);
  }

  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
    transform: translate(-40px, 72px) rotate(144deg);
  }

  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes animationFramesRight {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }

  20% {
    -webkit-transform: translate(73px, 1px) rotate(36deg);
    transform: translate(73px, 1px) rotate(36deg);
  }

  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
    transform: translate(141px, 72px) rotate(72deg);
  }

  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
    transform: translate(83px, 122px) rotate(108deg);
  }

  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
    transform: translate(-40px, 72px) rotate(144deg);
  }

  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}


.animate-particle {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.animate-particle li {
  position: absolute;
}

.animate-particle li:nth-child(1) {
  left: 90px;
  top: 140px;
  -webkit-animation: animationFramesRight 40s infinite linear;
  animation: animationFramesRight 40s infinite linear;
}

.animate-particle li:nth-child(2) {
  left: 40%;
  bottom: 13%;
  -webkit-animation: animationFramesRight 30s infinite linear;
  animation: animationFramesRight 30s infinite linear;
}

.animate-particle li:nth-child(3) {
  right: 28%;
  top: 14%;
  -webkit-animation: animationFramesRight 30s infinite linear;
  animation: animationFramesRight 30s infinite linear;
}

.animate-particle li:nth-child(4) {
  right: 5%;
  top: 63%;
  -webkit-animation: animationFramesLeft 20s infinite linear;
  animation: animationFramesLeft 20s infinite linear;
}

.animate-particle li:nth-child(5) {
  left: 50%;
  top: 25%;
  -webkit-animation: animationFramesLeft 20s infinite linear;
  animation: animationFramesLeft 20s infinite linear;
}

.animate-particle li:nth-child(6) {
  right: 0%;
  top: 110px;
}

.animate-particle li.bubble {
  height: 10px;
  width: 10px;
  background: #a2e3f6;
  border-radius: 50%;
  left: 15%;
  top: 28%;
  -webkit-animation: animationFramesLeft 30s infinite linear;
  animation: animationFramesLeft 30s infinite linear;
}

#loading {
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  opacity: 0.7;
  background-color: #fff;
  z-index: 99999;
}

#loading-image {
  position: relative;
  margin: 0 auto;
  margin-top: 22% !important;
  height: auto;
  width: auto;
  z-index: 100;
}

.pageLoader .loaderBlock {
  padding: 30px;
  justify-content: center;
}

.textareaBlk label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 10px;
}

.textareaBlk label span {
  font-weight: 400;
  color: #90A1B5;
}

.textareaBlk textarea {
  width: 100%;
  height: 70px;
  resize: none;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  padding: 10px;
  font-size: 12px;
}

.chooseList .otherBtn:hover {
  background: inherit;
}

.chooseList .otherBtn {
  border: 1px solid #E1E5EE;
  font-size: 12px;
  color: #90A1B5;
  border-radius: 50px;
  padding: 7px 10px;
  display: inline-block;
  cursor: pointer;
  margin-bottom: 7px;
  min-width: 100px;
  line-height: inherit;
  height: inherit;
}

.chooseList .otherBtn.active {
  background: var(--primary-color);
  color: #fff;
}

select {
  background: url("data:image/svg+xml,<svg height='10px' width='10px' viewBox='0 0 16 16' fill='%23000000' xmlns='http://www.w3.org/2000/svg'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/></svg>") no-repeat;
  background-position: calc(100% - 0.75rem) center !important;
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  padding-right: 2rem !important;
}

.ui-timepicker-standard a {
  font-size: 12px;
}

.payment {
  position: relative;
}

.payment .help {
  position: absolute;
  bottom: 10px;
}

.terms {
  display: block;
  text-align: center;
  margin: 30px 0 0;
  font-size: 12px;
  color: #90A1B5;
}

.terms a {
  color: var(--primary-color);
  text-decoration: none;
}

.terms a:hover {
  text-decoration: underline;
}

.asterisk {
  color: #FF7878;
}

.pdcount {
  width: 18px;
  height: 18px;
  background: #EEF0F7;
  line-height: 18px;
  color: #2D3649;
  font-size: 10px;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  font-weight: 600;
  border-radius: 50%;
  letter-spacing: 0.32px;
  margin-left: 8px;
}

.iti--separate-dial-code .iti__selected-dial-code,
.iti__country-name,
.iti__dial-code,
.iti__flag-box {
  font-size: 14px;
}

textarea {
  font-family: 'montserrat' !important;
}

.dprice {
  color: #24b947 !important;
}

.mnthSep {
  color: #90A1B5 !important;
}

.teamBlock .tipImg,
.paymentPage .head .tipImg {
  vertical-align: middle !important;
}
.terms a {
  text-decoration: none;

}

.select2-container {
  width: 48% !important;
  height: 40px !important;
  border: 1px solid #e1e1e1 !important;
  border-radius: 4px;
  padding: 0 10px !important;
  font-size: 12px;
}

.select2-container--default .select2-selection--single {
  border: none !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 36px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 36px !important;
}

.select2-results__option{
  text-align: center !important;
}

.modal-container .modal-body {
  position: relative;
}

.inputBlock.promoBlk {
  margin-bottom: 3rem;
}

.receptionistPopup .modal-body {
  min-width: 740px;
}
.receptionistPopup .modal-dialog {
  width: 100%;
  height: 100%;
}
.receptionistPopup .modal-dialog-centered {
  display: flex;
  align-items: center;
}
.receptionistPopup .heading .header-title {
  margin-bottom: 0;
}
.receptionistPopup .modal-body .modal-innerContainer {
  padding: 20px;
}
.receptionistPopup .modal-body .form-list {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.form-list .form-check {
  width: 48%;
  margin-right: 1rem;
  margin-bottom: 1.2rem;
}
.form-list .form-check:nth-child(even) {
  margin-right: 0;
}
.form-list .form-check .form-check-label {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: #2D3649;
  cursor: pointer;
}
.form-check-label .va-price {
  color: #90A1B5;
}
.form-check-label .va-price .price-amt {
  color: var(--primary-color);
  font-weight: 500;
}
.form-list .tTip {
  cursor: pointer;
}
.btn-secondary {
  font-weight: 500;
  font-size: 14px;
  color: #90A1B5;
  background: #E1E5EE;
  border: none;
  margin-right: 1rem;
}
.modal-footer {
  padding: 20px;
  border-top: 1px solid #E1E5EE;
  position: relative;
  text-align: right;
}
.selected-products-wrapper{
  padding: 20px 0;
  box-sizing: border-box;
}
.selectProducts h4,
.otherProducts h4{
  text-transform: uppercase;
  letter-spacing: 0.32px;
  color: #90A1B5;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 20px;
  padding-left: 30px;
  font-weight: 600;
}
.otherProducts h4{
  padding-left: 0;
}
.selected-products-wrapper .pad-footer {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #E1E5EE;
  padding: 20px 30px 0 30px;
  align-items: center;
}
.selected-products-wrapper  .pad-footer .total-amt {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.16px;
  color: #2D3649;
}
.selected-products-wrapper  .pad-footer .total-amt .color {
  font-weight: 600;
}
.selected-products-wrapper  .pad-footer .btn{
  min-width: 130px;
}
.selectproductList-box .product {
  width: 100%;
  border: none;
  border-bottom: 1px solid #E1E5EE;
  padding: 0 0 20px 0;
  border-radius: 0;
}
.selectproductList-box .product .content {
  width: 100%;
  padding-right: 0;
}
.selectproductList-box .product .content .p-title {
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.16px;
  color: #2D3649;
  font-weight: 600;
  width: 75%;
}
.selectproductList-box .product .content .btn-delete {
  cursor: pointer;
  width: 15px;
  margin: 0 10px 0 0
}
.selectproductList-box .product .price {
  text-align: left;
  padding-left: 0;
  min-width: 150px;
  margin-top: 12px;
}
.selectproductList-box .product .price span {
  font-weight: 500;
}
.selectproductList-box .product .removeProduct {
  border: none;
  width: 20px;
  height: 20px;
  border-radius: unset;
}
.selectproductList-box .product .left-info p{
  letter-spacing: 0.32px;
  line-height: 16px;
  font-weight: 400;
  margin-top: 12px;
}
.selectproductList .productTtl .content b.modalcardName{
  white-space: pre-wrap;
  width: 66%;
  line-height: 18px;
}
.otherProducts .product{
  border: none;
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
}
.otherProducts .product:last-child{
  margin-bottom: 0;
}
.otherProducts .product .pDetails{
  margin-top: 20px;
  padding-top: 12px;
  border-color: var(--primary-color);
}
.qty {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  background: #fff;
  border: 1px solid #e1e5ee;
  border-radius: 8px;
  height: 32px;
  overflow: hidden;
}
.qty label {
  flex: 1 0 100%;
}
.qty input {
  width: 32px;
  height: 32px;
  font-size: 1rem;
  text-align: center;
  border: none;
}
.qty button {
  width: 32px;
  height: 32px;
  color: var(--primary-color);
  font-size: 1.5rem;
  background: transparent;
  border: none;
}
.qty button:hover {
  color: #fff;
  background: var(--primary-color);
}
.qty button.qtyminus {
  margin-right: 0;
  border-right: 1px solid #e1e5ee;
}
.qty button.qtyminus.inactive {
  color: #90A1B5;
  pointer-events: none;
}
.qty button.qtyplus {
  margin-left: 0;
  border-left: 1px solid #e1e5ee;
}
.justify-content-between {
  justify-content: space-between;
}
.detailsBlock .total-amt {
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  text-align: right;
  letter-spacing: 0.01em;
  color: #2D3649;
}
.detailsBlock .total-amt .color{
  font-weight: 600;
}
.productsPopup .product .content {
  width: 100%;
  padding-right: 0;
}
.productsPopup .removeProduct {
  background: transparent;
  font-size: 14px;
  min-width: auto;
  line-height: normal;
  border: none;
}
.productsPopup .removeProduct img {
  width: 16px;
  display: inline-block;
  margin: 1px 0;
}
.productsPopup .product .productTtl {
  width: 100%;
}
.otherProducts .product .productTtl .content h5{
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 0.16px;
  margin: 0;
  color: #2D3649;
  max-width: 65%;
}
.otherProducts .product .productTtl .content p{
  margin-top: 0;
}
.otherProducts .product .productTtl .content .price{
  text-align: right;
}
.otherProducts .product .productTtl .content .price span{
  display: block;
  letter-spacing: 0.16px;
  font-weight: 500;
  color: #90A1B5;
  font-size: 13px;
  line-height: 14px;
}
.otherProducts .product .productTtl .content .price span.mainPrice{
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 6px;
}
.pDetails-foot-row .circleBtn.add{
  min-width: unset;
  padding: 8px 16px 8px 40px;
  line-height: 16px;
  font-weight: 500;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTguMTU3MjMgMTQuMDAwMlYyLjAwMDk4TTIuMTU3MjMgOC4wMDA1OUgxNC4xNTcyIiBzdHJva2U9IiMyODlFRkQiIHN0cm9rZS13aWR0aD0iMS4zNzg4MSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=');
  background-repeat: no-repeat;
  background-position: 16px center;
}
.pDetails-foot-row .circleBtn.add:hover,
.pDetails-foot-row .circleBtn.add:focus{
  background-color: var(--primary-color);
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTguMTU3MjMgMTQuMDAwMlYyLjAwMDk4TTIuMTU3MjMgOC4wMDA1OUgxNC4xNTcyIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMS4zNzg4MSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPg==');
  color: #fff;
}
@media only screen and (max-width: 900px) {
  header{
    height: auto;
    padding: 10px;
  }
  header .logo {
    width: 100px;
    position: unset;
    margin: 0 auto 12px;
    display: table;
  }
  .receptionistPopup .modal-body {
    min-width: 100%;
  }
  .modal-container {
    padding: 10px;
  }
  .main {
    padding-bottom: 50px;
  }
  .tTip:hover:before {
    right: -140px;
  }

  .container {
    width: 100%;
    padding: 0 12px;
  }

  .innerContainer {
    width: 100%;
  }
  .card {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .wizard {
    margin: 0 -10px;
    flex-wrap: wrap;
    padding: 58px 0 10px;
    height: inherit;
  }
  .wizard .step {
    padding: 0 20px;
  }
  .wizard .step span {
    width: 24px;
    height: 24px;
    line-height: 22px;
    margin-right: 6px;
  }
  .wizard .step:after {
    top: 14px;
    right: -8px;
    width: 15px;
  }
  .formBlock {
    width: 100%;
    border-bottom: 2px solid #E1E5EE;
    border-right: none;
    padding: 16px;
  }
  .inputBlock label{
    font-size: 13px;
    margin-bottom: 8px;
  }
  .csmNote {
    color: #848a95;
    font-size: 14px;
    font-family: 'montserrat';
    font-style: italic;
  }
  .detailsBlock {
    width: 100%;
    padding: 16px 16px 40px 16px;
  }
  .detailsBlock.step4-mobile {
    padding-bottom: 150px;
  }
  .seqText {
    padding: 15px 10% 0px;
    line-height: 20px;
    font-size: 12px;
  }
  .wizard {
    padding: 0;
  }
  .wizard .step {
    font-size: 13px;
  }
  .wizard .step.complete:before {
    left: 25px;
    height: 8px;
    width: 3px;
    top: 6px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
  }

  .modal-body {
    width: 100%;
  }

  .product .price {
    min-width: 80px;
  }

  .product b {
    min-width: 100px;
  }

  .product b,
  .product .price {
    font-size: 12px;
  }

  .product>.flex {
    flex-wrap: wrap;
  }

  .circleBtn:not(.removeProduct) {
    margin: 10px 0 0;
    width: 150px;
  }

  .closeIcon {
    right: -10px;
    top: -10px;
    width: 30px;
    height: 30px;
  }
  .productsPopup .heading .closeIcon svg,
  .closeIcon svg{
    width: 15px;
    height: 15px;
  }

  .animate-particle {
    display: none;
  }
  .modal-body {
    border-radius: 0px;
    margin-top: 0px;
  }

  #cartBlock1,
  #cartBlock2,
  #cartBlock3 {
    width: 100%;
  }

  .hours span {
    font-size: 12px;
    line-height: 24px;
  }

  .hours .sugest {
    font-size: 12px;
  }

  .payment .help {
    bottom: 10px;
    position: inherit;
    margin: 30px 0 0;
  }

  .errorPopup {
    max-width: 100%;
    left: 0;
    margin: 0;
  }

  .head {
    padding: 32px 0 0;
  }
  .head h2{
    font-size: 20px;
  }
  .head p{
    font-size: 14px;
  }
  #cartBlock4 {
    width: 100%;
  }
  .inputBlock.promoBlk {
    margin-bottom: 1rem;
  }
  .productsPopup .modal-body,
  .receptionistPopup .modal-body{
    width: 94%;
    margin-top: 20px;
    border-radius: 12px;
  }
  .receptionistPopup .modal-body{
    min-width: unset;
  }
  .receptionistPopup .modal-dialog-centered{
    align-items: flex-start;
  }
  .receptionistPopup .heading{
    padding: 16px;
  }
  .receptionistPopup .heading .header-title{
    font-size: 14px;
    line-height: 18px;
  }
  #loading-image{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-top: 0 !important;
    width: 60px;
  }
}
@media only screen and (max-width: 576px) {
  .main{
    padding-bottom: 52px;
  }
  .head p{
    margin-bottom: 24px;
  }
  .inputBlock input, .inputBlock textarea, .inputBlock select{
    border-radius: 6px;
  }
  .paymentBlock{
    border-radius: 6px;
  }
  .formBlock .w-50{
    width: 100%;
  }
  .inputBlock.flex{
    flex-direction: column;
  }
  .formBlock .w-50:first-child .inputBlock{
    margin-bottom: 20px;
  }
  .selected-product-foot-wrap{
    flex-direction: column;
  }
  .selected-product-foot-wrap .addBtn{
    min-width: 100%;
    margin-bottom: 16px;
  }
  .btnsSec{
    padding: 24px 0;
    flex-direction: column;
  }
  .btnsSec button.btn{
    min-width: 100%;
    margin-right: 0;
  }
  .btnsSec button.btn:first-child{
    margin-bottom: 16px;
  }
  .productsPopup .heading{
    padding: 16px;
  }
  .productsPopup .heading h3{
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 18px;
  }
  .productsPopup .heading p{
    font-size: 13px;
  }
  .closeIcon{
    top: -8px;
    right: -8px;
  }
  .selected-products-wrapper{
    padding: 16px 0;
  }
  .selectProducts h4,
  .otherProducts h4{
    font-size: 13px;
    margin-bottom: 16px;
    padding-left: 16px;
  }
  .selected-products-wrapper .pad-footer{
    padding: 16px 16px 0 16px;
  }
  .selected-products-wrapper .pad-footer .total-amt{
    font-size: 16px;
    line-height: 20px;
  }
  .selected-products-wrapper .pad-footer .btn{
    padding: 8px 0;
    height: auto;
    min-width: 90px;
    font-size: 13px;
  }
  .otherProducts{
    padding: 20px 16px;
    border-radius: 0 0 12px 12px;
  }
  .hrsBlk{
    margin-bottom: 16px;
    border-radius: 8px;
    padding: 12px;
    flex-direction: column;
  }
  .hrsBlk > p{
    margin-bottom: 8px;
    font-size: 14px;
  }
  .hrsBlk .hours{
    flex-wrap: wrap;
    justify-content: center;
  }
  .hrsBlk .hours .sugest{
    font-size: 11px;
    width: 100%;
    text-align: center;
    margin-bottom: 12px;
  }
  .otherProducts h4{
    padding-left: 0;
  }
  .selectProducts .selectproductList{
    padding: 0 16px;
  }
  .productsPopup .product .productTtl{
    flex-direction: column;
    align-items: flex-start;
  }
  .product{
    border-radius: 8px;
    padding: 12px;
  }
  .product img{
    width: 36px;
  }
  .productsPopup .product .content{
    margin-top: 8px;
  }
  .selectproductList .product{
    position: relative;
  }
  .selectproductList .product .removeProduct{
    position: absolute;
    top: 8px;
    right: 8px;
  }
  .selectproductList .productTtl .content b.modalcardName{
    width: 100%;
    font-size: 13px;
    margin-right: 0;
    margin-bottom: 8px;
  }
  .product p{
    margin: 0;
    font-size: 13px;
  }
  .qty{
    border-radius: 6px;
    height: 30px;
  }
  .qty button{
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
  .qty input{
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
  .pDetails .actionBtn{
    width: 20px;
    height: 20px;
    line-height: 20px;
  }
  .pDetails .actionBtn .arrow{
    width: 12px;
  }
  .productsPopup .selectproductList .product{
    margin-bottom: 16px;
  }
  .otherProducts .product{
    padding: 12px;
    border-radius: 8px;
  }
  .otherProducts .product .productTtl .content .price{
    margin-top: 0;
  }
  .otherProducts .product .productTtl .content .price span.mainPrice{
    font-size: 15px;
    margin-bottom: 4px;
  }
  .otherProducts .product .pDetails{
    padding-top: 12px;
    margin-top: 12px;
  }
  .pDetails-foot-row .circleBtn.add{
    margin-top: 0;
    padding: 6px 12px 8px 24px;
    background-position: 8px center;
    background-size: 12px;
    font-size: 13px;
    width: auto;
  }
  .product .price{
    min-width: 110px;
  }
  .otherProducts .product .productTtl .content p{
    margin-top: 8px;
  }
  .pDetails ul{
    padding-top: 16px;
    margin: 0;
  }
  .pDetails ul li{
    width: 100%;
    padding: 0 0 0 20px;
    margin-bottom: 8px;
    font-size: 13px;
  }
  .pDetails ul li:last-child{
    margin-bottom: 0;
  }
  .pDetails ul li:before{
    left: 0;
    top: calc(50% - 8px);
  }
  .product .pDetails .tipImg{
    width: 13px;
  }
  .receptionistPopup .modal-body .modal-innerContainer{
    padding: 16px;
  }
  .receptionistPopup .modal-body .form-list{
    flex-direction: column;
    align-items: flex-start;
  }
  .receptionistPopup .form-list .form-check{
    width: 100%;
    margin-right: 0;
    margin-bottom: 12px;
  }
  .receptionistPopup .form-list .form-check:last-child{
    margin-bottom: 0;
  }
  .form-list .form-check .form-check-label{
    font-size: 13px;
  }
  .receptionistPopup .form-list .form-check .tipImg{
    width: 13px;
  }
  .receptionistPopup .modal-footer{
    padding: 16px;
    display: flex;
  }
  .receptionistPopup .modal-footer .btn{
    flex: 1;
    min-width: unset;
  }
  .selectproductList-box .product{
    flex-direction: column;
    align-items: flex-start;
  }
  .selectproductList-box .product .content{
    margin-top: 12px;
  }
  .selectproductList-box .product .left-info p{
    margin-top: 8px;
  }
  .selectproductList-box .product .price{
    margin-top: 4px;
  }
  .selectproductList-box .product .removeProduct{
    right: 0;
    top: 0;
  }
  .selectproductList-box .product .left-info .qty{
    min-width: 90px;
  }
  .iti-mobile .iti--container{
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 16px;
    width: calc(100% - 32px);
  }
  .iti-mobile .iti__country-list{
    border-radius: 8px;
  }
  .finalPrice{
    border-radius: 0px 0px 12px 12px;
    padding: 16px;
  }
  .finalPrice div{
    margin-bottom: 8px;
  }
  .finalPrice div:last-child{
    margin-bottom: 0;
  }
  .finalPrice span{
    font-size: 13px;
  }
  .finalPrice .curncy{
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 11px;
    margin-right: 5px;
  }
  .finalPrice .total{
    font-size: 14px;
  }
  .paymentPage .detailsBlock{
    padding-bottom: 100px;
  }
  .promo .btn-primary{
    height: auto;
    padding: 8px 20px;
    top: 6px;
    right: 6px;
  }
  .promo #error_promo_code{
    font-size: 13px;
    margin-top: 3px;
  }
  .bankCard input{
    padding-right: 80px;
    border-radius: 6px 6px 0 0;
  }
  .bankcards{
    top: 12px;
  }
  .bankcards img{
    width: 16px;
  }
  .wizard .step.complete:before{
    left: 30px;
  }
}