/* popular styles start */

* {
    text-transform: uppercase;
}

:root {
    --primary: #00a3e0;
    --primary-half: #00a4e059;
    --led: #40c9e1;
    --secondary: #00a3e0;
    --text-gray: #809fb8;
    --background: #1f1f1f;
    --black-background: #0b0b0b;
    --gray: #dee5ea;
}

html {
    scroll-padding-top: 80px;
    scroll-behavior: smooth;
}


/* popular styles end */


/* components */


.starry-background {
    background-color: var(--black-background);
    background-image:
        radial-gradient(white, rgba(255, 255, 255, .2) 2px, transparent 3px),
        radial-gradient(white, rgba(255, 255, 255, .15) 1px, transparent 2px),
        radial-gradient(white, rgba(255, 255, 255, .1) 2px, transparent 3px);
    background-size: 550px 550px, 350px 350px, 250px 250px;
    background-position: 0 0, 40px 60px, 130px 270px;
    animation: twinkle 10s ease infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.background-grey {
    background-color: var(--background);
}


.div-left-shadow {
    position: relative;
}

.div-left-shadow::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, var(--primary), transparent 70%);
    pointer-events: none;
    z-index: -1;
    transform: translate(50%, -50%);
    filter: blur(107px);
}

.div-right-shadow {
    position: relative;
}

.div-right-shadow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -400px;
    width: 50%;
    height: 68%;
    background-color: var(--primary);
    pointer-events: none;
    z-index: -1;
    transform: translateY(-50%);
    filter: blur(107px);
}

ul.devided>li:not(:last-child) {
    border-right: white 2px solid;
}

.gradient-border-1-background {
    border: 1px solid transparent;
    /* Transparent initial border */
    background: linear-gradient(var(--background), var(--background)) padding-box,
        linear-gradient(to right, #00bfff, #00ffff) border-box;
}

.gradient-border-2-background {
    border: 2px solid transparent;
    /* Transparent initial border */
    background: linear-gradient(var(--background), var(--background)) padding-box,
        linear-gradient(to right, #00bfff, #00ffff) border-box;
}


.li-border-left {
    border-right: white 2px solid;
}

/* finished components */


.blue-header {
    background-color: var(--primary);
    border-radius: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blue-header:last-child {
    flex: 1;
}

@media screen and (max-width: 991px) {
    .navbar-nav.navbar-mine {
        margin-top: 30px !important;
        max-height: 90vh !important;
        position: relative;
        overflow: auto;
        min-height: 0;
    }

    .navbar-nav.navbar-mine li:first-child {
        flex: 0;
        font-size: 1.2rem;

    }

    .navbar-nav.navbar-mine li:first-child ul {
        flex-direction: column;
        padding: 0 !important;
        gap: 30px;
    }
}

.navbar-mine {
    width: 100%;
    justify-content: space-between;
    display: flex;
    align-items: center;
}

.navbar-mine>li:first-child {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-mine>li:not(:first-child):not(:last-child) {
    background-color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    width: fit-content;
    height: 50px;
    border: var(--gray) 3px solid;
}

.navbar-mine>li::last-child {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    width: fit-content !important;
    height: 50px !important;
}

.navbar-mine .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px !important;
}

.navbar-mine li:not(:last-child) .nav-link i {
    font-size: 1.2rem;
    color: var(--text-gray);
    text-shadow: none;
}

.navbar-mine li:last-child .nav-link:hover {
    background-color: transparent !important;
}

.navbar-mine li:last-child .nav-link:active {
    background-color: transparent !important;
}


.navbar-mine li:last-child .nav-link i:first-child {
    font-size: 1.2rem;
    color: white;
    text-shadow: none;
    background-color: var(--black-background);
    padding: 25px !important;
    border-radius: 50%;
    width: 35px !important;
    height: 35px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}


.links-nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
    list-style: none;
    flex: 1;
}

.arabic .links-nav-menu li {
    padding-bottom: 10px;
}

.links-nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 1;
}

.arabic .links-nav-menu li a {
    font-size: 16px !important;
}

.links-nav-menu li a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;

}


.flag img {
    border-radius: 50%;
}

