* {
    box-sizing: border-box;
    font-family: SFM;
    margin: 0;
}

html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    max-width: 100%;
    width: 1200px;
    margin: auto;
    background-color: transparent;
}

main {
    padding: 0px 14px;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

body.full {
    width: 100%;
    padding: 70px 40px 24px;
}

html {
    background-image: url("../images/background.png");
    background-size: cover;
    background-position: center;
}

a {
    text-decoration: none;
}

@font-face {
    font-family: SFL;
    src: url("./fonts/SFProARRegular.ttf");
}

@font-face {
    font-family: SFM;
    src: url("./fonts/SFProARRegular.ttf");
}

@font-face {
    font-family: SFB;
    src: url("./fonts/SFProARSemiBold.ttf");
}

@font-face {
    font-family: SFB;
    src: url("./fonts/SFProARSemiBold.ttf");
}

@font-face {
    font-family: BebasKai;
    src: url("./fonts/BebasKai.ttf");
}

@font-face {
    font-family: Montserrat;
    src: url("./fonts/Montserrat-Bold.ttf");
}

@font-face {
    font-family: FugazOne;
    src: url("./fonts/FugazOne-Regular.ttf");
}

:root {
    --main_color: hsla(222, 43%, 32%, 1);
    --orange_color: hsla(42, 100%, 50%, 1);
}

p {
    margin: 0;
}

/*start style*/
.navbar {
    display: block;
    z-index: 999;
    width: 100%;
    max-width: 100%;
    height: 66px;
    margin-bottom: 10px;
}

.navbar .container {
    padding: 0px 4px;
}

.navbar-brand {
    margin: 0;
    height: 66px;
}

.navbar-brand img {
    height: 100%;
}

.offcanvas {
    max-width: 75%;
}

.navbar .nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 430px;
    padding: 8px 22px 0px;
}

.navbar .nav #logo {
    width: 112px;
    height: 56px;
    position: relative;
}

.navbar .nav .menu {
    background-color: transparent;
    border: none;
}

.navbar .nav #menu {
    position: relative;
}

.navbar .menuParts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    border-radius: 5px;
    background-color: white;
    width: 150px;
    direction: rtl;
    position: absolute;
    top: 92%;
    left: 50%;
    transition: 0.3s;
    opacity: 1;
    width: 90%;
    transform: translateX(-50%);
}

.navbar .menuParts .navLink {
    font-size: 12px;
    color: #6c6d6f;
    text-decoration: none;
    text-align: start;
    font-family: SFB;
    font-weight: 600;
}

.navbar .menuParts.none {
    opacity: 0;
    height: 0%;
    padding: 0;
}

.navbar-toggler {
    border: 0 !important;
    padding: 2px 4px;
}

.topNav {
    top: 0;
    position: absolute;
    overflow: hidden;
    z-index: -1;
}

.topleft {
    left: 0;
}

.topRight {
    right: 0;
}

.toggler-icon {
    width: 30px;
    height: 3px;
    background-color: #bc0101;
    display: block;
    transition: all 0.2s;
}

/* Adds Space between the lines */
.middle-bar {
    margin: 5px auto;
}

/* State when navbar is opened (START) */
.navbar-toggler .top-bar {
    transform: rotate(45deg);
    transform-origin: 10% 10%;
}

.navbar-toggler .middle-bar {
    opacity: 0;
    filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
    transform: rotate(-45deg);
    transform-origin: 10% 90%;
}

/* State when navbar is opened (END) */

/* State when navbar is collapsed (START) */
.navbar-toggler.collapsed .top-bar {
    transform: rotate(0);
}

.navbar-toggler:focus {
    box-shadow: none;
    border: none !important;
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
    filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
    transform: rotate(0);
}

/* State when navbar is collapsed (END) */

/* Color of Toggler when collapsed */
.navbar-toggler.collapsed .toggler-icon {
    background: hsla(0, 0%, 0%, 1);
    border-radius: 20px;
}

.navbar-collapse {
    align-items: center;
}

.acountImg {
    width: 47px;
    height: 47px;
    border-radius: 50%;
}

.acountImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;

}

.navbar-toggler2 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.collapse .navbar-nav {
    display: none;
}

.navbar-expand-lg .navbar-toggler {
    display: block;
}

.allMenue {
    position: relative;
}

.allMenue ul {
    background: white;
    padding: 14px 14px 20px 40px;
    border-radius: 15px 0px 0px 15px;
    position: absolute;
    top: 0;
    width: 280px;
    visibility: hidden;
    transition: 0.4s;
    right: -20px;
    opacity: 0;
    top: -20px;
    z-index: 50;
}

.allMenue.active ul {
    visibility: visible;
    right: 0;
    opacity: 1;
    top: 0;
}

.allMenue {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 5000;
    top: 0;
    left: 0;
    visibility: hidden;
}

.allMenue.active {
    visibility: visible;
}

.allMenue.active .backSlide {
    position: fixed;
    height: 100%;
    width: 100%;
    background: hsla(210, 1%, 31%, 0.5);
    top: 0;
    left: 0;
    z-index: 0;
}

html[dir="ltr"] .allMenue ul {
    right: auto;
    left: 0;
    border-radius: 0px 15px 15px 0px;
    padding: 14px 40px 20px 14px;
}

.allMenue ul li {
    border-bottom: 0.5px solid hsla(0, 0%, 0%, 0.3);
    padding-top: 6px;
}

.allMenue ul li:last-of-type {
    border: none;
}

.allMenue ul li .navLink {
    color: black;
    text-decoration: none;
    font-size: 14px;
    font-family: SFB;
    padding: 10px;
    display: block;
    background-color: transparent;
    border: none;
}

