/*SECTION STORY START*/
#stories {
    width: 100%;
    padding: 10px 0;
    background: var(--white-color);
}

.stories-items {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.stories-items .stories-item {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 5px;
    border: 3px solid var(--background-color-btn);
    border-radius: 100%;
}

.stories-item img {
    object-fit: contain;
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
    z-index: 999;
}

.stories-item video {
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.stories-items .stories-item .stories-item-img {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    width: 0;
    height: 0;
}

.stories-items .stories-item .stories-item-link {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    width: 0;
    height: 0;
}

.stories-items .stories-item .title-story {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-color);
    font-size: 14px;
    font-weight: 900;
    width: 100%;
    text-align: center;
}

#stories .stories-show-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999999;
    align-items: center;
    justify-content: center;
    display: none;
}

#stories .stories-show-overlay.show {
    display: flex;
    animation: showStories 1s ease-out forwards;
}

@keyframes showStories {
    0% {
        transform: scale(0);
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        opacity: 1;
    }
}

#stories .stories-show-overlay .stories-show-items {
    background: #000;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    max-height: 600px;
    position: relative;
}

.stories-show-overlay .stories-show-items .stories-items-span {
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stories-show-overlay .stories-show-items .stories-items-span span {
    background: #4d4d4d;
    height: 4px;
    display: inline-block;
    position: relative;
}


@keyframes spanWidth {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes spanWidthNone {
    0% {
        width: 100%;
    }

    100% {
        width: 0;
    }
}

@keyframes spanWidthFull {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}


.stories-item-close {
    position: absolute;
    left: 0;
    right: 0;
    top: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #dd0000;
}

.stories-item-close svg {
    font-size: 25px;
    margin-left: 5px;
    cursor: pointer;
}

.stories-show-items .stories-show-item {
    width: 100%;
    height: 100%;
}

.stories-show-items .stories-show-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stories-show-items .stories-show-item video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
}

.stories-show-items .stories-show-item a {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--background-color-btn), var(--background-color-btn));
    color: #fff;
    border-radius: 10px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.stories-show-items .stories-show-item a:hover {
    box-shadow: 0 0 5px var(--box-shadow-color);
    background: linear-gradient(90deg, var(--background-color-btn), var(--background-color-btn));
}

.stories-show-items .stories-show-items-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 100%;
}

.stories-show-items .stories-show-items-controls .circle-right {
    position: absolute;
    right: 0;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}


.stories-show-items .stories-show-items-controls .circle-left {
    position: absolute;
    left: 0;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

/*SECTION STORY END*/

/*SLIDER SECTION START*/
.slider {
    width: 100%;
    height: 36vw;
    margin-top: 120px;
    position: relative;
}

.slider .slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider .slider-container .slider-image-items {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.slider .slider-container .slider-image-items .slider-image-item {
    width: 100%;
    height: 100%;
    position: absolute;
    display: none;
}

.slider .slider-container .slider-image-items .slider-image-item.active {
    width: 100%;
    height: 100%;
    animation: showSlide 0.7s linear forwards;
    transform-origin: center center;
    display: block;
    z-index: 1;
}

@keyframes showSlide {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


.slider .slider-container .slider-image-items .slider-image-item img {
    width: 50%;
    height: 50%;
    object-fit: contain;
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
}

.slider .slider-container .slider-image-items .slider-image-item .slider-image-button {
    position: absolute;
    right: 15%;
    bottom: 25%;
    z-index: 999;
    width: 30%;
    padding: 10px;
    overflow: hidden;
}

.slider .slider-container .slider-image-items .slider-image-item .slider-image-button .header-text-slider {
    width: 100%;
    height: 50px;
    overflow: hidden;
}

.slider .slider-container .slider-image-items .slider-image-item .slider-image-button .header-text-slider h2 {
    font-size: 36px;
    font-weight: 900;
    color: var(--dark-color);
    text-shadow: 1px 3px 4px var(--white-color);
    animation: showHeaderSliderText 1.5s ease-in-out;
}

@keyframes showHeaderSliderText {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}

.slider .slider-container .slider-image-items .slider-image-item .slider-image-button .content-text-slider {
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.slider .slider-container .slider-image-items .slider-image-item .slider-image-button .content-text-slider p {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-color);
    text-shadow: 1px 3px 4px var(--white-color);
    animation: showContentSliderText 1.8s ease-in-out;
}

@keyframes showContentSliderText {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}

.slider .slider-container .slider-image-items .slider-image-item .slider-image-button .btn-slider-item {
    width: 200px;
    height: 50px;
    border: 2px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    color: var(--white-color);
    background: var(--dark-color);
    opacity: 0.5;
    float: left;
    animation: showButtonSlider 2.5s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@keyframes showButtonSlider {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }

    100% {
        opacity: 0.5;
        transform: translateY(0);
    }
}

.slider .slider-container .slider-image-items .slider-image-item .slider-image-button .btn-slider-item:hover {
    transform: scale(1.1);
}

.slider .slider-container .slider-box {
    width: 100%;
    position: absolute;
    bottom: 50%;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    align-items: center;
}


.slider .slider-container .slider-box .control-box-arrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.slider .slider-container .slider-box .control-box-arrow .next-arrow, .slider .slider-container .slider-box .control-box-arrow .prev-arrow {
    font-size: 20px;
    font-weight: 300;
    background: var(--dark-color);
    opacity: 0.5;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 100px;
    box-shadow: 0 0 10px var(--box-shadow-color);
    padding: 10px 5px;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white-color);
}


/*SLIDER SECTION END*/

/* BREADCRUMB START  */
.breadcrumb-section {
    width: 100%;
    margin-top: 90px;
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.breadcrumb-section .breadcrumb-box {
    width: 100%;
}

.breadcrumb-item {
    color: var(--dark-color) !important;
}

.breadcrumb-item a {
    color: var(--background-color-btn) !important;
}


/* BREADCRUMB END */

/* GOOGLE MAPS Styling */
.map_open {
    margin: 50px auto;
    text-align: center;
}

.map_open .mapWrapper {
    width: 100%;
}

.map_open .mapWrapper .map-info {
    width: 100%;
    margin: 25px 0;
}

.map_open .mapWrapper a {
    background: var(--background-color-btn);
    padding: 10px 15px;
    border-radius: 50px;
    color: var(--white-color);
    margin-top: 20px;
    display: inline-block;
    border: 1px solid var(--background-color-btn);
    transition: all .3s linear;
    font-weight: 600;
}

.map_open .mapWrapper a:hover {
    background: var(--white-color);
    color: var(--background-color-btn);
!important;
}

.map_open .mapWrapper .map-info h2 {
    color: var(--background-color-btn);
    margin: 10px 0;
}

.map_open .mapWrapper iframe {
    width: 100%;
}

.map_open #map {
    width: 100%;
}


.map_open .mapWrapper {
    width: 100%;
}

/* GOOGLE MAPS Styling */

/* SECTION CHECK PRICE START */
.check-price {
    width: 100%;
    margin: 30px 0;
}

.check-price .check-price-box {
    width: 100%;
    background: var(--white-color);
    padding: 30px 20px 40px 20px;
    border-radius: 10px;
    box-shadow: 0 0 5px var(--box-shadow-color);
    position: relative;
}


.check-price .check-price-box .check-price-box-bottom .check-price-box-bottom-item {
    background: var(--background-color);
    padding: 20px;
    border-radius: 10px;
    margin: 0 10px;
    width: calc(25% - 20px);
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.check-price .check-price-box .check-price-box-bottom .check-price-box-bottom-item label {
    margin-left: 20px;
}

.check-price .check-price-box .check-price-box-bottom .check-price-box-bottom-item #currency {
    border: none;
    border-radius: 10px;
    background: var(--background-color);
    outline: none;
}

.check-price .check-price-box .check-price-box-bottom .check-price-box-bottom-item #amount {
    border: none;
    outline: none;
    direction: rtl;
    border-radius: 10px;
    padding: 5px;
}

.check-price .check-price-box .check-price-box-bottom .check-price-box-bottom-item #equivalent {
    border: none;
    outline: none;
    direction: rtl;
    border-radius: 10px;
    padding: 5px;
}

.check-price .check-price-box .check-price-box-bottom .set-order {
    background: var(--background-color-btn);
    cursor: pointer;
    color: var(--white-color);
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 0 5px var(--box-shadow-color);
}

.check-price .ability-order {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}

.check-price .ability-order .ability-order-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px;
    background: var(--white-color);
    padding: 10px;
    border-radius: 20px;
    width: 160px;
    height: 160px;
}

.check-price .ability-order .ability-order-item img {
    width: 70px;
    height: 70px;
}

.check-price .ability-order .ability-order-item p {
    margin: 0 0 3px 0;
    color: var(--text-color);
    font-size: 13px;
    font-weight: 500;
}

/* SECTION CHECK PRICE END */

/* CATEGORY SECTION START */
.category-section {
    width: 100%;
    margin: 50px 0 30px 0;
}

