/*!
Theme Name: Aacreads
Theme URI: https://mash.world/
Author: mashworld@enginer
Author URI: https://mash.world/
Description: Description
Version: 1.0.0
Tested up to: 6.2.2
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: aacreads
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Aacreads is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
@font-face {
    font-family: AvenirLTStdBlack;
    src: url("./frontend/assets/fonts/AvenirLTStd-Black.otf");
}
@font-face {
    font-family: AvenirLTStdBody;
    src: url("./frontend/assets/fonts/AvenirLTStd-Book.otf");
}
@font-face {
    font-family: Inter;
    src: url("./frontend/assets/fonts/AvenirLTStd-Roman.otf");
}
body {
    margin: 0;
}

section {
    max-width: 1440px;
    margin: 0 auto;
}

/* navbar container start */
.navbar-container {
    background-color: #ea2a80;
    padding-bottom: 19%;
}
@media only screen and (min-width: 1440px) {
    .navbar-container {
        padding-bottom: 300px;
    }
}
.navbar-content-container {
    padding: 20px 80px;
    padding-right: 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.nav-bar-pages-links-container {
    margin: 0 3px 0 3px;
    display: flex;
    flex-wrap: wrap;
}
@media only screen and (max-width: 1299px) {
    .navbar-content-container {
        padding-left: 15px;
        justify-content: center;
    }
    .nav-bar-pages-links-container {
        padding-inline-start: 0;
    }
}
.nav-bar-pages-links-container li {
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
    top: 0;
    transition: top ease 0.5s;
}
.nav-bar-pages-links-container li:hover {
    top: -10px;
}
.nav-bar-pages-link-button-outer-container {
    height: 54px;
    width: 140px;
    border-radius: 50px;
    padding: 10px;
    /* whats under is new */
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-bar-pages-link-button-outer-container.selected-page {
    background-color: #ffffff;
}

.nav-bar-pages-link-button-outer-container a {
    background-color: #f4931e;
    height: 100%;
    width: 100%;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 22px;
    font-family: AvenirLTStdBlack;
    font-style: normal;
    font-weight: 750;
    line-height: normal;
    text-decoration: none;
}
.nav-bar-pages-links-container li:nth-child(2) a, .nav-bar-pages-links-container li:nth-child(5) a  {
    background: #a2c73b;
}
.nav-bar-pages-links-container li:nth-child(3) a {
    background: #3ba5db;
}

.nav-bar-pages-link-button-inner-container a {
    color: #000;
    font-size: 22px;
    font-family: AvenirLTStdBlack;
    font-style: normal;
    font-weight: 750;
    line-height: normal;
}
.navbar-content-container .search-container input {
    height: 38px;
    max-width: 243px;
    border: none;
    border-radius: 12px;
    padding: 3px 15px;
}
.search-container form {
    position: relative;
}
.navbar-content-container .search-container button {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 12px;
    right: 10px;
    padding: 0;
    border: none;
    background-color: unset;
    cursor: pointer;
}
.search-bar-image {
    width: 20px;
    height: 20px;
}
.navbar-content-container .icons-container {
    display: flex;
    margin: 0 10px;
}
.navbar-content-container .icons-container a {
    margin: 0 5px;
    cursor: pointer;
}
.navbar-content-container .icons-container a {
    position: relative;
    top: 0;
    transition: top ease 0.2s;
}
.navbar-content-container .icons-container a:hover {
    top: -5px;
}
.navbar-content-container .icons-container a img {
    max-height: 22px;
    max-width: 22px;
    filter: brightness(0) invert(1);
}
/* navbar container hamburger menu start */
#toggle {
    display: none;
}

/**
  Hamburger
  1187px
**/
.navbar-content-container {
    position: relative;
}
.hamburger {
    height: 54px;
    margin-left: auto;
    margin-right: 25px;
}

.hamburger div {
    position: relative;
    width: 3em;
    height: 7px;
    border-radius: 3px;
    background-color: #ffffff;
    margin-top: 8px;
    transition: all 0.3s ease-in-out;
}
/* #toggle:checked + .hamburger .bar1 {
  transform: rotate(-45deg);
  margin-top: 25px;
}
#toggle:checked + .hamburger .bar3 {
  opacity: 0;
  transform: rotate(45deg);
}
#toggle:checked + .hamburger .bar2 {
  transform: rotate(45deg);
  margin-top: -7px;
}

#toggle:checked + .hamburger + .nav {
  top: 0;
  transform: scale(1);
} */

#toggle:checked ~ .navbar-content-container .hamburger .bar1 {
    transform: rotate(-45deg);
    margin-top: 25px;
}
#toggle:checked ~ .navbar-content-container .hamburger .bar3 {
    opacity: 0;
    transform: rotate(45deg);
}
#toggle:checked ~ .navbar-content-container .hamburger .bar2 {
    transform: rotate(45deg);
    margin-top: -7px;
}

#toggle:checked ~ .navbar-content-container .hamburger + .nav {
    top: 0;
    transform: scale(1);
}
@media only screen and (min-width: 1187px) {
    .hamburger {
        display: none;
    }
    .navbar-mobile-container {
        display: none !important;
    }
}
@media only screen and (max-width: 1186px) {
    .navbar-content-container .desktop-icons-container {
        display: none;
    }
    .desktop-search-container {
        display: none;
    }
    .desktop-navbar-items {
        margin-left: auto;
        margin-right: auto;
    }
}
@media only screen and (max-width: 950px) {
    .navbar-content-container .desktop-icons-container {
        display: none;
    }
    .desktop-search-container {
        display: none;
    }
    .desktop-navbar-items {
        display: none;
    }
}

.navbar-mobile-container {
    display: none;
}
.mobile-nav-bar-items .nav-bar-pages-links-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
    justify-content: center;
}
@media only screen and (min-width: 951px) {
    .mobile-nav-bar-items {
        display: none;
    }
}

#toggle:checked ~ .navbar-mobile-container {
    display: flex;
    flex-direction: column;
    margin-left: 25px;
    margin-right: 25px;
}

.navbar-mobile-container .search-container input {
    height: 38px;
    width: 100%;
    width: calc(100% - 25px);
    border: none;
    border-radius: 12px;
    padding: 3px 15px;
}
.navbar-mobile-container .search-container form {
    position: relative;
}

.navbar-mobile-container .search-container button {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 12px;
    right: 10px;
    padding: 0;
    border: none;
    background-color: unset;
    cursor: pointer;
}

.navbar-mobile-container .icons-container {
    display: flex;
    margin-top: 20px;
}
.navbar-mobile-container .icons-container a {
    margin: 0 5px;
    cursor: pointer;
}
.navbar-mobile-container .icons-container a {
    position: relative;
    top: 0;
    transition: top ease 0.2s;
}
.navbar-mobile-container .icons-container a:hover {
    top: -5px;
}
.navbar-mobile-container .icons-container a img {
    max-height: 22px;
    max-width: 22px;
    filter: brightness(0) invert(1);
}

@media only screen and (max-width: 500px) {
    .hamburger {
        height: 42px;
    }
    .hamburger div {
        width: 31px;
        height: 5px;
        margin-top: 7px;
    }
    #toggle:checked ~ .navbar-content-container .hamburger .bar2 {
        margin-top: -5px;
    }
}
/* navbar container hamburger menu end */

/* navbar container end */
/* footer container start  */
.footer-container {
    background: #ea2a80;
    padding-bottom: 50px;
    padding-top: 50px;
}
.footer-columns-container {
    display: flex;
    flex-direction: row;
    padding: 0 125px;
}
.footer-column-container {
    display: flex;
    flex-direction: column;
}
.footer-first-column-title {
    color: #fafafa;
    font-size: 24px;
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.72px;
    margin: 0;
}
.footer-first-column-sub-title {
    color: #fafafa;
    font-size: 20px;
    font-family: Inter;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin: 0;
    margin-top: 15px;
}
.footer-first-column-span {
    color: #fafafa;
    font-size: 14px;
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
    margin-top: 15px;
}
.footer-subscibe-container {
    position: relative;
}
.footer-subscibe-container input {
    margin-top: 10px;
    height: 38px;
    max-width: 243px;
    border: 1px solid #ffffff;
    border-radius: 5px;
    padding: 3px 15px;
    background-color: transparent;
}
.footer-subscibe-container input::placeholder {
    color: #fafafa;
    opacity: 0.8; /* Firefox */
}
.footer-subscibe-container button {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 23px;
    right: 10px;
    padding: 0;
    border: none;
    background-color: unset;
    cursor: pointer;
}
.footer-subscibe-container-image {
    width: 20px;
    height: 20px;
}
.footer-column-container.second-column {
    margin-left: 100px;
}
.footer-second-column-title {
    color: #fafafa;
    font-size: 24px;
    font-family: Inter;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0.72px;
    margin: 0;
    margin-bottom: 15px;
}
.footer-second-column-anchor-container {
    display: flex;
    flex-direction: column;
}
.footer-second-column-anchor-container a {
    color: #fafafa;
    font-size: 16px;
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 16px;
    text-decoration: none;
}
.footer-column-container.third-column {
    margin-left: auto;
    margin-top: auto;
    margin-bottom: 16px;
}
.footer-third-column-title {
    color: #fafafa;
    font-size: 20px;
    font-family: Inter;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin: 0;
}
.footer-third-column-icons-container {
    display: flex;
    flex-direction: row;
    margin-top: 25px;
}
.footer-social-icon {
    margin-right: 20px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.footer-column-container.third-column a {
    color: #ffffff;
    margin-top: 25px;
    text-decoration: none;
    font-family: Inter;
}

@media only screen and (max-width: 786px) {
    .footer-columns-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0;
        row-gap: 25px;
        margin: auto;
    }
    .footer-column-container.first-column {
        margin-left: 25px;
        margin-right: auto;
    }
    .footer-column-container.second-column {
        margin-left: 25px;
        margin-right: auto;
    }
    .footer-column-container.third-column {
        margin-left: 25px;
        margin-right: auto;
    }
}
/* footer container end  */

.reveal {
    position: relative;
    transform: translateY(100px);
    opacity: 0;
    transition: 1s all ease;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }
    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }
    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }
    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }
    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }
    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }
    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }
    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }
    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }
    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }
    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

/* //////////////////////////////////////Home Page start///////////////////////////// */