.allMenue ul li .lang {
    box-shadow: 0px 4px 4px 0px hsla(0, 0%, 0%, 0.25);
    background: hsla(0, 0%, 100%, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-radius: 12px;
    min-height: 48px;
    height: auto;
    text-decoration: none;
    padding: 14px 10px;
    min-width: 160px;
    width: fit-content;
}

.allMenue ul li .lang img {
}

.allMenue ul li .lang p {
    color: hsla(221, 39%, 11%, 1);
    font-size: 14px;
    font-family: SFB;
}

html[dir="rtl"] .allMenue ul li .lang p {
    font-family: Montserrat;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 992px) {
    .navbar ul {
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 410px) {
    .navbar-brand {
        height: 58px;
    }
}

/*end navbar*/
.card {
    margin: 15px 0 20px;
    width: 380px;
    display: flex;
    justify-content: center;
    position: relative;
    margin-inline: auto;
    padding-block: 8px;
    padding-bottom: 180px;
    border-radius: 23px;
    background-color: rgba(255, 255, 255, 1);
}

.card .car-details {
    width: 96%;
    position: absolute;
    bottom: 20px;
    display: flex;
    align-items: center;
    text-align: end;
    justify-content: space-around;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    font-family: SFB;
    font-size: 16px;
    left: 50%;
    transform: translateX(-50%);
}

.card .car-details p {
    font-weight: 400;
}

.card .car-details .details {
    width: 40%;
    font-weight: 900;
}

.card .car-details .price {
    width: 40%;
    font-family: SFB;
    font-weight: 800;
    line-height: 18px;
}

.card .car-details .code,
.card .car-details .num,
.number-plate .code,
.number-plate .num {
    font-family: SFL;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.card .car-details .star {
    position: relative;
    width: 5%;
}

.card .car-details .star img {
    width: 36px;
    height: 36px;
    position: relative;
    top: -22px;
}

.contact {
    width: 90%;
    margin-inline: auto;
    display: flex;
    justify-content: center;
    direction: rtl;
    gap: 20px;
}

.contact {
    /* position: absolute; */
    width: 100%;
    text-align: center;
    justify-content: center;
    column-gap: 15px;
}

.contact .call-us,
.contact .chat-with-us {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47%;
    height: 38px;
    border-radius: 4px;
    background: rgba(25, 37, 64, 1);
    color: white;
    font-family: SFB;
    font-weight: 500;
}

.contact .call-us::before,
.contact .chat-with-us::before {
    position: relative;
    right: 8px;
    top: 2.2px;
}

.contact .call-us::before {
    content: url("./images/tel.png");
}

.contact .chat-with-us::before {
    content: url("./images/whatsapp.png");
}

.number-plate {
    position: absolute;
    left: 50%;
    bottom: 10%;
    display: flex;
    align-items: center;
    transform: translateX(-50%);
    gap: 10px;
}

.number-plate .code {
    position: absolute;
    font-size: 30px;
    bottom: -22.5px;
    left: 28px;
}

.number-plate .num {
    position: absolute;
    bottom: -30px;
    left: 35%;
    font-size: 40px;
    letter-spacing: 5px;
    font-weight: 500 !important;
}

.car .imgCar {
    display: block;
    margin: auto;
}

.car {
    margin-bottom: 10px;
}

.car-number {
    position: relative;
}

/*fillter*/
.fillter {
    font-family: SFB;
}

.fillter .content {
}

.fillter .content .boxTwo {
    flex: 1;
}

.fillter .content .parts {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    transition: 0.3s;
}

.fillter .content .part {
    max-width: calc(33% - 4px);
    width: 21%;
    border: 1px solid #bcbec0;
    flex: 1;
    min-width: 30%;
}

.fillter .content .part,
.fillter .content .form-control {
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 4px;
}

.fillter .content .form-control {
    width: 100%;
}

.fillter .content .part input {
    color: #192540;
    font-family: SFB;
    font-size: 14px;
    max-width: 100%;
    border: none;
    height: 34px;
    border-radius: 4px;
    outline: none;
    padding: 4px 8px;
    width: 100%;
}

html[dir='rtl'] .fillter .content .part input {
    direction: rtl;
}

.fillter .content .part input::placeholder {
    color: #192540;
    font-family: SFB;
    font-weight: bold;
    font-size: 14px;
}

.fillter select {
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: SFB;
    font-weight: bold;
    border: none;
    box-shadow: none !important;
    height: 34px !important;
    min-height: 34px !important;
}

.fillter .form-group {
    width: 100%;
}

.fillter select:focus {
    font-family: SFB;
    font-size: 14px;
    font-weight: bold;
}

.fillter .content .sel::before {
    border: none;
    width: 12px;
    height: 22px;
    background-image: url(./images/Vector.png);
    background-repeat: no-repeat;
    background-position: center;
    background-position-y: 6px;
    background-size: 12px;
    left: 10px;
}

.fillter .content .part1 {
    display: flex;
    gap: 6px;
    border-radius: 4px;
    padding: 4px 10px;
    background: #eee9dc;
    width: 220px;
    height: 36px;
    align-items: center;
}

.fillter .content .part .dropdown {
    direction: rtl;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    padding: 6px;
}

.fillter .dropdown-toggle::after {
    border: none;
    width: 12px;
    height: 22px;
    background-image: url("./images/Vector.png");
    background-repeat: no-repeat;
    background-position: center;
    background-position-y: 6px;
    background-size: 12px;
}

.fillter .content h4 {
    margin: 0px;
    font-size: 16px;
    color: rgba(25, 37, 64, 1);
    font-weight: bold;
    font-family: SFB;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fillter .content .part1 h4 {
    font-family: SFB;
    font-size: 15px;
}

.fillter .content .part ul {
    max-width: 100%;
    min-width: max-content;
    inset: 5px auto auto -21px !important;
    background: #eee9dc;
    padding: 8px 4px;
    border-radius: 8px;
}

.fillter .content .part ul li {
}

.fillter .content .part ul a {
    font-size: 14px;
    transition: 0.2s;
    padding: 4px 8px;
    border-radius: 4px;
}

.fillter .content .part ul a:hover {
    color: #bc0101;
    background-color: #1b2541;
}

.fillter .btnSearch {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main_color);
    color: #bc0101;
    border-radius: 6px;
    width: 100%;
    height: 36px;
    border: none;
    padding: 5px 10px;
    gap: 10px;
}

.fillter .btnSearch svg {
    width: 22px;
}

.fillter .btnSearch p {
    color: var(--orange_color);
    font-family: SFB;
    border-radius: 8px;
    font-size: 17px;
    border: none;
}

.fillter .content .showMore {
    color: #164fd2;
    font-size: 15px;
    font-family: SFB;
    background-color: transparent;
    border: none;
    margin: 16px 0px 0px;
}

.fillter .content .part.more {
    display: none;
    transition: 0.3s;
}

.fillter .content.showMorePart .part.more {
    display: block;
}

.fillter .content.showMorePart .showMore {
    display: none;
}

html[dir="ltr"] .fillter .accordion-button::after {
    margin-left: auto;
    margin-right: 0;
}

html[dir="rtl"] .fillter .accordion-button::after {
    margin-left: 0;
    margin-right: auto;
}

.fillter .accordion-button::after {
    background-image: url("../images/acc.svg") !important;
}

.fillter .accordion-body {
    padding: 4px 20px 20px;
}

.fillter .accordion-item {
    border-radius: 12px !important;
}

.fillter .accordion-header {
    background-color: transparent;
}

.fillter .accordion-header .accordion-button {
    background-color: var(--orange_color);
    color: var(--main_color);
    font-family: SFB;
    font-size: 20px;
    border-radius: 10px !important;
    height: 46px;
}

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

    .fillter .content .part {
        max-width: calc(50% - 4px);
        width: 48%;
        min-width: 48%;
    }

    .fillter .content .part1 {
        width: 100%;
    }
}

/*nextContent*/
.nextContent {
    direction: rtl;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 900px;
    margin: 20px auto 24px;
    padding: 0px 20px;
}

.nextContent button {
    flex: 1;
    background: var(--orange_color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    max-width: 182px;
}

.nextContent button p {
    color: var(--main_color);
    font-size: 16px;
    font-family: SFB;
    margin: 0;
}

.nextContent button p img {
}

.nextContent .next {
    flex-direction: row-reverse;
}

.nextContent .prev {
}

.nextContent .prev img {
    transform: rotate(180deg);
}

@media (max-width: 500px) {
    .nextContent {
        padding: 0px 20px;
    }
}

/*sliderImgs*/
.sliderImgs {
    width: 100%;
    margin: auto;
}

.sliderImgs .swiper-horizontal {
    touch-action: pan-y;
    width: 100%;
    height: auto;
}

.sliderImgs .swiper-pagination {
    top: 90%;
}

.sliderImgs img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

@media (max-width: 440px) {
    .sliderImgs {
        width: 100%;
    }

    .sliderImgs .swiper-horizontal {
        width: 100%;
    }
}

/*cars*/

.swiper-pagination-bullet {
    background: white;
    opacity: 0.3;
    transition: 0.2s;
}

.swiper-pagination-bullet-active {
    background-color: var(--orange_color);
    opacity: 1;
}

.successBox {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 5000;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #80807f8a;
    transition: 0.5s;
    opacity: 1;
}

.successBox.false {
    opacity: 0 !important;
    display: none;
}

.successBox .content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    width: 400px;
    padding: 24px;
    max-width: 100%;
    border-radius: 38px;
    text-align: center;
    background-color: white;
}

.successBox .content img {
    width: 236px;
    height: 236px;
    margin: auto;
}

.successBox .content h2 {
    font-size: 28px;
    font-weight: 800;
    font-family: SFB;

    text-align: center;
    margin: 0;
}

.successBox .content p {
    font-family: SFB;
    font-size: 14px;
    text-align: center;
    margin: 0;
}

.successBox .content a {
    background: rgba(25, 37, 64, 1);
    width: 290px;
    padding: 18px;
    max-width: 94%;
    border-radius: 4px;
    color: #bc0101;
    font-size: 16px;
    font-family: SFB;
    text-decoration: none;
}

.page {
    margin: 20px 0px;
    padding: 0px 12px;
}

.page h1 {
    font-size: 26px;
    font-family: SFB;
    text-align: start;
    direction: rtl;
}

.page p {
    font-size: 18px;
    font-family: SFB;
}

.page li {
    font-size: 18px;
    font-family: SFB;
}

/*cars New*/
/*cars*/

.contactCar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.contactCar a {
    padding: 6px 8px;
    border-radius: 4px;
    background-color: rgba(25, 37, 64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    text-decoration: none;
}

.contactCar a p {
    color: white;
    font-size: 10px;
    font-family: SFB;
    margin: 0;
}

.contactCar a img {
    height: 14px;
    width: auto;
}

/*con*/
.con {
    padding: 0px 22px;
    margin-top: 20px;
}

/*step*/
.step {
    width: 100%;
    background-color: #192540;
    color: #bc0101;
    text-align: center;
    padding: 8px 18px;
    border-radius: 5px;
    font-family: SFB;
    margin-bottom: 4px;
    font-size: 15px;
}

/*flaps*/
.flaps {
    direction: rtl;
}

.flaps .headFlaps {
    background-color: #bc0101;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-radius: 6px;
    padding: 4px 10px;
    height: 46px;
    margin-bottom: 12px;
}

.flaps .headFlaps h2 {
    font-size: 15px;
    font-family: SFB;
    font-weight: 700;
    color: #192540;
    margin: 0;
}

.flaps .headFlaps button {
    background-color: transparent;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.flaps .headFlaps button svg {
    width: 30px;
    height: 30px;
}

.flaps .allFlaps {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.flaps .allFlaps .flap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.flaps .allFlaps .flap .part {
    flex: 1;
    width: 86px;
}

.flaps .allFlaps .flap .part.code {
    width: 64px;
}

.flaps .allFlaps .flap .part .form-group {
    width: 100%;
    height: 34px;
    min-height: 34px;
}

.flaps .allFlaps .flap .part .form-group .form-control {
    min-height: 34px;
    height: 34px;
    font-size: 14px;
    color: #6d6e70;
    box-shadow: none;
    font-family: SFB;
    border: none;
    font-weight: 600;
}

.flaps .allFlaps .flap .part input {
    max-width: 100%;
    border: none;
    height: 34px;
    border-radius: 5px;
    font-size: 14px;
    font-family: SFB;
    color: #6d6e70;
    font-weight: 600;
    outline: none;
    padding: 0px 6px;
    width: 100%;
}

.flaps .allFlaps .flap .part input::placeholder {
    font-family: SFB;

    font-weight: 600;
    font-size: 14px;
    color: #6d6e70;
}

.flaps .allFlaps .flap .delete {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    width: 28px;
    border-radius: 50%;
    border: 3px solid red;
    background: transparent;
}

.flaps .allFlaps .flap .delete p {
    font-size: 22px;
    margin: 0;
    margin-bottom: 7px;
    color: red;
    font-weight: 700;
    font-family: cursive;
}

.flaps .allFlaps .flap:first-of-type .delete {
    display: none;
}

/*stepTwo*/
.stepTwo {
    margin-bottom: 200px;
    direction: rtl;
}

.stepTwo .part {
    margin-bottom: 16px;
    margin-top: 22px;
}

.stepTwo .part label {
    font-size: 15px;
    font-family: SFB;
    margin-bottom: 4px;
    color: black;
    font-weight: 600;
}

.stepTwo .part input {
    width: 100%;
    height: 34px;
    border: none;
    border-radius: 6px;
    font-family: SFB;
    font-weight: 600;
    font-size: 14px;
    color: #192540;
    padding: 8px 10px;
    outline: none;
}

.stepTwo .part input::placeholder {
    font-family: SFB;

    font-weight: 600;
    font-size: 14px;
    color: #6d6e70;
}

.stepTwo label {
    font-size: 15px;
    font-family: SFB;
    margin-bottom: 4px;
    color: black;
    font-weight: 600;
}

.stepTwo .backGround {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.stepTwo .backGround button {
    flex: 1;
    height: 34px;
    border-radius: 5px;
    padding: 8px 10px;
    border: none;
    font-size: 15px;
    font-family: SFB;
    text-align: start;
    font-weight: 600;
}

.stepTwo .backGround .light {
    background-color: white;
    color: #6d6e70;
    border: 1px solid;
}

.stepTwo .backGround .dark {
    background-color: black;
    color: white;
}

.stepTwo .colors {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 24px;
}

.stepTwo .colors button {
    width: 70px;
    height: 35px;
    border-radius: 5px;
    border: 1px solid;
    flex: 1;
}

.stepTwo .colors button.active {
    border: 2px solid black;
}

.btnPage1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 38px;
    width: 100%;
    background-color: #192540;
    border-radius: 6px;
    color: #bc0101;
    font-size: 16px;
    margin: 0;
    font-family: SFB;
    border: none;
    max-width: 400px;
    margin: auto;
    text-decoration: none;
}

.btnPage1:hover {
    color: #bc0101;
}

.btnPage2 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 46px;
    width: 100%;
    background-color: transparent;
    border-radius: 6px;
    color: #192540;
    font-size: 16px;
    margin: 0;
    font-family: SFB;
    border: none;
    border: 1px solid #192540;
    max-width: 400px;
    margin: 10px auto;
    text-decoration: none;
}

.btnPage2:hover {
    color: #192540;
}

.btnPage3 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    width: 100%;
    background-color: var(--main_color);
    box-shadow: 4px 4px 4px 0px hsla(0, 0%, 0%, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    margin: 0;
    font-family: SFB;
    border: none;
    border: 1px solid var(--main_color);
    text-decoration: none;
    transition: 0.5s;
}

.btnPage3:hover {
    color: #192540;
    background-color: var(--orange_color);
    border: 1px solid var(--orange_color);
    box-shadow: 6px 6px 6px 0px #f8b2008c;
}

.stepTwo .btnPage2 {
    margin-bottom: 22px;
}

.stepTwo .upLoadImg {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 80px;
    width: 100%;
    background-color: #192540;
    border-radius: 6px;
}

.stepTwo .upLoadImg p {
    color: #bc0101;
    font-size: 32px;
    margin: 0;
    font-family: SFB;
}

.stepTwo .upLoadImg svg {
    width: 40px;
    height: 40px;
}

.stepTwo .upLoadImg .LoadInput {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 50;
    opacity: 0;
    cursor: pointer;
    border-radius: 6px;
}

/*shap*/
.shap {
    position: relative;
    width: 430px;
    height: 480px;
    direction: rtl;
    margin: 0px auto 26px;
}

.shap .imgShap {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: black;
}

.shap .imgShap::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("./images/back.png");
    background-size: cover;
}

.shap .imgShap.white::before {
    opacity: 40%;
}

.shap .info {
    position: absolute;
    top: calc(50% - 28px);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 94%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shap .info .part1 {
    display: flex;

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.shap .info .part {
    max-width: 240px;
}

.shap .info .svgImg {
    height: 50px;
    margin-bottom: 4px;
}

.shap .info .svgImg svg {
}

.shap .info h3 {
    color: white;
    font-size: 22px;
    margin: 0;
    letter-spacing: -2px;
}

.shap .contactShap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #e50000;
    padding: 10px;
    z-index: 50;
}

.shap .contactShap h4 {
    font-size: 15px;
    color: white;
    font-family: SFB;
    margin: 0;
}

.shap .contactShap p {
    direction: ltr;
    font-size: 15px;
    color: white;
    margin: 0;
    font-family: SFB;
}

.shap .comment {
    position: absolute;
    bottom: 44px;
    width: 100%;
}

.shap .comment p {
    font-size: 15px;
    color: white;
    padding: 0px 12px;
    font-family: SFB;
    text-align: end;
    margin: 0;
}

.shap .info.twoPart {
    gap: 20px;
    align-items: flex-start;
}

.shap .info.twoPart .part1 {
}

.shap .info.twoPart .part1 .part {
}

.shap .info.twoPart .part1 .part .svgImg {
    height: 44px;
}

.shap .info.twoPart .part1 .part .svgImg iframe {
}

.shap .info.twoPart .part1 .part h3 {
    font-size: 18px;
}

.topBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 14px 0px;
    position: fixed;
    bottom: 44px;
    right: 30px;
    z-index: 50000;
}

.topBtn button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--orange_color);
    width: 46px;
    height: 46px;
    padding: 4px;
    border-radius: 50%;
    border: none;
    transition: 0.5s;
}

.topBtn button:hover {
    box-shadow: 4px 7px 22px var(--main_color);
}

.topBtn button svg {
}

.paginationBox {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    direction: ltr;
}

.paginationBox .page-item {
    background-color: var(--orange_color);
    border-radius: 0px;
    width: 34px;
    height: 38px;
    display: flex;
    align-items: center;
}

.paginationBox .page-item span {
    color: #1b2541;
}

.paginationBox .page-item .page-link {
    background-color: var(--orange_color);
    border: none;
    border-radius: 0px;
    color: #1b2541;
    transition: 0.3s;
    border-right: 1px solid #fdefbd;
}

.paginationBox .page-item.active {
}

.paginationBox .page-item.active .page-link {
    color: var(--main_color);
}

.paginationBox .page-item.active span {
    color: wheat;
}

.paginationBox .pagination .page-item:first-of-type {
    border-radius: 8px 0px 0px 8px;
}

.paginationBox .pagination .page-item:first-of-type .page-link {
    border-radius: 8px 0px 0px 8px;
}

.paginationBox .pagination .page-item:last-of-type {
    border-radius: 0px 8px 8px 0px;
}

.paginationBox .pagination .page-item:last-of-type .page-link {
    border-radius: 0px 8px 8px 0px;
    border: none;
}

/*loading*/
.loading {
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #352a097d;
    position: fixed;
    inset: 0;
    z-index: 10000;
    direction: ltr;
    display: none;
}

.loading.active {
    display: flex;
}

.wave {
    -webkit-box-reflect: below -12px linear-gradient(transparent, rgba(0, 0, 0, 0.2));
    /*reflection for any element*/
}

.wave span {
    display: inline-block;
    color: var(--orange_color);
    font-size: 4em;
    text-transform: uppercase;
    animation: animate 1.5s ease-in-out infinite;
    animation-delay: calc(0.1s * var(--c));
}

@keyframes animate {
    20% {
        transform: translateY(-20px);
    }
}

/*empty*/
.pageNum {
    min-height: 60vh;
}

.pageNum1 {
    margin: 30px auto;
}

.emptyBox {
    display: none;
}

.empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 50px auto;
}