.category-section .category-item {
    width: 100%;
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 0 5px var(--box-shadow-color);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.category-section .category-item .category-image {
    width: 100%;
    margin-bottom: 20px;
}

.category-section .category-item .category-image img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.category-section .category-item .category-item-text {
    position: absolute;
    top: 10px;
}

/* CATEGORY SECTION END */

/* CATEGORY PRODUCT SECTION START */
.categories-products {
    width: 100%;

}

.categories-products .categories-products-container {
    padding: 20px 0;
}

/* CATEGORY PRODUCT SECTION END */

/* BANNER ADS START */
.ads-section {
    width: 100%;
    padding: 10px 0;
    margin: 10px 0;
}

.ads-section .ads-banner-image {
    width: 100%;
    box-shadow: 0 0 5px var(--box-shadow-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    padding: 0;
}

.ads-section .ads-banner-image:hover {
    box-shadow: 0 0 1px var(--box-shadow-color);
}

.ads-section .ads-banner-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* BANNER ADS END */

/* SLIDER PRODUCT START */
.slider-product {
    width: 100%;
    margin: 30px 0 30px 0;
    background: var(--white-color);
}

.slider-product .slider-product-item {
    width: 100%;
    background-color: var(--white-color);
    padding: 10px;
    border-radius: 10px;
}

.slider-product .slider-product-item .slider-product-item-image {
    width: 100%;
    margin-bottom: 10px;
}

.slider-product .slider-product-item .slider-product-item-image img {
    width: 100%;
    height: 300px;
    object-fit: contain;
}

.slider-product .slider-product-item .slider-product-item-text {
    width: 100%;
}

.slider-product .slider-product-item .slider-product-item-text p {
    font-size: 14px;
    font-weight: 800;
    text-align: justify;
    color: var(--text-color);
}

.slider-product .slider-product-item .slider-product-item-amount {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.slider-product .slider-product-item .slider-product-item-amount .slider-product-item-discount-percentage {
    background: var(--background-color-btn);
    color: var(--white-color);
    width: 40px;
    height: 40px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-product .slider-product-item .slider-product-item-amount .slider-product-item-price {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
}

.slider-product .slider-product-item .slider-product-item-amount .slider-product-item-price .slider-product-item-price-ofter-discount {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-color);
}

.slider-product .slider-product-item .slider-product-item-amount .slider-product-item-price .slider-product-item-price-before-discount {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color-tow);
    text-decoration: line-through !important;
}

/* SLIDER PRODUCT END */

/* BEST BRANDS START */
.best-brands {
    width: 100%;
    margin: 30px 0;
    background: var(--white-color);
}

.best-brands .logo-slider-item {
    width: 100%;
    border-radius: 10px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    padding: 20px 10px;
    background: #fff;
}

.best-brands .logo-slider-item:hover {
    box-shadow: 0 0 1px var(--box-shadow-color);
}

.best-brands .logo-slider-item img {
    width: 100%;
}

/* BEST BRANDS END */

/* DAYACHANGE PLUS SECTION START */
.dayachange-plus {
    width: 100%;
}

.dayachange-plus .container-dayachange-plus {
    padding: 20px 0 10px;
}

.dayachange-plus .container-dayachange-plus .dayachange-plus-box {
    width: 100%;
    background: purple;
    border-radius: 10px;
    padding: 25px;
}

.dayachange-plus .container-dayachange-plus .dayachange-plus-box .dayachange-plus-box-right {
    width: 35%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.dayachange-plus .container-dayachange-plus .dayachange-plus-box .dayachange-plus-box-right .dayachange-plus-box-right-description {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.dayachange-plus .container-dayachange-plus .dayachange-plus-box .dayachange-plus-box-right .dayachange-plus-box-right-description img {
    width: 150px;
    margin-bottom: 20px;
}

.dayachange-plus .container-dayachange-plus .dayachange-plus-box .dayachange-plus-box-right .dayachange-plus-box-right-description p {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}

.dayachange-plus .container-dayachange-plus .dayachange-plus-box .dayachange-plus-box-right .dayachange-plus-box-right-description a {
    background: var(--background-color-btn);
    color: var(--white-color);
    font-size: 15px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 10px;
    box-shadow: 0 0 5px var(--box-shadow-color);
    transition: all 0.3s ease-in-out;
}

.dayachange-plus .container-dayachange-plus .dayachange-plus-box .dayachange-plus-box-right .dayachange-plus-box-right-description a:hover {
    background: var(--white-color);
    color: var(--background-color-btn);
}

.dayachange-plus .container-dayachange-plus .dayachange-plus-box .dayachange-plus-box-left {
    width: 65%;
    background: #fff;
    padding: 30px 10px;
    border-radius: 10px;
}


.dayachange-plus .container-dayachange-plus .dayachange-plus-box .dayachange-plus-box-left .dayachange-plus-box-left-products {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.dayachange-plus .container-dayachange-plus .dayachange-plus-box .dayachange-plus-box-left .dayachange-plus-box-left-products .dayachange-plus-box-left-product-item {
    flex: 0 0 calc(15% - 5px);
    max-width: calc(15% - 5px);
    margin: 20px 5px;
}

.dayachange-plus .container-dayachange-plus .dayachange-plus-box .dayachange-plus-box-left .dayachange-plus-box-left-products .dayachange-plus-box-left-product-item img {
    width: 100%;
}

/* DAYACHANGE PLUS SECTION END */

/* TESTIMONIAL START */
.testimonial {
    width: 100%;
    margin: 30px 0;
}

.testimonial .testimonial-item {
    width: 100%;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    background: var(--white-color);
}

.testimonial .testimonial-item .testimonial-image {
    margin: 10px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-text {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.testimonial .testimonial-item .testimonial-text .testimonial-name {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.testimonial .testimonial-item .testimonial-text .testimonial-job {
    color: var(--text-color-tow);
    font-size: 14px;
    font-weight: 500;
}

.testimonial .testimonial-item .testimonial-image img {
    box-shadow: 0 0 5px var(--box-shadow-color);
    border-radius: 100px;
    width: 100px;
    height: 100px;
}

.testimonial .testimonial-item .testimonial-right {
    flex: 0 0 calc(100% - 20px);
    max-width: calc(100% - 20px);
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.testimonial .testimonial-item .testimonial-right .testimonial-score-number {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 10px 0;
}

.testimonial .testimonial-item .testimonial-right .testimonial-score-number .testimonial-score-number-main {
    font-size: 22px;
    color: var(--text-color);
    margin-left: 5px;
    margin-bottom: 0;
}

.testimonial .testimonial-item .testimonial-right .testimonial-score-icon .testimonial-score-icon-star {
    position: relative;
}

.testimonial .testimonial-item .testimonial-right .testimonial-score-icon .testimonial-score-icon-star .rate-color {
    position: absolute;
    right: 0;
    top: 2px;
    font-size: 17px;
}

.testimonial .testimonial-item .testimonial-right .testimonial-score-number p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 0;
}

.testimonial .testimonial-item .testimonial-right .testimonial-score-icon {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.testimonial .testimonial-item .testimonial-right .testimonial-score-icon p {
    font-size: 12px;
    color: var(--text-color-tow);
    margin-right: 10px;
}

.testimonial .testimonial-item .testimonial-description {
    text-align: center;
    margin-top: 10px;
}

.testimonial .testimonial-item .testimonial-description p {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-color);
}

/* TESTIMONIAL END */

/* BLOG SECTION START */
.blogs {
    width: 100%;
}

.blog-item {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 5px var(--box-shadow-color);
    padding: 10px;
    margin: 10px 0;
    background: var(--background-color);
}

.blog-item .blog-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.blog-item .blog-box .blog-image {
    width: 100%;
}

.blog-item .blog-box .blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    filter: grayscale(100%);
    transition: all 0.3s ease-in-out;
}

.blog-item:hover .blog-box .blog-image img {
    filter: grayscale(0);
    transform: scale(0.95);
}

.blog-item .blog-box .blog-info {
    width: 100%;
    margin: 10px 0 5px;
}

.blog-item .blog-box .blog-info .blog-info-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-item .blog-box .blog-info .blog-info-top span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-color-tow);
}

.blog-item .blog-box .blog-info .blog-info-title {
    width: 100%;
    margin: 20px 0 10px;
}

.blog-item .blog-box .blog-info .blog-info-title h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
}

/* BLOG SECTION END */

/* READ MORE SECTION START */
.read-more {
    width: 100%;
    padding: 30px 0;
    position: relative;
    margin-bottom: 20px;
}

.read-more .read-more-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.read-more .read-more-container > * {
    color: var(--text-color);
}

.read-more .read-more-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgb(228 228 228 / 24%) 0%, rgb(253 253 253 / 46%) 100%);
    padding: 20px 0;
}

.read-more .read-more-btn .read-more-btn-show {
    border: none;
    border-radius: 10px;
    background: var(--background-color-btn);
    color: var(--white-color);
    padding: 10px 20px;
    cursor: pointer;
}

/* READ MORE SECTION END */

/* GIFT CARD START */
.gift-card {
    width: 100%;
}

.gift-card .gift-card-category {
    width: 100%;
    background: var(--white-color);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.gift-card .gift-card-category h2 {
    font-size: 22px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 10px;
}

.gift-card .gift-card-category p {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color-tow);
}

.gift-card .gift-card-category .gift-card-items {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.gift-card .gift-card-category .gift-card-items .gift-card-item {
    flex: 0 0 calc(20% - 15px);
    max-width: calc(20% - 15px);
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    box-shadow: 0 0 5px var(--box-shadow-color);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.gift-card .gift-card-category .gift-card-items .gift-card-item:hover {
    transform: scale(1.03);
}

.gift-card .gift-card-category .gift-card-items .gift-card-item .gift-card-item-image {
    width: 100%;
    margin-bottom: 10px;
}

.gift-card .gift-card-category .gift-card-items .gift-card-item .gift-card-item-image img {
    width: 100%;
}

.gift-card .gift-card-category .gift-card-items .gift-card-item .gift-card-item-title {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    text-align: center;
}

.gift-card .gift-card-category .gift-card-items .gift-card-item .gift-card-item-title p {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 10px;
}

.gift-card .gift-card-childs {
    width: 100%;
    background: var(--white-color);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: none;
}

.gift-card .gift-card-childs h2 {
    font-size: 22px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 10px;
}

.gift-card .gift-card-childs p {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color-tow);
}

.gift-card .gift-card-childs .gift-card-child-items {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.gift-card .gift-card-childs .gift-card-child-items .gift-card-child-item {
    flex: 0 0 calc(15% - 20px);
    max-width: calc(15% - 20px);
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    box-shadow: 0 0 5px var(--box-shadow-color);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    padding: 10px;
}

.gift-card .gift-card-childs .gift-card-child-items .gift-card-child-item:hover {
    transform: scale(1.03);
}

.gift-card .gift-card-childs .gift-card-child-items .gift-card-child-item .gift-card-child-img {
    width: 100%;
}

.gift-card .gift-card-childs .gift-card-child-items .gift-card-child-item .gift-card-child-img img {
    width: 100%;
    display: block;
}

.gift-card .gift-card-childs .gift-card-child-items .gift-card-child-item .gift-card-child-description {
    width: 100%;
}

.gift-card .gift-card-childs .gift-card-child-items .gift-card-child-item .gift-card-child-description div {
    font-size: 14px;
    font-weight: 900;
    margin: 10px 0;
    background: var(--background-color-btn);
    padding: 10px;
    border-radius: 10px;
    color: var(--white-color);
}

.gift-card .gift-card-childs .gift-card-child-items .gift-card-child-item .gift-card-child-description p {
    font-size: 14px;
    font-weight: 900;
    color: var(--text-color-tow);
    margin: 0;
}

.gift-card .gift-card-buy {
    width: 100%;
    background: var(--white-color);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: none;
}

.gift-card .gift-card-buy h2 {
    font-size: 22px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 10px;
}

.gift-card .gift-card-buy p {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color-tow);
}

.gift-card .gift-card-buy .gift-card-buy-container {
    display: flex;
    align-items: start;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.gift-card .gift-card-buy .gift-card-buy-container .gift-card-buy-inner-container {
    background: var(--background-color);
    padding: 20px;
    border-radius: 15px;
    margin: 0 0 0 200px;
}

.gift-card .gift-card-buy .gift-card-buy-container .gift-card-buy-item {
    flex: 0 0 calc(100% - 0px);
    max-width: calc(100% - 0px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    box-shadow: 0 0 5px var(--box-shadow-color);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    padding: 10px;
}

.gift-card .gift-card-buy .gift-card-buy-container .gift-card-buy-item:hover {
    transform: scale(1.03);
}

.gift-card .gift-card-buy .gift-card-buy-container .gift-card-buy-item .gift-card-buy-img {
    width: 100%;
}

.gift-card .gift-card-buy .gift-card-buy-container .gift-card-buy-item .gift-card-buy-img img {
    width: 100%;
    display: block;
}

.gift-card .gift-card-buy .gift-card-buy-container .gift-card-buy-item .gift-card-buy-description {
    width: 100%;
}

.gift-card .gift-card-buy .gift-card-buy-container .gift-card-buy-item .gift-card-buy-description div {
    font-size: 14px;
    font-weight: 900;
    margin: 10px 0;
    background: var(--background-color-btn);
    padding: 10px;
    border-radius: 10px;
    color: var(--white-color);
}

.gift-card .gift-card-buy .gift-card-buy-container .gift-card-buy-item .gift-card-buy-description p {
    font-size: 14px;
    font-weight: 900;
    color: var(--text-color-tow);
    margin: 0;
}

.gift-card .gift-card-buy .gift-card-buy-container .info-gift-card-pay {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
}

.gift-card .gift-card-buy .gift-card-buy-container .info-gift-card-pay .price-gift-card-info {
    font-size: 16px;
    font-weight: 700;
    color: var(--background-color-btn);
    margin: 10px 0;
}

.gift-card .gift-card-buy .gift-card-buy-container .info-gift-card-pay .price-gift-card-info-all {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    margin: 10px 0;
}

.gift-card .gift-card-buy .gift-card-buy-container .gift-card-buy-info-description-title {
    width: 100%;
    text-align: start;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color-light);
    padding-bottom: 10px;
}

.gift-card .gift-card-buy .gift-card-buy-container .gift-card-buy-info-description-title span {
    color: var(--text-color-tow);
    font-size: 18px;
    font-weight: 700;
}

.gift-card .gift-card-buy .gift-card-buy-container .gift-card-buy-info-description-title svg {
    color: var(--background-color-btn);
    font-size: 18px;
    font-weight: 700;
}

.gift-card .gift-card-buy .gift-card-buy-container .gift-card-buy-info-description-body > * {
    color: var(--text-color);
}


.gift-card .gift-card-buy .gift-card-buy-container .gift-card-buy-info {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
}


.gift-card .gift-card-buy .gift-card-buy-container .gift-card-buy-info {
    width: 100%;
}

.gift-card .gift-card-buy .gift-card-buy-container .gift-card-buy-info textarea {
    resize: none;
}

.gift-card .gift-card-basket {
    width: 100%;
    background: var(--white-color);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.gift-card .gift-card-basket .gift-card-alert {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.gift-card .gift-card-basket .gift-card-alert .gift-card-alert-accept {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 20px 0;
}

.gift-card .gift-card-basket .gift-card-alert .gift-card-alert-accept input {
    margin-left: 10px;
    width: 20px;
    height: 20px;
}

.gift-card .gift-card-basket .gift-card-alert .gift-card-alert-accept label {
    color: var(--text-color-tow);
    font-size: 16px;
    font-weight: 700;
}

.gift-card .gift-card-basket .gift-card-alert .gift-card-alert-pay {
    width: 100%;
}

.gift-card .gift-card-basket .gift-card-alert .gift-card-alert-pay .gift-card-alert-pay-types {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}


.gift-card .gift-card-basket .gift-card-alert .gift-card-alert-pay .gift-card-alert-pay-types .select-pay-list-item-checkbox {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: 70px;
}

.gift-card .gift-card-basket .gift-card-alert .gift-card-alert-pay .gift-card-alert-pay-types .select-pay-list-item-checkbox input {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    width: 0;
}

.gift-card .gift-card-basket .gift-card-alert .gift-card-alert-pay .gift-card-alert-pay-types .select-pay-list-item-checkbox label {
    color: var(--text-color-tow);
    font-size: 16px;
    font-weight: 700;

}

.gift-card .gift-card-basket .gift-card-alert .gift-card-alert-pay .gift-card-alert-pay-types .select-pay-list-item-checkbox .check-input-span-pay {
    width: 25px;
    height: 25px;
    border: 1px solid var(--border-color-light);
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 2px var(--box-shadow-color);
    margin-left: 10px;
    background: var(--white-color);
}

.gift-card .gift-card-basket .gift-card-alert .gift-card-alert-pay .gift-card-alert-pay-types .select-pay-list-item-checkbox .check-input-span-pay.active {
    background: var(--background-color-btn);
}

.gift-card .gift-card-basket .gift-card-alert .gift-card-alert-pay .gift-card-alert-pay-types .select-pay-list-item-checkbox .check-input-span-pay svg {
    color: var(--white-color);
}

.gift-card .gift-card-basket .gift-card-alert .gift-card-alert-pay .accept-pay-btn {
    width: 100%;
    margin-top: 30px;
}

.gift-card .gift-card-basket .gift-card-alert .gift-card-alert-pay .accept-pay-btn button {
    width: 100%;
    border: none;
    background: var(--background-color-btn);
    color: var(--white-color);
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    opacity: 0.5;
}

.gift-card .gift-card-basket .gift-card-alert .gift-card-alert-pay .accept-pay-btn button.active {
    opacity: 1;
}

.gift-card .gift-card-basket .gift-card-alert .gift-card-alert-pay .accept-pay-btn button:hover {
    background: #6f137a;
    transform: scale(1.01);
}

/* GIFT CARD END */


/* BUY WITHOUT API START */
.buy-without-api {
    width: 100%;
}

.buy-without-api .buy-without-api-container {
    width: 100%;
    background: var(--white-color);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: normal;
    justify-content: center;
    flex-wrap: wrap;
}

.buy-without-api .buy-without-api-container .top-buy-without-api {
    width: 100%;
}

.buy-without-api .buy-without-api-container .top-buy-without-api .title-buy-without-api {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.buy-without-api .buy-without-api-container .top-buy-without-api .title-buy-without-api .title-buy-without-api-top {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.buy-without-api .buy-without-api-container .top-buy-without-api .title-buy-without-api .title-buy-without-api-top img {
    width: 60px;
    margin-left: 15px;
}

.buy-without-api .buy-without-api-container .top-buy-without-api .title-buy-without-api .title-buy-without-api-top h1 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-color-tow);
}

.buy-without-api .buy-without-api-container .top-buy-without-api .title-buy-without-api .title-buy-without-api-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
}

.buy-without-api .buy-without-api-container .top-buy-without-api .title-buy-without-api .title-buy-without-api-bottom p {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-color);
}


.buy-without-api .buy-without-api-container .info-buy-without-api {
    width: 100%;
    height: 100%;
    padding: 0 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: unset;
    justify-content: space-between;
}

.buy-without-api .buy-without-api-container .info-buy-without-api .top-info-buy-without-api .discount-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.buy-without-api .buy-without-api-container .info-buy-without-api .top-info-buy-without-api .discount-info .discount-info-container {
    padding: 10px;
    background: var(--background-color);
    border-radius: 15px;
    width: 65%;
}

.buy-without-api .buy-without-api-container .info-buy-without-api .top-info-buy-without-api .discount-info .discount-info-container p {
    margin: 0;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 800;
    white-space: nowrap; /* جلوگیری از رفتن به خط بعد */
}

.buy-without-api .buy-without-api-container .info-buy-without-api .top-info-buy-without-api .discount-info .discount-info-container span {
    margin: 0;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap; /* جلوگیری از رفتن به خط بعد */
}

.buy-without-api .buy-without-api-container .info-buy-without-api .top-info-buy-without-api .discount-info .discount-code {
    position: relative;
}

.buy-without-api .buy-without-api-container .info-buy-without-api .top-info-buy-without-api .discount-info .discount-code .discount-code-tooltip {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    color: var(--dark-color);
    width: 80px;
    background: var(--white-color);
    border-radius: 10px;
    padding: 5px;
}

.buy-without-api .buy-without-api-container .info-buy-without-api .top-info-buy-without-api .discount-info .discount-code .discount-code-tooltip.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.buy-without-api .buy-without-api-container .info-buy-without-api .top-info-buy-without-api .discount-info .discount-code .discount-code-btn {
    padding: 10px;
    border-radius: 10px;
    background: var(--background-color-btn);
    color: var(--white-color);
    font-size: 14px;
    cursor: pointer;
    display: inline-block;
}

.buy-without-api .buy-without-api-container .info-buy-without-api .top-info-buy-without-api .discount-info .discount-code .discount-code-text {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    width: 0;
    height: 0;
    display: inline-block;
}

.buy-without-api .buy-without-api-container .info-buy-without-api .middle-info-buy-without-api {
    width: 100%;
    display: flex;
    align-items: center;
}

.buy-without-api .buy-without-api-container .info-buy-without-api .middle-info-buy-without-api .delivery-buy-without-api {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.buy-without-api .buy-without-api-container .info-buy-without-api .middle-info-buy-without-api .delivery-buy-without-api .delivery-buy-btn {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    padding: 10px;
    border-radius: 10px;
    background: var(--background-color);
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.buy-without-api .buy-without-api-container .info-buy-without-api .middle-info-buy-without-api .delivery-buy-without-api .delivery-buy-btn.active {
    background: var(--background-color-btn);
    color: var(--white-color);
}

.buy-without-api .buy-without-api-container .info-buy-without-api .middle-info-buy-without-api .delivery-buy-without-api .delivery-buy-btn label {
    cursor: pointer;
}

.buy-without-api .buy-without-api-container .info-buy-without-api .middle-info-buy-without-api .delivery-buy-without-api .delivery-buy-btn input {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    width: 0;
    height: 0;
}


.buy-without-api .buy-without-api-container .info-buy-without-api .bottom-info-buy-without-api {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
}

.buy-without-api .buy-without-api-container .info-buy-without-api .bottom-info-buy-without-api .price-buy-without-api {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    background: var(--background-color);
    padding: 10px;
    border-radius: 10px;
}

.buy-without-api .buy-without-api-container .info-buy-without-api .bottom-info-buy-without-api .price-buy-without-api .price-product-buy-without-api {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.buy-without-api .buy-without-api-container .info-buy-without-api .bottom-info-buy-without-api .price-buy-without-api .price-product-buy-without-api span {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 600;
}

.buy-without-api .buy-without-api-container .info-buy-without-api .bottom-info-buy-without-api .price-buy-without-api .price-delivery-buy-without-api {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px dashed var(--border-color);
}

.buy-without-api .buy-without-api-container .info-buy-without-api .bottom-info-buy-without-api .price-buy-without-api .price-delivery-buy-without-api span {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 600;
}

.buy-without-api .buy-without-api-container .info-buy-without-api .bottom-info-buy-without-api .price-buy-without-api .price-finally-buy-without-api {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.buy-without-api .buy-without-api-container .info-buy-without-api .bottom-info-buy-without-api .price-buy-without-api .price-finally-buy-without-api span {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
}

.buy-without-api .buy-without-api-container .info-buy-without-api .bottom-info-buy-without-api .price-buy-without-api .accept-btn-buy-without-api {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0 0 0;
}

.buy-without-api .buy-without-api-container .info-buy-without-api .bottom-info-buy-without-api .price-buy-without-api .accept-btn-buy-without-api button {
    width: 100%;
    border: none;
    background: var(--background-color-btn);
    border-radius: 10px;
    padding: 10px;
    color: var(--white-color);
}

.country-store {
    width: 100%;
}

.country-store .country-store-select {
    background: var(--white-color);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.country-store .country-store-select .country-select-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.country-store .country-store-select .country-select-top .country-store-title {

}

.country-store .country-store-select .country-select-top .country-store-title span {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
}

.country-store .country-store-select .country-select-top .country-store-items {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.country-store .country-store-select .country-select-top .country-store-items ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.country-store .country-store-select .country-select-top .country-store-items ul li {
    margin: 10px 10px;
}

.country-store .country-store-select .country-select-top .country-store-items ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 18px;
    box-shadow: 0 0 5px var(--box-shadow-color);
    padding: 5px;
    border-radius: 5px;
    border: 1px solid var(--border-color-light);
    transition: all 0.3s ease-in-out;
    background: linear-gradient(45deg, var(--background-color) 10%, var(--white-color) 90%);
}

.country-store .country-store-select .country-select-top .country-store-items ul li a.active {
    background: var(--background-color-btn);
    color: var(--white-color);
}

.country-store .country-store-select .country-select-top .country-store-items ul li a:hover {
    box-shadow: 0 0 0 var(--box-shadow-color);
}

.country-store .country-store-select .country-select-top .country-store-items ul li a img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-left: 10px;
}


.country-store .country-store-select .country-select-bottom {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.country-store .country-store-select .country-select-bottom .country-store-select-items {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.country-store .country-store-select .country-select-bottom .country-store-select-items .country-store-select-item {
    flex: 0 0 calc(20% - 20px);
    max-width: calc(20% - 20px);
    height: 300px;
    margin: 10px 10px;
    border-radius: 15px;
    border: 1px solid var(--border-color-light);
    padding: 30px 20px;
    box-shadow: 0 0 5px var(--box-shadow-color);
    transition: all 0.3s ease-in-out;
}

.country-store .country-store-select .country-select-bottom .country-store-select-items .country-store-select-item:hover {
    box-shadow: 0 0 0 var(--box-shadow-color);
}

.country-store .country-store-select .country-select-bottom .country-store-select-items .country-store-select-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.country-store .country-store-select .country-select-bottom .country-store-select-items .country-store-select-item a .country-store-select-image {
    margin-bottom: 25px;
}

.country-store .country-store-select .country-select-bottom .country-store-select-items .country-store-select-item a .country-store-select-image img {
    width: 150px;
    height: 100px;
    object-fit: contain;
}

.country-store .country-store-select .country-select-bottom .country-store-select-items .country-store-select-item a .country-store-select-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.country-store .country-store-select .country-select-bottom .country-store-select-items .country-store-select-item a .country-store-select-title span {
    color: var(--text-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.country-store .country-store-select .country-select-bottom .country-store-select-items .country-store-select-item a .country-store-select-description {
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color-tow);
    text-align: center;
}

/* BUY WITHOUT API END */

/* CURRENCY PAYMENT START */
.currency-payment {
    width: 100%;
    padding: 20px 0;
}

.currency-payment .header-currency-payment {
    width: 100%;
    padding-left: 100px;
}

.currency-payment .header-currency-payment .title-currency-payment {
    width: 100%;
    margin-bottom: 30px;
}

.currency-payment .header-currency-payment .title-currency-payment h1 {
    color: var(--text-color-tow);
    font-size: 28px;
    font-weight: 600;
}

.currency-payment .header-currency-payment .description-currency-payment {
    width: 100%;
    margin-bottom: 30px;
}

.currency-payment .header-currency-payment .description-currency-payment p {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
}

.currency-payment .bottom-currency-payment {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.currency-payment .bottom-currency-payment .button-currency-payment-container {
    margin-left: 20px;
    margin-bottom: 20px;
}

.currency-payment .bottom-currency-payment .button-currency-payment-container a {
    background: var(--background-color-btn);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    width: 200px;
    height: 40px;
    display: inline-flex;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--background-color-btn);
    transition: all 0.3s ease-in-out;
}

.currency-payment .bottom-currency-payment .button-currency-payment-container a:hover {
    background: var(--white-color);
    color: var(--dark-color);
}

.currency-payment .image-currency-payment {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.currency-payment .image-currency-payment img {
    width: 100%;
}

.step-currency-payment {
    width: 100%;
    margin: 50px 0;
}

.step-currency-payment .step-currency-payment-items {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-currency-payment .step-currency-payment-items .step-currency-payment-item {
    flex: 0 0 calc(25% - 20px);
    max-width: calc(25% - 20px);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.step-currency-payment .step-currency-payment-items .step-currency-payment-item:first-child::after {
    content: "";
    width: 50%;
    height: 1px;
    border: 1px dashed var(--border-color);
    position: absolute;
    top: 29%;
    transform: translateY(-50%);
    left: 0;
    z-index: -1;
}

.step-currency-payment .step-currency-payment-items .step-currency-payment-item::after {
    content: "";
    width: 100%;
    height: 1px;
    border: 1px dashed var(--border-color);
    position: absolute;
    top: 29%;
    transform: translateY(-50%);
    left: 0;
    z-index: -1;
}

.step-currency-payment .step-currency-payment-items .step-currency-payment-item:last-child::after {
    content: "";
    width: 50%;
    height: 1px;
    border: 1px dashed var(--border-color);
    position: absolute;
    top: 29%;
    transform: translateY(-50%);
    right: 0;
    z-index: -1;
}

.step-currency-payment .step-currency-payment-items .step-currency-payment-item .step-currency-payment-description {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.step-currency-payment .step-currency-payment-items .step-currency-payment-item span {
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--background-color-btn);
    color: var(--white-color);
    border-radius: 100px;
    font-size: 24px;
    margin-bottom: 30px;
}

.step-currency-payment .step-currency-payment-items .step-currency-payment-item h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-color-tow);
    margin-bottom: 10px;
}

.step-currency-payment .step-currency-payment-items .step-currency-payment-item p {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
}

.step-currency-payment .step-currency-payment-items .step-currency-payment-item svg {
    position: absolute;
    left: -2px;
    top: 77px;
    color: var(--border-color);
    font-size: 20px;
}

.site-currency-payment {
    width: 100%;
    background: url("../../app-assets/images/world-map.png") center center no-repeat;
    background-size: contain;
    margin: 100px 0;
}

.site-currency-payment .site-currency-payment-items {
    padding: 0 100px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.site-currency-payment .site-currency-payment-item {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 15px;
    margin-bottom: 20px;
}

.site-currency-payment .site-currency-payment-item img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    margin-bottom: 20px;
    background: var(--white-color);
    border-radius: 10px;
    padding: 20px;
}

.site-currency-payment .site-currency-payment-item p {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-color-tow);
}

.site-currency-payment .site-currency-payment-item span {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-color);
}

.site-currency-payment .site-currency-payment-border {
    width: 50%;
    height: 2px;
    border: 1px dashed var(--border-color);
}

.site-currency-payment .site-currency-payment-title {
    width: auto;
    color: var(--text-color-tow);
    font-size: 20px;
    font-weight: 600;
    margin: 0 20px;
    white-space: nowrap;
}

.site-currency-payment .site-currency-payment-btn {
    width: 200px;
    height: 40px;
    background: var(--background-color-btn);
    border-radius: 10px;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    border: 1px solid var(--background-color-btn);
    transition: all 0.3s ease-in-out;
}

.site-currency-payment .site-currency-payment-btn:hover {
    background: var(--white-color);
    color: var(--dark-color);
}

.port-currency-payment {
    width: 100%;
    margin: 40px 0;
    padding: 40px 0;
}

.port-currency-payment .port-currency-payment-items {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.port-currency-payment .port-currency-payment-items .port-currency-payment-item {
    flex: 0 0 calc(150px - 20px);
    max-width: calc(150px - 20px);
    margin: 20px;
}

.port-currency-payment .port-currency-payment-items .port-currency-payment-item img {
    width: 100%;
    border-radius: 15px;
}

.port-currency-payment .port-currency-payment-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.port-currency-payment .port-currency-payment-title p {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-color-tow);
    margin-bottom: 30px;
}

.port-currency-payment .port-currency-payment-title span {
    font-size: 22px;
    font-weight: 800;
    color: var(--background-color-btn);
}

.port-currency-payment .port-currency-payment-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.port-currency-payment .port-currency-payment-btn a {
    padding: 10px 30px;
    background: var(--background-color-btn);
    color: var(--white-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    border: 1px solid var(--background-color-btn);
}

.port-currency-payment .port-currency-payment-btn a:hover {
    background: var(--white-color);
    color: var(--text-color);
}

.video-section {
    width: 100%;
    padding: 50px 0;
    margin: 30px 0;
    background: var(--white-color);
}

/* CURRENCY PAYMENT END */

/* BLOG SECTION START */
.blogs {
    width: 100%;
    margin: 10px 0 30px 0;
}

.blogs .blogs-container {
    padding: 10px 0 10px;
}

.blog-item {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 5px var(--box-shadow-color);
    padding: 10px;
    margin: 10px 0;
    background: var(--background-color);
}

.blog-item a {
    width: 100%;
}

.blog-item .blog-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.blog-item .blog-box .blog-image {
    width: 100%;
}

.blog-item .blog-box .blog-image img {
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
    filter: grayscale(100%);
    transition: all 0.3s ease-in-out;
}

.blog-item:hover .blog-box .blog-image img {
    filter: grayscale(0);
    transform: scale(0.95);
}

.blog-item .blog-box .blog-info {
    width: 100%;
    margin: 10px 0 5px;
}

.blog-item .blog-box .blog-info .blog-info-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-item .blog-box .blog-info .blog-info-top span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-color);
}

.blog-item .blog-box .blog-info .blog-info-title {
    width: 100%;
    margin: 20px 0 10px;
}

.blog-item .blog-box .blog-info .blog-info-title h3 {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-color);
}

/* BLOG SECTION END */

/* NEW PAGE START */

.news-page {
    width: 100%;
    padding: 30px 0;
}

.news-page .news-page-main-image {
    width: 100%;

}

.news-page .news-page-main-image img {
    width: 100%;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 0 10px var(--box-shadow-color);
}

.news-page .news-page-icons {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 0;
}

.news-page .news-page-icons .news-page-icon {
    margin-left: 10px;
    font-size: 14px;
    color: var(--background-color-btn);
}

.news-page .news-page-side {
    width: 100%;
}

.news-page .news-page-side .section-side {
    width: 100%;
    margin-bottom: 40px;
}

.news-page .news-page-side .section-side .line {
    width: 100%;
}

.news-page .news-page-side .section-side:first-child {
    margin-top: 0;
}

.news-page .news-page-side .section-side .section-side-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-color);
}

.news-page .news-page-side .section-side .category-side-box {
    width: 100%;
    height: 100px;
    border-radius: 15px;
    box-shadow: 0 0 10px var(--box-shadow-color);
    overflow: hidden;
    margin: 0 0 20px 0;
}

.news-page .news-page-side .section-side .category-side-box a {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
}

.news-page .news-page-side .section-side .category-side-box a:after {
    content: " ";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
    z-index: 2;
}

.news-page .news-page-side .section-side .category-side-box:hover a:after {
    background: rgba(0, 0, 0, 0.2);
}

.news-page .news-page-side .section-side .category-side-box a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease-in-out;
}

.news-page .news-page-side .section-side .category-side-box:hover a img {
    transform: scale(1.2);
}

.news-page .news-page-side .section-side .category-side-box a span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: 800;
    color: var(--white-color);
    z-index: 3;
    width: 100%;
    text-align: center;
}

.comment-news {
    width: 100%;
    margin: 40px 0 0 0;
}

/*  NEW PAGE END */


/* PAGES START */

.headline-content {
    width: 100%;
    padding: 0 0 30px;
}


.headline-content .headline-content-box {
    width: 100%;
    padding: 0 0 0 20px;
}

.headline-content .headline-content-box .headline-content-title {
    width: 100%;
    margin: 20px 0;
}

.headline-content .headline-content-box .headline-content-title span {
    color: var(--text-color-tow);
    font-size: 18px;
    font-weight: 600;
}

.headline-content .headline-content-box .headline-content-items {
    width: 100%;
    padding: 0 10px;
}

.headline-content .headline-content-box .headline-content-items .headline-content-item {
    width: 100%;
    margin-right: 20px;
}

.headline-content .headline-content-box .headline-content-items .headline-content-item p {
    color: var(--text-color-tow);
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.headline-content .headline-content-box .headline-content-items .headline-content-item p svg {
    color: var(--text-color);
    font-size: 10px;
    margin-left: 5px;
}

.headline-content .headline-content-box .headline-content-items .headline-content-item p a {
    color: var(--text-color-tow);
}

.headline-content .featuring-image {
    width: 100%;
}

.headline-content .featuring-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 10px var(--box-shadow-color);
}


.main-content-page {
    width: 100%;
    padding: 30px 0;
    margin-bottom: 50px;
}

.main-content-page .main-content-box {
    width: 100%;
    color: var(--text-color);
}

.main-content-page .main-content-box > * {
    color: var(--text-color);
}

/* PAGES END */

/* CONTACT US START */
.contact-us-title {
    width: 100%;
    padding: 50px 0;
}

.contact-us-title h1 {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-color-tow);
    text-align: center;
}

.contact-us-title h1 span {
    color: var(--background-color-btn);
}

.contact-us-content {
    width: 100%;
    margin-bottom: 20px;
}

.contact-us-content .contact-us-item {
    width: 100%;
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 0 5px var(--box-shadow-color);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    height: 250px;
}

.contact-us-content .contact-us-item .contact-us-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-us-content .contact-us-item .contact-us-text h2 {
    font-size: 22px;
    font-weight: 900;
    color: var(--text-color-tow);
    margin-bottom: 15px;
}

.contact-us-content .contact-us-item .contact-us-text p {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 15px;
}

.contact-us-content .contact-us-item .contact-us-text a {
    background: var(--background-color-btn);
    text-align: center;
    padding: 10px 20px;
    border-radius: 10px;
    color: var(--white-color);
    display: inline-block;
}

.contact-us-content .contact-us-item img {
    width: 75px;
}

.contact-us-info {
    width: 100%;
    margin-bottom: 50px;
}

.contact-us-info .contact-us-info-body {
    width: 100%;
    background: var(--white-color);
    padding: 50px 0;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contact-us-info .contact-us-info-body .contact-us-info-item {
    margin: 20px 0;
    width: 30%;
}

.contact-us-info .contact-us-info-body .contact-us-info-item h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-color-tow);
}

.contact-us-info .contact-us-info-body .contact-us-info-item p {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
}

.contact-us-info .contact-us-info-body .contact-us-info-item .contact-us-info-item-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border: 1px solid var(--border-color-light);
    padding: 20px;
    border-radius: 15px;
}

.contact-us-info .contact-us-info-body .contact-us-info-item .contact-us-info-item-inner .contact-us-info-item-right {
    color: var(--text-color-tow);
}

.contact-us-info .contact-us-info-body .contact-us-info-item .contact-us-info-item-inner .contact-us-info-item-right svg {
    margin-left: 20px;
}

.contact-us-info .contact-us-info-body .contact-us-info-item .contact-us-info-item-inner .contact-us-info-item-left {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 800;
}

.contact-us-info .contact-us-info-body .contact-us-info-item .contact-us-info-item-inner .contact-us-info-item-left p {
    margin: 0;
    font-size: 16px;
    color: var(--text-color);
}

.contact-us-info .contact-us-info-body .contact-us-info-item .contact-us-info-item-inner .contact-us-info-item-left p a {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-color-tow);
}