/* .page-header .page-header-image {
    box-shadow: 0px 15px 300px 0px var(--primary) inset;
} */


.slogan-container {
    margin-bottom: 10px;
    position: relative;
}

.slogan-container img {
    max-width: 100%;
}

.title,
.title+h3 {
    font-style: italic;
    font-weight: bold;
}

.page-header .title {
    font-size: 75px;
}

@media (max-width: 576px) {
    .page-header .title {
        font-size: 50px !important;
    }
}

.page-header .title.large {
    font-size: 100px;
}

@media (max-width: 576px) {
    .page-header .title {
        font-size: 70px;
        margin: 0 0 20px 0 !important;
    }
}

.page-header .title+h3 {
    font-size: 36px;
    margin: 0 !important;
}

.nav-social-buttons {
    align-items: center;
    justify-content: center;
}


.nav-social-buttons a {
    font-size: 1.2rem !important;
    margin: 0 10px 0 10px !important;
}


.certified-container {
    width: 90%;
    max-width: 665px;
    margin: 0 auto;
    padding: 40px 8px 40px 40px;
    background: linear-gradient(to right, #004742 120px, var(--black-background) 120px);
    border-radius: 20px;
    position: relative;
}

.ministry {
    position: absolute;
    top: 10px;
    right: 10px;
}

.vision {
    position: absolute;
    top: 10px;
    left: 10px;
}

.certified-container-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.certified-image-container img {
    min-width: 145px;
}

@media screen and (max-width: 992px) {
    .certified-container {
        width: 100%;
        padding: 40px 20px;
    }
}

@media screen and (max-width: 768px) {
    .certified-container {
        width: 100%;
        padding: 40px 40px;
    }

    .certified-container-inner {
        flex-direction: column;
    }

    .certified-image-container {
        padding: 20px
    }
}

.certified-text {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    gap: 25px;
    color: white;
}

.arabic .certified-text {
    align-items: flex-end;
    direction: ltr;
}

.certified-text>h3 {
    font-weight: bold;
    font-size: 26px;
    border-left: #004742 4px solid;
    padding-left: 10px;
    margin: 0 !important;
}

.certified-text>p {
    padding-left: 14px;
    margin: 0 !important;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
}

.arabic .certified-text>h3 {
    border-left: none;
    border-right: #004742 4px solid;
    padding-left: 0;
    margin-top: 10px !important;
    padding-right: 10px;

}

.arabic .certified-text>p {
    direction: rtl;
    text-align: start;
}

/* started games cards */


.games_list_container .game_card {
    background-color: transparent;
    border-top: 3px solid var(--led) !important;
    border-right: 2px solid var(--led) !important;
    border-left: 2px solid var(--led) !important;
    border-bottom: 1px solid var(--led) !important;
    overflow: visible;
}

.games_list_container .game_card:hover .arrow_right {
    background-color: transparent !important;
}

.games_list_container .game_card:before {
    background-color: var(--led) !important;
    filter: blur(40px) !important;
    height: 50% !important;
    right: 82px !important;
    left: auto !important;
    top: 27% !important;
    width: 20% !important;
}

.games_list_container .game_card .game-title {
    position: absolute;
    top: 15px;
    height: auto !important;
    max-width: 150px;
}

.games_list_container .game_card .game_image {
    max-height: 250px;
}

.games_list_container .marvel-boost .game_image {
    max-height: 280px !important;
    height: 280px !important;
    max-width: 253px !important;
    width: 253px !important;
}

.arrow_right {
    border: 1px solid var(--led);
    position: absolute;
    bottom: 15px;
}

.arrow-right {
    margin-left: -3px;
    width: 15px;
    height: 15px;
    transform: rotate(45deg);
    border-top: 5px solid var(--led);
    border-right: 5px solid var(--led);
    position: relative;
}

.arrow-right:before {
    content: "";
    position: absolute;
    background-color: var(--led);
    filter: blur(5px);
    height: 15px;
    left: 94%;
    top: 11%;
    width: 15px;
    transform: translate(-50%, -50%);
    z-index: 13;
}



/* finished games cards */



/* started why gamers choose us */

.why-choose-us {
    padding: 50px 0;
    background-color: var(--black-background);
    color: white;
    position: relative;
    z-index: -1;
}

.why-choose-us h2 {
    font-size: 48px;
    font-weight: bold;
    font-style: italic;
    margin-bottom: 20px;
    text-align: center;
    color: white;

}

.why-choose-us p {
    font-size: 36px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.3;
    max-width: 80%;
    margin: 0 auto 40px;
    color: white;
    text-align: center;

}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.feature-item {
    width: 260px;
    text-align: center;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.feature-item:not(:last-child) {
    border-right: 2px solid var(--primary);
}

.feature-item .state {
    text-shadow: 1px 1px 30px var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

.feature-item .state span {
    text-shadow: 1px 1px 30px var(--primary);
    font-size: 40px;
    color: var(--primary);
    font-weight: bold;
}

.feature-item .icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;


}

.feature-item .icon i::before {
    font-weight: 900 !important;
}

.feature-item .icon.calendar {
    position: relative;
}

.feature-item .icon.calendar i:last-child {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
}


.feature-item .icon.clock {
    position: relative;
}

.feature-item .icon.clock i {
    font-size: 2.4rem;
}

.feature-item .icon.clock span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    border-radius: 5px;
}

.feature-item .icon.trusted {
    margin-top: 10px;
    box-shadow: -1px -1px 20px 0px var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item p {
    font-size: 21px;
    font-weight: 400;
    color: white;
    font-style: italic;
}

/* finished why gamers choose us */

/* started faq section */

.faq {
    color: white !important;
    text-transform: uppercase;
}

.faq-container {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
    padding: 50px 0;
}

.arabic .faq-container {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .faq-container {
        flex-direction: column-reverse !important;
    }

    .faq-items {
        width: 100% !important;
    }

    .faq-image-container {
        width: 100% !important;
    }
}

.faq .title {
    font-size: 48px;
    font-weight: bold;
    color: white;
}

.faq-items {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border-radius: 20px;
    width: 100%;
    padding: 20px;
}

.arabic .faq-item {
    text-align: right;
    direction: rtl;
}

.faq-item h4 {
    padding: 0 !important;
    margin: 0 !important;
    font-weight: bold;
    font-size: 23px;
}


.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0;
}

.faq-content {
    display: none;
    margin-top: 20px;
    padding: 0;

}

.faq-content p.description {
    color: white !important;
    font-size: 18px;
    font-weight: 400;
}

.faq-header .faq-arrow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
    padding: 5px 10px;
    border-radius: 5px;
}