/* what you can customize container start */
.what-you-can-customize-container {
    background: #a2c73b;
    padding-bottom: 50px;
}
.main-banner-container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-banner-image {
    margin-top: -20%;
    width: 90%;
}
@media only screen and (min-width: 1440px) {
    .main-banner-image {
        margin-top: -250px;
        width: 90%;
    }
}
.what-you-can-customize-title {
    background-image: url("./frontend/assets/title-background.png");
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
    max-width: 525px;
    margin: 25px auto;
}
.what-you-can-customize-title h2 {
    margin-bottom: 0;
    margin: 0px;
    padding: 20px 0 23px 20px;
    text-align: center;
    color: #ea2a80;
    font-size: 35px;
    font-family: AvenirLTStdBlack;
    font-style: normal;
    font-weight: 750;
    line-height: normal;
}
.what-you-can-customize-items-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 10px;
}
.what-you-can-customize-item {
    width: 200px;
    height: 250px;
    background-color: #ea2a80;
    margin: 0 15px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
}
.what-you-can-customize-item:nth-child(3) {
    height: 290px;
    background-color: #faf8f9;
}
.what-you-can-customize-item-icon {
    margin-top: 35px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.what-you-can-customize-item .what-you-can-customize-item-text-container {
    margin: auto auto 25px auto;
    height: 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.what-you-can-customize-item h4 {
    color: #fff;
    font-size: 25px;
    font-family: AvenirLTStdBody;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    max-width: 125px;
}
.what-you-can-customize-active-item-text-container {
    background-color: #ea2a80;
    margin-top: auto;
    border-radius: 15px;
}
.what-you-can-customize-active-item-text-container p {
    text-align: center;
    color: #fff;
    font-size: 25px;
    font-family: AvenirLTStdBlack;
    font-style: normal;
    font-weight: 750;
    line-height: normal;
    margin: 17px auto;
}

/* what you can customize container end */

/* best seller container start */

.best-seller-container {
    background: #3ba5db;
    padding-bottom: 50px;
    padding-top: 50px;
}
.best-seller-container-title {
    background-image: url("./frontend/assets/smaller-title-background.png");
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
    max-width: 293px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}
.best-seller-container-title h2 {
    margin-bottom: 0;
    margin: 0px;
    padding: 20px 0 23px 20px;
    text-align: center;
    color: #ea2a80;
    font-size: 35px;
    font-family: AvenirLTStdBlack;
    font-style: normal;
    font-weight: 750;
    line-height: normal;
}
.best-seller-items-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 25px;
    column-gap: 15px;
}
.best-seller-item {
    width: 350px;
    background-color: #fff;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 15px;
    position: relative;
    margin-left: 35px;
}
@media only screen and (max-width: 640px) {
    .best-seller-item {
        margin-left: unset;
    }
}
@media only screen and (max-width: 500px) {
    .best-seller-items-container {
        row-gap: 50px;
    }
}

.best-seller-item-book-cover {
    border-radius: 15px;
}
.best-seller-item-book-title {
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.best-seller-item-book-title h4 {
    color: #ea2a80;
    font-size: 25px;
    font-family: AvenirLTStdBlack;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    /*max-width: 150px; Edited by Mona*/
	max-width: 100%; 
	padding: 0px 3%;
    margin: 0;
}
.best-seller-item-book-descreption {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
}
.best-seller-item-book-descreption p {
    color: #000;
    font-size: 20px;
    font-family: AvenirLTStdBody;
    font-style: normal;
    font-weight: 350;
    line-height: normal;
    max-width: 280px;
    margin: 0;
}
.best-seller-item-ripon {
    background: #ea2a80;
    width: 100%;
    position: relative;
}
.best-seller-item-ripon p {
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #fff;
    font-size: 25px;
    font-family: AvenirLTStdBlack;
    font-style: normal;
    font-weight: 750;
    line-height: normal;
}
.best-seller-item--ripon-circle-container {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background-color: #fff;
    position: absolute;
    right: 20px;
    top: -25px;
    box-shadow: 0px 0px 4px 4px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.best-seller-item--ripon-circle-dot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background-color: #f4931e;
}
.best-seller-item--ripon-inner-circle-container {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    background-color: #f4931e;
    display: flex;
    justify-content: center;
    align-items: center;
}
.best-seller-item:nth-child(2) .best-seller-item--ripon-inner-circle-container,
.best-seller-item:nth-child(2) .best-seller-item--ripon-circle-dot {
    background-color: #ea2a80;
}
.best-seller-item:nth-child(3) .best-seller-item--ripon-inner-circle-container,
.best-seller-item:nth-child(3) .best-seller-item--ripon-circle-dot {
    background-color: #3ba5db;
}
.best-seller-item--ripon-inner-circle-container p {
    margin: 0;
    padding: 0;
    color: #000000;
    font-size: 25px;
    font-family: AvenirLTStdBlack;
    font-weight: 750;
    max-width: 70px;
    max-height: 45px;
    line-height: 28px;
    text-align: center;
}
.best-seller-item-customize-button {
    border-radius: 7px;
    background: #f4931e;
    border: unset;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: #fff;
    font-size: 25px;
    font-family: AvenirLTStdBlack;
    font-style: normal;
    font-weight: 750;
    line-height: normal;
    padding: 10px 15px;
    margin-top: 45px;
    margin-bottom: 40px;
    cursor: pointer;
    position: relative;
    top: 0;
    transition: top ease 0.5s;
}

.best-seller-item-customize-button:hover {
    top: -8px;
}
.price-tag-container {
    background-image: url("./frontend/assets/pink-price-background.png");
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
    padding-bottom: 8px;
    position: absolute;
    top: 33px;
    left: -38px;
}
@media only screen and (max-width: 375px) {
    .price-tag-container {
        top: 0px;
        left: 0px;
    }
    .best-seller-item {
        margin-left: 10px;
        margin-right: 10px;
    }
    .best-seller-item img {
        width: 95%;
    }
}
.price-tag-container p {
    color: #fff;
    margin: 0;
    padding: 10px 30px;
    text-align: center;
    font-size: 25px;
    font-family: AvenirLTStdBlack;
    font-weight: 750;
    text-transform: capitalize;
}
.best-seller-items-view-all-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.best-seller-items-view-all-button {
    border-radius: 7px;
    background: #f4931e;
    border: unset;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: #fff;
    font-size: 25px;
    font-family: AvenirLTStdBlack;
    font-style: normal;
    font-weight: 750;
    line-height: normal;
    padding: 10px 15px;
    margin-top: 45px;
    cursor: pointer;
    position: relative;
    top: 0;
    transition: top ease 0.5s;
}
.best-seller-items-view-all-button:hover {
    top: -8px;
}

/* best seller container end  */

/* books collection container start  */
.books-collection-container {
    background: #f4931e;
    padding-bottom: 50px;
    padding-top: 50px;
}
.books-collection-title-outer-container {
    max-width: 1165px;
    margin-left: auto;
    margin-right: auto;
}
.books-collection-container-title {
    background-image: url("./frontend/assets/books-collection-title-background.png");
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
    max-width: 390px;
    margin-left: 20px;
    margin-bottom: 10px;
}
.books-collection-container-title h2 {
    margin-bottom: 0;
    margin: 0px;
    padding: 20px 0 23px 20px;
    text-align: center;
    color: #ea2a80;
    font-size: 35px;
    font-family: AvenirLTStdBlack;
    font-style: normal;
    font-weight: 750;
    line-height: normal;
}
.books-collection-items-container {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
    column-gap: 15px;
    max-width: 1165px;
    margin-left: auto;
    margin-right: auto;
}
.books-collection-item-container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 30px;
}
.books-collection-item-container:nth-child(odd) {
    flex-direction: row;
}
.books-collection-item-card {
    background-color: #fff;
    max-width: 415px;
    border-radius: 20px;
    padding: 50px 29px 24px 45px;
    position: relative;
    margin-left: 40px;
}
.books-collection-item-card h5 {
    margin: 0;
    padding: 0;
    max-width: 250px;
    color: #ea2a80;
    font-size: 23px;
    font-family: AvenirLTStdBlack;
    font-weight: 750;
}
.books-collection-item-card p {
    width: 250px;
    font-size: 18px;
    font-family: AvenirLTStdBody;
    margin-bottom: 0;
}
.books-collection-item-card-view-all-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.books-collection-item-card-view-all-button {
    border-radius: 7px;
    background: #f4931e;
    border: unset;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: #fff;
    font-size: 18px;
    font-family: AvenirLTStdBlack;
    font-weight: 750;
    padding: 10px 15px;
    margin-top: 14px;
    cursor: pointer;
    position: relative;
    top: 0;
    transition: top ease 0.5s;
}
.books-collection-item-card-view-all-button:hover {
    top: -8px;
}
.books-collection-item-card-circle-container {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background-color: #fff;
    position: absolute;
    left: -40px;
    top: -40px;
    box-shadow: 0px 0px 4px 4px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.books-collection-item-container:nth-child(even)
.books-collection-item-card-circle-container {
    left: unset;
    right: -40px;
    top: -40px;
}
.books-collection-item-card-circle-dot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background-color: #f4931e;
}
.books-collection-item-card-inner-circle-container {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    background-color: #f4931e;
    display: flex;
    justify-content: center;
    align-items: center;
}
.books-collection-item-container:nth-child(2)
.books-collection-item-card-inner-circle-container,
.books-collection-item-container:nth-child(2)
.books-collection-item-card-circle-dot {
    background-color: #ea2a80;
}
.books-collection-item-container:nth-child(3)
.books-collection-item-card-inner-circle-container,
.books-collection-item-container:nth-child(3)
.books-collection-item-card-circle-dot {
    background-color: #3ba5db;
}
.books-collection-item-card-inner-circle-container p {
    margin: 0;
    padding: 0;
    color: #000000;
    font-size: 25px;
    font-family: AvenirLTStdBlack;
    font-weight: 750;
    max-width: 70px;
    max-height: 45px;
    line-height: 28px;
    text-align: center;
}
.books-collection-item-banner-image {
    width: 65%;
}
@media only screen and (max-width: 1145px) {
    .books-collection-item-banner-image {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    .books-collection-item-card {
        /* max-width: 415px; */
        margin-left: auto;
        margin-right: auto;
    }
    .books-collection-container-title {
        margin-bottom: 75px;
    }
}
@media only screen and (max-width: 375px) {
    .books-collection-item-card {
        margin-right: 45px;
        margin-left: 45px;
    }
    .books-collection-item-card p {
        width: 60vw;
    }
}
@media only screen and (max-width: 425px) {
    .books-collection-item-container:nth-child(odd) .books-collection-item-card {
        margin-left: -12px;
        margin-right: -50px;
    }
    .books-collection-item-container:nth-child(even) .books-collection-item-card {
        margin-right: -12px;
        margin-left: -50px;
    }
}

/* books collection container end  */

/* new story container start  */
.new-story-container {
    background: #ea2a80;
    padding-bottom: 50px;
    padding-top: 50px;
}
.new-story-title-outer-container {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}
.new-story-container-title {
    background-image: url("./frontend/assets/new-story-title-background.png");
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
    max-width: max-content;
	padding: 0 3%;
    margin-left: 20px;
    margin-bottom: 50px;
}
.new-story-container-title h2 {
    margin-bottom: 0;
    margin: 0px;
    padding: 20px 0 23px 20px;
    text-align: center;
    color: #ea2a80;
    font-size: 35px;
    font-family: AvenirLTStdBlack;
    font-style: normal;
    font-weight: 750;
    line-height: normal;
}

.new-story-items-container {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.new-story-item-container {
    background-image: url("./frontend/assets/new-story-pragrapgh-white-background.png");
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
}

.new-story-banner-image {
    border-radius: 25px;
    margin-right: -230px;
    margin-top: 45px;
    margin-bottom: 45px;
    z-index: 1;
}

.new-story-item-container h5 {
    margin: 0;
    padding: 145px 65px 10px 300px;
    color: #ea2a80;
    font-size: 23px;
    font-family: AvenirLTStdBlack;
    font-weight: 750;
}
.rtl .new-story-item-container h5 {
    
    padding-top: 100px;
    
}
.new-story-item-container p {
    padding: 0 65px 100px 300px;
    font-size: 16px;
    font-family: AvenirLTStdBody;
    max-width: 445px;
}
.new-story-customize-button-container {
    display: flex;
    align-items: center;
}
.new-story-customize-button {
    border-radius: 7px;
    background: #f4931e;
    border: unset;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: #fff;
    font-size: 18px;
    font-family: AvenirLTStdBlack;
    font-weight: 750;
    padding: 10px 15px;
    margin-top: 14px;
    cursor: pointer;
    position: relative;
    top: 0;
    transition: top ease 0.5s;
    margin-left: auto;
    margin-right: 100px;
}
.new-story-customize-button:hover {
    top: -8px;
}
@media only screen and (max-width: 1282px) {
    .new-story-item-container {
        background-size: 100% 100%;
        margin-left: 30px;
        margin-right: 30px;
    }
    .new-story-items-container {
        flex-direction: column;
    }
    .new-story-banner-image {
        border-radius: 25px;
        margin-right: 0;
        margin-top: 25px;
        width: 70%;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: -28px;
    }
    .new-story-item-container p {
        padding: unset;
        margin: auto;
    }
    .new-story-item-container h5 {
        padding: 50px 0 10px 0;
        text-align: center;
    }
    .new-story-customize-button {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 40px;
        margin-top: 40px;
    }
}
/* new story container end  */

/* how it works container start  */

.how-it-works-container {
    background: #a2c73b;
    padding-bottom: 50px;
    padding-top: 50px;
}
.how-it-works-title-outer-container {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}
.how-it-works-container-title {
    background-image: url("./frontend/assets/how-it-works-title-background.png");
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
    max-width: 525px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}
.how-it-works-container-title h2 {
    margin-bottom: 0;
    margin: 0px;
    padding: 20px 0 23px 20px;
    text-align: center;
    color: #ea2a80;
    font-size: 35px;
    font-family: AvenirLTStdBlack;
    font-style: normal;
    font-weight: 750;
    line-height: normal;
}

.how-it-works-items-container {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    position: relative;
}
.how-it-works-banner-image {
    width: 85%;
}
.how-it-works-video {
    position: absolute;
    top: 7%;
    left: 17%;
    width: 68%;
    height: 59%;
    border-radius: 4%;
    object-fit: fill;
}

/* how it works container end  */
/* arabic story container start  */
.arabic-story-container {
    background: #3ba5db;
    padding-bottom: 50px;
    padding-top: 50px;
}
.arabic-story-title-outer-container {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}
.arabic-story-container-title {
    background-image: url("./frontend/assets/arabic-story-title-background.png");
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
    max-width: 645px;
    margin-left: 20px;
    margin-bottom: 50px;
}
.arabic-story-container-title h2 {
    margin-bottom: 0;
    margin: 0px;
    padding: 20px 0 23px 20px;
    text-align: center;
    color: #ea2a80;
    font-size: 35px;
    font-family: AvenirLTStdBlack;
    font-style: normal;
    font-weight: 750;
    line-height: normal;
}

.arabic-story-items-container {
    display: flex;
    flex-direction: row-reverse;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.arabic-story-item-container {
    background-image: url("./frontend/assets/new-story-pragrapgh-white-background.png");
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
}

.arabic-story-banner-image {
    border-radius: 25px;
    margin-left: -230px;
    margin-top: 45px;
    margin-bottom: 45px;
    z-index: 1;
}

.arabic-story-item-container h5 {
    margin: 0;
    padding: 145px 230px 10px 100px;
    color: #ea2a80;
    font-size: 23px;
    font-family: AvenirLTStdBlack;
    font-weight: 750;
}
.arabic-story-item-container p {
    padding: 0 300px 100px 100px;
    font-size: 16px;
    font-family: AvenirLTStdBody;
    max-width: 445px;
}
.arabic-story-customize-button-container {
    display: flex;
    align-items: center;
}
.arabic-story-customize-button {
    border-radius: 7px;
    background: #f4931e;
    border: unset;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: #fff;
    font-size: 18px;
    font-family: AvenirLTStdBlack;
    font-weight: 750;
    padding: 10px 15px;
    margin-top: 14px;
    cursor: pointer;
    position: relative;
    top: 0;
    transition: top ease 0.5s;
    margin-right: auto;
    margin-left: 100px;
}
.arabic-story-customize-button:hover {
    top: -8px;
}
@media only screen and (max-width: 1282px) {
    .arabic-story-item-container {
        background-size: 100% 100%;
        margin-left: 30px;
        margin-right: 30px;
    }
    .arabic-story-items-container {
        flex-direction: column;
    }
    .arabic-story-banner-image {
        border-radius: 25px;
        margin-right: 0;
        margin-top: 25px;
        width: 70%;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: -28px;
    }
    .arabic-story-item-container p {
        padding: unset;
        margin: auto;
    }
    .arabic-story-item-container h5 {
        padding: 50px 0 10px 0;
        text-align: center;
    }
    .arabic-story-customize-button {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 40px;
        margin-top: 40px;
    }
}
/* arabic story container end  */
/* testimonials container start  */
.testimonials-container {
    background: #f4931e;
    padding-bottom: 150px;
    padding-top: 50px;
}
.testimonials-title-outer-container {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 100px;
}
.testimonials-container-title {
    background-image: url("./frontend/assets/testimonials-title-background.png");
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
    max-width: 335px;
    margin-left: 20px;
    margin-bottom: 50px;
}
.testimonials-container-title h2 {
    margin-bottom: 0;
    margin: 0px;
    padding: 20px 0 23px 20px;
    text-align: center;
    color: #ea2a80;
    font-size: 35px;
    font-family: AvenirLTStdBlack;
    font-style: normal;
    font-weight: 750;
    line-height: normal;
}

.testimonials-items-container {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    margin-top: 75px px;
    width: 640px;
    width: 680px;
    column-gap: 45px;
    overflow-x: hidden;
}

.testimonial-card-item {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 3px 3px 4px 4px rgba(0, 0, 0, 0.15);
}

.testimonial-card-item p,
.testimonial-card-item h5 {
    max-width: 400px;
    text-align: center;
    font-size: 25px;
    font-weight: 300;
    margin-bottom: 0;
}
.testimonial-card-item p {
    margin-top: 0;
    margin-top: 30px;
    margin-left: 100px;
    margin-right: 100px;
    font-family: AvenirLTStdBody;
}
.testimonial-card-item h5 {
    margin-left: 120px;
    margin-right: 120px;
    font-family: AvenirLTStdBlack;
}
.testimonials-container section {
    position: relative;
}
.tstimonial-card-surrounder {
    position: absolute;
    top: -14.2%;
    width: 562px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
}
.items-outer-container {
    position: relative;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.tstimonial-left-arrow {
    position: absolute;
    left: -25px;
    top: 0;
    margin: auto 0;
    bottom: 0;
    width: 50px;
    cursor: pointer;
    z-index: 2;
}
.testimonials-right-arrow {
    position: absolute;
    right: -25px;
    top: 0;
    margin: auto 0;
    bottom: 0;
    width: 50px;
    cursor: pointer;
    z-index: 2;
}
.testimonials-right-arrow:hover,
.tstimonial-left-arrow:hover {
    transform: scale(1.1);
}
section > .testimonials-quotations-image {
    position: absolute;
    top: 95px;
    left: 145px;
    width: 15vw;
}
section > .testimonials-quotations-image ~ .testimonials-quotations-image {
    position: absolute;
    top: unset;
    bottom: -125px;
    left: unset;
    right: 95px;
}
.swiper {
    width: 600px;
    height: 277px;
    padding-right: 10px !important;
    padding-bottom: 10px !important;
}

@media only screen and (max-width: 670px) {
    .swiper {
        width: 89vw;
        height: 42vw;
    }
    .testimonial-card-item p {
        font-size: 3.7vw;
        margin-left: 12vw;
        margin-right: 12vw;
    }
    .testimonial-card-item h5 {
        font-size: 3.75vw;
        margin-top: -2vw;
        margin-left: auto;
        margin-right: auto;
    }
    .tstimonial-card-surrounder {
        top: -6vw;
        width: 84.9vw;
    }
    .tstimonial-left-arrow {
        width: 6vw;
        left: -2vw;
    }
    .testimonials-right-arrow {
        width: 6vw;
        right: -2vw;
    }
}
/* testimonials container end  */
/* arabic story container start  */
.faq-container {
    background: #ea2a80;
    padding-bottom: 50px;
    padding-top: 50px;
}
.faq-title-outer-container {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}
.faq-container-title {
    background-image: url("./frontend/assets/faq-title-white-background.png");
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
    max-width: 225px;
    margin-left: 20px;
    margin-bottom: 50px;
}
.faq-container-title h2 {
    margin-bottom: 0;
    margin: 0px;
    padding: 20px 0 23px 20px;
    text-align: center;
    color: #ea2a80;
    font-size: 35px;
    font-family: AvenirLTStdBlack;
    font-style: normal;
    font-weight: 750;
    line-height: normal;
}

.faq-items-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}
.faq-banner-image {
    max-width: 450px;
    margin-right: 11vw;
	height:fit-content;
	margin-top:auto;
	margin-bottom:auto
}
@media only screen and (max-width: 670px) {
    .faq-banner-image {
        margin-right: unset;
        width: 100%;
    }
}
.faq-inner-items-container {
    display: flex;
    flex-direction: column;
    max-width: 550px;
}
.faq-inner-items-container h4 {
    margin: 0;
    padding-bottom: 25px;
    color: #fff;
    font-size: 32px;
    font-family: Inter;
    font-weight: 700;
    border-bottom: solid 2px #d7def0;
}
.faq-question-box {
    border-bottom: solid 2px #d7def0;
    position: relative;
    max-width: 500px;
}
.faq-question-box h5 {
    font-size: 18px;
    font-family: Inter;
    font-weight: 700;
    margin-top: 22px;
    margin-bottom: 22px;
}
.faq-question-box p {
    color: var(--text-txt-secondary, rgba(60, 60, 67, 0.85));
    font-size: 16px;
    font-family: Inter;
    display: none;
}
.faq-question-box.open p {
    display: block;
}
.faq-question-box .faq-x-mark {
    display: none;
}
.faq-question-box.open .faq-x-mark {
    display: unset;
}
.faq-x-mark {
    position: absolute;
    top: 21px;
    right: 5px;
}
.faq-question-box.open .faq-plus-mark {
    display: none;
}
.faq-plus-mark {
    position: absolute;
    top: 21px;
    right: 5px;
}
/* faq container end  */

@media only screen and (max-width: 425px) {
    .books-collection-container-title {
        margin-left: auto;
        margin-right: auto;
        padding: 0 10px;
    }
    .new-story-container-title {
        margin-left: auto;
        margin-right: auto;
        padding: 0 25px;
    }
    .new-story-container-title {
        margin-right: auto;
        margin-left: auto;
        max-width: fit-content;
        padding: 0 10px;
    }
    .testimonials-container-title {
        margin-left: auto;
        margin-right: auto;
        padding: 0 10px;
    }
}
@media only screen and (max-width: 425px) {
    .new-story-item-container p {
        padding: 0 25px;
    }
    .new-story-item-container p {
        padding: 0 25px;
    }
}
@media only screen and (max-width: 550px) {
    .faq-inner-items-container {
        padding: 10px 25px;
    }
}
@media only screen and (max-width: 550px) {
    .footer-third-column-icons-container {
        margin-top: 0;
    }
    .footer-column-container.third-column a {
        margin-top: 12px;
    }
}
@media only screen and (max-width: 550px) {
    .navbar-content-container .nav-bar-logo {
        max-height: 60px;
        margin-left: 20px;
    }
    .hamburger div {
        width: 43px;
        height: 6px;
    }
}
@media only screen and (max-width: 1154px) {
    .books-collection-item-container {
        flex-direction: column-reverse !important;
    }
}
@media only screen and (max-width: 500px) {
    .books-collection-container-title {
        margin-bottom: 10px;
    }
}
@media only screen and (max-width: 500px) {
    .arabic-story-container-title h2,
    .best-seller-container-title h2,
    .books-collection-container-title h2,
    .faq-container-title h2,
    .how-it-works-container-title h2,
    .new-story-container-title h2,
    .testimonials-container-title h2,
    .what-you-can-customize-title h2 {
        padding: 3vw 4vw 4.5vw 4.5vw;
        font-size: 5vw;
    }
    .what-you-can-customize-title {
        width: fit-content;
    }
    .best-seller-container-title {
        width: fit-content;
    }
    .books-collection-container-title {
        width: fit-content;
    }
    .how-it-works-container-title {
        width: fit-content;
    }
    .testimonials-container-title {
        width: fit-content;
    }
    .faq-container-title {
        width: fit-content;
        padding: 0 10px;
    }
}

/* //////////////////////////////////////Home Page end///////////////////////////// */

/* //////////////////////////////////////category page start///////////////////////////// */
/* our story container start */
.our-stories-container {
    background: #a2c73b;
    padding-bottom: 50px;
}
.our-stories-main-banner-container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.our-stories-main-banner-image {
    margin-top: -20%;
    width: 90%;
}
@media only screen and (min-width: 1440px) {
    .our-stories-main-banner-image {
        margin-top: -250px;
        width: 90%;
    }
}
.our-stories-container-title {
    background-image: url("./frontend/assets/category/our-story-white-background.png");
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
    max-width: 293px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}
.our-stories-container-title h2 {
    margin-bottom: 0;
    margin: 0px;
    padding: 20px 0 23px 0;
    text-align: center;
    color: #ea2a80;
    font-size: 35px;
    font-family: AvenirLTStdBlack;
    font-style: normal;
    font-weight: 750;
    line-height: normal;
}
.our-stories-items-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 25px;
    column-gap: 25px;
}
.our-stories-item {
    width: 350px;
    background-color: #fff;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 15px;
    position: relative;
    margin-left: 35px;
}
.our-stories-price-tag-container {
    background-image: url("./frontend/assets/pink-price-background.png");
    background-repeat: no-repeat, repeat;
    position: absolute;
    top: 33px;
    left: -38px;
}
.our-stories-price-tag-container p {
    color: #fff;
    margin: 0;
    padding: 10px 30px;
    text-align: center;
    font-size: 25px;
    font-family: AvenirLTStdBlack;
    font-weight: 750;
    text-transform: capitalize;
}
.our-stories-item-book-cover {
    border-radius: 15px;
}
.our-stories-item-book-title {
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.our-stories-item-book-title h4 {
    color: #ea2a80;
    font-size: 25px;
    font-family: AvenirLTStdBlack;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    max-width: 150px;
    margin: 0;
}
.our-stories-item-book-descreption {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
}
.our-stories-item-book-descreption p {
    color: #000;
    font-size: 20px;
    font-family: AvenirLTStdBody;
    font-style: normal;
    font-weight: 350;
    line-height: normal;
    max-width: 280px;
    margin: 0;
}
.our-stories-item-ripon {
    background: #ea2a80;
    width: 100%;
    position: relative;
}
.our-stories-item-ripon p {
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #fff;
    font-size: 25px;
    font-family: AvenirLTStdBlack;
    font-style: normal;
    font-weight: 750;
    line-height: normal;
}
.our-stories-item-ripon-circle-container {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background-color: #fff;
    position: absolute;
    right: 20px;
    top: -25px;
    box-shadow: 0px 0px 4px 4px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.our-stories-item-ripon-circle-dot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background-color: #f4931e;
}
.our-stories-item-ripon-inner-circle-container {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    background-color: #f4931e;
    display: flex;
    justify-content: center;
    align-items: center;
}
.our-stories-item:nth-child(3n-1)
.our-stories-item-ripon-inner-circle-container,
.our-stories-item:nth-child(3n-1) .our-stories-item-ripon-circle-dot {
    background-color: #ea2a80;
}
.our-stories-item:nth-child(3n) .our-stories-item-ripon-inner-circle-container,
.our-stories-item:nth-child(3n) .our-stories-item-ripon-circle-dot {
    background-color: #3ba5db;
}
.our-stories-item-ripon-inner-circle-container p {
    margin: 0;
    padding: 0;
    color: #000000;
    font-size: 25px;
    font-family: AvenirLTStdBlack;
    font-weight: 750;
    max-width: 70px;
    max-height: 45px;
    line-height: 28px;
    text-align: center;
}
.our-stories-item-customize-button {
    border-radius: 15px;
    background: #f4931e;
    border: unset;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: #fff;
    font-size: 25px;
    font-family: AvenirLTStdBlack;
    font-style: normal;
    font-weight: 750;
    line-height: normal;
    padding: 10px 15px;
    margin-top: 45px;
    margin-bottom: 40px;
    cursor: pointer;
    position: relative;
    top: 0;
    transition: top ease 0.5s;
}

.our-stories-item-customize-button:hover {
    top: -8px;
}
/* our story container end */
/* we spread container start */
.we-spread-container {
    background: #3ba5db;
    padding-bottom: 120px;
    padding-top: 100px;
}
.we-spread-title-outer-container {
    max-width: 1165px;
    margin-left: auto;
    margin-right: auto;
}
.we-spread-container-title {
    background-image: url("./frontend/assets/category/we-spread-title-white-background.png");
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
    max-width: 550px;
    margin-left: 20px;
    margin-bottom: 50px;
}
.we-spread-container-title h2 {
    margin-bottom: 0;
    margin: 0px;
    padding: 20px 0 23px 4px;
    text-align: center;
    color: #ea2a80;
    font-size: 35px;
    font-family: AvenirLTStdBlack;
    font-style: normal;
    font-weight: 750;
    line-height: normal;
}
.we-spread-items-container {
    display: flex;
    flex-wrap: wrap;
    row-gap: 25px;
    column-gap: 25px;
    justify-content: center;
    align-items: center;
}
.we-spread-item {
    background-color: #fff;
    border-radius: 25px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    max-width: 290px;
    padding: 30px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.we-spread-item-image-container {
    border-radius: 50%;
    padding: 10px;
}
.we-spread-item:nth-child(3n-2) .we-spread-item-image-container {
    background-color: #ea2a80;
}
.we-spread-item:nth-child(3n-1) .we-spread-item-image-container {
    background-color: #a2c73b;
}
.we-spread-item:nth-child(3n) .we-spread-item-image-container {
    background-color: #3ba5db;
}

.we-spread-item-image {
    width: 105px;
    height: 105px;
}
.we-spread-item h4 {
    color: #ea2a80;
    text-align: center;
    font-family: AvenirLTStdBlack;
    font-size: 20px;
    font-weight: 750;
    margin: 0;
    margin-top: 15px;
}
.we-spread-item p {
    text-align: center;
    font-family: AvenirLTStdBody;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    margin-top: 15px;
    max-width: 200px;
}
/* we spread container end */
/* //////////////////////////////////////category page end///////////////////////////// */
/* //////////////////////////////////////Cart Page Start///////////////////////////// */
.navbar-container.cart-page {
    padding-bottom: 13px;
}

/* shopping basket and card totals container start  */

.shopping-basket-cart-total-container {
    background: #ea2a80;
}

.shopping-basket-cart-total-inner-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}
.shopping-basket-container {
    background: #ea2a80;
    padding-bottom: 50px;
    padding-top: 50px;
}
.cart-total-container {
    background: #a2c73b;
    padding-bottom: 50px;
    padding-top: 50px;
    padding-left: 20px;
    padding-right: 20px;
    min-width: 500px;
}
.navbar-container.cart-page {
    position: relative;
}
.coloring-background-container {
    background: #a2c73b;
    width: 540px;
    height: 100%;
    position: absolute;
    right: 0;
}
@media only screen and (max-width: 1320px) {
    .shopping-basket-container {
        min-width: unset;
        width: -webkit-fill-available;
    }
    .cart-total-container {
        min-width: unset;
        width: -webkit-fill-available;
    }
    .coloring-background-container {
        display: none;
    }
}
@media only screen and (min-width: 1441px) {
    .shopping-basket-cart-total-container {
        background: linear-gradient(90deg, #ea2a80 60%, #a2c73b 60%);
    }
    .navbar-container.cart-page section {
        position: relative;
    }
    .coloring-background-container {
        background: #a2c73b;
        width: 540px;
        height: 100%;
        position: absolute;
        right: 0;
        padding-bottom: 13px;
    }
    .navbar-container.cart-page {
        background: linear-gradient(90deg, #ea2a80 60%, #a2c73b 60%);
    }
}

/* shopping basket container start  */

.shopping-basket-container-title {
    background-image: url("./frontend/assets/cart/shopping-basket-title-background-container.png");
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
    max-width: 350px;
    margin-left: 20px;
    margin-bottom: 50px;
}
.shopping-basket-container-title h2 {
    margin-bottom: 0;
    margin: 0px;
    padding: 20px 0 23px 0;
    text-align: center;
    color: #ea2a80;
    font-size: 35px;
    font-family: AvenirLTStdBlack;
    font-weight: 750;
}
.shopping-basket-items-container {
    display: flex;
    flex-direction: column;
    max-width: 875px;
    row-gap: 25px;
    margin-right: auto;
    margin-left: auto;
}
.shopping-basket-item-container {
    background-image: url("./frontend/assets/cart/shopping-basket-item-white-background.png");
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
    padding: 90px 20px;
    display: flex;
    flex-direction: row;
    column-gap: 25px;
    margin-left: 50px;
    max-width: fit-content;
    padding-right: 50px;
    padding-bottom: 50px;
    position: relative;
}
.shopping-basket-actions-container {
    position: absolute;
    top: 15px;
    right: 35px;
}
.shopping-basket-action-icon {
    position: relative;
    top: 0;
    transition: top ease 0.5s;
    cursor: pointer;
    margin-right: 10px;
}
.shopping-basket-action-icon:hover {
    top: -8px;
}

.shopping-basket-banner-image {
    max-height: 263px;
    border-radius: 25px;
    margin-left: -50px;
}
.shopping-basket-item-inner-container {
    max-width: 315px;
}
.shopping-basket-item-inner-container h5 {
    color: #ea2a80;
    font-family: AvenirLTStdBlack;
    font-size: 23px;
    font-weight: 750;
    margin: 0;
    margin-top: 10px;
}
.shopping-basket-item-inner-container h6 {
    color: #6f8aa7;
    font-family: AvenirLTStdBody;
    font-size: 23px;
    font-weight: 500;
    margin: 0;
    margin-top: 12px;
}
.shopping-basket-item-inner-container p {
    font-family: AvenirLTStdBody;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    margin-top: 12px;
}
.shopping-bask-item-tages-container {
    margin-top: 25px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 10px;
}
.shopping-bask-item-tages-container span {
    background-color: #d9d9d9;
    font-family: AvenirLTStdBlack;
    padding: 5px 15px;
    border-radius: 10px;
    min-width: fit-content;
}
.shopping-basket-item-price-container {
    margin-top: 25px;
    text-align: end;
}
.shopping-basket-item-price-container span {
    color: #f4931e;
    font-family: AvenirLTStdBlack;
    font-size: 23px;
}
/* shopping basket container end  */

/* card total container start  */
.cart-total-container-title {
    background-image: url("./frontend/assets/cart/shopping-basket-title-background-container.png");
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
    max-width: 350px;
    margin-bottom: 50px;
}
.cart-total-container-title h2 {
    margin-bottom: 0;
    margin: 0px;
    padding: 20px 0 23px 0;
    text-align: center;
    color: #ea2a80;
    font-size: 35px;
    font-family: AvenirLTStdBlack;
    font-weight: 750;
}
.cart-items-container {
    display: flex;
    flex-direction: column;
}

.cart-total-details-card {
    background-color: #fff;
    border-radius: 25px;
    padding: 50px 30px;
    max-width: fit-content;
    display: flex;
    flex-direction: column;
    row-gap: 25px;
    box-shadow: 0px 3px 4px 3px rgba(0, 0, 0, 0.15);
}
.cart-total-details-card .details-card-row {
    display: flex;
}
.cart-total-details-card .details-card-row span:first-child {
    margin-right: 10px;
    min-width: 120px;
}
.subtotals-text,
.subtotals-value {
    color: #ea2a80;
    font-family: AvenirLTStdBlack;
    font-size: 23px;
    font-weight: 750;
}
.shipping-text {
    font-family: AvenirLTStdBody;
    font-size: 18px;
}
.shipping-value-contianer {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.shipping-value-contianer input {
    border: 1px solid #3b3737;
    border-radius: 4px;
    padding: 0.5em;
    appearance: auto;
    -webkit-appearance: none;
    cursor: pointer;
}
.shipping-value-contianer input[type="radio"]:checked {
    background-color: #3b3737;
}
.shipping-value-contianer label {
    font-family: AvenirLTStdBody;
    font-size: 18px;
}
.total-text,
.total-value {
    color: #ea2a80;
    font-family: AvenirLTStdBlack;
    font-size: 23px;
    font-weight: 750;
}
.gift-wraped-image-container {
    margin-top: 75px;
}
.gift-wraped-image {
    width: 118px;
    height: 118px;
}
.got-coupon-image-container {
    background-image: url("./frontend/assets/cart/cupon-background-image.png");
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
    padding: 85px;
    padding-top: 50px;
    padding-left: 100px;
    padding-right: 11px;
    width: 298px;
}
.got-coupon-image-container p {
    transform: rotate(349deg);
    color: #000;
    font-family: AvenirLTStdBlack;
    font-size: 23px;
    font-weight: 750;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
}
.add-coupon-row-container {
    display: flex;
    flex-direction: row;
    column-gap: 25px;
    align-items: center;
    margin-top: 25px;
}
.add-coupon-row-container span {
    color: #ffffff;
    text-align: center;
    font-family: AvenirLTStdBlack;
    font-size: 20px;
    font-weight: 750;
    min-width: 120px;
    text-align: left;
}
.coupon-text-field-input {
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border: none;
    padding: 15px;
    width: 100%;
    max-width: 262px;
}
@media only screen and (max-width: 1320px) {
    .cart-items-container {
        flex-direction: row;
        flex-direction: column;
    }
    .gift-wraped-image-container {
        margin-top: 20px;
    }
}
@media only screen and (max-width: 760px) {
    .shopping-basket-item-container {
        flex-direction: column;
        min-width: -webkit-fill-available;
        padding-left: 50px;
        padding-top: 105px;
        margin: 0 20px;
    }
    .shopping-basket-banner-image {
        margin-left: unset;
    }
    .shopping-basket-item-inner-container {
        max-width: unset;
    }
    .shopping-basket-actions-container {
        top: 40px;
    }
}
@media only screen and (max-width: 430px) {
    .got-coupon-image-container {
        width: unset;
    }
    .cart-total-container {
        padding-right: 20px;
    }
}
/* card total container end  */

/* shopping basket and card totals container end  */

/* cross selling products container start  */
.cross-selling-container {
    background: #3ba5db;
    padding-bottom: 90px;
    padding-top: 90px;
}
.cross-selling-title-outer-container {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}
.cross-selling-container-title {
    background-image: url("./frontend/assets/cart/cross-selling-title-background.png");
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
    max-width: 450px;
    margin-bottom: 50px;
}
.cross-selling-container-title h2 {
    margin-bottom: 0;
    margin: 0px;
    padding: 20px 0 23px 0;
    text-align: center;
    color: #ea2a80;
    font-size: 35px;
    font-family: AvenirLTStdBlack;
    font-style: normal;
    font-weight: 750;
    line-height: normal;
}
.cross-selling-items-container {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 50px;
    row-gap: 50px;
}
.cross-selling-item-container {
    background-color: #fff;
    border-radius: 20px;
    width: 200px;
    height: 280px;
    display: flex;
    flex-direction: column;
}
.product-name-container {
    border-radius: 20px;
    padding: 18px 11px;
    background: #ea2a80;
    margin-top: auto;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.product-name-container span {
    color: #fff;
    font-family: AvenirLTStdBlack;
    font-size: 25px;
    font-style: normal;
    font-weight: 750;
    line-height: normal;
}
@media only screen and (max-width: 1320px) {
    .cross-selling-items-container {
        margin-left: 20px;
        margin-right: 20px;
    }
    .cross-selling-container-title {
        margin-left: 20px;
    }
}
/* cross selling products container end  */

/* other stories container start  */
.other-stories-container {
    background: #f4931e;
    padding-bottom: 90px;
    padding-top: 90px;
}
.other-stories-title-outer-container {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}
.other-stories-container-title {
    background-image: url("./frontend/assets/cart/cross-selling-title-background.png");
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
    max-width: 450px;
    margin-bottom: 50px;
}
.other-stories-container-title h2 {
    margin-bottom: 0;
    margin: 0px;
    padding: 20px 0 23px 0;
    text-align: center;
    color: #ea2a80;
    font-size: 35px;
    font-family: AvenirLTStdBlack;
    font-style: normal;
    font-weight: 750;
    line-height: normal;
}
.other-stories-items-container {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 45px;
    row-gap: 45px;
}
.other-stories-item-container {
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    padding: 12px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.other-stories-item-container h4 {
    color: #000;
    text-align: center;
    font-family: AvenirLTStdBody;
    font-size: 25px;
    font-weight: 400;
    margin-top: 14px;
    margin-bottom: 14px;
}

@media only screen and (max-width: 1320px) {
    .other-stories-items-container {
        margin-left: 20px;
        margin-right: 20px;
    }
    .other-stories-container-title {
        margin-left: 20px;
    }
}
@media only screen and (max-width: 430px) {
    .other-stories-story-image {
        width: 100%;
    }
}
/* other stories container end  */

/* //////////////////////////////////////Cart Page End///////////////////////////// */
/* //////////////////////////////////////Product Page Start///////////////////////////// */
.navbar-container.product-page {
    padding-bottom: 13px;
}
/* customize story introduction container start */
.customize-story-container {
    background: #ea2a80;
    padding-bottom: 120px;
    padding-top: 30px;
}

.customize-story-container-title {
    background-image: url("./frontend/assets/product/product-cutsomize-title-background.png");
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
    max-width: 450px;
    margin-left: 0px;
    margin-bottom: 50px;
}
.customize-story-container-title h2 {
    margin-bottom: 0;
    margin: 0px;
    padding: 20px 0 23px 0;
    text-align: center;
    color: #ea2a80;
    font-size: 35px;
    font-family: AvenirLTStdBlack;
    font-style: normal;
    font-weight: 750;
    line-height: normal;
}
.customize-story-items-container {
    display: flex;
    flex-wrap: wrap;
    row-gap: 25px;
    column-gap: 25px;
    column-gap: 25px;
}

.customize-story-gallery-item {
    width: 675px;
    height: 550px;
    margin-right: 25px;
    margin-left: 25px;
    position: relative;
}
.swiper-container.gallery-top {
    width: 680px;
    height: 390px;
    overflow-x: hidden;
    position: relative;
}
.swiper-container.gallery-top .swiper-slide {
    border-radius: 15px;
    background-size: 100% 100%;
}
.swiper-container.gallery-thumbs {
    width: 590px;
    height: 105px;
    margin-top: 10px;
    overflow-x: hidden;
    position: relative;
}
.swiper-container.gallery-thumbs .swiper-slide {
    background-size: 100% 100%;
    border-radius: 15px;
    opacity: 0.4;
}
.swiper-container.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}
.swiper-left-arrow {
    position: absolute;
    left: -25px;
    top: 200px;
    width: 50px;
    cursor: pointer;
    z-index: 2;
}
.swiper-right-arrow {
    position: absolute;
    right: -25px;
    top: 200px;
    width: 50px;
    cursor: pointer;
    z-index: 2;
}
.swiper-right-arrow:hover {
    transform: scale(1.1);
}
.swiper-left-arrow:hover {
    transform: scale(-1.1);
}
.customize-story-details-item {
    display: flex;
    flex-direction: column;
    max-width: 460px;
}
.customize-story-details-item h2 {
    color: #fff;
    font-family: AvenirLTStdBlack;
    font-size: 23px;
    font-weight: 750;
    margin: 0;
    margin-top: 30px;
}
.customize-story-details-item p {
    margin: 0;
    margin-top: 35px;
    color: #fff;
    font-family: AvenirLTStdBody;
    font-size: 20px;
}
.customize-story-details-item-tages-container {
    margin-top: 35px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 10px;
}
.customize-story-details-item-tages-container span , .customize-story-details-item-tages-container a {
    font-family: AvenirLTStdBody;
    font-weight: 750;
    color: #fff;
    min-width: fit-content;
}
.customize-story-details-item-price-container {
    display: flex;
    flex-direction: row;
    margin-top: 30px;
    column-gap: 25px;
}
.customize-story-details-item-price-container p:first-child {
    margin: 0;
    font-size: 20px;
    font-family: AvenirLTStdBody;
    color: #fff;
}
.customize-story-details-item-price-container p:last-child {
    margin: 0;
    font-size: 20px;
    font-family: AvenirLTStdBody;
    color: #ea2a80;
    background-image: url("./frontend/assets/product/details-price-background.png");
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
   /* min-width: 100px;*/
	min-width: auto;
    min-height: 30px;
	padding: 3%;
}
.customize-story-details-item-customize-button {
    width: fit-content;
    border-radius: 15px;
    background: #f4931e;
    border: unset;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: #fff;
    font-size: 25px;
    font-family: AvenirLTStdBlack;
    font-weight: 750;
    padding: 10px 15px;
    margin-top: 30px;
    cursor: pointer;
    position: relative;
    top: 0;
    transition: top ease 0.5s;
}

.customize-story-details-item-customize-button:hover {
    top: -8px;
}
@media only screen and (max-width: 1185px) {
    .customize-story-items-container {
        flex-direction: column;
        margin-left: 20px;
        margin-right: 20px;
    }
    .customize-story-details-item {
        margin-left: 25px;
    }
}
@media only screen and (max-width: 700px) {
    .customize-story-gallery-item {
        width: 84.28571428571429vw;
        height: 78.57142857142857vw;
    }
    .customize-story-gallery-item {
        width: 84.28571428571429vw;
        height: 78.57142857142857vw;
    }
    .swiper-container.gallery-top {
        width: 84.28571428571429vw;
        height: 51.857143vw;
    }
    .swiper-container.gallery-thumbs {
        width: 84.28571428571429vw;
        height: 15vw;
    }
    .swiper-right-arrow {
        top: 28.57142857142857vw;
        width: 7.142857142857142vw;
        right: -3.571428571428571vw;
    }
    .swiper-right-arrow {
        top: 28.57142857142857vw;
        width: 7.142857142857142vw;
        right: -3.571428571428571vw;
    }
    .swiper-left-arrow {
        top: 28.57142857142857vw;
        width: 7.142857142857142vw;
        left: -3.571428571428571vw;
    }
    .customize-story-gallery-item {
        margin-right: auto;
        margin-left: auto;
    }
}
/* customize story introduction container end */

/* start customizing container start */

.start-customizing-container {
    background: #a2c73b;
    padding-bottom: 50px;
    padding-top: 50px;
}

.start-customizing-container-title {
    margin-left: 20px;
    margin-right: 20px;
}
.start-customizing-container-title h2 {
    margin: 0;
    text-align: center;
    color: #fff;
    font-size: 35px;
    font-family: AvenirLTStdBlack;
    font-weight: 750;
}
.start-customizing-items-container {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 25px;
    column-gap: 25px;
}
.start-customizing-item-image {
    max-width: 607px;
    max-height: 586px;
}
.swiper-container.customizing-steps-container {
    width: 550px;
    /* height: 570px; */
    overflow-x: hidden;
    position: relative;
}
.swiper-container.customizing-steps-container .swiper-slide {
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    height: calc(99% - 135px);
    margin-top: 35px;
    margin-left: 40px;
    width: calc(100% - 120px) !important;
    padding: 50px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.start-customizing-slider-step-title {
    background-image: url("./frontend/assets/product/customizing-contianer-step-background.png");
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
    position: absolute;
    top: -35px;
    left: -40px;
    width: 200px;
    z-index: 5;
}
.start-customizing-slider-step-title h2 {
    margin-bottom: 0;
    margin: 0px;
    padding: 10px 0 25px 0;
    text-align: center;
    color: #ffffff;
    font-size: 35px;
    font-family: AvenirLTStdBlack;
    font-style: normal;
    font-weight: 750;
    line-height: normal;
}

.customizing-steps-input-row {
    display: flex;
    flex-direction: row;
    column-gap: 25px;
    align-items: center;
    margin-top: 25px;
}
.customizing-steps-input-row span:first-child {
    color: #ea2a80;
    text-align: center;
    font-family: AvenirLTStdBlack;
    font-size: 20px;
    font-weight: 750;
    min-width: 100px;
    text-align: left;
}
.language-value-container {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    width: -webkit-fill-available;
    justify-content: space-evenly;
    align-items: center;
}
.language-value-container input {
    border: 1px solid #3b3737;
    border-radius: 4px;
    padding: 0.5em;
    appearance: auto;
    -webkit-appearance: none;
    cursor: pointer;
}
.language-value-container input[type="radio"]:checked {
    background-color: #ea2a80;
}
.language-value-container label {
    font-family: AvenirLTStdBody;
    font-size: 20px;
    font-weight: 350;
    padding: 5px;
    text-align: center;
}
.single-text-field-input {
    border-radius: 20px;
    background: rgba(209, 209, 209, 0.38);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border: none;
    padding: 15px;
    width: 100%;
}
.gender-value-container {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    width: -webkit-fill-available;
    justify-content: space-evenly;
    align-items: center;
}
.gender-value-container input {
    border: 1px solid #3b3737;
    border-radius: 4px;
    padding: 0.5em;
    appearance: auto;
    -webkit-appearance: none;
    cursor: pointer;
}
.gender-value-container input[type="radio"]:checked {
    background-color: #ea2a80;
}
.gender-value-container label {
    font-family: AvenirLTStdBody;
    font-size: 20px;
    font-weight: 350;
    padding: 5px;
    text-align: center;
}
.customizing-steps-characters-container {
    display: flex;
    flex-direction: row;
    column-gap: 25px;
}
.step-button {
    width: fit-content;
    border-radius: 15px;
    background: #f4931e;
    border: unset;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: #fff;
    font-size: 25px;
    font-family: AvenirLTStdBlack;
    font-weight: 750;
    padding: 10px 15px;
    margin-top: 30px;
    cursor: pointer;
    position: relative;
    top: 0;
    transition: top ease 0.5s;
}

.step-button:hover {
    top: -8px;
}
.step-button.next {
    margin-left: auto;
}
.step-button.back {
    margin-right: auto;
}
.cover-color-contianer {
    display: flex;
    flex-direction: row;
    column-gap: 25px;
    flex-wrap: wrap;
    margin-top: 25px;
}
.color-item {
    width: 86px;
    height: 119px;
    height: 159px;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.color-item .tick-icon {
    display: none;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -10px;
    right: -10px;
    z-index: 2;
}
.color-item.checked .tick-icon {
    display: unset;
}
.customizing-steps-input-row.buttons-container {
    margin-top: auto;
}
.color-item:hover {
    transform: scale(1.1);
}
.item-color {
    width: 86px;
    height: 119px;
    background-color: #ededed;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    margin-bottom: 12px;
}
.color-item span {
    font-family: AvenirLTStdBody;
    font-size: 20px;
    font-weight: 350;
}
.dedication-value-container {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    width: -webkit-fill-available;
    justify-content: space-evenly;
    align-items: center;
}
.dedication-value-container input {
    border: 1px solid #3b3737;
    border-radius: 4px;
    padding: 0.5em;
    appearance: auto;
    -webkit-appearance: none;
    cursor: pointer;
    margin-top: auto;
    margin-bottom: auto;
}
.dedication-value-container input[type="checkbox"]:checked {
    background-color: #ea2a80;
}
.dedication-value-container label {
    font-family: AvenirLTStdBody;
    font-size: 20px;
    font-weight: 350;
    text-align: center;
}
.dedication-text-area {
    border-radius: 20px;
    background: rgba(209, 209, 209, 0.38);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border: none;
    padding: 15px;
    width: 100%;
    resize: none;
}
#the-count {
    margin-top: -20px;
    margin-left: auto;
    padding: 0.1rem 0 0 0;
    font-size: 0.875rem;
}
#maximum {
    color: #ea2a80;
    text-align: center;
    font-family: AvenirLTStdBlack;
    font-size: 20px;
    font-weight: 750;
    min-width: 100px;
    text-align: left;
}
#choose-image-file-button {
    color: #000;
    font-family: AvenirLTStdBody;
    font-size: 16px;
    font-weight: 350;
    min-width: fit-content;
    padding: 10px 15px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
#choose-image-file-button:hover {
    transform: scale(1.1);
}
.customizing-steps-input-row.verifing-row {
    align-items: unset;
    column-gap: 5px;
}
.customizing-steps-input-row.verifing-row p {
    margin: 0;
    padding: 0;
    color: #000;
    font-family: AvenirLTStdBody;
    font-size: 20px;
    font-weight: 350;
    line-height: 20px;
}
.verifing-info-value-container input {
    border: 1px solid #3b3737;
    border-radius: 4px;
    padding: 0.5em;
    appearance: auto;
    -webkit-appearance: none;
    cursor: pointer;
    margin-top: auto;
    margin-bottom: auto;
}
.verifing-info-value-container input[type="checkbox"]:checked {
    background-color: #ea2a80;
}
.fourth-card-cover-image-container {
    width: 230px;
    height: 150px;
    background-color: #ededed;
    border-radius: 20px;
}

.customizing-steps-input-row.cover-type-row input {
    border: 1px solid #3b3737;
    border-radius: 4px;
    padding: 0.5em;
    appearance: auto;
    -webkit-appearance: none;
    cursor: pointer;
}
.customizing-steps-input-row.cover-type-row input[type="radio"]:checked {
    background-color: #ea2a80;
}
.customizing-steps-input-row.cover-type-row label {
    font-family: AvenirLTStdBody;
    font-size: 20px;
    font-weight: 350;
    padding: 5px;
    text-align: center;
}
@media only screen and (max-width: 645px) {
    .start-customizing-item-image {
        max-width: unset;
        max-height: unset;
        width: 100%;
    }
}
@media only screen and (max-width: 700px) {
    .swiper-container.customizing-steps-container {
        width: 100%;
        padding-left: 20px;
        padding-right: 25px;
    }
}

/* start customizing container end */

/* rates and reviews container start */

.rates-and-reviews-container {
    background: #3ba5db;
    padding-bottom: 50px;
    padding-top: 80px;
}

.rates-and-reviews-container-title {
    background-image: url("./frontend/assets/product/product-cutsomize-title-background.png");
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
    max-width: 450px;
    margin-left: 20px;
    margin-right: 20px;
}
.rates-and-reviews-container-title h2 {
    margin: 0;
    padding: 20px 0 23px 0;
    text-align: center;
    color: #ea2a80;
    font-size: 35px;
    font-family: AvenirLTStdBlack;
    font-weight: 750;
}

.rates-and-reviews-items-container {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
    column-gap: 25px;
    margin-left: 20px;
    margin-top: 45px;
    max-width: 1280px;
}
.rates-and-reviews-items-container
.rates-and-reviews-item-container:nth-child(even) {
    margin-left: auto;
    background-image: url("./frontend/assets/product/second-item-rate-background-contianer.png");
}
.rates-and-reviews-item-container {
    display: flex;
    flex-direction: row;
    column-gap: 25px;
    background-image: url("./frontend/assets/product/first-item-rate-background-contianer.png");
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
    width: fit-content;
    padding: 20px;
    padding-bottom: 45px;
    max-width: 695px;
}
.rates-and-reviews-item-stars-image {
    width: 100%;
    max-width: 193px;
}
/* rates and reviews container end */
/* other stories container start  */

.product-page-other-stories-section .other-stories-title-outer-container {
    max-width: unset;
}
.product-page-other-stories-section .other-stories-items-container {
    max-width: unset;
    margin-left: 20px;
    margin-right: 20px;
    column-gap: 25px;
    row-gap: 25px;
}
/*.product-page-other-stories-section .other-stories-item-container {
    max-width: 300px;
}
*/
@media only screen and (max-width: 1320px) {
    .product-page-other-stories-section .other-stories-items-container {
        margin-left: 20px;
        margin-right: 20px;
    }
    .product-page-other-stories-section .other-stories-container-title {
        margin-left: 20px;
    }
}
@media only screen and (max-width: 430px) {
    .product-page-other-stories-section .other-stories-story-image {
        width: 100%;
    }
}
/* other stories container end  */
/* //////////////////////////////////////Product Page End///////////////////////////// */
/* //////////////////////////////////////About Us Page Start///////////////////////////// */
/* about us container start  */
.about-us-page .navbar-container {
    padding-bottom: 80px;
}
.about-us-container {
    background: #ea2a80;
    padding-bottom: 50px;
}
.about-us-items-container {
    display: flex;
    flex-direction: row;
}
.about-us-item-container {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    margin-right: 20px;
}
.about-us-first-container-title {
    background-image: url("./frontend/assets/category/our-story-white-background.png");
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
    max-width: 293px;
    margin-top: 30px;
    margin-bottom: 20px;
}
.about-us-first-container-title h2 {
    margin-bottom: 0;
    margin: 0px;
    padding: 20px 0 23px 0;
    text-align: center;
    color: #ea2a80;
    font-size: 35px;
    font-family: AvenirLTStdBlack;
    font-style: normal;
    font-weight: 750;
    line-height: normal;
}
.about-us-first-container-descreption {
    color: #fff;
    font-family: AvenirLTStdBody;
    font-size: 20px;
    max-width: 475px;
    font-weight: 400;
    margin-left: 10px;
}

.about-us-main-banner-image {
    max-width: 800px;
    margin-right: 20px;
}
@media only screen and (max-width: 1300px) {
    .about-us-items-container {
        flex-direction: column;
    }
    .about-us-main-banner-image {
        margin-left: 20px;
        margin-top: 20px;
    }
}
@media only screen and (max-width: 840px) {
    .about-us-main-banner-image {
        max-width: unset;
        width: calc(100% - 40px);
    }
}
/* about us container end  */
/* about us our story container start  */

.about-us-our-story-container {
    background: #a2c73b;
    padding-bottom: 50px;
    padding-top: 50px;
}

.about-us-our-story-container-title {
    background-image: url("./frontend/assets/category/our-story-white-background.png");
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
    max-width: 293px;
    margin-top: 30px;
    margin-bottom: 20px;
    margin-left: 20px;
}
.about-us-our-story-container-title h2 {
    margin-bottom: 0;
    margin: 0px;
    padding: 20px 0 23px 0;
    text-align: center;
    color: #ea2a80;
    font-size: 35px;
    font-family: AvenirLTStdBlack;
    font-style: normal;
    font-weight: 750;
    line-height: normal;
}
.about-us-our-story-items-container {
    display: flex;
    flex-direction: column;
}
.about-us-our-story-item-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
.about-us-our-story-main-banner-image {
    max-width: 650px;
    margin-right: 20px;
    margin-left: 20px;
}
.about-us-our-story-inner-container-descreption {
    color: #fff;
    font-family: AvenirLTStdBody;
    font-size: 20px;
    max-width: 500px;
    font-weight: 400;
    margin-left: 10px;
}
.about-us-our-story-container-descreption {
    color: #fff;
    font-family: AvenirLTStdBody;
    font-size: 20px;
    font-weight: 400;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 15px;
    margin-bottom: 5px;
}
@media only screen and (max-width: 1240px) {
    .about-us-our-story-main-banner-image {
        max-width: unset;
        margin-top: 30px;
        width: calc(100% - 40px);
    }
    .about-us-our-story-item-container {
        flex-direction: column;
    }
    .about-us-our-story-inner-container-descreption {
        max-width: unset;
        margin-left: 20px;
        margin-right: 20px;
        margin-top: 30px;
    }
    /* .about-us-main-banner-image {
      max-width: unset;
      width: calc(100% - 40px);
    } */
}
/* about us our story container end  */
.about-us-page .we-spread-title-outer-container {
    max-width: none;
}
.about-us-page .we-spread-container-title {
    margin-left: 20px;
    margin-right: 20px;
}

/* //////////////////////////////////////About Us Page End///////////////////////////// */
/*///////////////////////////////////////Privacy policy page////////////////////////// */
.privacy-content {
    color: #fff;
    font-family: AvenirLTStdBody;
    font-size: 16px;
    font-weight: 300;
    margin-left: 10px;
}
.privacy-content h3{
    color: #fff;
    font-family: AvenirLTStdBody;
    font-size: 22px;
    font-weight: 400;

}
@media only screen and (max-width: 500px) {
    section > .testimonials-quotations-image-top {
        position: absolute;
        top: 79px;
        left: 55px;
        width: 15vw;
    }
    section > .testimonials-quotations-image-bottom {
        position: absolute;
        top: unset;
        bottom: -82px;
        left: unset;
        right: 67px;
    }
}
@media only screen and (min-width: 900px) {
    section > .testimonials-quotations-image-top {
        position: absolute;
        top: 95px;
        left: 145px;
        width: 133px;
    }
    section > .testimonials-quotations-image-bottom {
        width: 133px;
        position: absolute;
        top: unset;
        bottom: -101px;
        left: unset;
        right: 145px;
        transform: scale(-1,-1)!important;
    }
}
@media only screen and (max-width: 425px) {
    .price-tag-container {
        top:-24px;
        left: 0
    }

    .best-seller-item {
        margin-left: 10px;
        margin-right: 10px
    }

    .best-seller-item img {
        width: 95%
    }
}

@media only screen and (max-width: 425px) {
img.visa {
    max-height: 37px;
    margin-top: 17px; 
    
}
}
/*
Custom By Sayed
 */
/*!
 for  nav bar menu by hamza
*/


.hamburger div,.navbar-content-container,.navbar-mobile-container .search-container form{position:relative}#toggle,.navbar-mobile-container{display:none}.hamburger{height:54px;margin-left:auto;margin-right:25px}.hamburger div{width:3em;height:7px;border-radius:3px;background-color:#fff;margin-top:8px;transition:.3s ease-in-out}#toggle:checked~.navbar-content-container .hamburger .bar1{transform:rotate(-45deg);margin-top:25px}#toggle:checked~.navbar-content-container .hamburger .bar3{opacity:0;transform:rotate(45deg)}#toggle:checked~.navbar-content-container .hamburger .bar2{transform:rotate(45deg);margin-top:-7px}#toggle:checked~.navbar-content-container .hamburger+.nav{top:0;transform:scale(1)}@media only screen and (min-width:1187px){.hamburger{display:none}.navbar-mobile-container{display:none!important}}@media only screen and (max-width:1186px){.desktop-search-container,.navbar-content-container .desktop-icons-container{display:none}.desktop-navbar-items{margin-left:auto;margin-right:auto}}@media only screen and (max-width:950px){.desktop-navbar-items,.desktop-search-container,.navbar-content-container .desktop-icons-container{display:none}}.mobile-nav-bar-items .nav-bar-pages-links-container{display:flex;flex-direction:row;flex-wrap:wrap;align-items:center;margin-bottom:20px;justify-content:center}@media only screen and (min-width:951px){.mobile-nav-bar-items{display:none}}#toggle:checked~.navbar-mobile-container{display:flex;flex-direction:column;margin-left:25px;margin-right:25px}.navbar-mobile-container .search-container input{height:38px;width:100%;width:calc(100% - 25px);border:none;border-radius:12px;padding:3px 15px}.navbar-mobile-container .search-container button{width:20px;height:20px;position:absolute;top:12px;right:10px;padding:0;border:none;background-color:unset;cursor:pointer}.navbar-mobile-container .icons-container{display:flex;margin-top:20px}.navbar-mobile-container .icons-container a{margin:0 5px;cursor:pointer;position:relative;top:0;transition:top .2s}.navbar-mobile-container .icons-container a:hover{top:-5px}.navbar-mobile-container .icons-container a img{max-height:22px;max-width:22px;filter:brightness(0) invert(1)}@media only screen and (max-width:500px){.hamburger{height:42px}.hamburger div{width:31px;height:5px;margin-top:7px}#toggle:checked~.navbar-content-container .hamburger .bar2{margin-top:-5px}}
img.visa {
    max-height: 37px;
    margin-top: 17px;
    width: 80%;
    border-radius: 3px;
}
.customize-story-container ,.start-customizing-container, .rates-and-reviews-container, .other-stories-container {
  
    padding-left: 5%;
	padding-right: 5%;
}
@media only screen and (min-width: 960px) {
.product-page-other-stories-section .other-stories-item-container {

    width: 21%;
}
}

/** css for product customization by mona **/
.eocustomgroup label {
    margin-bottom: 5px;
    color: #ea2a80;
    font-family: AvenirLTStdBlack;
    font-size: 20px;
    font-weight: 750;
    min-width: 130px;
    text-align: left;
}
.eoinput {
    width: 100%;
    border-radius: 20px;
    background: rgba(209, 209, 209, 0.38);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border: none;
    padding: 15px;
    width: 100%;
}
.custom_options label {
	width: 130px; }

/*************************************************** */

.swiper-container.gallery-top .swiper-slide,
.swiper-container.gallery-thumbs .swiper-slide{
    background-size: cover;
}


.swiper-container.gallery-thumbs {
    margin-top: 20px;
}

.sim_radio_button label input {
    display: none !important;
}

.sim_radio_button label span {
    display: flex;
    align-items: center;
    column-gap: 10px;
    cursor: pointer;
}

.sim_radio_button label span::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 5px;
    box-shadow: 0 0 0 1px #000;
    transition: .3s;
}

.sim_radio_button label input:checked + span::before {
    background: #ea2a80;
    box-shadow: 0 0 0 1px #ea2a80;
}

.rd-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
	width: 100%;
	margin-top:10px;
}

.rd-wrapper .radio {
    width: auto;
}

.rd-wrapper .radio label {
    width: auto;
    min-width: auto;
    margin: 0;
    float: none;
}

.rd-wrapper .radio label input {
    display: none;
}

.rd-wrapper .radio label:first-child {
    display: none;
}

.rd-wrapper .radio label span {
    cursor: pointer;
    border: 2px solid #dfdfdf;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 20px;
    background: #EDEDED;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.rd-wrapper .radio label span img {
    border: 0;
    padding: 0;
    cursor: inherit;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.rd-wrapper .radio .rowTitle {
    float: none;
    font-family: 'AvenirLTStdBody';
    font-size: 12px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: none;
}

.rd-wrapper .radio label input:checked + span {
    border-color: #ea2a80;
}

.step-button {
    min-width: 120px;
    font-size: 20px;
}

img.rates-and-reviews-item-profile-image {
    min-width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 100%;
}

.other-stories-item-container a {
    text-decoration: none;
}

.other-stories-item-container h4 {
    margin-bottom: 0;
}

img.rates-and-reviews-item-profile-image {
    min-width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 100%;
}

.other-stories-item-container a {
    text-decoration: none;
}

.other-stories-item-container h4 {
    margin-bottom: 0;
}

.start-steps {
    padding: 50px 0;
    display: flex;
    align-items: center;
    gap: 30px;
}

.start-steps .step-block {
    width: calc(33.33% - 30px);
    text-align: center;
    position: relative;
}

.start-steps .step-block .icon {
    border-radius: 20px;
    background: #FBFCFD;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    padding: 10px;
}

.start-steps .step-block h4 {
    color: #fff;
    font-size: 18px;
    margin: 0;
    font-family: 'AvenirLTStdBlack';
}

.start-steps .step-block::after {
    content: '';
    position: absolute;
    left: 70%;
    top: 30px;
    width: 280px;
    height: 30px;
    background-image: url(https://aacreads.com/wp-content/uploads/2023/08/Arc-2.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.start-steps .step-block .icon img {
    width: 50%;
    height: 100%;
    object-fit: contain;
}

.start-steps .step-block:last-child::after {
    display: none;
}

#field1005_wrapper,
#field1053_wrapper{
    flex-wrap: wrap;
}

#field1005_wrapper .rowTitle,
#field1053_wrapper .rowTitle{
	display:none
}

.checkbox.st2 {
    padding: 0;
}

.custom_options .checkbox.st2 label {
    margin: 0 !important;
    min-width: auto;
    float: none;
}

.custom_options .checkbox.st2 label input {
    display: none;
}



.custom_options .checkbox.st2 label .rowTitle {
    display: flex;
    column-gap: 10px;
    cursor: pointer;
    text-align: inherit;
    line-height: 1.3;
    font-weight: 500;
    font-size: 15px;
    color: #000;
}

.custom_options .checkbox.st2 label .rowTitle::before {
        content: '';
        width: 20px;
        height: 20px;
        border: 2px solid #fff;
        border-radius: 5px;
        box-shadow: 0 0 0 1px #000;
        transition: .3s;
        min-width: 20px;
}

.custom_options .checkbox.st2 label input:checked + .rowTitle::before {
    background: #ea2a80;
    box-shadow: 0 0 0 1px #ea2a80;
}

.custom_options .checkbox.st2 label .rowTitle * {
    padding: 0;
    font-size: inherit;
    min-width: auto;
    color: inherit;
    vertical-align: baseline;
}

#field1050_wrapper > label {
    display: none;
}

#field1049_wrapper label {
    width: auto;
    min-width: auto;
    white-space: nowrap;
    font-size: 16px;
}

#field1049_wrapper label * {
    font-size: inherit;
}

#field1049_wrapper label br {
    display: none;
}

#field1049_wrapper input[type="file"] {
    height: 25px;
    border-radius: 15px;
    background: rgba(209, 209, 209, 0.38);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 10px;
    line-height: 27px;
    font-size: 0;
    min-width: 110px;
    cursor: pointer;
	overflow:hidden;
}