.contact-us-info .contact-us-info-body .contact-us-info-item .contact-us-info-item-inner .contact-us-info-item-left ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
}

.contact-us-info .contact-us-info-body .contact-us-info-item .contact-us-info-item-inner .contact-us-info-item-left ul li {
    margin: 0 10px;
}

.contact-us-info .contact-us-info-body .contact-us-info-item .contact-us-info-item-inner .contact-us-info-item-left ul li a {
    color: var(--background-color-btn);
    font-size: 24px;
}

.contact-us-info .contact-us-info-body .contact-us-info-item .contact-us-info-item-inner .contact-us-info-item-left ul li a svg {
    transition: all 0.5s ease-in-out;
}

.contact-us-info .contact-us-info-body .contact-us-info-item .contact-us-info-item-inner .contact-us-info-item-left ul li:hover a svg {
    transform: rotate(360deg);
}

/* CONTACT US END */


/* ABOUT US START */
.about-us-title {
    width: 100%;
    margin-bottom: 30px;
    padding: 30px 0;
}

.about-us-title .about-us-title-header {
    padding-left: 100px;
}

.about-us-title .about-us-title-header h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-color-tow);
    margin-bottom: 20px;
}

.about-us-title .about-us-title-header h1 span {
    color: var(--background-color-btn);
}