.faq-header i {
    transition: transform 0.3s ease;
    color: var(--primary);
    font-size: 1.3rem;

}

.faq-header.active i.en {
    transform: rotate(90deg);
}

.faq-header.active i.ar {
    transform: rotate(-90deg);
}

.faq-item.active .faq-content {
    display: block;
}


.faq-image-container {
    width: 48%;
    border-radius: 20px;
}

/* ended faq section */

/* started footer */

footer {
    background-color: var(--primary);
    color: white !important;
    text-transform: uppercase;
}

.arabic footer {
    direction: rtl !important;
}

.arabic footer p {
    text-align: start;
}

.arabic footer .footer-logo {
    display: flex;
}


footer h4 {
    margin: 0 !important;
    color: white !important;
}

.arabic footer h4 {
    text-align: start;
}

footer .footer-item ul {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    font-size: 1rem;
    text-wrap: nowrap;
    gap: 5px;
    margin-top: 5px !important;
    line-height: 1 !important;
}

footer .footer-item ul li {
    padding: 5px 0 !important;
    margin: 0 !important;
}

footer .footer-item a {
    color: white !important;
    padding: 0 !important;
    margin: 0 !important;
}

.arabic footer .payment-methods-container {
    display: flex;
}

footer .copyright {
    color: white;
}

footer .copyright a {
    color: #FFEB3B;
}

.arabic footer .copyright {
    direction: rtl !important;
}

/* ended footer */



/* started boost game section */
.section-purchase .row>div:first-child {
    flex: 1 !important;
    max-width: none !important;
}

@media (max-width: 991px) {
    .section-purchase .row>div:first-child {
        flex: auto !important;
        width: 100% !important;
    }
}

