:root {
    --dark: #01161E;
    --mdark: #124559;
    --mid: #598392;
    --mlight: #cbecce;
    --light: #EFF6E0;
    --lighter: #fbfff3;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
}

h1 {
    font-size: 25px;
}

h2 {
    font-size: 23px;
}

h3 {
    font-size: 21px;
}

h4 {
    font-size: 19px;
}

h5 {
    font-size: 17px;
}
.wp-block-heading h1 {
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
}
h2.wp-block-heading  {
    font-size: 18px;
    margin-bottom: 20px;
    margin-top: 20px;
}
h3.wp-block-heading  {
    font-size: 17px;
    margin-bottom: 20px;
    margin-top: 20px;
}
h4.wp-block-heading  {
    font-size: 16px;
    margin-bottom: 20px;
    margin-top: 20px;
}
h5.wp-block-heading  {
    font-size: 16px;
    margin-bottom: 20px;
    margin-top: 20px;
}
h6.wp-block-heading  {
    font-size: 16px;
    margin-bottom: 20px;
    margin-top: 20px;
}
body {
    direction: rtl;
    font-family: Vazirmatn, serif;
    background: #FFFFFF;
    line-height: 1.8em;
    font-size: 14px;
}

.bg-dark {
    background-color: var(--mdark) !important;
}

a {
    text-decoration: none;
}

.row-space {
    margin-top: 60px;
}

table.dataTable thead th, table.dataTable thead td, table.dataTable tfoot th, table.dataTable tfoot td {
    text-align: right;
}

.navbar-nav .nav-link{
    color: var(--mdark);
}
.navbar-brand img{
    width: 200px;
}

.login-btn {
    padding: 5px 35px;
    background: transparent;
    color: var(--mdark);
    border: 1px solid var(--mdark);
    border-radius: 8px;
}

.p100 {
    padding-top: 100px;
}

.card {
    background-color: transparent;
    color: var(--mdark);
    box-shadow: none;
    transition: box-shadow 0.5s;
    border-radius: 20px;
    border: 1px solid var(--mdark);
}

.card:hover {
    box-shadow: 0 0 20px 0 #1245594a;
}

.card:hover .btn-outline-dark {
    color: white;
    background: #212529;
}

.small-desc {
    font-size: 13px;
    color: var(--mlight);
}

.buy-plan-btn {
    padding: 5px;
    flex-basis: calc(50% - 8px);
    text-align: center;
    background: var(--mlight);
    color: var(--mdark);
    border: 1px solid var(--mdark);
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.buy-plan-btn:hover{
    background: var(--mid);
    color: white;
    border: 1px solid transparent;
}
.buy-btns{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.card-body .price {
    font-size: 18px;
    margin: 0 0 20px 0;
    text-align: center;
}
.buy-plan-title{
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    padding-top: 10px;
    color: var(--mdark);
}
.card-title {
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
    color: var(--mdark);
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
}

.panel-sidebar p {
    color: var(--mlight);
    margin-bottom: 0;
}
.panel-sidebar > li {
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px dashed #598392;
}
.panel-sidebar > li:last-child{
    border-bottom: 0;
}
.panel-sidebar li a {
    color: white;
    display: block;
    font-weight: bold;
}

.panel-sidebar li a span {
    font-size: 17px;
    margin-left: 10px;
}
.panel-sidebar li .sub-side-menu a {
    color: var(--light);
    display: block;
    font-weight: normal;
}
.panel-sidebar li:last-child a {
    border-bottom: 0;
}

.panel-sidebar {
    list-style: none;
    padding: 15px;
    background: var(--mdark);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 20px;
    min-height: 400px;
}

.panel-content {
    margin: 20px 0;
    border-radius: 25px;
    background: var(--light);
    padding: 20px;
    min-height: 400px;
}
.plan-needed p{
    font-size: 16px;
}
.plan-needed{
    text-align: center  ;
}
.dark-btn {
    background: var(--mdark);
    color: white;
    padding: 2px 10px;
    border-radius: 8px;
    border: 0;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
}
.remove-project-btn{
    background: var(--mlight);
    color: black;
    padding: 2px 10px;
    border-radius: 8px;
    border: 0;
    text-align: center;
    font-size: 14px;
    flex: 0 0 130px !important;
    cursor: pointer;
}

.panel-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--mlight);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.form-control:focus {
    color: black;
    background-color: var(--lighter);
    border: 1px solid var(--mdark);
    box-shadow: none;
}

.form-control , .form-select{
    background-color: var(--lighter);
    margin-bottom: 20px;
    border: 1px solid var(--mlight);
    font-size: 14px;
}
#requested-url{
    direction: ltr;
}
.form-group label {
    margin-bottom: 5px;
}

