/* Add loader css */
    .container {
        max-width: 1240px;
    }

.loader
{
  background: rgba( 255, 255, 255, 0.8 );
  display: none;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 9999;
}

.loader img
{
  left: 50%;
  margin-left: -32px;
  margin-top: -32px;
  position: absolute;
  top: 50%;
}

    /* new css start */
.app-brand-logo {
    width: 30%;
    float: left;
}

.full-layer-mid-header {
    padding: 14px 0;
}

/* .hover-check-out {
  position: relative;
  display: inline-block;
}

.dropdown-hover-check {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 99;
}


.hover-check-out:hover .dropdown-hover-check {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
} */


/* .list-drop-ani {
    position: relative;
    height: 52px;
    line-height: 52px;
    background: #3f0000;
    border-radius: 8px 8px 0 0;
    color: #ffffff;
    cursor: pointer;
    display: block;
    font-size: 13px;
    overflow: hidden;
    text-transform: uppercase;
    padding-left: 20px;
} */


/* hover  */

/* .v-menu {
  position: relative;
} */

/* Title Section */
/* .v-menu > .v-title {
  position: relative;
  height: 52px;
  line-height: 52px;
  background: #3f0000;
  border-radius: 8px 8px 0 0;
  color: #ffffff;
  cursor: pointer;
  display: block;
  font-size: 13px;
  overflow: hidden;
  text-transform: uppercase;
  padding-left: 20px;
} */

/* Icon inside title */
/* .v-menu > .v-title > i.fas.fa-angle-down {
  position: absolute;
  right: 15px;
  font-size: 12px;
  top: 21px;
  transition: transform 0.3s ease-in-out;
  transform: rotate(0deg);
} */

/* Dropdown List */
/* .v-list {
  background-color: #ffffff;
  left: 0;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 2;
  border: 1px solid #ededed;
  border-top-width: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
} */

/* Items inside dropdown */
/* .v-list > li > a {
  position: relative;
  background: #ffffff;
  display: block;
  font-size: 13px;
  line-height: 24px;
  overflow: hidden;
  overflow-wrap: break-word;
  padding: 8px 20px;
  cursor: pointer;
  transition: background 0.3s ease;
} */

/* Hover on item */
/* .v-list > li > a:hover {
  background: #f2f2f2;
} */

/* --- HOVER EFFECT ADDED HERE --- */
/* .v-menu:hover > .v-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
} */

/* Rotate icon on hover */
/* .v-menu:hover > .v-title > i.fas.fa-angle-down {
  transform: rotate(-180deg);
} */


/* ====== MAIN CONTAINER ====== */
.drop_down_menu {
  position: relative;
  display: inline-block;
  z-index: 100;
  width: 100%;
  max-width: 250px;
}

/* ====== MAIN BUTTON ====== */
.dropdown-main-btn {
    background: #1E4F7A;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s 
ease;
}

.dropdown-main-btn:hover {
  background: #1E4F7A;
}

.dropdown-main-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown-main-left i {
  font-size: 18px;
}

/* ====== FULLSCREEN OVERLAY ====== */
.dropdown-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 90;
}

.dropdown-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ====== DROPDOWN LIST ====== */
.dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: none;
  z-index: 200;
}

.drop_down_menu.active .dropdown-list {
  display: block;
}

/* LIST ITEMS */
.dropdown-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-item {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dropdown-item span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown-item:hover {
  background: #f9f9f9;
  color: #1E4F7A;
}

/* ====== SUBMENU (DESKTOP) ====== */
.dropdown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  background: #fff;
  width: 600px;
  display: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  padding: 20px;
}

.dropdown-item:hover .dropdown-submenu {
  display: flex;
  justify-content: space-between;
}

.submenu-column {
  width: 30%;
}



.submenu-column a {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 5px 0;
    font-size: 13px;
}

.submenu-column a:hover {
  color: #1E4F7A;
}


footer.footer.footer-All-section {
    background: #1e4f7a12;
    margin-top: 50px;
}

/* ====== MOBILE ====== */
@media (max-width: 768px) {
  .drop_down_menu {
    max-width: 100%;
  }

  .dropdown-overlay {
    display: none;
  }

  .dropdown-list {
    position: relative;
    width: 100%;
    display: none;
    box-shadow: none;
  }

  .drop_down_menu.active .dropdown-list {
    display: block;
  }

  .dropdown-item {
    justify-content: space-between;
    background: #fff;
  }

  .dropdown-submenu {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    box-shadow: none;
    display: none;
    flex-direction: column;
    padding: 10px 15px;
  }

  .dropdown-item.active .dropdown-submenu {
    display: flex;
  }

  .dropdown-item i.fa-angle-right {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
  }

  .dropdown-item.active i.fa-angle-right {
    transform: rotate(90deg);
  }

  .submenu-column {
    width: 100%;
  }

  .submenu-column h4 {
    margin-top: 10px;
  }
}

