@import url('https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,100..900;1,100..900&display=swap');



html {

    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    height: 100%;
    font-size: 14px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Chivo', sans-serif;
    background: #000;
    min-height: 100vh;
    color: #fff;
}

body.unscrollable {
    overflow: hidden;

}

.side-nav-content {
    display: flex;
    width: 100%;
}

/* 
/* width */
::-webkit-scrollbar {
    width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #000000;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #27272a;
    border-radius: 50px;
}


body:not(.shop) .navbar {
    background: #05060a;
    padding: 18px;
}

body:not(.shop) .navbar-brand img {
    width: 120px;
}

header {
    z-index: 99;
    position: relative;
    width: 100%;
}

main {
    min-height: 100vh;
    padding-bottom: 100px;
}

.bread {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}


.breadcrumbs {
    margin: 0;
    white-space: nowrap;
}

.page-title-n {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.breadcrumbs .breadcrumb-page {
    font-size: 13px;
    font-weight: 500;
    color: #a1a1aa;
    text-decoration: none;
}

.page-title-n h1 {
    margin: 0;
    color: #ffffff;
    font-weight: 600;
    font-size: 32px;
}

.breadcrumbs i {
    margin: 0 0.5rem;
    color: #a1a1aa;
    font-size: 10px;
}


.menu-title {
    color: #d0952c;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}


.aio {
    display: flex;
    width: 100%;
}

body.loading {
    overflow: hidden;
}

body.loading .pending-loader {
    display: flex;
}

.pending-loader {
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 99;
}

.server-profile {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}

.server-profile .server-icon {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    background: #05060a;
    border-radius: 50px;
    font-size: 22px;
    color: #d0952c;
}

.server-title h6 {
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 5px;
}

.server-title p {
    font-size: 14px;
    font-weight: 500;
    color: #a1a1aa;
    margin-bottom: 0px;
}

.sidenav {
    width: 100%;
    background: #05060a;
    margin-block: 20px;
    display: flex;
    align-items: center;
    border-radius: 12px;
    position: relative;
}

button.dropdown-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #a1a1aa;
    gap: 10px;
}

button.dropdown-item i {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;

}

.container.page-content {
    padding: 40px;
}

.sidenav-list {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.sidenav-list .line {
    display: flex;
    gap: 10px;
    width: 100%;
}


.user-box {
    background: #05060a;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    width: 100%;
    color: #dadada;
    border-width: 1px;
    border-style: solid;
    border-color: #05060a;
    transition: all 0.3s ease-in-out;
}

.user-box i {
    width: 26px;
    height: 26px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #d0952c;
    font-size: 18px;
}

a.user-box:hover {
    text-decoration: none;
    color: #dadada;
    border-color: #d0952c;
}

.sidenav-items-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    padding-inline: 10px;
    gap: 10px;
}

.request-product {
    text-align: center;
    margin-top: 50px;
}

.sidenav-items-container .nav-side-left {
    display: flex;
    gap: 0px 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.sidenav-items-container .nav-side-right {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
}

.sidenav-item {
    position: relative;
    padding-block: 15px;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    color: #969696;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    border-radius: 8px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}


.sidenav-item.active::before {
    background: #d0952c;
}

.sidenav-item i {
    margin-right: 6px;
    font-size: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #a1a1aa;
    transition: color 0.3s ease-in-out;
}

.btn-ancher.dropdown-toggle::after {
    display: none;
}

table .dropdown {
    display: inline-flex;
}


.sidenav-item.active i,
.sidenav-item:hover i {
    color: #d0952c;
}

.sidenav-item.active {
    color: #d0952c;
    background: #05060a;
}

.sidenav-item:hover {
    color: #d0952c;
}


.sidebar-heading img {
    margin: 10px auto 10px auto;
    height: 50px;
    display: block;
}


.burger-container {
    display: none;
}

.burger-container.active .fa-bars {
    display: none !important;
}

.burger-container.active .fa-times {
    display: block !important;
}

.burger-container .fa-bars {
    display: block;
}

.burger-container .fa-times {
    display: none;
}


.custom-table {
    background: #00000000;
    color: white;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    width: 100%;
}

.custom-table thead tr th {
    background: #d0952c !important;
    padding: 0.75rem 0.875rem !important;
    font-size: 14px;
    font-weight: 500;
    border-color: #d0952c;
    color: #fff;
}


.custom-table thead tr th:first-child {
    border-top-left-radius: 8px;
}

.custom-table thead tr th:last-child {
    border-top-right-radius: 8px;
}

.custom-table tbody tr td {
    padding: 0.75rem 0.875rem !important;
    font-size: 14px;
    font-weight: 500;
    border-color: #2a3243;
    vertical-align: middle;
}


.custom-table tbody tr td:last-child .actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.custom-table tbody tr td .actions a {
    color: #d0952c;
}

.custom-table tbody tr td .actions a:hover {
    color: #74a8e5;
}

.custom-table tbody tr:nth-child(even) {
    background: #05060a;
}

.btn-ancher {
    background: none;
    border: none;
    color: #a1a1aa;
    cursor: pointer;
    outline: none;
    display: inline-flex;
    padding: 0px !important;
    width: fit-content !important;
    min-width: auto;
    margin-right: 10px;
}

.message-box {
    background: #05060a;
    border-radius: 8px;
    padding: 16px;
    width: 80%;
}

.message-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.message-wrapper.admin .message-box {
    background: #000000;
    border: 1px solid #27272a;
}

.message-profile-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    ;
}

option {
    background: #000000;
}

.message-profile-wrap h5 {
    margin: 0;
}

.message-wrapper.admin {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
}

.message {
    margin: 0px;
    max-width: 100%;
    word-wrap: break-word;
}

span.message-date {
    display: block;
    width: 80%;
    text-align: right;
    padding: 3px 8px;
    color: #a1a1aa;
}

.btn-ancher:hover {
    color: #fff;
}

.dash-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row !important;
    background: #05060a;
    padding: 20px;
}

.dash-card .dash-card-title h6 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0px;
}

