/**
 * Laser Hair Removal Calculator - Custom Styles
 * Bootstrap 5 Compatible
 */

/* Main Calculator Container */
html {
    overflow-y: hidden;
}

#calc-multistep-form {
     font-family: "Assistant", sans-serif;
    line-height: 1.6;
}

.view-0-container {
    height: 100vh;
}

h3.question-title {
    text-align: center;
    padding: 32px 8px 10px;
    font-size: 32px;
    font-weight: 700;
    color: #B72B33;
    margin: 0;
    line-height: 1.2;
}

/* Card Styling */
#calc-multistep-form .card {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

#calc-multistep-form .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Button Styling */
#calc-multistep-form .btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

#calc-multistep-form .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
}

#calc-multistep-form .btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-1px);
}

#calc-multistep-form .btn-outline-primary {
    border: 2px solid #667eea;
    color: #667eea;
    background: transparent;
}

#calc-multistep-form .btn-outline-primary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-1px);
}



/* Age Group Options */
.age-option {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.age-text {
    height: 40px;
    text-align: center;
    margin: 20px;
    font-size: 20px;
    line-height: 22px;
}

/* Hair Color Options */
.hair-option {
    height: 120px;
    padding: 15px;
}

.hair-option img {
    border: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.hair-option:hover img {
    border-color: #667eea;
}

/* Body Parts Section */
.form-check {
    padding: 15px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    border: 1px solid #e9ecef;
}

.form-check:hover {
    background-color: #f8f9fa;
}

.form-check-input:checked + .form-check-label {
    color: #667eea;
}

/* Contact Form */
#contact-form .form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 12px 16px;
    transition: border-color 0.3s ease;
}

#contact-form .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Results Section */
.display-4 {
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Branch Cards */
#calc-multistep-form .card .card-body h6 {
    color: #667eea;
    font-weight: 600;
}

/* Debug Panel Styling */
.card.border-warning {
    border-width: 2px !important;
}

.card-header.bg-warning {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%) !important;
    border-radius: 10px 10px 0 0 !important;
}

#debug-config,
#debug-choices {
    background-color: #2d3748;
    color: #e2e8f0;
    border: 1px solid #4a5568;
    border-radius: 6px;
    resize: vertical;
   
}

#debug-config:focus,
#debug-choices:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

/* Loading Spinner */
#calc-loading .spinner-border {
    width: 3rem;
    height: 3rem;
}
.hidden{
    display: none;
}

/* Step Progress */
.step-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}
.step.active .step-number {
    background: #667eea;
    color: white;
}

.step-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 5px;
}
#resend-sms-btn:hover{
    background-color: transparent !important;
}
span.other-part-alert {
    color: #B72B33;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 10px;
    padding: 0 20px;
    line-height: 1.2;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    div#calc-multistep-form {
    padding: 0;
}

    #calc-multistep-form .card-body {
        padding: 2rem 1.5rem;
    }
    
    .age-option,
    .hair-option {
        height: 60px;
        font-size: 0.9rem;
    }
    
    .hair-option {
        height: 100px;
        padding: 10px;
    }

    .display-4 {
        font-size: 2.5rem;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}



/* Error Styling */
.alert-danger {
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
}

