@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');

:root {
    --main-color: #763B67;
    --sub-text: #1E1E1E;
    --success: #35DD3B;
    --place-holder: #B4B4B4;
    --main-font: "Cairo", serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--main-font);
}

* {
    padding: 0;
    box-sizing: border-box;
}

header,
nav,
section,
footer {
    width: 100%;
    height: auto;
}

section,
footer {
    margin-top: 20px;
    padding: 15px 0px 60px 0px;
    overflow: hidden;
}

ul {
    padding: 0px;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
    display: block;
}

::-webkit-scrollbar {
    background-color: var(--main-color);
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #fff;
    width: 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

/* start css to the header */
header {
    background: linear-gradient(90deg, rgba(118, 59, 103, 0.48) 0%, rgba(220, 110, 192, 0.48) 100%);
}

header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
}

header nav .menu ul li {
    display: inline-block;
    font-size: 20px;
    margin: 0px 10px;
    font-weight: 600;
}

header nav .menu ul li a {
    color: #fff;
}

header nav .menu ul li.active a {
    color: var(--main-color);
}

header nav .menu ul li:hover a {
    color: var(--main-color);
}

header nav .logo {
    text-align: center;
}

header nav .logo img {
    width: auto;
    height: 80px;
}

header nav .icons .icon {
    display: inline-block;
    margin-left: 15px;
    position: relative;
}

header nav .icons .icon i,
header nav .icons .icon a,
header nav .mobile-icon i {
    color: #fff;
    font-weight: bold;
    font-size: 25px;
    cursor: pointer;
}

header nav .icons .icon span {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    color: #fff;
    font-size: 13px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    top: -10px;
    right: -10%;
    line-height: 20px;
    text-align: center;
}

header nav .icons .icon:hover i,
header nav .icons .icon:hover a {
    color: var(--main-color);
}

header nav .icons select {
    background-color: transparent;
    text-transform: capitalize;
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
    color: #000;
}

header nav .icons select option {
    color: var(--main-color);
}

header nav .icons .dropdown {
    position: relative;
    display: inline-block;
}

header nav .icons .dropbtn {
    background-color: transparent;
    color: #000;
    padding: 8px 2px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    width: 100px;
}

header nav .icons .dropdown img {
    width: 20px;
    height: 10px;
}

header nav .icons .dropbtn:hover,
.dropbtn:focus {
    background-color: var(--main-color);
    color: #fff;
}

header nav .icons .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

header nav .icons .dropdown-content a {
    color: black;
    padding: 6px;
}

header nav .icons .dropdown-content a:hover {
    background-color: var(--main-color);
    color: #fff;
}

header nav .icons .show {
    display: block;
}

header nav .mobile-icon {
    display: none;
}

@media only screen and (max-width : 992px) {

    header nav .menu,
    header nav .icons {
        display: none;
    }

    header nav .mobile-icon {
        display: block;
    }

    header nav .mobile-icon i {
        font-size: 30px;
    }
}

/* start css to the side-cart */
.side-cart,
.mobile-sidenav {
    background: linear-gradient(90deg, rgba(50, 13, 41, 1) 0%, rgba(99, 32, 82, 0.8) 100%);
    border: 1px solid var(--main-color);
    width: 300px;
    height: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 9999;
    padding: 25px 15px;
    transition: .6s ease-in-out;
    -webkit-transition: .6s ease-in-out;
    -moz-transition: .6s ease-in-out;
    -ms-transition: .6s ease-in-out;
    -o-transition: .6s ease-in-out;
}

.side-cart .close-cart,
.mobile-sidenav .close-mobile-nav {
    width: 40px;
    height: 40px;
    position: absolute;
    left: -12%;
    top: 40%;
    background: rgba(50, 13, 41, 1);
    border: 1px solid rgba(50, 13, 41, 1);
    color: #fff;
    text-align: center;
    line-height: 40px;
    color: var(--text-color);
    font-size: 25px;
    cursor: pointer;
}

.side-cart .close-cart i,
.mobile-sidenav .close-mobile-nav i {
    color: #fff;
}

.side-cart .cart-items {
    width: 100%;
    height: 65%;
    overflow-y: scroll;
}

.side-cart .cart-items::-webkit-scrollbar {
    background-color: var(--alt-text-color);
    width: 6px;
}