#field1049_wrapper input[type="file"]::before {
    content: 'choose image';
    display: flex;
    align-items: center;
    font-size: 16px;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
}

#field1048_wrapper {
    margin-top: 10px;
}

#field1048_wrapper label {
    display: none;
}

#field1048_wrapper .eoinput {
    height: 100px;
    resize: none;
    width: 100%;
}

#field1050_wrapper + .customizing-steps-input-row.buttons-container button:first-child {
    margin-inline: 0;
}

#field1051_wrapper ,#field1104_wrapper,#field1115_wrapper,#field1250_wrapper,#field1077_wrapper,#field1251_wrapper,#field1252_wrapper,#field1253_wrapper,#field1254_wrapper,#field1255_wrapper,#field1256_wrapper,#field1257_wrapper,#field1260_wrapper,#field1261_wrapper,#field1240_wrapper,#field1265_wrapper,#field1266_wrapper,#field1267_wrapper,#field1268_wrapper,#field1269_wrapper,#field1241_wrapper,#field1166_wrapper,#field1246_wrapper,#field1262_wrapper,#field1263_wrapper,#field1244_wrapper,#field1264_wrapper,#field1242_wrapper,#field1272_wrapper,#field1245_wrapper,#field1248_wrapper,#field1243_wrapper,#field1314_wrapper,#field1297_wrapper {
    flex-flow: column;
    align-items: flex-start;
}