.empty .empty-img {
    max-width: 100%;
}

.empty .title {
    font-family: SFB;
    font-size: 24px;
    color: #192540;
    text-align: center;
}

.dateNumber {
}

.dateNumber .content {
}

.dateNumber .content .date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.dateNumber .content .date .craete {
}

.dateNumber .content .date .craete p {
    font-size: 16px;
    font-family: SFB;
}

.dateNumber .content .date .sattecard {
}

.dateNumber .content .date .sattecard .stateCar {
    background-color: #bc0101;

    border-radius: 4px;
    font-family: SFB;
    font-size: 12px;
    width: 54px;
    height: 20px;
    text-align: center;
    margin: 0 auto;
}

.dateNumber .content .date h2 {
    font-size: 14px;
    font-family: SFB;
    margin-bottom: 2px;
    color: #87837d;
}

.dateNumber .content .date p {
    font-family: SFB;
    font-size: 16px;
}

.dateNumber .content .btnPage1 {
    width: 140px;
    text-decoration: none;
    margin: 0;
}

.dateNumber .content .btnPage1:hover {
    color: #bc0101;
}

/*login*/
.login {
    margin: 60px auto 20px;
    min-height: 54vh;
}

.login h1 {
    text-align: center;
}

.login form {
}

.login form .btnPage1 {
    height: 56px;
    max-width: 380px;
    color: white;
    font-size: 16px;
    font-family: SFB;
    margin-bottom: 16px;
    margin-top: 20px;
}

.login form .btnPage2 {
    height: 56px;
    max-width: 380px;
    border: none;
}

.login form .passcode-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 14px;
    margin: 0px auto 20px;
    direction: ltr;
}

.login form .passcode-wrapper input {
    width: 100%;
    max-width: 74px;
    height: 58px;
    text-align: center;
    padding: 0px;
    border: none;
    border-radius: 8px;
    font-family: FugazOne;
    color: hsla(0, 0%, 62%, 1);
    border: 1px solid #0a1a338a;
}

.login.otp h3 {
    font-size: 14px;
    font-family: SFB;
    font-weight: 400;
    text-align: center;
    color: #192540;
}

/*pageMyArts*/
.pageMyArts {
    margin: 50px auto;
}

.pageMyArts .infoUser {
}

.pageMyArts .infoUser h2 {
    font-size: 18px;
    font-family: SFB;
    margin-bottom: 8px;
    text-align: center;
}

.pageMyArts .infoUser h3 {
    font-size: 16px;
    font-family: SFB;
    text-align: center;
    margin-bottom: 20px;
    direction: ltr;
}

html[dir="ltr"] .pageMyArts .infoUser h3 {
}

.pageMyArts .btnProfile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px 20px;
    flex-wrap: wrap;
    margin: 10px 0px 27px;
}

.pageMyArts .infoUser .btnPage1,
.pageMyArts .infoUser .btnPage2 {
    text-decoration: none;
    max-width: 151px;
    margin: 0;
}

.pageMyArts h4 {
    font-size: 18px;
    font-family: SFB;

    margin-bottom: 10px;
}

