body {
    background-color: #f4f4f4;
    padding: 2rem 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to right, #f7e8e8, #cfe0fc);
}

.container {
    flex: 1;
    margin-top: 100px; /* Add some margin to the top */
}

.left {
    background-image: url("../../images/left.png");
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    min-height: 600px;
}

.left .title img {
    max-width: 40%;
    height: auto;
}

.left .beauty-trip {
    text-align: center;
}

.left .beauty-trip img {
    max-width: 50%;
    height: auto;
}

.steps {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.circle {
    background-color: #fff;
    border: 3px solid #e0e0e0;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    margin-right: 10px;
}

.circle.active {
    border-color: var(--line-border-fill);
    background-color: var(--line-border-fill);
    color: #fff;
}

.right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.form-container .form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: bold;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px #007bff;
}

.form-actions {
    margin-top: 20px;
}

* {
    box-sizing: border-box;
}

:root {
    --line-border-fill: #323232;
    --line-border-empty: #e0e0e0;
}

body {
    font-family: "Roboto", sans-serif;
    background-color: #f6f7fb;
}

.progress-container {
    display: flex;
    flex-direction: column;
    align-items: start;
    position: relative;
    margin-bottom: 30px;
    max-width: 100%;
    height: auto;
    z-index: 10; /* Ensure it is above the background image */
}

.progress-container::before {
    content: "";
    background-color: var(--line-border-empty);
    position: absolute;
    top: 0;
    left: 15px; /* Align with the circles */
    width: 4px;
    height: calc(100% - 30px); /* Adjust height to end at the last step */
    z-index: -1; /* Ensure it is below the circles */
}

.progress {
    background-color: var(--line-border-fill);
    position: absolute;
    top: 0;
    left: 15px; /* Align with the circles */
    width: 4px;
    height: 0%;
    z-index: 5; /* Ensure it is above the background image */
    transition: 0.4s ease;
}

.btn {
    background-color: var(--line-border-fill);
    color: #fff;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    padding: 8px 30px;
    margin: 5px;
    font-size: 14px;
}

.btn:active {
    transform: scale(0.98);
}

.btn:focus {
    outline: 0;
}

.btn:disabled {
    background-color: var(--line-border-empty);
    cursor: not-allowed;
}

.profile-info {
    background: linear-gradient(to right, #f7e8e8, #cfe0fc);
    width: 250px;
}

.profile-container {
    position: absolute;
    left: 0;
    top: -80px;
    width: 100%;
}

.profile-info img {
    width: 75px;
    height: 75px; 
    display: block;
    margin: auto;
    border-radius: 50%;
}

.min-width-200 {
    min-width: 200px;
}

.transparent-card {
    background-color: transparent !important;
    border: none;
    box-shadow: none;
}

.select-box {
    position: relative;
}

.select-box input {
    width: 100%;
    /* padding: 1rem .6rem; */
    font-size: 1.1rem;
    
    border: .1rem solid transparent;
    outline: none;
}

input[type="tel"] {
    border-radius: 0 .5rem .5rem 0;
}

.select-box input:focus {
    border: .1rem solid;
}

.selected-option {
    background-color: #eee;
    border-radius: .5rem;
    overflow: hidden;

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

.selected-option div{
    position: relative;

    width: 6rem;
    /* padding: 0 2.8rem 0 .5rem; */
    text-align: center;
    cursor: pointer;
}

.selected-option div::after{
    position: absolute;
    content: "";
    right: .8rem;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    
    width: .8rem;
    height: .8rem;
    /* border-right: .12rem solid var(--primary);
    border-bottom: .12rem solid var(--primary); */

    transition: .2s;
}

.selected-option div.active::after{
    transform: translateY(-50%) rotate(225deg);
}

.select-box .options {
    position: absolute;
    top: 4rem;
    
    width: 100%;
    background-color: #fff;
    border-radius: .5rem;

    display: none;
}

.select-box .options.active {
    display: block;
    z-index: 1;
}

.select-box .options::before {
    position: absolute;
    content: "";
    left: 1rem;
    top: -1.2rem;

    width: 0;
    height: 0;
    border: .6rem solid transparent;
    border-bottom-color: var(--primary);
}

input.search-box {
    border-radius: .5rem .5rem 0 0;
    padding: 1.4rem 1rem;
}

.select-box ol {
    list-style: none;
    max-height: 23rem;
    overflow: overlay;
}

.select-box ol::-webkit-scrollbar {
    width: 0.6rem;
}

.select-box ol::-webkit-scrollbar-thumb {
    width: 0.4rem;
    height: 3rem;
    background-color: #ccc;
    border-radius: .4rem;
}

.select-box ol li {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.select-box ol li.hide {
    display: none;
}

.select-box ol li:not(:last-child) {
    border-bottom: .1rem solid #eee;
}

.select-box ol li:hover {
    background-color: lightcyan;
}

@media (max-width:1024px){
    .left{
        min-height: 450px;
    }
    .custom-progress{
        max-height: 50%;
    }
    .min-width-200{
        min-width: 150px;
    }
    body{
        padding:0 !important;
        padding-bottom: 0 !important;
    }
    .container {
        margin-top: 0 !important;
    }
}

/* 

@media (max-width:425px){
    .left{
        min-height: 400px;
    }
    .custom-progress{
        max-height: 60%;
    }
    body{
        padding-bottom : 0.3rem !important;
    }
}

@media (max-width:375px){
    .left{
        min-height: 400px;
    }
    .custom-progress{
        max-height: 60%;
    }
    body{
        padding-bottom : 0.1rem !important;
    }
}

@media (max-width:320px){
    .left{
        min-height: 400px;
    }
    .custom-progress{
        max-height: 60%;
    }
    body{
        padding-bottom : 0.2rem !important;
    }
} */