.page-link {
    color: var(--light);
    background-color: var(--mid);
}

.page-link:hover {
    color: var(--light);
    background-color: var(--mdark);
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    gap: 5px;
}

.active > .page-link, .page-link.active {
    z-index: 3;
    color: var(--light);
    background-color: var(--mdark);
    border-color: var(--mdark);
}

.disabled > .page-link, .page-link.disabled {
    color: var(--mdark);
    pointer-events: none;
    background-color: var(--light);
    border-color: var(--mlight);
}

.page-item .page-link {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.page-item:last-child .page-link {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.page-link:focus {
    box-shadow: none
}

#links-list_filter {
    display: flex;
    justify-content: end;
}

#links-list_filter input {
    margin-right: 5px;
    border-radius: 10px;
    border-color: var(--mlight);
}

#links-list {
    font-size: 15px;
}

.form-select:focus {
    border-color: var(--mdark);
    box-shadow: none
}

.dataTables_length select {
    border: 1px solid var(--mlight);
    background: var(--light);
}
.section-title{
    font-size: 32px;
    font-weight: 900;
    color: var(--mdark);
}
.section-subtitle {
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--mdark);
}
.features-title{
    margin-top: 20px;
}
.cta-holder a{
    flex : 1
}
.cta-holder{
    display: flex;
    gap: 20px;
    margin-top: 40px;
}
.cta-btn{
    font-size: 17px;
    height: 50px;
    display: inline-flex;
    background: var(--mdark);
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--lighter);
    font-weight: bold;
}
.cta-btn-2{
    font-size: 17px;
    width: 100%;
    height: 50px;
    display: inline-flex
;
    background: transparent;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--mdark);
    font-weight: bold;
    border: 2px solid var(--mdark);
}
#api-sec img{
    width: 500px;
}
#api-sec{
    background: var(--lighter);
    padding-top: 50px;
    padding-bottom: 50px;
}
.wp-logo {
    width: 350px;
}
.plan-icon{
    width: 110px;
    display: block;
    margin: 0 auto;
}
.plans-row {
    background: var(--lighter);
    padding-top: 80px;
    padding-bottom: 80px;
}
.free-demo-desc p{
    margin-bottom: 0;
}
.free-plan-btn{
    padding: 5px;
    text-align: center;
    background: var(--mlight);
    color: var(--mdark);
    border: 1px solid var(--mdark);
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    width: 100%;
    margin-top: 103px;
}
#loader {
    height: 60px;
    margin: auto;
    display: none;
    position: absolute;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
}
#loader.submit-link{
    bottom: -45px;
    top: auto;
}
.code-reply{
    min-height: 30px;
}
.login-img {
    max-height: 350px;
}

.form-holders {
    height: 100%;
    display: flex;
    align-items: center;
}

#mobile-box, #otp-box {
    width: 100%;
}

#otp-box {
    display: none;
}
.login-forms{
    position: relative;
    width: 400px;
    padding: 40px;
    background: var(--light);
    border-radius: 5px;
}
.login-sec{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 100px;
    box-shadow: 0 0 6px 4px #12455942;
}
.login-side{
    width: 60%;
}
.form-control.otp , .form-holders input[type=tel]{
    background-color: var(--light);
}
.login-result {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
}
.send-otp , .check-otp{
    position: absolute;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    aspect-ratio: 1;
    margin: 5px;
    background: var(--mdark);
    color: white;
    border: 0;
    padding: 5px;
    display: flex;
    align-items: center ;
    height: 30px;
    cursor: pointer;
}
.login-forms label {
    font-weight: bold;
    margin-bottom: 5px;
}
#otp-box{
    position: relative;
}
.form-control.otp::placeholder{
    text-align: left;
    line-height: 40px;
}
.form-control.mobile , .form-control.otp{
    height: 40px;
    border-radius: 50px;
    text-align: left;
    direction: ltr;
    margin-bottom: 0;
}
#mobile-box {
    position: relative;
}
td.ltr{
    direction: ltr;
}
.notification-bar{
    background: var(--mlight);
    color: black;
    text-align: center;
    border-radius: 10px;
    font-size: 14px;
}
.notification-bar.err{
    background: #d20054;
    color: white;
}
.ticket-response{
    background: var(--lighter);
    padding: 20px;
    border-radius: 19px;
    margin-top: 30px;
}
.ticket-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    border-top: 1px solid var(--light);
    margin-top: 20px;
    padding-top: 5px;
    color: var(--mid);
}
.ticket-meta p {
    margin-bottom: 0;
}
.ticket-attachment-dl{
    color: var(--mdark);
}