.section-purchase.section-service {
    background-color: var(--background);
    background-image:
        radial-gradient(white, rgba(255, 255, 255, .2) 2px, transparent 3px),
        radial-gradient(white, rgba(255, 255, 255, .15) 1px, transparent 2px),
        radial-gradient(white, rgba(255, 255, 255, .1) 2px, transparent 3px);
    background-size: 550px 550px, 350px 350px, 250px 250px;
    background-position: 0 0, 40px 60px, 130px 270px;
    animation: twinkle 10s ease infinite;
}

.purchase-options {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 0;
    flex-wrap: wrap;
    width: 100%;
}

.purchase-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-direction: column;
    margin-bottom: 20px;
    width: 210px;
}

.purchase-option .purchase-option-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin-bottom: 10px;
}


.purchase-option .purchase-option-header i {
    font-size: 1.7rem;
}


.purchase-option .purchase-option-header h4 {
    color: white !important;
    margin: 0 !important;
    font-weight: bold;
}

/* Container for the dropdown */
.server-dropdown,
.region-dropdown,
.role-dropdown {
    position: relative;
    display: inline-block;
    width: 200px;
    text-align: center;
}

.server-dropdown::before,
.region-dropdown::before,
.role-dropdown::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--primary-half);
    opacity: 0.5;
    filter: blur(10px);
    z-index: -1;
}

/* Display as a select box */
.server-dropdown .dropdown-label,
.region-dropdown .dropdown-label,
.role-dropdown .dropdown-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    color: white;
    padding: 10px 15px;
    border: 2px solid var(--primary);
    border-radius: 20px;
    cursor: pointer;
}

/* Arrow for dropdown */
.server-dropdown .dropdown-label.arrow::after,
.region-dropdown .dropdown-label.arrow::after,
.role-dropdown .dropdown-label.arrow::after {
    content: "⋁";
    font-size: 0.8rem;
    color: var(--primary);
    margin-left: 10px;
}

/* Dropdown menu */
.server-dropdown .nav,
.region-dropdown .nav,
.role-dropdown .nav {
    display: none;
    position: absolute;
    background-color: #121212;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 1px solid #444;
    border-radius: 5px;
    z-index: 100;
}

/* Dropdown items */
.server-dropdown .nav-item,
.region-dropdown .nav-item,
.role-dropdown .nav-item {
    display: block;
}

.server-dropdown .nav-link,
.region-dropdown .nav-link,
.role-dropdown .nav-link {
    display: block;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    background-color: #121212;
    border-bottom: 1px solid #333;
}

.server-dropdown .nav-link:last-child,
.region-dropdown .nav-link:last-child,
.role-dropdown .nav-link:last-child {
    border-bottom: none;
}

.server-dropdown .nav-link:hover,
.region-dropdown .nav-link:hover,
.role-dropdown .nav-link:hover {
    background-color: #222;
}

/* Active dropdown menu */
.server-dropdown.open .nav,
.region-dropdown.open .nav,
.role-dropdown.open .nav {
    display: block;
}

/* Active label */
.server-dropdown .dropdown-label span,
.region-dropdown .dropdown-label span,
.role-dropdown .dropdown-label span {
    flex-grow: 1;
    font-size: 24px;
    font-weight: bold;
    line-height: normal;
}


.arabic .server-dropdown .dropdown-label span,
.arabic .region-dropdown .dropdown-label span,
.arabic .role-dropdown .dropdown-label span {
    margin-top: -5px;
    padding-bottom: 5px;
}