.dash-card .dash-card-title p {
    font-size: 0.8rem;
    font-weight: 400;
    color: #a1a1aa;
    margin-bottom: 0px;
}

.dash-card i {
    color: #d0952c;
    font-size: 24px;
}


.dash-card-user-profile i.user {
    font-size: 40px;
    margin: auto;
    display: block;
    text-align: center;
    margin-bottom: 20px;
}



@media screen and (max-width: 768px) {

    .burger-container {
        position: absolute;
        right: 0;
        top: 0;
        margin: 12px 25px;
        color: white;
        font-size: 24px;
        display: block !important;
    }

    #sidebar {
        display: none;
    }




}



.btn-nav {
    color: white;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
}

nav .btn-nav {
    background: #000000;
}

.page-content .btn-nav {
    background: #05060a;
}

.btn-nav i {
    color: #a1a1aa;
    transition: color 0.3s ease-in-out;
    font-size: 18px;
}

.btn-nav:hover,
.btn-nav:hover i {
    color: white;
}

.card-title {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0px;
    padding: 20px;
}

a.small-ancher {
    font-size: 12px;
    text-decoration: none;
    font-weight: 600;
    margin-left: 7px;
}

.secret {
    filter: blur(4px);
    transition: .3s;
}

.secret:hover {
    filter: none;
}

.toggle-sidenav.container {
    display: none;
    background: #05060a;
    color: #a1a1aa;
    border-radius: 50px;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    margin-block: 20px;
}

.toggle-sidenav-btn {
    color: #a1a1aa;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    background: #000000;
    padding: 10px !important;
    width: 50px;
    height: 50px;
}


.user-drop-down {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 5px 15px;
    flex-direction: column;
    border-bottom: 1px solid #292929;
    margin-bottom: 10px;
}

.card-plus {
    background: #05060a;
    padding: 5px 10px;
}

.sidenav-list img {
    width: 120px;
    margin: auto;
}

.sidenav-list a {
    text-decoration: none;
}

