:root {
    --primary-color : #1f2f4f;
    --secondary-color : #84c341;
}

.irr-rtl-layout {
    direction: rtl;
    text-align: right;
}

.irr-ltr-layout {
    direction: ltr;
    text-align: left;
}

.irr-rtl-layout .order-status-table {
    margin-left: auto;
    margin-right: 0;
}

.irr-ltr-layout .order-status-table {
    margin-right: auto;
    margin-left: 0;
}

.irr-payment-container {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    background-color: #f9f9f9;
    max-width: 400px;
    margin: 0 auto;
}

label.irr-innerlabel {
    font-size: 14px !important;
    margin-bottom: 5px;
}

input#irr_payment_input {
    direction: ltr;
}

.irr-payment-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.irr-payment-field {
    margin-bottom: 15px;
}

.irr-payment-label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.irr-payment-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    font-size: 14px;
}

.irr-payment-input.error {
    border: 1px solid red;
    background-color: #ffe6e6;
}

.irr-payment-error {
    color: red;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

/*Order Status Page*/
.order-status-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #f8f8f8;
}

.order-status-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /*max-width: 900px;*/
    width: 100%;
}

.order-status-title {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    margin: 0px 0px 20px;
    color: var(--primary-color);
    padding-bottom: 20px;
    border-bottom: 1px solid #f5f5f5;
}

.order-status-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.order-status-table th,
.order-status-table td {
    padding: 15px;
    text-align: left;
    font-size: 16px;
}

.order-status-table th {
    background: var(--primary-color);
    font-weight: bold;
    color: white;
    text-align: center;
    font-size: 18px;
}

.order-status-table tr:nth-child(even) {
    background: #f8f8f8;
}

.order-status-table tr:nth-child(odd) {
    background: #ffffff;
}

.order-status-table .info-label {
    background: var(--primary-color);
    color: white;
    font-weight: 500;
    text-align: center;
}

.order-status-table .info-data {
    background: #fff;
    font-weight: bold;
    color: #333;
}

.order-status-table .highlight {
    background: #f5f5f5;
    font-weight: bold;
    color: var(--secondary-color);
}

.order-status-table .additional-note {
    font-size: 15px;
    color: #555;
    font-style: italic;
}
.order-status-table .highlight .hightlight_text{
    margin-right: 10px;
}

.copy-button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 7px 12px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    transition: 0.3s ease;
}

.order-status-instructions {
    margin-top: 40px;
    padding: 15px;
    background: #f8fff1;
    border: 1px solid var(--secondary-color);
    border-radius: 8px;
}

.order-status-instructions p {
    font-size: 16px;
    margin: 5px 0;
}

.order-status-instructions .highlight {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 17px;
}

.check-order-button {
    display: block;
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease;
    text-transform: capitalize;
}

.check-order-button:hover, .copy-button:hover {
    background: var(--secondary-color);
}
.order-status-table tr {
    border-top: 1px solid #f3e8e8;
}
.woo-irr-error {
    color: #D32F2F;
    background: #FFEBEE;
    padding: 10px;
    border: 1px solid #D32F2F;
    margin: 10px 0;
    border-radius: 5px;
    font-weight: bold;
}
.responsive_table {
    overflow: auto hidden;
}

.cryptoactive #ajax-content-wrap>div.container-wrap{
    z-index: 99999 !important;
}
.rtl .order-status-table th, .rtl .order-status-table td{
    text-align: start;
}

@media screen and (max-width: 992px) {
    .order-status-title {
        font-size: 22px;
        margin: 0px 0px 15px;
        padding-bottom: 15px;
    }
    .order-status-table th, .check-order-button, .order-status-instructions .highlight{
        font-size: 16px;
    }
    .order-status-table th, .order-status-table td, .order-status-instructions p, .order-status-table .additional-note {
        font-size: 14px;
    }
    .order-status-table th, .order-status-table td , .check-order-button{
        padding: 12px;
    }
    .copy-button{
        font-size: 12px;
    }
}

@media screen and (max-width: 576px) {
    .order-status-box {
        padding: 20px;
    }
}