.about-us-title .about-us-title-header > span {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color-tow);
    display: inline-block;
}

.about-us-title .about-us-title-header p {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    text-align: justify;
}

.about-us-title .about-us-title-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.about-us-title .about-us-title-image img {
    border-radius: 15px;
    box-shadow: 0 0 5px var(--box-shadow-color);
    width: 100%;
}

.why-us {
    width: 100%;
    background: var(--white-color);
    padding: 50px 0;
}

.why-us .why-us-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
}

.why-us .why-us-title p {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color-tow);
}

.why-us .why-us-title h2 {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-color);
}

.why-us .why-us-items {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

.why-us .why-us-items .why-us-item {
    background: var(--background-color);
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 15px;
    padding: 20px;
    height: 250px;
    margin-bottom: 20px;
}

.why-us .why-us-items .why-us-item .why-us-item-icon {
    margin-bottom: 20px;
}

.why-us .why-us-items .why-us-item .why-us-item-icon img {
    width: 40px;
}

.why-us .why-us-items .why-us-item .why-us-item-title {
    margin-bottom: 10px;
}

.why-us .why-us-items .why-us-item .why-us-item-title h2 {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-color-tow);
}

.why-us .why-us-items .why-us-item .why-us-item-description p {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    text-align: justify;
}

.value-us {
    width: 100%;
    background: var(--dark-color);
    padding: 100px 0;
    margin-bottom: 30px;
}

.value-us .value-us-img {
    width: 100%;
}

.value-us .value-us-img img {
    border-radius: 15px;
    box-shadow: 0 0 5px var(--box-shadow-color);
    width: 100%;
}

.value-us .value-us-description {
    width: 100%;
    margin-right: 50px;
}

.value-us .value-us-description > * {
    color: var(--white-color);
}

.team-us {
    width: 100%;
    padding: 50px 0;
    margin-bottom: 50px;
}

.team-us .team-us-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 5px var(--box-shadow-color);
    margin-bottom: 20px;
}

.team-us .team-us-item .team-us-img {
    width: 100%;
}

.team-us .team-us-item .team-us-img img {
    width: 100%;
}

.team-us .team-us-item .team-us-name {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-color-tow);
    padding: 20px 0;
}

/* ABOUT US END */

/* FAQ PAGE START */
.faq-page-title {
    width: 100%;
}

.faq-page-title h1 {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-color-tow);
    text-align: center;
    margin-bottom: 20px;
}

.faq-page-title p {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    text-align: center;
}

.faq-page-title .faq-items-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-page-title .faq-items-content .faq-items {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0 10px 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 0;
    width: 100%;
}

.faq-page-title .faq-items-content .faq-items .faq-item-category {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    margin: 0 15px;
    transition: all 0.3s ease-in-out;
    flex: 0 0 calc(110px - 10px);
    max-width: calc(110px - 10px);
}

.faq-page-title .faq-items-content .faq-items .faq-item-category:hover {
    transform: scale(1.05);
}

.faq-page-title .faq-items-content .faq-items .faq-item-category img {
    width: 50px;
    margin-bottom: 30px;
}

.faq-page-title .faq-items-content .faq-items .faq-item-category .faq-content-category p {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}


.faq-footer {
    width: 100%;
    margin: 50px 0 100px 0;
}

.faq-footer .faq-footer-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: var(--white-color);
    border-radius: 15px;
    padding: 40px;
    flex-wrap: wrap;
}

.faq-footer .faq-footer-content .faq-footer-content-right p {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color-tow);
    margin-bottom: 40px;

}

.faq-footer .faq-footer-content .faq-footer-content-right h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 40px;
}

.faq-footer .faq-footer-content .faq-footer-content-left .faq-footer-btn-right {
    padding: 10px 20px;
    border-radius: 10px;
    border: 2px solid var(--dark-color);
    margin-left: 20px;
    color: var(--dark-color);
    font-size: 18px;
}

.faq-footer .faq-footer-content .faq-footer-content-left .faq-footer-btn-right:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
}


.faq-footer .faq-footer-content .faq-footer-content-left .faq-footer-btn-left {
    padding: 10px 40px;
    border-radius: 10px;
    border: 2px solid var(--background-color-btn);
    margin-left: 20px;
    color: var(--white-color);
    font-size: 18px;
    background: var(--background-color-btn);
}

.faq-footer .faq-footer-content .faq-footer-content-left .faq-footer-btn-left:hover {
    background: var(--white-color);
    color: var(--background-color-btn);
}

/* FAQ PAGE END */

/* BASKET PAGE START */
.basket-page {
    width: 100%;
    margin: 25px 0 5px 0;
}

.basket-page .basket-page-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;

}

.basket-page .basket-page-items .basket-page-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px;
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 0 5px var(--box-shadow-color);
    margin-bottom: 10px;
}

.basket-page .basket-page-items .basket-page-item .basket-page-item-image img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.basket-page .basket-page-items .basket-page-item .basket-page-item-name {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.basket-page .basket-page-items .basket-page-item .basket-page-item-name .basket-page-item-title p {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-color);
}

.basket-page .basket-page-items .basket-page-item .basket-page-item-name .basket-page-item-title span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color-tow);
}

.basket-page .basket-page-items .basket-page-item .basket-page-item-count {
    display: flex;
    align-items: center;
    justify-content: center;
}

.basket-page .basket-page-items .basket-page-item .basket-page-item-count .basket-page-item-count-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-left: 10px;
    width: 120px;
    height: 45px;
}

.basket-page .basket-page-items .basket-page-item .basket-page-item-count .basket-page-item-count-box .count-add-to-basket-btn-plus {
    flex: 0 0 33%;
    max-width: 33%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-color);
}

.basket-page .basket-page-items .basket-page-item .basket-page-item-count .basket-page-item-count-box .count-add-to-basket-btn-plus:hover {
    color: #00b309;
}

.basket-page .basket-page-items .basket-page-item .basket-page-item-count .basket-page-item-count-box .count-add-to-basket-btn-number {
    flex: 0 0 33%;
    max-width: 33%;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-color);
    display: inline-block;
}

.basket-page .basket-page-items .basket-page-item .basket-page-item-count .basket-page-item-count-box .count-add-to-basket-btn-mines {
    flex: 0 0 33%;
    max-width: 33%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-color);
}

.basket-page .basket-page-items .basket-page-item .basket-page-item-count .basket-page-item-count-box .count-add-to-basket-btn-mines:hover {
    color: #c00;
}

.basket-page .basket-page-items .basket-page-item .basket-page-item-count .remove-item-fom-basket {
    margin-right: 10px;
    color: var(--text-color);
    cursor: pointer;
}

.basket-page .basket-page-items .basket-page-item .basket-page-item-count .remove-item-fom-basket:hover {
    color: #c00;
}


