@font-face {
    font-family: 'YekanBakh';
    src: url('../fonts/YekanBakh-regular-fanum.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
:root{
	--gutter: 6px;       
	--row-gap: 6px;      
	--max-width: 1200px;
	--wcip-primary: #222;
	--wcip-accent: #7EDEE5;
	--wcip-bg: #f5f5f7;
}
.container {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: calc(var(--gutter) / 2);
  padding-right: calc(var(--gutter) / 2);
  box-sizing: border-box;
  font: 12px YekanBakhnum;
}
.row {
  display: flex;
  margin-left: calc(-1 * var(--gutter) / 2);
  margin-right: calc(-1 * var(--gutter) / 2);
  /* gap: var(--row-gap); */
  box-sizing: border-box;
}

.col {
  box-sizing: border-box;
  padding-left: calc(var(--gutter) / 2);
  padding-right: calc(var(--gutter) / 2);
  flex: 0 0 auto;
}


.col-1  { flex: 0 0 10%;  max-width: 10%;  }
.col-2  { flex: 0 0 20%;  max-width: 20%;  }
.col-3  { flex: 0 0 30%;  max-width: 30%;  }
.col-4  { flex: 0 0 40%;  max-width: 40%;  }
.col-5  { flex: 0 0 50%;  max-width: 50%;  }
.col-6  { flex: 0 0 60%;  max-width: 60%;  }
.col-7  { flex: 0 0 70%;  max-width: 70%;  }
.col-8  { flex: 0 0 80%;  max-width: 80%;  }
.col-9  { flex: 0 0 90%;  max-width: 90%;  }
.col-10 { flex: 0 0 100%; max-width: 100%; }

.flex { display: flex; }
.inline-flex { display: inline-flex; }

.flex-row { flex-direction: row; }
.flex-row-reverse { flex-direction: row-reverse; }
.flex-col { flex-direction: column; }
.flex-col-reverse { flex-direction: column-reverse; }

.justify-start    { justify-content: flex-start; }
.justify-end      { justify-content: flex-end; }
.justify-center   { justify-content: center; }
.justify-between  { justify-content: space-between; }
.justify-around   { justify-content: space-around; }
.justify-evenly   { justify-content: space-evenly; }

.items-start   { align-items: flex-start; }
.items-end     { align-items: flex-end; }
.items-center  { align-items: center; }
.items-baseline{ align-items: baseline; }
.items-stretch { align-items: stretch; }

.content-start   { align-content: flex-start; }
.content-end     { align-content: flex-end; }
.content-center  { align-content: center; }
.content-between { align-content: space-between; }
.content-around  { align-content: space-around; }
.content-stretch { align-content: stretch; }

.self-auto     { align-self: auto; }
.self-start    { align-self: flex-start; }
.self-end      { align-self: flex-end; }
.self-center   { align-self: center; }
.self-baseline { align-self: baseline; }
.self-stretch  { align-self: stretch; }

.flex-nowrap { flex-wrap: nowrap; }
.flex-wrap   { flex-wrap: wrap; }
.flex-wrap-reverse { flex-wrap: wrap-reverse; }

.flex-grow-0 { flex-grow: 0; }
.flex-grow-1 { flex-grow: 1; }

.flex-shrink-0 { flex-shrink: 0; }
.flex-shrink-1 { flex-shrink: 1; }

.basis-auto { flex-basis: auto; }
.basis-0 { flex-basis: 0; }
.basis-full { flex-basis: 100%; }

.order-first { order: -9999; }
.order-last  { order: 9999; }
.order-none  { order: 0; }

.order-1 { order: 1; }
.order-2 { order: 2; }
.order-3 { order: 3; }
.order-4 { order: 4; }
.order-5 { order: 5; }
.order-6 { order: 6; }
.order-7 { order: 7; }
.order-8 { order: 8; }
.order-9 { order: 9; }
.order-10{ order: 10; }

.gap-0   { gap: 0; }
.gap-1   { gap: 4px; }
.gap-2   { gap: 8px; }
.gap-3   { gap: 12px; }
.gap-4   { gap: 16px; }
.gap-5   { gap: 20px; }
.gap-6   { gap: 24px; }
.gap-8   { gap: 32px; }
.gap-10  { gap: 40px; }

.place-center { place-content: center; place-items: center; }
.place-start  {/* place-content: start; *//* place-items: start; */}
.place-end    { place-content: end;    place-items: end; }

.flex-auto  { flex: 1 1 auto; }
.flex-none  { flex: none; }
.flex-1     { flex: 1 1 0%; }
.flex-initial { flex: 0 1 auto; }

.center-all { display:flex; justify-content:center; align-items:center; }
.space-between { display:flex; justify-content:space-between; align-items:center; }
.space-around  { display:flex; justify-content:space-around; align-items:center; }

.text-right { text-align: right; }
.text-center { text-align: center; }
.text-left { text-align: left; }

body.wcip-verify-page {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'YekanBakh', Tahoma, sans-serif;
    direction: rtl;
    background: linear-gradient(135deg, #9bd8d8, #bbadc4, #936cab);
    background-attachment: fixed;
}
@media screen and (max-width: 600px) {
	.wcip-verify-wrap {
		margin: 0 15px;
		padding: 25px;
	}
}
.wcip-verify-wrap {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 40px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 15px 35px -25px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    text-align: center;
}

.wcip-verify-wrap h2 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 800;
}

.wcip-verify-wrap > p {
    text-align: right;
    margin-bottom: 8px;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
}

.wcip-verify-wrap input[type="text"] {
    width: 100%;
    padding: 13px 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-family: 'YekanBakh', sans-serif;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
    text-align: center;
}

.wcip-verify-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.wcip-verify-wrap input[readonly] {
    background: rgba(0, 0, 0, 0.15);
    color: rgba(255, 255, 255, 0.6);
    cursor: default;
}

.wcip-verify-wrap input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.wcip-terms-wrap {
    margin-bottom: 10px;
    margin-top: 20px;
    text-align: right;
    display: flex;
    align-items: center;
}

.wcip-checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    font-size: 12px;
    user-select: none;
    color: rgba(255, 255, 255, 0.9);
}

.wcip-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.wcip-checkmark {
    height: 20px;
    width: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    margin-left: 10px;
    transition: all 0.3s;
}

.wcip-checkbox-container:hover input ~ .wcip-checkmark {
    background-color: rgba(255, 255, 255, 0.2);
}

.wcip-checkbox-container input:checked ~ .wcip-checkmark {
    background-color: #9bd7d8;
    border-color: #72a9a9;
}

.wcip-checkmark:after {
    content: "";
    position: absolute;
    display: none;
    right: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.wcip-checkbox-container input:checked ~ .wcip-checkmark:after {
    display: block;
}

.wcip-terms-text a {
    color: #ffd080;
    text-decoration: none;
    border-bottom: 1px dashed #ffd080;
}



.wcip_btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    background: #ffffff;
    color: #1a2a6c;
    font-family: 'YekanBakh', sans-serif;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.wcip_btn:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.wcip_btn:active {
    transform: translateY(-1px);
}

.wcip_btn:disabled {
    background: rgb(255 255 255 / 57%);
    color: rgb(30 30 30 / 30%);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

#wcip_result {
    margin-top: 25px;
    font-size: 14px;
    border-radius: 10px;
}

#wcip_result {
    transition: all 0.4s ease;
    line-height: 1.8;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin: 10px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

.wcip-pay-button .spinner, .wcip_btn .spinner{
	width: 18px;
	height: 18px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	margin: 0px 10px;
	display: inline-block;
	vertical-align: middle;
}
.wcip_message {
    padding: 12px 15px;
	border-radius: 10px;
	margin-bottom: 20px;
	font-weight: bold;
	position: relative;
	font-size: 13px;
}

.wcip_success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wcip_error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.wcip_warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.wcip_info {
	background-color: #ace5ff;
	color: #2f82a7;
	border: 1px solid #96cfe9;
}

.wcip-success-container {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: right;
    animation: fadeInSlide 0.5s ease;
}

.wcip-success-container h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.wcip-summary-item p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    font-size: 15px;
}

.wcip-summary-item.highlight {
    background: rgb(0 0 0 / 20%);
    padding: 10px;
    border-radius: 8px;
    margin-top: 15px;
}

.wcip-installment-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.wcip-installment-list li {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 8px;
    padding: 12px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgb(0 0 0 / 22%); 
}

.wcip-installment-list li span {
    font-size: 13px;
    opacity: 0.8;
}

.wcip-installment-list li strong {
    font-size: 16px;
}

.wcip-installment-list li small {
    font-size: 11px;
    color: #565656;
}

.wcip-pay-button {
    display: block;
    /* width: 100%; */
    padding: 15px;
    background: #9bd7d7;
    color: white !important;
    text-decoration: none;
    text-align: center;
    border-radius: 12px;
    font-weight: bold;
    font-size: 16px;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgb(145 207 207);
}

.wcip-pay-button:hover {
    background: #47c2c2;
    box-shadow: 0 6px 20px rgb(113 182 182);
    transform: translateY(-2px);
}

@keyframes fadeInSlide {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.wcip_title{
	margin: 2px 0 15px;
}
.wcip-installments-table {
    margin: 20px 0 !important;
}

.wcip-installments-table thead th {
    background-color: #fcfcfc !important;
}

.wcip-installments-table tbody td {
    padding: 11px 15px !important;
    vertical-align: middle !important;
	font-size: 13px !important;
}
.btn-pay_installment{
	background-color: #10b981;
	padding: 8px 20px !important;
	box-shadow: 0 4px 8px -1px rgb(16 185 129 / 28%);
	border: none !important;
}
.wcip-info-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    border: 2px solid #10b981; 
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 6px -1px rgb(16 185 129 / 6%), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease;
}

.wcip-info-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -7px rgba(0, 0, 0, 0.1);
}

