.cart-step .first-step {
    width: 102px;
    height: 42px;
    position: relative;
}

.cart-step svg {
    position: absolute;
    top: 0;
    left: 0;
    fill: #E9ECEF;
}

.cart-step .title-step {
    position: absolute;
}

.cart-step .second-step {
    width: 97px;
    height: 42px;
    margin-left: -8px;
    position: relative;
}

.cart-step .thirt-step {
    width: 97px;
    height: 42px;
    margin-left: -7px;
    position: relative;
}

.cart-step .fourth-step {
    width: 82px;
    height: 42px;
    margin-left: -6px;
    position: relative;
}

.cart-step>* {
    color: #495057;
    font-size: 12px;
    font-weight: 500;
}

.cart-step .active {
    color: var(--color-main_color_hex, #FF8A8A) !important;
    font-weight: 700;
}

.cart-step .active svg {
    fill: var(--color-main_color_hex, #FF8A8A) !important;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #EEEEEE;
}

.cart .item-label-number {
    margin-top: 2px;
    height: 20px;
    background-color: #2F3F4E;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    color: #ffffff;
}

.border-crimson {
    border: 2px solid #EB4D4B;
}


.border-grey {
    border: 1px rgba(0, 0, 0, 0.17) solid;
    border-radius: 4px;
}

.cart-header {
    background: rgba(0, 0, 0, 0.03);
    border-bottom: 1px rgba(0, 0, 0, 0.17) solid;
}

.cart-body > *:not(:last-child) {
    border-bottom: 1px rgba(0, 0, 0, 0.17) solid;
}

.w-100px {
    width: 100px;
}

.cart-input {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border: 1px solid #CED4DA;
    border-right: none;
}

.cart-button {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    background: #E9ECEF;
    border: 1px solid #CED4DA;
}

.box-select-options {
    align-self: stretch;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    display: flex;
}

.box-select-options .option {
    align-self: stretch;
    background: white;
    border-radius: 10px;
    border: 3px #CCCCCC solid;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
    display: inline-flex;
}

.box-select-options .option:has(input:checked) {
    border: 3px var(--color-main_color_hex, #FF8A8A) solid;
}

.box-select-options .option .option-container {
    width: 100%;
    padding: 20px;
    display: flex;
    gap: 8px;
    align-items: center;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.box-select-options .option .option-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.box-select-options .option .checkmark {
    position: relative;
    height: 16px;
    width: 16px;
    border-radius: 100px;
    border: 1px #CCCCCC solid;
    display: block;
}

.box-select-options .option .option-container:hover input~.checkmark {
    background-color: #ccc;
}

.box-select-options .option .option-container input:checked~.checkmark {
    background-color: var(--color-main_color_hex, #FF8A8A);
}

.box-select-options .option .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.box-select-options .option .option-container input:checked~.checkmark:after {
    display: block;
}

.box-select-options .option .option-container .checkmark:after {
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.option-time {
    width: calc(50% - 4px);
}

.line-height-28 {
    line-height: 28px;
}

.radius-5 {
    border-radius: 5px
}
.radius-20 {
    border-radius: 20px
}
.radius-4 {
    border-radius: 4px
}

.description-step-first {
    background: #FFF3CD;
    border-radius: 4px;
}

.description-step-first p {
    color: #664D03;
    font-size: 16px;
}

.massage-step-first {
    color: #842029;
    background: #F8D7DA;
    border-radius: 4px;
}

.cart .input-number input {
    height: 31px;
    width: 50px;
    text-align: center;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: inline-block;
    vertical-align: middle;
}

.cart .minus,
.cart .plus {
    width: 27px;
    height: 31px;
    background: #f2f2f2;
    border-radius: 4px;
    border: 1px solid #ddd;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
}

.cart .item-label {
    color: #212529;
    font-size: 16px;
    font-weight: 700;
}

.cart .item-price {
    height: 28px;
    color: #212529;
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
}

.cart .badge-1 {
    background: #EB4D4B;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin-right: 6px;
    padding: 0px 6px;
}

.cart .badge-2 {
    color: #EB4D4B;
    font-size: 11px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid #EB4D4B;
    border-radius: 4px;
    margin-right: 6px;
    padding: 0px 4px;
}

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    display: flex;
    align-content: center;
    justify-content: center;
    font-size: 2rem;
    padding: 0.1rem;
    border: 1px solid var(--color-main_color_hex, #FF8A8A);
    border-radius: 4px;
    width: 16px;
    height: 16px;
}

input[type="checkbox"]:checked::before {
    content: "";
    width: 6px;
    height: 9px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}

input[type="checkbox"]:checked {
    content: "";
    background-color: var(--color-main_color_hex, #FF8A8A);
}

input[type="checkbox"]:hover {
    color: black;
}

.input-search-code {
    flex-grow: 1 !important;
}

.button-search-code {
    min-width: max-content;
    height: 36px !important;
    padding: 0 12px;
    width: auto !important;
}


.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs, 4px);
}

.form-group .label-group {
    display: flex;
    /* justify-content: space-between; */
    align-items: flex-start;
    align-self: stretch;
}

.label-group .label-title {
    color: #000000;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.label-group .label__required {
    display: flex;
    padding: 2px 5px;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    border: 1px solid var(--theme-Alert, #EB4D4B);
}

.label__required span {
    color: var(--theme-Alert, var(--color-theme-alert, #EB4D4B));
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 19.5px */
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-group .error {
    border: 1px solid var(--color-primary, #FF8A8A);
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.form-alert-error {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-items: center;
}

.form-alert-error img {
    width: 24px;
    height: 24px;
}

.form-alert-error .error-message {
    color: var(--theme-Alert, var(--color-theme-alert, #EB4D4B));
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
}

.error-message a {
    color: var(--theme-Alert, var(--color-theme-alert, #EB4D4B));
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.help-text span {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
}