.basket-page .basket-page-items .basket-page-item .basket-page-item-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.basket-page .basket-page-items .basket-page-item .basket-page-item-price .basket-item-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 10px;
}

.basket-page .basket-page-items .basket-page-item .basket-page-item-price .basket-item-discount {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color-tow);
    margin-bottom: 10px;
}

.basket-page .basket-page-items .basket-page-item .basket-page-item-price .basket-item-total {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 10px;
}

.basket-page .basket-factor-box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 0 5px var(--box-shadow-color);
    margin-bottom: 10px;
    overflow: hidden;
}

.basket-page .basket-factor-box .basket-factor-box-title {
    margin: 10px 0;
    padding: 0 20px;
}

.basket-page .basket-factor-box .basket-factor-box-title h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-color-tow);
}

.basket-page .basket-factor-box-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
}

.basket-page .basket-factor-box-items .basket-factor-box-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 5px;
    padding: 5px 0;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
}

.basket-page .basket-factor-box-items .basket-factor-box-item.basket-factor-box-total {
    border-top: 1px solid var(--border-color-light);
}

.basket-page .basket-factor-box-items .basket-factor-box-item .basket-factor-box-discount-title-number {
    color: #00b309;
}

.basket-page .basket-factor-box-items .basket-factor-box-item .basket-factor-box-total-title-number {
    font-size: 22px;
    font-weight: 800;
}

.basket-page .basket-factor-box-items .basket-factor-box-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0 20px 0;
}

.basket-page .basket-factor-box-items .basket-factor-box-submit a {
    background: var(--background-color-btn);
    padding: 5px 20px;
    border-radius: 10px;
    color: var(--white-color);
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.basket-page .basket-factor-box-items .basket-factor-box-submit a:hover {
    background: #9d2caa;
}

.basket-page .basket-factor-box-footer {
    width: 100%;
    background: var(--background-color);
    padding: 10px 20px;
    border-top: 2px solid var(--border-color-light);
}

.basket-page .basket-factor-box-footer p {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--text-color);
}

.basket-page .basket-empty {
    display: none;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.basket-page .basket-empty.active {
    display: flex;
}

.basket-page .basket-empty .basket-empty-box {
    width: 100%;
    padding: 30px 15px;
    border: 1px solid var(--border-color-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--white-color);
    box-shadow: 0 0 5px var(--box-shadow-color);
}

.basket-page-address {
    width: 100%;
    padding: 10px;
}

.basket-page-address .basket-page-address-box {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    background: var(--white-color);
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 0 5px var(--box-shadow-color);
}

.basket-page-address .basket-page-address-box .basket-page-address-box-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
}

.basket-page-address .basket-page-address-box .basket-page-address-box-item h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-color);
}

.basket-page-address .basket-page-address-box .basket-page-address-box-item .basket-page-address-box-item-right {
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 2px solid var(--border-color);
    margin-left: 10px;
    padding-left: 10px;
}

.basket-page-address .basket-page-address-box .basket-page-address-box-item .basket-page-address-box-item-right svg {
    margin-left: 10px;
    font-size: 16px;
    color: var(--background-color-btn);
}

.basket-page-address .basket-page-address-box .basket-page-address-box-item .basket-page-address-box-item-right span {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-color);
}

.basket-page-address .basket-page-address-box .basket-page-address-box-item .basket-page-address-box-item-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.basket-page-address .basket-page-address-box .basket-page-address-box-item .basket-page-address-box-item-left .basket-page-address-box-item-left-address {
    margin-left: 20px;
    color: var(--text-color);
    font-size: 16px;

}

.basket-page-address .basket-page-address-box .basket-page-address-box-item .basket-page-address-box-item-left .basket-page-address-box-item-left-address-edit span {
    background: var(--background-color-btn);
    padding: 5px 20px;
    border-radius: 10px;
    color: var(--white-color);
    cursor: pointer;
    margin: 10px 0;
    display: inline-block;
}

.basket-page-address .basket-page-address-box .basket-page-address-box-item .basket-page-address-box-item-add-new-address {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.basket-page-address .basket-page-address-box .basket-page-address-box-item .basket-page-address-box-item-add-new-address svg {
    margin-left: 10px;
    font-size: 18px;
    color: var(--text-color);
}

.basket-page-address .basket-page-address-box .basket-page-address-box-item .basket-page-address-box-item-add-new-address p {
    margin-bottom: 0;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 800;
}


/* BASKET PAGE END */

/* PAYMENT PAGE START */
.payment-page {
    width: 100%;
    margin-bottom: 5px;
}

.payment-page form {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.payment-page .payment-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    box-shadow: 0 0 5px var(--box-shadow-color);
    background: var(--white-color);
    padding: 20px;
    border-radius: 15px;
}

.payment-page .payment-container .payment-title {
    width: 100%;
    margin-bottom: 20px;
}

.payment-page .payment-container .payment-title h2 {
    font-size: 20px;
    font-weight: 800;
    color: var(--background-color-btn);
}

.payment-page .payment-container .payment-items {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-bottom: 1px solid var(--border-color-light);
}

.payment-page .payment-container .payment-items .payment-item {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.payment-page .payment-container .payment-items .payment-item .payment-item-check {
    margin-left: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.payment-page .payment-container .payment-items .payment-item .payment-item-check input {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    width: 0;
}

.payment-page .payment-container .payment-items .payment-item .payment-item-check .check-input-span-payment {
    width: 25px;
    height: 25px;
    border: 1px solid var(--border-color-light);
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 2px var(--box-shadow-color);
    margin-left: 10px;
    background: var(--white-color);
}

.payment-page .payment-container .payment-items .payment-item .payment-item-check .check-input-span-payment.active {
    background: var(--background-color-btn);
}

.payment-page .payment-container .payment-items .payment-item .payment-item-check .check-input-span-payment svg {
    color: var(--white-color);
}

.payment-page .payment-container .payment-items .payment-item .payment-item-name {
    width: 100%;
    display: flex;
}

.payment-page .payment-container .payment-items .payment-item .payment-item-name .payment-item-image {
    margin-left: 10px;
}

.payment-page .payment-container .payment-items .payment-item .payment-item-name .payment-item-image img {
    width: 20px;
    height: 20px;
}

.payment-page .payment-container .payment-items .payment-item .payment-item-name .payment-item-name-title {
    display: flex;
    flex-direction: column;
}

.payment-page .payment-container .payment-items .payment-item .payment-item-name .payment-item-name-title label {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 5px;
}

.payment-page .payment-container .payment-items .payment-item .payment-item-name .payment-item-name-title span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color-tow);
}

.payment-page .payment-container .discount-payment {
    width: 100%;
    height: 35px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    padding-top: 15px;
}

.payment-page .payment-container .discount-payment .discount-payment-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    margin-bottom: 20px;
}

.payment-page .payment-container .discount-payment .discount-payment-top h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-color);
}

.payment-page .payment-container .discount-payment .discount-payment-top svg {
    color: var(--text-color);
}

.payment-page .payment-container .discount-payment .discount-payment-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.payment-page .payment-container .discount-payment .discount-payment-button input {
    outline: none;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--border-color-light);
    width: 300px;
    margin-left: 20px;
}

.payment-page .payment-container .discount-payment .discount-payment-button span {
    border: 1px solid var(--background-color-btn);
    padding: 10px 20px;
    background: var(--background-color-btn);
    border-radius: 10px;
    color: var(--white-color);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.payment-page .payment-container .discount-payment .discount-payment-button #error-discount {
    display: none;
    color: red;
    margin-bottom: 0;
    margin-right: 5px;
}

.payment-page .payment-container .discount-payment .discount-payment-button #error-discount.active {
    display: block;
}

.payment-page .payment-container .discount-payment .discount-payment-button span:hover {
    background: var(--white-color);
    color: var(--background-color-btn);
}


.payment-page .payment-factor-box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 0 5px var(--box-shadow-color);
    margin-bottom: 10px;
    overflow: hidden;
}

.payment-page .payment-factor-box .payment-factor-box-title {
    margin: 10px 0;
    padding: 0 20px;
}

.payment-page .payment-factor-box .payment-factor-box-title h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-color-tow);
}

.payment-page .payment-factor-box-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
}

.payment-page .payment-factor-box-items .payment-factor-box-price {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-page .payment-factor-box-items .payment-factor-box-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 5px;
    padding: 5px 0;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
}

.payment-page .payment-factor-box-items .payment-factor-box-item.payment-factor-box-discount {
    display: none;
}

.payment-page .payment-factor-box-items .payment-factor-box-item.payment-factor-box-discount.active {
    display: flex;
}

.payment-page .payment-factor-box-items .payment-factor-box-item.payment-factor-box-total {
    border-top: 1px solid var(--border-color-light);
}

.payment-page .payment-factor-box-items .payment-factor-box-item .payment-factor-box-discount-title-number {
    color: #00b309;
}

.payment-page .payment-factor-box-items .payment-factor-box-item .payment-factor-box-total-title-number {
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-page .payment-factor-box-items .payment-factor-box-item .payment-factor-box-total-title-number p {
    margin-bottom: 0;
    margin-left: 5px;
}

.payment-page .payment-factor-box-items .payment-factor-box-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0 20px 0;
}

.payment-page .payment-factor-box-items .payment-factor-box-submit button {
    background: var(--background-color-btn);
    padding: 5px 20px;
    border-radius: 10px;
    color: var(--white-color);
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    border: 1px solid var(--background-color-btn);
}

.payment-page .payment-factor-box-items .payment-factor-box-submit button:hover {
    background: #9d2caa;
}

.payment-page .payment-factor-box-footer {
    width: 100%;
    background: var(--background-color);
    padding: 10px 20px;
    border-top: 2px solid var(--border-color-light);
}

.payment-page .payment-factor-box-footer p {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--text-color);
}

/* PAYMENT PAGE END */

/* DASHBOARD USER START */
.dashboard {
    width: 100%;
    margin-bottom: 50px;
}

.dashboard .dashboard-menu {
    width: 100%;
    background: var(--white-color);
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 0 5px var(--box-shadow-color);
    position: sticky;
    top: 120px;
}

.dashboard .dashboard-menu .dashboard-menu-header {
    width: 100%;
    margin-bottom: 20px;
}

.dashboard .dashboard-menu .dashboard-menu-header .dashboard-menu-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.dashboard .dashboard-menu .dashboard-menu-header .dashboard-menu-image img {
    width: 60px;
    height: 60px;
    border-radius: 100px;
    object-fit: cover;
    box-shadow: 0 0 5px var(--box-shadow-color);
}

.dashboard .dashboard-menu .dashboard-menu-header .dashboard-menu-name {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.dashboard .dashboard-menu .dashboard-menu-header .dashboard-menu-name p {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 800;
    color: var(--text-color-tow);
}

.dashboard .dashboard-menu .dashboard-menu-content {
    width: 100%;
}

.dashboard .dashboard-menu .dashboard-menu-content ul {
    width: 100%;
    padding: 0;
}

.dashboard .dashboard-menu .dashboard-menu-content ul li {
    width: 100%;
}

.dashboard .dashboard-menu .dashboard-menu-content ul li a {
    color: var(--text-color);
    font-size: 15px;
    font-weight: 800;
    width: 100%;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 5px;
}

.dashboard .dashboard-menu .dashboard-menu-content ul li a:hover {
    background: var(--background-color-btn);
    color: var(--white-color);
}

.dashboard .dashboard-menu .dashboard-menu-content ul li a.active {
    background: var(--background-color-btn);
    color: var(--white-color);
}

.dashboard .dashboard-menu .dashboard-menu-content ul li a svg {
    margin-left: 15px;
}

.dashboard .dashboard-menu .dashboard-menu-footer {
    padding: 10px 0;
    text-align: center;
    border-top: 1px dashed var(--border-color-light);
}

.dashboard .dashboard-menu .dashboard-menu-footer h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-color-tow);
    margin: 0;
}

.dashboard .dashboard-page {
    width: 100%;

}

.dashboard .dashboard-page-header {
    width: 100%;
    margin-bottom: 20px;
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 0 5px var(--box-shadow-color);
    padding: 15px 20px;

}

.dashboard .dashboard-page-header .dashboard-page-header-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard .dashboard-page-header .dashboard-page-header-top .dashboard-page-header-top-right p {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-color-tow);
    margin: 0;
}

.dashboard .dashboard-page-header .dashboard-page-header-top .dashboard-page-header-top-left a {
    color: var(--text-color-tow);
    position: relative;
}

.dashboard .dashboard-page-header .dashboard-page-header-top .dashboard-page-header-top-left a span {
    position: absolute;
    background: var(--background-color-btn);
    color: var(--white-color);
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    top: -7px;
    font-size: 10px;
    left: 0;
}

.dashboard .dashboard-page .dashboard-page-info {
    width: 100%;
    margin-bottom: 20px;
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 0 5px var(--box-shadow-color);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.dashboard .dashboard-page .dashboard-page-info .dashboard-page-info-right {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.dashboard .dashboard-page .dashboard-page-info .dashboard-page-info-right .dashboard-page-info-right-top {
    width: 100%;
    margin-bottom: 30px;
}

.dashboard .dashboard-page .dashboard-page-info .dashboard-page-info-right .dashboard-page-info-right-top p {
    color: var(--text-color-tow);
    font-size: 14px;
    font-weight: 800;
    margin: 0;
}

.dashboard .dashboard-page .dashboard-page-info .dashboard-page-info-right .dashboard-page-info-right-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
}

.dashboard .dashboard-page .dashboard-page-info .dashboard-page-info-right .dashboard-page-info-right-bottom .dashboard-page-info-box {
    flex: 0 0 calc(33% - 30px);
    max-width: calc(33% - 30px);

}

.dashboard .dashboard-page .dashboard-page-info .dashboard-page-info-right .dashboard-page-info-right-bottom .dashboard-page-info-box a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.dashboard .dashboard-page .dashboard-page-info .dashboard-page-info-right .dashboard-page-info-right-bottom .dashboard-page-info-box a img {
    width: 40px;
    height: 40px;
}

.dashboard .dashboard-page .dashboard-page-info .dashboard-page-info-right .dashboard-page-info-right-bottom .dashboard-page-info-box a p {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-color-tow);
}

