/* animated arrow */
.fa-arrow-right {
transition: 0.1s ease-in;
}

.btn-primary:hover .fa-arrow-right {
transform: translateX(50%);
}
/* input type number */
.add-image-side{
    transition: all 0.15s;
}
.add-image-side:hover{
    background: #00a4ee21;
}
input[type=number] {
    position: relative;
    padding: 5px;
    padding-right: 25px;
    overflow: hidden !important;
    outline: none !important;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    opacity: 1;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: inner-spin-button !important;
    width: 25px;
    position: absolute;
    top: 0;
    right: 5px;
    filter: brightness(1.1);
    height: 100%;
}



/* =====  STEPS  ===== */

.steps-wrap {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 30px;
    position: relative;
    display: flex;
    border-radius: 30px;
    gap: 0;
}

.steps-wrap .step {
    text-align: start;
    position: relative;
    flex: 1 1 0; /* Forces items to take equal space without extra margin */
    font-size: 14px;
    line-height: 24px;
    padding: 0;
    margin: 0;
}


.steps-wrap .step:before {
    background-color: #ccd1d6;
    height: 4px;
    position: absolute;
    content: " ";
    width: 100%;
    right: 50%;
    top: 10px;
}
.steps-wrap .step:first-child:before {
    display: none;
}
.steps-wrap .icon {
    color: #fff;
    display: inline-block;
    position: relative;
    z-index: 10;
    width: 24px;
    height: 24px;
    border-radius: 24px;
    text-align: center;
    background: #ccd1d6;
}
.steps-wrap .text {
    display: block;
    padding-top: 5px;
    text-align: start;
    color: #9da1a7;
}
.steps-wrap .step.active .icon {
    background: #ff5210;
    color: #fff;
}
.steps-wrap .step.active .text {
    color: #9da1a7;
}
.steps-wrap .step.active:before {
    background: #ff5210;
}
.steps-wrap .step.active:after {
    background: #ff5210;
    height: 4px;
    position: absolute;
    content: " ";
    z-index: 5;
    width: 50%;
    right: 0%;
    top: 10px;
    left: 0;
}
.steps-wrap .step.active:last-child:after {
    display: none;
}


.orange-box {
    padding: 5px 20px;
    /* Add padding around the text */
    border-radius: 15px;
    /* Rounded corners */
    border: 2px solid orange;
    /* Orange border */
    background-color: #ffe0b3;
    /* Light orange background */
    display: inline-block;
    /* Keep the rectangle around the text */
}


.blue-box {
    padding: 5px 20px;
    /* Add padding around the text */
    border-radius: 15px;
    /* Rounded corners */
    border: 2px solid #474ff4;
    /* Orange border */
    background-color: #d0d2f8;
    /* Light orange background */
    display: inline-block;
    /* Keep the rectangle around the text */
}

.green-box {
    padding: 5px 20px;
    /* Add padding around the text */
    border-radius: 15px;
    /* Rounded corners */
    border: 2px solid #5ec054;
    /* Orange border */
    background-color: #d0f1cd;
    /* Light orange background */
    display: inline-block;
    /* Keep the rectangle around the text */
}

.red-box {
    padding: 5px 20px;
    /* Add padding around the text */
    border-radius: 15px;
    /* Rounded corners */
    border: 2px solid #cc4234;
    /* Orange border */
    background-color: #edc6c2;
    /* Light orange background */
    display: inline-block;
    /* Keep the rectangle around the text */
}


.custom-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff5210;
    color: white;
    border: 2px solid #ff5210;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.custom-button:hover {
    background-color: transparent;
    color: black;
    border-color: #ff5210;
}


