* {
    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;
    background: #fff;
    background-color: #fefefe;
}

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

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

ul {
    list-style: none;
}

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

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;
}

main {
    padding-top: 80px;
    color: #555454;
}

/* main container */
main h1:first-of-type {
    margin-bottom: 15px;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.checkout-container {
    display: flex;
    flex-wrap: wrap-reverse;
}

.checkout-details {
    padding: 20px 2% 30px;
    width: 70%;
}

.cart-header {
    display: flex;
    padding: 10px 0;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
}

.cart-header span {
    flex: 1;
    text-align: center;
}

.cart-header span:first-child {
    flex: 2;
    text-align: left;
}

.cart-items {
    height: 300px;
    overflow-y: auto;
}

.cart-items::-webkit-scrollbar {
    width: 0px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
}

.cart-item .product {
    display: flex;
    align-items: center;
    flex: 2;
}

.cart-item img {
    width: 80px;
    height: 80px;
    margin-right: 15px;
    object-fit: contain;
}

.cart-item .size-color-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.cart-item .size-color-box .size {
    padding: 6px 12px;
    background: #f2f2f2;
    font-size: 14px;
}

.cart-item :is(.price, .quantity, .total-price) {
    flex: 1;
    text-align: center;
}

.cart-item .quantity input {
    width: 50px;
    padding: 5px;
    border: 1px solid #ccc;
    outline: none;
    text-align: center;
}

.cart-item .remove {
    background: transparent;
    border: none;
    flex: 1;
}

.cart-item .remove svg {
    height: 20px;
    width: 20px;
    color: #555454;
    cursor: pointer;
}

.cart-total {
    width: 400px;
    margin: 30px 0 0 auto;
}

.cart-total h3 {
    margin-bottom: 15px;
}

.cart-total p {
    display: flex;
    justify-content: space-between;
}

.cart-total p:not(:last-of-type) {
    border-bottom: 1px solid #ccc;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.cart-total p:last-of-type {
    font-weight: bold;
}

.checkout-btn {
    display: block;
    padding: 12px 30px;
    margin: 30px 0 0 auto;
    background-color: #3e8e41;
    border: none;
    color: #f3f3f3;
    cursor: pointer;
}

.checkout-delivery-details {
    padding: 20px 2% 30px;
    width: 30%;
    border-left: 0.6px dotted #ccc;
}

.checkout-delivery {
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
}

.checkout-delivery p {
    margin-bottom: 10px;
    font-size: 15px;
}

.checkout-delivery p span {
    font-weight: bold;
}

.delivery-header {
    background-color: #252525;
    padding: 10px;
    color: #fff;
    text-transform: capitalize;
    border-radius: 5px 5px 0px 0px;
}

.delivery-body {
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.delivery-body hr {
    margin-inline-start: 0px;
    width: 100%;
    margin-bottom: 10px;
    height: 1px;
    background-color: goldenrod;
    border: 1px solid goldenrod;
}

.delivery-btns {
    padding: 10px;
}

.delivery-button {
    display: block;
    padding: 12px;
    background-color: #3e8e41;
    width: auto;
    border: none;
    color: #f3f3f3;
    cursor: pointer;
}

/* 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;
}

.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,
.error-popup,
.success-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;
}

/* success popup */
.success-popup-content,
.error-popup-content {
    position: relative;
    height: auto;
    width: 400px;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    color: #555454;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.success-popup-content h2,
.error-popup-content h2 {
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: capitalize;
    font-size: 30px;
    font-weight: normal;
}

.success-popup-content svg,
.error-popup-content svg {
    margin-top: -70px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    margin-bottom: 15px;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    color: #fff;
    background-color: #3e8e41;
} 

.display-data {
    text-align: center;
    margin-bottom: 15px;
    font-size: 16px;
    letter-spacing: 1px;
}

.display-data span {
    font-weight: 600;
}

.error-close-popup,
.success-popup-content #close-popup {
    border: #3e8e41;
    background-color: #3e8e41;
    color: #fff;
    border-radius: 10px;
    font-size: 15px !important;
    padding: 10px;
    width: auto;
    cursor: pointer;
    margin-bottom: 10px;
}

/* 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;
}

/* 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;
}

/* 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;
    }
}

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

    .logo {
        font-size: 10px;
    }

    .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;
    }

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

@media only screen and (max-width: 800px) {
    .checkout-delivery-details,
    .checkout-details,
    .cart-total {
        width: 100%;
    }

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

    .description {
        height: 50vh;
    }

    ul li {
        align-items: normal;
    }
}

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

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

    .cart-item img {
        display: none;
    }

    .checkout-details {
        font-size: 14px;
    }

    .checkout-delivery-details {
        border-left: none;
    }

    .checkout-container {
        padding: 0px 20px 0px 20px;
    }

    .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;
    }

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

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

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

    .parcel-popup-content {
        height: 600px;
        overflow-x: hidden;
    }

    .success-popup-content,
    .error-popup-content {
        width: 300px;
    }

    .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;
    }

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

    .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;
    }
}

@media only screen and (max-width: 460px) {
    .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;
    }
}