#truebooker-wizard-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.85);
    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;
}


#wpbody-content.truebooker-wizard-content {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    width: calc(100% - 100px);
}

#truebooker-wizard-overlay .setup_heading{
    display: flex;          
    justify-content: center;
    flex-direction: column;
}

#truebooker-wizard-overlay .setup_heading_logo{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

#truebooker-wizard-overlay .ttm-logo{
    width: 272px;
}

.truebooker-body-class #truebooker-wizard-overlay .steps-purchasecode{
    text-align: left;
}

.setup_heading_basic p{
    font-size: 15px;
}


/* Skip btn */
#truebooker-wizard-overlay #tb-skip{
    padding: 12px 40px;
    /* border-radius: 8px; */
    font-size: 15px;
    font-weight: 500;
    line-height: 26px;
     position: relative; 
     border: none;
     /* padding-right: 30px; */
    background-color: transparent;
    color: var(--tba-cl-dark);
    bottom: 5px;
    text-decoration: none;
     border: none !important;
    box-shadow: none !important;
}

#truebooker-wizard-overlay #tb-skip::after {
    content: '';
    position: absolute;
    background-color: var(--tba-cl-dark);
    width: 21.31px;
    height: 21.34px;
    top: 0;
    bottom: 0;
    right: 8px;
    margin: auto 0;
    -webkit-mask: url(../images/double-arrow.svg) no-repeat center;
    mask: url(../images/double-arrow.svg) no-repeat center;
    -webkit-mask-size: cover;
    mask-size: cover;
}
#truebooker-wizard-overlay #tb-skip:hover {
    color: var(--tba-cl-skin);
}

#truebooker-wizard-overlay #tb-skip:hover::after {
    background-color: var(--tba-cl-skin);
}


#truebooker-wizard-overlay .step-content {
    display: none;
}

#truebooker-wizard-overlay .step-content.active {
    display: block;
}

/* Back btn */
#truebooker-wizard-overlay .back {
    display: none; /* change to inline-block if you want visible */
    padding-right: 0;
    padding-left: 30px;
    color: var(--tba-cl-dark);
    font-size: 15px;
    font-weight: 500 !important;
    background-color: transparent;
    box-shadow: unset;
    margin-right: 15px;
    position: relative;
    bottom: 5px;
}
#truebooker-wizard-overlay .back::before {
    content: '';
    position: absolute;
    background-color: var(--tba-cl-dark);
    width: 20px;
    height: 20px;
    top: 0px;
    bottom: 0;
    left: 0px;
    right: auto;
    margin: auto 0;
    transform: rotate(180deg);
    -webkit-mask: url(../images/arrow.svg) no-repeat center;
    mask: url(../images/arrow.svg) no-repeat center;
    -webkit-mask-size: cover;
    mask-size: cover;
}
#truebooker-wizard-overlay .back:hover {
    background-color: transparent;
    color: var(--tba-cl-skin);
}
#truebooker-wizard-overlay .back:hover::before {
    background-color: var(--tba-cl-skin);
}

/* Steps */
/*#truebooker-wizard-overlay .wizard-steps {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

#truebooker-wizard-overlay .step {
    flex: 1;
    text-align: center;
    font-size: 14px;
    opacity: 0.5;
}

#truebooker-wizard-overlay .step.active {
    font-weight: bold;
    color: #5b4dfc;
    opacity: 1;
}


.wizard-progress {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
}


.progress-line {
    position: absolute;
    top: 12px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ddd;
    z-index: 0;
}*/




.wizard-progress {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: 30px auto;
    max-width: 50%;                 
}

/* Base line */
.progress-line {
    position: absolute;
    top: 12px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #dbe2ef;
}

/* Active progress line */
.progress-fill {
    position: absolute;
    top: 12px;
    left: 0;
    height: 3px;
    background:var(--tba-cl-skin);
    width: 0%;
    transition: 0.3s ease;
}

/* Step */
.step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

/* Circle */
.circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #bfc9d9;
    background: #cfcfcf;
    margin: 0 auto;
    line-height: 18px;
    font-size: 12px;
}

/* Completed step (tick) */
.step.completed .circle {
    background-color: var(--tba-cl-skin);
    border-color: var(--tba-cl-skin);
    color: #fff;
    position: relative;
}

.step.completed .circle::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-mask: url(../images/vector.svg) no-repeat center;
    mask: url(../images/vector.svg) no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background-color: #fff; /* icon color */
}

/* Current step (filled dot) */
.step.current .circle {
     border: 6px solid var(--tba-cl-skin);
}

/* Text */
.step span {
  display: block;
    margin-top: 6px;
    font-size: 16px;
    color: #6C6881;
    font-weight: 500;
    line-height: 28px;
    font-family: var(--tba-font-family);
}

.step.active span {
    color: #0F1D40;
    font-weight: 500;
    font-size: 16px;
    font-family: var(--tba-font-family);
}

.wizard-body{
     max-height: 40vh;
    /* overflow-y: auto; */
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    color: #6C6881;
}
#tba_content1 .custom-scroll {
    /* max-height: 255px;  */
    max-height: 228px;
    overflow-y: auto;
    margin-bottom: 0px;
}
/* Full scrollbar */
#tba_content1 .custom-scroll::-webkit-scrollbar {
    width: 15px;
}