.wcip-info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wcip-info-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.wcip-info-value {
    font-size: 16px;
    font-weight: 800;
    color: #1e293b;
}

.wcip-info-value ins {
    text-decoration: none; 
}
.wcip-info-status {
    display: flex;
    align-items: center;
}

@media (max-width: 480px) {
    .wcip-info-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .wcip-info-status {
        width: 100%;
        justify-content: flex-end;
    }
}

.wcip-status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    min-width: 90px;
    line-height: 19px;
}

.status-paid {
    background-color: #e6f4ea;
    color: #1e7e34;
    border: 1px solid #c3e6cb;
}

.status-overdue {
    background-color: #fdeaea;
    color: #d93025;
    border: 1px solid #fad2cf;
}

.status-pending {
    background-color: #fff4e5;
    color: #b05d00;
    border: 1px solid #ffe5c4;
}

@media screen and (max-width: 600px) {
	
    .wcip-installments-table {
        font-size: 13px;
    }
    .wcip-status-badge {
        padding: 2px 8px;
        min-width: 70px;
    }
	
}




.wcip-premium-widget {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    direction: rtl;
    margin: 20px 0;
}

.wcip-premium-widget:hover {
    border-color: var(--wcip-accent);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.wcip-widget-inner { display: flex; justify-content: space-between; align-items: center; }

.wcip-badge {
    background: var(--wcip-accent);
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    margin-top: -30px;
    display: block;
    max-width: 82px;
    text-align: center;
}

.wcip-main-text {font-size: 13px;font-weight: 700;color: #111;margin-top: 6px;}
.wcip-sub-text {font-size: 11px;color: #6b7280;margin-top: 2px;}
.wcip-col-icon {
	line-height: 0
}
.wcip-col-icon svg { width: 24px; height: 24px; color: #9ca3af; transition: all 0.3s }
.wcip-col-icon:hover svg { color: #555}
.wcip-modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.4);
    backdrop-filter: blur(5px); display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; z-index: 99999; transition: 0.3s;
}

.wcip-modal-overlay.is-active { opacity: 1; visibility: visible; }

.wcip-modal-card {
    background: #fff; width: 90%; max-width: 400px; padding: 32px;
    border-radius: 10px; position: relative; direction: rtl;
    transform: translateY(20px); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wcip-modal-overlay.is-active .wcip-modal-card { transform: translateY(0); }

.wcip-close {
    position: absolute;
    left: 20px;
    top: 20px;
    border: none;
    background: #e0e6e7;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    text-align: center;
    line-height: 32px;
    padding: 0;
    border: none !important;
}

.wcip-modal-header {text-align: center;margin-bottom: 30px;margin-top: 10px;}
.wcip-modal-header img { width: 60px; margin-bottom: 12px; }
.wcip-modal-header h3 {margin: 0;font-size: 15px !important;}
.wcip-modal-header p {color: #6b7280;font-size: 12px;margin: 5px 0;}
.wcip-modal-footer{
	text-align: center
}
.wcip-timeline { margin: 25px 0; }
.wcip-timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 20px;
    border-right: 2px solid #ecf4f5;
    margin-right: 10px;
    position: relative;
    padding-right: 25px;
}
.wcip-timeline-item:last-child {
	border-right-color: white;
}

.wcip-dot {
    position: absolute;
    right: -7px;
    top: 3px;
    width: 12px;
    height: 12px;
    background: #ecf4f5;
    border-radius: 50%;
}
.wcip-timeline-item.active .wcip-dot {background: var(--wcip-accent);box-shadow: 0 0 0 4px rgb(221 243 245);}

.wcip-time-info { flex: 1; }
.wcip-time-info strong {display: block;font-size: 13px;}
.wcip-time-info span {font-size: 11px;color: #9ca3af;}
.wcip-time-amount {font-weight: 700;font-size: 13px;}

.wcip-btn-gotit {
    width: 100%; padding: 14px; border: none; border-radius: 10px;
    background: var(--wcip-primary); color: #fff; font-weight: 600;
    cursor: pointer; margin-top: 20px;
}
.wcip-modal-overlay button:hover{
	background-color: var(--wcip-accent) !important
}