.dashboard .dashboard-page .dashboard-page-info .dashboard-page-info-left {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.dashboard .dashboard-page .dashboard-page-info .dashboard-page-info-left a img {
    width: 100%;
    border-radius: 10px;
}

.dashboard .dashboard-page .dashboard-page-last-order {
    width: 100%;
    margin-bottom: 20px;
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 0 5px var(--box-shadow-color);
    padding: 15px 20px;
}


.dashboard .dashboard-page .dashboard-page-last-order .dashboard-page-last-order-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard .dashboard-page .dashboard-page-last-order .dashboard-page-last-order-header .dashboard-page-last-order-header-right {
    display: flex;
    align-items: center;
}

.dashboard .dashboard-page .dashboard-page-last-order .dashboard-page-last-order-header .dashboard-page-last-order-header-right svg {
    color: var(--background-color-btn);
    font-size: 16px;
    margin-left: 10px;
}

.dashboard .dashboard-page .dashboard-page-last-order .dashboard-page-last-order-header .dashboard-page-last-order-header-right h4 {
    color: var(--text-color-tow);
    font-size: 16px;
    margin: 0;
}

.dashboard .dashboard-page .dashboard-page-last-order .dashboard-page-last-order-header .dashboard-page-last-order-header-left a {
    display: flex;
    align-items: center;
    color: var(--text-color-tow);
}

.dashboard .dashboard-page .dashboard-page-last-order .dashboard-page-last-order-header .dashboard-page-last-order-header-left a svg {
    margin-right: 10px;
}

.dashboard .dashboard-page .dashboard-page-last-order .dashboard-page-last-order-content {
    overflow-x: auto;
}

.order-details-modal {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease-in-out;
}


.order-details-modal.active {
    display: flex;
    animation: showModalOrderDetails 0.5s ease-in-out forwards;
}

@keyframes showModalOrderDetails {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

.order-details-modal .order-details-modal-box {
    background: var(--white-color);
    width: 30%;
    padding: 20px;
    border-radius: 10px;
}

.order-details-modal .order-details-modal-box .order-details-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px dashed var(--border-color);
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.order-details-modal .order-details-modal-box .order-details-modal-header h2 {
    font-size: 20px;
    font-weight: 800;
}

.order-details-modal .order-details-modal-box .order-details-modal-header .close-order-details-modal {
    cursor: pointer;
}


.order-details-modal .order-details-modal-box .order-details-modal-body{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}





div.dt-container div.dt-layout-row div.dt-layout-cell.dt-layout-start {
    margin-right: 0 !important;
}

div.dt-container div.dt-layout-row div.dt-layout-cell.dt-layout-end {
    margin-left: 0 !important;
}

table.dataTable.nowrap th, table.dataTable.nowrap td {
    text-align: center !important;
}

table.dataTable.nowrap th, table.dataTable.nowrap td {
    color: var(--dark-color);
}

div.dt-container .dt-length, div.dt-container .dt-search, div.dt-container .dt-info, div.dt-container .dt-processing, div.dt-container .dt-paging {
    color: var(--dark-color) !important;
}

.dashboard .dashboard-page .dashboard-page-service {
    width: 100%;
    margin-bottom: 20px;
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 0 5px var(--box-shadow-color);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.dashboard .dashboard-page .dashboard-page-service .dashboard-page-service-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.dashboard .dashboard-page .dashboard-page-service .dashboard-page-service-title svg {
    color: var(--background-color-btn);
    margin-left: 10px;
}

.dashboard .dashboard-page .dashboard-page-service .dashboard-page-service-title p {
    color: var(--text-color-tow);
    font-size: 16px;
    margin: 0;
}

.dashboard .dashboard-page .dashboard-page-service .dashboard-service-item {
    width: 100%;
}

.dashboard .dashboard-page .dashboard-page-service .dashboard-service-item img {
    width: 100%;
    border-radius: 10px;
}

/* DASHBOARD USER END */

/* CURRENCY PAYMENT START */
.description-currency-payment {
    width: 100%;
    margin-bottom: 20px;
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 0 5px var(--box-shadow-color);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.description-currency-payment .description-currency-payment-title {
    width: 100%;
    margin-bottom: 10px;
}

.description-currency-payment .description-currency-payment-title h3 {
    color: var(--background-color-btn);
    font-size: 18px;
    font-weight: 800;
}

.description-currency-payment .description-currency-payment-content {
    width: 100%;
}

.description-currency-payment .description-currency-payment-content > * {
    color: var(--text-color);
    text-align: justify;
}

.currency-payment-form-right {
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 0 5px var(--box-shadow-color);
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.currency-payment-form-left {
    margin-right: 20px;
    padding: 15px 10px;
}

.currency-payment-form-left .currency-payment-form-left-title {
    width: 100%;
    margin-bottom: 50px;
}

.currency-payment-form-left .currency-payment-form-left-title h3 {
    font-size: 14px;
    font-weight: 800;
    color: var(--dark-color);
    text-align: center;
}

.currency-payment-form-left .currency-payment-form-left-title img {
    width: 100%;
    border-radius: 10px;
}

.currency-payment-form-left .currency-payment-form-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.currency-payment-form-left .currency-payment-form-detail .currency-payment-form-detail-item {
    display: flex;
    align-items: center;
}

.currency-payment-form-left .currency-payment-form-detail .currency-payment-form-detail-item p {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 800;
    margin: 0;
}

.currency-payment-form-left .currency-payment-form-detail .currency-payment-form-detail-item span {
    margin-right: 10px;
    font-size: 14px;
    font-weight: 500;
}

.currency-payment-form-left .currency-payment-form-detail-accept {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 20px 0;
}

.currency-payment-form-left .currency-payment-form-detail-accept input {
    margin-left: 10px;
    width: 20px;
    height: 20px;
}

.currency-payment-form-left .currency-payment-form-detail-accept label {
    color: var(--text-color-tow);
    font-size: 12px;
    font-weight: 700;
}

.currency-payment-form-detail-pay {
    width: 100%;
    margin-top: 30px;
}

.currency-payment-form-detail-pay button {
    width: 100%;
    border: none;
    background: var(--background-color-btn);
    color: var(--white-color);
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    opacity: 0.5;
}

.currency-payment-form-detail-pay button.active {
    opacity: 1;
}

/* CURRENCY PAYMENT END */

/* WALLET PAGE START */
.wallet-page-info {
    width: 100%;
    margin-bottom: 20px;
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 0 5px var(--box-shadow-color);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.wallet-page-info .wallet-page-info-right {

    border-left: 2px solid var(--border-color-light);
    padding-left: 20px;
}

.wallet-page-info .wallet-page-info-right .wallet-page-info-right-top {
    margin-bottom: 20px;
}

.wallet-page-info .wallet-page-info-right .wallet-page-info-right-top .wallet-page-info-title h3 {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 800;
}

.wallet-page-info .wallet-page-info-right .wallet-page-info-right-top .wallet-page-info-refresh span {
    cursor: pointer;
}

.wallet-page-info .wallet-page-info-right .wallet-page-info-right-top .wallet-page-info-refresh span svg {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 800;
}

.wallet-page-info .wallet-page-info-left {

}

.wallet-page-info .wallet-page-info-left .wallet-page-info-process-wallet {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}


.wallet-page-info .wallet-page-info-left .wallet-page-info-process-wallet .wallet-page-info-process-wallet-item {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.wallet-page-info .wallet-page-info-left .wallet-page-info-process-wallet .wallet-page-info-process-wallet-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.wallet-page-info .wallet-page-info-left .wallet-page-info-process-wallet .wallet-page-info-process-wallet-item p {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-color-tow);
}

.increase-wallet-modal {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease-in-out;
}

.increase-wallet-modal.active {
    display: flex;
    animation: showModalIncreaseWallet 0.5s ease-in-out forwards;
}

@keyframes showModalIncreaseWallet {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

.increase-wallet-modal .increase-wallet-modal-box {
    background: var(--white-color);
    width: 30%;
    padding: 20px;
    border-radius: 10px;
}

.increase-wallet-modal .increase-wallet-modal-box .increase-wallet-modal-box-title {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.increase-wallet-modal .increase-wallet-modal-box .increase-wallet-modal-box-title h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-color);
}

.increase-wallet-modal .increase-wallet-modal-box .increase-wallet-modal-box-title .close-increase-modal {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.increase-wallet-modal .increase-wallet-modal-box .increase-wallet-modal-box-title .close-increase-modal svg {
    font-size: 22px;
    color: var(--text-color-tow);
}

.increase-wallet-modal .increase-wallet-modal-box .amount-wallet-increase-input {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
}

.increase-wallet-modal .increase-wallet-modal-box .amount-wallet-increase-input label {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-color-tow);
    margin-bottom: 10px;
}

.increase-wallet-modal .increase-wallet-modal-box .bank-wallet-increase-input {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
}

.increase-wallet-modal .increase-wallet-modal-box .bank-wallet-increase-input label {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-color-tow);
    margin-bottom: 10px;
}

.increase-wallet-modal .increase-wallet-modal-box .send-increase-wallet {
    display: flex;
    align-items: center;
    justify-content: center;
}


.cash-withdrawal-modal {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease-in-out;
}

.cash-withdrawal-modal.active {
    display: flex;
    animation: showModalIncreaseWallet 0.5s ease-in-out forwards;
}

.cash-withdrawal-modal .cash-withdrawal-modal-box {
    background: var(--white-color);
    width: 30%;
    padding: 20px;
    border-radius: 10px;
}

.cash-withdrawal-modal .cash-withdrawal-modal-box .cash-withdrawal-modal-box-title {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.cash-withdrawal-modal .cash-withdrawal-modal-box .cash-withdrawal-modal-box-title h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-color);
}

.cash-withdrawal-modal .cash-withdrawal-modal-box .cash-withdrawal-modal-box-title .close-cash-withdrawal-modal {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.cash-withdrawal-modal .cash-withdrawal-modal-box .increase-wallet-modal-box-title .close-increase-modal svg {
    font-size: 22px;
    color: var(--text-color-tow);
}

.cash-withdrawal-modal .cash-withdrawal-modal-box .shaba-user-cash-withdrawal {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
}

.cash-withdrawal-modal .cash-withdrawal-modal-box .shaba-user-cash-withdrawal label {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-color-tow);
    margin-bottom: 10px;
}

.cash-withdrawal-modal .cash-withdrawal-modal-box .full-name-user-cash-withdrawal {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
}

.cash-withdrawal-modal .cash-withdrawal-modal-box .full-name-user-cash-withdrawal label {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-color-tow);
    margin-bottom: 10px;
}

.cash-withdrawal-modal .cash-withdrawal-modal-box .amount-cash-withdrawal {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
}

.cash-withdrawal-modal .cash-withdrawal-modal-box .amount-cash-withdrawal label {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-color-tow);
    margin-bottom: 10px;
}

.cash-withdrawal-modal .cash-withdrawal-modal-box .send-cash-withdrawal {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* WALLET PAGE END */

/* USER ACCOUNT PAGE START */
.user-account {
    width: 100%;
    margin-bottom: 20px;
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 0 5px var(--box-shadow-color);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.user-account .user-account-tabs {
    width: 100%;
    margin-bottom: 20px;
    padding: 10px 0;
}

.user-account .user-account-tabs .user-account-tabs-items {
    width: 100%;
}

.user-account .user-account-tabs .user-account-tabs-items ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
}

.user-account .user-account-tabs .user-account-tabs-items ul li {
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid var(--border-color-light);
    box-shadow: 0 0 5px var(--box-shadow-color);
    border-radius: 10px;
    color: var(--dark-color);
    cursor: pointer;
}

.user-account .user-account-tabs .user-account-tabs-items ul li.active {
    background: var(--background-color-btn);
    color: var(--white-color);
}

.user-account .user-account-item {
    width: 100%;
    display: none;
    align-items: center;
    justify-content: flex-start;
}

.user-account .user-account-item.active {
    display: flex;
}

.user-account .user-account-item form {
    display: flex;
    flex-wrap: wrap;
}

.user-account .user-account-item .user-account-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.user-account .user-account-item .user-account-info-header h3 {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-color-tow);
    margin: 0;
}

.user-account .user-account-item .user-account-info-header span {
    font-size: 16px;
    font-weight: 900;
    color: var(--white-color);
    background: var(--background-color-btn);
    padding: 7px 15px;
    border-radius: 10px;
}

.user-account .user-account-item .user-account-avatar-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.user-account .user-account-item .user-account-avatar-header h3 {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-color-tow);
}

.user-account .user-account-item .user-account-avatar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
}

.user-account .user-account-item .user-account-avatar-content .user-account-avatar-image {

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.user-account .user-account-item .user-account-avatar-content .user-account-avatar-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 100px;
}

.user-account .user-account-item .user-account-avatar-content .user-account-avatar-image #edit-avatar-btn {
    position: absolute;
    background: var(--background-color-btn);
    color: var(--white-color);
    font-size: 16px;
    border-radius: 100px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
    bottom: 0;
    cursor: pointer;
}


.user-account .user-account-item .user-account-avatar-footer {
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid var(--border-color-light);
}

.user-account .user-account-item .user-account-avatar-footer p {
    font-size: 14px;
    font-weight: 500;
    text-align: justify;
    color: var(--text-color);
}


.user-account .user-account-item .add-bank-card-user {
    height: 200px;
    width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 15px;
    box-shadow: 0 0 5px var(--box-shadow-color);
    cursor: pointer;
    margin-bottom: 20px;
    margin-left: 20px;
}

.user-account .user-account-item .add-bank-card-user svg {
    font-size: 20px;
    color: var(--background-color-btn);
}

.user-account .user-account-item .add-bank-card-user span {
    margin-top: 30px;
}

.user-account .user-account-item .bank-card-user {
    width: 100%;
    max-width: 400px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    border-radius: 15px;
    box-shadow: 0 0 5px var(--box-shadow-color);
    padding: 20px 30px;
    background: var(--background-color);
    margin-bottom: 20px;
    margin-left: 20px;
}