/* Success Styling */
.btn-success {
    background: linear-gradient(135deg, #51cf66 0%, #40c057 100%);
    border: none;
    color: white;
}

.btn-success:hover {
    background: linear-gradient(135deg, #45b359 0%, #37a84d 100%);
    transform: translateY(-1px);
}

/* Admin Debug Panel (for WordPress admin) */
.calc-debug-panel {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.calc-debug-panel h2,
.calc-debug-panel h3 {
    color: #495057;
    margin-bottom: 15px;
}

.calc-debug-panel textarea {
    background: #2d3748;
    color: #e2e8f0;
    border: 1px solid #4a5568;
    border-radius: 6px;
      font-family: "Assistant", sans-serif;
    font-size: 12px;
    line-height: 1.4;
}

.calc-debug-panel .button-primary {
    background: #667eea;
    border-color: #667eea;
}

.calc-debug-panel .button-primary:hover {
    background: #5a6fd8;
    border-color: #5a6fd8;
}

/*general css*/
button:focus:not(:focus-visible), .elementor-kit-8 button:focus{
    border-radius: 8px;
}
.steps{
    display: none;
}


body {
    background-image: url("https://www.americanlaser.co.il/wp-content/uploads/2025/08/73a8a48e9f75d58808b19eb47b669f61af6336d2.png") !important;
    background-position: top center;
    background-size: cover;
    height:100vh;
    background-repeat: no-repeat;


}
/*.steps, .view-0-container{
    background-image: url("https://www.americanlaser.co.il/wp-content/uploads/2025/08/73a8a48e9f75d58808b19eb47b669f61af6336d2-1.png");
    background-position: top center;
    background-size: cover;
    height:100vh;
    position: relative;
  }*/

.step-content{
    display: none;
}
.red-bg-container{
    background-color: rgba(183,43,51,0.85);
    width: 370px;
    height: 550px !important;
    margin: 0 auto;
    border-radius: 0 0 30px 30px;
}

.step-progress {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    top: 34%;
}

.step-box {
      width: 35px;
    height: 35px;
    padding: 2px;
    border-radius: 5px;
    border: 1px solid #C4ABAB;
    background-color: #B72B33;
    color: #6D2324;
     font-family: "Assistant", sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 57.99999999999999% !important;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;

}

.step-box.current {
    background-color: #ffffff;
    color: #B72B33;
    border: 2px solid #ffffff;
}

.step-box:not(:nth-last-child(-n+2))::after{
    content: "";
    position: absolute;
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
    width: 12px;
    height: 4px;
    background-image: url(https://www.americanlaser.co.il/wp-content/uploads/2025/08/Line-16.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}


.step-box {
    position: relative;
}

/*0st view*/
.view-0-container .red-bg-container{
    height: 70%;
}
.logo, .buttons{
    text-align: center;
}

.logo img{
       margin: 66px 0 30px 0;
}

h3.context-h3{
     font-family: "Assistant", sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 28px;
    leading-trim: NONE;
    line-height: 57.99999999999999% !importamt;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #ffffff;
padding: 0 1px;
}

.buttons button{
    width: 267px;
    height: 31.681720733642578px;
      font-family: "Assistant", sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 14%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
color:#B72B33;
    background-color: #ffffff;
    border-radius: 4px;
    margin-top: 4px;
}
.buttons button:hover{
    color:#B72B33 !important;
    background-color: #ffffff !important;
    border-radius: 4px !important;
}

img.noa_kirel.noa_kirel-mobile {
    /*!*height: 50%;*!*/
    /*width: auto;*/
    /*bottom:0;*/
    top: 25vh;
    z-index: 9;
    position: absolute;
  pointer-events: none;
}

img.noa_kirel.noa_kirel-desktop {
    display: none;
}

.navigation-buttons button:hover {
    background-color: transparent;
    border-radius: 8px;
}

.row>* {
padding: 0;
}
article#post-2325 {
    padding: 0;
}

/*1 view*/
.steps .red-bg-container{
    height: 150px !important;
    position: relative;
}
.steps .red-bg-container .logo-bg-red{
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    top: 24%;
}
.gender-step {
    text-align: center;
    direction: rtl;
      font-family: "Assistant", sans-serif;
}

.question-title {
    font-size: 28px;
    color: #a40000;
    margin-top: 32px;
}

.gender-options {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 30px;
}

.gender-option p {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #a40000;
    margin-top: 0 ;
}

.gender-option.selected,.age-option.selected,
.hair-option.selected {
    border: 3px solid #a40000;
}

.body-part-option.selected{
background-color: #B72B33;
    color: #ffffff;
}

.navigation-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
padding-bottom: 30px;
}

.navigation-buttons button {
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.navigation-buttons button:hover {
    background-color: transparent;
}

.gender-options {
    display: flex;
    justify-content: center;
    gap: 0px;
    direction: rtl;
}

.gender-option {
    border: 1px solid #B72B33;
    padding: 20px 20px;
    text-align: center;
    width: 140px;
    cursor: pointer;
    transition: border 0.3s, box-shadow 0.3s;
    font-weight: bold;
    color: #B72B33;
}

.gender-option.male {
    background-image: url(https://www.americanlaser.co.il/wp-content/uploads/2025/08/Rectangle-6-1.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    margin-right: -1%;
    height: 144px;
}
.gender-option.female {
    background-image: url(https://www.americanlaser.co.il/wp-content/uploads/2025/08/Rectangle-7.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    margin-left: -1%;
    height: 144px;
}

.gender-option.female img {
    width: unset;
    height: 75px;
    margin-left: -20px;
}
.gender-option.female p {
    margin-left: -20px;
}
.gender-option.male img {
    width: unset;
    height: 75px;
    margin-right: -20px;
}
.gender-option.male p {
    margin-right: -20px;
}
.gender-text{
    text-align: center;
    margin: 20px;
    font-size: 20px;
}



.gender-option.female.selected {
    background-image: url(https://www.americanlaser.co.il/wp-content/uploads/2025/08/Rectangle-7-1.png);
}
.gender-option.male.selected {
    background-image: url(https://www.americanlaser.co.il/wp-content/uploads/2025/08/Rectangle-6-2.png);
}

.gender-text {
    line-height: 22px;
}

.age-options {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 30px 0;
}
.age-option p{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 !important;
}
.age-option{
        width: 157px;
        height: 35px;
        border-radius: 7px;
        border: 1px solid #B72B33;
        color: #B72B33;
        background-color: #ffffff;
      font-family: "Assistant", sans-serif;
        font-weight: 700;
        font-style: Bold;
        font-size: 24px;
        leading-trim: NONE;
        line-height: 57.99999999999999% !important;
        letter-spacing: 0%;
    }

.body-part-options{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 5px 0;
}
.body-part-option{
    width: 269px;
    height: 23.141366958618164px;
    border-radius: 5px;
    background-color: #ffffff;
    color: #000000;
    margin-bottom: 4px;
    padding-right: 10px;
    font-size: 16px;
    line-height: 20px;

}
/*.col-12 {*/
/*    padding-bottom: 30px;*/
/*}*/

/*button.prev-btn {
    clip-path: polygon(21% 0, 100% 0, 100% 100%, 0% 100%);
    border: 0px solid #fff !important;
    margin-left: -10%;
}*/

 /* .next-btn {
      clip-path: polygon(0 0,100% 0,77% 100%,0% 100%);
}*/

button.prev-btn.a {
    background: transparent;
    font-size: 18px;
    font-weight: 400;
    text-decoration: underline;
    text-align: center;
    width: 100%;
}

button.prev-btn {
    width: 155px;
text-align: left;
    background-image: url(https://www.americanlaser.co.il/wp-content/uploads/2025/08/Rectangle-2-9.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
height: 32px;
    padding: 0;
}

button.next-btn {
    width: 155px;
    background-image: url(https://www.americanlaser.co.il/wp-content/uploads/2025/08/Rectangle-1-1.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: -1.2%;
height: 32px;
  padding: 0;
}

.elementor-kit-8 button, .elementor-kit-8 button:focus {
    background-color: transparent;
border-radius: 8px;
}

/*button.next-btn {
position: relative;
padding-left: 40px;
direction: rtl;
width: 150px;
    z-index: 20;
}

button.prev-btn {
position: relative;
Padding-right: 37px;
direction: rtl;
width: 150px;
    z-index: 20;
}*/

img.next {
position: relative;
    left: -25px;
    top: 7px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
}

.navigation-buttons button:hover {
    background-color: transparent;
}

img.prev {
position: relative;
    right: -133px;
    top: 7px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
}


p {

    text-align: center;
}


/*view 4*/

.hair-color-option {
    position: relative;
    height: 95px;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    display: flex;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.check-icon {
    position: absolute;
    bottom: 8px;
    left: 8px;
    color: white;
    font-size: 20px;
}


.hair-color-option.disabled {
    cursor: default;
    pointer-events: none;
}
.hair-color-option[data-color="שחור"]{
    background-size: contain;
    background-position: left;
    right: 17px;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
}

.hair-color-option[data-color="חום בהיר"]{
    background-size: contain;
    background-position: left;
    right: 17px;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
}


.hair-color-option[data-color='ג\'ינג\'י'] {
    background-size: contain;
    background-position: right;
    left: 17px;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
}

.hair-color-option[data-color="חום"] {
    background-size: contain;
    background-position: right;
    left: 17px;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
}

.hair-color-option[data-color="לבן"] {
    background-size: contain;
    background-position: left;
    right: 17px;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
}
.hair-color-option[data-color="בלונדיני"] {
    background-size: contain;
    background-position: right;
    left: 17px;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
}

.hair-color-option[data-color="שחור"] .check-icon, .hair-color-option[data-color="חום בהיר"] .check-icon, .hair-color-option[data-color="לבן"] .check-icon {
    position: absolute;
    bottom: 4px;
    right: 60px;
    color: white;
margin-right: 0;
    font-size: 14px;
}

.hair-color-option[data-color="שחור"] span, .hair-color-option[data-color="חום בהיר"] span, .hair-color-option[data-color="לבן"] span {
    margin-right: 40px;
}
.hair-color-option[data-color="בלונדיני"] span, .hair-color-option[data-color="חום"] span {
    margin-left: 40px;
}
.hair-color-option[data-color="בלונדיני"] .check-icon, .hair-color-option[data-color="חום"] .check-icon, .hair-color-option[data-color="ג\'ינג\'י"] .check-icon {
    position: absolute;
    bottom: 4px;
    left: 60px;
    color: white;
margin-left: 0;
    font-size: 14px;
}
.row.hair-color-options .col-6{
    margin-top: 0;
}
.hair-color-option[data-color="ריק"] span{
    display: none;
}
.hair-color-options  {
/*    margin-top: 0;*/
/*margin-bottom: 10px;*/
    width: 100%;
    max-width: 100%;
    margin: 0 auto 10px;
}
.branch-select-wrapper, .contact-form {
    margin: 30px 30px;
}

input[type="text"]::placeholder, input[type="tel"]::placeholder {
    color: #000;
    font-size: 20px;
text-align: right;
}

input[type="text"], input[type="tel"] {
    height: 48px;
    text-align: right;
}
input[type="text"] {
    margin-bottom: 7px;
}

.form-select:focus {
    border-color: unset;
    outline: 0;
    box-shadow: none;
}
span.terms-error {
    font-size: 18px;
    display: none !important;
}
.step-content.step-6 .message-div {
    text-align: right;
}

/*view results*/
.step-content.step-8 {
    padding: 20px;
    background-color: #ffffff;
    max-width: 85%;
    margin: 12px auto 0 auto;
}

.step-content.step-8 h4 {
    font-size: 32px;
    line-height: 32px;
	text-align: center;
	font-weight: 700;
    padding-top: 0;
    margin-top: 0;
}


.step-content.step-8 h5.fw-bold.mb-3 {
    font-size: 24px;
}

th, td {
text-align: right;
    font-size: 14px;
}

.branch-select-wrapper {
  position: relative;

}

.branch-select-wrapper::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-image: url('https://www.americanlaser.co.il/wp-content/uploads/2025/08/Layer_1-3.png');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 2;
}

.branch-select-wrapper .form-select {
  padding-left: 40px; /* creates space for the image */
  direction: rtl;
}
.form-select {
    background-size: 0;
}

.body-parts-boys, .body-parts-girls, .body-parts-women, .body-parts-men {
    position: relative;
}
.body-parts-boys::before, .body-parts-men::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -146px;
    width: 307px;
    height: 500px;
    background-image: url(https://www.americanlaser.co.il/wp-content/uploads/2025/08/32748fae8f8f0eeab41433fe5ea9af116cf45863-1.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left top;
    z-index: 10;
    pointer-events: none;
}

.body-parts-girls::before, .body-parts-women::before {
    content: "";
    position: absolute;
       top: -10px;
    left: -70px;
    width: 100%;
    height: 447px;
    background-image: url(https://www.americanlaser.co.il/wp-content/uploads/2025/08/frame1-1.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left top;
    z-index: 10;
    pointer-events: none;
}

.limit-part-alert {
    height: 40px;
    color: #B72B33;
    font-size: 20px;
    font-weight: 700;
}

.message-div {
    min-height: 40px;
    text-align: center;
    padding: 0 30px;
}

.gender.col-6		{   

		    display: flex;
		     margin-left: -82px;
    margin-right: -12px;
}
.form-terms {
    padding: 0 30px;
    max-width: 100%;
    margin: 0 auto;
    width: 550px;
}



.bottom-red-bg {
    background-color: rgba(183, 43, 51, 0.85);
    width: 370px;
    max-width: 85%;
    height: 200px !important;
    margin: 0 auto;
    border-radius: 30px 30px 0 0;
		    font-size: 13px;
    line-height: 18px;
		    font-weight: bold;
		    color: #fff;
    position: unset;
    bottom: 0;
    right: 7%;
    left: 7%;
        padding: 20px 50px;
        width: 100%;
display: none;
}


/*.bottom-red-bg {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
padding: 20px 0;
text-align: center;
z-index: 10;
}*/

.bottom-red-bg .bottom-inner {
max-width: 100%;
margin: 0 auto;
box-sizing: border-box;
}

button.prev-welcome-btn, button.next-to-steps-btn {
    background-color: #fff;
}
button.prev-btn {
    margin-left: -20px;
    margin-top: -1px;
}


html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

#calc-multistep-form {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.row.justify-content-center {
    flex: 1;
    display: flex;
}



/*desktop*/

@media screen and (min-width: 700px)  {

.bottom-inner {
    justify-content: center;
    display: flex;
}

img.noa_kirel.noa_kirel-desktop {
    display: block;
}
img.noa_kirel.noa_kirel-mobile {
    display: none;
}



.bottom-red-bg {
    background-color: rgba(183, 43, 51, 0.85);
    width: 879px;
    max-width: 85%;
    height: 150px !important;
    margin: 0 auto;
    border-radius: 30px 30px 0 0;
    font-size: 13px;
    line-height: 18px;
    font-weight: bold;
    color: #fff;
    padding-top: 20px;
    position: unset;
    bottom: 0;
    right: 7%;
    left: 7%;
}


.red-bg-container {
    width: 879px;
    max-width: 85%;
}

/*.steps, .view-0-container {
    background-image: url(https://www.americanlaser.co.il/wp-content/uploads/2025/08/DESKTOP-1.png);
    background-position: top center;
    background-size: cover;
    height: 100vh; 
    position: relative;
    width: 100%;

}*/



body {
  background-image: url(https://www.americanlaser.co.il/wp-content/uploads/2025/08/DESKTOP-1-1.png) !important;
    background-position: top center;
    background-size: cover;
    width: 100%;
    
}
.view-0-container {
    height: 100vh;
}
    .steps .red-bg-container {
        width: 879px;
        max-width: 85%;
    }

    button.prev-btn {
        margin-left: -8px;
    }

button.next-to-steps-btn, button.prev-welcome-btn{ 
width:300px;
}
  
    .age-option {
        cursor: pointer;
    }
    
    .body-part-option {
        cursor: pointer;
        width: 350px;
    }
 

.step-content {
    padding-top: 35px;
    width: 550px;
    margin: 0 auto;
}

.hair-color-option[data-color="שחור"] span, .hair-color-option[data-color="ג'ינג'י"] span, .hair-color-option[data-color="לבן"] span {
margin-right: 0;
}
.hair-color-option[data-color="בלונדיני"] span, .hair-color-option[data-color="חום"] span {
    margin-left: 0;
}


.hair-color-options {
    width: 350px;
    margin: 0 auto;
}

p.hair-color-message {
    height: 50px;
}

    .view-0-container .red-bg-container {
        height: 80% !important;
    }

img.noa_kirel.noa_kirel-desktop {
    position: absolute;
    bottom: 0;
    /*top: 23%;*/
    right: -50px;
   /* left: 61%;*/
    pointer-events: none;
height: auto;
width: 41vw;
}

button.prev-welcome-btn {
    display: block;
    margin: 0 auto;
}



button.prev-welcome-btn, button.next-to-steps-btn {
    display: block;
    margin: 0 auto;
        margin-bottom: 10px;
}

    .step-content.step-8 {
        margin: 50px auto 0 auto;
    }

.hair-color-option[data-color="שחור"] .check-icon, .hair-color-option[data-color="לבן"] .check-icon {
 
    right: 40px;
}


.hair-color-option[data-color="בלונדיני"] .check-icon, .hair-color-option[data-color="חום"] .check-icon, .hair-color-option[data-color="ג\'ינג\'י"] .check-icon {

    left: 40px;

}

.gender-option.male {
margin-right: 22%;

}


}


/*sms*/
.sms-code-container {
    text-align: center;
    direction: rtl;
      font-family: "Assistant", sans-serif;
}

.code-inputs {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 10px;
        margin: 60px 30px 150px 30px;
}

.code-input {
    width: 50px;
    height: 50px;
    font-size: 28px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 8px;
}

/*@media (min-width: 400px) and (max-width: 490px) {*/
/*    .gender-option.male{*/
/*        margin-right: 5%;*/
/*    }*/

/*}*/

th, td {
    text-align: right;
    font-size: 20px;
}

input[type="text"], input[type="number"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type=reset], input[type=tel], input[type=date], select, textarea{
    font-size: 20px;
    line-height: 1.2;

}
label, legend {
    margin: 15px 0;
    font-size: 18px;
}
@media (max-width: 480px) {
    .bottom-red-bg{
            padding: 20px 10px;
    }
    th, td {
    text-align: right;
    font-size: 16px;
}
.view-0-container {
    height: 100vh;
    min-height: 714px;
    position: relative;
}
.row {
    margin-right: 0;
    margin-left: 0;
}
html,body {
    overflow-x: hidden;
}
.view-0-container .logo img{
    margin: 10px 0 10px 0;
}
}
@media (min-width: 490px) and (max-width: 560px) {
    .gender-option.male{
        margin-right: 20%;
    }
}
@media (min-width: 560px) and (max-width: 600px) {
    .gender-option.male{
        margin-right: 30%;
    }
}
@media (min-width: 600px) and (max-width: 660px) {
    .gender-option.male{
        margin-right: 35%;
    }
}
@media (min-width: 660px) and (max-width: 700px) {
    .gender-option.male{
        margin-right: 40%;
    }
}