#field1051_wrapper > label, #field1104_wrapper > label, #field1115_wrapper > label, #field1250_wrapper > label, #field1116_wrapper > label, #field1105_wrapper > label, #field1077_wrapper > label, #field1251_wrapper > label, #field1252_wrapper > label, #field1253_wrapper > label, #field1254_wrapper > label, #field1255_wrapper > label, #field1078_wrapper > label, #field1256_wrapper > label, #field1167_wrapper > label, #field1256_wrapper > label, #field1257_wrapper > label, #field1165_wrapper > label, #field1257_wrapper > label, #field1260_wrapper > label, #field1261_wrapper > label, #field1240_wrapper > label , #field1265_wrapper > label , #field1266_wrapper > label , #field1267_wrapper > label , #field1268_wrapper > label , #field1269_wrapper > label , #field1241_wrapper > label , #field1240_wrapper > label, #field1265_wrapper > label, #field1266_wrapper > label, #field1267_wrapper > label, #field1268_wrapper > label, #field1269_wrapper > label, #field1241_wrapper, #field1241_wrapper > label, #field1166_wrapper > label, #field1246_wrapper > label, #field1262_wrapper > label , #field1263_wrapper > label, #field1247_wrapper > label, #field1244_wrapper > label, #field1264_wrapper > label, #field1242_wrapper > label, #field1272_wrapper > label, #field1245_wrapper > label, #field1248_wrapper > label, #field1243_wrapper > label, #field1297_wrapper > label   {
    width: auto;
    margin: 0;
}

#field1051_wrapper .rd-wrapper .radio, #field1104_wrapper .rd-wrapper .radio, #field1115_wrapper .rd-wrapper .radio, #field1250_wrapper .rd-wrapper .radio, #field1115_wrapper .rd-wrapper .radio, #field1077_wrapper .rd-wrapper .radio, #field1251_wrapper .rd-wrapper .radio, #field1252_wrapper .rd-wrapper .radio, #field1253_wrapper .rd-wrapper .radio, #field1254_wrapper .rd-wrapper .radio, #field1255_wrapper .rd-wrapper .radio, #field1256_wrapper .rd-wrapper .radio, #field1257_wrapper .rd-wrapper .radio, #field1260_wrapper .rd-wrapper .radio, #field1261_wrapper .rd-wrapper .radio, #field1240_wrapper .rd-wrapper .radio, #field1265_wrapper .rd-wrapper .radio, #field1266_wrapper .rd-wrapper .radio, #field1267_wrapper .rd-wrapper .radio, #field1268_wrapper .rd-wrapper .radio, #field1269_wrapper .rd-wrapper .radio, #field1240_wrapper .rd-wrapper .radio, #field1265_wrapper .rd-wrapper .radio, #field1266_wrapper .rd-wrapper .radio, #field1267_wrapper .rd-wrapper .radio, #field1268_wrapper .rd-wrapper .radio, #field1269_wrapper .rd-wrapper .radio, #field1166_wrapper .rd-wrapper .radio, #field1246_wrapper .rd-wrapper .radio, #field1262_wrapper .rd-wrapper .radio, #field1263_wrapper .rd-wrapper .radio, #field1244_wrapper .rd-wrapper .radio, #field1264_wrapper .rd-wrapper .radio, #field1242_wrapper .rd-wrapper .radio, #field1272_wrapper .rd-wrapper .radio, #field1314_wrapper .rd-wrapper .radio, #field1297_wrapper .rd-wrapper .radio  {
    display: flex !important;
    flex-flow: column-reverse;
    row-gap: 12px;
    width: calc(25% - -10px);
}

#field1051_wrapper .rd-wrapper .radio span.rowTitle, #field1104_wrapper .rd-wrapper .radio span.rowTitle, #field1115_wrapper .rd-wrapper .radio span.rowTitle, #field1250_wrapper .rd-wrapper .radio span.rowTitle, #field1077_wrapper .rd-wrapper .radio span.rowTitle, #field1251_wrapper .rd-wrapper .radio span.rowTitle, #field1252_wrapper .rd-wrapper .radio span.rowTitle, #field1253_wrapper .rd-wrapper .radio span.rowTitle, #field1254_wrapper .rd-wrapper .radio span.rowTitle, #field1255_wrapper .rd-wrapper .radio span.rowTitle, #field1256_wrapper .rd-wrapper .radio span.rowTitle, #field1257_wrapper .rd-wrapper .radio span.rowTitle, #field1260_wrapper .rd-wrapper .radio span.rowTitle, #field1261_wrapper .rd-wrapper .radio span.rowTitle, #field1240_wrapper .rd-wrapper .radio span.rowTitle, #field1265_wrapper .rd-wrapper .radio span.rowTitle, #field1266_wrapper .rd-wrapper .radio span.rowTitle, #field1267_wrapper .rd-wrapper .radio span.rowTitle, #field1268_wrapper .rd-wrapper .radio span.rowTitle, #field1269_wrapper .rd-wrapper .radio span.rowTitle, #field1241_wrapper .rd-wrapper .radio span.rowTitle, #field1240_wrapper .rd-wrapper .radio span.rowTitle, #field1265_wrapper .rd-wrapper .radio span.rowTitle, #field1266_wrapper .rd-wrapper .radio span.rowTitle, #field1267_wrapper .rd-wrapper .radio span.rowTitle, #field1268_wrapper .rd-wrapper .radio span.rowTitle, #field1269_wrapper .rd-wrapper .radio span.rowTitle, #field1241_wrapper .rd-wrapper .radio span.rowTitle, #field1166_wrapper .rd-wrapper .radio span.rowTitle, #field1246_wrapper .rd-wrapper .radio span.rowTitle, #field1262_wrapper .rd-wrapper .radio span.rowTitle, #field1263_wrapper .rd-wrapper .radio span.rowTitle, #field1244_wrapper .rd-wrapper .radio span.rowTitle, #field1264_wrapper .rd-wrapper .radio span.rowTitle, #field1242_wrapper .rd-wrapper .radio span.rowTitle, #field1272_wrapper .rd-wrapper .radio span.rowTitle, #field1245_wrapper .rd-wrapper .radio span.rowTitle, #field1248_wrapper .rd-wrapper .radio span.rowTitle, #field1243_wrapper .rd-wrapper .radio span.rowTitle, #field1314_wrapper .rd-wrapper .radio span.rowTitle, #field1297_wrapper .rd-wrapper .radio span.rowTitle {
    margin: 0;
    font-size: 14px;
    font-weight: normal;
}
#field1241_wrapper .rd-wrapper .radio span.rowTitle, #field1247_wrapper .rd-wrapper .radio span.rowTitle, #field1245_wrapper .rd-wrapper .radio span.rowTitle , #field1248_wrapper .rd-wrapper .radio span.rowTitle, #field1243_wrapper .rd-wrapper .radio span.rowTitle   {
	text-align: right;
}

#field1051_wrapper .rd-wrapper .radio span.rowTitle * , #field1104_wrapper .rd-wrapper .radio span.rowTitle *, #field1115_wrapper .rd-wrapper .radio span.rowTitle *, #field1250_wrapper .rd-wrapper .radio span.rowTitle * , #field1077_wrapper .rd-wrapper .radio span.rowTitle * , #field1251_wrapper .rd-wrapper .radio span.rowTitle * , #field1252_wrapper .rd-wrapper .radio span.rowTitle * , #field1253_wrapper .rd-wrapper .radio span.rowTitle * , #field1254_wrapper .rd-wrapper .radio span.rowTitle * , #field1255_wrapper .rd-wrapper .radio span.rowTitle *, #field1256_wrapper .rd-wrapper .radio span.rowTitle *, #field1257_wrapper .rd-wrapper .radio span.rowTitle *, #field1260_wrapper .rd-wrapper .radio span.rowTitle *, #field1261_wrapper .rd-wrapper .radio span.rowTitle *, #field1240_wrapper .rd-wrapper .radio span.rowTitle * , #field1265_wrapper .rd-wrapper .radio span.rowTitle * , #field1266_wrapper .rd-wrapper .radio span.rowTitle * , #field1267_wrapper .rd-wrapper .radio span.rowTitle * , #field1268_wrapper .rd-wrapper .radio span.rowTitle * , #field1269_wrapper .rd-wrapper .radio span.rowTitle * , #field1241_wrapper .rd-wrapper .radio span.rowTitle * , #field1240_wrapper .rd-wrapper .radio span.rowTitle *, #field1265_wrapper .rd-wrapper .radio span.rowTitle *, #field1266_wrapper .rd-wrapper .radio span.rowTitle *, #field1267_wrapper .rd-wrapper .radio span.rowTitle *, #field1268_wrapper .rd-wrapper .radio span.rowTitle *, #field1269_wrapper .rd-wrapper .radio span.rowTitle *, #field1241_wrapper .rd-wrapper .radio span.rowTitle *, #field1166_wrapper .rd-wrapper .radio span.rowTitle *, #field1246_wrapper .rd-wrapper .radio span.rowTitle *, #field1262_wrapper .rd-wrapper .radio span.rowTitle *, #field1263_wrapper .rd-wrapper .radio span.rowTitle *, #field1244_wrapper .rd-wrapper .radio span.rowTitle * , #field1264_wrapper .rd-wrapper .radio span.rowTitle * , #field1242_wrapper .rd-wrapper .radio span.rowTitle * , #field1272_wrapper .rd-wrapper .radio span.rowTitle * , #field1245_wrapper .rd-wrapper .radio span.rowTitle * , #field1248_wrapper .rd-wrapper .radio span.rowTitle * , #field1243_wrapper .rd-wrapper .radio span.rowTitle * , #field1314_wrapper .rd-wrapper .radio span.rowTitle * , #field1297_wrapper .rd-wrapper .radio span.rowTitle *    {
    padding: 0;
    font-size: inherit;
    vertical-align: baseline;
    margin: 0;
    font-weight: normal;
    color: inherit;
    font-family: inherit;
    width: auto;
    min-width: auto;
}

#field1051_wrapper .rd-wrapper .radio span.rowTitle br, #field1104_wrapper .rd-wrapper .radio span.rowTitle br, #field1115_wrapper .rd-wrapper .radio span.rowTitle br, #field1250_wrapper .rd-wrapper .radio span.rowTitle br, #field1077_wrapper .rd-wrapper .radio span.rowTitle br, #field1251_wrapper .rd-wrapper .radio span.rowTitle br, #field1252_wrapper .rd-wrapper .radio span.rowTitle br, #field1253_wrapper .rd-wrapper .radio span.rowTitle br, #field1254_wrapper .rd-wrapper .radio span.rowTitle br, #field1255_wrapper .rd-wrapper .radio span.rowTitle br, #field1256_wrapper .rd-wrapper .radio span.rowTitle br, #field1257_wrapper .rd-wrapper .radio span.rowTitle br, #field1260_wrapper .rd-wrapper .radio span.rowTitle br, #field1261_wrapper .rd-wrapper .radio span.rowTitle br, #field1240_wrapper .rd-wrapper .radio span.rowTitle br, #field1265_wrapper .rd-wrapper .radio span.rowTitle br, #field1266_wrapper .rd-wrapper .radio span.rowTitle br, #field1267_wrapper .rd-wrapper .radio span.rowTitle br, #field1268_wrapper .rd-wrapper .radio span.rowTitle br, #field1269_wrapper .rd-wrapper .radio span.rowTitle br, #field1241_wrapper .rd-wrapper .radio span.rowTitle br, #field1240_wrapper .rd-wrapper .radio span.rowTitle br, #field1265_wrapper .rd-wrapper .radio span.rowTitle br, #field1266_wrapper .rd-wrapper .radio span.rowTitle br, #field1267_wrapper .rd-wrapper .radio span.rowTitle br, #field1268_wrapper .rd-wrapper .radio span.rowTitle br, #field1269_wrapper .rd-wrapper .radio span.rowTitle br, #field1241_wrapper .rd-wrapper .radio span.rowTitle br, #field1166_wrapper .rd-wrapper .radio span.rowTitle br, #field1246_wrapper .rd-wrapper .radio span.rowTitle br, #field1262_wrapper .rd-wrapper .radio span.rowTitle br, #field1263_wrapper .rd-wrapper .radio span.rowTitle br, #field1244_wrapper .rd-wrapper .radio span.rowTitle br, #field1264_wrapper .rd-wrapper .radio span.rowTitle br, #field1242_wrapper .rd-wrapper .radio span.rowTitle br, #field1272_wrapper .rd-wrapper .radio span.rowTitle br, #field1245_wrapper .rd-wrapper .radio span.rowTitle br, #field1248_wrapper .rd-wrapper .radio span.rowTitle br, #field1243_wrapper .rd-wrapper .radio span.rowTitle br, #field1314_wrapper .rd-wrapper .radio span.rowTitle br, #field1297_wrapper .rd-wrapper .radio span.rowTitle br  {
    display: none;
}