/* ====== FIX: SHOW DROPDOWN ON HOVER (DESKTOP) ====== */
@media (min-width: 769px) {
  .drop_down_menu:hover .dropdown-list {
    display: block;
  }
}

ul.secondary-nav.g-nav li .listAccount {
    display: flex;
    align-items: center;
}

ul.bottom-nav li a:hover {
    color: #1E4F7A !important;
}

ul.g-dropdown li a:hover {
    color: #1E4F7A;
}

  a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
    color: #1E4F7A !important; }

    button.button.button-primary {
    background: #1E4F7A;
}

.u-c-brand {
  color: #1E4F7A !important; }

  /* NEW: Smooth transition for active state */



  /* top */

  .top-section-collection {
    padding-top: 50px;
    /* padding-bottom: 60px; */
}
.u-s-p-b-50 {
    padding-bottom: 30px;
}

.sec-maker-h3 {
    text-align: left;
}

.makerAll h2 {
    text-align: center;
    /* padding-bottom: 20px; */
    font-weight: 700;
}

.item-new-price {
  float: left;
  color: #1E4F7A; 
}

.item-title a:hover {
    color: #1E4F7A;
}
ul.bottom-nav  {
    text-align: center;
}

/* banner */

.default-height {
    height: auto;
}

/* .bg-image {
    height: 720px;
} */

/* index css  */

.app-priority .priority-wrapper {
    border-bottom: none;
    padding: 0;
}

/* .footer-pointer {
    border-top: 1px solid #DCDCDD;
    margin-top: 50px;
} */

.footer-list ul li a:hover {
    color: #1E4F7A;
}

.bottom-footer-wrapper .copyright-text a {
    color: #1E4F7A;
}

.bottom-footer-wrapper .copyright-text a:hover {
    color: #1E4F7A;
}

.footer-list ul li a:hover {
    color: #1E4F7A;
}

.item-new-price, .item-old-price {
    font-size: 18px;
}

.item-title {
    font-size: 18px;
    color: black !important;
}

.item .bread-crumb > li {
    font-size: 12px;
}

.title-name {
    font-size: 16px;
    border-bottom: 1px solid #DCDCDD;
}
.fetch-categories > .fetch-mark-category {
    font-size: 14px;
}

.fetch-categories > ul > li > a {
    font-size: 14px;
}

.shop-intro .bread-crumb > li {
    font-size: 16px;
}

.footer-list ul > li > a {
    font-size: 14px;
    color: #707070;
}

.footer-list ul li {
    font-size: 14px;
}

/* product page css */


.section-1-title-breadcrumb-rating .product-title h1 {
    font-size: 32px;
    margin-bottom: 0;
}

.section-2-short-description > p {
    font-size: 14px;
}

ul.bread-crumb li a {
    font-size: 14px;
}

.media-quantity-part {
    display: flex;
    gap: 13px;
}

.button-outline-secondary {
    border-radius: 0px;
    color: white;
    border: 1px solid #1E4F7A;
    background: #1E4F7A;
    padding: 12px 40px;
}

.button-outline-secondary:hover {
    border: 1px solid #1e4f7aad;
    background: #1e4f7aad;
}

.checkButton_hide {
    padding: 5px 10px;
    background: #1E4F7A;
    border: 1px solid #1E4F7A;
    color: white;
}

.checkButton_hide:hover {
    border-color: #1e4f7aad;
    background: #1e4f7aad;
}



.delivery-pointer input {
    padding: 4px 5px;
    border-radius: 0px;
    border: 1px solid #1E4F7A;
}

/*  */

.single-product-nav > .nav-item > .nav-link.active {
    border-color: #1E4F7A;
    color: white;
    background: #1E4F7A;
}

.single-product-nav > .nav-item > .nav-link {
    font-size: 14px;
}

.single-product-nav > .nav-item > .nav-link:hover {
    border: 1px solid #1E4F7A;
    background: #1E4F7A;
    color: white;
}

.single-product-nav > .nav-item > .nav-link {
    border: 1px solid #f7f7f9;
    background: #1e4f7a66;
    color: white;
}

.review-whole-container {
    max-width: 760px;
    margin: 0 auto;
    box-shadow: 0px 0px 6px -2px;
    padding: 20px;
}

.specification-whole-container {
    max-width: 760px;
    margin: 0 auto;
    box-shadow: 0px 0px 6px -2px;
    padding: 20px;
}

.sizeAvailable span {
    font-size: 16px;
    font-weight: 600;
}

.quantity-wrapper span {
    font-size: 16px;
    font-weight: 600;
}

.select-box-wrapper .select-box {
    font-size: 14px !important;
}

.select-box-wrapper .select-box {
    /* height: auto; */
    padding: 6px 28px 6px 12px;
}

.g-nav > li > a {
    font-size: 14px;
}


.coupon-continue-checkout .button-area .checkout {
    background: #1E4F7A;
    color: #ffffff;
    border: 2px solid #1E4F7A;
}

.coupon-continue-checkout .button-area .continue {
    border-radius: 0;
    color: #1E4F7A;
    border: 2px solid #1E4F7A;
}

.table-wrapper > table th, .table-wrapper-2 > table th {
    font-size: 16px;
}

.coupon-continue-checkout .button-area .checkout:hover {
    background: #1e4f7aad;
}

.page-account .account-h6, .page-lostpassword .account-h6 {
    font-size: 14px;
    color: #707070;
}

button.button.button-primary {
    font-size: 16px;
}

.button-outline-secondary {
    font-size: 16px;
}

.check-box:checked + .label-text:before {
    background: #1E4F7A;
}

.section-4-sku-information > .availability, .section-4-sku-information .left {
    font-size: 14px;
}

.information-heading {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.mini-action-anchors .checkout-anchor {
    background-color: #1E4F7A;
}
.mini-shop-total .mini-total-price {
    color: #1E4F7A;
}

.contact-h1:after {
    border-bottom: 2px solid #1E4F7A;
}

.information-about-wrapper p {
    font-size: 14px;
}

.contact-material span {
    font-size: 14px;
}

.contact-material h6 {
    font-size: 16px;
}
.map-top-pro {
    width: 100%;
}

.contact-h1 {
    font-size: 24px;
    font-weight: 600;
}


/* footer */
.listiconpro i {
    font-size: 20px;
}

/* responsive design start */

/* .mobilePart {
    display: none;
} */
/* nav css change */

.listmenuNav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navflexpro {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navponiter-login {
    position: relative;
}

    .item-counter {
        left: 12px;
        top: -23px;
    }

   .submenu-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: black;
    text-transform: uppercase;
}
.dropdown-item {
    position: relative;
}

.submenu-column {
    width: 30%;
    border-right: 1px solid #dddddd;
    padding-left: 21px;
}
.submenu-column:last-child {
    border-right: none;
}

.full-layer-bottom-header {
    padding-bottom: 16px;
}

.vendor-bacome {
    background: #1E4F7A;
    color: white;
    border-radius: 0px;
}

.vendor-bacome:hover {
    background: #0e0f0f;
    color: white !important;
    /* border-radius: 5px; */
}
.bottom-footer-wrapper {
    padding: 20px 0;
}

.product-slider-previous, .product-slider-next {
    background-color: #1E4F7A;
    color: white !important;
}

.product-slider-previous i, .product-slider-next i {
    color: white;
}
.slide-content h2 {
    display: none;
}
.products-slider.owl-carousel .owl-item {
    justify-content: center;
}

.u-s-p-t-80 {
    padding-top: 50px;
}

.miniBook {
    float: right;
}

.coupon-field button {
    color: white;
    background-color: #1E4F7A;
}
.mobileItemPress li .dropdownicon {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.footer-list h6 {
    text-transform: uppercase;
}
/*  */

@media only screen and (min-width: 320px) and (max-width: 767px) {
  ul.mobileItemPress .dropdown-item {
    display: block;
}

.dropdown-submenu {
        flex-direction: row;
    }


    .miniBook {
    padding-right: 35px;
}

.submenu-column {
    width: 100%;
    padding-left: 10px;
}
    .default-height {
        height: auto !important;
    }

/* .mobilePart {
    display: block;
} */
/* .mobileProTabs {
    display: none;
} */

.mobilePropress {
    width: 50%;
}
    .mobileproELL {
        width: 50%;
        display: flex;
        justify-content: end;
        align-items: center;
    }
    .miniBook {
        padding-right: 15px;
    }
.mobileLOGO a img {
    width: 100%;
} 
.dropToggleDown {
    padding-bottom: 10px;
}

.navmobile {
    display: flex;
    align-items: center;
}
.mobileLOGO a img {
    width: 25%;
}
.grid-style .product-item {
    display: flex;
    justify-content: center;
}
/* loign mobile responsive */

.reg-wrapper {
    padding-top: 60px;
}
.VndorLogin {
    display: flex;
    align-items: center;
}

.bg-image {
        height: 15vh !important;
    }
/* cart  */

.box_heading_hit h5 {
    font-size: 14px !important;
}

.question_less h6 {
    font-size: 16px !important;
}

.contant-number-part {
    gap: 10px !important;
    flex-wrap: wrap;
}
.box-brand-icon {
    width: 40px;
}

.easyzoom.is-ready img {
    width: 100% !important;
    height: 100% !important;
}

.easyzoom img {
    width: 100% !important;
    height: 100% !important;
}
.main-area-club {
    padding-left: 0px !important;
}
    .footer-list {
        margin-bottom: 0px;
    }

    .mobile-footer-list {
    padding-bottom: 25px;
}

.item-title {
    font-size: 16px;
}

.item-content p {
    font-size: 14px;
}

.neebRS span {
    font-size: 14px;
}
.product-press-Name {
    display: flex;
    padding-top: 20px;
    padding-bottom: 15px;
}
.aboutAreaaCenter {
    width: 100% !important;
}




  }

  /* responsive code */


  


  @media only screen and (min-width: 768px) and (max-width: 991px) {
        .miniBook {
        padding-right: 30px;
    }
        .default-height {
        height: auto !important;
    }
        .bg-image {
        height: 35vh !important;
    }
     

  }

  @media only screen and (min-width: 992px) and (max-width: 1199px) {

   
  }



  @media (max-width: 1400px) {
    /* .bg-image {
        height: 75vh;
    } */
}

@media (max-width: 1024px) {
    .bg-image {
        height: 65vh;
    }
}

/* @media (max-width: 768px) {
    .bg-image {
        height: 50vh;
    }
} */
  /* responsive design start */


  .cart-anchor-image > a > h6 {
    font-size: 14px;
}

.page-checkout .section-h4:after {
    border-bottom: 2px solid #1E4F7A;
}

.page-checkout .label-text {
    font-size: 14px;
}

/* check out page css */

.deviverycheck {
    display: flex;
}

.sec-maker-header {
    padding: 10px 0px;
}


.products-slider.owl-carousel .item {
    border: none !important;
    background: #f9f9f98a;
    margin: 10px;
}
.products-slider.owl-carousel .item:hover {
    box-shadow: 0px 0px 8px -2px;
}
.product-item .item {
    border: none !important;
    background: #f9f9f98a;
    margin: 10px;
}
.product-item .item:hover {
    box-shadow: 0px 0px 8px -2px;
}
.rectprice {
    font-size: 16px;
}

.neebRS {
    display: flex;
    align-items: stretch;
}

.neebRS span {
    line-height: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}

.image-container img {
    display: block;
    /* width: 80% !important; */
    /* height: 100%; */
    /* object-fit: fill; */
    /* max-width: fit-content; */
    /* margin: auto; */
}

.item-img-wrapper-link {
    display: block;
    position: relative;
    height: 100%;
}

.image-container {
    position: relative;
    /* height: 220px; */
}
.sec-maker-h3 {
    font-size: 26px;
    margin-bottom: 6px;
    text-transform: capitalize;
}

.item-img-wrapper-link:before {
    background-color: rgb(0 0 0 / 0%);
    border: none;
}

/* product  */

.AvailablePress {
    display: flex;
    align-items: baseline;
    gap: 24px;
    /* padding-bottom: 14px; */
}

.quantity .quantity-text-field {
    border: 1px solid #eceff8;
    padding: 6px 18px;
    height: auto;
}

.item-addCart {
    display: none;
}

.discountPrice {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.section-4-sku-information {
    border-bottom: none;
}

.pricecount .price h4 {
    font-size: 38px;
    /* line-height: 100%; */
}

h4.price-rectprice {
    display: flex;
    align-items: anchor-center;
}

/* .rectprice {
    font-size: 28px;
} */
.item-content p {
    height: 48px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    /* line-height: 1.4; */
    max-height: calc(1.4em * 3);
}



.thumbnails a img {
    object-fit: cover;
    border: 1px solid #e5e5e3;
    width: 70px;
    height: 70px;
}

.productColor {
    border: 1px solid #e5e5e3;
}

/* .section-3-price-original-discount {
    margin-bottom: 20px;
} */

.section-4-sku-information > .availability span + span {
    font-weight: 600;
}


.cart-price {
    font-size: 18px;
}

.order-main-page {
    width: 100%;
    height: 50vh;
    overflow: auto;
}

.orderHeader {
    position: sticky;
    top: 0;
}

.table-danger, .table-danger>td, .table-danger>th {
    background-color: #1E4F7A;
    color: white;
}

.check-box:checked + .label-text {
    color: #1E4F7A;
}
.radio-box:checked + .label-text {
    color: #1E4F7A;
}

.radio-box:checked + .label-text:after {
    background-color: #1E4F7A;
}

.tag.new {
    background: #1E4F7A;
    color: #fff;
}

/* .sold-by-vendor {
    padding-top: 20px;
} */

.addCartPart {
    padding-top: 20px;
    padding-bottom: 20px;
}

.product-stock {
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.app-priority .priority-wrapper .single-item-wrapper h2 {
    font-size: 16px;
}

.app-priority .priority-wrapper .single-item-wrapper p {
    font-size: 14px;
}

.availability span {
    color: #28a745;
    font-weight: 600;
}


/* check out */

.delivery_country {
    display: flex;
    justify-content: space-between;
}

.delivery_office {
    width: 50%;
}

.select-box-wrapper .select-box {
    /* height: auto; */
    padding: 0px 28px 0px 12px !important;
}

.select-box-wrapper:after {
    top: 40% !important;
}
.addressPointer {
    width: 50%;
}

.confi-purchase {
    display: flex;
    gap: 12px;
}

.box-brand-icon {
    width: 60px;
}

.purchase_box {
    text-align: center;
}

.box-confide-image {
    padding-bottom: 10px;
}

.box_heading_hit h5 {
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.Purchase_confidence {
    padding-top: 40px;
}

.box-email-icon {
    width: 18px;
}

.question_pointer {
    padding-top: 30px;
}

.question_less h6 {
    text-align: center;
    font-size: 24px;
    padding-bottom: 10px;
}

.contant-number-part {
    display: flex;
    gap: 34px;
    justify-content: center;
}

.purchase-confi {
    border: 1px solid #e5e5e5;
    padding: 20px;
}
/*  */



.cart-anchor-image > a > img {
    width: 80px;
    height: 80px;
}


.new_button_areaa .button-area .continue {
    border-radius: 0;
    color: #1E4F7A;
    border: 2px solid #1E4F7A;
}

.new_button_areaa .button-area .checkout {
    background: #1E4F7A;
    color: #ffffff;
    border: 2px solid #1E4F7A;
}

.new_button_areaa .button-area .continue, .new_button_areaa .button-area .checkout {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 14px;
}

.new_button_areaa .button-area .checkout:hover {
    background: #1e4f7aad;
}

.main-area-club {
    padding-left: 100px;
}

.new_button_areaa .button-area {
    display: flex;
    gap: 10px;
    justify-content: end;
}
.address_delivery {
    padding-top: 30px;
}

.addcheckboxDelivery {
    display: none;
}


div#app {
    overflow: hidden;
}

/* product detail image  */

.product-img-slider .owl-prev {
    display: none;
}

.product-img-slider .owl-nav {
    display: none;
}

.easyzoom img {
    vertical-align: bottom;
    width: 100%;
    height: 100%;
}


/* product img  */

.product-color-img {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

/* about page */

.aboutAreaaCenter {
    width: 75%;
    margin: auto;
}

.aboutAreaaCenter p {
    font-size: 16px;
}


/* about page end */

/* contact page */

.phonenumbericon {
    position: relative;
    padding-left: 17px;
    text-decoration: none;
    display: flex;
}

.phonenumbericon::before {
    content: "\f095";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 14px;
    color: #1E4F7A;
}

.location-EXPO {
    position: relative;
    padding-left: 17px;
}
.location-EXPO::before {
    content: "\f3c5";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 14px;
    color: #1E4F7A;
}


.emailIconPress {
    position: relative;
    padding-left: 22px;
    text-decoration: none;
}

.emailIconPress::before {
    content: "\f0e0";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 14px;
    color: #1E4F7A;
}