﻿
#mostPopularList .ribbon {
    background: #9d1f60 !important;
    position: absolute;
    margin: -17px 100px 0 0;
    padding: 9px 20px 7px 20px;
    font-family: "secondary-font", "primary-font", "segoe ui", "tahoma";
}

    #mostPopularList .ribbon:before {
        border-left: 10px solid #646464;
        border-top: 16px solid transparent;
        content: "";
        display: block;
        height: 0;
        left: 100%;
        position: absolute;
        top: 0;
        width: 7px;
    }

    #mostPopularList .ribbon span {
        color: #FFF;
        font-size: 1.6em;
    }


/*Contact-US*/

.custom-box-shadow-1 {
    box-shadow: 0px 0px 37px -4px rgba(0, 0, 0, 0.1) !important;
}

/*page-Default-BtnSecondary*/
html .btn-secondary {
    background-color: #9d1f60;
    border-color: #9d1f60 #9d1f60 #440b29;
    color: #FFF;
}

    html .btn-secondary:hover,
    html .btn-secondary.hover {
        background-color: #ec3191;
        border-color: #ec3191 #ec3191 #440b29;
        color: #000000;
    }

    html .btn-secondary:active,
    html .btn-secondary.active {
        background-color: #9d1f60 !important;
        background-image: none !important;
        border-color: #9d1f60 #9d1f60 #440b29;
    }


/*page-Default-Qustions*/
/*#footer .logo img {
    max-width: 100px;
    opacity: 1;
}*/


html .toggle-primary .toggle label, html .toggle-primary .toggle .toggle-title {
    color: #212529;
    border-left-color: #9D1F60;
    border-right-color: #9D1F60;
}

html .toggle-primary .toggle.active > label, html .toggle-primary .toggle.active > .toggle-title {
    background-color: #9D1F60;
    border-color: #F9A43C;
    color: #FFF;
}


/*page-Default-Plans*/
.pricing-table .plan .plan-header {
    background: #9d1f60;
    padding: 0.95rem 1rem;
}


/*contctUs*/
html .btn-outline.btn-secondary {
    color: #e36159;
    background-color: transparent;
    background-image: none;
    border-color: #d98c2e;
}

    html .btn-outline.btn-secondary:hover,
    html .btn-outline.btn-secondary.hover {
        color: #FFF;
        background-color: #f9a43c;
        border-color: #d98c2e;
    }

@media (min-width: 576px) {
    .statisticsmin-height-screen {
        min-height: 4vh;
    }
}


@media (min-width: 768px) {
    .statisticsmin-height-screen {
        min-height: 4vh;
    }
}

@media (min-width: 992px) {
    .statisticsmin-height-screen {
        min-height: 4vh;
    }
}

@media (min-width: 1200px) {
    .statisticsmin-height-screen {
        min-height: 4vh;
    }
}

@media (max-width: 1199px) {
    .statisticsmin-height-screen {
        min-height: 4vh;
    }
}

@media (max-width: 991px) {
    .statisticsmin-height-screen {
        min-height: 4vh;
    }
}

@media (max-width: 767px) {
    .statisticsmin-height-screen {
        min-height: 4vh;
    }
}

@media (max-width: 575px) {
    .statisticsmin-height-screen {
        min-height: 4vh;
    }
}


#newsletterForm {
    direction: rtl;
}

/* ----------------------------------- Header website --------------------------------------------------*/
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    background-color: #9d1f60;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 90px;
    overflow: hidden;
}

.top-row {
    display: flex;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 180px;
    overflow: hidden;
    flex-shrink: 0;
}

.logo {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

nav {
    display: flex;
    flex-grow: 1;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
    min-width: 0;
}

    nav a {
        text-decoration: none;
        color: #fff;
        font-weight: bold;
        font-size: 0.9rem;
    }

.right-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

    .hamburger div {
        width: 25px;
        height: 3px;
        background-color: #fff;
    }

.dropdown select {
    padding: 5px;
}

.menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    padding: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .menu.open {
        display: flex;
    }

@media (max-width: 1024px) {
    header {
        flex-wrap: wrap;
        height: auto;
    }

    .top-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        border-bottom: 1px solid #ddd;
    }

    .bottom-row {
        display: flex;
        justify-content: space-around;
        gap: 15px;
        width: auto;
        margin-top: 10px;
        padding-bottom: 10px;
    }

    nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .menu {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 250px;
        height: 100%;
        background-color: #f8f9fa;
        padding: 20px;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        gap: 20px;
    }

        .menu.open {
            display: flex;
        }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-row {
        height: 90px;
    }

    .bottom-row {
        margin-top: 10px;
        padding: 10px 0 10px;
    }
}

.select2-container .select2-selection--single {
    height: 34.4px;
}
/************************************************SideBar Website in UserPanel*************************************************/
.btn-border-userpanel {
    display: flex !important;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

    .btn-border-userpanel i {
        margin-left: 15px;
    }
/************************************************Plans*************************************************/
.pricing-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 1rem;
    background: #fff;
}

    .pricing-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
    }

.pricing-title {
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1rem;
    font-weight: bold;
    margin: 1rem 0;
    /* color: #0d6efd;*/
}

.btn-order {
    background-color: #9D1F60;
    color: white;
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    font-weight: bold;
}

    .btn-order:hover {
        background-color: #ec3191;
        border-color: #ea8b85 #ea8b85 #9D1F60;
        color: #FFF;
    }

.features li {
    text-align: right;
    margin-bottom: 0.5rem;
}

.features li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left; /* به جای right برای هم‌راستا کردن چپ */
    margin-bottom: 0.5rem;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 0.25rem;
}

.card-header-content {
    flex: 0 0 auto;
}

.card-spacer {
    height: 50px; /* فضای خالی برای یکسان کردن ارتفاع قبل از دکمه */
}

.select-button {
    flex: 0 0 auto;
    margin-bottom: 1rem;
}

.card-features {
    flex: 1 1 auto;
}

/* استایل برای RTL */
[dir="rtl"] .features {
    text-align: right;
}

/* استایل برای LTR */
[dir="ltr"] .features {
    text-align: left;
}

.pricing-card.best-plan {
    border: 2px solid #9D1F60;
    box-shadow: 0 0 20px rgba(157, 31, 96, 0.4);
}

.bestPlan {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
    top: -10px;
    right: -10px;
}

    .bestPlan span {
        position: absolute;
        display: block;
        width: 200px;
        padding: 10px 0;
        background-color: #ffc107;
        color: #000;
        text-align: center;
        font-weight: bold;
        transform: rotate(45deg);
        top: 30px;
        right: -50px;
        box-shadow: 0 0 10px rgba(0,0,0,0.15);
    }