div.dataTables_filter{
    text-align: left !important;
}
.block-row{
    display: flex;
    justify-content: space-between;
    background: var(--mlight);
    padding: 10px;
    border-radius: 15px;
    border: 1px dashed var(--mdark);
    align-items: center;
    margin-bottom: 10px;
}
.block-row p{
    margin-bottom: 0;
}
.panel-quick-access{
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-top: 20px;
}
.quick-link{
    flex: 1;
    background: var(--mdark);
    color: white;
    text-align: center;
    padding: 5px;
    border-radius: 20px;
}
.index-list{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.index-list-header{
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}
.index-list-row{
    display: flex;
    justify-content: space-between;
    background: var(--lighter);
    padding: 5px;
    border-radius: 10px;
    margin-bottom: 10px;
}
.index-list-header span , .index-list-row span{
    flex: 1;
    word-wrap: break-word;
    text-align: center;
}
.sub-side-menu{
    list-style: none;
    font-size: 14px;
    margin-top: 5px;
}
.menu-toggle{
    display: none;
}
.mobile-drop{
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    backdrop-filter: blur(5px);
}
.close-menu{
    border: 0 !important;
    display: none;
    text-align: left;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}
.close-menu span{
    font-size: 14px;
    display: inline-grid;
    width: 25px;
    height: 25px;
    background: var(--mlight);
    align-items: center;
    justify-content: center;
    float: left;
    border-radius: 50px;
    color: var(--mdark);
}

.pay-btn{
    background: var(--mdark);
    color: white;
    padding: 0;
    display: inline-block;
    width: 100px;
    border-radius: 10px;
    font-size: 14px;
}

.payment-vector{
    margin-top: 40px;
    margin-bottom: 20px;
    max-width: 200px;
}
.payment-result{
    font-size: 18px;
}
#footer{
    background: var(--mdark);
    color: white;
    padding: 50px 0;
}
.footer-links{
    list-style: none;
    margin-top: 20px;
    padding: 0;
}
.footer-links li {
    position: relative;
    margin-bottom: 10px;
}
.footer-links li a {
    color: var(--light);
    padding-right: 15px;
}
.footer-links li a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    border-left: 1px solid var(--mlight);
    border-bottom: 1px solid var(--mlight);
    transform: rotate(45deg);
}
#footer h4{
    color: var(--mlight);
}


.wp-block-code code {
    display: block;
    font-family: inherit;
    overflow-wrap: break-word;
    white-space: pre-wrap;
    direction: ltr;
    background: #f7f7f7;
    border-radius: 10px;
    padding: 13px;
    margin-top: 20px;
}

.wp-block-table thead {
    border-bottom: 3px solid;
    background: #124559;
    color: var(--mlight);
    text-align: center;
}
.form-result{
    color: var(--mid);
}
.contact-form textarea{
    border: 1px solid #124559;
    height: 140px;
    padding: 20px;
    border-radius: 10px;
}
.contact-form input[type=text]:focus , .contact-form input[type=text]:focus-visible{
    border: 1px solid #124559;
    outline: none;
}
.contact-form textarea:focus{
    outline: none;
}
.contact-form input[type=submit]{
    background: #124559;
    height: 45px;
    border-radius: 10px;
    color: white;
    border: 0;
}
.contact-form input[type=text]{
    border: 1px solid #124559;
    height: 45px;
    padding: 0 20px;
    border-radius: 10px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
}
#page-header h1{
    font-size: 22px;
    margin-right: 10px;
    border-right: 5px solid var(--mdark);
    padding-right: 8px;
    border-radius: 5px;
}
#page-header{
    background: var(--mlight);
    padding: 20px;
}
#contact-items p {
    margin-bottom: 30px;
    padding-bottom: 30px;
}
#contact-items{
    margin-top: 50px;
    margin-bottom: 50px;
}
.contact-item{
    margin-bottom: 20px;
    background: var(--mdark);
    color: white;
    padding: 20px;
    border-radius: 10px;
}


.img-80{
    width: 80%;
    margin: auto;
    display: block;
}
body.page-id-6{
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, var(--dark), var(--light));
    height: 100vh;
    justify-content: center;
}
.login-forms .form-control.mobile , .login-form .form-control.otp{
    margin-bottom: 0;
}
.login-img{
    margin-bottom: 20px;
}

#page-content a{
    color: var(--mid);
}
#page-content{
    padding-top: 25px;
    padding-bottom: 25px;
}

.dataTables_wrapper .dataTables_processing {
    background-color: var(--mid);
    color: white;
    border: 0;
    border-radius: 5px;
    padding: 5px;
    font-size: 14px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
div.dataTables_processing>div:last-child>div {
    position: absolute;
    top: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgb(18 69 89);
}

#datatable-table tr td:last-child{
    direction: ltr;
}