/*userInfo*/
.userInfo {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.userInfo img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.userInfo .detailsUser {
}

.userInfo .detailsUser h3 {
    font-size: 12px;
    font-family: SFB;
    margin-bottom: 2px;
}

.userInfo .detailsUser h4 {
    font-size: 12px;
    font-family: SFB;
    margin: 0;
}

.dateNumber .contactCar {
    margin-top: 30px;
    gap: 16px;
    margin-bottom: 30px;
}

.dateNumber .contactCar a {
    max-width: 190px;
    height: 48px;
}

.dateNumber .contactCar a p {
    font-size: 16px;
    font-family: SFB;
}

.dateNumber .contactCar a img {
    width: 20px;
    height: auto;
}

.dateNumber .date2 p {
    font-size: 12px !important;
}

/*pop*/
.popLogin {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 5000;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #80807f8a;
    transition: 0.5s;
    opacity: 1;
}

.popLogin.false {
    opacity: 0 !important;
    display: none;
}

.popLogin .content {
    width: 400px;
    padding: 32px;
    max-width: 100%;
    border-radius: 12px;
    text-align: center;
    background-color: #efe9dd;
}

.popLogin .content img {
    width: 140px;
    height: 70px;
    margin: 0px auto 22px;
}

.popLogin .content h2 {
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    font-family: SFB;
    color: #192540;
}

.popLogin .content h3 {
    font-size: 44px;
    font-weight: 800;
    font-family: SFB;
    line-height: 120%;
    text-align: center;
    margin-bottom: 12px;
    color: #192540;
}

.popLogin .content p {
    font-family: SFB;
    font-size: 14px;
    text-align: center;
    margin-bottom: 24px;
}

.popLogin .content a {
    background: rgba(25, 37, 64, 1);
    width: 290px;
    padding: 10px;
    max-width: 230px;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    font-family: SFB;
    text-decoration: none;
    display: block;
    margin: 8px auto;
}

.popLogin .content a.btn2 {
    background-color: transparent;
    color: #192540;
    border: 1px solid;
}

.successBox .boxBtnPop {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.successBox .boxBtnPop .link1 {
    max-width: 164px;
    height: 56px;
    font-family: SFB;
}

.successBox .boxBtnPop .link2 {
    max-width: 164px;
    height: 56px;
    font-family: SFB;
    color: #192540;
    border: 1px solid;
    background-color: transparent;
}

.successBox2 .content h2 {
    font-family: SFB;
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 300;
}

.successBox2 .content {
    gap: 0px;
    max-width: 94%;
}

.successBox2 .content p {
    margin-bottom: 40px;
}

.successBox2 .content img {
    margin-bottom: 2px;
    max-width: 244px;
    height: 244px;
    border-radius: 50%;
}

/*active acount*/

.activeAcount {
    width: 100%;
    display: flex;
    justify-content: center;
    min-height: 66vh;
    padding: 40px 0px;
}

.activeAcount .content {
    display: flex;
    flex-direction: column;
    gap: 20px;

    align-items: center;
    width: 400px;
    max-width: 100%;
}

.activeAcount .content img {
    margin-bottom: 2px;
    max-width: 244px;
    height: 244px;
    border-radius: 50%;
    width: 100%;
    object-fit: contain;
}

.activeAcount .content h2 {
    font-size: 28px;
    font-weight: 800;
    font-family: SFB;

    text-align: center;
    margin: 0;
}

.activeAcount .content p {
    font-family: SFB;
    font-size: 14px;
    text-align: center;
    margin: 0;
}

.activeAcount .content a {
    background: rgba(25, 37, 64, 1);
    width: 290px;
    padding: 18px;
    max-width: 94%;
    border-radius: 4px;
    color: #bc0101;
    font-size: 16px;
    font-family: SFB;
    text-decoration: none;
    text-align: center;
}

.activeAcount .boxBtnPop {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.activeAcount .boxBtnPop .link1 {
    max-width: 164px;
    height: 56px;
    font-family: SFB;
}

.activeAcount .boxBtnPop .link2 {
    max-width: 164px;
    height: 56px;
    font-family: SFB;
    color: #192540;
    border: 1px solid;
    background-color: white;
}

.activeAcount .content h2 {
    font-family: SFB;
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 300;
}

.activeAcount .content {
    gap: 0px;
    max-width: 94%;
}

.activeAcount .content p {
    margin-bottom: 24px;
}

.activeAcount .content img {
    margin-bottom: 2px;
    max-width: 244px;
    height: 244px;
    border-radius: 50%;
}

/*start footer*/
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

footer p {
    margin: 3px 0;
    font-family: SFB;
}

footer {
    width: 100%;
    height: max-content;
    background-color: black;
    color: white;
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-size: 12px;
    font-style: normal;
    max-width: 100%;
    margin-top: 30px;
}

footer p span {
    direction: ltr;
}

footer .footer-container {
    gap: 40px;
    display: flex;
    padding: 28px 22px 0px;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .footer-container .social-links {
    margin-top: 18px;
    display: flex;
    gap: 20px;
}

footer .footer-container .social-links a:nth-child(1)::before,
footer .footer-container .social-links a:nth-child(2)::before,
footer .footer-container .social-links a:nth-child(3)::before {
    position: relative;
}

footer .footer-container .social-links a:nth-child(1)::before {
    content: url("./images/uil_facebook.svg");
}

footer .footer-container .social-links a:nth-child(2)::before {
    content: url("./images/uil_instagram.svg");
}

footer .footer-container .social-links a:nth-child(3)::before {
    content: url("./images/ic_baseline-tiktok.svg");
}

footer .footer-container .contact-details {
    display: block;
    direction: ltr;

}

footer .footer-container .contact-details img {
    height: 100%;
    width: auto;
    height: 58px;
}

footer .footer-container #address {
    margin-block: 10px;
    font-family: SFB;
}

footer .quick-links a {
    margin-block: 6px;
    text-decoration: none;
    color: white;
    font-family: SFB;
}

footer .quick-links {
    width: 116px;

    min-width: auto;
}

footer .quick-links ul {
    padding: 0;
    list-style: inside;
}

footer .quick-links ul li {
}

footer .quick-links h4 {
    width: 100px;
    font-family: SFB;
    font-size: 16px;
}

hr {
    width: 100%;
}

footer .copy_rights {
    font-size: 10px;
    font-weight: 300;
    box-sizing: border-box;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
}

footer .developed_by {
    position: relative;
    padding-block: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.developed_by p {
    font-family: SFB;
    text-align: end;
    margin: 0;
    width: 60px;
}

@media (max-width: 390px) {
    footer .footer-container {
        gap: 20px;
        justify-content: space-between;
        padding: 20px 0px 0px;
    }
}

/*end footer*/

/*btnCategories*/
.btnCategories {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 14px;
}

.btnCategories button {
    background: hsla(215, 86%, 86%, 1);
    border: none;
    width: 100%;
    height: 56px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 9px 10px;
}

.btnCategories button p {
    color: var(--main_color);
    font-size: 18px;
    font-family: SFM;
}

.btnCategories button svg {
}

.btnCategories button.active {
    background: var(--main_color);
}

.btnCategories button.active p {
    color: white;
}

.btnCategories button.active svg {
    color: white;
}

@media (max-width: 410px) {
    .btnCategories button {
        gap: 6px;
    }

    .btnCategories button p {
        font-size: 16px;
    }

    .btnCategories {
        gap: 8px;
    }
}

/*soon*/
.soon {
}

.soon .imgsoon {
    width: 376px;
    max-width: 94%;
    height: auto;
    margin: 0px auto 22px;
    display: block;
}

.soon .part {
    display: flex;
    align-items: center;
    gap: 2px;
    justify-content: center;
}

.soon .part .part1 {
    animation: rotate 2s linear infinite;
}

.soon .part .part1 img {
    width: 302px;
    height: auto;
    max-width: 90%;
    min-width: 300px;
}

.soon .part .part2 {
    font-family: BebasKai;
    max-width: 686px;
}

.soon .part .part2 .img2 {
    display: none;
    width: 236px;
    height: auto;
    max-width: 96%;
    margin: 0px auto 30px;
    animation: rotate 2s linear infinite;
}

.soon .part .part2 h1 {
    font-family: BebasKai;
    font-weight: 400;
    font-size: 48px;
    text-align: center;
    margin-bottom: 8px;
    line-height: 82px;
}

.soon .part .part2 h2 {
    font-family: BebasKai;
    font-size: 96px;
    line-height: 96px;
    text-align: center;
}

.soon .developed_by {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-top: 100px;
}

.soon .developed_by img {
    width: 36px;
    height: auto;
    display: block;
}

.soon .developed_by p {
    font-size: 12px;
    font-family: sans-serif;
}

@keyframes rotate {
    0% {
        transform: rotate(-4deg);
    }
    50% {
        transform: rotate(4deg);
    }
    100% {
        transform: rotate(-4deg);
    }
}

@media (max-width: 768px) {
    .soon .part .part2 .img2 {
        display: block;
    }

    .soon .part .part1 img {
        display: none;
    }

    .soon .part .part2 h2 {
        font-size: 48px;
        line-height: 48px;
    }

    body.full {
        width: 100%;
        padding: 54px 10px 24px;
    }

    .soon .imgsoon {
        max-width: 228px;
    }
}

@media (max-width: 500px) {
    .soon .part {
        flex-direction: column;
    }
}

/*part carts*/
.carts {
    padding: 28px 8px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.carts .cart {
    min-width: 350px;
    flex: 1;
    max-width: 430px;
}

.carts .cart .partNumber {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 18px;
    background-color: var(--main_color);
    border-radius: 10px 10px 0px 0px;
    height: auto;
    min-width: 92px;
}

.carts .cart .partNumber .partValueNumber {
    flex: 1;
}

.carts .cart .partNumber .partValueNumber img {
    max-width: 100%;
    height: 62px;
    object-fit: contain;
    margin: auto;
    display: block;
}

.carts .cart .partNumber .partValueNumber.phoneNumber {
    position: relative;
}

.carts .cart .partNumber .partValueNumber.phoneNumber h2 {
    color: white;
    font-size: 40px;
    font-family: FugazOne;
    direction: ltr;
    letter-spacing: 1px;
    margin: -16px 0px 0px;
    line-height: 40px;
    text-align: center;
    text-wrap: nowrap;
}

.carts .cart .partNumber .partValueNumber.phoneNumber img {
    position: absolute;
    top: 100%;
    left: 10px;
    width: auto;
    height: 28px;
}

.carts .cart .partNumber .fav {
}

.carts .cart .detailsCart {
    background-color: white;
    padding: 8px 18px 20px;
    border-radius: 0px 0px 10px 10px;
}

.carts .cart .partDetails {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.carts .cart .partDetails .part1 {
}

.carts .cart .partDetails .part1 .userInformation {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-bottom: 6px;
}

.carts .cart .partDetails .part1 .userInformation .imgUser {
    position: relative;
    width: 40px;
}

.carts .cart .partDetails .part1 .userInformation .imgUser .userPhoto {
    width: 36px;
    height: 36px;
    display: block;
    border-radius: 50px;
    object-fit: cover;
}

.carts .cart .partDetails .part1 .userInformation .imgUser .verification {
    height: 10px;
    width: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 5;
}

.carts .cart .partDetails .part1 .userInformation h2 {
    color: hsla(0, 0%, 39%, 1);
    font-size: 14px;
    font-family: SFB;
}

.carts .cart .partDetails .part1 .userInformation h2 span {
    color: hsla(0, 0%, 39%, 1);
    font-size: 12px;
    font-family: SFB;
}

.carts .cart .partDetails .part1 .share {
}

.carts .cart .partDetails .part1 .share ul {
}

.carts .cart .partDetails .part1 .share ul li {
}

.carts .cart .partDetails .part1 .share ul li h2 {
}

.carts .cart .partDetails .part1 .share ul li h3 {
    font-size: 12px;
    font-family: SFB;
}

.carts .cart .partDetails .part2 {
}

.carts .cart .partDetails .part2 ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.carts .cart .partDetails .part2 ul li {
}

.carts .cart .partDetails .part2 ul li h2 {
}

.carts .cart .partDetails .part2 ul li h3 {
    font-size: 14px;
    font-family: SFB;
}

.carts .cart ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.carts .cart ul li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.carts .cart ul h2 {
    color: var(--main_color);
    font-size: 12px;
    line-height: 24px;
    font-family: SFB;
    margin: 0;
}

.carts .cart ul h3 {
    color: hsla(0, 0%, 39%, 1);

    margin: 0;
}

.price {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: -28px;
}

.price.big {
    margin: 0px auto;
}

.price h2 {
    color: var(--main_color);
    font-size: 12px;
    line-height: 24px;
    font-family: SFB;
}

.price h3 {
    color: hsla(0, 0%, 39%, 1);
    font-size: 32px;
    font-family: Montserrat;
    line-height: 54px;
}

.carts .cart .btnShowDetails {
    margin: -24px auto 0px;
    background-color: var(--orange_color);
    height: 50px;
    width: 80%;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--main_color);
    text-decoration: none;
}

.carts .cart .btnShowDetails p {
    font-family: SFB;
    font-size: 16px;
}

.carts .cart .btnShowDetails svg {
}

.line {
    display: flex;
    flex-direction: column;
    width: 11px;
    height: 26px;
    gap: 4px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.line.line2 {
    left: auto;
    right: 0;
}

.line span {
    background-color: var(--orange_color);
    height: 5px;
    width: 100%;
    display: block;
}

.fav {
    height: 56px;
    width: 56px;
    min-width: 56px;
    border: 1px solid white;
    border-radius: 16px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main_color);
    transition: 0.3s;
}

.fav:hover {
    box-shadow: 0px 0px 5px white;
}

.fav .state {
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
    background-image: url("../images/false.svg");
}

.fav.active .state {
    background-image: url("../images/true.svg");
}

@media (max-width: 420px) {
    .carts .cart .partNumber .partValueNumber.phoneNumber h2 {
        font-size: 32px;
        line-height: 34px;
    }

    .carts .cart .partNumber .partValueNumber.phoneNumber img {
        top: 92%;
    }
}

@media (max-width: 400px) {
    .carts .cart .partNumber {
        gap: 10px;
        padding: 16px 18px;
        border-radius: 10px 10px 0px 0px;
    }

    .fav {
        height: 46px;
        width: 46px;
        min-width: 46px;
    }

    .carts .cart .detailsCart {
        padding: 8px 12px 30px;
    }

    main {
        padding: 0px 8px;
    }

    .carts .cart .partDetails {
        gap: 10px;
    }

    .carts .cart ul li {
        gap: 6px;
    }

    .carts .cart .partDetails .part2 ul li h3 {
        font-size: 13px;
    }

    .carts .cart {
        min-width: 100%;
    }
}

/*end part carts*/
/*addAd*/
.addAd {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 8%;
    left: 100px;
    transform: translateX(-50%);
    z-index: 100;
}

.addAd a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 6px;
    background-color: transparent;
}

.addAd p {
    font-size: 16px;
    font-family: SFB;
    background-color: var(--main_color);
    color: white;
    border-radius: 28px;
    height: 28px;
    padding: 4px 18px;
    text-decoration: none;
    box-shadow: 0px -1px 15px 0px var(--main_color);
}

.addAd span {
    display: block;
    height: 9px;
    background-color: var(--main_color);
    position: absolute;
    top: 50%;
    width: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    box-shadow: 0px -1px 15px 0px var(--main_color);
}

.addAd .plus {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    padding: 2px;
    background-color: var(--main_color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px -1px 15px 0px var(--main_color);
}

.addAd .plus svg {
}

@media (max-width: 430px) {
    .addAd {
        left: 5px;
        transform: none;
    }
}

/*cartDetails*/
.cartDetails {
    margin-top: 24px;
}

.headTitle {
    background-color: #d9d9d9;
    color: #757575;
    font-size: 12px;
    width: 100%;
    font-family: SFB;
    min-height: 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cartDetails .headImg {
    width: 100%;
    height: auto;
    max-width: 500px;
    margin: auto;
    position: relative;
}

.cartDetails .headImg .mainImg {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
}

.cartDetails .headImg .created {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cartDetails .headImg .created img {
    height: 30px;
    border-radius: 4px;
    width: 60px;
    display: block;
}

.cartDetails .headImg .created p {
    font-size: 8px;
    color: white;
    max-width: 40px;
}

.cartDetails .headImg .numCar1 {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 266px;
    max-width: 50%;
    direction: ltr;
}

.cartDetails .headImg .numCar1 img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.cartDetails .headImg .numCar2 {
    left: 40%;
    position: absolute;
    top: 63%;
    max-width: 24%;
    transform: rotateY(10deg);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.cartDetails .headImg .numCar2 img {
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.cartDetails .headImg .priceCart {
    font-size: 20px;
    color: white;
    text-align: end;
    font-family: FugazOne;
    margin: 6px 0px 0px;
}

.cartDetails .headImg .priceCart span {
    color: var(--orange_color);
    font-size: 12px;
    font-family: FugazOne;
}

.cartDetails .headImg .forContact {
    position: absolute;
    right: 14px;
    bottom: 14px;
}

.cartDetails .headImg .forContact h3 {
    color: white;
    font-size: 12px;
    margin-bottom: 6px;
    font-family: SFB;
}

.cartDetails .headImg .forContact h4 {
    color: white;
    font-size: 8px;
    margin: 0px;
}

.cartDetails .headImg .forContact p {
    color: white;
    font-size: 20px;
    font-family: FugazOne;
    direction: ltr;
}

.cartDetails .partPrice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    margin-bottom: 16px;
}

.cartDetails .partPrice .price {
    margin: 0;
}

.cartDetails .partPrice .price h2 {
}

.cartDetails .partPrice .price h3 {
}

.cartDetails .partPrice .fav {
}

.cartDetails .artDetails {
}

.cartDetails .artDetails ul {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
    padding: 0;
}

.cartDetails .artDetails ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 2px;
    border-bottom: 0.5px solid rgba(117, 117, 117, 0.734);
}

.cartDetails .artDetails ul li h3 {
    color: var(--main_color);
    font-size: 14px;
    font-family: SFB;
    margin: 0;
}

.cartDetails .artDetails ul li p {
    font-size: 24px;
    color: hsla(0, 0%, 39%, 1);
    font-family: SFB;
    line-height: 42px;
}

.cartDetails .userInformation {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    padding-bottom: 16px;
    text-decoration: none;
}

.cartDetails .userInformation .imgUser {
    position: relative;
    width: 64px;
}

.cartDetails .userInformation .imgUser .userPhoto {
    width: 56px;
    height: 56px;
    display: block;
    border-radius: 50px;
    object-fit: cover;
}

.cartDetails .userInformation .imgUser .verification {
    height: 16px;
    width: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 5;
}

.cartDetails .userInformation h2 {
    color: hsla(0, 0%, 39%, 1);
    font-size: 16px;
    font-family: SFB;
    margin: 0;
}

.cartDetails .userInformation h2 span {
    color: hsla(0, 0%, 39%, 1);
    font-size: 12px;
    font-family: SFB;
}

.cartDetails .share {
    margin: 0px 70px 30px;
}

.cartDetails .share ul {
    display: flex;
    flex-direction: column;
    list-style: none;
}

.cartDetails .share ul li {
    display: flex;
    align-items: center;
    gap: 4px;
}

.cartDetails .share ul li h2 {
    color: var(--main_color);
    font-size: 12px;
    line-height: 24px;
    font-family: SFB;
    margin: 0;
}

.cartDetails .share ul li h3 {
    color: hsla(0, 0%, 39%, 1);
    font-size: 10px;
    margin: 0;
}

.cartDetails .callUser {
    background-color: var(--orange_color);
    border-radius: 12px;
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    border: none;
}

.cartDetails .callUser p {
    font-size: 16px;
    color: var(--main_color);
    font-family: SFB;
}

.cartDetails .callUser svg {
}

.cartDetails .comments {
    margin: 6px 0px 66px;
}

.cartDetails .comments ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    max-width: 500px;
}

.cartDetails .comments ul li {
    padding-bottom: 8px;
    border-bottom: 0.5px solid hsla(0, 0%, 46%, 1);
    display: flex;
    align-items: center;
    gap: 6px;
}

.cartDetails .comments ul li:last-of-type {
    border-bottom: none;
}

.cartDetails .comments ul li img {
    width: 62px;
    height: 62px;
    object-fit: cover;
    border-radius: 50%;
    display: block;

}

.cartDetails .comments ul li .commentDetails {
}

.cartDetails .comments ul li .commentDetails h2 {
    color: var(--main_color);
    margin-bottom: 6px;
    font-size: 18px;
    font-family: SFB;
}

.cartDetails .comments ul li .commentDetails h3 {
    color: black;
    margin-bottom: 4px;
    font-size: 18px;
    font-family: SFM;
}

.cartDetails .comments form {
    margin-top: 12px;
}

.cartDetails .comments form textarea {
    width: 100%;
    border-radius: 8px;
    border: none;
    padding: 10px 15px 10px 15px;
    background-color: white;
    color: var(--main_color);
    font-size: 12px;
    font-family: SFB;
    margin-bottom: 18px;
    height: 120px;
    outline: none;
}

.cartDetails .comments form textarea::placeholder {
    color: hsla(0, 0%, 62%, 1);
    font-size: 12px;
    font-family: SFB;
}

.cartDetails .comments form button {
    background-color: var(--orange_color);
    border-radius: 12px;
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    border: none;
    transition: 0.4s;
}

.cartDetails .comments form button p {
    font-size: 16px;
    color: var(--main_color);
    font-family: SFB;
}

.cartDetails .comments form button.notAcrive {
    opacity: 0.7;
    background: hsla(0, 0%, 88%, 1);
}

.cartDetails .comments form button.notAcrive p {
    opacity: 0.7;
}

.cartDetails .comments form button.notAcrive svg {
    opacity: 0.7;
}

.cartDetails .comments form button svg {
}

@media (max-width: 400px) {
    .cartDetails .comments ul li .commentDetails h3 {
        font-size: 14px;
    }

    .cartDetails .comments ul li .commentDetails h2 {
        font-size: 16px;
    }

    .cartDetails .comments ul li img {
        width: 52px;
        height: 52px;
    }

    .cartDetails .artDetails ul li p {
        font-size: 20px;

    }

    .price h3 {

        font-size: 32px;

    }
}

/*modal*/
.modal {
}

.modal-content {
    box-shadow: 4px 4px 4px 0px hsla(0, 0%, 0%, 0.1);

    border-radius: 20px;
    border: none;
}

.modal-body {
    padding: 16px 30px 24px;
}

.modal-header {
    position: relative;
    border: none;
    justify-content: center;
}

.modal-dialog {
    max-width: 380px;
}

.modal-title {
    font-size: 22px;
    font-family: SFB;
    color: var(--main_color);
}

.modal-header .btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0;
    width: 26px;
    height: 26px;
}

.pageCartDetails.modal-body {
}

.pageCartDetails.modal-body .mainImg {
    width: 144px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 4px auto 22px;
}

.pageCartDetails.modal-body .btnModel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pageCartDetails.modal-body .btnModel a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 10px;
    border: none;
    background-color: var(--main_color);
    text-decoration: none;
    flex: 1;
    min-height: 48px;
    transition: 0.4s;
}

.pageCartDetails.modal-body .btnModel a:hover {
    box-shadow: 0px 0px 10px var(--main_color);
}

.pageCartDetails.modal-body .btnModel a p {
    color: white;
    font-size: 16px;
    font-family: SFB;
}

.btn-close:hover {
    box-shadow: 0px 0px 10px rgb(219, 115, 115);
}

.pageCartDetails.modal-body .btnModel a img {
}

@media (max-width: 400px) {
    .cartDetails .headImg .forContact p {
        font-size: 16px;
    }

    .cartDetails .headImg .forContact h3 {
        font-size: 10px;
    }

    .cartDetails .headImg .priceCart {
        font-size: 16px;
    }

    .cartDetails .headImg .priceCart span {
        font-size: 10px;
    }
}

/*login*/
.login {
    max-width: 550px;
}

.login .titleLog {
    font-size: 20px;
    color: var(--main_color);
    text-align: start;
    margin-bottom: 50px;
    font-family: SFB;
}

.login .titleLog.title2 {
    margin-bottom: 12px;
}

.login .form-group label {
    margin-bottom: 8px;
    color: hsla(0, 0%, 0%, 1);
    font-size: 16px;
    font-family: SFB;
}

.login .form-group input {
    background: hsla(0, 0%, 100%, 1);
    height: 48px;
    border-radius: 10px;
    box-shadow: 4px 4px 4px 0px hsla(0, 0%, 0%, 0.1);
    width: 100%;
    border: none;
    outline: none;
    padding: 14px;
}

.login select {
    background: hsla(0, 0%, 100%, 1);
    height: 48px;
    border-radius: 10px;
    box-shadow: 4px 4px 4px 0px hsla(0, 0%, 0%, 0.1);
    width: 100%;
    border: none;
    outline: none;
    padding: 14px;
}

.login select option:first-of-type {
    font-size: 15px;
    font-family: SFB;
    color: hsla(222, 44%, 17%, 0.5);
}

.login select::placeholder {
    font-size: 15px;
    font-family: SFB;
    color: hsla(222, 44%, 17%, 0.5);
}

.login .form-group input::placeholder {
    font-size: 15px;
    font-family: SFB;
    color: hsla(222, 44%, 17%, 0.5);
}

.login .form-group {
    margin-bottom: 16px;
}

.login .btnLog {
    margin-top: 50px;
}

.login .btnForget {
    color: hsla(222, 44%, 17%, 0.5);
    font-size: 14px;
    text-align: end;
    font-family: SFB;
    display: block;
    margin-top: 10px;
    text-decoration: none;
    background-color: transparent;
    border: none;
}

.login .hintInput {
    font-size: 12px;
    color: hsla(222, 44%, 17%, 0.5);
    font-family: SFB;
    display: block;
    text-align: end;
    margin-bottom: 6px;
}

.login .hintInput2 {
    font-size: 12px;
    color: hsla(0, 0%, 46%, 1);
    font-family: SFB;
    display: block;
    margin-bottom: 6px;
}

.login .timeOtp {
    font-size: 14px;
    color: var(--main_color);
    font-family: SFB;
    margin-bottom: 14px;
    text-align: center;
}

.login .timeOtp span {
    color: hsla(0, 100%, 65%, 1);
    font-size: 14px;
    font-family: FugazOne;
}

.login .imgOtp {
    display: block;
    margin: 0px auto 46px;
}

.login .phoneInput {
    display: flex;
    box-shadow: 4px 4px 4px 0px hsla(0, 0%, 0%, 0.1);
    border-radius: 10px;
}

.login .phoneInput input {
    border-radius: 0px 10px 10px 0px;
    box-shadow: none;
    font-family: Montserrat;
}

html[dir="rtl"] .login .phoneInput input::placeholder {
    text-align: end;
}

html[dir="rtl"] .login input[type="email"]::placeholder {
    text-align: end;
}

.login .phoneInput .codeCountry {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    direction: ltr;
    background-color: white;
    padding: 14px 0px 14px 14px;
    border-radius: 10px 0px 0px 10px;
}

.login .phoneInput .codeCountry p {
    display: block;
    font-size: 14px;
    font-family: SFB;
    color: var(--main_color);
    font-family: Montserrat;
}

.login .phoneInput .codeCountry span {
    font-family: Montserrat;
    display: block;
    padding: 0px 12px;
    border-inline: 0.5px solid hsla(210, 3%, 75%, 0.7);
    font-size: 14px;
    color: var(--main_color);
    text-align: center;
}

.faildPass {
    position: relative;
}

.faildPass .btnShowPass {
    position: absolute;
    top: 50%;
    left: 20px;
    height: 50%;
    cursor: pointer;
    transform: translateY(-50%);
    background: white;
}

html[dir="ltr"] .faildPass .btnShowPass {
    left: auto;
    right: 20px;
}

.faildPass .btnShowPass svg {
    height: 100%;
    width: auto;
}

.switchInvestors {
    background: #f6f6f6;
    display: flex;
    align-items: center;
    border-radius: 10px;
    height: 46px;

    width: 100%;
    transition: 0.3s;
    position: relative;
    margin-bottom: 16px;
}


.switchInvestors button {
    background-color: transparent;
    border: none;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main_color);
    font-size: 16px;
    line-height: 18px;
    font-family: SFB;
    transition: 0.3s;
    position: relative;
    z-index: 10;
    height: 46px;
    width: 128px;
    flex: 1;
}

.switchInvestors button.active {
    color: #fff;
    background-color: var(--main_color);
}

.form-check input {
    width: 18px;
    height: 18px;
    border-radius: 4px !important;
    border: 2px solid hsla(0, 0%, 13%, 1);
    background-color: transparent;
}

.login .typeCall {
    box-shadow: 4px 4px 4px 0px hsla(0, 0%, 0%, 0.1);
    padding: 8px 16px 16px;
    background-color: white;
    border-radius: 10px;
}

.login .typeCall h2 {
    text-align: center;
    color: black;
    font-size: 16px;
    font-family: SFB;
    margin-bottom: 6px;
}

.login .typeCall ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.login .typeCall ul li {
}

.login .typeCall ul li .form-check {
}

.login .typeCall ul li .form-check label {
    display: flex;
    align-items: center;
    gap: 14px;
}

.login .typeCall ul li .form-check label p {
    font-size: 16px;
    font-family: SFB;
    color: black;
}

.login .typeCall ul li .form-check label {
}

.form-check-input:checked {
    background-color: transparent;
    border: 2px solid hsla(0, 0%, 13%, 1);
    outline: none;
}

.form-check-input:checked[type="radio"] {
    background-image: url("./images/checked.svg");
    background-size: 10px;
    background-position: center;
}

.allowComment {
    margin-top: 18px;
}

.allowComment input {
}

html[dir="ltr"] .allowComment.form-check .form-check-input {
    float: left;
}

html[dir="rtl"] .allowComment.form-check .form-check-input {
    float: right;
}

.allowComment label {
    font-size: 16px;
    font-family: SFB;
    color: black;
}

.login.addAdPage .btnLog {
    margin-top: 18px;
}

.modalComment {
}

.modalComment .modal-body {
}

.modalComment .modal-body img {
    width: auto !important;
    margin: -24px auto 22px !important;
}

.modalComment .modal-body h3 {
    text-align: center;
    line-height: 36px;
    font-size: 24px;
    color: var(--main_color);
    font-family: SFB;
    max-width: 210px;
    margin: 10px auto 10px;
}

.modalComment .modal-body .btnFaild {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    margin-top: 50px;
}

.modalComment .modal-body .btnFaild .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    text-decoration: none;
    height: 60px;
    flex: 1;
    background-color: var(--main_color);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-family: SFB;
}

.modalComment .modal-body .btnFaild .btn2 {
    color: hsla(0, 0%, 34%, 1);
    background: hsla(0, 0%, 94%, 1);
}

.form-check-input:checked[type="checkbox"] {
    background-image: url("./images/checked.svg");
    background-size: 10px;
    background-position: center;
}

/*profilePage*/
.profilePage {
}

.profilePage .navbar {
    display: none;
}

.profilePage .allMenue {
    display: none;
}

.profile {
    min-height: 80vh;
    padding: 40px 0px;
}

.profile .headProfile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.profile .headProfile h2 {
    margin: 0;
    font-size: 24px;
    font-family: SFB;
    color: var(--main_color);
}

.profile .headProfile.titleOne h2 {
    font-size: 36px;
}

.profile .headProfile .backProfile {
}

.profile .headProfile .backProfile svg {
}

html[dir='ltr'] .profile .headProfile .backProfile svg {
    transform: rotateY(180deg);
}

.profile .content {
}

.profile .content .imgProfile {
    position: relative;
    width: 156px;
    height: 156px;
    border-radius: 50%;
    box-shadow: 0px 4px 4px 0px hsla(0, 0%, 0%, 0.1);
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 56px auto 0px;
}

.profile .content .imgProfile .mainImg {
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: auto;
}

.profile .content .imgProfile .upLoadImg {
    position: absolute;
    bottom: 0;
    right: 16px;
    width: 34px;
    height: 34px;
    cursor: pointer;
    z-index: 10;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main_color);
    border-radius: 50%;
}

.profile .content .imgProfile .upLoadImg input {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 11;
}

.profile .content .imgProfile .upLoadImg .camera {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main_color);
    border-radius: 50%;
}

