* {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    outline: none;
}

body {
    font-family: 'Raleway', sans-serif;
    color: #555454;
    background-color: #fefefe;
}

body::-webkit-scrollbar {
    width: 0;
}

/* globle styling */
img {
    width: 100%;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #555454;
}

hr {
    width: 95vw;
    margin: 0 auto;
}

p {
    line-height: 30px;
}

/* header */
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 80px;
    padding: 0 40px;
    background-color: #fff;
    box-shadow: 0 0 5px 2px rgba(50, 50, 50, 0.25);
}

.logo {
    height: 100%;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: #11101b;
}

.hamburger {
    display: none;
}

.nav-bar ul,
.social-icons ul {
    display: flex;
}

.nav-bar ul li:last-child {
    margin-right: 0;
}

.nav-bar ul li a,
.social-icons ul li a {
    display: block;
    color: #11101b;
    font-size: 18px;
    padding: 10px;
    border-radius: 50px;
    transition: all ease 0.2s;
    margin: 0 5px;
    font-size: 16px;
}

.nav-bar ul li a:hover,
.social-icons ul li a:hover {
    color: #11101b;
}

.nav-bar ul li a.active,
.social-icons ul li a.active {
    color: goldenrod;
}

.nav-bar ul .submenu {
    position: absolute;
    width: 200px;
    background: #ffff;
    border-radius: 5px;
    box-shadow: 0 20px 4px #00000020;
    margin-top: -50px;
    opacity: 0;
    z-index: -999;
    transition: all ease 0.5s;
}

.nav-bar ul li:hover .submenu {
    z-index: 99;
    opacity: 1;
    margin-top: 0;
}

.nav-bar ul .submenu li {
    margin: 0;
    width: 100%;
}

.nav-bar ul .submenu li a {
    padding: 10px 20px;
    width: 100%;
    font-size: 15px;
}

.nav-bar ul .submenu li p {  
  padding: 15px 20px 5px 20px;
  width: 100%;
  font-weight: 600;
  text-transform: capitalize;
}

.notifications-total {
    position: absolute;
    top: 15px;
    margin-left: 10px;
    font-size: 10px;
    background-color: rgb(235, 210, 72);
    color: #fff;
    padding: .2rem;
    width: 20px;
    height: auto;
    border-radius: 100%;
    display: flex;
    justify-content: center;
}