@media(min-width:531px){
#field1052_wrapper .rd-wrapper .radio .rowTitle, #field1105_wrapper .rd-wrapper .radio .rowTitle, #field1116_wrapper .rd-wrapper .radio .rowTitle, #field1078_wrapper .rd-wrapper .radio .rowTitle, #field1167_wrapper .rd-wrapper .radio .rowTitle, #field1165_wrapper .rd-wrapper .radio .rowTitle, #field1241_wrapper .rd-wrapper .radio .rowTitle, #field1245_wrapper .rd-wrapper .radio .rowTitle, #field1248_wrapper .rd-wrapper .radio .rowTitle, #field1243_wrapper .rd-wrapper .radio .rowTitle {
    font-size: 15px;
    margin: 0;
	white-space: inherit;
    text-align: left;
     /*white-space: nowrap; */
}
	#field1247_wrapper .rd-wrapper .radio .rowTitle {
		 font-size: 15px;
    margin: 0;
	white-space: inherit;
    text-align: right;
	}
	#field1052_wrapper .rd-wrapper .radio label span img , #field1105_wrapper .rd-wrapper .radio label span img, #field1116_wrapper .rd-wrapper .radio label span img, #field1078_wrapper .rd-wrapper .radio label span img, #field1167_wrapper .rd-wrapper .radio label span img, #field1165_wrapper .rd-wrapper .radio label span img, #field1241_wrapper .rd-wrapper .radio label span img, #field1247_wrapper .rd-wrapper .radio label span img, #field1245_wrapper .rd-wrapper .radio label span img, #field1248_wrapper .rd-wrapper .radio label span img, #field1243_wrapper .rd-wrapper .radio label span img    {
    width: 200px;
    min-width: 200px;
    height: 130px;
    border-radius: 20px;
    background: #EDEDED;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border: 2px solid transparent;
    transition: .3s;
}
	#field1052_wrapper .rd-wrapper .radio label span , #field1105_wrapper .rd-wrapper .radio label span, #field1116_wrapper .rd-wrapper .radio label span, #field1078_wrapper .rd-wrapper .radio label span, #field1167_wrapper .rd-wrapper .radio label span, #field1165_wrapper .rd-wrapper .radio label span, #field1241_wrapper .rd-wrapper .radio label span, #field1247_wrapper .rd-wrapper .radio label span, #field1245_wrapper .rd-wrapper .radio label span, #field1248_wrapper .rd-wrapper .radio label span, #field1243_wrapper .rd-wrapper .radio label span {
    width: auto;
    height: auto;
    box-shadow: none;
    background: transparent;
    border: 0;
    padding: 0;
    gap: 15px;
}
	#field1052_wrapper .rd-wrapper .radio, #field1105_wrapper .rd-wrapper .radio, #field1116_wrapper .rd-wrapper .radio, #field1078_wrapper .rd-wrapper .radio, #field1167_wrapper .rd-wrapper .radio, #field1165_wrapper .rd-wrapper .radio, #field1241_wrapper .rd-wrapper .radio, #field1247_wrapper .rd-wrapper .radio, #field1245_wrapper .rd-wrapper .radio, #field1248_wrapper .rd-wrapper .radio , #field1243_wrapper .rd-wrapper .radio {
    width: 100%;
    display: flex  !important;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 15px;
    align-items: center;
}
#field1052_wrapper, #field1105_wrapper, #field1116_wrapper, #field1078_wrapper, #field1167_wrapper, #field1165_wrapper, #field1241_wrapper, #field1247_wrapper, #field1245_wrapper, #field1248_wrapper, #field1243_wrapper   {
    flex-flow: column;
    align-items: flex-start;
}
	#field1052_wrapper .rd-wrapper .radio .rowTitle * , #field1105_wrapper .rd-wrapper .radio .rowTitle *, #field1116_wrapper .rd-wrapper .radio .rowTitle *, #field1078_wrapper .rd-wrapper .radio .rowTitle *, #field1167_wrapper .rd-wrapper .radio .rowTitle *, #field1165_wrapper .rd-wrapper .radio .rowTitle *, #field1241_wrapper .rd-wrapper .radio .rowTitle *, #field1247_wrapper .rd-wrapper .radio .rowTitle *, #field1245_wrapper .rd-wrapper .radio .rowTitle *, #field1248_wrapper .rd-wrapper .radio .rowTitle * , #field1243_wrapper .rd-wrapper .radio .rowTitle *  {
    font-size: inherit;
    color: inherit;
    padding: 0;
    vertical-align: baseline;
    font-family: inherit;
    font-weight: normal;
    min-width: auto;
}
	#field1052_wrapper .rd-wrapper .radio .rowTitle br , #field1105_wrapper .rd-wrapper .radio .rowTitle br , #field1116_wrapper .rd-wrapper .radio .rowTitle br, #field1078_wrapper .rd-wrapper .radio .rowTitle br, #field1167_wrapper .rd-wrapper .radio .rowTitle br, #field1165_wrapper .rd-wrapper .radio .rowTitle br, #field1241_wrapper .rd-wrapper .radio .rowTitle br, #field1247_wrapper .rd-wrapper .radio .rowTitle br, #field1245_wrapper .rd-wrapper .radio .rowTitle br, #field1248_wrapper .rd-wrapper .radio .rowTitle br , #field1243_wrapper .rd-wrapper .radio .rowTitle br  {
    display: none;
}
	#field1052_wrapper .rd-wrapper .radio label span::after , #field1105_wrapper .rd-wrapper .radio label span::after, #field1116_wrapper .rd-wrapper .radio label span::after, #field1078_wrapper .rd-wrapper .radio label span::after, #field1167_wrapper .rd-wrapper .radio label span::after, #field1165_wrapper .rd-wrapper .radio label span::after, #field1241_wrapper .rd-wrapper .radio label span::after, #field1247_wrapper .rd-wrapper .radio label span::after, #field1245_wrapper .rd-wrapper .radio label span::after, #field1248_wrapper .rd-wrapper .radio label span::after, #field1243_wrapper .rd-wrapper .radio label span::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 5px;
    box-shadow: 0 0 0 1px #000;
    transition: .3s;
    min-width: 20px;
}
	
#field1052_wrapper .rd-wrapper .radio label input:checked + span::after , #field1105_wrapper .rd-wrapper .radio label input:checked + span::after, #field1116_wrapper .rd-wrapper .radio label input:checked + span::after, #field1078_wrapper .rd-wrapper .radio label input:checked + span::after, #field1167_wrapper .rd-wrapper .radio label input:checked + span::after, #field1165_wrapper .rd-wrapper .radio label input:checked + span::after, #field1241_wrapper .rd-wrapper .radio label input:checked + span::after, #field1247_wrapper .rd-wrapper .radio label input:checked + span::after, #field1245_wrapper .rd-wrapper .radio label input:checked + span::after, #field1248_wrapper .rd-wrapper .radio label input:checked + span::after , #field1243_wrapper .rd-wrapper .radio label input:checked + span::after    {
    background: #ea2a80;
    box-shadow: 0 0 0 1px #ea2a80;
}

#field1052_wrapper .rd-wrapper .radio label input:checked + span img, #field1105_wrapper .rd-wrapper .radio label input:checked + span img, #field1116_wrapper .rd-wrapper .radio label input:checked + span img, #field1078_wrapper .rd-wrapper .radio label input:checked + span img, #field1167_wrapper .rd-wrapper .radio label input:checked + span img, #field1165_wrapper .rd-wrapper .radio label input:checked + span img, #field1241_wrapper .rd-wrapper .radio label input:checked + span img, #field1247_wrapper .rd-wrapper .radio label input:checked + span img, #field1245_wrapper .rd-wrapper .radio label input:checked + span img, #field1248_wrapper .rd-wrapper .radio label input:checked + span img, #field1243_wrapper .rd-wrapper .radio label input:checked + span img  {
    border-color: #ea2a80;
}

#field1052_wrapper + .customizing-steps-input-row.buttons-container button:first-child , #field1105_wrapper + .customizing-steps-input-row.buttons-container button:first-child, #field1116_wrapper + .customizing-steps-input-row.buttons-container button:first-child, #field1078_wrapper + .customizing-steps-input-row.buttons-container button:first-child, #field1167_wrapper + .customizing-steps-input-row.buttons-container button:first-child, #field1165_wrapper + .customizing-steps-input-row.buttons-container button:first-child, #field1241_wrapper + .customizing-steps-input-row.buttons-container button:first-child, #field1247_wrapper + .customizing-steps-input-row.buttons-container button:first-child, #field1245_wrapper + .customizing-steps-input-row.buttons-container button:first-child, #field1248_wrapper + .customizing-steps-input-row.buttons-container button:first-child, #field1243_wrapper + .customizing-steps-input-row.buttons-container button:first-child {
    margin-inline: 0;
}
}

element.style {
}
.rd-wrapper .radio .rowTitle {

    text-align: left;
}










div#field1046_wrapper {
    flex-direction: column;
    align-items: flex-start;
}

div#field1046_wrapper label {
    width: auto;
    margin-bottom: 10px;
}

div#field1046_wrapper input {
    box-sizing: border-box;
}
	
.best-seller-item-book-cover {
    width: 323px;
    height: 297px;
}

@media(max-width:1200px){
    .start-steps .step-block::after {
    width: 150px;
    left: 78%;
}
}

@media(max-width:991px){
    .start-steps .step-block::after {
    width: 80px;
    left: 88%;
}
}

@media(max-width:625px){
    .start-steps {
    flex-wrap: wrap;
    justify-content: center;
}

.start-steps .step-block::after {
    display: none;
}

.start-steps .step-block {
    width: 100%;
}

body ,html{
    overflow-x: hidden;
}

}



.wpml-ls-item a {
    width: auto;
    background: no-repeat;
    height: fit-content;
    color: #ffff;
    padding: 0px;
    position: relative;
    right: 37px;
}

.wpml-ls-item {
    margin: 0px;
    padding: 0px;
    width: 83px;
    margin-top: 10px;
    left: 45px;
}
.customize-story-details-item-price-container p:last-child {
    text-align: center;
}

.faq-question-box{
	width:500px
}

.woocommerce-message {
    padding: 20px;
    text-align: center;
    color: #fff;
}

.woocommerce-message a {
    color: inherit;
    font-weight: 700;
}



.shopping-basket-container-title h2 {
    padding-inline: 30px;
}

.navbar-content-container{
	padding-inline:80px;
}

.footer-column-container.third-column {
    margin-top: 0;
}

.empty-cart div#empty_cart {background: transparent;padding: 0;text-align: center;margin-bottom: 50px;}

.empty-cart .shopping-basket-cart-total-container {
    background: #ea2a80;
}

.empty-cart .shopping-basket-cart-total-inner-container {
    flex-flow: column;
    align-items: center;
}

.empty-cart .shopping-basket-container {
    padding-bottom: 0;
}

.empty-cart a.checkout-button.button.alt.wc-forward.step-button.next {
    display: inline-block;
    margin-top: 0;
}

.empty-cart .shopping-basket-container-title {
    margin-inline: auto;
    margin-bottom: 20px;
}



.we-spread-item {
    min-height: 350px;
}

.best-seller-item--ripon-inner-circle-container p {
    padding-inline: 10px;
    font-size: 16px;
}
.rtl .best-seller-item--ripon-inner-circle-container p {
    font-size: 13px;
    line-height: 20px;
    padding: 0 16px;
}


.woocommerce-message {
    position: absolute;
    right: 20px;
    top: 0;
    background: transparent url(https://aacreads.com/wp-content/uploads/2023/09/Group-1000005957-1.png);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 13px 50px 18px 80px;
    color: #000;
    max-width: 230px;
    line-height: 1.4;
    font-family: 'AvenirLTStdBody';
	background-color:transparent !important;
}

.woocommerce-notices-wrapper,
.woocommerce-form-coupon-toggle{
    position: relative;
}

.woocommerce-message a {
    color: inherit;
}

.woocommerce-message::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 40%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    background-image: url(https://aacreads.com/wp-content/uploads/2023/09/Frame.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.cart-total-container {
    min-width: auto;
}

.shopping-basket-cart-total-container,.navbar-container.cart-page {
    background: linear-gradient(90deg, #ea2a80 65%, #a2c73b 65%);
}

.shopping-basket-container {width: 57%;background: transparent;padding: 50px;}

.shopping-basket-items-container {
    max-width: 100%;
    width: 100%;
}

.shopping-basket-item-container {
    max-width: 100%;
}


.shopping-basket-item-inner-container h5 a {
    font-size: inherit;
    text-decoration: none;
    color: inherit;
    font-weight: inherit;
}

.shopping-bask-item-tages-container span {
    min-width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 50px;
    height: 35px;
    font-weight: 700;
    font-size: 14px;
}

.shopping-bask-item-tages-container span p {
    margin: 0;
    font-weight: normal;
    line-height: normal;
    font-family: 'AvenirLTStdBlack';
    text-transform: none;
    font-size: inherit;
}
.woocommerce {
    position: relative;
}

.woocommerce-error {
    position: absolute;
    right: 40px;
    top: 0;
    background: transparent url(https://aacreads.com/wp-content/uploads/2023/09/Group-1000005957-1-1.png);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding:25px 50px 40px 80px;
    color: #000;
    min-width: 300px;
    line-height: 1.4;
    font-family: 'AvenirLTStdBody';
    background-color:transparent !important;
}

.woocommerce-error::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 25px;
    width: 25px;
    height: 25px;
    background-image: url(https://aacreads.com/wp-content/uploads/2023/09/Frame.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.woocommerce-error li {
    list-style: none;
    margin-bottom: 10px;
}

.nav-bar-pages-links-container li:hover,
.shopping-basket-action-icon:hover{
    top: 0;
}

.cart-total-container-title {
    max-width: none;
}

.best-seller-item-book-descreption strong {
    overflow: hidden;
    line-height: 1.5;
    max-height: 60px;
    min-height: 60px;
    display: block;
}

.best-seller-item-book-title h4 {
    overflow: hidden;
    max-height: 60px;
    min-height: 60px;
}

.best-inner {
        position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.best-inner a {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    background: transparent;
    z-index: 5;
    box-shadow: none;
}

.our-stories-container-title {
    max-width: 50%;
}

.swiper-left-arrow {
    transform: scaleX(-1);
}

.checkout--wrapper .address {
    width: 70%;
    background: #ea2a80;
    padding: 0 80px 0 18% !important;
}

.checkout--wrapper .details {
    flex: none;
    width: 30%;
}

.woocommerce-checkout header:before {
    width: 30% !important;
}

.woocommerce-info {
    position: absolute;
    right: 40px;
    top: -60px;
    background: transparent url(https://aacreads.com/wp-content/uploads/2023/09/Group-1000005957-3.png);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding:25px 50px 70px 80px;
    color: #000;
    min-width: 300px;
    line-height: 1.4;
    font-family: 'AvenirLTStdBody';
    background-color:transparent !important;
}

.woocommerce-info::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 25px;
    width: 25px;
    height: 25px;
    background-image: url(https://aacreads.com/wp-content/uploads/2023/09/Frame.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.customize-story-container-title {
    max-width: 100%;
}

.woocommerce-billing-fields h3,
.checkout--wrapper .details .head-title h2{
    background-image: url(https://aacreads.com/wp-content/themes/aacreads/frontend/assets/category/our-story-white-background.png);
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
    max-width: 50%;
    margin: 0px;
    padding: 20px 0 23px 0;
    text-align: center;
    color: #ea2a80;
    font-size: 35px;
    font-family: AvenirLTStdBlack;
    font-style: normal;
    font-weight: 750;
    line-height: normal;
}



.checkout--wrapper .address,.checkout--wrapper .details {
    padding-top: 50px !important;
}

.checkout--wrapper .details .head-title h2 {
    max-width: 100%;
}

.woocommerce-billing-fields h3,
.checkout--wrapper .details .head-title h2{
    background-image: url(https://aacreads.com/wp-content/themes/aacreads/frontend/assets/category/our-story-white-background.png);
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
    max-width: 50%;
    margin: 0px;
    padding: 20px 0 23px 0;
    text-align: center;
    color: #ea2a80;
    font-size: 35px;
    font-family: AvenirLTStdBlack;
    font-style: normal;
    font-weight: 750;
    line-height: normal;
}

.checkout--wrapper .address,.checkout--wrapper .details {
    padding-top: 50px !important;
}

.checkout--wrapper .details .head-title h2 {
    max-width: 100%;
}

.woocommerce-form-coupon-toggle {
    position: relative;
}

.woocommerce-billing-fields__field-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.14));
    margin-top: 50px;
	display: flex;
    flex-wrap: wrap;
	gap:20px;
}

.woocommerce-info a {
    color: #000;
    font-family: AvenirLTStdBlack;
}

.col2-set .form-row {
    margin: 0 !important;
    width: calc(50% - 10px) !important;
    display: flex;
    flex-flow: column;
    gap: 10px;
    float: none;
    position: relative;
}

.col2-set .form-row .input-text {
    border-radius: 4px;
    border: 1px solid #B2BCCA;
    background: #FFF;
    width: 100%;
    height: 45px;
    padding: 0 20px;
    box-sizing: border-box;
    font-size: 15px;
    font-weight: 500;
    color: #4F4F4F;
    transition: .3s;
    outline: none;
    font-family: AvenirLTStdBody;
}

.col2-set .form-row 
 .woocommerce-input-wrapper {
    overflow: hidden;
}

.col2-set .form-row .input-text:focus {
    border-color: #EA2A80;
}

.col2-set .form-row label {
    color: #828282;
    position: absolute;
    background: #fff;
    top: -7px;
    left: 10px;
    padding: 0 10px;
    font-size: 13px;
    z-index: 1;
    font-family: AvenirLTStdBody;
}

#billing_email_field {
    width: 100% !important;
}

.select2-container {
    height: 45px;
}

.select2-container--default .select2-selection--single {
    height: 45px;
    border-radius: 4px;
    border: 1px solid #B2BCCA;
    background: #FFF;
    margin: 0;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 45px;
    padding: 0 20px;
    font-family: AvenirLTStdBody;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 45px;
    width: 30px;
}

.select2-container--open .select2-dropdown {
    font-family: AvenirLTStdBody;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    height: 40px;
    padding: 0 20px;
    border-radius: 4px;
    border-color: #b2bcca;
	outline:none;
}

.select2-search--dropdown {
    padding: 11px;
}

.select2-results__option {
    padding: 10px 20px;
    font-size: 14px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: #a2c73b;
}

.ship-address {
    margin-top: 35px;
}

.ship-address .woocommerce-shipping-fields h3 {
    margin: 0;
    font-family: AvenirLTStdBlack;
}

.ship-address .woocommerce-shipping-fields,.woocommerce-additional-fields {
    width: 100%;
}

.woocommerce-additional-fields .form-row {
    width: 100% !important;
}

.woocommerce-additional-fields .form-row .input-text {
    height: 150px;
    padding: 20px;
    resize: none;
}

.woocommerce-shipping-fields {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.14));
    margin-bottom: 35px;
    box-sizing: border-box;
}

.ship-address .woocommerce-shipping-fields h3 input {
    width: 20px;
    height: 20px;
    accent-color: #ea2a80;
	margin:0;
}

.ship-address .woocommerce-shipping-fields h3 label {
        cursor: pointer;
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.ship-address .woocommerce-shipping-fields .shipping_address {
    margin-top: 25px;
}

.ship-address .woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#shipping_postcode_field {
    width: 100% !important;
}

.woocommerce-additional-fields {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.14));
    margin-bottom: 50px;
    box-sizing: border-box;
}

.woocommerce-checkout-review-order.section-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.14));
    margin-top: 50px;
}

.checkout--wrapper .details {
    padding: 0 80px;
    box-sizing: border-box;
}

.checkout--wrapper .details .head-title {
    padding: 0;
}

.woocommerce-checkout-review-order.section-wrapper h2 {
    font-family: 'AvenirLTStdBlack';
    font-size: 20px;
    margin: 0 0 15px;
}

.woocommerce-checkout-review-order.section-wrapper .items-count {font-family: 'AvenirLTStdBody';display: block;}

.products-list .cart_item {
    display: flex;
    column-gap: 20px;
    align-items: flex-start;
    border-bottom: 1px solid #E0E0E0;
    padding: 20px 0;
    position: relative;
}

.products-list .cart_item .p-img {
    border-radius: 10px;
    background: #EA2A80;
    width: 80px;
    height: 80px;
    min-width: 80px;
    overflow: hidden;
}

.products-list .cart_item .p-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-list .cart_item .p-info h3 {
    margin: 0 0 10px;
    font-size: 15px;
    font-family: 'AvenirLTStdBody';
    font-weight: normal;
    line-height: 1.7;
}

.products-list .cart_item .p-info p {
    margin: 0;
    text-align: right;
    font-family: 'AvenirLTStdBlack';
}

.cart-total {margin-top: 20px;}

.cart-total ul {
    list-style: none;
    margin: 0 0 0 auto;
    border-radius: 10px;
    background: #F4931E;
    padding: 15px;
    width: 50%;
}

.cart-total ul li {
    margin-bottom: 10px;
    font-family: 'AvenirLTStdBody';
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-total ul li * {
    font-weight: normal;
}

.cart-total ul li:last-child {
    margin: 0;
}

.products-list .cart_item .p-info {
    flex-grow: 1;
}

.woocommerce-checkout-payment.section-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.14));
    margin-top: 35px;
}

.woocommerce-checkout-payment.section-wrapper .inner-title h4 {
    font-family: 'AvenirLTStdBlack';
    font-size: 20px;
    margin: 0 0 15px;
}

.woocommerce-checkout-payment.section-wrapper ul {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 40px;
}