.user-account .user-account-item .bank-card-user.active {
    background: #358aff;
}

.user-account .user-account-item .bank-card-user .bank-card-user-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    color: var(--text-color-tow);
    margin-bottom: 30px;
    position: relative;
}

.user-account .user-account-item .bank-card-user .bank-card-user-title .card-active {
    background: #00b309;
    color: var(--white-color);
    font-size: 15px;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 30px;
}

.user-account .user-account-item .bank-card-user.active .bank-card-user-title {
    color: #fff;
}

.user-account .user-account-item .bank-card-user .bank-card-user-number {
    font-size: 16px;
    color: var(--text-color-tow);
    margin-bottom: 10px;
}

.user-account .user-account-item .bank-card-user.active .bank-card-user-number {
    color: #fff;
}

.user-account .user-account-item .bank-card-user .bank-card-user-shaba {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-color-tow);
    margin-bottom: 20px;
}

.user-account .user-account-item .bank-card-user.active .bank-card-user-shaba {
    color: #fff;
}

.user-account .user-account-item .bank-card-user .bank-card-user-name {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    color: var(--text-color-tow);
    margin-bottom: 30px;
    position: relative;
}

.user-account .user-account-item .bank-card-user .bank-card-user-name .bank-card-settings {
    position: absolute;
    width: 100%;
    max-width: 300px;
    display: none;
    align-items: center;
    justify-content: space-between;
    background: var(--white-color);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 0 5px var(--box-shadow-color);
}

.user-account .user-account-item .bank-card-user .bank-card-user-name .bank-card-settings.active {
    display: inline-flex;
}

.user-account .user-account-item .bank-card-user .bank-card-user-name .bank-card-settings .default-bank-card {
    background: #00b309;
    color: var(--white-color);
    font-size: 12px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 50px;
    cursor: pointer;
}

.user-account .user-account-item .bank-card-user .bank-card-user-name .bank-card-settings .delete-bank-card {
    background: #b02a37;
    color: var(--white-color);
    font-size: 12px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 50px;
    cursor: pointer;
}

.user-account .user-account-item .bank-card-user .bank-card-user-name svg {
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.user-account .user-account-item .bank-card-user.active .bank-card-user-name {
    color: #fff;
}


.add-bank-card-modal {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease-in-out;
}

.add-bank-card-modal.active {
    display: flex;
    animation: showModalIncreaseWallet 0.5s ease-in-out forwards;
}

.add-bank-card-modal .add-bank-card-modal-box {
    background: var(--white-color);
    width: 30%;
    padding: 20px;
    border-radius: 10px;
}

.add-bank-card-modal .add-bank-card-modal-box .add-bank-card-modal-box-title {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.add-bank-card-modal .add-bank-card-modal-box .add-bank-card-modal-box-title h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-color);
}

.add-bank-card-modal .add-bank-card-modal-box .add-bank-card-modal-box-title .close-add-bank-card-modal {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.add-bank-card-modal .add-bank-card-modal-box .increase-wallet-modal-box-title .close-increase-modal svg {
    font-size: 22px;
    color: var(--text-color-tow);
}

.add-bank-card-modal .add-bank-card-modal-box .shaba-user-add-bank-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
}

.add-bank-card-modal .add-bank-card-modal-box .shaba-user-add-bank-card label {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-color-tow);
    margin-bottom: 10px;
}

.add-bank-card-modal .add-bank-card-modal-box .send-add-bank-card {
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-account-item .user-address-header {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color-light);
    flex-wrap: wrap;
}

.user-account-item .user-address-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-color-tow);
}

.user-account-item .user-address-header p {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
    margin: 0;
}

.user-account-item .user-address-header .add-address-btn {
    padding: 7px 15px;
    background: var(--background-color-btn);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white-color);
}

.user-account-item .user-address-header .add-address-btn:hover {
    background: #93269f;
}

.user-account-item .user-address-header .add-address-btn svg {
    font-size: 18px;
    font-weight: 800;
    margin-left: 10px;
}

.user-account-item .user-address-content {
    padding: 20px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.user-account-item .user-address-content .user-address-item {
    width: 100%;
    max-width: 400px;
    height: 210px;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    box-shadow: 0 0 2px var(--box-shadow-color);
    margin: 10px;
}

.user-account-item .user-address-content .user-address-item.no-default {
    border: 2px solid var(--border-color-light);
}

.user-account-item .user-address-content .user-address-item .user-address-item-header {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 2px solid var(--border-color);
}

.user-account-item .user-address-content .user-address-item .user-address-item-header svg {
    margin-left: 10px;
    color: var(--background-color-btn);
}

.user-account-item .user-address-content .user-address-item .user-address-item-header span {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-color-tow);
}

.user-account-item .user-address-content .user-address-item .user-address-item-content {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    border-bottom: 2px solid var(--border-color);
}

.user-account-item .user-address-content .user-address-item .user-address-item-content.no-default {
    padding-bottom: 55px;
    border-bottom: 2px solid var(--border-color-light);
}

.user-account-item .user-address-content .user-address-item .user-address-item-content .user-address-item-content-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 10px 0;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-color-tow);
}

.user-account-item .user-address-content .user-address-item .user-address-item-content .user-address-item-content-top svg {
    margin-left: 10px;
}

.user-account-item .user-address-content .user-address-item .user-address-item-content .user-address-item-content-bottom {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
}

.user-account-item .user-address-content .user-address-item .user-address-item-content .user-address-item-content-bottom p {
    margin: 0;
}

.user-account-item .user-address-content .user-address-item .user-address-item-footer {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.user-account-item .user-address-content .user-address-item .user-address-item-footer span {
    color: var(--text-color);
    border-left: 1px solid var(--border-color-light);
    padding: 0 20px;
    cursor: pointer;
}

.user-account-item .user-address-content .user-address-item .user-address-item-footer span:last-child {
    border-left: none;
}


.add-address-modal {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease-in-out;
    z-index: 99999999;
}

.add-address-modal.active {
    display: flex;
    animation: showModalIncreaseWallet 0.5s ease-in-out forwards;
}

.add-address-modal .add-address-modal-box {
    background: var(--white-color);
    width: 50%;
    height: 90%;
    padding: 20px;
    border-radius: 10px;
    overflow-y: auto;
}

.add-address-modal .add-address-modal-box .add-address-modal-box-title {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.add-address-modal .add-address-modal-box .add-address-modal-box-title h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-color);
}

.add-address-modal .add-address-modal-box .add-address-modal-box-title .close-add-address-modal {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.add-address-modal .add-address-modal-box .add-address-modal-box-title .close-add-address-modal svg {
    font-size: 22px;
    color: var(--text-color-tow);
}

.add-address-modal .add-address-modal-box .add-address-modal-box-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
}

.add-address-modal .add-address-modal-box .add-address-modal-box-content form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.add-address-modal .add-address-modal-box .add-address-modal-box-content label {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-color-tow);
    margin-bottom: 10px;
}

.add-address-modal .add-address-modal-box-content .send-add-address {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

/* USER ACCOUNT PAGE END */

/* SUPPORT PAGE START */
.support-page-new {
    width: 100%;
    margin-bottom: 20px;
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 0 5px var(--box-shadow-color);
    padding: 20px 20px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.support-page-new .support-form {
    width: 100%;
}

.support-page-new .support-form .support-form-header {
    width: 100%;
}

.support-page-new .support-form .support-form-header h3 {
    font-size: 20px;
    color: var(--text-color);
    font-weight: 800;
}

.support-page-new .support-form .support-form-box {
    width: 100%;
}

.support-page-new .support-form .support-form-box .support-form-file {
    width: 100%;
}

.support-page-new .support-form .support-form-box .support-form-file h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-color-tow);
}

.support-page-new .support-form .support-form-box .support-form-file p {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
}

.support-form-file-icon .support-form-file-btn {
    font-size: 22px;
    color: var(--dark-color);
    cursor: pointer;
    background: var(--background-color);
    padding: 10px 20px;
    border-radius: 10px;
}

.support-page-new .support-form-faq {
    background: var(--background-color);
    padding: 20px;
    border-radius: 15px;
    margin-right: 20px;
}

.support-page-new .support-form-faq .support-form-faq-title h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--background-color-btn);
    margin-bottom: 20px;
}

.support-page-new .support-form-faq .support-form-faq-title p {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
}

.support-page-new .support-form-faq .support-form-faq-img {
    width: 100%;
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-page-new .support-form-faq .support-form-faq-img img {
    width: 200px;
}

.support-page-new .support-form-faq .support-form-faq-button {
    width: 100%;
    padding: 20px 0 0 0;
}

.support-page-new .support-form-faq .support-form-faq-button a {
    width: 100%;
    background: var(--background-color-btn);
    color: var(--white-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
}

/* SUPPORT PAGE END */

/* SUPPORT PAGE NEW START */
.support-page {
    width: 100%;
    margin-bottom: 20px;
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 0 5px var(--box-shadow-color);
    padding: 20px 20px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.support-page .support-items {
    width: 100%;
    height: 70vh;
    padding-left: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.support-page .support-items ul {
    padding: 0;
    height: 90%;
    overflow-y: auto;
    margin-bottom: 20px;
    width: 100%;
}

.support-page .support-items ul .support-item {
    width: 100%;
    height: 100px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    padding: 0 15px;
    cursor: pointer;
}

.support-page .support-items ul .support-item.active {
    background: var(--background-color);
    border-right: 3px solid var(--background-color-btn);
}

.support-page .support-items ul .support-item:last-child {
    border-bottom: none;
}

.support-page .support-items ul .support-item .support-item-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.support-page .support-items ul .support-item .support-item-top .support-item-subject {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-color);
}

.support-page .support-items ul .support-item .support-item-top .support-item-department {
    font-size: 12px;
    font-weight: 800;
    background: #fbd9ff;
    border: 2px solid var(--background-color-btn);
    color: var(--background-color-btn);
    padding: 3px 7px;
    border-radius: 10px;
}

.support-page .support-items ul .support-item .support-item-bottom {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.support-page .support-items ul .support-item .support-item-bottom .support-item-subject {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-color);
}

.support-page .support-items ul .support-item .support-item-bottom .support-item-description {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-color);
}

.support-page .support-items ul .support-item .support-item-bottom .support-item-date {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-color);
}

.support-page .support-items .add-support-new {
    width: 100%;
}

.support-page .support-page-title {
    width: 100%;
    text-align: right;
    border-bottom: 1px solid var(--border-color-light);
    margin-bottom: 5px;
    padding-bottom: 5px;
}

.support-page .support-page-title h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-color);
}

.support-page .support-page-description {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.support-page .support-page-description .line {
    width: 100%;
    height: 2px;
    background: var(--dark-border-color);
}

.support-page .support-page-description .support-page-description-box {
    white-space: nowrap;
    padding: 5px 8px;
    font-size: 12px;
    font-weight: 800;
    color: var(--text-color);
}

.support-page .support-page-description .support-page-description-box span {
    font-size: 12px;
    font-weight: 800;
    background: #fbd9ff;
    border: 2px solid var(--background-color-btn);
    color: var(--background-color-btn);
    padding: 3px 7px;
    border-radius: 10px;
    margin: 0 5px;
    display: inline-block;
}

.support-page .support-page-chat {
    width: 100%;
}

.support-page .support-page-chat .support-page-chat-items {
    width: 100%;
    height: 50vh;
    overflow-y: auto;
}

.support-page .support-page-chat .support-page-chat-items .support-page-chat-item {
    width: 90%;
    border: 1px solid var(--border-color-light);
    padding: 5px 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    background: var(--background-color);
    float: right;
}

.support-page .support-page-chat .support-page-chat-items .support-page-chat-item.admin {
    float: left;
    background: var(--white-color);
}

.support-page .support-page-chat .support-page-chat-items .support-page-chat-item .support-page-chat-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.support-page .support-page-chat .support-page-chat-items .support-page-chat-item .support-page-chat-title .support-page-chat-name {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 5px;
}

.support-page .support-page-chat .support-page-chat-items .support-page-chat-item .support-page-chat-content {
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-color);
    margin: 10px 0;
}

.support-page .support-page-chat .support-page-chat-items .support-page-chat-item .support-page-chat-file {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 5px 0;
}

.support-page .support-page-chat .support-page-chat-items .support-page-chat-item .support-page-chat-file .support-page-chat-file-btn {
    cursor: pointer;
    padding: 5px 10px;
    background: var(--white-color);
    border-radius: 5px;
    color: var(--dark-color);
}

.support-page .support-page-chat .form-chat-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.support-page .support-page-chat .form-chat-box button {
    border: none;
    background: var(--background-color-btn);
    border-radius: 10px;
    padding: 10px;
    color: var(--white-color);
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-page .support-page-chat .form-chat-box .chat-form-file-btn {
    font-size: 22px;
    color: var(--dark-color);
    cursor: pointer;
    background: var(--background-color);
    padding: 5px 10px;
    border-radius: 10px;
    margin-right: 10px;
}

/* SUPPORT PAGE NEW END */

/* CUSTOMER CLUB PAGE START */
.customer-club-box {
    width: 100%;
}

.customer-club-box .customer-club-box-items {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.customer-club-box .customer-club-box-items .customer-club-box-item {
    flex: 0 0 calc(33% - 10px);
    max-width: calc(33% - 10px);
    height: 100px;
    padding: 15px;
    border-radius: 15px;
    background: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.customer-club-box .customer-club-box-items .customer-club-box-item .customer-club-box-item-right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.customer-club-box .customer-club-box-items .customer-club-box-item .customer-club-box-item-right h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-color-tow);
    margin-bottom: 10px;
}

.customer-club-box .customer-club-box-items .customer-club-box-item .customer-club-box-item-right p {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
}

.customer-club-box .customer-club-box-items .customer-club-box-item .customer-club-box-item-left img {
    width: 32px;
}

.customer-club-products {
    width: 100%;
    margin-top: 20px;
}

.customer-club-products .customer-club-products-items .customer-club-product-item {
    width: 100%;
    padding: 15px 20px;
    border-radius: 15px;
    border: 1px solid var(--border-color-light);
    background: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
}

.customer-club-products .customer-club-products-items .customer-club-product-item .customer-club-product-item-image img {
    width: 100%;
    border-radius: 10px;
}

.customer-club-products .customer-club-products-items .customer-club-product-item .customer-club-product-item-title {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    margin-top: 15px;
}

.customer-club-products .customer-club-products-items .customer-club-product-item .customer-club-product-item-title h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-color-tow);
}