.styled-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.styled-heading::before,
.styled-heading::after {
    content: '';
    flex: 1;
    display: block;
    height: 4px;
    width: 100px;
    background: linear-gradient(to right, transparent, #00bcd4);
}

.styled-heading::after {
    background: linear-gradient(to left, transparent, #00bcd4);
}

.styled-heading span {
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
}

.boost-container {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

@media (max-width: 768px) {
    .boost-container {
        flex-direction: column;
    }

    .boost-img-container img {
        transform: rotate(90deg);
    }
}

.boost-img-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.boost-img-container img {
    border-radius: 50%;
}

.input-group-select {
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 20px 0 !important;
    width: auto !important;
    flex: 1 !important;
}

.input-group-select>label {
    font-size: 24px;
    color: white;
    font-weight: bold;
    font-style: italic;
}

.input-group-select .bootstrap-select .dropdown-toggle {
    background-color: transparent;
    border: 2px solid var(--primary);
    border-radius: 10px !important;
}

.input-group-select .bootstrap-select .dropdown-toggle::after {
    content: "⋁";
    font-size: 0.8rem;
    color: var(--primary);
    margin-left: 10px;
    border: none;
}

.division-pills {
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    background-color: #6a6a6a;
    border-radius: 10px;
    width: fit-content;
    margin: auto;
    padding: 2px !important;
}

.division-pills li {
    margin: 0 !important;

}

.division-pills li a {
    border-radius: 10px !important;
    background-color: transparent !important;
    border: none !important;
    color: #a1a1a1 !important;
    font-size: 24px !important;
    font-weight: bold !important;
    font-style: italic;
    height: auto !important;
    line-height: 1 !important;
}

.division-pills li a.active {
    border: none !important;
    background-color: var(--background) !important;
    color: var(--primary) !important;
    text-shadow: 0px 0px 20px var(--primary);
}

.lp-pills {
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    background-color: #6a6a6a;
    border-radius: 10px;
    width: fit-content;
    margin: auto;
    padding: 2px !important;
}

.lp-pills li {
    margin: 0 !important;

}

.lp-pills li a {
    border-radius: 10px !important;
    background-color: transparent !important;
    border: none !important;
    color: #a1a1a1 !important;
    font-size: 16px !important;
    font-weight: bold !important;
    font-style: italic;
    height: auto !important;
    line-height: 1 !important;
}

.lp-pills li a.active {
    border: none !important;
    background-color: var(--background) !important;
    color: var(--primary) !important;
    text-shadow: 0px 0px 20px var(--primary);
}

.rank-img-container {
    position: relative;
}

.rank-img-container::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22%;
    height: 35%;
    background-color: var(--primary);
    z-index: -1;
    filter: blur(19px);
}


/* ended boost game section */

/* started purchase card */

.purchase-card {
    max-width: fit-content !important;
    margin: auto;
}

.purchase-card .card {
    background-color: transparent;
    box-shadow: none;
    border: 2px solid var(--primary);
    border-radius: 14px;
    max-width: 305px;
}

.purchase-card .card h4 {
    color: var(--primary);
    font-weight: bold;
    font-style: italic;
}

.purchase-card .card #order-summary {
    border: none;
    background-color: var(--primary);
    margin: auto;
    border-radius: 9px;
    color: white;
}

.purchase-card .card #order-summary .rank-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: bold;
}

.arabic .purchase-card .card #order-summary .rank-summary {
    font-size: 1.2rem !important;
}

.purchase-card .card #order-summary span {
    color: white !important;
    font-size: 16px;
}

.arabic .purchase-card .card #order-summary span {
    font-size: 1.1rem !important;
}

.purchase-card .card #order-summary span b {
    color: white !important;
}

.purchase-card .card .switches .switch-label {
    color: white;
    font-size: 24px;
    font-weight: 400;
    direction: rtl !important;
}

.purchase-card .card .switches .switch-label .ten-percent {
    color: #4fb80e !important;
    position: relative;
    font-size: 14px;
}

.purchase-card .card .switches .switch-label .ten-percent::after {
    content: '';
    position: absolute;
    top: -4%;
    left: -6%;
    width: 112%;
    height: 108%;
    background-color: #2c6509;
    z-index: -1;
    border-radius: 5px;
}

.purchase-card .card .switches .switch-label .free {
    color: #1ad598 !important;
    position: relative;
    font-size: 0.6rem;
}

.purchase-card .card .switches .switch-label .free::after {
    content: '';
    position: absolute;
    top: -4%;
    left: -6%;
    width: 112%;
    height: 108%;
    background-color: #1d684f;
    z-index: -1;
    border-radius: 5px;
}

.purchase-card .card .switches .switch-onoff-label {
    background-color: #d9e1e7;
    border-radius: 8px !important;
}