.woocommerce-checkout-payment.section-wrapper ul li {
    border-radius: 4px;
    border: 1px solid var(--dark-dark-1, #B2BCCA);
    background: #FFF;
    padding: 10px 20px;
    margin-bottom: 10px;
}

.woocommerce-checkout-payment.section-wrapper ul li input[type="radio"] {
    display: none;
}

.woocommerce-checkout-payment.section-wrapper ul li input[type="radio"]:checked + label::before {
    box-shadow: inset 0 0 0 5px #F4931E;
}

.woocommerce-checkout-payment.section-wrapper ul li label {
    display: flex;
    align-items: center;
    column-gap: 11px;
    cursor: pointer;
    font-family: 'AvenirLTStdBlack';
    font-size: 16px;
}

.woocommerce-checkout-payment.section-wrapper ul li label::before {
    content: '';
    transition: .3s;
    width: 17px;
    height: 17px;
    border-radius: 100%;
    min-width: 17px;
    max-width: 17px;
    max-height: 17px;
    box-shadow: inset 0 0 0 2px #B2BCCA;
}

.woocommerce-checkout-payment.section-wrapper ul li .payment_box.payment_method_paytabs_creditcard p {
    font-family: 'AvenirLTStdBody';
    font-size: 14px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.woocommerce-checkout-payment.section-wrapper ul li .payment_box.payment_method_cod p {
    padding: 0 30px;
    font-family: 'AvenirLTStdBody';
    font-size: 14px;
}

.woocommerce-checkout-payment.section-wrapper ul li .payment_box.payment_method_paytabs_creditcard ul {
    margin: 0;
}

.woocommerce-checkout-payment.section-wrapper ul li .payment_box.payment_method_paytabs_creditcard p label {
    font-family: 'AvenirLTStdBlack';
    font-size: 15px;
}

.woocommerce-checkout-payment.section-wrapper ul li .payment_box.payment_method_paytabs_creditcard p input[type="checkbox"] {
    accent-color: #ea2a80;
    width: 15px !important;
    height: 15px;
}

.woocommerce-checkout-payment.section-wrapper .form-row.place-order p {
    font-family: 'AvenirLTStdBody';
    font-size: 15px;
    color: #828282;
}

.woocommerce-checkout-payment.section-wrapper .form-row.place-order p a {
    color: #000;
    font-family: 'AvenirLTStdBlack';
}

.woocommerce-checkout-payment.section-wrapper .form-row.place-order #place_order {
    border-radius: 50px;
    background: #F4931E;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border: 0;
    height: 50px;
    color: #fff;
    font-family: 'AvenirLTStdBlack';
    min-width: 190px;
    font-size: 22px;
    margin-top: 20px;
	cursor:pointer;
}

.form-row.place-order {
    text-align: center;
}

.woocommerce-terms-and-conditions-wrapper {
    text-align: initial;
}

.woocommerce-checkout-payment.section-wrapper .form-row.place-order p::before {
    content: '';
    width: 21px;
    height: 19px;
    background-image: url(https://aacreads.com/wp-content/uploads/2023/09/Frame-1507.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
}

.woocommerce-checkout-payment.section-wrapper .form-row.place-order p {
    position: relative;
    padding-inline: 30px 0;
}

.form-row.woocommerce-validated input.input-text {
    border-color: #1dcf7c;
    box-shadow: 0 0 0 1px #1dcf7c;
}

.form-row.woocommerce-invalid input.input-text {
        border-color: #e33913;
        box-shadow: 0 0 0 1px #e33913;
}

.col2-set .form-row .woocommerce-input-wrapper {
    overflow: visible;
}

.checkout--wrapper .container {
    display: flex;
    align-items: flex-start;
    max-width: 1440px;
    margin: 0 auto;
}

.checkout--wrapper,
.woocommerce-checkout header{
    background: -webkit-linear-gradient(left, #ea2a80 61%, #A2C73B 30%);
}

.woocommerce-checkout header:before {
    display: none;
}


.checkout--wrapper .address,.checkout--wrapper .details {
    background: transparent;
}

.checkout--wrapper .address {
    padding: 0 80px !important;
    width: 65%;
}

.checkout--wrapper {
    padding: 70px 0;
}

.checkout--wrapper .details {
    padding: 0 50px !important;
    width: 35%;
}

.navbar-content-container {
    justify-content: space-between;
}

.customizing-steps-input-row span * {
    font-size: 15px !important;
}

.customizing-steps-input-row span br {
    display: none;
}

.woocommerce-order .conatiner {
    margin: 0 auto;
    max-width: 1440px;
}

.order-box {
    max-width: 60%;
    margin: 0 auto;
    background: #fff;
    border-radius: 30px;
    padding: 60px 90px;
	position:relative;
	z-index:1;
}

.order-box::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 400px;
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(https://aacreads.com/wp-content/uploads/2023/09/What-To-be-Boy-Character-1.png);
    z-index: -1;
}

.woocommerce-order-received header:before {
    display: none !important;
}

.woocommerce-order-received header {
    background: #ea2a80;
}

.woocommerce-order {
    background: -webkit-linear-gradient(top, #ea2a80 40%, #A2C73B 40%);
    padding: 70px 0;
}

.woocommerce-order-received header .navbar-content-container {
    padding-inline: 0;
}

.order-box .box-title {
    background-image: url(https://aacreads.com/wp-content/themes/aacreads/frontend/assets/cart/shopping-basket-title-background-container.png);
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
    max-width: 350px;
    padding: 20px;
    text-align: center;
    color: #ea2a80;
    font-size: 35px;
    font-family: AvenirLTStdBlack;
    font-weight: 750;
    margin: 0 0 30px -280px;
}

.order-box p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    color: #EA2A80;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    font-family: 'AvenirLTStdBlack';
}

ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {
    padding: 0;
    margin: 0 0 30px;
    list-style: none;
}

ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li {
    margin-bottom: 13px;
    font-family: 'AvenirLTStdBlack';
}

ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li strong {
    font-family: 'AvenirLTStdBody';
    font-weight: normal;
}

h2.woocommerce-order-details__title {
    display: none;
}

table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details {
    border: 1px solid #e5e5e5;
    font-family: 'AvenirLTStdBody';
    border-spacing: 0;
}

table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details th {
    text-align: left;
    font-family: 'AvenirLTStdBlack';
    color: #7a7a7a;
    padding: 15px;
    border: 1px solid #e5e5e5;
}

table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details td {
    padding: 15px;
    border: 1px solid #e5e5e5;
    color: #5c5c5c;
}

tr.woocommerce-table__line-item.order_item {
    box-shadow: 0 3px 0 0 #e5e5e5;
}

table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details td a,table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details td strong {
    text-decoration: none;
    color: inherit;
    font-size: 14px;
    font-weight: normal;
}



section.woocommerce-customer-details {
    margin-top: 30px;
}

section.woocommerce-columns.woocommerce-columns--2.woocommerce-columns--addresses.col2-set.addresses {
    display: flex;
    align-items: flex-start;
    width: 60%;
    margin-left: 0;
}

section.woocommerce-columns.woocommerce-columns--2.woocommerce-columns--addresses.col2-set.addresses .woocommerce-column {
    width: 50%;
}

h2.woocommerce-column__title {
    font-family: 'AvenirLTStdBlack';
    color: #ea2a80;
    margin: 0 0 20px;
}

section.woocommerce-columns.woocommerce-columns--2.woocommerce-columns--addresses.col2-set.addresses .woocommerce-column address {
    border: 1px solid #e5e5e5;
    padding: 20px;
    font-family: 'AvenirLTStdBody';
    color: #6c6c6c;
    font-size: 15px;
    line-height: 1.8;
    min-height: 220px;
}



section.woocommerce-columns.woocommerce-columns--2.woocommerce-columns--addresses.col2-set.addresses .woocommerce-column address p {
    margin: 0;
}

.product-details-page .navbar-container,
.cart-page .navbar-container{
    padding-bottom: 5px;
}

table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details td ul.wc-item-meta {
    padding: 0;
    list-style: none;
}

table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details td ul.wc-item-meta li {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 7px;
}

table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details td ul.wc-item-meta p {
    margin: 0;
    font-size: 14px;
}

table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details td ul.wc-item-meta strong.wc-item-meta-label,table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details td ul.wc-item-meta strong.wc-item-meta-label * {
    font-weight: normal;
}

table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details td ul.wc-item-meta strong.wc-item-meta-label {
    font-family: 'AvenirLTStdBlack';
    min-width: 140px;
}

.best-seller-item-book-descreption strong {
    min-height: 145px;
    max-height: 145px;
}

.coupon-wrapper .coupon {
    margin: 30px 0;
}

a.checkout-button.button.alt.wc-forward.step-button.next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
}

.coupon-wrapper .coupon button.button.step-button.next {
    margin-top: 20px;
}

.woocommerce-info {
    position: relative;
    background: transparent;
    padding: 20px;
    top: auto;
    left: auto;
    right: auto;
    max-width: 1200px;
    margin: 0 auto;
}

.woocommerce-info::before {
    display: none;
}

.woocommerce-form-coupon-toggle {
    background: #a2c73b;
}

form.checkout_coupon.woocommerce-form-coupon {
    background: #a2c73b;
}

form.checkout_coupon.woocommerce-form-coupon .inner {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 2px solid rgb(255 255 255 / 28%);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px 0;
}

form.checkout_coupon.woocommerce-form-coupon .inner p {
    font-family: 'AvenirLTStdBody';
    width: 100%;
    margin: 0;
}

form.checkout_coupon.woocommerce-form-coupon .inner .form-row {
    margin: 0;
    width: auto;
}

form.checkout_coupon.woocommerce-form-coupon .inner .form-row input#coupon_code {
    height: 45px;
    padding: 0 15px;
    border: 0;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
}

form.checkout_coupon.woocommerce-form-coupon .inner .form-row button.button {
    height: 45px;
    border: 0;
    border-radius: 15px;
    padding: 0 20px;
    font-family: 'AvenirLTStdBlack';
    background: #ea2a80;
    color: #fff;
    cursor: pointer;
}

.woocommerce-notices-wrapper {
    background: #a2c73b;
}

.woocommerce-notices-wrapper .woocommerce-info {
    text-align: center;
    font-family: 'AvenirLTStdBlack';
}

.eoinput {
    transition: .3s;
    outline: none;
    border: 1px solid transparent;
    font-family: AvenirLTStdBody;
    font-size: 16px;
    height: 45px;
    padding: 0 20px;
}

.eoinput:focus {
    background: #fff;
    border-color: #ea2a80;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

textarea.eoinput {
    height: 120px;
    padding: 15px;
}

.grecaptcha-badge {
    display: none !important;
}

.sim_radio_button {
    width: 100%;
}

.sim_radio_button label {
    width: 100%;
}

.sim_radio_button label span.rowTitle {
    text-align: initial;
}

.sim_radio_button label span::before {
    min-width: 20px;
}

.price_total {
    display: none;
}

/* ============== RESPONSIVE =================== */

@media(max-width:1600px){
    .shopping-basket-container {
    width: 55%;
}
	.woocommerce-order-received header .navbar-content-container,
.woocommerce-order{
    padding-inline: 30px;
}
}

@media(max-width:1300px){
	.nav-bar-pages-link-button-outer-container a {
    padding: 0 10px;
    font-size: 15px;
}

.nav-bar-pages-link-button-outer-container {width: auto;height: 40px;}

.navbar-content-container {
    justify-content: space-between;
}

.customize-story-container-title,
.customize-story-details-item{
    max-width: 100%;
}

.customize-story-gallery-item,
.swiper-container.gallery-thumbs,
.swiper-container.gallery-top {
    width: 100%;
}

.start-customizing-item-image {
    max-width: calc(50% - 25px);
    object-fit: contain;
    width: calc(50% - 25px);
}

.start-customizing-items-container .cart {
    width: calc(50% - 25px);
}

.swiper-container.customizing-steps-container {
    width: 100%;
}
	
	.shopping-basket-container {
    width: 100%;
    padding: 30px;
    background: transparent;
}

.cart-total-details-card {
    max-width: 100%;
}

.cart-total-details-card .details-card-row {
    width: 100%;
    justify-content: space-between;
}

.cart-total-details-card .details-card-row span:first-child {
    margin: 0;
}

.coupon-wrapper .coupon {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    margin-top: 30px !important;
}

.coupon-wrapper .coupon button.button.step-button.next {
    margin: 0;
    font-size: 17px;
    white-space: nowrap;
    width: auto;
    min-width: auto;
    height: 45px;
    border-radius: 50px;
}

.coupon-text-field-input {
    width: 100%;
    box-sizing: border-box;
    max-width: none;
    border-radius: 50px;
}

.shopping-basket-item-inner-container {
    max-width: none;
}

.shopping-basket-banner-image {
    width: 50%;
}

.shopping-basket-container-title {
    margin-inline: 0;
    max-width: 100%;
}

.shopping-basket-container-title h2 ,
.cart-total-container-title h2{
    font-size: 22px;
}
	.checkout--wrapper .address {
    width: 100%;
    padding: 0 30px !important;
}

.checkout--wrapper .container {
    flex-wrap: wrap;
}

.navbar-content-container {
    padding-inline: 30px;
}

.woocommerce-billing-fields h3, .checkout--wrapper .details .head-title h2 {
    max-width: 100%;
    font-size: 20px;
}

.woocommerce-billing-fields__field-wrapper {
    margin-top: 30px;
}

.checkout--wrapper .details {
    width: 100%;
    padding: 0 30px !important;
}

.woocommerce-checkout-review-order.section-wrapper {
    margin-top: 30px;
}

.footer-columns-container {
    padding: 0 30px;
}
	.order-box {
    max-width: 100%;
    padding: 30px;
}

.order-box .box-title {
    margin: -70px 0 0;
    font-size: 25px;
    max-width: 100%;
}

.order-box::before {
    width: 200px;
    height: 200px;
}
}

@media(max-width:768px){
	.our-stories-container-title {
    max-width: 50%;
}
	.col2-set .form-row{
		width:100% !important;
	}
	
	.faq-items-container {
    width: 100%;
}

.faq-inner-items-container {
    max-width: 100%;
    margin: 0;
    width: 100%;
}

.faq-container {
    padding: 50px 30px 0;
}

.faq-banner-image {
    margin: 0 auto 30px;
}

.faq-question-box {
    width: 100%;
    max-width: none;
}

.footer-column-container {
    width: 100%;
    margin: 0 !important;
}

body,html {
    overflow-x: hidden;
}

.footer-container {
    padding-inline: 30px;
}

.footer-subscibe-container button br {
    display: none;
}

.wpcf7-form-control-wrap {
    width: 100%;
    display: block;
}

.footer-subscibe-container input {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    margin: 0;
    color: #fff;
}
	
	#toggle:checked~.navbar-mobile-container {
    background: #fff;
    padding: 20px 15px;
    border-radius: 10px;
    z-index: 1;
    position: relative;
    box-shadow: 0 3px 6px rgb(0 0 0 / 13%);
}

.navbar-content-container {
    padding-inline: 30px;
    padding-bottom: 10px;
}

img.nav-bar-logo {
    width: 60px;
    margin: 0 auto !important;
    object-fit: contain;
    max-height: none !important;
}

.hamburger div {
    height: 2px;
    width: 30px;
    margin-top: 7px;
}

.hamburger {
    margin: 0;
    height: auto;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

#toggle:checked~.navbar-content-container .hamburger .bar1 {
    margin-top: 0;
}

#toggle:checked~.navbar-content-container .hamburger .bar2 {
    margin-top: -2px;
}

.navbar-mobile-container .search-container input {
    border: 1px solid #dfdfdf;
    box-sizing: border-box;
    width: 100%;
}
	
	.navbar-mobile-container .icons-container {
    position: absolute;
    top: -78px;
    right: 40px;
		justify-content: center;
}

.navbar-mobile-container .icons-container a img {
/*     filter: brightness(0); */
    object-fit: contain;
    max-width: none;
    max-height: none;
    width: 25px;
    height: 25px;
}

.navbar-mobile-container .search-container button {
    top: 8px;
}

span#cart_count {
    font-family: 'AvenirLTStdBody';
    background: orange !important;
    color: #fff !important;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 0 0 2px #ea2a80;
}

.mobile-nav-bar-items .nav-bar-pages-links-container li {
    padding: 0;
    height: auto;
    left: auto;
    right: auto;
    margin: 0;
}

ul .wpml-ls-menu-item a {
    color: #000;
    right: auto;
}

.nav-bar-pages-link-button-outer-container a {
    font-size: 11px;
    padding: 0 7px;
    height: 24px;
}

.mobile-nav-bar-items .nav-bar-pages-links-container {
    margin: 0 0 20px;
    justify-content: space-between;
}
	.faq-inner-items-container{
		padding:0;
	}
	
	.faq-container-title{
		margin:0 0 30px;
	}
	
	.faq-inner-items-container h4 {
    font-size: 21px;
}
	
	.faq-question-box h5 {
    max-width: 86%;
    font-size: 16px;
}
	section > .testimonials-quotations-image-bottom {
    width: 15vw;
}
	.what-you-can-customize-item {
    width: calc(20% - 20px);
    margin: 0;
    padding: 20px;
    height: auto;
    min-height: 90px;
    justify-content: center;
}

.what-you-can-customize-items-container {
    gap: 20px;
    padding: 0 20px;
}

.what-you-can-customize-item-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin: 0 auto;
}

.what-you-can-customize-item .what-you-can-customize-item-text-container {
    margin: 20px auto 0;
    height: auto;
}

.what-you-can-customize-item h4 {
    font-size: 16px;
    max-width: none;
    margin: 0;
}

.what-you-can-customize-active-item-text-container p {
    margin: 0;
    font-size: 16px;
}

.what-you-can-customize-active-item-text-container {
    margin: 20px 0 0;
}

.what-you-can-customize-item:nth-child(3) {
    height: auto;
    background: #ea2a80;
}

.what-you-can-customize-item:nth-child(3) img {
    filter: brightness(0) invert(1);
}
	.mobile-nav-bar-items .nav-bar-pages-links-container li.selected-page a {
    box-shadow: 0 0 0 2px #ea2a80;
}
	
	.we-spread-container-title {
    margin-inline: 0;
}

.we-spread-title-outer-container {
    padding: 0 20px;
}

.we-spread-container-title h2 {
    font-size: 22px;
    padding: 20px;
}
	
	.we-spread-item {
    min-height: auto;
    padding: 20px;
}

.we-spread-item-image-container {
    width: 50px;
    height: 50px;
}

.we-spread-item-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.we-spread-item p {
    line-height: 1.5;
}

.we-spread-container {
    padding: 50px 0;
}
.our-stories-items-container {
    row-gap: 50px;
}

.our-stories-container-title h2 {
    font-size: 22px;
}

.best-seller-item-book-title h4 {
    font-size: 20px;
    max-width: none;
    min-height: auto;
    max-height: initial;
}

.best-seller-item-book-title {
    margin: 0;
    padding: 20px 0;
	width:100%;
}

.best-seller-item-book-descreption p {
    font-size: 17px;
    max-width: none;
}
	
	.best-seller-item-book-descreption p strong{
		min-height:auto;
		max-height:none;
	}

.best-seller-item-ripon p {
    font-size: 16px;
}

.best-seller-item--ripon-circle-container {
    top: -37px;
}

.best-seller-item-customize-button {
    width: calc(100% - 100px);
    text-align: center;
    font-size: 18px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}
	
	.customize-story-container-title h2 {font-size: 21px;
	        padding: 20px 2% 23px 2%;
	}

.customize-story-items-container {
    margin: 0;
}

.customize-story-details-item {
    margin: 0;
}

.customize-story-details-item-customize-button {
    width: 100%;
    margin: 20px 0 0;
    left: auto;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    height: 50px;
}

.customize-story-container {
    padding-bottom: 50px;
}

.start-customizing-container-title {
    margin: 0;
}

.start-customizing-container-title h2 {
    font-size: 22px;
}

.start-steps {
    gap: 15px;
    padding: 30px 0 0;
}

.start-steps .step-block {
    width: calc(34% - 15px);
}

.start-steps .step-block .icon {
    width: 50px;
    height: 50px;
    padding: 5px;
    border-radius: 10px;
}

.start-steps .step-block h4 {
    font-size: 13px;
}

.start-customizing-item-image {
    max-width: none;
    width: 100%;
    margin: 0 auto 20px;
}

.swiper-container.customizing-steps-container {
    padding: 0;
}

.start-customizing-slider-step-title h2 {
    font-size: 18px;
    padding: 0;
}

.start-customizing-slider-step-title {
    width: auto;
    padding: 7px 17px 15px;
    top: -15px;
    left: -30px;
}

.swiper-container.customizing-steps-container .swiper-slide {
    margin-top: 15px;
    margin-left: 30px;
    padding: 20px;
}

.custom_options label {
    font-size: 15px;
    width: 100px;
}
.start-customizing-items-container .cart {
    width: 100% !important;
}
	.swiper-container.customizing-steps-container .swiper-slide {
    width: calc(100% - 75px) !important;
}

textarea.eoinput {height: 100px;}

.step-button {
    font-size: 15px;
    height: 40px;
    border-radius: 10px;
    min-width: 100px;
}
	.rates-and-reviews-container {
    padding: 50px 20px;
}

.rates-and-reviews-container-title h2 {
    font-size: 20px;
}

img.rates-and-reviews-item-profile-image {
    width: 70px;
    height: 70px;
    min-width: 70px;
}

.rates-and-reviews-item-inner-container h4 {
    margin: 0;
}

.rates-and-reviews-item-stars-image {
    max-width: 100px;
}

.rates-and-reviews-items-container {
    margin: 0;
    padding: 30px 0 0;
}

.rates-and-reviews-container-title {
    margin: 0;
}

.other-stories-container {
    padding: 50px 20px;
}

.other-stories-container-title h2 {
    font-size: 20px;
}

.product-page-other-stories-section .other-stories-container-title {
    margin: 0 auto 20px;
}

.other-stories-item-container h4 {
    font-size: 16px;
    margin: 0;
    padding: 20px 20px 10px;
}

.product-page-other-stories-section .other-stories-items-container {
    margin: 0;
}
/*
.product-page-other-stories-section .other-stories-item-container {
    max-width: none;
	    width: calc(30% - 20px);
}
*/	
	.shopping-basket-actions-container {
    top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.shopping-basket-action-icon {
    object-fit: contain;
    width: 25px;
    height: 25px;
    margin: 0;
}

.shopping-basket-actions-container a {
    display: flex;
    align-items: center;
    justify-content: center;
}
	

section.woocommerce-columns.woocommerce-columns--2.woocommerce-columns--addresses.col2-set.addresses {
    width: 100%;
}

h2.woocommerce-column__title,
.order-box p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received{
    font-size: 18px;
}
	
	section.woocommerce-order-details {
    overflow: hidden;
    overflow-x: auto;
}

.order-box .box-title {
    font-size: 19px;
}

table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details td ul.wc-item-meta li {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details td ul.wc-item-meta strong.wc-item-meta-label {
    min-width: auto;
}

section.woocommerce-columns.woocommerce-columns--2.woocommerce-columns--addresses.col2-set.addresses .woocommerce-column {
    width: 100%;
}

section.woocommerce-columns.woocommerce-columns--2.woocommerce-columns--addresses.col2-set.addresses {
    flex-wrap: wrap;
    gap: 30px;
}

.order-box::before {
    width: 100px;
    height: 100px;
}

.order-box {
    padding-bottom: 100px;
}

table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details th {
    font-size: 14px;
}
	.new-story-item-container h5 {
    padding-inline: 20px;
    font-size: 20px;
}

.new-story-item-container p {
    line-height: 1.5;
    font-size: 15px;
}
	.best-seller-item-book-descreption {
    padding-inline: 20px;
    padding-bottom: 20px;
}
	.new-story-item-container p {
    padding: 0 40px;
}
	.new-story-item-container {
    padding-bottom: 30px;
}
	
	.reveal {
    opacity: 1 !important;
    transform: none !important;
}
	.price_total {
    display: none;
}
	form.checkout_coupon.woocommerce-form-coupon .inner {
    padding: 20px 30px;
}

.woocommerce-info {
    padding: 20px 30px;
}

form.checkout_coupon.woocommerce-form-coupon .inner .form-row.form-row-first {
    width: 100%;
}

form.checkout_coupon.woocommerce-form-coupon .inner .form-row input#coupon_code {
    width: 100%;
    box-sizing: border-box;
}
	input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
select:focus,
textarea {
  font-size: 14px;
}
}

@media(max-width:625px){
	
	.rd-wrapper .radio label span {
		width: 70px;
    min-width: 70px;
    height: 70px;
	}
	.what-you-can-customize-active-item-text-container p {
    
    font-family: 'AvenirLTStdBody';
    
		font-weight: 400; }
	.best-seller-item-customize-button {
        width: auto;
		height: auto; }
	
.what-you-can-customize-item {
    width: calc(40% - 20px);
}
	.customizing-steps-input-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.eoinput {
    box-sizing: border-box;
}

.custom_options label {
    width: 100%;
}

.customizing-steps-input-row.buttons-container {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 30px;
}

button.step-button.next {
    margin: 0;
}

.rd-wrapper .radio {
    width: auto;
    display: flex !important;
    justify-content: space-between;
}
#field1187_wrapper .rd-wrapper .radio, #field1188_wrapper .rd-wrapper .radio ,#field1085_wrapper .rd-wrapper .radio ,#field1087_wrapper .rd-wrapper .radio  {
    width: 100%;
   
}
	.product-page-other-stories-section a .other-stories-item-container {
    width: 100%;
}
	.swiper-container.gallery-thumbs .swiper-slide {
    border-radius: 5px;
}
	.shopping-basket-item-container {
    margin: 0;
    padding: 70px 20px 20px !important;
    border-radius: 30px;
    gap: 20px;
    background: #fff;
}