#faq{
    padding-bottom: 50px;
}
.faq-item{
    border: 1px solid var(--mdark);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}
.faq-title{
    background: var(--mdark);
    padding: 10px;
    color: white;
    cursor: pointer;
}
.faq-answer{
    display: none;
    padding: 10px;
}
.faq-answer ul{
    margin-bottom: 0;
    padding-right: 15px;
}
#verify-section{
    height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
div.dataTables_wrapper div.dataTables_filter input {
    margin-left: 0em;
    margin-right: .5em;
}
@media only screen and (max-width: 768px)   {
    .panel-sidebar{
        position: fixed;
        top: 0;
        right: -100%;
        left: auto;
        bottom: 0;
        margin-top: 0;
        margin-bottom: 0;
        border-radius: 0;
        background-color: var(--mdark);
        font-size: 14px;
        z-index: 100;
        gap: 5px;
    }
    .dataTables_empty{
        font-size: 13px;
    }
    div.dataTables_wrapper div.dataTables_paginate ul.pagination {
        padding-right: 0;
    }
    .disabled > .page-link, .page-link.disabled{
        font-size: 13px;
        padding: 3px;
    }
    .datatable-table_filter input[type=search]{
        margin: 0;
        margin-right: 5px;
    }
    table.dataTable>tbody>tr.child ul.dtr-details>li {
        display: flex;
        flex-direction: column;
    }
    .index-list-header{
        display: none;
    }
    .index-list-row {
        flex-direction: column;
        gap: 10px;
    }
    .index-list-row {
        padding: 10px 20px;
    }
    .panel-quick-access{
        flex-direction: column;
    }
    .menu-toggle{
        background: var(--mlight);
        color: var(--mdark);
        font-size: 18px;
        font-weight: bold;
        margin-top: 10px;
        text-align: center;
        padding: 10px;
        display: block;
        position: fixed;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: 10;
    }
    .plan-box{
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 576px)   {
    .mobile-reverse{
        flex-direction: column-reverse;
    }
    .login-btn {
        padding: 3px 15px;
    }
    .navbar-brand {
        margin-right: 0;
    }
    .navbar-brand img {
        width: 150px;
    }
    .img-80 {
        margin-bottom: 25px;
    }
    .wp-logo {
        width: 200px;
        margin-bottom: 25px;
    }
}
@media only screen and (max-width: 300px) {
    h4 {
        font-size: 16px;
        margin-bottom: 0;
    }
    .dark-btn {
        font-size: 12px;
    }
    table.dataTable thead>tr>th.sorting, table.dataTable thead>tr>th.sorting_asc, table.dataTable thead>tr>th.sorting_desc, table.dataTable thead>tr>th.sorting_asc_disabled, table.dataTable thead>tr>th.sorting_desc_disabled, table.dataTable thead>tr>td.sorting, table.dataTable thead>tr>td.sorting_asc, table.dataTable thead>tr>td.sorting_desc, table.dataTable thead>tr>td.sorting_asc_disabled, table.dataTable thead>tr>td.sorting_desc_disabled {
        font-size: 12px;
        padding-right: 0;
    }
    table.dataTable thead>tr>th.sorting_asc:before, table.dataTable thead>tr>th.sorting_desc:after, table.dataTable thead>tr>td.sorting_asc:before, table.dataTable thead>tr>td.sorting_desc:after{
        display: none;
    }
    table.dataTable thead>tr>th.sorting:before, table.dataTable thead>tr>th.sorting_asc:before, table.dataTable thead>tr>th.sorting_desc:before, table.dataTable thead>tr>th.sorting_asc_disabled:before, table.dataTable thead>tr>th.sorting_desc_disabled:before, table.dataTable thead>tr>td.sorting:before, table.dataTable thead>tr>td.sorting_asc:before, table.dataTable thead>tr>td.sorting_desc:before, table.dataTable thead>tr>td.sorting_asc_disabled:before, table.dataTable thead>tr>td.sorting_desc_disabled:before , table.dataTable thead>tr>th.sorting:after, table.dataTable thead>tr>th.sorting_asc:after, table.dataTable thead>tr>th.sorting_desc:after, table.dataTable thead>tr>th.sorting_asc_disabled:after, table.dataTable thead>tr>th.sorting_desc_disabled:after, table.dataTable thead>tr>td.sorting:after, table.dataTable thead>tr>td.sorting_asc:after, table.dataTable thead>tr>td.sorting_desc:after, table.dataTable thead>tr>td.sorting_asc_disabled:after, table.dataTable thead>tr>td.sorting_desc_disabled:after{
        display: none;
    }
    table.dataTable{
        width: 100% !important;
    }
    .panel-content {
        padding: 20px 10px;
    }
    #datatable-table_length{
        display: none;
    }
}