.card-plus i {
    color: #d0952c;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}


.card-text .card-text-item {
    margin-bottom: 3px;
    color: #a1a1aa;

}

.card-text .card-text-item span {
    color: #ffffff;
    font-weight: 500;
}

.labels-group {
    display: flex;
    gap: 25px;
    justify-content: flex-start;
    flex-wrap: wrap;
}


.version_select_group {
    display: none;
    width: 100%;
}

.label-card {
    width: 280px;
    background: #141417;
    border-radius: 8px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.2s ease-in-out;
    border: 1px solid #d0952c4d;
}

.label-card-lg {
    width: 250px !important;

}

.label-card img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.label-card h6 {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0px;
}

.label-card p {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0px;
}

.labels-group input[type="radio"] {
    display: none;
}

.labels-group input[type="radio"]:checked+.label-card {
    border: 1px solid #d0952c;
}

.radio-card-wrapper input[type="radio"] {
    display: none;
}

.radio-card-wrapper input[type="radio"]:checked+.card {
    border: 2px solid #d0952c;
    background: #097066;
}

.radio-card-wrapper .card {
    border: 2px solid #7178f800;
}

.vertical-card {
    width: 100% !important;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    padding-right: 0px;
    border: 1px solid #27272a00;
}

.vertical-card>* {
    width: 105px;
    text-align: left;
}

.vertical-card>p>span {
    color: #ffffff;
    font-weight: 500;
}


@media screen and (max-width: 991px) {
    .side-nav-mobile-control {
        display: flex;
    }

    .sidenav,
    .side-nav-content {
        position: fixed;
        margin-left: -100%;
        width: 100%;
        transition: all 0.3s ease-in-out;
        z-index: 999;
        top: 0;
        left: 0;
        height: 100%;
        background: #000000;
        padding: 20px;
    }

    .sidenav.active .side-nav-content {
        margin-left: 0;
    }

    .sidenav.active .side-nav-content {
        height: 100vh;
        overflow-y: auto;
    }

    .page-content {
        width: 100%;
        padding: 20px !important;
    }

    .toggle-sidenav.container {
        display: block;
    }

    .navbar-mobile-list {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
        margin-top: 20px;
        gap: 10px;
    }

    .sidenav-items-container .nav-side-left {
        flex-direction: column;
        width: 100%;
    }

    .sidenav-items-container .nav-side-right {
        width: 100%;
        justify-content: flex-start;
    }

    .sidenav-item {
        width: 100%;
        padding-inline: 20px;
    }

    .sidenav-items-container {
        flex-direction: column;
        justify-content: flex-start;

    }

    .nav-side-left .sidenav-item.sidenav-item-header {
        display: flex !important;
    }


}

@media screen and (max-width: 767px) {
    .vertical-card>.plan {
        display: none;
    }
}

.input_copy_wrapper {
    position: relative;
}

.input_copy_wrapper .copy_btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.copy_btn {
    background: none;
    color: #a1a1aa;
    font-size: 14px;
    cursor: pointer;
    border: none;
    padding-inline: 10px 20px;
}

.copy_btn .fa-check {
    display: none;
    color: #4caf50;
}

.copy_btn.copied .fa-check {
    display: block;
}

.copy_btn.copied .fa-copy {
    display: none;
}

.up-wow {
    background: #d0952c;
    color: #fff;
    text-align: center;
    padding: 10px;
}

.up-wow p {
    margin: 0px;
}

.up-wow a {
    color: #fff;
}

.close-btn {
    position: absolute;
    right: 0;
    top: 0;
    margin: 10px;
    background: none;
    border: none;
    color: #fff;
    padding: 0px 5px;
}

.title-spaced {
    font-size: 22px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-block: 20px;
}

.custom-card i {
    font-size: 60px;
    color: #d0952c;
    margin-bottom: 20px;
}

.custom-card .title {
    margin-bottom: 5px;
    font-size: 16px;
}

.custom-card .sub-title {
    font-size: 14px;
    color: #a1a1aa;
}

.custom-card a {
    height: fit-content;
    padding: 5px 30px;
    margin-top: 20px;
}

.card-plus .card-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 0px;
}

.card-plus .card-title h4 {
    font-size: 34px;
    font-weight: 300;
    margin-bottom: 0px;
}

.card-plus .card-title h5 {
    font-size: 24px;
    color: #d0952c;
    margin-bottom: 0px;
}

.card-plus hr {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 25px;

}


.pricing-box {
    padding: 30px;
    position: relative;
    transition: 0.5s;
}

.pricing-box::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    transform: matrix(1, 0, 0, -1, 0, 0);
    transition: 0.3s;
    background: linear-gradient(224deg, #05060a7a, #05060a);
    border-radius: 15px;
    border: 1px solid #d0952c4d;
}

.pricing-box:hover::after {
    border: 1px solid #d0952c;
}