/* Track (white background with gap from top-bottom) */
#tba_content1 .custom-scroll::-webkit-scrollbar-track {
    background: #ffffff;
    border-radius: 15px;
    
    margin-top: 3px;   
    margin-bottom: 3px;
}

/* Thumb (grey inner bar with spacing from sides) */
#tba_content1 .custom-scroll::-webkit-scrollbar-thumb {
    background-color: #E4E4E4;
    border-radius: 10px;

    /* space between content & scrollbar */
    border: 5px solid transparent;
    background-clip: content-box;
}

#truebooker-wizard-overlay #wpbody-content.truebooker-wizard-content{
    width: calc(100% - 30%);
}

#truebooker-wizard-overlay .tbab-welcome-box {
    max-width: 1000px;
    margin: 20px auto;
}

#truebooker-wizard-overlay .tbab-welcome-box .tbab-welcome-inner{
    padding: 40px;
}

#truebooker-wizard-overlay #wpbody-content.truebooker-wizard-content
{
    background: 
        radial-gradient(
            circle at left top,
            rgba(109, 133, 255, 0.25) 0%,
            rgba(109, 133, 255, 0.15) 20%,
            transparent 45%
        ),
        radial-gradient(
            circle at right bottom,
            rgba(255, 120, 170, 0.25) 0%,
            rgba(255, 120, 170, 0.15) 20%,
            transparent 45%
        ),
        #f5f7fb;
         
        width: 1467px;
}

#truebooker-wizard-overlay .wizard-footer{
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    clear: both;
}


#truebooker-wizard-overlay .select-wrapper-clockicon>select{
    padding-left: 40px;
}

#setupbuttonhid{
    opacity: 0;
}







/* 30-3 */
input[type=radio]:checked::before {
    display: none;
}

/* next btn  */
.next.button.button-primary {
    border-radius: var(--tba-radius-8px);
    padding: 8px 28px;
    font-size: 15px;
    line-height: 26px;
    margin: 0;
    transition: all ease 0.5s;
    background-color: var(--tba-cl-skin);
    color: var(--tba-cl-white);
    box-shadow: 0 4px 8px rgba(43, 79, 255, 0.06), 0 8px 16px rgba(255, 255, 255, 0.16);
    text-decoration: none;
    position: relative;
    display: inline-block;
}
#truebooker-wizard-overlay .next.button.button-primary {
    padding-right: 50px;
}
.next.button.button-primary::after {
   content: '';
    position: absolute;
    background-color: var(--tba-cl-dark);
    width: 20px;
    height: 20px;
    line-height: 20px;
    top: 0px;
    bottom: 0;
    left: auto;
    right: 20px;
    margin: auto 0;
    -webkit-mask: url(../images/arrow.svg) no-repeat 100% 100%;
    mask: url(../images/arrow.svg) no-repeat 100% 100%;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-color: var(--tba-cl-white);
}

.next.button.button-primary:hover {
    background-color: var(--tba-cl-black);
}


/* Working hours - All days */
.tba_contents #working_hour_data h4,
.tba_contents #working_hour_data span {
    font-size: 16px !important;
}

/* Do you want to import the demo? */
.demo-text {
    font-size: 14px;
    font-weight: 500;
    color: #0F1D40;
}

/* first page skip btn popup  */
#truebooker-wizard-overlay .verify_block #tb-skip {
    margin-top: 6px;
    right: 40px;

}

/* Working hours settings scroll */
#tba_content6 #working_hour_data {
    /* max-height: 299px; */
    max-height: 288px;
    overflow-y: auto;
    margin-bottom: 0px;
}


/* store setting*/
.tba_contents .tba_content#tab-storesettings {
    margin-top: 30px;
    padding: 30px;
}

/* store setting- yes btn -padding */
#tab-storesettings .store-setting .tba-form-field-radio label:first-of-type {
    padding-right: 65px;
}

/* store-setting- yes no radio btn text color */
#tab-storesettings .store-setting .tba-form-field-radio label {
   color: var(--tba-cl-dark);
    font-size: 14px;
    font-weight: 400;
    font-family: var(--tba-font-family);

}


/*  Demo Import - yes btn -padding*/
#tab-finalstep .tba-form-field-radio label:first-of-type {
    padding-right: 65px;
}

/* Demo Import -yes no radio btn text color  */
#tab-finalstep .tba-form-field-radio label {
    color: var(--tba-cl-dark);
    font-size: 14px;
    font-weight: 400;
    font-family: var(--tba-font-family);
}














#tb-next-step, #truebooker-wizard-overlay #tb-next-step {
    border-radius: var(--tba-radius-8px);
    padding: 8px 28px;
    font-size: 15px;
    line-height: 26px;
    margin: 0;
    transition: all ease 0.5s;
    background-color: var(--tba-cl-skin) !important;
    color: var(--tba-cl-white) !important;
    box-shadow: 0 4px 8px rgba(43, 79, 255, 0.06), 0 8px 16px rgba(255, 255, 255, 0.16);
    text-decoration: none;
    position: relative;
    display: inline-block;
    border: none;
    cursor: pointer;
    margin-right: 13px;
    margin-top: 4px;
}

.tb-video-frame {
      display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 0 !important;
    margin-bottom: 25px !important;
    float: none !important;
}

.tba_contents input[type="radio"]:checked,
.tba_contents input[type="radio"]:focus {
    box-shadow: none !important;
    outline: 0 !important;
}