.shopping-basket-actions-container {
    top: 20px !important;
    right: 20px;
}
	
	[lang="ar"] .shopping-basket-actions-container {
		left:20px !important;
		right:auto;
	}

.shopping-basket-banner-image {
    width: 100%;
	margin:0 !important;
}

.shopping-basket-item-inner-container h5 {
    font-size: 19px;
}

.shopping-basket-item-inner-container h6 {
    font-size: 17px;
}

.shopping-basket-item-inner-container p {
    font-size: 15px;
    line-height: 1.5;
}

.shopping-bask-item-tages-container span {
    font-size: 14px;
}

.shopping-basket-item-price-container span {
    font-size: 20px;
}

a.checkout-button.button.alt.wc-forward.step-button.next {
    width: 100%;
    display: flex;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    height: 45px;
    font-size: 16px;
}

.coupon-wrapper .coupon {
    margin-bottom: 20px !important;
    gap: 10px;
}

.coupon-wrapper .coupon button.button.step-button.next {
    font-size: 13px;
    height: 40px;
}
	
	.footer-columns-container {
    padding: 0;
}
	
	.checkout--wrapper {
    padding: 20px 0 50px;
}
	.ship-address .woocommerce-shipping-fields h3 label {
    font-size: 14px;
}
	
	.cart-total ul {
    width: 100%;
}

.woocommerce-checkout-payment.section-wrapper .form-row.place-order #place_order {
    width: 100%;
    font-size: 16px;
}
	#field1241_wrapper .rd-wrapper .radio, #field1245_wrapper .rd-wrapper .radio, #field1248_wrapper .rd-wrapper .radio, #field1243_wrapper .rd-wrapper .radio{
    width: 100% !important;
    display: flex !important;
   /* justify-content: space-between !important; */
}
	#field1241_wrapper .rd-wrapper .radio {
	flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 15px;
    align-items: center;
	}
}
.new-story-item-container p {
	padding-bottom: 10px;
text-align:justify;}

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

	table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details {

    width: 75%;
}

.order-box::before {
  
    width: 300px;
    height: 300px; }
 
}

#menu-item-1371, #menu-item-1477 {
	width: fit-content;
}

#menu-item-1371 a, #menu-item-1477 a {
	padding-right: 15px;
	padding-left: 15px;
}
.books-collection-item-card p {
    
    text-align: justify;
}

.books-collection-item-card-inner-circle-container p {
    
    text-align: center !important;
}

.price-tag-container .start-f {
color: #fff;
 
    text-align: center;
    font-size: 14px;
    font-family: AvenirLTStdBlack;
    position: relative;
    margin-left: 15px;
    top: 10px;
}
.rtl .price-tag-container .start-f {

    margin-right: 15px !important;

}

.faq-question-box.open p, .about-us-first-container-descreption,.about-us-our-story-inner-container-descreption {
 
    text-align: justify;
}
.rtl .best-seller-item-book-title h4 {
  
    line-height: 28px;
}

.rtl .books-collection-item-card-inner-circle-container p {
    font-size: 13px;
    line-height: 16px !important;
}


/** Account css **/

/* Form Container */
        .woocommerce-account .u-column1 {
            max-width: 400px;
            margin: 0 auto;
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 5px;
            background-color: #fff;
        }
        /* Form Header */
        .woocommerce-account .u-column1 h2 {
            font-size: 24px;
            text-align: center;
            color: rgb(234, 42, 128);
        }
        .woocommerce-account .woocommerce-form-row input[type="password"] {
            margin-left: -10px; /* Increase the margin to add space */
        }
        .woocommerce-account .woocommerce-form-row input[type="text"] {
            margin-left: -4px; /* Increase the margin to add space */
        }
		    .woocommerce-account .woocommerce-form-row input[type="email"] {
            margin-left: -4px; /* Increase the margin to add space */
        }
        /* Form Fields */
        .woocommerce-account .woocommerce-Input {
            width: 100%;
/*             padding: 10px; */
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
            background-color: #F5F5F5;
        }
        /* Label Color for Specific Fields */
        .woocommerce-account .woocommerce-form-row label {
            color: rgb(234, 42, 128);
        }
        /* Submit Button */
        .woocommerce-account .woocommerce-form-login__submit {
            display: block;
            margin: 0 auto;
            background-color: rgb(234, 42, 128);
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
        }
        .woocommerce-account .woocommerce-form-login__submit:hover {
            background-color: #005782;
        }
        /* Checkbox Label */
        .woocommerce-account .woocommerce-form__label-for-checkbox {
            display: block;
        }
        /* Lost Password Link */
        .woocommerce-account .woocommerce-LostPassword a {
            color: rgb(234, 42, 128);
            text-decoration: none;
        }
        .woocommerce-account .woocommerce-LostPassword a:hover {
            text-decoration: underline;
        }
        .woocommerce-account .u-column2 {
            max-width: 800px;
			height:350px;
            margin:20px auto auto auto;
            padding: 20px;
            border: 1px solid #ddd;
            border-radius:20px;
            background-color: #fff;
		    padding-top:70px;
			
        }
        /* Form Header */
        .woocommerce-account .u-column2 h2 {
            font-size: 24px;
            text-align: center;
            color: rgb(234, 42, 128);
        }
        /* Form Fields */
        .woocommerce-account .woocommerce-Input {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
            background-color: #F5F5F5;
        }
        /* Label Color for Specific Fields */
        .woocommerce-account .woocommerce-form-row label {
            color: rgb(234, 42, 128);
        }
        /* Adjust margin for Email address * input */
        .woocommerce-account .woocommerce-Input[name="email"]{
            margin-left:-10px;
        }
        /* Privacy Policy Link */
        .woocommerce-account .woocommerce-privacy-policy-link {
            color: rgb(234, 42, 128);
            text-decoration: none;
        }
        .woocommerce-account .woocommerce-privacy-policy-link:hover {
            text-decoration: underline;
        }
        /* Register Button */
        .woocommerce-account .woocommerce-form-register__submit {
            display: block;
            margin: 0 auto;
            background-color: rgb(234, 42, 128);
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
        }
       .woocommerce-account .woocommerce-form-register__submit:hover {
            background-color: #005782;
        }
       .woocommerce-account .name{
            display: flex;
            gap: 25px;
        }
       .woocommerce-account .name input{
            width:50%;
        }
       .woocommerce-account .u-columns{
            background-color: rgb(234, 42, 128);
        }
       .woocommerce-account .u-column1.col-1 {
        max-width:800px;
		height:390px;
		padding-top:70px;
		border: 1px solid #ddd;
        border-radius: 20px;
    }

   /* Center the form elements */
    .woocommerce-account .woocommerce-form-login {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
	margin-top:25px;
   }

     /* Center the "Log in" button within its container */
    .woocommerce-account .woocommerce-form-login__submit {
    margin: 0 auto;
   }

  .woocommerce-account .form-row {
    text-align: center;
    margin-top: 10px; /* Adjust the margin as needed */
}

   .woocommerce-account .form-row p {
    display: inline-block;
    margin: 0 10px; /* Adjust the margin as needed */
}
    /* Custom CSS to add margin-top to the login button */
    .woocommerce-account .woocommerce-button.button.woocommerce-form-login__submit {
    margin-top:30px; /* Adjust the margin-top value as needed */
}
	 /* Center the form registration elements */
    .woocommerce-account .woocommerce-form-register {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
	margin-top:25px;
   }

	    /* Center the "Log in" button within its container */
    .woocommerce-account .woocommerce-form-register__submit {
    margin: 0 auto;
   }
	
.woocommerce-account .u-columns.col2-set{
	background-color:rgb(234, 42, 128);
}
.woocommerce-account .u-column1 h2, .woocommerce-account .woocommerce-LostPassword a:hover,.woocommerce-account .woocommerce-LostPassword a, .woocommerce-account .woocommerce-form-register,.woocommerce-account .u-column2 h2,.logged-in.woocommerce-account .woocommerce-MyAccount-navigation-link a, .logged-in.woocommerce-account .woocommerce-MyAccount-content {
    
    font-family: AvenirLTStdBody;
}

.woocommerce-account .navbar-container {
    padding-bottom: 5%;
}
.woocommerce-account .u-columns.col2-set {
    padding-left: 5%;
	padding-right: 5%; }
@media only screen and (min-width: 768px) {
	
.woocommerce-account .u-columns.col2-set {

display: flex;

    column-gap: 25px;

}


.woocommerce-account .u-column1.col-1 {
    max-width: 41%;
    height: 350px;
   
    border: 1px solid #ddd;
    border-radius: 20px;
    width: 40%;
    padding: 70px 50px;
}

.woocommerce-account .u-column2 {
    max-width: 40%;
    height: 350px;
    width: 40%;
    margin: 0px auto auto auto;
    padding: 70px 50px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background-color: #fff; }
	.logged-in.woocommerce-account .woocommerce-MyAccount-navigation
 {
/*     flex: 1; */
    width: 50%;
    box-sizing: border-box;
	margin-left:60px;
	margin-top: 30px;
}
}
// my account

   .logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
	font-weight:600px;
  }

  .logged-in.woocommerce-account .woocommerce-MyAccount-navigation-link a {
    text-decoration: none;
    color: #333; /* Change the link color */
    font-weight: bold;
    margin: 5px 0;
    display: block;
  }

   .logged-in.woocommerce-account li:hover {
      background-color: none;
  }
.logged-in.woocommerce-account .woocommerce-MyAccount-navigation-link a:hover {
    color: #fff; 
  }

  /* Style the user greeting */
  .logged-in.woocommerce-account .woocommerce-MyAccount-content p strong {
    font-size: 24px; 
    color: rgb(234, 42, 128); 
  }

  /* Style the content area */
.logged-in.woocommerce-account .woocommerce-MyAccount-content {
  padding: 20px;
  border-radius: 10px;
  margin: 40px auto; /* Center the content horizontally with auto margins */
  max-width: 550px;
  text-align: center; /* Center the text content within */
}

	
	.logged-in.woocommerce-account .woocommerce{
    display: flex;
}
	
/* Style the navigation container */
nav.woocommerce-MyAccount-navigation {
  background-color:#fff; /* Set the background color */
  padding: 20px; /* Add some spacing around the navigation */
  border: 1px solid gray;
  border-radius: 5px;
  box-shadow: 5px 5px 5px #888;
  height: 335px;
  max-width: 350px;
  margin-bottom:30px;
  text-align: center; /* Center the text content within */
}

/* Style the list items */
ul {
  list-style: none; /* Remove bullet points */
  padding: 0;
  margin: 0;
}

/* Style the list item links */
li.woocommerce-MyAccount-navigation-link a {
  text-decoration: none; /* Remove underline from links */
  color:#fff; /* Set link color */
  display: block; /* Make the links block-level for better spacing */
  padding: 10px 0; /* Add spacing around each link */
  transition: background-color 0.3s; /* Add a smooth transition effect on hover */
}

/* Style the links on hover */
li.woocommerce-MyAccount-navigation-link a:hover {
  background-color: none; /* Change background color on hover */
	color: #ea2a80;
}

/* Style the active link */
li.woocommerce-MyAccount-navigation-link.is-active a {
 
	    background-color: rgb(236 237 238 / 0%);
	background-color:none;/* Set a different background color for the active link */
  font-weight: bold; /* Make the active link text bold */
}

table.shop_table_responsive tr th, table.shop_table_responsive tr td {
    
    padding-right: 40px;
}

.logged-in.woocommerce-account .woocommerce-MyAccount-content {
   
    max-width: 100%;
    width: 100%; }

.logged-in.woocommerce-account .u-columns.col2-set {
    background-color: #fff;
}
.logged-in nav.woocommerce-MyAccount-navigation {

    height: auto; }

/** Reset Password **/
.woocommerce-lost-password {
    background-color: #ea2a80;
}

.woocommerce-lost-password .woocommerce {
display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 10px;
}

.woocommerce-lost-password .woocommerce-ResetPassword {
background-color: #ffffff;
    padding: 5%;
    border-radius: 20px;
    font-family: AvenirLTStdBody; }

.woocommerce-lost-password .woocommerce-Button {
    background-color: rgb(234, 42, 128);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    border: none; }

li.woocommerce-MyAccount-navigation-link.is-active a {
    background-color: none; }

.logged-in .woocommerce-MyAccount-navigation {
background-image: url(https://aacreads.com/wp-content/uploads/2023/10/box-01.png);
    border: 0px;
    box-shadow: none;
    background-size: cover;
    height: 480px !important;
padding: 5%;
background-color: #ea2a8000;
    z-index: 999;
 }

.logged-in.woocommerce-account .woocommerce-MyAccount-navigation-link a {

    color: #fff; }

.logged-in.woocommerce-account li.woocommerce-MyAccount-navigation-link a:hover {
background-color : none;
}

.logged-in.woocommerce-account .woocommerce {
    
    background-color: #ea2a80;
}

.logged-in.woocommerce-account .woocommerce-MyAccount-content {

    background-color: #fff;
    margin-left: -90px;
  margin-right: 150px;
    padding: 5% 10%;
}



.logged-in.woocommerce-account .woocommerce-MyAccount-navigation-link a:hover {
	color: #ea2a80;
}

.logged-in.woocommerce-account .navbar-container {
    padding-bottom: 0%;
}
.logged-in.woocommerce-account  .woocommerce-Button, .logged-in.woocommerce-account  .button {
    background-color: #f4931e;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
}
.logged-in li.woocommerce-MyAccount-navigation-link {
	    border-bottom: 1px solid #dbdbdb;
}
.logged-in table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details {
    width: 100%;
}

.logged-in section.woocommerce-columns.woocommerce-columns--2.woocommerce-columns--addresses.col2-set.addresses {
    
	width: 100%; }

.logged-in li.woocommerce-MyAccount-navigation-link.is-active a {
    color: #ea2a80;
	font-family: 'AvenirLTStdBlack';
}
.logged-in.woocommerce-account .woocommerce-orders-table__row {
    height: 80px;
}
.logged-in.woocommerce-account .woocommerce-Button, .logged-in.woocommerce-account .button {
  
    padding: 10px 23px;
    margin-right:5px;
	font-size: 13px;
    display: table-cell;
}
.logged-in.woocommerce-account .woocommerce-button.button.pay {
	display:none !important;
}
@media(max-width:768px){
	.top-bar {
  
    font-size: 13px;
}
	
	.logged-in.woocommerce-account .woocommerce-MyAccount-content {
    
    padding: 5% 5%;
    margin-top: 0px;
}

.logged-in .woocommerce-MyAccount-navigation {
   background-image: none;
   
    background-color: #f4931e;

	
}
	.logged-in.woocommerce-account .woocommerce-MyAccount-navigation-link a {
 
    font-size: 12px;
	}
	.logged-in.woocommerce-account .woocommerce-MyAccount-content {
    margin-left: 10px;
    margin-right: 10px;
    padding: 5% 2%;
	}
	.logged-in.woocommerce-account .woocommerce-orders-table {
    width: 100%;

}

.logged-in.woocommerce-account table.shop_table_responsive tr td {
  
    margin-bottom: 20px;
}
.logged-in.woocommerce-account .woocommerce-Input {
		width: 90% !important; }
	
	.woocommerce-lost-password .woocommerce {
    
    padding-left: 5%;
    padding-right: 5%;
}
	.woocommerce-lost-password .woocommerce-account .woocommerce-Input {
		width: 90%; }
		
 .customize-story-details-item-tages-container a:nth-child(1), .customize-story-details-item-tages-container a:nth-child(3), .customize-story-details-item-tages-container a:nth-child(2), .customize-story-details-item-tages-container a:nth-child(4), .customize-story-details-item-tages-container a:nth-child(5), .customize-story-details-item-tages-container a:nth-child(6) {
 
    padding: 3% 5% !important;
    min-height: 32px;
    width: 35%;
    text-align: center;
        font-size: 14px;
}
.customize-story-details-item-tages-container {
    column-gap: 0px !important;
}
}
.logged-in.woocommerce-account .woocommerce-info {
display: grid;
	    min-width: 100%;
	    padding: 20px 0px;
}

.top-bar {
  
	background: #3ba5db !important; 
color:#fff;
		font-family: 'AvenirLTStdBody';

}

[lang="ar"] .woocommerce-privacy-policy-text ::before{
	right: 0;
	left:auto;
}

.error404 header {
    padding-bottom: 0px;
}
.mo-openid-app-icons {
     margin-bottom: 20px !important;
}
.wpcf7-not-valid-tip {
	color: #ffffff; }



.customizing-steps-input-row {
column-gap: 26px;
padding-top:2px;
} 
[lang="ar"] .customizing-steps-input-row  {
column-gap: 25px !important;
padding-top:0 !important;
}
@media (max-width: 400px) {
.nav-bar-pages-link-button-outer-container a {
	font-size: 9px;}
}

.footer-subscibe-container .wpcf7 form.invalid .wpcf7-response-output {
    color: #fff;
}
.faq-question-box h5 {
   
    color: #fff;
}
.custom_options .checkbox.st2 label .rowTitle .price1 {
    color: #ea2a80;
}

.rd-wrapper {
    align-items: baseline;
}
.customize-story-details-item-tages-container a:nth-child(1),.customize-story-details-item-tages-container a:nth-child(3) ,.customize-story-details-item-tages-container a:nth-child(5) {
    
    background-image: url(./frontend/assets/product/Vector-green.png);
 background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
         padding: 3%;
             min-height: 32px;


}
.customize-story-details-item-tages-container a:nth-child(2),.customize-story-details-item-tages-container a:nth-child(4),.customize-story-details-item-tages-container a:nth-child(6) {
    
    background-image: url(./frontend/assets/product/Vector-blue.png);
  background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
         padding: 3%;
             min-height: 32px;

}
.customize-story-details-item-tages-container {
   
    column-gap: 5px; }

.other-stories-story-image{
	width:100%;
}

.start-customizing-container{
	    padding-bottom: 0;
}

.best-seller-items-view-all-button{
	text-decoration: auto;
}

.woocommerce-billing-fields__field-wrapper{
	padding-bottom: 50px;
}

/* 5/11/2023
 */
.nav-bar-pages-link-button-outer-container a {
    font-size: 15px;
    padding: 8px;
    height: auto;
    box-shadow: 0 0 0 2px transparent;
}

.nav-bar-pages-link-button-outer-container {
    width: auto;
    min-width: 130px;
    height: auto;
    padding: 0;
}

.nav-bar-pages-link-button-outer-container .sub-menu {
    position: absolute;
    top: 110%;
    opacity: 0;
    transition: .3s;
	z-index: 1;
}

.nav-bar-pages-link-button-outer-container .sub-menu li {
    padding: 0;
    margin-bottom: 10px;
}



.nav-bar-pages-link-button-outer-container.selected-page {
    background: transparent;
}

.nav-bar-pages-link-button-outer-container.selected-page a {
    box-shadow: 0 0 0 4px #fff;
}

.nav-bar-pages-links-container {
    gap: 15px;
}

.nav-bar-pages-link-button-outer-container:hover .sub-menu {
    top: 106%;
    opacity: 1;
}

@media(max-width:768px){
    .nav-bar-pages-link-button-outer-container:hover .sub-menu {
    position: relative;
}

.mobile-nav-bar-items .nav-bar-pages-links-container li.menu-item-has-children {
    flex-wrap: wrap;
    flex-flow: column;
    gap: 10px;
}

.mobile-nav-bar-items .nav-bar-pages-links-container li.menu-item-has-children > a{box-sizing: border-box;}

.mobile-nav-bar-items .nav-bar-pages-links-container {
    margin: 0;
}

.nav-bar-pages-link-button-outer-container .sub-menu li:last-child {
    margin: 0;
}

.nav-bar-pages-link-button-outer-container .sub-menu {
    border: 1px solid #dfdfdf;
    border-radius: 20px;
    padding: 7px;
}
}

.best-inner a,.best-inner ins,
.best-inner del{
    text-decoration: none;
}


.best-inner del * {
    font-size: 19px;
}

.best-inner del span {
    text-decoration: line-through;
    font-family: 'AvenirLTStdBody';
    font-size: 17px;
}

.price-tag-container {
    padding: 15px 30px 30px;
}

.price-tag-container .start-f {
    margin: 0;
    top: auto;
}

.price-tag-container p {
    padding: 5px 0 0;
}

.customize-story-details-item-price-container p:last-child {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 9px 30px 20px;
}

.customize-story-details-item-price-container p del,
.customize-story-details-item-price-container p ins{
    text-decoration: none;
}


.customize-story-details-item-price-container p del * {
    font-size: 19px;
}

.customize-story-details-item-price-container p del span {
    text-decoration: line-through;
    font-family: 'AvenirLTStdBody';
    font-size: 17px;
}


.customize-story-details-item-price-container p del, .customize-story-details-item-price-container p ins span {
    font-family: 'AvenirLTStdBlack';
}

.nav-bar-pages-links-container li.menu-item-has-children a {gap: 12px;}

.nav-bar-pages-links-container li.menu-item-has-children > a::after {
    content: '';
    width: 7px;
    height: 7px;
    border-width: 1px 1px 0 0;
    border-style: solid;
    border-color: #000;
    rotate: 135deg;
}

.woocommerce-table__product-name .shopping-basket-banner-image {
    max-height: 200px;
    border-radius: 25px;
    display: block;
    margin: 20px 0;
}


#field1109_wrapper .rd-wrapper .radio .rowTitle,#field1110_wrapper .rd-wrapper .radio .rowTitle ,#field1250_wrapper .rd-wrapper .radio span.rowTitle,#field1115_wrapper .rd-wrapper .radio span.rowTitle,#field1077_wrapper .rd-wrapper .radio .rowTitle,#field1251_wrapper .rd-wrapper .radio .rowTitle ,#field1252_wrapper .rd-wrapper .radio span.rowTitle,#field1253_wrapper .rd-wrapper .radio span.rowTitle, #field1254_wrapper .rd-wrapper .radio .rowTitle,#field1255_wrapper .rd-wrapper .radio .rowTitle, #field1148_wrapper .rd-wrapper .radio .rowTitle,#field1147_wrapper .rd-wrapper .radio .rowTitle, #field1256_wrapper .rd-wrapper .radio .rowTitle,#field1166_wrapper .rd-wrapper .radio .rowTitle, #field1257_wrapper .rd-wrapper .radio .rowTitle, #field1132_wrapper .rd-wrapper .radio .rowTitle , #field1133_wrapper .rd-wrapper .radio .rowTitle , #field1137_wrapper .rd-wrapper .radio .rowTitle, #field1138_wrapper .rd-wrapper .radio .rowTitle, #field1142_wrapper .rd-wrapper .radio .rowTitle, #field1143_wrapper .rd-wrapper .radio .rowTitle, #field1099_wrapper .rd-wrapper .radio .rowTitle , #field1098_wrapper .rd-wrapper .radio .rowTitle, #field1261_wrapper .rd-wrapper .radio .rowTitle, #field1260_wrapper .rd-wrapper .radio .rowTitle , #field1104_wrapper .rd-wrapper .radio .rowTitle, #field1162_wrapper .rd-wrapper .radio .rowTitle , #field1163_wrapper .rd-wrapper .radio .rowTitle, #field1158_wrapper .rd-wrapper .radio .rowTitle , #field1157_wrapper .rd-wrapper .radio .rowTitle, #field1152_wrapper .rd-wrapper .radio .rowTitle , #field1153_wrapper .rd-wrapper .radio .rowTitle, #field1127_wrapper .rd-wrapper .radio .rowTitle , #field1126_wrapper .rd-wrapper .radio .rowTitle, #field1240_wrapper .rd-wrapper .radio .rowTitle , #field1265_wrapper .rd-wrapper .radio .rowTitle , #field1266_wrapper .rd-wrapper .radio .rowTitle , #field1267_wrapper .rd-wrapper .radio .rowTitle , #field1268_wrapper .rd-wrapper .radio .rowTitle , #field1269_wrapper .rd-wrapper .radio .rowTitle, #field1218_wrapper .rd-wrapper .radio .rowTitle , #field1219_wrapper .rd-wrapper .radio .rowTitle, #field1246_wrapper .rd-wrapper .radio .rowTitle, #field1262_wrapper .rd-wrapper .radio .rowTitle, #field1263_wrapper .rd-wrapper .radio .rowTitle, #field1199_wrapper .rd-wrapper .radio .rowTitle, #field1198_wrapper .rd-wrapper .radio .rowTitle , #field1203_wrapper .rd-wrapper .radio .rowTitle , #field1204_wrapper .rd-wrapper .radio .rowTitle , #field1208_wrapper .rd-wrapper .radio .rowTitle , #field1209_wrapper .rd-wrapper .radio .rowTitle, #field1214_wrapper .rd-wrapper .radio .rowTitle , #field1213_wrapper .rd-wrapper .radio .rowTitle, #field1193_wrapper .rd-wrapper .radio .rowTitle, #field1194_wrapper .rd-wrapper .radio .rowTitle, #field1229_wrapper .rd-wrapper .radio .rowTitle, #field1228_wrapper .rd-wrapper .radio .rowTitle, #field1238_wrapper .rd-wrapper .radio .rowTitle, #field1239_wrapper .rd-wrapper .radio .rowTitle, #field1223_wrapper .rd-wrapper .radio .rowTitle, #field1224_wrapper .rd-wrapper .radio .rowTitle, #field1233_wrapper .rd-wrapper .radio .rowTitle, #field1234_wrapper .rd-wrapper .radio .rowTitle, #field1244_wrapper .rd-wrapper .radio .rowTitle, #field1264_wrapper .rd-wrapper .radio .rowTitle, #field1242_wrapper .rd-wrapper .radio .rowTitle, #field1272_wrapper .rd-wrapper .radio .rowTitle, #field1314_wrapper .rd-wrapper .radio .rowTitle, #field1297_wrapper .rd-wrapper .radio .rowTitle, #field1319_wrapper .rd-wrapper .radio .rowTitle, #field1320_wrapper .rd-wrapper .radio .rowTitle, #field1324_wrapper .rd-wrapper .radio .rowTitle, #field1325_wrapper .rd-wrapper .radio .rowTitle{
    
    display: none;
}
#field1250_wrapper .rd-wrapper .radio span.rowTitle .price1 {
    display: inline !important;
}

.shopping-basket-item-inner-container .images-options .image-item p {
display:none;
}

.custom_options .radio .price1 {

    background-image: url(https://aacreads.com/wp-content/themes/aacreads/frontend/assets/pink-price-background.png);
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
    width: 70px;
  
    height: 24px;
    padding: 2px 3px 0px 3px;
    color: #fff;
    position: static;
    margin-top: -115px;
	z-index: 9999999;
}

.custom_options .radio .price1 .woocommerce-Price-currencySymbol, .woocommerce-Price-amount amount {
	color:#fff;
	    font-size: 10px !important;

}
@media(max-width:625px){
	#field1241_wrapper .custom_options .radio .price1, #field1078_wrapper .radio .price1 {
		    right: 0px !important;

}
}

@media(max-width:768px){
    /*.mobile-nav-bar-items .nav-bar-pages-links-container li.menu-item-has-children,
.nav-bar-pages-link-button-outer-container .sub-menu{
    width: 100%;
} */
	
	.custom_options .radio .price1  {
		    margin-top: -105px;

	}
}

.nav-bar-pages-link-button-outer-container .sub-menu {
    visibility: hidden;
}

.nav-bar-pages-link-button-outer-container:hover .sub-menu {
    visibility: visible;
}

.shopping-bask-item-tages-container {
    display: grid; }
.shopping-basket-item-inner-container .images-options {
    border-top: 1px solid #e5e5e5;
}
.shopping-basket-item-inner-container .images-options p {
font-family: 'AvenirLTStdBlack'; }
.shopping-basket-item-inner-container p {
	    margin-bottom: 12px;

}
.shopping-bask-item-tages-container span p {
 
    font-family: 'AvenirLTStdBody'; }

.shopping-bask-item-tages-container span p.title {
    
    text-transform: capitalize;
    font-family: 'AvenirLTStdBlack';

}
.shopping-bask-item-tages-container span {
    background-color: #ffffff;
    justify-content: left;
	height: 20px;
	padding: 0 0px;
 }

.shopping-basket-item-inner-container h6 {
    color: #000000;
  
    font-size: 16px;
    
	font-family: 'AvenirLTStdBlack';}
.shopping-basket-item-inner-container p {
  
	font-size: 16px; }
.shopping-basket-item-inner-container .images-options p {
 display: flex;
  align-items: center; /* Vertical centering */
  justify-content: center; 
    height: 7vh;
}
@media(min-width:761px){
	#field1085_wrapper .rd-wrapper .radio .rowTitle, #field1087_wrapper .rd-wrapper .radio .rowTitle  {
    font-size: 10.5px;
}
	#field1295 {
margin-left: -20px;
    font-size: 11px;
		margin-right: -4px;
}
	#field1181 {
		    font-size: 11px;
    margin-left: -20px;
	}