.pricing-box h3 {
    background: linear-gradient(to right, #d8ac58 0%, #ffe2a8 50%, #d8ac58 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 34px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 36px;
}

.pricing-box h3 span {
    color: #d0952c;
    font-weight: 600;
}

.pricing-box>p {
    color: #ffffffa1;
    font-size: 14px;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.pricing-box .pricing-features {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.pricing-box .pricing-features .feature {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding-bottom: 15px;
    padding-top: 0px;
}

.pricing-box .pricing-features .feature i {
    color: #d0952c;
    font-size: 18px;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #34322c;
    border-radius: 50%;
}

.pricing-box .pricing-features .feature p {
    color: #ffffffa1;
    font-size: 16px;
    margin: 0px;
}

.pricing-box .pricing-features .feature p span.lighty {
    color: #ffffff;

}

.pricing-box .price {
    color: #fff;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    text-transform: uppercase;
}

.pricing-box .price p {
    color: #ffffffa1;
    font-size: 16px;
    text-transform: capitalize;
    margin: auto 0;
    margin-left: 8px;
}

.feature-text {
    font-weight: 200;
    margin-left: 10px;
}

.feature-text .imp-text {
    font-weight: 400;
    color: #fff !important;
}

.pricing-box a {
    position: relative;
    z-index: 2;
    margin-top: 20px;
    width: 100%;
}

.labels-group input[type="radio"]:disabled+.label-card {
    filter: grayscale(1);
    background: none;
    cursor: no-drop;
}

h1 {
    font-size: 26px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

.info-row {
    border-radius: 8px;
    padding: 7px 10px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.info-row i {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: #d0952c;
    border-radius: 8px;
    font-size: 20px;
    min-width: 45px;
}

.info-row p.info-title {
    font-size: 13px;
    color: #d0952c;
    line-height: 16px;
    margin-bottom: 4px;
    font-weight: 800;
}

.info-row p.info-value {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 0px;
    line-height: 18px;
    line-break: anywhere;
}

.goods-title {
    font-size: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.goods-title i {
    color: #d0952c;
    font-size: 24px;
}

.sub-title {
    font-size: 14px;
    color: #c9c9c9;
    margin-bottom: 5px;
}

.goods-list {
    margin-bottom: 20px;
}

td .dropdown-toggle {
    padding: 5px 10px;
    height: auto;
    border-radius: 5px;
    background: none;
    border: 1px solid #27272a;
    color: #ffffff;
}

.dropdown-menu a,
.dropdown-menu button {
    color: #ffffff;
    border: none;
    text-align: left;
    width: 100%;
    display: block;
    transition: all 0.3s ease-in-out;
    padding: 5px 10px;
    font-size: 12px;
}

.dropdown-menu a i,
.dropdown-menu button i {
    margin-right: 10px;
}


.dropdown-menu a:hover,
.dropdown-menu button:hover {
    background: #05060a;
}

button.sidenav-item {
    background: none;
    border: none;
}

.dropdown-toggle::after {
    margin-left: 10px;
}

.dropdown-menu a.sidenav-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

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

.nav-side-left .sidenav-item.sidenav-item-header {
    background: #05060a;
    color: #a1a1aa;
    border-radius: 50px;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    margin-bottom: 20px;
    display: none;
}


.modal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed #ffffff29;
    padding: 5px 0px;
    min-height: 46px;
}

.modal-row.last-row {
    border-bottom: none;
}


.modal-row .form-label {
    margin-bottom: 0px;
}

.modal-row .total_price_box {
    margin-bottom: 0px;
}

.modal-row .quantity-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
}

.modal-row .quantity-box button {
    padding-inline: 15px;
    padding: 0;
    color: #fff;
    border: none;
    cursor: pointer;
    width: 20px !important;
    height: 20px !important;
    max-width: 20px;
    min-width: 20px;
    font-size: 10px;
    border: 1px solid #ffffff29;
}

.modal-row .quantity-box input {
    padding: 10px;
    color: #fff;
    width: 40px;
    text-align: center;
    font-size: 14px;
    margin: 0px;
    font-weight: 700;
    background: none;
    border: none;
    width: 100%;
}

.modal-body .buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-block: 10px;
    gap: 10px;
    flex-wrap: nowrap;
}

.product-list-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}


.product-data {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.product-data img {
    width: 60px;
    object-fit: cover;
}

.product-data .product-details .tags {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.payment-methods .payment-method-radio {
    display: none;
}

.payment-methods label.payment-method {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
    background-color: #1a202633;
    color: #fff;
    padding: 10px;
    border: solid 2px transparent;
    background: #0000003d;
    border: 1px solid #ffffff94;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    filter: grayscale(1) brightness(0.5);
    transition: all 0.1s ease-in-out;
}

.payment-methods input.payment-method-radio:checked+label.payment-method {
    filter: none;
    border: 1px solid #ffffff25;
}

.payment-methods label.payment-method img {
    width: 25px;
    border-radius: 50%;
    object-fit: cover;
}


.category-title {
    width: fit-content;
    border: solid 2px transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    color: #fff;
    padding: 10px 25px;
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
    background-color: #1a20263b;
    text-align: center;
    border-radius: 15px;
    font-size: 20px;
    margin: auto;
    margin-bottom: 20px;
    background-image: linear-gradient(#050608, #130d0f), radial-gradient(circle at top left, #b4318c, #f6993a);
}


.star-rating {
    display: flex;
    align-items: center;
}

.star-rating label {
    font-size: 24px;
    color: #2d2d2d;
    cursor: pointer;
    transition: color 0.3s;
}

.star-rating .filled {
    color: #ffc107;
}

.star-rating input {
    display: none;
}



@media screen and (max-width: 991px) {
    .mobile-hide {
        display: none !important;
    }

}