/* banner section */
.banner {
    background: linear-gradient(to right, #000, #333);
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
    margin-top: 80px;
}

.banner h1 {
    margin-bottom: 1rem;
}

.banner p {
    font-size: 18px;
}

/* longrich market buttons */
.longrich-markets {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px;
}

.longrich-market-item {
    margin: 10px;
    margin-bottom: 20px;
}

.longrich-market-item a {
    background-color: #c5c0c0;
    border: 0.5px solid #ccc;
    color: #252525;
    padding: 10px;
    height: auto;
    border-radius: 10px;
    font-size: 15px;
}

.longrich-market-list,
.longrich-search-bar {
    width: 48%;
}

.longrich-market-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.longrich-search-form {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.longrich-search-form .form-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.longrich-search-bar input,
.longrich-search-bar select {
    padding: 8px;
    color: #555454;
    border: 1px solid lightgray;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    height: 40px;
    margin-right: 10px;
}

.longrich-search-bar button {
    outline: none;
    background-color: #c5c0c0;
    border: 0.5px solid #ccc;
    color: #252525;
    padding: 10px;
    height: auto;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
}

/* market details */
.longrich-markets-details {
    margin: 0 20px 20px 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border: 0.6px solid #ccc;
    overflow: hidden;
}

/* market content left */
.longrich-content-left {
    width: 70%;
    padding: 20px;
    border-right: 0.6px dotted #808080;
    height: auto !important;
}

.market-details-right-body {
    width: 100%;
    border-bottom: 0.6px dotted #ccc;
}

.market-details-right-body::-webkit-scrollbar {
    width: 0;
}

.market-details-right-item,
.item-title-top {
    display: flex;
    flex-direction: row;
    align-content: center;
    flex-wrap: wrap;
}

.market-details-right-item {
    padding-bottom: 20px;
}

.market-details-right-item:not(:first-child) {
    padding-top: 10px;
}

.market-details-right-image {
    width: 20%;
    height: 180px;
    border: 0.6px dotted #ccc;
    border-radius: 5px;
    object-fit: contain;
}

.market-details-right-item .market-details-right-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.market-details-right-item .market-details-right-image img:hover {
    cursor: pointer;
}

.market-details-right-details {
    width: 80%;
    padding-left: 10px;
}

.longrich-content-details {
    height: 650px;
    width: 100%;
    overflow: hidden;
    overflow-y: auto;
}

.product-status {
    width: 20px;
    height: 20px;
    color: #239B56 !important;
    margin-left: 5px;
}

.longrich-content-details::-webkit-scrollbar {
    width: 0;
}

.market-details-left-image {
    margin-bottom: 10px;
}

.large-image {
    height: 400px;
}

.large-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.small-images {
    display: none;
    gap: 30px;
    grid-template-columns: repeat(10, 1fr);
    overflow-x: auto;
    scrollbar-width: none;
    padding: 20px;
}

.small-images-item {
    width: 150px;
    height: auto;
}

.small-images .small-images-item img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border: 0.6px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 5px 2px rgba(50, 50, 50, 0.25);
}

.market-details-left-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* pagnations */
.market-details-right-page {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.market-details-right-page ul {
    display: flex;
    flex-direction: row;
    font-size: 17px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.market-details-right-page ul li {
    padding: 10px;
}

.market-details-right-page ul li:not(:last-child) {
    border-right: 1px solid #ccc;
}

/* market details right */
.market-details-right {
    width: 85%;
}

.market-details-right,
.comments-item,
.location {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.market-details-right-lists {
    width: 60%;
    border-right: 0.6px dotted #808080;
    padding: 10px 20px 10px 20px;
}

.search-form {
    margin-bottom: 20px;
}

.search-form input {
    outline: none;
    padding: 10px;
    font-size: 15px;
    height: 30px;
    width: 290px;
    outline: none;
    border: 1px solid #b6b3b3;
    border-radius: 5px;
}

.longrich-content-right {
    width: 30%;
    padding: 20px;
    height: auto;
}

.longrich-content-right-title h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.longrich-content-right-top ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.longrich-content-right-top ul li {
    padding: 10px;
}

.longrich-content-right a {
    background-color: #c5c0c0;
    border: 0.5px solid #ccc;
    color: #252525;
    padding: 5px;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
}

.longrich-content-right-middle .longrich-content-right-title {
    margin-top: 30px;
}

/* product review */
.product-review-section {
    margin-top: 20px;
    margin-bottom: 10px;
}

.product-review-post-heading {
    margin-bottom: 8px;
}

.product-review-comments-form {
    display: flex;
    flex-wrap: wrap;
}

.product-review-comments-form input {
    outline: none;
    padding: 8px;
    font-size: 15px;
    height: auto;
    width: 245px;
    outline: none;
    border: 1px solid #b6b3b3;
    border-radius: 5px;
    margin-right: 10px;
}

.product-review-comments-form input:hover {
    box-shadow:0 10px 20px rgba(148, 147, 147, 0.6);
}

.product-review-comments-form button {
    background-color: goldenrod;
    color: #f3f3f3;
    border: 0.5px solid goldenrod;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
    width: auto;
}

.middle-section {
    margin-top: 20px;
}

/* comment section */
.comments-body-form,
.comments-body-form .form-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}

.comments-body-form {
    padding: 10px;
    margin-bottom: 5px;
}

.comments-body-form .form-group img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    margin-right: 20px;
}

.comments-body-form .form-group input {
    outline: none;
    padding: 10px;
    font-size: 15px;
    height: 40px;
    width: 245px;
    outline: none;
    border: 1px solid #b6b3b3;
    border-radius: 5px;
    margin-right: 20px;
}

.form-group input:hover,
.search-form input:hover {
    box-shadow:0 10px 20px rgba(148, 147, 147, 0.6);
}

.comments-body-form  button {
    background-color: #c5c0c0;
    border: 0.5px solid #ccc;
    border: none;
    padding: 10px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
}

/* test section */
.item-title,
.item-details,
.item-title-top {
    margin-bottom: 8px;
}

.item-title-top {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.item-title-top a {
    font-weight: bold;
    color: #252525;
    letter-spacing: 1px;
    margin-right: 10px;
    font-size: 18px;
    margin-bottom: 10px;
}

.item-title-top .item-status {
    background-color: #239B56;
    border: 1px solid #239B56;
    border-radius: 5px;
    padding: 5px;
    font-size: 12px;
    color: #fff;
    margin-left: 10px;
}

.item-title-top span {
    color: goldenrod;
    margin-left: 10px;
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.item-title-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #555454;
    font-weight: 600;
    font-size: 16px;
}

.item-title-bottom p {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.item-title-bottom svg {
    width: 20px;
    height: 20px;
}

.item-details {
    margin-top: 10px;
}

.items-stock {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.items-stock p span {
    color: #555454;
    font-style: italic;
    margin-left: 5px;
}

.items-comments {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.items-comments button {
    background-color: green;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    padding: 13px;
    border-radius: 20px;
    font-family: Poppins;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 10px;
}

.items-comments button a,
.items-comments button svg {
    color: #eee;
}

.items-comments button svg {
    margin-left: 5px;
    width: 30px;
    height: 30px;
}

.items-comments p:not(:first-child) {
    margin-right: 10px;
}

.market-details-rights-comments {
    width: 40%;
}

.events-details-rights-comments h1:not(:first-child) {
    margin-top: 20px;
}

.market-details-rights-comments .title,
.market-details-left .title,
.events-details-rights-comments .title {
    margin: 10px 0 10px 10px;
    font-weight: bold;
    color: #555454;
    font-size: 20px;
}

.market-details-rights-comments .title:not(:first-child) {
    margin-top: 40px;
}

.market-details-rights-comments ul,
.events-details-rights-comments ul {
    margin: 10px 0 10px 10px;
    width: 100%;
}

.market-details-rights-comments ul li,
.market-details-left ul li,
.events-details-rights-comments ul li {
    width: 100%;
    padding: 10px;
}

.market-details-rights-comments ul li:not(:first-child):hover,
.market-details-left ul li:not(:first-child):hover,
.market-details-right-item:not(:first-child):hover,
.events-details-rights-comments ul li:not(:first-child):hover {
    border-top: 0.6px dotted #ccc;
}

.market-details-rights-comments ul li:not(:last-child):hover,
.market-details-left ul li:not(:last-child):hover,
.market-details-right-item:not(:last-child):hover,
.events-details-rights-comments ul li:not(:first-child):hover {
    border-bottom: 0.6px dotted #ccc;
}

.market-details-rights-comments ul li:not(:first-child),
.market-details-left ul li:not(:last-child):hover,
.events-details-rights-comments ul li:not(:last-child) {
    padding-top: 10px;
}

.market-details-rights-comments ul li:not(:last-child),
.market-details-left ul li:not(:last-child):hover,
.events-details-rights-comments ul li:not(:last-child) {
    padding-bottom: 10px;
}

.market-details-rights-comments ul li div p,
.events-details-rights-comments ul li div p {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    font-size: 15px;
}

.market-details-rights-comments ul li .name,
.events-details-rights-comments ul li .name {
    text-transform: capitalize;
    font-weight: bolder;
    font-size: 17px;
    letter-spacing: 1px;
}

.market-details-rights-comments ul li .product-rate,
.events-details-rights-comments ul li .product-rate {
    color: #808080;
}

.market-details-rights-comments ul li div p,
.events-details-rights-comments ul li div p {
    letter-spacing: 1px;
}

.market-details-rights-comments ul li div p:not(:last-child),
.market-details-rights-comments ul li div:not(:last-child) {
    margin-bottom: 10px;
}

.market-details-rights-comments ul li div p span:not(:first),
.events-details-rights-comments ul li div p span:not(:first) {
    margin-left: 10px;
}

.market-details-rights-comments ul li div p span,
.events-details-rights-comments ul li div p span {
    margin-right: 10px;
}

.product-rating {
    font-style: italic;
    color: #808080;
    font-size: 14px;
}

.market-details-rights-comments ul li div .product-orders,
.events-details-rights-comments ul li div .product-orders {
    color: goldenrod;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.market-details-rights-comments ul li div .product-orders svg {
    margin-right: 5px;
    width: 20px;
    height: 20px;
}

.reviews {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.reviews svg {
    margin-right: 5px;
    width: 20px;
    height: 20px;
}

.market-details-comments-body {
    width: 100%;
}

/*.comments-body {
    height: 455px;
    overflow-x: hidden;
}

.comments-body::-webkit-scrollbar {
    width: 0;
}*/

.comments-item:not(:last-child) {
    padding-bottom: 10px;
}

.comments-item-left {
    margin-right: 10px;
    width: auto;
}

.comments-item-left img {
    height: 70px;
    width: 70px;
    border-radius: 100%;
}

.comments-item-right {
    width: 100%;
}

.user-name {
    margin-top: 8px;
    text-transform: capitalize;
    font-weight: bolder;
    font-size: 15px;
    letter-spacing: 1px;
}

.user-name .rank {
    color: goldenrod;
    font-style: italic;
}

.entry-level {
    margin-top: 8px;
    color: #808080;
}

.message {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 400;
    color: #383838;
    letter-spacing: 1px;
    display: block;
}

.message svg {
    width: 12px;
}

.message svg:first-child {
    transform: rotate(180deg); /* Rotate 180 degrees */
}

.location {
    margin-top: 10px;
}

.location a,
.location p {
    font-size: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.location a {
    background-color: transparent !important;
    border: none;
}

.location a:not(:last-of-type) {
    margin-right: 10px;
}

.location a svg,
.location p svg {
    margin-right: 5px;
    width: 16px;
    height: 16px;
}

.comments-link {
    padding: 20px;
    text-align: center;
}

/* events sections */
.events-details-right-lists {
    width: 60%;
    border-right: 0.6px dotted #808080;
    padding-right: 20px;
    margin-top: 20px;
}

.events-details-rights-comments {
    margin-top: 20px;
    width: 40%;
}

/* footer */
footer {
    background: #252525;
    color: #f3f3f3;
    padding: 30px;
}

.footer-container {
    display: flex;
    flex-direction: row;
}

footer h2 {
    padding: 10px 0;
    line-height: 1.3;
    font-size: 1rem;
    font-weight: bold;
}

.title-contact {
    color: #f3f3f3;
    font-size: 1rem;
    font-weight: bold;
    margin-top: 20px;
}

.footer-left,
.footer-left-one, 
.footer-right,
.footer-right-one {
    width: 25%;
    margin: 0 20px;
}

footer p {
    color: #808080;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-left p {
    margin-bottom: 10px !important;
    font-size: 0.9rem;
}

.contact-details {
    margin-bottom: 20px;
}

.contact-details p {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.contact-details p svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    color:  #fff;
}

footer .copyright {
    margin-bottom: 0;
}

footer > p {
    text-align: center;
    opacity: 0.8;
    margin-top: 20px;
}

footer ul li, footer ul li a {
    margin-bottom: 15px;
    color: #808080;
    list-style: none;
    font-weight: 300;
}

footer ul li a:hover {
    text-decoration: underline;
}

.social-icon,
.payment-methods {
    margin-bottom: 20px;
}

.footer-left .social-icon {
    display: flex;
    flex-direction: row;
    align-content: center;
    flex-wrap: wrap;
}

.social-icon span a {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.footer-left svg {
    width: 15px;
    height: 15px;
}

.footer-left span {
    background-color: #555454;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    border-radius: 50%;
    margin-right: 10px;
}

.footer-left span a {
    color: #eee;
}

.footer-left-one ul li {
    text-transform: uppercase;
    font-size: 14px;
}

.footer-right i {
    font-size: 1rem;
    color: #808080;
}

.footer-right input {
    font-size: 18px;
    border: none;
    background: transparent;
    outline: none;
    color: #808080;
    padding-right: 10px;
    width: 100%;
}

.footer-right div{
    display: flex;
    align-items: center;
    justify-content: start;
    width: 200px;
    padding: 10px 0;
    border-bottom: 1.6px solid #808080;
    margin-bottom: 20px;
}

.footer-right-one ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.footer-right-one ul li {
    list-style: none;
    font-weight: 300;
}

.footer-right-one ul img {
    border-radius: 3px;
    width: 100px;
    height: 100px;
}

/* Popup modules */
.stockist-popup {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: 0.3s;
    transform: scale(1);
    display: none;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.stockist-content {
    position: relative;
    height: 500px;
    width: 600px;
    padding: 1.6rem;
    background-color: #fff;
    border-radius: 5px;
    font-weight: normal;
    color: #808080;
}

.stockist-close svg {
    position: absolute;
    top: 0;
    right: 0;
    margin: 15px;
    width: 15px;
    cursor: pointer;
}

.stockist-form {
    padding: 10px;
}

.stockist-title {
    text-align: center;
    margin-bottom: 20px;
}

.stockist-title h1 {
    font-size: 30px;
    color: #666;
    margin-bottom: 10px;
}

.stockist-title hr {
    margin-bottom: 10px;
}

.stockist-title p {
    display: block;
}

.stockist-popup p span {
    color: red;
}

.stockist-form form .form-group {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.stockist-form form .form-group .form-input {
    width: 47%;
    display: flex;
    flex-direction: column;
}

.stockist-form form .form-group input {
    width: 100%;
    height: 30px;
    margin: 0;
    border: 1px solid #b6b3b3;
    border-radius: 5px;
    color: #808080;
    font-size: 15px;
    padding: 5px;
}

.stockist-form form .form-group select {
    font-size: 15px;
    padding: 5px;
    outline: none;
    border: 1px solid #b6b3b3;
    border-radius: 5px;
    color: #808080;
}

.stockist-form form .form-group label {
    margin-bottom: 10px;
    font-weight: normal;
    color: #808080;
    font-size: 15px;
    letter-spacing: 1px;
}

.stockist-results {
    padding: 10px 10px 0 10px;
    letter-spacing: 1px;
    height: 250px;
    overflow-x: auto;
}

.stockist-results p span {
    margin-left: 10px;
    color: goldenrod;
}

.stockist-items{
    width: 100%;
    margin-top: 20px;
}

.stockist-items::-webkit-scrollbar {
    width: 0;
}

.stockist-items .stockist-item {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}

.stockist-items .stockist-item:not(:last-child) {
    border-bottom: 0.6 solid #808080;
}

.stockist-items .stockist-item .stockist-item-left {
    width: 25%;
    margin-right: 10px;
    object-fit: contain;
}

.stockist-items .stockist-item .stockist-item-right {
    width: 70%;
}

.stockist-items .stockist-item .stockist-item-right h1 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-weight: bold;
    color: #555454;
    font-size: 20px;
    margin-bottom: 10px;
}

.stockist-items .stockist-item .stockist-item-right p {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.stockist-items .stockist-item .stockist-item-right p svg {
    width: 23px;
    height: 23px;
    margin-right: 7px;
}

.stockist-areas span {
    margin-right: 10px;
}

.stockist-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.stockist-buttons button {
    background-color: green;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    padding: 10px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    margin-bottom: 10px;
    color: #ccc;
    margin-left: 10px;
}

.stockist-contact-details {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    letter-spacing: 0px;
}

.errortext,
.error {
    background-color: rgb(249, 192, 192);
    border: 1px solid red;
    padding: 5px;
    text-transform: capitalize;
    color: red;
    font-size: 13px;
    border-radius: 5px;
    width: fit-content;
    margin-bottom: 10px;
    display: none;
}

.successtext,
.success {
    background-color: rgb(132, 228, 103);
    border: 1px solid green;
    padding: 5px;
    text-transform: capitalize;
    color: green;
    font-size: 13px;
    border-radius: 5px;
    width: fit-content;
    margin-bottom: 10px;
    display: none;
}

/* popups modules */
.member-services-popup,
.delivery-options-popup,
.parcel-popup,
.success-popup,
.contact-us-popup,
.search-popup,
.newsletter-popup {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: 0.3s;
    transform: scale(1);
    display: none;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.member-services-content,
.contact-us-content,
.search-content,
.newsletter-content {
    position: relative;
    height: 500px;
    width: 700px;
    overflow: hidden;
    overflow-y: auto;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
}

.member-services-content::-webkit-scrollbar {
    width: 0px;
}

.member-close svg,
.delivery-close svg,
.contact-us-close svg,
.search-close svg,
.newsletter-close svg {
    position: absolute;
    top: 0;
    right: 0;
    margin: 10px;
    cursor: pointer;
}

.member-title,
.delivery-title,
.contact-us-title,
.search-title,
.newsletter-title {
    text-align: center;
    padding: 20px;
}

.member-title h2,
.delivery-title h2,
.contact-us-title h5,
.search-title h6,
.newsletter-title h5 {
    font-weight: bold;
    color: #47453e;
    font-size: 30px;
    margin-bottom: 10px;
}

.member-title h2 span,
.delivery-title h2 span {
    text-transform: capitalize;
    color: goldenrod;
}

.member-title hr,
.delivery-title hr,
.contact-us-title hr,
.search-title hr,
.newsletter-title hr {
    margin-block-end: 0px;
    margin-block-start: 0px;
    width: 70px;
    height: 5px;
    border: none;
    background-color: goldenrod;
    border-radius: 5px;
}

.member-middle {
    height: auto;
    overflow-x: hidden;
}

.member-middle p {
    color: #555454;
    font-size: 16px;
}

.member-service-list ul li {
    margin-bottom: 20px;
}

.member-service-list ul li a {
    font-weight: 600;
    font-size: 16px;
    color: #47453e;
}

.member-service-list ul li p {
    margin-top: 8px;
}

.member-service-delivery h2,
.member-service-list h2 {
    font-weight: bold;
    color: #47453e;
    font-size: 20px;
    margin-bottom: 20px;
}

.member-service-delivery div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.member-service-delivery div label {
    font-weight: bold;
    font-size: 16px;
    color: #47453e;
    margin-left: 7px;
    cursor: pointer;
}

.member-service-delivery p:not(:last-child) {
    margin-bottom: 20px;
}

.member-service-delivery p span,
.member-service-list ul li p span {
    color: goldenrod;
    cursor: pointer;
}

.member-service-delivery p a,
.member-service-list ul li p a {
    color: blue;
    font-weight: normal;
    cursor: pointer;
}

/* delivery option module */
.delivery-options-content {
    position: relative;
    height: auto;
    width: 700px;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
}

/* parcel module */
.parcel-popup-content {
    position: relative;
    height: auto;
    width: 600px;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
}

.member-title p {
    margin-top: 20px;
}

.parcel-popup-content span {
    color: red;
}

.parcel-form {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid lightgrey;
    border-radius: 10px;
    width: 100%;
    overflow-x: auto;
    height: 300px;
}

.parcel-form::-webkit-scrollbar,
.contact-us-content::-webkit-scrollbar {
    width: 0;
}

.parcel-form .form-col {
    width: 100%;
    margin-bottom: 20px;
}

.parcel-form .form-group {
    display: flex;
    flex-direction: column;
}

.parcel-form .form-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.parcel-form .form-row .form-group {
    width: 48%;
}

.parcel-form .form-group label {
    font-size: 16px;
    color: #47453e;
    margin-bottom: 10px;
}

.parcel-form .form-group label span {
    color: red;
}

.parcel-form .form-group input {
    padding: 5px;
    padding-left: 6px;
    padding-right: 6px;
    color: #555454;
    border: 1px solid lightgray;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
}

.parcel-form .form-col textarea {
    resize: none;
    width: 100%;
    height: 60px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid lightgray;
    border-radius: 10px;
    outline: none;
}

.parcel-form .form-col select {
    padding: 5px;
    padding-left: 6px;
    padding-right: 6px;
    border: 1px solid lightgray;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
}

.parcel-form button {
    border: #3e8e41;
    background-color: #3e8e41;
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    padding: 13px;
    width: 100%;
    cursor: pointer;
}

/* success popup */
.success-popup-content {
    position: relative;
    height: auto;
    width: 700px;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
}

/* newsletter popup */
.newsletter-title {
    display: none;
}

.newsletter-form-content {
    margin-top: 20px;
}

.newsletter-form-left h5 {
    font-weight: bold;
    color: #47453e;
    font-size: 20px;
    margin-bottom: 10px;
}

.newsletter-form-left p {
    font-size: 15px;
}

.newsletter-form-left p span {
    font-weight: 600;
}

.newsletter-form-left ul li svg {
    width: 26px;
    height: 26px;
    padding: 5px;
    background: goldenrod;
    color: #fff;
    margin-right: 8px;
}

.newsletter-form-left ul li {
    font-size: 14px;
}

/* contact us popup */
.contact-us-form-content,
.newsletter-form-content {
    color: #555454;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-us-form-left,
.contact-us-form-right,
.newsletter-form-right,
.newsletter-form-left {
    width: 48%;
    margin-top: 20px;
}

.contact-us-form-left ul li,
.newsletter-form-left ul li {
    display: flex;
    flex-direction: row;
    margin: 15px 0 20px 0;
}

.contact-us-form-left ul li .office-svg,
.newsletter-form-left ul li .office-svg {
    width: 13%;
}

.contact-us-form-left ul li svg {
    width: 30px;
    height: 30px;
    padding: 5px;
    background: goldenrod;
    color: #fff;
}

.contact-us-form-left ul li .office-details,
.newsletter-form-left ul li .office-details {
    width: 87%;
}

.contact-us-form-left ul li .office-details p,
.newsletter-form-left ul li .office-details p {
    margin-bottom: 10px;
    font-size: 15px;
}

.contact-us-form-left ul li span,
.newsletter-form-left ul li span {
    font-weight: bold;
}

.contact-us-form,
.newsletter-form {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid lightgrey;
    border-radius: 10px;
    width: 100%;
    overflow-x: auto;
}

.contact-us-form::-webkit-scrollbar,
.newsletter-form::-webkit-scrollbar {
    width: 0;
}

.contact-us-form .form-col,
.newsletter-form .form-col {
    width: 100%;
    margin-bottom: 20px;
}

.contact-us-form .form-group,
.newsletter-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-us-form .form-row,
.newsletter-form .form-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.contact-us-form .form-row .form-group,
.newsletter-form .form-row .form-group {
    width: 48%;
}

.contact-us-form .form-group label,
.newsletter-form .form-group label {
    font-size: 16px;
    color: #47453e;
    margin-bottom: 10px;
}

.contact-us-form .form-group label span,
.newsletter-form .form-group label span {
    color: red;
}

.contact-us-form .form-group input,
.contact-us-form .form-group select,
.newsletter-form .form-group input,
.newsletter-form .form-group select {
    padding: 5px;
    padding-left: 6px;
    padding-right: 6px;
    color: #555454;
    border: 1px solid lightgray;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
}

.contact-us-form .form-col textarea,
.newsletter-form .form-col textarea {
    resize: none;
    width: 100%;
    height: 60px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid lightgray;
    border-radius: 10px;
    outline: none;
}

.contact-us-form button,
.newsletter-form button {
    border: #3e8e41;
    background-color: #3e8e41;
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    padding: 13px;
    width: 100%;
    cursor: pointer;
}

/* search popup */
.search-content::-webkit-scrollbar {
    width: 0;
}

.search-form-box .form-col .form-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.search-form-box .form-group label {
    font-size: 16px;
    color: #47453e;
    margin-bottom: 10px;
}

.search-form-box .form-group label span {
    color: red;
}

.search-form-box .form-group input {
    padding: 5px;
    padding-left: 6px;
    padding-right: 6px;
    color: #555454;
    width: 60%;
    border: 1px solid lightgray;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
}

.search-results {
    margin: 20px;
    color: #555454;
    height: 260px;
    overflow: auto;
}

.search-results::-webkit-scrollbar {
    width: 0;
}

.search-item {
    padding-bottom: 15px;
    border-bottom: 0.6px dotted #ccc;
}

.search-item:not(:last-child) {
    margin-bottom: 20px;
}

.search-item h6 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.search-item p {
    margin-bottom: 10px;
}

.search-item a {
    color: goldenrod;
    cursor: pointer;
}

.search-item a:hover {
    text-decoration: underline;
}

.search-pagenation {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

.search-pagenation ul {
    display: flex;
    flex-direction: row;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.search-pagenation ul li {
    padding: 10px;
}

.search-pagenation ul li:not(:last-child) {
    border-right: 1px solid #ccc;
}

/* comment popup */
.comment-popup {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: 0.3s;
    transform: scale(1);
    display: none;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.comment-content {
    position: relative;
    height: auto;
    width: 700px;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
}

.comment-close svg {
    position: absolute;
    top: 0;
    right: 0;
    margin: 10px;
    cursor: pointer;
}

.comment-title {
    text-align: center;
    padding: 20px;
}

.comment-title h3 {
    font-weight: bold;
    color: #47453e;
    font-size: 30px;
    margin-bottom: 10px;
}

.comment-title hr,
.stockist-title hr {
    width: 70px;
    height: 5px;
    border: none;
    background-color: #F8C471;
    border-radius: 5px;
}

.comment-title p {
    margin-top: 15px;
}

.comment-list {
    border-bottom: 0.6px dotted #ccc;
    height: 263px;
    overflow: hidden;
    overflow-y: auto;
}

.comment-list::-webkit-scrollbar {
    width: 0;
}

.comment-item {
    padding-bottom: 10px;
}

.comment-item:not(:first-child) {
    padding-top: 10px;
}

.comment-item:not(:last-child) {
    border-bottom: 0.6px dotted #ccc;
}

.comment-name {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.comment-name h4 {
    margin-right: 10px;
}

.comment-name span {
    margin-left: 10px;
}

.comment-details {
    margin-bottom: 10px;
}

.comment-actions {
    display: flex;
    flex-wrap: wrap;
}

.comment-actions p {
    font-size: 15px;
}

.comment-actions a,
.comment-actions p {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #555454;
    font-weight: 500;
}

.comment-actions a:not(:last-child),
.comment-actions p {
    margin-right: 30px;
}

.comment-actions a svg,
.comment-actions p svg {
    margin-right: 5px;
    height: 20px;
    width: 20px;
}

.comment-pagenation {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    padding: 20px;
}

.comment-pagenation ul {
    display: flex;
    flex-direction: row;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.comment-pagenation ul li {
    padding: 10px;
}

.comment-pagenation ul li:not(:last-child) {
    border-right: 1px solid #ccc;
}

.comment-pagenation ul li a {
    color: #555454;
}

/* media query */
@media only screen and (max-width: 1320px){
    header {
        padding: 0 50px;
    }

    .logo {
        font-size: 18px;
    }

    .nav-bar ul li {
        margin: 0;
    }
    
    .nav-bar ul li a{
        font-size: 15px;
        margin: 0;
    }

    .market-details-right-image {
        width: 25%;
    }

    .market-details-right-details {
        width: 75%;
    }
}

@media only screen and (max-width: 1024px) {
    .comments-body {
        height: 49px;
        overflow-x: hidden;
    }
}

@media only screen and (max-width: 1100px){
    header {
        padding: 0 30px;
    }

    .logo {
        font-size: 10px;
    }

    .longrich-content-left::-webkit-scrollbar {
        width: 0px;
    }
    
    .comment-content {
        width: 700px;
        height: 520px;
    }

    .footer-right-one ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 912px){
    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger svg {
        width: 40px;
        height: 40px;
        color: #11101b;
        margin: 6px 0;
    }

    .logo {
        font-size: 18px;
    }

    .nav-bar {
        height: 0;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        width: 100vw;
        background: #fefefe;
        transition: 0.2s;
        overflow: hidden;
    }

    .social-icons {
        height: 0;
        position: absolute;
        top: 520px;
        left: 0;
        right: 0;
        width: 100vw;
        background: #fefefe;
        transition: 0.2s;
        overflow: hidden;
    }

    .nav-bar.active,
    .social-icons.active {
        height: auto;
    }

    .nav-bar ul,
    .social-icons ul {
        display: block;
        width: fit-content;
        margin: 0 auto 0 auto;
        text-align: center;
        transition: 0.5s;
        opacity: 0;
    }

    .nav-bar ul li a,
    .social-icons ul li a {
        margin-bottom: 12px;
    }

    .nav-bar.active ul,
    .social-icons.active ul {
        opacity: 1;
    }

    .notifications-total {
        top: 60px;
    }
    
    .comment-content {
        width: 700px;
        height: auto;
    }

    .footer-container {
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 800px) {
    .longrich-search-form input,
    .longrich-search-form select {
        width: 150px;
    }

    .comments-body {
        height: 500px;
        overflow-x: hidden;
    }
}

@media only screen and (max-width: 820px) {
    .comments-body {
        height: 300px;
        overflow-x: hidden;
    }
}

@media only screen and (max-width: 853px) {
    .comments-body {
        height: 370px;
        overflow-x: hidden;
    }
}

@media only screen and (max-width: 768px) {
    .market-details-right-image {
        width: 100%;
    }

    .market-details-right-details {
        width: 100%;
    }
    
    .market-details-right-item .market-details-right-image,
    .market-details-right-details {
        width: 100%;
    }

    .longrich-search-form input,
    .longrich-search-form select {
        width: 120px;
    }

    .longrich-content-left {
        height: 80vh;
    }
}

@media only screen and (max-width: 540px) {
    .nav-bar {
        overflow: hidden;
    }

    #home {
        height: 60vh;
    }

    .banner h1 {
        font-size: 20px;
    }

    .longrich-market-item:last-child {
        margin-top: 30px;
    }

    .longrich-search-bar {
        margin-top: 20px;
    }

    .longrich-markets,
    .longrich-search-form {
        flex-direction: column;
    }

    .longrich-market-list,
    .longrich-search-bar {
        width: 100%;
    }

    .longrich-search-form input,
    .longrich-search-form select {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .longrich-search-form .form-row {
        display: flex;
        flex-direction: column;
    }

    .market-details-right-image {
        display: none;
    }

    .market-details-right-details {
        width: 100%;
    }

    .message {
        letter-spacing: 0px;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .footer-left, 
    .footer-left-one, 
    .footer-right, 
    .footer-right-one {
        width: 100%;
        margin: 0 20px;
    }

    .comments-item-left {
        display: none;
    }

    .comments-item-right,
    .longrich-content-left,
    .longrich-content-right,
    .market-details-right-lists,
    .market-details-rights-comments,
    .events-details-right-lists,
    .events-details-rights-comments {
        width: 100%;
        border-right: none;
    }

    .longrich-content-right {
        margin-top: 20px;
    }

    .comments-body-form .form-group input {
        width: auto;
    }

    .comments-body-form button {
        margin-top: 10px;
    }

    .stockist-form form .form-group .form-input {
        width: 100%;
    }

    .stockist-content {
        position: relative;
        width: 400px;
        height: fit-content;
    }

    .stockist-items {
        height: 150px;
    }

    .stockist-items .stockist-item .stockist-item-left,
    .stockist-items .stockist-item .stockist-item-right {
        width: 100%;
    }

    .stockist-items .stockist-item {
        flex-direction: column;
    }

    .member-services-content,
    .delivery-options-content,
    .contact-us-content,
    .search-content,
    .comment-content {
        width: 400px;
    }

    .comment-pagenation,
    .search-pagenation {
        padding-top: 20px;
        padding-bottom: 0px;
    }

    .delivery-options-content {
        width: 500px;
    }

    .parcel-popup-content {
        width: 400px;
    }

    .member-services-content,
    .delivery-options-content,
    .contact-us-content,
    .newsletter-content,
    .search-content {
        width: 400px;
    }

    .delivery-options-content {
        width: 500px;
    }

    .parcel-popup-content {
        width: 400px;
    }

    .parcel-form .form-row .form-group,
    .contact-us-form .form-row .form-group,
    .newsletter-form .form-row .form-group,
    .search-form-box .form-group input {
        width: 100%;
    }

    .contact-us-form-left,
    .contact-us-form-right,
    .newsletter-form-left,
    .newsletter-form-right {
        width: 100%;
    }

    .contact-us-form-left,
    .newsletter-form-left {
        margin-top: 0;
    }

    .contact-us-form-left ul li .office-details,
    .newsletter-form-left ul li .office-details {
        padding-left: 10px;
    }

    .large-image {
        height: 300px;
    }

    .item-title-top h1 {
        justify-content: flex-start;
    }

    .market-details-right-body {
        max-height: 100% !important;
    }
}

@media only screen and (max-width: 460px) {
    #home {
        height: 80vh;
    }

    .stockist-content {
        position: relative;
        width: 300px;
        height: fit-content;
    }

    .stockist-items {
        height: 150px;
    }

    .delivery-options-content {
        width: 400px;
    }

    .parcel-popup-content {
        width: 300px;
    }

    .member-services-content,
    .delivery-options-content,
    .contact-us-content,
    .search-content,
    .newsletter-content {
        width: 300px;
    }
}