﻿#body-right {
    height: auto;
    background: linear-gradient(90deg,rgba(234, 70, 26, 1) 0%, rgba(254, 122, 3, 1) 50%, rgba(254, 122, 3, 1) 100%);
    border-radius: 15px 0px 0px 15px;
    color: white !important;
    position: sticky;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
}

.row {
    margin: 0;
}

.product {
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .05);
    margin: 5px;
    background-color: rgba(0, 0, 0, .05);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: medium;
    font-weight: 500;
    margin-top: 15px;
    cursor: pointer;
}

.sub-product {
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .05);
    background-color: rgba(0, 0, 0, .05);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: medium;
}

.payment-type {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(0, 0, 0, .05);
    border-radius: 15px;
    padding: 10px;
    box-sizing: border-box;
}

    .payment-type.active {
        color: white;
        background-color: orange;
    }

.payment-detail {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.text-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: black;
}

.text-sub-title {
    font-size: 16px;
    line-height: 22px;
    white-space: pre-wrap;
}

#btnFirstSubmit {
    background: orange;
    width: 50% !important;
}

.leke-button {
    background: orange !important;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    position: relative;
    margin-top: auto;
    padding-bottom: 10px;
}

.status-step {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-label {
    font-size: 14px;
    text-align: center;
    font-weight: 600;
}

.step-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #E8E8E8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: orange;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.status-step.completed .step-circle {
    background: orange;
    color: white;
}

.status-step.completed .step-line {
    background: orange;
}

.status-step.completed .step-label {
    color: orange;
}

.status-step.active .step-circle {
    background: orange;
    color: white;
}

    .status-step.active .step-circle::after {
        content: '';
        position: absolute;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 2px solid orange;
        animation: pulse 2s infinite;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

.status-step.active .step-label {
    color: orange;
}

.step-line {
    position: absolute;
    top: 10px;
    left: 54%;
    width: 91%;
    height: 4px;
    background: #E8E8E8;
    z-index: 1;
}

.selected-service {
    display: flex;
    border: 1px solid black;
    flex-wrap: wrap;
    padding: 5px;
    border-radius: 5px;
}

.services {
    width: auto;
    height: auto;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .1);
    margin: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

@media screen and (max-width: 1200px) {
    .status-bar {
        margin-top: 20px;
    }

    #btnFirstSubmit {
        width: 100% !important;
    }

    .step-line {
        position: absolute;
        top: 10px;
        left: 66%;
        width: 68%;
        height: 4px;
        background: #E8E8E8;
        z-index: 1;
    }
}
