/*
Theme Name: BookmanCapital
Theme URI: https://bookmancapital.io/
Description: Theme For BookmanCapital
Author: BookmanCapital
Author URI: https://bookmancapital.io/
Template: hello-elementor
Version: 1.0.0
Text Domain: bookmancapital
*/


/* customer progress tracker */

.order-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
}

.step {
    position: relative;
    text-align: center;
    flex: 1;
    color: #ccc;
    transition: color 0.3s ease, transform 0.3s ease;
}

.step:hover {
    color: #FFD700;
    transform: scale(1.1);
}

.step.completed {
    color: #000;
    font-weight: bold;
}

.step::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #ccc;
    z-index: -1;
    transition: background 0.3s ease;
}

.step.completed::after {
    background: #FFD700;
}

.step:last-child::after {
    display: none;
}

.step-number {
    display: block;
    background: #ccc;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 0 auto;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
}

.step-number:hover {
    background: #FFD700;
    transform: scale(1.2);
}

.step.completed .step-number {
    background: #FFD700;
}

/* Arrow-shaped progress tracker */
.arrow-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 20px auto;
    position: relative;
    gap: 10px; /* Add gap between steps */
}

.arrow-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #ccc;
    z-index: 0;
    transform: translateY(-50%);
}

.arrow-step {
    position: relative;
    flex: 1;
    text-align: center;
    color: #ccc;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 20px;
    background: #f0f0f0;
    z-index: 1; /* Ensure steps are above the line */
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 80px; /* Set a minimum height */
}

.arrow-step:hover {
    background: #FFD700;
    transform: scale(1.05);
}

.arrow-step.completed {
    background: #FFD700;
    color: #000;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.arrow-step.completed ~ .arrow-progress::before {
    background: #FFD700;
}

/* First step: straight left, pointed right */
.arrow-step:first-child {
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
}

/* Middle steps: arrow tail on the left, pointed front */
.arrow-step:not(:first-child):not(:last-child) {
    clip-path: polygon(15% 0, 85% 0, 100% 50%, 85% 100%, 15% 100%, 0 50%);
}

/* Last step: arrow tail on the left, straight right */
.arrow-step:last-child {
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 10% 100%, 0 50%);
}

.arrow-label {
    position: relative;
    z-index: 2;
}

/* General progress tracker container */
.progress-tracker {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 900px;
    margin: 30px auto;
    position: relative;
}

.progress-tracker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #ccc;
    z-index: 0;
    transform: translateY(-50%);
}

/* Ensure uniform height for progress steps */
.progress-step {
    position: relative;
    flex: 1;
    text-align: center;
    color: #ccc;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    z-index: 1; /* Ensure steps are above the line */
    transition: background 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 80px; /* Set a minimum height */
}

/* Completed step */
.progress-step.completed {
    background: #FFD700;
    color: #000;
    font-weight: bold;
    transform: scale(1.05);
}

.progress-step.completed ~ .progress-tracker::before {
    background: #FFD700;
}

/* Active step */
.progress-step.active {

}

/* Connector line between steps */
.progress-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    width: 20px;
    height: 2px;
    background: #ccc;
    z-index: -1;
    transform: translateY(-50%);
}

.progress-step.completed::after {
    background: #FFD700;
}

.progress-step:last-child::after {
    display: none;
}

/* Step label */
.progress-label {
    margin-top: 10px;
    font-size: 12px;
    color: inherit;
}

/* Step number */
.progress-number {
    display: inline-block;
    background: #ccc;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-weight: bold;
    margin-bottom: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.progress-step.completed .progress-number {
    background: #FFD700;
}

.progress-step.active .progress-number {
    background: #FFA500;
    transform: scale(1.2);
}

/* Hover effect for better interactivity */
.progress-step:hover {
    transform: scale(1.1);
}

/* Step-by-step progress tracker */
.progress-tracker {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    position: relative;
}

.progress-tracker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #ccc;
    z-index: 0;
}

.progress-step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
    color: #ccc;
}

.progress-step.active {
    color: #000;
}

.progress-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #ccc;
    color: #ccc;
    font-weight: bold;
    margin: 0 auto 5px;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.progress-step.active .progress-number {
    background: #FFD700;
    border-color: #FFD700;
    color: #000;
}