.side-cart .cart-items::-webkit-scrollbar-thumb {
    background-color: #830d66;
    border: 1px solid #830d66;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.side-cart .cart-items .item {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 8px 10px;
    margin: 5px 0px;
    border-bottom: 1px dashed var(--text-color);
}

.side-cart .cart-items .item .item-img {
    width: 100px;
    height: 100px;
    margin-left: 10px;
    overflow: hidden;
}

.side-cart .cart-items .item .item-img img {
    width: 100%;
    height: 100%;
    max-width: 100%;
}

.side-cart .cart-items .item .item-title a {
    color: #fff;
    font-size: 14px;
}

.side-cart .cart-items .item .item-title span {
    font-size: 14px;
    color: #fff;
    margin: 5px 0px;
}

.side-cart .cart-items .item .action button {
    width: 30px;
    height: 30px;
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    color: #fff;
    line-height: 30px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.side-cart .cart-actions {
    padding-top: 25px;
    border-top: 1px dashed #763B67;
}

.side-cart .cart-actions .cart-actions-price {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.side-cart .cart-actions .cart-actions-price span {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.side-cart .cart-actions {
    padding: 25px 15px;
}

.side-cart .cart-actions button {
    width: 100px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin: 5px 0px 5px 10px;
    font-size: 14px;
}

.side-cart .cart-actions button:first-of-type {
    background-color: #5f104b;
    border: 1px solid #5f104b;
}

.side-cart .cart-actions button a {
    color: #fff;
}

.side-cart .cart-actions button:first-of-type:hover {
    background-color: transparent;
}

.side-cart .cart-actions button:last-of-type {
    background-color: #531744;
    border: 1px solid #531744;
}

.side-cart .cart-actions button:last-of-type:hover {
    background-color: transparent;
    border: 1px solid #531744;
}

.side-cart .cart-actions button:last-of-type:hover a {
    color: #fff;
}

@media only screen and (max-width : 992px) {
    .side-cart {
        display: none;
    }
}

/* start css to the mobile-sidenav */
.mobile-sidenav .logo {
    text-align: center;
    padding: 5px 0px;
    margin-top: 10px;
}

.mobile-sidenav .logo img {
    height: 70px;
}

.mobile-sidenav .search {
    display: flex;
    width: 100%;
    height: 45px;
    align-items: center;
    background-color: #fff;
    margin-top: 25px;
    border-radius: 0px 4px 4px 0px;
    -webkit-border-radius: 0px 4px 4px 0px;
    -moz-border-radius: 0px 4px 4px 0px;
    -ms-border-radius: 0px 4px 4px 0px;
    -o-border-radius: 0px 4px 4px 0px;
}

.mobile-sidenav .search input {
    width: 80%;
    background-color: transparent;
}

.mobile-sidenav .search input::placeholder {
    font-size: 12px;
}

.mobile-sidenav .search .search-icon {
    background-color: var(--alt-color);
    border: 1px solid var(--alt-color);
    width: 20%;
    height: 100%;
    color: #fff;
    text-align: center;
    line-height: 45px;
}

.mobile-sidenav .menu {
    margin-top: 30px;
    text-align: right;
}

.mobile-sidenav .menu ul li {
    width: 100%;
    height: 35px;
    line-height: 35px;
    margin: 7px 0px;
    font-size: 16px;
}

.mobile-sidenav .menu ul li a {
    color: #fff;
}

.mobile-sidenav .menu ul li:hover a {
    color: var(--alt-color);
}

/* start css to the search-modal */
.search-modal {
    background: linear-gradient(90deg, rgba(63, 28, 54, 0.48) 0%, rgba(145, 45, 120, 0.48) 100%);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    overflow: hidden;
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transition: 1s ease-in-out;
    -webkit-transition: 1s ease-in-out;
    -moz-transition: 1s ease-in-out;
    -ms-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
}

.search-modal form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    width: 560px;
    height: 65px;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    overflow: hidden;
}

.search-modal form input {
    border: none;
    width: 85%;
}

.search-modal form button {
    background-color: #5f104b;
    border: 1px solid #5f104b;
    color: #fff;
    width: 15%;
    height: 100%;
    position: relative;
    z-index: 99;
}

.search-modal form button::before {
    position: absolute;
    content: "";
    top: -5%;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: #5f104b;
    border: 1px solid #5f104b;
}

.search-modal form button:hover::before {
    height: 110%;
    transition: .6s ease-in-out;
    -webkit-transition: .6s ease-in-out;
    -moz-transition: .6s ease-in-out;
    -ms-transition: .6s ease-in-out;
    -o-transition: .6s ease-in-out;
    z-index: -1;
}

.search-modal .close-search {
    background-color: #5f104b;
    border: 1px solid #5f104b;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    position: absolute;
    left: 47%;
    top: 5%;
    transform: translateY(-100px);
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
}

.search-modal:hover .close-search {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transition: 1s ease-in-out;
    -webkit-transition: 1s ease-in-out;
    -moz-transition: 1s ease-in-out;
    -ms-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
}

@media only screen and (max-width : 768px) {
    .search-modal form {
        width: 80%;
        max-width: 100%;
    }
}

/* start css to the wrap-header section */
.wrap-header {
    padding-top: 0;
    margin-top: 0;
}

.wrap-header .wrap-header-top {
    display: flex;
    align-items: center;
    height: 650px;
    width: 100%;
}

.wrap-header .wrap-header-top .wrap-item {
    height: 100%;
    width: 50%;
}

.wrap-header .wrap-header-top .wrap-item img {
    width: 100%;
    height: 100%;
}

@media only screen and (max-width : 992px) {
    .wrap-header .wrap-header-top {
        height: 400px;
    }
}

@media only screen and (max-width : 768px) {
    .wrap-header .wrap-header-top {
        height: 250px;
    }
}

.wrap-header .wrap-text {
    background: linear-gradient(0deg, rgba(220, 110, 192, 0.25) 52.59%, rgba(246, 222, 240, 0.25) 100%);
    height: auto;
    padding: 30px 0px;
    overflow: hidden;
}

.wrap-header .wrap-text h2 {
    color: var(--main-color);
    font-size: 40px;
    line-height: 60px;
    margin: 15px 0px;
    font-weight: 700;
}

.wrap-header .wrap-text h4 {
    color: var(--main-color);
    font-size: 25px;
}

.wrap-header .wrap-text p {
    color: var(--sub-text);
    font-size: 17px;
    line-height: 34px;
    margin-top: 20px;
}

.wrap-header .wrap-text button {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    width: 120px;
    height: 50px;
    text-align: center;
    margin-top: 20px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.wrap-header .wrap-text button a {
    color: #fff;
}

.wrap-header .wrap-text button:hover {
    background-color: transparent;
}

.wrap-header .wrap-text button:hover a {
    color: var(--main-color);
}

/* start css to the home-slider section */
.home-slider .slider-box,
.product-details .slider-box {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: 20px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.home-slider .slider-box .slider-img,
.product-details .slider-box .slider-img {
    position: relative;
    height: 350px;
    max-height: 100%;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    overflow: hidden;
}

.home-slider .slider-box .slider-img img,
.product-details .slider-box .slider-img img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    animation: imgfadein 1s ease-in-out infinite alternate;
    -webkit-animation: imgfadein 1s ease-in-out infinite alternate;
}

.home-slider .slider-box .slider-img .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    z-index: 2;
}

.home-slider .slider-box .slider-img .text {
    position: absolute;
    top: 8%;
    right: 5%;
    z-index: 3;
    color: #fff;
    padding: 5px;
}

.home-slider .slider-box .slider-img .text h2 {
    font-size: 40px;
    font-weight: 700;
}

.home-slider .slider-box .slider-img .text span {
    font-size: 17px;
    margin: 10px 0px;
}

.home-slider .slider-box .slider-img button {
    width: 120px;
    height: 50px;
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    z-index: 3;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.home-slider .slider-box .slider-img button:hover {
    background-color: transparent;
    color: #fff
}

.home-slider .slider-box .slider-imgs,
.product-details .slider-box .slider-imgs {
    width: 100%;
    height: auto;
    padding: 10px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-slider .slider-box .slider-imgs .item,
.product-details .slider-box .slider-imgs .item {
    margin: 5px;
    cursor: pointer;
    height: 150px;
}

.home-slider .slider-box .slider-imgs .item img,
.product-details .slider-box .slider-imgs .item img {
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    width: 100%;
    height: 100%;
}

@keyframes imgfadein {
    0% {
        opacity: .7;
    }

    100% {
        opacity: 1;
    }
}

.home-slider .video {
    width: 100%;
    height: auto;
    position: relative;
    margin-top: 20px;
}

.home-slider .video iframe {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    max-width: 100%;
    max-height: 100%;
}

/* start css to the products section */
.products h2 {
    color: var(--main-color);
    font-size: 40px;
    line-height: 60px;
    margin: 15px 0px;
    font-weight: 700;
    text-align: center;
}

.products span.sec-title {
    color: var(--sub-text);
    font-size: 16px;
    text-align: center;
    margin-bottom: 30px;
}

.product-box {
    width: 100%;
    height: auto;
    background-color: transparent;
    border: none;
    margin: 20px 10px;
    overflow: hidden;
    position: relative;
}

.product-box .product-box-img {
    overflow: hidden;
}

.product-box .product-box-img img {
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.product-box .product-text {
    padding: 10px;
}

.product-box .product-text .text-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0px;
}

.product-box .product-text .text-header a {
    color: var(--sub-text);
    font-size: 20px;
    font-weight: 600;
}

.product-box .product-text .text-header a:hover {
    color: var(--main-color);
}

.product-box .product-text .text-header span {
    color: #000;
    font-size: 16px;
    font-weight: 600;
}

.product-box .product-text button {
    width: 100%;
    height: 50px;
    line-height: 50px;
    background-color: #763B67B2;
    border: 1px solid #763B67B2;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    margin: 10px 0px;
}

.product-box .product-text button i {
    margin-right: 10px;
}

.product-box .product-text button:hover {
    background-color: transparent;
    color: var(--main-color);
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
}

.product-box:hover img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transition: .5s ease-in-out;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
}

.product-box .heart {
    width: 45px;
    height: 45px;
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    color: #fff;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    top: 2%;
    left: -100%;
    z-index: 2;
}

.product-box:hover .heart {
    left: 2%;
    transition: .5s ease-in-out;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
}

[dir='rtl'] .slick-prev,
[dir='rtl'] .slick-next {
    left: auto;
    position: absolute;
    top: 106%;
    background-color: transparent;
    border: 1px solid var(--main-color);
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

[dir='rtl'] .slick-prev::before,
[dir='rtl'] .slick-next::before {
    color: var(--main-color);
    font-weight: bold;
}

[dir='rtl'] .slick-prev {
    right: 10px !important;
}

[dir='rtl'] .slick-next {
    left: auto !important;
    right: 55px !important;
}

/* ====================================================== product details page ================ */
/* start css to the product-details section */
.product-details .product-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.product-details .product-title h3 {
    color: var(--main-color);
    font-size: 30px;
    font-weight: 700;
    line-height: 60px;
}

.product-details .product-title .product-icons li {
    width: 45px;
    height: 45px;
    margin-right: 10px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #f4daee;
    border: 1px solid #f4daee;
    color: var(--main-color);
    display: inline-block;
    cursor: pointer;
}

.product-details .product-title .product-icons li i {
    font-weight: bold;
    font-size: 18px;
}

.product-details span.price {
    color: var(--sub-text);
    font-size: 20px;
    margin-top: 20px;
    font-weight: 700;
}

.product-details h4 {
    color: var(--sub-text);
    margin-top: 25px;
    font-size: 22px;
}

.product-details p {
    color: #949494;
    font-size: 17px;
    margin-top: 20px;
    line-height: 32px;
}

.product-details .color li {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin: 15px 0px 10px 5px;
    cursor: pointer;
    padding: 2px;
}

.product-details .color li:first-child {
    background-color: #35DD3B;
    border: 1px solid #35DD3B;
}

.product-details .color li:nth-child(2) {
    background-color: #11b8a1;
    border: 1px solid #11b8a1;
}

.product-details .color li:nth-child(3) {
    background-color: #3a11b3;
    border: 1px solid #3a11b3;
}

.product-details .color li:nth-child(4) {
    background-color: #de1784;
    border: 1px solid #de1784;
}

.product-details .color li:last-child {
    background-color: #e10f2e;
    border: 1px solid #e10f2e;
}

.product-details .size .num {
    width: 70px;
    height: 40px;
    line-height: 40px;
    background-color: #f4daee;
    border: 1px solid #f4daee;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    display: inline-block;
    margin: 15px 0px 10px 5px;
    cursor: pointer;
}

.product-details .size .num div {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.product-details .size .num input {
    width: 20px;
    height: 20px;
    display: inline-block;
    accent-color: var(--main-color);
}

.product-details .size .num span {
    display: inline-block;
    font-size: 17px;
    font-weight: 500;
}

.product-details .action {
    margin-top: 20px;
}

.product-details .action,
.product-details .action .action-btn {
    display: flex;
    align-items: center;
}

.product-details .action button.add {
    width: 250px;
    height: 50px;
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    color: #fff;
    margin: 10px 0px 0px 10px;
    font-size: 17px;
    font-weight: 500;
}

.product-details .action button.add i {
    margin-right: 5px;
}

.product-details .action button.add:hover {
    background-color: transparent;
    color: var(--main-color);
}

.product-details .action .action-btn {
    background-color: #f4daee;
    border: 1px solid #f4daee;
    margin-top: 10px;
    height: 50px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.product-details .action .action-btn button {
    width: 30%;
    height: 50px;
    text-align: center;
    color: var(--sub-text);
    border: transparent;
    background-color: transparent;
    font-weight: bold;
}

.product-details .action .action-btn input {
    width: 40%;
    text-align: center;
    color: var(--sub-text);
    font-weight: bold;
}

/* ========================================================== category page =================== */
/* start css to the banner section */
.banner {
    text-align: center;
}

/* start css to the category section */
.category .filter-side {
    width: 100%;
    height: auto;
    padding: 5px 10px;
    margin-top: 15px;
}

.category h2 {
    color: var(--sub-text);
    font-size: 20px;
    font-weight: 600;
}

.category h4 {
    color: var(--sub-text);
    font-size: 18px;
    text-align: right;
    margin: 15px 0px;
}

.category form,
.category .category-header {
    display: flex;
    justify-content: space-between;
}

.category form {
    width: 100%;
    height: 45px;
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    margin: 20px 0px;
}

.category form input {
    width: 80%;
    height: 100%;
    border: none;
}

.category form button {
    width: 20%;
    height: 100%;
    border: none;
    text-align: center;
}

.category .filter-side .size {
    display: flex;
    align-items: center;
    width: 100%;
    text-align: right;
    margin: 10px 0px;
    padding: 5px 10px;
}

.category .filter-side .size input {
    width: 6%;
    height: 20px;
    margin-left: 10px;
    accent-color: var(--main-color);
    border: 1px solid var(--main-color);
    cursor: pointer;
}

.category .filter-side .size span {
    color: var(--sub-text);
    font-weight: 500;
    font-size: 17px;
}

.category .category-header {
    align-items: start;
    margin-top: 15px;
}

.category .category-header .select-filter {
    display: flex;
    width: 25%;
    align-items: center;
}

.category .category-header .select-filter h4 {
    font-size: 16px;
    width: 40%;
}

.category .category-header .select-filter select {
    width: 60%;
    height: 40px;
    background-color: transparent;
    border: 1px solid #ccc;
    color: var(--sub-text);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

@media only screen and (max-width : 992px) {
    .category .category-header .select-filter {
        width: 53%;
    }
}

/* ==================================================== checkout page ================*/
/* start css to the following section */
.following {
    text-align: center;
}

.following .following-steps {
    margin: 15px auto;
}

.following .following-steps .step-box {
    display: inline-block;
    width: 250px;
    height: auto;
    padding: 10px;
}

.following .following-steps .step-box .truestep {
    position: relative;
    margin: 20px 0px 30px 0px;
}

.following .following-steps .step-box .truestep::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 6px;
    background-color: #ddd;
    border: 1px solid #ddd;
    top: 47%;
    left: -55%;
    z-index: -1;
}

.following .following-steps .step-box:last-child .truestep::before {
    display: none;
}

.following .following-steps .step-box.active .truestep::before {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
}

.following .following-steps .step-box i {
    color: var(--main-color);
    font-size: 25px;
    z-index: 2;
}

.following .following-steps .step-box span {
    color: var(--main-color);
    font-size: 20px;
    margin-top: 10px;
}

@media only screen and (max-width : 992px) {
    .following .following-steps .step-box {
        width: 180px;
    }

    .following .following-steps .step-box .truestep::before {
        left: -60%;
    }
}

@media only screen and (max-width : 768px) {
    .following {
        display: none;
    }

}

/* start css to the checkout page */
.checkout form {
    margin: 15px 0px;
}

.checkout form label {
    color: var(--main-color);
    font-size: 16px;
    display: block;
    margin-top: 15px;
}

.checkout form label span {
    color: #ff0000;
    display: inline-block;
}

.checkout form input,
.checkout form select {
    width: 100%;
    height: 45px;
    padding-right: 10px;
    color: var(--sub-text);
    border: 1px solid #ddd;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    margin-top: 15px;
}

.checkout .address-choice {
    text-align: center;
}

.checkout .address-choice .choice-icon {
    width: 180px;
    height: auto;
    padding: 5px;
    text-align: center;
    display: inline-block;
    margin: 10px;
    background-color: transparent;
    border: 1px solid #ddd;
    cursor: pointer;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    color: var(--sub-text);
}

.checkout .address-choice .choice-icon.active {
    border: 2px solid var(--main-color);
    color: var(--main-color);
}

.checkout .address-choice .choice-icon.active i {
    color: var(--main-color);
}

.checkout .address-choice .choice-icon i {
    color: var(--sub-text);
    font-weight: bold;
    display: block;
    margin: 10px 0px;
    font-size: 25px;
}

@media only screen and (max-width : 768px) {
    .checkout .address-choice .choice-icon {
        width: 80px;
        height: auto;
    }
}

.checkout .address-info {
    padding: 20px 0px;
}

.checkout .address-info .info-box {
    margin: 10px 0px;
    display: none;
}

.checkout .address-info .info-box.active {
    display: block;
    animation: fadeinup .6s ease-in-out;
    -webkit-animation: fadeinup .6s ease-in-out;
}

@keyframes fadeinup {
    0% {
        transform: translateY(10px);
        -webkit-transform: translateY(10px);
        -moz-transform: translateY(10px);
        -ms-transform: translateY(10px);
        -o-transform: translateY(10px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        opacity: 1;
    }
}

.checkout .checkout-box h3,
.cart-order .checkout-box h3 {
    font-size: 18px;
    color: var(--main-color);
    margin: 20px 0px;
}

.checkout .checkout-options li {
    display: flex;
    align-items: center;
    margin-top: 30px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 15px 0px 15px 15px;
    width: 350px;
    max-width: 100%;
}

/* start css to the cart-order section */
.cart-order .cart-order-outer {
    overflow-x: auto;
}

.cart-order .cart-order-outer::-webkit-scrollbar {
    background-color: #e5a8d6;
    height: 10px;
}

.cart-order .cart-order-outer::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.cart-order table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    height: auto;
    background-color: transparent;
    border: 1px solid #ddd;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    margin-top: 20px;
}

.cart-order table th {
    background-color: #ddd;
    height: 60px;
    text-align: center;
    color: var(--sub-text);
    font-size: 15px;
}

.cart-order table tr {
    border: 1px solid #ddd;
    width: 100%;
}

.cart-order table td {
    width: auto;
    height: 120px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: var(--heading-color);
    border: 1px solid #ddd;
    padding: 5px;
}

.cart-order table tr th:first-of-type {
    width: 40px;
}

.cart-order table tr i {
    color: var(--main-color);
    font-size: 20px;
    cursor: pointer;
}

.cart-order table tr td img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.cart-order table tr td a {
    display: inline-block;
    font-size: 15px;
    color: var(--sub-text-color);
    margin-right: 7px;
}

.cart-order table tr td a:hover {
    color: var(--main-color);
}

.cart-order table tr td .order-quantity,
.book-shop-details .price-count .count-box {
    display: flex;
    width: 120px;
    height: 40px;
    border: 1px solid #ccc;
    text-align: center;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    overflow: hidden;
}

.cart-order table tr td .order-quantity button,
.book-shop-details .price-count .count-box button {
    width: 40px;
    height: 100%;
}

.cart-order table tr td .order-quantity button,
.book-shop-details .price-count .count-box button {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    color: #fff;
}

.cart-order table tr td .order-quantity input,
.book-shop-details .price-count .count-box input {
    width: 50px;
    text-align: center;
}

.cart-order table tr td span {
    display: inline-block;
    font-size: 16px;
    margin: 2px;
}

.cart-order table tr td span:last-of-type {
    text-decoration: line-through;
    color: #777;
}

/* ================================================= wishlist page ================ */
/* start css to the wishlist section */
.wishlist h3 {
    color: var(--sub-text);
    font-size: 20px;
    margin: 20px 0px;
    line-height: 60px;
}

/* ================================================== account page - forgetpassword page 
- thankyou page - signup page */
/* start css to the account-banner section */
.account-banner li {
    display: flex;
    font-size: 18px;
    align-items: center;
}

.account-banner li i {
    color: #ccc;
    margin-left: 10px;
    font-size: 20px;
}

.account-banner li a {
    color: var(--main-color);
    margin-left: 10px;
}

/* start css to the account section */
.account .account-box,
.success-box {
    width: 100%;
    height: auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    overflow: hidden;
    margin: 15px 0px;
}

.account .account-box .account-profile {
    margin: 10px auto;
    position: relative;
    width: 90px;
    height: 90px;
}

.account .account-box .account-profile img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.account .account-box .account-profile button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #ddd;
    border: 1px solid #ddd;
    text-align: center;
    color: var(--main-color);
    position: absolute;
    right: -10%;
    bottom: 0;
    z-index: 2
}

.account .account-box form label {
    color: var(--main-color);
    font-size: 16px;
    display: block;
    margin: 14px 0px;
}

.account .account-box form input {
    height: 45px;
    border: 1px solid #ccc;
    margin: 10px 0px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.account .account-box form input:focus {
    border: 1px solid var(--main-color);
}

.account .account-box form button,
.thankyou .success-box button {
    width: 100%;
    height: 45px;
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    margin: 15px 0px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.account .account-box form button:hover,
.thankyou .success-box button:hover {
    background-color: transparent;
    color: var(--main-color);
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
}

.account .account-box .forget {
    text-align: center;
    margin: 15px auto;
}

.account .account-box .forget h3,
.thankyou .success-box h3 {
    color: var(--sub-text);
    font-size: 20px;
    margin: 15px 0px;
}

.account .account-box .forget span {
    color: var(--sub-text);
    font-size: 16px;
}

.account .account-box .top-links {
    text-align: center;
    margin: 15px 0px;
}

.account .account-box ul li {
    display: inline-block;
    font-size: 17px;
    margin: 10px 20px;
    font-weight: 600;
    padding: 5px;
}

.account .account-box ul li.active {
    border-bottom: 2px solid var(--main-color);
}

.account .account-box ul li a {
    color: var(--sub-text);
}

.account .account-box ul li.active a {
    color: var(--main-color);
}

/* ====================================== thankyou page =================== */
/* start css to the success section */
.thankyou .success-box {
    text-align: center;
}

.thankyou .success-box img {
    width: 100px;
    height: 100px;
}

.thankyou .success-box h5 {
    color: var(--heading-color);
    font-size: 20px;
    margin: 20px 0px;
    line-height: 50px;
}

.thankyou .success-box p {
    color: var(--alt-text-color);
    font-size: 16px;
    line-height: 26px;
    margin: 20px 0px;
}

.thankyou .success-box button a {
    color: #fff;
}

/* start css to the stickyfooter div */
.stickyfooter {
    background: linear-gradient(90deg, rgba(50, 13, 41, 1) 0%, rgba(99, 32, 82, 0.8) 100%);
    width: 100%;
    height: auto;
    padding: 10px 0px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 3;
    overflow: hidden;
    text-align: center;
    display: none;
}

.stickyfooter ul li {
    display: inline-block;
    font-size: 17px;
    color: #fff;
    margin: 5px;
    border-left: 1px solid #ccc;
    padding-left: 2px;
    width: 80px;
    height: 30px;
    line-height: 30px;
    font-weight: 700;
}

.stickyfooter ul li:last-child {
    border-left: none;
}

.stickyfooter ul li a {
    color: #fff;
    font-weight: 700;
}

.stickyfooter ul li a i {
    font-size: 22px;
}

.stickyfooter ul li:hover a {
    color: var(--sub-text);
}

@media only screen and (max-width : 992px) {
    .stickyfooter {
        display: block;
    }
}

/* start css to the footer */
footer {
    background: linear-gradient(90deg, rgba(118, 59, 103, 0.4) 0%, rgba(220, 110, 192, 0.4) 100%);
}

footer h3 {
    color: var(--main-color);
    font-size: 22px;
    font-weight: 700;
    margin-top: 25px;
    text-align: right;
    line-height: 60px;
}

footer .footer-white {
    background-color: #fff;
    border: 1px solid #fff;
    width: 100%;
    height: 230px;
    padding: 10px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    margin-top: 25px;
    overflow: hidden;
}

footer .footer-white span {
    color: var(--sub-text);
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0px;
}

footer .footer-white img.map {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
}

footer .footer-white ul li {
    width: 100%;
    margin: 10px 0px;
    font-size: 17px;
    font-weight: 700;
    color: var(--main-color);
}

footer .footer-white ul li i {
    margin-left: 5px;
}

footer .footer-white ul li span {
    display: inline-block;
    color: var(--main-color);
    font-size: 15px;
    font-weight: 500;
}

footer .footer-white img.app {
    height: 70px;
    width: 100%;
    margin-top: 20px;
}

@media only screen and (max-width : 992px) {
    footer .footer-white {
        height: 250px;
    }
}

footer .line {
    width: 100%;
    height: 1px;
    background-color: #ccc;
    margin: 30px 0px;
}

footer .social {
    text-align: left;
    margin-top: 25px;
    padding: 0;
}

footer .social li {
    display: inline-block;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    margin-right: 10px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

footer .social li a {
    color: #fff;
    font-weight: 600;
}

footer .social li:hover {
    background-color: transparent;
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
}

footer .social li:hover a {
    color: var(--main-color);
}

@media only screen and (max-width : 768px) {
    footer .footer-white {
        height: auto;
    }

    footer .social {
        display: none;
    }
}


/* css for dashboard pages */
#toggle-nav {
    display: none;
}

#toggle-nav:checked~.dashside {
    left: -250px;
}

#toggle-nav:checked~.main-content {
    width: 100%;
    margin-left: 0;
}

.dashside {
    width: 250px;
    height: 100%;
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    position: fixed;
    left: 0;
    top: 0;
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    z-index: 3;
    padding: 15px 0px;
}

.dashside .profile {
    text-align: center;
    width: 100%;
    height: auto;
    padding: 20px 10px;
}

.dashside .profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin: 5px 0px;
}

.dashside .profile h3 {
    color: #fff;
    font-size: 18px;
    text-transform: capitalize;
    margin-top: 10px;
}

.dashside .menu li {
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding: 0px 10px;
    margin: 5px 0px;
    text-transform: capitalize;
}

.dashside .menu li a {
    color: #fff;
    font-size: 17px;
}

.dashside .menu li:hover {
    background-color: #531744;
}

.main-content {
    margin-left: 250px;
    padding: 10px;
    background-color: #fff;
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
}

.main-content .main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ed84d3;
    border: 1px solid #ed84d3;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    padding: 10px;
    width: 100%;
    height: auto;
}

.main-content .main-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 2px solid var(--main-color);
}

.main-content .main-header i {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

.main-content .order-dash,
.main-content .main-review {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    padding: 20px;
    width: 100%;
    height: auto;
    margin: 25px 0px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.main-content .order-dash {
    overflow-x: auto;
}

.main-content .order-dash::-webkit-scrollbar {
    background-color: #f6c0e8;
    height: 10px;
}

.main-content .order-dash::-webkit-scrollbar-thumb {
    background-color: #830d66;
    width: 60px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.main-content .order-dash h3,
.main-content .main-review h3 {
    color: #fff;
    text-transform: capitalize;
    font-size: 22px;
    line-height: 50px;
}

.main-content .order-dash table {
    width: 100%;
    height: auto;
    color: #fff;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 15px;
}

.main-content .order-dash table tr {
    border-bottom: 1px solid #efc0e3;
}

.main-content .order-dash table tr th {
    color: var(--alt-color);
}

.main-content .order-dash table tr td,
.main-content .order-dash table tr th {
    text-transform: capitalize;
    width: auto;
    padding: 8px;
}

.main-content .order-dash table tr img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-right: 2px;
}

.main-content .main-content-footer {
    width: 100%;
    height: auto;
    padding: 20px 0px;
    text-align: center;
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.main-content .main-content-footer ul li {
    display: inline-block;
    margin: 10px;
    font-size: 16px;
}

.main-content .main-content-footer ul li a {
    color: #fff;
}

.main-content .main-content-footer ul li:hover a,
.main-content .main-content-footer ul li:hover {
    color: #531744;
}

/* reviewdash page */
.main-content .main-review .row {
    margin-top: 15px;
}

.main-content .main-review img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin: 5px 0px;
    border: 3px solid var(--main-color);
}

.main-content .main-review .col-lg-4 h3 {
    color: #fff;
    font-size: 16px;
}

.main-content .main-review i {
    color: #FFCE08;
    font-size: 16px;
    margin: 5px 2px;
}

.main-content .main-review p {
    color: #f6f6f6;
    font-size: 16px;
    line-height: 26px;
    margin-top: 20px;
}