.customer-club-products .customer-club-products-items .customer-club-product-item .customer-club-product-item-title p {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
}

.customer-club-products .customer-club-products-items .customer-club-product-item .customer-club-product-item-score {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.customer-club-products .customer-club-products-items .customer-club-product-item .customer-club-product-item-score .customer-club-product-item-score-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.customer-club-products .customer-club-products-items .customer-club-product-item .customer-club-product-item-score .customer-club-product-item-score-right .customer-club-product-item-score-right-title {
    font-size: 12px;
    font-weight: 900;
    color: var(--text-color-tow);
}

.customer-club-products .customer-club-products-items .customer-club-product-item .customer-club-product-item-score .customer-club-product-item-score-right .customer-club-product-item-score-right-score {
    font-size: 12px;
    font-weight: 900;
    color: var(--background-color-btn);
}

.customer-club-products .customer-club-products-items .customer-club-product-item .customer-club-product-item-score .customer-club-product-item-score-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.customer-club-products .customer-club-products-items .customer-club-product-item .customer-club-product-item-score .customer-club-product-item-score-left a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 12px;
    font-weight: 500;
}

.customer-club-products .customer-club-products-items .customer-club-product-item .customer-club-product-item-score .customer-club-product-item-score-left a span {
    margin-left: 5px;
}

/* CUSTOMER CLUB PAGE END */

/* LOGIN PAGE START */
.login-box {
    width: 100%;
    display: flex;
    height: 100vh;
}

.login-box .login-form {
    flex: 0 0 60%;
    max-width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.login-box .login-form .login-form-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box .login-form .login-form-logo img {
    width: 150px;
}

.login-box .login-form .login-form-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    flex-direction: column;
}

.login-box .login-form .login-form-title h1 {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-color);
}

.login-box .login-form .login-form-content {
    width: 50%;
}

.login-box .login-form .login-form-content #code-login {
    height: 0;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.login-box .login-form .login-form-content #register-btn-page {
    width: 100%;
    color: var(--text-color);
    font-size: 14px;
}

.login-box .login-form .login-form-content #register-btn-page a {
    margin-right: 5px;
    color: var(--background-color-btn);
}

.login-box .login-image {
    flex: 0 0 40%;
    max-width: 40%;
}

.login-box .login-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* LOGIN PAGE END */


/*LOGIN START*/
.login-box {
    width: 100%;
    height: 100vh;
}

.login-box .login-box-right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.login-box .login-box-right .login-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.login-box .login-box-right .login-title h2 {
    color: var(--text-color);
}

.login-box .login-form-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-box .login-form-box form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.login-box .login-form-box form .login-input-box {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.login-box .login-form-box form .login-input-box label {
    margin-bottom: 10px;
}

.login-box .login-form-box form .login-input-box input {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    border: none;
    outline: none;
    padding: 0 10px;
    box-shadow: 0 0 10px var(--box-shadow-color);
}


.login-box .login-box-left {
    height: 100%;
}

.login-box .login-box-left img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}

#authentication-box {
    display: none;
}

#save-me-box {
    display: none;
}

#show-hide-password {
    position: absolute;
    left: 10px;
    top: 45px;
    font-size: 18px;
    cursor: pointer;
    z-index: 999999;
}

#resend-otp {

}

/*LOGIN END*/


/* 404 PAGE ALERT START  */

/* Alert Msg 404 */
.wrapper-404 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 50px 20px;
}

/*
  ALERT TYPES
  info, success, warning, error
*/
.alert.error {
    --color: var(--red);
    --textColor: var(--white-color);
    --alertGlareDelay: 0.2s;
}

.alert.success {
    --color: var(--green);
    --textColor: var(--greenText);
    --alertGlareDelay: 0.35s;
}

.alert.info {
    --color: var(--blue);
    --textColor: var(--blueText);
    --alertGlareDelay: 0.51s;
}

.alert.warning {
    --color: var(--yellow);
    --textColor: var(--yellowText);
}


.wrapper-404 .alert {
    width: 80%;
    background: linear-gradient(
        -45deg,
        rgba(var(--color), 0.22),
        rgba(var(--color), 0.25)
    );
    color: rgba(var(--textColor), 1);
    font-weight: 300;
    line-height: 1.65em;
    letter-spacing: 1.5px;
    border-radius: var(--alertBorderRadius);
    position: relative;
    transition: transform .3s ease;
    z-index: 1;
}

.wrapper-404 .alert:hover {
    transform: scale(1.05);
}

/* Shadow */
.wrapper-404 .alert::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    border-radius: var(--alertBorderRadius);
    box-shadow: 8px 8px 8px 0 rgba(0, 0, 0, 0.25),
    inset 7px 7px 8px 0 rgba(255, 255, 255, 0.3);
    transition: opacity .5s ease, box-shadow .4s ease;
}

.wrapper-404 .alert:hover::before {
    opacity: 1;
    box-shadow: 12px 12px 16px 0 rgba(0, 0, 0, 0.25),
    inset 6px 6px 12px 0 rgba(255, 255, 255, 0.3);
}

/* Glare Overlay */
.wrapper-404 .alert__wrapper {
    position: relative;
    border-radius: var(--alertBorderRadius);
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.alert__wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    background-blend-mode: overlay;
    opacity: 0.3;
    background: linear-gradient(
        -45deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0) 30%,
        rgba(var(--color), 0.5) 31%,
        rgba(var(--color), 0.5) 47%,
        rgba(0, 0, 0, 0) 48%,
        rgba(0, 0, 0, 0) 52%,
        rgba(var(--color), 0.5) 53%,
        rgba(var(--color), 0.5) 57%,
        rgba(0, 0, 0, 0) 58%,
        rgba(0, 0, 0, 0) 60%,
        rgba(var(--color), 0.5) 61%,
        rgba(var(--color), 0.5) 63%,
        rgba(0, 0, 0, 0) 64%,
        rgba(0, 0, 0, 0) 100%);
    z-index: 10;
    animation: glareAnimation 7s infinite;
    animation-delay: var(--alertGlareDelay);
}

@keyframes glareAnimation {
    0% {
        transform: translateX(-150%);
        opacity: 0;
    }
    15%, 100% {
        transform: translateX(150%);
        opacity: 1;
    }
}

.alert + .alert {
    margin-top: 50px;
}

.alert__header {
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    color: rgb(255, 255, 255);
    padding: 15px 25px 20px 25px;
    position: relative;
    font-weight: bold;
    background: linear-gradient(-45deg, rgba(var(--color), 0.22), rgba(var(--color), 0.25));
    text-transform: uppercase;
}

.alert__header span + span {
    margin-left: 15px;
}

.alert__header::before,
.alert__header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 7px;
}

.alert__header::before {
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    box-shadow: inset 0 1px 2px 0 rgba(0, 0, 0, 0.9),
    inset 0 -1px 1px 0 rgba(var(--color), 0.7);
}

.alert__header::after {
    background-color: rgba(var(--color), 1);

    box-shadow: inset 0 1px 2px 0 rgba(0, 0, 0, 0.1),
    inset 0 -1px 1px 0 rgba(var(--color), 0.1),
    0 0 30px 0 rgba(var(--color), 0.6),
    0 0 20px 0 rgba(var(--color), 0.7),
    0 0 10px 0 rgba(var(--color), 0.8),
    0 0 3px 0 rgba(var(--color), 1);

}

.alert.error .alert__header::after {
    width: 70px;
    left: 0;
    animation: errorAnimation 5s linear infinite;
}

@keyframes errorAnimation {
    0%, 100% {
        left: 0;
        opacity: 1;
    }
    25%, 75% {
        background-color: rgba(var(--textColor), 0.8);
    }
    50% {
        width: 70px;
        left: calc(100% - 70px);
        opacity: 1;
    }
}


.alert h3 {
    margin: 0;

}

.alert h3 span:nth-child(1) {
    font-size: 1.6em;
}

.alert h3 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: pulseAnimation 3s linear infinite;
}

@keyframes pulseAnimation {
    0% {
        opacity: 0.7;
    }
    70% {
        opacity: 0.8;
    }
    73% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(var(--color), 0.5),
        0 0 5px rgba(var(--color), 0.5);
    }
    100% {
        opacity: 0.7;
    }
}

.alert__body {
    padding: 25px 25px;
    color: rgba(var(--textColor), 1);
}

.alert__body p {
    margin: 30px 0;
    color: var(--white-color) !important;
    font-size: 17px;
    font-weight: 800;
}

/* 404 PAGE ALERT END  */


/* LOADING START */
.loading-show {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999999;
    background: rgba(0, 0, 0, 0.6);
}

.loading-show.active {
    display: flex;
}

.load-wrapp {
    float: left;
    width: 250px;
    height: 100px;
    margin: 0 10px 10px 0;
    padding: 20px 20px 20px;
    border-radius: 5px;
    text-align: center;
    background-color: #d8d8d8;
}

.load-wrapp p {
    padding: 0;
}

.load-wrapp:last-child {
    margin-right: 0;
}

.load-1 .line {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 15px;
    background-color: #4b9cdb;
}

.load-1 .line:nth-last-child(1) {
    animation: loadingA 1.5s 1s infinite;
}

.load-1 .line:nth-last-child(2) {
    animation: loadingA 1.5s 0.5s infinite;
}

.load-1 .line:nth-last-child(3) {
    animation: loadingA 1.5s 0s infinite;
}

@keyframes loadingA {
    0% {
        height: 15px;
    }
    50% {
        height: 35px;
    }
    100% {
        height: 15px;
    }
}

/* LOADING END */


/* Gallery Image Start*/
.gallery-page {
    width: 100%;
    margin: 50px 0 70px 0;
}

.gallery-page .gallery-img-items {
    text-align: center;
}

.gallery-page .gallery-image {
    width: 100%;
    height: 280px;
    box-shadow: 0 0 5px #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: all .3s ease-in-out;
    overflow: hidden;
}

.gallery-page .gallery-image:hover {
    box-shadow: 0 0 10px 4px #ccc;
    border-radius: 50px 5px 50px 5px;
}

.gallery-page .gallery-image .gallery-image-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-page .gallery-image .gallery-image-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-page .gallery-image .gallery-image-content span {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--white-color);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
}

.gallery-page .gallery-image:hover .gallery-image-content span {
    opacity: 1;
    visibility: visible;
}

.gallery-page .gallery-image .gallery-image-content span svg {
    color: var(--white-color);
}

.gallery-page .gallery-image .gallery-image-text {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s ease-in-out;
    width: 100%;
    height: 20%;
    box-sizing: border-box;
}

.gallery-page .gallery-image:hover .gallery-image-text {
    background: var(--background-color);
}

.gallery-page .gallery-image .gallery-image-text p {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

.gallery-page .gallery-image:hover .gallery-image-text p {
    color: var(--text-color-tow);
}

.gallery-page #gallery-img-main {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    z-index: 9999999;
    display: none;
}

.gallery-page #gallery-img-main.active {
    display: flex;
}

.gallery-page #gallery-img-main .gallery-image-option {
    width: 100%;
    height: 50px;
    background: var(--background-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
}

.gallery-page #gallery-img-main .gallery-image-option .gallery-image-option-right {
    padding: 0 20px;
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-page #gallery-img-main .gallery-image-option .gallery-image-option-right .stop-btn-gallery {
    display: none;

}

.gallery-page #gallery-img-main .gallery-image-option .gallery-image-option-right .stop-btn-gallery svg {
    color: red;
}

.gallery-page #gallery-img-main .gallery-image-option .gallery-image-option-right .close-btn-gallery:hover svg {
    color: red;
}

.gallery-page #gallery-img-main .gallery-image-option .gallery-image-option-right svg {
    margin: 0 10px;
    cursor: pointer;
    color: var(--background-color-btn);
    transition: all .3s ease-in-out;
    font-size: 20px;
}

.gallery-page #gallery-img-main .gallery-image-option .gallery-image-option-right svg:hover {
    color: var(--background-color);
}

.gallery-page #gallery-img-main .gallery-image-option .gallery-image-option-left {
    padding: 0 20px;
    width: 10%;
    text-align: left;
    font-size: 20px;
}

.gallery-page #gallery-img-main .gallery-image-option .gallery-image-option-left span {
    cursor: pointer;
    color: var(--background-color-btn);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.gallery-page #gallery-img-main .gallery-image-img {
    width: 100%;
    height: 80%;
    cursor: grab;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.gallery-page #gallery-img-main .gallery-image-img::-webkit-scrollbar {
    background: var(--background-color-btn);
    width: 5px;
    border-radius: 50px;
}

.gallery-page #gallery-img-main .gallery-image-img::-webkit-scrollbar-thumb {
    background: var(--background-color);
    border-radius: 50px;
}

.gallery-page #gallery-img-main .gallery-image-img img {
    width: 50%;
    object-fit: contain;
}

.gallery-page #gallery-img-main .gallery-image-button {
    width: 100%;
    height: 50px;
    background: var(--background-color);
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 1;
}

.gallery-page #gallery-img-main .gallery-image-button span {
    color: var(--white-color);
    font-size: 25px;
    cursor: pointer;
    transition: all .3s ease-in-out;
    width: 35%;
    text-align: center;
    background: rgba(154, 154, 154, 0.8);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0;
}

.gallery-page #gallery-img-main .gallery-image-button .gallery-image-text-inner {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-weight: 800;
    width: 30%;
}

.gallery-page #gallery-img-main .gallery-image-button span:hover {
    color: var(--text-color);
    background: rgba(234, 234, 234, 0.92);
}

/* Gallery Image End*/