.progress-label {
    font-size: 14px;
    font-weight: bold;
    color: inherit;
}

/* Circular progress tracker */
.circular-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
    position: relative;
}

.circular-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #ccc;
    z-index: 0;
    transform: translateY(-50%);
}

/* Ensure uniform height for circular steps */
.circular-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 80px; /* Adjust height to accommodate multiple lines */
    background: #f0f0f0;
    border-radius: 50%;
    color: #ccc;
    font-size: 14px;
    font-weight: bold;
    z-index: 1; /* Ensure steps are above the line */
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 1;
}

/* Completed step */
.circular-step.completed {
    background: #FFD700;
    color: #000;
    transform: scale(1.1);
}

.circular-step.completed ~ .circular-progress::before {
    background: #FFD700;
}

/* Active step */
.circular-step.active {
    background: #FFA500;
    color: #fff;
    border: 3px solid #FFD700;
    transform: scale(1.2);
}

/* Connector line between steps */
.circular-step::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 100px;
    height: 2px;
    background: #ccc;
    z-index: -1;
    transform: translateY(-50%);
}

.circular-step.completed::after {
    background: #FFD700;
}

.circular-step:last-child::after {
    display: none;
}

/* Step label */
.circular-label {
    margin-top: 10px;
    font-size: 12px;
    color: inherit;
    text-align: center;
}

/* Hover effect for better interactivity */
.circular-step:hover {
    transform: scale(1.15);
}

/* Adjust spacing for smaller screens */
@media (max-width: 768px) {
    .circular-progress {
        flex-direction: column;
        gap: 20px;
    }

    .circular-step::after {
        width: 2px;
        height: 50px;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
    }
}

.page-template-single-transaction body{
    background-color: rgb(245 247 249);
}

.transaction-page {
    max-width: 1120px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-top: 20px;
    border-radius: 20px;
}

.transaction-details {
    max-width: 1120px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-top: 20px;
    border-radius: 20px;
}

.transaction-description {
    border-radius: 20px;
    margin: 20px 0;
    font-size: 24px;
    font-weight: 500;
    color: #333;
}

.transaction-id {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.transaction-status span{
    margin-top: 30px;
    font-size: 16px;
    font-weight: bold;
    background-color: #fff1a8;
    color: #677702;
    border-radius: 1.5rem;
    padding: 5px 10px;
}

.transaction-status.transaction-agreed span{
    background-color: #cdffcd;
    color: #007f00;
    border-radius: 1.5rem;
    padding: 5px 10px;
    font-weight: bold;
    margin-top: 30px;
}

.transaction-status.transaction-dispute span{
    background-color: #ffe0e0;
    color: #d30000;
    border-radius: 1.5rem;
    padding: 5px 10px;
    font-weight: bold;
    margin-top: 30px;
}

.transaction-status.transaction-completed span{
    background-color: #e6e6f2;
    color: #4a4aff;
    border-radius: 1.5rem;
    padding: 5px 10px;
    font-weight: bold;
    margin-top: 30px;
}


.copy-icon {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    fill: #555;
    transition: fill 0.3s ease;
}

.copy-icon:hover {
    fill: #000;
}

.transaction-parties {
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.transaction-parties strong {
    font-weight: bold;
}

.transaction-review {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    background-color: #f9f9f9;
}

.transaction-review h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.transaction-review p {
    font-size: 16px;
    color: #555;
}

/* Responsive styles */
@media (max-width: 768px) {
    .transaction-page {
        padding: 15px;
    }

    .transaction-description {
        font-size: 14px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .transaction-page {
        padding: 10px;
    }

    .transaction-description {
        font-size: 12px;
        padding: 8px;
    }
}

.agree-button {
    background-color: #FFD700 !important;
    border: 1px solid #FFD700 !important;
    color: #000 !important;
    padding: 5px 10px !important;
    border-radius: 5px !important;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
}



.agree-button:hover {
    background-color: #000 !important;
    border: 1px solid #000 !important;
    color: #fff !important;
}

.reject-button {
    background-color: #000 !important;
    border: 1px solid #000 !important;
    color: #fff !important;
    padding: 5px 10px !important;
    border-radius: 5px !important;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
}


.reject-button:hover {
    background-color: #FFD700 !important;
    border: 1px solid #FFD700 !important;
    color: #000 !important;
    margin-left: 10px;
}