.profile .content .imgProfile .upLoadImg .camera img {
    display: block;
    margin: auto;
    width: 24px;
    height: 24px;
}

.profile .content .listProfile {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 56px;
}

.profile .content .listProfile li {
    padding-bottom: 8px;
    border-bottom: 0.5px solid hsla(0, 0%, 0%, 0.3);
}

.profile .content .listProfile li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-decoration: none;
}

.profile .content .listProfile li a h3 {
    font-size: 14px;
    margin: 0;
    font-family: SFB;
    color: black;
}

.profile .content .listProfile li a svg {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.profile .content .listProfile li button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-decoration: none;
    background-color: transparent;
    border: none;
    outline: none;
    width: 100%;
    padding: 0;
}

.profile .content .listProfile li button h3 {
    font-size: 14px;
    margin: 0;
    font-family: SFB;
    color: black;
}

.profile .content .listProfile li button svg {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

html[dir='ltr'] .profile .content .listProfile li a svg {
}

.profile .content .listAds {
}

.profile .content .listAds li {
    padding: 24px 0px;
    border-bottom: 0.5px solid hsla(0, 0%, 0%, 0.3);
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.profile .content .listAds li .mainImg {
    width: 148px;
    min-width: 148px;
    height: auto;
    border-radius: 8px;
}

.profile .content .listAds li .mainImg img {
    width: 148px;
    min-width: 148px;
    max-width: 148px;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}

.profile .content .listAds li .mainImg2 {
    width: 148px;
    min-width: 148px;
    height: auto;
    border-radius: 8px;
    background: var(--main_color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: white;
    padding: 20px 10px;
}

.profile .content .listAds li .mainImg2 svg {
    max-width: 80%;
    height: auto;
    max-height: 26px;
}

.profile .content .listAds li .mainImg2 img {
    max-width: 80%;
    height: auto;
    max-height: 26px;
}

.profile .content .listAds li .mainImg2 svg {
}

.profile .content .listAds li .mainImg2 h3 {
    font-size: 16px;
    font-family: Montserrat;
    direction: ltr;
    text-align: center;
}

.profile .content .listAds li .mainImg2 h5 {
    text-align: center;
    font-family: Montserrat;
    font-size: 14px;

}

.profile .content .listAds li .mainImg2 h5 span {
    font-family: Montserrat;
    color: hsla(42, 100%, 50%, 1);
    font-size: 12px;


}

.profile .content .listAds li .mainImg img {
    width: 148px;
    min-width: 148px;
    max-width: 148px;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}

.profile .content .listAds li .info {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    flex: 1;
    min-width: 170px;
}

.profile .content .listAds li .info .detilsAd {
}

.profile .content .listAds li .info .detilsAd p {
    color: hsla(220, 1%, 43%, 1);
    font-size: 16px;
    font-family: SFB;
    margin-bottom: 8px;
}

.profile .content .listAds li .info .stateAds {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
}

.profile .content .listAds li .info .stateAds .edit {
    background: hsla(0, 0%, 85%, 1);
    padding: 4px 14px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsla(220, 1%, 43%, 1);
    font-size: 16px;
    font-family: SFB;
    line-height: 20px;
}

.profile .content .listAds li .info .stateAds .btnUpgrade {
    background: hsla(44, 89%, 61%, 0.2);
    padding: 4px 14px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    border: none;
}

.profile .content .listAds li .info .stateAds .btnUpgrade p {
    font-size: 16px;
    line-height: 20px;
    color: hsla(44, 89%, 61%, 1);
    margin: 0;
}

.profile .content .listAds li .info .stateAds .btnUpgrade svg {
    width: 12px;
    height: auto;
}

.profile .content .listAds li .info .stateAds .btnUpgrade img {
    width: 12px;
    height: auto;
}

.profile .content .listAds li .info .stateAds .deleteAd {
    background-color: transparent;
    border: none;
}

.profile .content .listAds li .info .stateAds .deleteAd:hover svg path {
    fill: red;
}

.profile .content .listAds li .info .stateAds .deleteAd svg path {
    transition: 0.4s;
}

.profile .content .listAds li .info .stateAds .deleteAd svg {
    transition: 0.4s;
}

.profile .content .listAds li .info .stateAds .donePay {
    background: var(--main_color);
    padding: 4px 20px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-family: SFB;
    line-height: 20px;
    margin: 0;
}

.profile .content .noAds {
    margin: 4px 0px;
}

.profile .content .noAds img {
    width: 280px;
    height: auto;
    max-width: 90%;
    margin: auto;
    display: block;
}

.profile .content .noAds h2 {
    color: var(--main_color);
    font-size: 24px;
    margin-top: 50px;
    text-align: center;
    font-family: SFB;
}

@media (max-width: 400px) {
    .profile .headProfile.titleOne h2 {
        font-size: 26px;
    }
}

/*panelDesign*/
.headDesign {
    margin: 46px 0px 6px;
}

.headDesign h2 {
    font-size: 36px;
    text-align: start;
    font-family: SFB;
    color: var(--main_color);
}

.hintDesignPage {
    color: hsla(0, 0%, 46%, 1);
    font-size: 12px;
    font-family: SFB;
    margin-bottom: 6px;
}

.designContent {
}

.designContent .imgDesign {
    max-width: 100%;
}

.designContent .imgDesign img {
    max-width: 100%;
    height: auto;
}

.designContent .form-group {
    display: flex;
    align-items: center;
    gap: 6px;
}

.designContent .form-group .topInput {
    min-width: 130px;
}

.designContent .form-group .topInput label {
    font-size: 18px;
}

.btnDownload {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    background-color: var(--main_color);
    padding: 10px;
    border-radius: 22px;
    min-height: 78px;
    height: auto;
    width: 100%;
}

.btnDownload p {
    font-size: 32px;
    font-family: SFB;
    color: var(--orange_color);
}

.designPage {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.designPage .part2 {
    max-width: 500px;
    width: 100%;
}

.desiginMethod {
    flex: 1;
}

.desiginMethod .designContent .imgDesign {
    display: none;
}

.desiginMethod .designContent .hint2 {
    display: none;
}

.designPage .part2 .imgDesign {
    max-width: 100%;
}

.designPage .part2 .imgDesign img {
    max-width: 100%;
    height: auto;
    width: 100%;
}
.designPage .part2 .created img{
    width: 80px;
    height: 40px;
}

body.bodyDesign {
    width: 1200px;
    max-width: 100%;
}

body.bodyDesign {
}

body.bodyDesign footer .footer-container {
    justify-content: space-between;
}

body.bodyDesign footer .footer-container .contact-details {
    flex: none;
}

body.bodyDesign footer .quick-links {
    flex: none;
}

.bodyModelShare {
}

.modal-body.bodyModelShare .mainImg {
    padding-top: 18px;
    width: 190px !important;
}

.bodyModelShare h3 {
    max-width: 100% !important;
    margin-bottom: 24px !important;
    font-size: 20px !important;
}

.bodyModelShare h4 {
    font-size: 20px;
    color: var(--main_color);
    font-family: SFB;
    max-width: 210px;
    margin: 0px auto 40px;
    line-height: 30px;
    text-align: center;
}

.bodyModelShare .btnShare {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.bodyModelShare .btnShare .btn {
    flex: 1;
    min-height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    font-size: 14px;
    font-family: SFB;
    background-color: red;
    padding: 0px 6px;
}

.bodyModelShare .btnShare .OkShare {
    background: hsla(153, 69%, 51%, 1);
    color: black;
}

.bodyModelShare .btnShare .OkDownload {
    color: hsla(0, 0%, 34%, 1);
    background: hsla(0, 0%, 94%, 1);
}

@media (max-width: 992px) {
    .designContent .form-group .topInput {
        min-width: 94px;
    }

    .designContent .form-group .topInput label {
        font-size: 13px;
    }

    .desiginMethod .designContent .imgDesign {
        display: block;
    }

    .desiginMethod .designContent .hint2 {
        display: block;
    }

    .headDesign {
        margin: 46px 0px 56px;
    }

    .headDesign h2 {
        text-align: center;
    }

    .designPage .part2 .imgDesign {
        display: none;
    }

    .designPage {
        flex-direction: column;
    }

    body.bodyDesign {
        width: 430px;
    }
}

/*sliderImgs*/
.sliderImgs {
    width: 100%;
    height: 570px;
    padding: 14px 0px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.sliderImgs .swiper-horizontal {
    touch-action: pan-y;
    width: 100%;
    border-radius: 8px;
    height: 100%;
}

.sliderImgs .swiper-pagination {
    top: 90%;
}

.sliderImgs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 992px) {
    .sliderImgs {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .sliderImgs {
        height: 300px;
    }
}

@media (max-width: 440px) {
    .sliderImgs {
        width: 100%;
    }

    .sliderImgs .swiper-horizontal {
        width: 100%;
    }

    .sliderImgs {
        height: 230px;
    }
}

/*img Car*/
.ImgCarPage1 {
    width: 500px;
    height: 500px;
    margin: auto;
    max-width: 100%;
}

.ImgCarPage1 .cartDetails .headImg1 {
    width: 100%;
    height: auto;
    max-width: 500px;
    margin: auto;
    position: relative;
}

.ImgCarPage1 .cartDetails .headImg1 .mainImg {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
}

.ImgCarPage1 .cartDetails .headImg1 .created {
    position: absolute;
    bottom: 10px;
    right: 16px;
    display: flex;
    gap: 4px;
}

.ImgCarPage1 .cartDetails .headImg1 .created p {
    font-size: 8px;
    color: white;
    max-width: 40px;
}

.ImgCarPage1 .cartDetails .headImg1 .created img {
    height: 40px;
    border-radius: 4px;
    width: 60px;
    display: block;
}

.ImgCarPage1 .cartDetails .headImg1 .numCar1 {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 266px;
    max-width: 50%;
    direction: ltr;
}

.ImgCarPage1 .cartDetails .headImg1 .numCar1 img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.ImgCarPage1 .cartDetails .headImg1 .numCar2 {
    left: 40%;
    position: absolute;
    top: 63%;
    max-width: 24%;
    transform: rotateY(10deg);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.ImgCarPage1 .cartDetails .headImg1 .numCar2 img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.ImgCarPage1 .cartDetails .headImg1 .priceCart {
    font-size: 20px;
    color: white;
    text-align: end;
    font-family: FugazOne;
    margin: 6px 0px 0px;
}

.ImgCarPage1 .cartDetails .headImg1 .priceCart span {
    color: var(--orange_color);
    font-size: 12px;
    font-family: FugazOne;
}

.ImgCarPage1 .cartDetails .headImg1 .forContact {
    position: absolute;
    left: 14px;
    bottom: 14px;
}

.ImgCarPage1 .cartDetails .headImg1 .forContact h3 {
    color: white;
    font-size: 12px;
    margin-bottom: 14px;
    font-family: SFB;
}

.ImgCarPage1 .cartDetails .headImg1 .forContact h4 {
    color: white;
    font-size: 8px;
    margin: 0px;
}

.ImgCarPage1 .cartDetails .headImg1 .forContact p {
    color: white;
    font-size: 20px;
    font-family: FugazOne;
    direction: ltr;
}

/*img Car2*/
.ImgCarPage2 {
    width: 500px;
    height: 860px;
    margin: auto;
    position: relative;
}

.ImgCarPage2 .cartDetails {
    height: 100%;
}

.ImgCarPage2 .cartDetails .headImg1 {
    width: 100%;
    height: auto;
    max-width: 500px;
    margin: auto;
    position: relative;
    background-color: black;
    display: flex;
    flex-direction: column;
}

.ImgCarPage2 .cartDetails .headImg1 .mainImg {
    width: 100%;
    height: 100%;
}

.ImgCarPage2 .cartDetails .headImg1 .created {
    display: flex;

    justify-content: center;
    gap: 4px;
    position: absolute;
    bottom: 30px;
    left: 20px;
}

.ImgCarPage2 .cartDetails .headImg1 .created img {
    height: 40px;
    border-radius: 4px;
    width: 80px !important;
    display: block;
}

.ImgCarPage2 .cartDetails .headImg1 .created p {
    font-size: 10px;
    color: white;
    max-width: 48px;
}

.ImgCarPage2 .cartDetails .headImg1 .numCar1 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 30px;

    direction: ltr;
    z-index: 10;
    height: 78px;
}

.ImgCarPage2 .cartDetails .headImg1 .numCar1 img {
    width: auto;
    height: 100%;
    object-fit: contain;
}

.ImgCarPage2 .cartDetails .headImg1 .numCar2 {
    left: 52%;
    position: absolute;
    top: 53%;
    max-width: 24%;
    transform: rotateY(10deg);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    z-index: 10;
}

.ImgCarPage2 .cartDetails .headImg1 .numCar2 img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.ImgCarPage2 .cartDetails .headImg1 .priceCart {
    font-size: 24px;
    color: white;
    text-align: end;
    font-family: FugazOne;
    margin: 6px 0px 0px;
}

.ImgCarPage2 .cartDetails .headImg1 .priceCart span {
    color: var(--orange_color);
    font-size: 12px;
    font-family: FugazOne;
}

.ImgCarPage2 .cartDetails .headImg1 .forContact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;

    padding-bottom: 30px;
    padding-top: 20px;
    position: absolute;
    bottom: 54px;
    right: 20px;
}

.ImgCarPage2 .cartDetails .headImg1 .forContact h3 {
    color: white;
    font-size: 22px;
    margin-bottom: 30px;
    font-family: SFB;
}

.ImgCarPage2 .cartDetails .headImg1 .forContact h4 {
    color: white;
    font-size: 18px;
    margin: 0px;
}

.ImgCarPage2 .cartDetails .headImg1 .forContact p {
    color: white;
    font-size: 26px;
    font-family: FugazOne;
    direction: ltr;
}

/*phone cartDetails*/
.cartDetails .headImgPhone {
}

.cartDetails .headImgPhone {
}

/* End phone cartDetails*/

.cartDetails .headImgPhone {
    width: 100%;
    height: auto;
    max-width: 500px;
    margin: auto;
    position: relative;
}

.cartDetails .headImgPhone .mainImg {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
}

.cartDetails .headImgPhone .created {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cartDetails .headImgPhone .created img {
    height: 40px;
    border-radius: 4px;
    width: 80px;
    display: block;
}

.cartDetails .headImgPhone .created p {
    font-size: 9px;
    color: black;
    max-width: 46px;
}

.cartDetails .headImgPhone .numCar1 {
    position: absolute;
    left: 50%;
    top: 50%;
    width: max-content;
    max-width: 94%;
    direction: ltr;
    transform: translate(-50%, -50%);

    padding: 0px 6px;
}

.cartDetails .headImgPhone .numCar1 img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.cartDetails .headImgPhone .numCar1 h4 {
    font-size: 52px;
    color: hsla(360, 67%, 35%, 1) !important;
    font-family: FugazOne;
    line-height: 50px;
    text-decoration: none !important;
}

.cartDetails .headImgPhone .numCar2 {
    right: 46px;
    position: absolute;
    top: 32%;
    transform: translateY(-50%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    height: 48px;
    width: auto;
}

.cartDetails .headImgPhone .numCar2 svg {
    height: 100%;
    width: auto;
}

.cartDetails .headImgPhone .numCar2 img {
    height: 100%;
    width: auto;
}

.cartDetails .headImgPhone .numCar2 img {
    width: auto;
    max-width: 100%;
    height: 36px;
    object-fit: contain;
}

.cartDetails .headImgPhone .priceCart {
    font-size: 20px;
    color: black;
    text-align: end;
    font-family: FugazOne;
    margin: 2px 0px 0px;
}

.cartDetails .headImgPhone .priceCart span {
    color: hsla(360, 67%, 35%, 1);
    font-size: 12px;
    font-family: FugazOne;
}

.cartDetails .headImgPhone .forContact {
    position: absolute;
    left: 20px;
    bottom: 70px;
}

.cartDetails .headImgPhone .forContact h3 {
    color: black;
    font-size: 12px;
    margin-bottom: 22px;
    font-family: SFB;
}

.cartDetails .headImgPhone .forContact h4 {
    color: black;
    font-size: 8px;
    margin: 0px;
}

.cartDetails .headImgPhone .forContact p {
    color: black;
    font-size: 20px;
    font-family: FugazOne;
    direction: ltr;
}

@media (max-width: 440px) {
    .cartDetails .headImgPhone .numCar1 h4 {
        font-size: 40px;
    }

    .cartDetails .headImgPhone .priceCart {
        font-size: 18px;
    }

    .cartDetails .headImgPhone .created img {
        height: 34px;
    }

    .cartDetails .headImgPhone .forContact h3 {
        color: black;
        font-size: 12px;
        margin-bottom: 6px;
        font-family: SFB;
    }

    .cartDetails .headImgPhone .forContact {
        left: 20px;
        bottom: 50px;
    }
}

/**/
.ImgCarPage2 {
    width: 500px;
    height: 860pxpx;
    margin: auto;
    position: relative;
    max-width: 100%;
}

.phoneImgPage .cartDetails .headImgPhone {
    height: 100%;
    background: #f4f4f4;
}

.phoneImgPage .cartDetails .headImgPhone .mainImg {
    height: 100%;
}

.phoneImgPage .cartDetails .headImgPhone .numCar2 svg {
    height: 70px;
    width: auto;
}

.phoneImgPage .cartDetails .headImgPhone .numCar2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
    top: 24%;
    right: 30px;
    left: auto;
}

.phoneImgPage .cartDetails .headImgPhone .numCar2 img {
    max-width: 100%;
    object-fit: contain;
    height: 60px !important;
    width: fit-content;
}

.phoneImgPage .cartDetails .headImgPhone .forContact h4 {
    color: black;
    font-size: 18px;
    margin: 0px;
}

.phoneImgPage .cartDetails .headImgPhone .forContact p {
    color: black;
    font-size: 34px;
    font-family: FugazOne;
    direction: ltr;
}

.phoneImgPage .cartDetails .headImgPhone .forContact {
    position: absolute;
    left: 20px;
    bottom: 130px;
}

.phoneImgPage .cartDetails .headImgPhone .numCar1 {
    position: absolute;
    left: 50%;
    top: 45%;
    width: max-content;
    max-width: 94%;
    direction: ltr;
    transform: translate(-50%, -50%);
}

.phoneImgPage .cartDetails .headImgPhone .priceCart {
    font-size: 30px;
    color: black;
    text-align: end;
    font-family: FugazOne;
    margin: 2px 0px 0px;
}

/**/
.imgAd {
    padding: 8px;
    min-width: 100%;
}

.imgAd img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.ImgCarPage1 .cartDetails.bick .headImg1 .numCar1 img {
    max-height: 100px;
}

.ImgCarPage1 .cartDetails.bick .headImg1 .numCar2 img {
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    height: 100%;
}

.ImgCarPage1 .cartDetails.bick .headImg1 .numCar2 {
    left: 41%;
    top: 45%;
    height: 40px;
    transform: rotateY(0deg);
}

.ImgCarPage2 .cartDetails.bickStory .headImg1 .numCar2 {
    left: 41%;
    top: 32%;
    transform: rotateY(0deg);
}

.ImgCarPage2 .cartDetails.bickStory .headImg1 .numCar2 img {
    max-height: 40px;
}

.ImgCarPage2 .cartDetails .headImg1 .created img {
    width: fit-content;
}

.cartDetails.private .headImg1 .priceCart,
.cartDetails.private .headImg1 .created p,
.cartDetails.private .headImg1 .priceCart span {
    color: black;
}

.ImgCarPage2 .cartDetails.classic .headImg1 .priceCart {
    font-size: 30px;
    color: white;
    text-align: end;
    font-family: FugazOne;
    margin: 6px 0px 0px;
}


.ImgCarPage2 .cartDetails.classic .headImg1 .numCar2 {
    left: 11%;
    position: absolute;
    top: 64%;
    max-width: 18%;
    transform: rotateY(-26deg);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    z-index: 10;
}

.ImgCarPage2 .cartDetails.classic .headImg1 .numCar1 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 60px;
    direction: ltr;
    z-index: 10;
    height: 78px;
}

.ImgCarPage1 .cartDetails.classic .headImg1 .numCar2 {
    left: 7%;
    position: absolute;
    top: 68%;
    max-width: 19%;
    transform: rotateY(18deg);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.ImgCarPage1 .cartDetails.bike .headImg1 .priceCart {
    font-size: 24px;
    color: white;
    text-align: start;
    font-family: FugazOne;
    margin: 6px 0px 0px;
}

.ImgCarPage1 .cartDetails.bike .headImg1 .numCar1 {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 173px;
    max-width: 50%;
    direction: ltr;
    right: auto;
}

.ImgCarPage1 .cartDetails.bike .headImg1 .numCar2 {
    left: 60%;
    position: absolute;
    top: 62%;
    max-width: 21%;
    transform: rotateY(10deg);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.ImgCarPage2 .cartDetails.bike .headImg1 .numCar1 {
    position: absolute;
    right: 30px;
    transform: none;
    top: 30px;
    direction: ltr;
    z-index: 10;
    height: 110px;
}

.ImgCarPage2 .cartDetails.bike .headImg1 .priceCart {
    font-size: 28px;
    color: white;
    text-align: start;
    font-family: FugazOne;
    margin: 6px 0px 0px;
}

.ImgCarPage2 .cartDetails.bike .headImg1 .numCar2 {
    left: 38%;
    position: absolute;
    top: 62%;
    max-width: 22%;
    transform: rotateY(10deg);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    z-index: 10;
}


.ImgCarPage1 .cartDetails.yellow .headImg1 .numCar2 {
    left: 52%;
    top: 46%;
    max-width: 24%;
    transform: rotateY(0deg);
}

.ImgCarPage1 .cartDetails.yellow .headImg1 .numCar1 {
    left: 20px;
    top: 20px;
    width: 200px;
    right: auto;
}

.ImgCarPage1 .cartDetails.yellow .headImg1 .numCar1 h5 {
    text-align: center;
}

.yellow {
}

.ImgCarPage1 .cartDetails.yellow .headImg1 .forContact {
    right: 14px;
    left: auto;
    bottom: 14px;
}

.ImgCarPage1 .cartDetails.yellow .headImg1 .created {
    left: 16px;
    right: auto;
}

.ImgCarPage1 .cartDetails.yellow .headImg1 .numCar2 img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.ImgCarPage2 .cartDetails.yellow .headImg1 .numCar2 img {
    width: 100%;

}

.ImgCarPage2 .cartDetails.yellow .headImg1 .numCar1 {
    right: 30px;
    left: auto;
    transform: none;
    height: 112px;
}

.ImgCarPage2 .cartDetails.yellow .headImg1 .numCar2 {
    left: 36%;
    top: 47%;
    max-width: 28%;
    transform: rotateY(0deg);
}

/*new Cart*/

.carts .cart.newCart .partNumber {
    background: var(--main_color);

}

.carts .cart.newCart .fav {
    background: var(--main_color);

}

.carts .cart.newCart .detailsCart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 4px 8px 10px;
}

.carts .cart.newCart .detailsCart .price {
    margin: 0;
}

.carts .cart.newCart .detailsCart .price h2 {

    text-wrap: nowrap;
}

.carts .cart.newCart .detailsCart .btnShowDetails {
    max-width: 174px;
    width: 100%;
    margin: 0px;
}

.carts .cart.star {
    min-width: 350px;
    flex: 1;
    max-width: 430px;
    position: relative;
}

.carts .cart.star::before {
    position: absolute;
    top: -12px;
    content: "";
    background-image: url("./images/star2.svg");
    left: -16px;
    width: 44px;
    height: 40px;
    z-index: 40;
}

.carts .cart.star::after {
    position: absolute;
    top: -12px;
    content: "";
    background-image: url("./images/star1.svg");
    right: -16px;
    width: 44px;
    height: 40px;
    z-index: 40;
}

.carts .cart.star .partNumber {
    background: linear-gradient(
        135.34deg,
        #856220 15.43%,
        #f4e683 34.91%,
        #bf923d 50.85%,
        #4e341b 68.56%,
        #f1ea82 86.26%
    );
    background-size: 130% 100%;
    animation: AnimationName 9s linear infinite;
}

@-webkit-keyframes AnimationName {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

@-moz-keyframes AnimationName {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

@-o-keyframes AnimationName {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

@keyframes AnimationName {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.carts .cart.star .fav {
    background: transparent;
}

.carts .cart.star .starImg {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    z-index: 30;
}

.carts .cart.star .starImg .imgStar1 {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.carts .cart.star .starImg .imgStarCenter {
    animation: StarCenter 0.6s infinite alternate ease-in;
}

@keyframes StarCenter {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(0.8);
    }
}

/*userPage*/
.userPage {
    min-height: 60vh;
}

.userPage .userDetails {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
    margin-bottom: 40px;
}

.userPage .userDetails .imgUser {
    position: relative;
    width: 200px;
}

.userPage .userDetails .imgUser .userPhoto {
    width: 200px;
    height: 200px;

    aspect-ratio: 1/1;
    display: block;
    border-radius: 50%;
    object-fit: cover;
}

.userPage .userDetails .imgUser .verification {
    height: 34px;
    width: auto;
    position: absolute;
    bottom: 5px;
    left: 5px;
    z-index: 5;
}

.userPage .userDetails h2 {
}

.modalUpgrade {
}

.modalUpgrade .pageUpgrade {
}

.modalUpgrade .pageUpgrade .boxStar {
    padding: 6px 8px 14px;
    box-shadow: 0px 16.86px 16.86px 0px hsla(0, 0%, 0%, 0.15);

    box-shadow: 0px -5.88px 11.76px 0px hsla(0, 0%, 0%, 0.25) inset;
    width: 112px;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin: 0px auto 16px;
}

.modalUpgrade .pageUpgrade .boxStar img {
    height: 96px;
    width: auto;
    filter: drop-shadow(3px 5px 2px hsla(0, 0%, 0%, 0.1));
}

.modalUpgrade .pageUpgrade .titleUpgrade {
    font-size: 24px;
    text-align: center;
    margin-bottom: 12px;
    font-family: SFB;
}

.modalUpgrade .pageUpgrade .titleUpgrade2 {
    font-family: SFM;
    font-size: 16px;
    text-align: center;
    margin-bottom: 16px;
}

.modalUpgrade .pageUpgrade .packages {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 274px;
    margin: 0px auto 16px;
}

.modalUpgrade .pageUpgrade .packages .package {
    border: 1px solid hsla(0, 0%, 0%, 0.15);
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    border-radius: 16px;
    transition: 0.4s;
}

.modalUpgrade .pageUpgrade .packages .package.active {
    background: hsla(47, 75%, 90%, 1);
    border: 1px solid hsla(0, 0%, 0%, 0.15);
    box-shadow: 0px 4px 4px 0px hsla(0, 0%, 0%, 0.25);
}

.modalUpgrade .pageUpgrade .packages .package:hover {
    box-shadow: 0px 4px 4px 0px hsla(0, 0%, 0%, 0.25);
}

.modalUpgrade .pageUpgrade .packages .package .startImg {
    width: 48px;
    max-width: 48px;
    min-width: 30px;
    height: auto;
    max-height: 46px;
    object-fit: contain;
    filter: drop-shadow(3px 5px 2px hsla(0, 0%, 0%, 0.1));
}
html[dir='ltr'] .profile .content .listProfile.listProfileAd li a svg {
    transform: rotate(180deg);
}

svg {
}

.modalUpgrade .pageUpgrade .packages .package .infoPackage {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.modalUpgrade .pageUpgrade .packages .package .infoPackage .PackageDetails {
}

.modalUpgrade .pageUpgrade .packages .package .infoPackage .PackageDetails h2 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--main_color);
    font-family: SFM;
}

.modalUpgrade .pageUpgrade .packages .package .infoPackage .PackageDetails p {
    font-family: SFM;
    font-size: 12px;
    margin-bottom: 4px;
}

.modalUpgrade .pageUpgrade .packages .package .infoPackage .price {
    margin: 0;
    font-size: 12px;
    color: rgba(9, 32, 62, 0.566);
}

.modalUpgrade .pageUpgrade .checOuteUpgrade {
    background: rgba(9, 32, 62, 0.413);
    color: white;
    height: 60px;
    width: 150px;
    border-radius: 8px;
    text-align: center;
    border: none;
    margin: auto;
    display: block;
    transition: 0.4s;
}

.modalUpgrade .pageUpgrade .checOuteUpgrade.active {
    background-color: var(--main_color);
}

.modal .modal-dialog {
    margin: auto;
}

@media (max-width: 430px) {
    .modal-body {
        padding: 16px 12px 18px;
    }

    .modal.show .modal-dialog {
        max-width: 96%;
    }

    .modalUpgrade .pageUpgrade .titleUpgrade {
        font-size: 20px;
    }

    .modalUpgrade .pageUpgrade .titleUpgrade2 {
        font-size: 14px;
    }

    .modalUpgrade .pageUpgrade .checOuteUpgrade {
        height: 50px;
        width: 140px;
    }

    .modalUpgrade .pageUpgrade .packages {
        max-width: 90%;
    }

    .modalUpgrade .pageUpgrade .boxStar {
        width: 100px;
        height: 100px;
    }

    .modalUpgrade .pageUpgrade .boxStar img {
        height: 70px;
    }
}
