.rdap-type-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.rdap-type-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 16px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    color: #333;
}
.rdap-type-tab:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}
.rdap-type-tab.active {
    border-color: #0073aa;
    background: #f0f8ff;
    box-shadow: 0 4px 12px rgba(0,115,170,0.15);
}
.rdap-type-tab img {
    margin-bottom: 8px;
}
.rdap-type-tab span {
    font-weight: 600;
    font-size: 0.95rem;
}
.rdap-content-panel {
    background: #f9fafc;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eaeef2;
    margin-top: 10px;
}

.rdap-purchase-section {
    margin: 0 auto;
    max-width: 900px;
}

.rdap-timeline {
    position: relative;
    padding: 20px 0;
}

.rdap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #d1d5db;
    transform: translateX(-50%);
}

.rdap-timeline-item {
    display: flex;
    margin-bottom: -40px;
    position: relative;
}
.rdap-timeline-item:last-child {
    margin-bottom: 0;
}

.rdap-timeline-right {
    flex-direction: row-reverse;
    justify-content: right;
}
.rdap-timeline-left {
    flex-direction: row;
    justify-content: left;
}

.rdap-timeline-badge {
    border: 2px solid #ffffff;
    border-radius: 10px;
    display: block;
    height: 15px;
    position: absolute;
    width: 15px;
    z-index: 10;
}

.rdap-timeline-panel {
    position: relative;
    background: #f8fafc;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    width: calc( 50% - 32px );
    border: 1px solid #eef2f6;
}
.rdap-timeline-panel .rdap-timeline-heading {
    border-radius: 3px 3px 0 0;
    padding: 15px;
}
.rdap-timeline-heading {
    display: flex;
    gap:20px;
    align-items: center;
}
.rdap-timeline-heading .timeline-step {
    font-size: 2rem;
    font-weight: 900;
}
.rdap-timeline-heading .timeline-header-wrapper{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.rdap-timeline-heading .timeline-desc {
    font-size: .7rem;
    font-weight: 300;
}
.rdap-timeline-panel .rdap-timeline-body {
    border-radius: 0 0 3px 3px;
    padding: 15px;
    background-color: #FFFFFF;
    z-index: 2;
    position: relative;
}
.rdap-timeline-panel .arrow {
    position: absolute;
    width: 0 !important;
    height: 0;
    top: 15px;
}

.rdap-timeline-right .rdap-timeline-badge{
    left: -40px;
    top: 15px;
}
.rdap-timeline-left .rdap-timeline-badge{
    right: -40px;
    top: 15px;
}
.pink .rdap-timeline-badge {
    background-color: #F19BA4 !important;
}

.blue .rdap-timeline-badge {
    background-color: #47CADC !important;
}
.green .rdap-timeline-badge {
    background-color: #47DBC3 !important;
}
.orange .rdap-timeline-badge {
    background-color: #f1d69b !important;
}

.pink .rdap-timeline-panel .rdap-timeline-heading{
    background: #F19BA4;
    color:white;
}

.blue .rdap-timeline-panel .rdap-timeline-heading{
    background: #47CADC;
    color:white;
}

.green .rdap-timeline-panel .rdap-timeline-heading{
    background: #47DBC3;
    color:white;
}
.orange .rdap-timeline-panel .rdap-timeline-heading{
    background: #f1d69b;
    color:white;
}

.pink .rdap-timeline-panel .arrow {
    border-color: transparent #F19BA4 transparent transparent;
}

.blue .rdap-timeline-panel .arrow {
    border-color: transparent transparent transparent #47CADC;
}

.green .rdap-timeline-panel .arrow {
    border-color: transparent #47DBC3 transparent transparent;
}

.orange .rdap-timeline-panel .arrow {
    border-color: transparent transparent transparent #f1d69b;
}

.rdap-timeline-left .arrow {
    border-width: 10px 0 10px 10px;
    border-style: solid;
    right: -10px;
    float: right;
}
.rdap-timeline-right .arrow {
    border-width: 10px 10px 10px 0;
    border-style: solid;
    left: -10px;
    float: left;
}

.rdap-timeline-body .rdap-field {
    margin-bottom: 14px;
}
.rdap-timeline-body .rdap-field:last-child {
    margin-bottom: 0;
}

.rdap-field {
    width: 100%;
    max-width: 100%;
}
@media (max-width: 768px) {
    .rdap-timeline::before {
        left: 20px;
    }
    .rdap-timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-bottom: 20px;
    }
    .rdap-timeline-panel {
        width: calc( 100% - 52px );
        margin: 0 !important;
    }
    .rdap-timeline-panel .arrow {
        border-width: 10px 10px 10px 0;
        border-style: solid;
        left: -10px;
        float: left;
        right: auto;
    }
    .rdap-timeline-left .rdap-timeline-badge {
        left: -40px;
        right: auto;
    }
    .blue .rdap-timeline-panel .arrow {
        border-color: transparent #47CADC transparent transparent !important;
    }

    .orange .rdap-timeline-panel .arrow {
        border-color: transparent #f1d69b transparent transparent !important;
    }
    .rdap-type-tab {
        padding: 10px 15px;
        min-width: 60px;
    }
    .rdap-type-tab span {
        font-size: .7rem;
    }
}

@media (max-width: 480px) {

    .rdap-type-tab {
        padding: 7px 12px;
        min-width: 50px;
    }
    .rdap-type-tab span {
        font-size: .6rem;
    }
}