.shopping-basket-item-container .content-option {
    margin-left: -200px !important; 
	margin-top: 100px;}
	
	#field1089_wrapper .rowTitle .price1 {
position: absolute;
    margin-left: -95px;
    margin-top: -10px;
}
}


.wishlist-fragment {
    background: #ea2a80;
    padding: 0px 0;
}

.wishlist-title-container, table.wishlist_table,.yith_wcwl_wishlist_footer {
    max-width: 1240px;
    margin: 0 auto;
    border-collapse: collapse;
}

.yith_wcwl_wishlist_footer .yith-wcwl-share {
    float: none;
    clear: none;
    margin: 0;
}

.yith-wcwl-share ul {
    margin: 0;
}

.woocommerce-wishlist .navbar-container {
    padding-bottom: 0;
}

.woocommerce .wishlist-title {
    background-image: url(https://aacreads.com/wp-content/themes/aacreads/frontend/assets/product/product-cutsomize-title-background.png);
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%;
    margin: 0 0 20px;
    padding: 15px 30px 10px;
}

.woocommerce .wishlist-title h2 {
    margin: 0;
    padding: 0;
    text-align: center;
    color: #ea2a80;
    font-size: 30px;
    font-family: AvenirLTStdBlack;
    width: 100%;
}


table.wishlist_table tbody td, table.wishlist_table thead th {
    padding: 20px;
}

table.wishlist_table thead th {
    background: #a2c73b;
    border: 0;
    font-size: 16px;
    font-family: 'AvenirLTStdBlack';
    font-weight: normal;
}

table.wishlist_table tbody td {
    border: 2px solid #a2c73b;
    color: #fff;
    font-size: 18px;
    font-family: 'AvenirLTStdBody';
}

table.wishlist_table tbody td a {
    color: #fff;
    text-decoration: none;
    font-family: 'AvenirLTStdBlack';
}

table.wishlist_table {
    font-size: inherit;
    margin-bottom: 50px;
}

.yith-wcwl-share h4.yith-wcwl-share-title {
    color: #fff;
    font-size: 26px;
    font-family: 'AvenirLTStdBody';
    margin: 0 0 20px;
}

.yith-wcwl-share ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.yith-wcwl-share ul li a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 20px;
    transition: .3s;
}

.yith-wcwl-share ul li a:hover {
    background: #1f1d1f !important;
}

.wishlist_table 
 td.product-stock-status span {
    background: rgb(0 0 0 / 22%);
    color: #fff;
    border-radius: 50px;
    padding: 0 15px;
    font-size: 16px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.wishlist_table td.product-stock-status span.wishlist-in-stock {
    background: #297e29;
    color: #fff;
}

table.wishlist_table tbody td.product-add-to-cart .add_to_cart_button {
    height: 45px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #f4931e;
    border-radius: 50px;
    font-size: 17px;
}

table.wishlist_table tbody td.product-thumbnail img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.wishlist_table tr td.product-thumbnail a {
    max-width: none;
}

@media(max-width:1400px){
	.wishlist-title-container {
    padding: 20px 30px;
}
    table.wishlist_table, .yith_wcwl_wishlist_footer {
    padding: 0 30px;
}
}

@media(max-width:768px){
    .wishlist-fragment{
        padding-bottom:0;
    }
/*#field1253_wrapper .rd-wrapper, #field1251_wrapper.rd-wrapper,#field1252_wrapper .rd-wrapper,#field1254_wrapper .rd-wrapper,#field1255_wrapper .rd-wrapper {
    align-items: flex-start !important;
}
#field1251_wrapper .rd-wrapper {
		align-items: baseline !important;
	} */
}

.wishlist_table.mobile {
    padding: 0 30px;
}

.wishlist_table.mobile li {
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.wishlist_table.mobile li .item-wrapper {
    width: 93%;
    display: flex;
    vertical-align: middle;
    margin: 0;
    align-items: center;
    gap: 20px;
}

.wishlist_table.mobile li .item-wrapper .product-thumbnail {
    width: 100px;
    height: 100px;
    overflow: hidden;
    max-width: none;
    min-width: 100px;
    margin: 0;
    border-radius: 10px;
}

.wishlist_table.mobile li .item-wrapper .product-thumbnail a {
    display: block;
    width: 100%;
    height: 100%;
}

.wishlist_table.mobile li .item-wrapper .product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wishlist_table.mobile li .item-wrapper .item-details {
    width: 100%;
    display: block;
}

.wishlist_table.mobile li .item-wrapper .item-details h3 {
    margin: 0 0 10px;
}

.wishlist_table.mobile li .item-wrapper .item-details h3 a {
    font-size: 17px;
    color: #ea2a80 !important;
    font-family: 'AvenirLTStdBlack';
    text-decoration: none;
}

.wishlist_table.mobile li .item-wrapper .item-details .item-details-table,
.wishlist_table.mobile li .additional-info-wrapper table.additional-info{
    margin: 0;
}

.wishlist_table.mobile li .item-wrapper .item-details .item-details-table td.label,
.wishlist_table.mobile li .additional-info-wrapper table.additional-info td.label{
    color: #000;
    font-size: 15px;
    font-family: 'AvenirLTStdBody';
    font-weight: normal;
    padding: 0;
}

.wishlist_table.mobile li .item-wrapper .item-details .item-details-table td.value ,
.wishlist_table.mobile li .additional-info-wrapper table.additional-info td.value{
    padding: 0;
    color: #000;
    font-family: 'AvenirLTStdBlack';
    font-weight: normal;
    vertical-align: middle;
    text-align: initial;
    font-size: 16px;
    margin: 0 5px;
    display: inline-block;
}

.wishlist_table.mobile li .additional-info-wrapper {
    border-top: 1px solid #dfdfdf;
    margin-top: 15px;
    padding: 15px 0 0;
}

.wishlist_table.mobile li .additional-info-wrapper .product-remove {
    position: absolute;
    left: 8px;
    top: 8px;
}

.wishlist_table.mobile li .additional-info-wrapper .product-remove a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #ea2a80;
    border-radius: 100%;
    color: #fff;
    box-shadow: 0 0 0 2px #fff;
}


.wishlist_table.mobile li .additional-info-wrapper .product-add-to-cart {
    margin: 15px 0 0;
}

.wishlist_table.mobile li .additional-info-wrapper .product-add-to-cart a {
    min-width: 130px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    height: 40px;
    background: #ea2a80;
    color: #fff;
    text-decoration: none;
    font-family: 'AvenirLTStdBody';
    border-radius: 50px;
    padding: 0 20px;
}

p.wishlist-empty, table.wishlist_table tbody td.wishlist-empty {
    margin: 20px 0 0;
    font-family: AvenirLTStdBlack;
    background: #fff;
    border-radius: 15px;
    color: #000;
    padding: 20px;
}

.yith_wcwl_wishlist_footer>div.wishlist-actions {
    margin: 0;
}


.wc-price-based-country {

    max-height: 22px;
    max-width: 22px;
    border: 0px;
	margin-right:5px;
}
.wcpbc-country-switcher {
max-height: 22px;
    max-width: 22px;
    width: 22px;
     filter: brightness(0) invert(1);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    z-index: -999999999;
    -webkit-appearance: none;
    -moz-appearance: none;
   
    background: url(https://aacreads.com/wp-content/uploads/2024/12/location-icon.png) no-repeat right center;
    padding: 10px;
    border: 0px solid #ccc;
	outline: none;
	
}

.wc-price-based-country:focus {
    border: none !important;
}

.wcpbc-country-switcher:hover {
    top: -5px;
}
span.hint-input {
	position: static !important;
}
#field1078_wrapper .radio .price1 , #field1241_wrapper .radio .price1 , #field1167_wrapper .radio .price1 , #field1247_wrapper .radio .price1 , #field1116_wrapper .radio .price1 , #field1245_wrapper .radio .price1, #field1165_wrapper .radio .price1 , #field1248_wrapper .radio .price1 , #field1105_wrapper .radio .price1, #field1243_wrapper .radio .price1{
position: absolute;
    margin-top: 133px; 
	margin-left: 15%;
}

@media only screen and (max-width: 761px) {
	span.hint-input {
position: absolute !important;
    right: 0px !important;
    left: auto !important;
    width: 15px !important;
    height: 15px !important;
}
#field1078_wrapper .radio .price1 ,  #field1167_wrapper .radio .price1 ,#field1116_wrapper .radio .price1 ,#field1165_wrapper .radio .price1 , #field1105_wrapper .radio .price1 {
right: 0px !important;
    
	margin-top: 24%;
    margin-right: 1%;
}
	#field1241_wrapper .radio .price1 , #field1247_wrapper .radio .price1 , #field1245_wrapper .radio .price1 ,#field1248_wrapper .radio .price1 , #field1243_wrapper .radio .price1{

   margin-top: 24%;
    margin-right: 1% !important;
}
	#field1247_wrapper .rd-wrapper .radio , #field1245_wrapper .rd-wrapper .radio ,#field1248_wrapper .rd-wrapper .radio, #field1243_wrapper .rd-wrapper .radio {
	flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 15px;
    align-items: center;
	}
	
	.shopping-basket-item-inner-container .images-options p {
   
    height: auto;
}
.shopping-basket-item-inner-container .images-options .image-item {
    padding: 3px;
}
.shopping-basket-item-inner-container p {
    font-size: 12px; }
	
	.product-form-hint p {
   
		width: 92% !important; }
	
	.rd-wrapper {
align-items: flex-start;
 margin-bottom: 50px;

	}
	#field1089_wrapper .rowTitle .price1 {
margin-top: -38px;
    margin-left: -10px;
}

}



.shopping-basket-item-price-container .quantity , button.button[name="update_cart"] {
 
    display: none;
}
.error.product-form-hint p , .product-form-hint p {
   height: auto;
    font-family: AvenirLTStdBody;
   
}
.product-form-hint p {
 line-height: 22px !important;
}
span.acepted-types , .rates-and-reviews-item-container {
   
    font-family: AvenirLTStdBody;
}

table.wishlist_table {
    margin: 0 auto;
}

p.wishlist-empty, table.wishlist_table tbody td.wishlist-empty {
    border-radius: 0;
}


.yith_wcwl_wishlist_footer {
    padding-top: 50px;
}

.error.product-form-hint p {
	width: 92% !important;
}
.yith-wcwl-add-to-wishlist {
   
    font-family: AvenirLTStdBody;
}

.wpcf7 form.sent .wpcf7-response-output {
   
    color: #fff;
}

.tooltip.active .tooltiptext , .tooltip .tooltiptext span  {
    font-family: AvenirLTStdBody !important;
    min-width: 233px;
}

.tooltip .tooltiptext {
right: auto;
padding-left:5px !important;
padding-right:5px !important;}
.error.product-form-hint p {
  
    border: 1px solid #ea2a80 !important;
    color: #ea2a80 !important; }
.eocustomgroup.input-error {
    box-shadow: 0px 3px 2px -1px #ea2a80 !important; }

.customizing-steps-input-row .woocommerce-Price-amount {
    font-size: 12px !important;

}
.custom_options .radio .price1 {
 
    margin-top: -25px;
	margin-left: 8%;}

#field1275_wrapper,#field1284_wrapper, #field1277_wrapper, #field1278_wrapper , #field1276_wrapper {
flex-flow: column;
    align-items: flex-start;


}
#field1275_wrapper label, #field1284_wrapper label, #field1277_wrapper label, #field1278_wrapper label , #field1276_wrapper label {
	margin-bottom: 15px; }

@media (max-width: 768px) {
.custom_options .radio .price1 {
    margin-top: -25px;
    font-size: 12px !important;
    height: 20px;
    margin-left: 5%;
}
	.nav-bar-pages-link-button-outer-container .sub-menu {
    background: #fff;
    position: absolute !important;
}
	.nav-bar-pages-link-button-outer-container a {
		font-size: 13px; }
	
	#field1295_wrapper .acepted-types {
    position: absolute;
    right: 0px;
    top: 45px;
}
	
	.top-bar {
    font-size: 11px;
}
}

.customizing-steps-input-row span bdi {
    font-size: 12px !important;
}

.customize-story-container-title h2:first-child {

padding-bottom: 0px;
    margin-bottom: -20px;
}

.custom_options .checkbox.st2 label .rowTitle {
   
    text-align: justify;
}
.woocommerce-checkout-payment.section-wrapper .form-row.place-order p {
   
    text-align: justify;
}
#field1295_wrapper .woocommerce-Price-amount {
margin-left: -3px;
}
#field1295_wrapper .price1 {
font-size: 13px;
}
.shopping-bask-item-tages-container span p.title {
  
    margin-right: 5px;
}

.shopping-basket-item-inner-container .images-options .image-item .covercart p {
    display: inline-flex !important;
}

.shopping-basket-item-inner-container .covercart {
font-family: AvenirLTStdBody;
    position: absolute;
    margin-top: 48px;
    margin-left: -60px;
}
.woocommerce-table--order-details .shipped_via {
    display: none;
}
@media (max-width: 400px) {
	.customize-story-container-title h2:first-child {

		font-size: 20px; }

.custom_options label {
    font-size: 13px; }

.customizing-steps-input-row input {
    font-size: 11px;
}

.acepted-types {
    font-size: 10px !important;
}


.custom_options .checkbox.st2 label .rowTitle {
    
    font-size: 13px; }

.custom_options .checkbox.st2 label .rowTitle::before {
    width: 15px;
    height: 15px;
    min-width: 15px;
}

span.hint-input {
   
    width: 12px !important;
    height: 12px !important;
    line-height: 12px;
}

.step-button {
    font-size: 13px;
    min-width: 80px;
}
	
	.we-spread-item h4 {

		font-size: 17px; }
	.error.product-form-hint p {
   
    font-size: 14px;
}
	.order-box {
    max-width: 100%;
    padding: 30px 10px;
		    padding-bottom: 100px;

}

 .woocommerce-order-received header .navbar-content-container, .woocommerce-order {
    padding-inline: 10px;
}

table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details td {
    padding: 15px;
    border: 1px solid #E5E5E5;
    color: #5C5C5C;
}

table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details td ul.wc-item-meta li {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
}
}

/*.top-bar {

    height: 65px !important;
}*/


table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details td ul.wc-item-meta p .woocommerce-Price-amount {
display:none;
}

.woocommerce-order-pay .order-box::before {

display:none;
}

@media(min-width:768px){ 
	.shopping-basket-item-inner-container .images-options .customize-images-ca {
		display: flex; }
	
}
@media(max-width:768px){ 
.shopping-basket-item-inner-container .images-options {
display: block;
}

.shopping-basket-item-inner-container .images-options .customize-images-ca {
display: flex;
gap: 30px;
}
	.woocommerce-table__product-name .shopping-basket-banner-image {
margin-bottom: 20px !important;
}
	.yith-wcwl-add-to-wishlist .feedback {
display: block;
}
}

.yith-wcwl-wishlistexistsbrowse a {
   
    text-decoration: underline !important;
    text-underline-position: under !important;
}

.rates-and-reviews-item-container {
    
    text-align: justify;
}

.woocommerce-account .woocommerce-ResetPassword .woocommerce-Input {
    width: 90%; }

.woocommerce-lost-password .woocommerce-notices-wrapper {
    width: 100%;
}

.woocommerce-lost-password .woocommerce-message, .woocommerce-lost-password .woocommerce-error, .woocommerce-lost-password .woocommerce-info {
    top: -100px;
}

@media(max-width:768px){
    .woocommerce-lost-password .woocommerce-error {
    position: relative;
    top: 0;
    right: auto;
    left: auto;
}

.woocommerce-lost-password .woocommerce-notices-wrapper {
    background: transparent;
}
}

@media(max-width:768px){
    .swiper-container.customizing-steps-container {
    overflow: hidden;
}
}


@media (min-width: 761px) {
.shopping-basket-item-container .content-option {
    margin-top: 130px;
}
.cart-total-container {
 
    width: 30%;
}
}

.woocommerce-form-coupon-toggle {
    
    background: #3ba5db;
}
form.checkout_coupon.woocommerce-form-coupon {
    background: #3ba5db;
}

@media (max-width: 600px) {
	.woocommerce-checkout .woocommerce-error {
   margin-top: -140px;
}
}

.shopping-basket-item-inner-container p {
    
    text-align: center;
}
.top-bar strong {
background: #a2c73b;
padding: 2px 10px 2px 10px;
border-radius: 50px;
}
.top-bar p {
line-height: 18px; }



/*
.top-bar p {
	display: none;
}*/
.top-bar {
 
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.desktop-top {
display: flex;
max-width: 1165px;
margin: 0 auto;
height: 3rem; 
line-height: 3rem;
}

.desktop-top .top-text {
width:75%;
}

.desktop-top .delivery-top {
width:12.5%;
border-left: 1px solid #fff;
}

.desktop-top .cod-top {
width:12.5%;
border-left: 1px solid #fff;
}
.desktop-top .mobile-top {
display:none;
}
@media (max-width: 761px) {
.desktop-top .desktop-text {
display: none;
}
	.desktop-top .mobile-top {
display:inline;
		width: 55%;
}
	.desktop-top.local .mobile-top {
display:inline;
		width: 75%;
}
	.desktop-top .delivery-top {
	width: 15%;
    border-left: 1px solid #fff;
    padding: 1%;
	padding-top: 3%; }
	
	.desktop-top .cod-top {
    width: 12.5%;
    border-left: 1px solid #fff;
}
	.desktop-top {
	display: flex;
    max-width: 1165px;
    margin: 0 auto;
    height: 3rem;
	line-height: .7rem; }
	
	.top-bar {
    font-size: 10px;
}
	.desktop-top .mobile-top {
		width: 55%;
    padding-top: 5px;
	}
	.desktop-top .top-text {
width:100%;
		line-height: 1.2rem;
}
	.desktop-top .cod-top {
		width: 25%;
	    padding: 1%;
}
}
.desktop-top {
   
    margin-top: -18px;
}
/* .what-you-can-customize-items-container a:nth-child(3) .what-you-can-customize-item {
    height: 290px;
    background-color: #faf8f9;
}
.what-you-can-customize-items-container a{
	text-decoration: none;
}
.what-you-can-customize-items-container img:hover{
	flex-grow: 0.3;
} */