.purchase-card .card .switches .switch-onoff-inner::after,
.purchase-card .card .switches .switch-onoff-inner::before {
    content: '' !important;
    border: none !important;
    border-radius: 8px !important;
}

.purchase-card .card .switches .switch-onoff-inner::after {
    background-color: #d9e1e7 !important;
}

.purchase-card .card .switches .switch-onoff-inner::before {
    background-color: #00a3e0 !important;
}

.purchase-card .card .switches .switch.free .switch-onoff-inner::before,
.purchase-card .card .switches .switch.free .switch-onoff-inner::after {
    content: "FREE" !important;
    color: white !important;
}

.purchase-card .card .switches .switch .switch-onoff-switch {
    border-radius: 8px;
    width: 22px;
    margin: 0 !important;
    height: 22px;
    background-color: white !important;
    top: 50%;
    transform: translateY(-50%);
}

.purchase-card .card .styled-heading span {
    color: var(--primary) !important;
    font-weight: bold;
    font-style: italic;
}

.purchase-card .card #order-description-amount b {
    color: var(--primary) !important;
    font-weight: bold !important;
    font-size: 24px;
    font-style: italic;
}

.purchase-card .card #additional-info-form {
    color: white !important;
}

.purchase-card .card #additional-info-form select {
    background-color: white !important;
}

.purchase-card .card #additional-info-form .form-control {
    background-color: white !important;
}

.purchase-card .card .checkout-button {
    font-size: 24px;
    font-weight: bold;
    font-style: italic;
}

/* ended purchase card */

/* started coahing */

input#coaching-hours {
    width: 141px;
    height: 133px;
    font-size: 4.7rem;
    text-shadow: 0px 0px 20px;
    color: var(--primary);
    border-radius: 31px !important;
    border: none;
    background-color: var(--black-background);
}

button#coaching-hours-minus,
button#coaching-hours-plus {
    height: 4.2rem;
    width: 4.2rem;
    background-color: var(--black-background) !important;
    border: none;
    color: var(--primary) !important;
    border-radius: 20px !important;
}

button#coaching-hours-minus i,
button#coaching-hours-plus i {
    font-weight: 900;
}

.number-selector {
    display: flex;
    gap: 5px;
    width: fit-content;
    margin: auto;
    background-color: #6a6a6a;
    border-radius: 8px;
    padding: 2px 3px;
}

.number {
    width: 54px;
    height: 50px;
    background-color: #222;
    color: #888;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 2px solid #555;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.number:hover,
.number.active {
    color: var(--primary);
    text-shadow: 0 0 50px;
}


/* ended coahing */


/* started wins */

input#wins {
    width: 141px;
    height: 133px;
    font-size: 4.7rem;
    text-shadow: 0px 0px 20px;
    color: var(--primary);
    border-radius: 31px !important;
    border: none;
    background-color: var(--black-background);
}

button#wins-minus,
button#wins-plus {
    height: 4.2rem;
    width: 4.2rem;
    background-color: var(--black-background) !important;
    border: none;
    color: var(--primary) !important;
    border-radius: 20px !important;
}

button#wins-minus i,
button#wins-plus i {
    font-size: 37px;
}

/* ended wins */


/* started the other pages */

.arabic .section-order .input-group-select .bootstrap-select.btn-group .dropdown-toggle .filter-option,
.arabic .section-purchase .input-group-select .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    margin-top: -10px;
    padding-bottom: 10px;
}

.section-orders {
    background-color: var(--background);
}

.section-orders .card-body {
    background-color: var(--black-background);
    color: white;
}

.section-orders .card-body table thead th,
.section-orders .card-body table tbody tr:nth-child(2n) td {
    background-color: var(--black-background);
    color: white;
}

.section-orders .card-body table tbody tr:nth-child(2n + 1) td {
    background-color: var(--background);
    color: white;
}

#form-profile-name input,
#form-profile-password input,
#form-contact input,
#form-contact textarea {
    color: black !important;
    background-color: white !important;
}

.arabic .terms-conditions-container {
    direction: rtl;
}

.arabic .terms-conditions-container * {
    direction: rtl;
    text-align: start;
}

/* ended the other pages */
