/* latest blogs */
body {
  opacity: 0;
}

#explore-news-section {
  padding: 0vh 2vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
  direction: ltr;
  display: none;
}

#explore-news-section .news-intro {
  display: flex;
  text-align: left;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  gap: 2vw;
  position: relative;
}

#explore-news-section .news-intro h1 {
  font-family: 'Georgia';
  font-size: 3rem;
  font-weight: 400;
}

#explore-news-section .news-intro p {
  font-family: 'Manrope';
  font-size: 1rem;
  color: #000;
  line-height: 1.3rem;
}

#explore-news-section .carousel-controls {
  display: flex;
  gap: 1vw;
}

#explore-news-section .carousel-controls .slick-prev,
#explore-news-section .carousel-controls .slick-next {
  background: none;
  background-color: #194894;
  border: none;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative !important;
  left: 0 !important;
  right: 0 !important;
}


#explore-news-section .carousel-controls .slick-prev:before {
  display: none;
}

#explore-news-section .carousel-controls .slick-next:before {
  display: none;
}


#explore-news-section .carousel-controls button:hover {
  border-color: none;
  color: #194894;
}

#explore-news-section .news-carousel {
  display: flex;
  flex: 2;
  width: 60vw;
  height: auto;
}

#explore-news-section .news-item {
  display: flex;
  flex-direction: column;
  gap: 1vw;
  position: relative;
  padding: clamp(0.438rem, -0.143rem + 1.548vw, 1.25rem);
}

#explore-news-section .news-item img {
  width: 100%;
  height: clamp(18.75rem, 9.821rem + 23.81vw, 31.25rem) !important;
  border-radius: 1.5rem;
  object-fit: cover;

}

#explore-news-section .news-item-title {
  position: absolute;
  bottom: 5vw;
  left: 50%;
  color: #194894;
  background-color: #fff;
  width: 80%;
  padding: 19px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  font-family: 'Manrope';
  font-size: 16px;
  justify-content: space-between;
  transform: translateX(-50%);
}

#explore-news-section .news-item-title span:first-child {
  width: 86%;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

#explore-news-section .news-item a {
  text-decoration: none;
  color: inherit;
}

#explore-news-section .news-item-title .icon-more-span {
  background-color: #194894;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;

}

#explore-news-section .news-item-title .icon-more-span img {
  width: 1rem;
  height: 1rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: initial;
  transition: transform 0.5s ease-in-out;

}

#explore-news-section .news-item-title:hover img {
  transform: rotate(45deg);
}


/* #### NEWS PAGE  #### */
#news-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2vw;
}

#news-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3%;
  border-bottom: 1px solid #194894;
  border-radius: 1rem 0 0 0;
  padding-top: 3%;
  gap: 2vw;
}


@media (min-width: 1280px) and (max-width: 1440px) {
  #news-filters button {
    font-size: 1.2rem !important;
  }
}



#news-filters button {
  background: none;
  border: none;
  padding: 10px 25px;
  cursor: pointer;
  font-size: 1.3rem;
  font-family: 'Manrope';
  font-weight: 400;
  line-height: 43px;
  color: #000;
  position: relative;
  transition: color 0.3s;
}

#news-filters button:hover {
  color: #194894;
}

#news-filters button.active {
  color: #fff;
  background-color: #194894;
  border-radius: 20px 20px 0 0;
}

/*
#news-filters button:not(.active)::after {
  content: '';
  display: block;
  margin: auto;
  height: 2px;
  width: 0;
  background: transparent;
  transition: width 0.5s ease, background-color 0.5s ease;
}

#news-filters button:not(.active):hover::after {
  width: 100%;
  background: #0044cc;
}
*/


#news-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

#news-posts.loading+#load-more {
  visibility: hidden;
}

#news-posts.loading {
  min-height: 150px;
  position: relative;
}

#news-posts.loading:before {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 6.4px solid;
  border-color: #dbdcef;
  border-right-color: #194894;
  animation: spinner-c7wet2 1s infinite linear;
  content: '';
  position: absolute;
  top: 30px;
  left: calc(50% - 20px);
  z-index: 1;
}

#news-posts.loading .news-post {
  opacity: 0.3;
}

@keyframes spinner-c7wet2 {
  100% {
    transform: rotate(1turn);
  }
}

@media (min-width: 991px) {
  #news-filters-label {
    display: none;
  }

  #news-filters {
    display: flex !important;
  }
}

#news-posts .news-post {
  box-shadow: none;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

#news-posts .news-post:hover {
  transform: scale(0.95);
}

#news-posts .post-thumbnail {
  width: 100%;
  height: 0;
  padding-top: 79.545%;
  /* Aspect Ratio 440px / 350px */
  background-size: cover;
  background-position: center;
  position: relative;
}

#news-posts .post-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3%;
}

#news-posts .post-content {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1vw;

}

#news-posts .post-category a {
  font-family: 'Manrope';
  font-size: 16px;
  font-weight: 400;
  line-height: 21.86px;
  text-align: left;
  color: #999;
  margin-bottom: 10px;
  text-decoration: none;
  color: #6A6A6A;
}

#news-posts .post-excerpt {
  font-family: Manrope;
  font-size: 22px;
  font-weight: 500;
  line-height: 30.05px;
  text-align: left;
  flex-grow: 1;
  color: #666;
}

#news-posts .post-title {
  font-family: 'Georgia';
  font-size: 22px;
  font-weight: 500;
  line-height: 30.05px;
  text-align: left;

}

#news-posts .post-title a {
  text-decoration: none;
  color: #000;
}

#news-posts .post-title a:hover {
  color: #194894;
}

#news-posts .readMore-date {
  display: flex;
  justify-content: space-between;

}

#news-posts .read-more {
  color: #000;
  text-decoration: none;
  align-self: flex-end;
  font-family: 'Manrope';
  font-size: 18px;
  font-weight: 500;
  line-height: 24.59px;
  text-align: left;
  gap: 1rem;
  display: flex;
  align-items: center;
}

#news-posts .readMore-date .meta-date {
  text-decoration: none;
  color: #6A6A6A;
  font-family: 'Manrope';
  padding: 0.8vw 0;

}

#news-posts .read-more span {
  background-color: #194894;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  display: flex;
  transition: transform 0.3s ease;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
}

#news-posts .read-more span img {
  transition: transform 0.5s ease-in-out;
  vertical-align: middle;
}

#news-posts .read-more:hover span {
  transform: rotate(45deg);
  transition: transform 0.3s ease-in-out;
}

#load-more {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #194894;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 50rem;
  font-family: 'Manrope';

}

#load-more:hover {
  background-color: transparent;
  border: 1px solid #000;
  color: #000;
}

.disable-click a {
  pointer-events: none;
  cursor: default;
  color: inherit;
}

/* +++++++++++++++++++++++++++++++++++single page++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
#blog-post-section {
  padding: 2vw;
  display: flex;
  justify-content: center;
}

#blog-post-section .container {

  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 2vw;
}

#blog-post-section .blog-post {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1vw;
}

#blog-post-section .blog-post h1,
#related-articles-section h1 {
  text-align: center;
  font-family: 'Georgia';
  font-size: 3rem;
  font-weight: 400;
  padding: 0 16vw;
}

#blog-post-section .featured-image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

#blog-post-section .post-meta {
  display: flex;
  justify-content: flex-start;
  font-size: 0.9em;
  font-family: 'Manrope';
  color: #6A6A6A;
  gap: 2vw;
}

#blog-post-section .meta-date,
#blog-post-section .meta-category a {
  text-decoration: none;
  color: #6A6A6A;
  font-family: 'Manrope';
  display: inline-block;
  vertical-align: middle;
}

#blog-post-section .post-suggest {
  display: flex;
  justify-content: space-between;
}

#blog-post-section .post-content {
  display: flex;
  flex-direction: column;
  flex: 2;
  justify-content: flex-start;
  gap: 2vw;
  padding: 0vh 8vw 0 0;
}

#blog-post-section .post-content h2,
#blog-post-section .post-content h1 {
  font-family: 'Georgia';
  font-weight: 400;
  font-size: 2rem;
  line-height: 2rem;
}

#blog-post-section .post-content p,
#blog-post-section .post-content li {
  font-size: 1rem;
  font-family: 'Manrope';
  font-weight: 400;
  text-align: left;
}

#blog-post-section .post-content img {
  width: 100%;
  height: 100%;
}

#blog-post-section .post-content ol {
  padding: 1vw;
}

#blog-post-section .suggested-posts {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  gap: 3vw;
}

#blog-post-section .suggested-posts h3,
#related-articles-section .related-article h3 {
  font-family: 'Georgia';
  font-weight: 400;
  line-height: 1.5rem;
  font-size: 1.5em;
}

#blog-post-section .suggested-news-post {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1vw;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#blog-post-section .suggested-news-post:hover {
  transform: translateY(-10px);
  /*  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);*/
}

#blog-post-section .suggested-post-thumbnail img {
  width: 31vw;
  height: 50vh;
  object-fit: cover;
  border-radius: 1rem;
  transition: transform 0.5s ease-in-out;
}



#blog-post-section .suggested-post-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#blog-post-section .suggested-post-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Georgia';
  font-weight: 400;
  line-height: 2rem;
  font-size: 1.5em;
  transition: color 0.3s ease;
  margin: 12px 0;
}

#blog-post-section .suggested-post-title a {
  color: #000;
  text-decoration: none;
}

#blog-post-section .suggested-news-post:hover .suggested-post-title a {
  color: #194894 !important;
}

#blog-post-section .suggested-post-content .date-more {
  display: flex;
  justify-content: space-between;
}

#blog-post-section .suggested-read-more {
  display: flex;
  align-items: center;
  color: #000;
  font-weight: 500;
  font-family: 'Manrope', sans-serif;
  text-decoration: none;
  font-size: 1rem;
  gap: 0.8vw;
  justify-content: center;
  text-align: center;
}

#blog-post-section .suggested-read-more:hover img {
  transform: rotate(45deg);
}

#blog-post-section .suggested-read-more:hover,
#related-articles-section .related-article .read-more:hover {
  letter-spacing: normal;
}

#blog-post-section .suggested-read-more span {
  background-color: #194894;
  border-radius: 50%;
  /* padding: 0.8vw; */
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;


}

#blog-post-section .suggested-read-more img {
  transition: transform 0.5s ease-in-out;
}

#blog-post-section .suggested-news-post .meta-category {
  transition: color 0.3s ease;
  color: #6A6A6A;
  font-family: 'Manrope';
}

#blog-post-section .suggested-news-post:hover .meta-category {
  color: #194894;
}

#related-articles-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2vw;
}

#related-articles-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#related-articles-section .related-article {
  display: flex;
  flex: 1;
  border-radius: 1.5rem;
  flex-direction: column;
  gap: 1vw;
  padding: 1vw;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#related-articles-section .related-article:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

#related-articles-section .related-article img {
  width: 100%;
  height: 25vw;
  border-radius: 1.5rem;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}

/* #related-articles-section .related-article:hover img {
  transform: scale(1.05);
} */

#related-articles-section .related-article .meta-category {
  font-family: 'Manrope';
  font-size: 0.9em;
  color: #6A6A6A;
}

#related-articles-section .date-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#related-articles-section .related-article .meta-date {
  font-size: 0.9em;
  color: #6A6A6A;
}

#related-articles-section .related-article .read-more {
  display: flex;
  align-items: center;
  color: #000;
  font-weight: 500;
  font-family: 'Manrope';
  text-decoration: none;
  font-size: 1rem;
  gap: 0.5vw;
  justify-content: center;
  text-align: center;
}

#related-articles-section .related-article .read-more span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  background-color: #194894;
  border-radius: 50%;
}

#related-articles-section .related-article .read-more img {
  object-fit: contain;
  width: 2rem;
  height: 1rem;
  transition: transform 0.5s ease-in-out;
}


#related-articles-section .related-article .read-more:hover img {
  transform: rotate(45deg);
}

#related-articles-section .related-article h3 {
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: 'Georgia';
  line-height: 1.2;
}

#related-articles-section .related-article h3 a {
  color: #000;
  text-decoration: none;
}

#related-articles-section .related-article:hover h3 {
  color: #194894;
}

#related-articles-section .related-article:hover h3 a {
  color: #194894 !important;
}

#related-articles-section .related-article .meta-category {
  transition: color 0.3s ease;
}

#related-articles-section .related-article:hover .meta-category {
  color: #194894;
}

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




#account-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2vw;
}

.tab-content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.um-form {
  width: 100%;
}

.um-account-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.um-account-meta-img img {
  border-radius: 50%;
}

.um-account-name {
  margin-left: 20px;
}

.um-account-name a {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.um-account-profile-link a {
  font-size: 14px;
  color: #666;
}

.um-account-side ul {
  display: flex;
  flex-direction: row;
}

.um-account-side.uimob340-hide.uimob500-hide {
  width: 100%;
}

.um-account-side ul li {
  width: 100%;
  text-align: center;
}

.um-account-side ul li a {
  display: block;
  padding: 10px 0;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid transparent;
}

.um-account-side ul li a:hover,
.um-account-side ul li a.current {
  border-bottom: 2px solid #000;
}

.um-account-main {
  width: 100% !important;
  padding: 20px;
  background-color: transparent;
  border-radius: 10px;
}

.um-account-tab {
  display: none;
}

.um-account-tab[data-tab="general"] {
  display: block;
}

.um-account-heading {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.um-field-label label {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

.um-field-area input {
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  color: #194894;

}

.um-col-alt-b {
  display: flex;
  justify-content: center;
  align-items: center;
}

.um-button {
  padding: 10px 20px;
  background-color: #0d47a1;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
  background-color: transparent;
}

form[method="post"] {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 46vw;
  row-gap: clamp(15px, 7.02px + 1.60vw, 30px);
}

@media(min-width:1250px) {
  form[method="post"] {
    padding-right: clamp(15px, 7.02px + 1.60vw, 30px);
  }

  .contact-switch-container {
    padding-right: clamp(15px, 7.02px + 1.60vw, 30px);
  }

}

.woocommerce-EditAccountForm {
  flex-direction: column;
}

#step-1,
#step-2 {
  display: flex;
  flex-direction: column;
  row-gap: clamp(15px, 7.02px + 1.60vw, 30px);
}

.contact-section img {
  border-radius: 10px;
  height: auto;
  width: 48vw;
  object-fit: contain;
}

.account-content {
  display: flex;
  width: 100%;
}

#product-section {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 3vw;
  padding: 2vw;
}

#product-section .products-header {
  display: flex;
  justify-content: space-between;

}

#product-section .products-header h2 {
  font-family: 'Georgia';
  font-size: 3rem;
  font-weight: 400;
  line-height: 48px;
  text-align: center;

}

#product-section .products-header .view-full-button {
  display: flex;
  align-items: center;
  background-color: #194894;
  font-family: 'Manrope';
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 48px;
  position: relative;
  justify-content: center;
  gap: 30px;
}

#product-section .view-full-button:hover {
  background-color: #194894;
}


#product-section .view-full-button img {
  transition: transform 0.5s ease-in-out;
}

#product-section .view-full-button:hover img {
  transform: rotate(45deg);
}

#product-section .product-filters {
  display: flex;
  position: relative;
  gap: 2vw;
  justify-content: space-between;

}

#product-section .product-filters .filters-cat {
  display: flex;
  /*overflow-y: scroll;
  height: 45vh;
  scrollbar-width: none;
  -ms-overflow-style: none;*/
}

/* For WebKit browsers (Chrome, Safari) */
#product-section .product-filters .filters-cat::-webkit-scrollbar {
  display: none;
  /* Hide the scrollbar */
}

#product-section .product-filters ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  /* justify-content: space-around; */
  gap: 1vw;
}

#product-section .product-filters ul li {
  display: flex
}

#product-section .product-filters ul li a {
  text-decoration: none;
  color: #000;
  font-family: 'Manrope';
  font-size: 1.3rem;
  font-weight: 500;
  cursor: pointer;

}

#product-section .product-filters ul li a:hover {
  text-decoration: underline;
  color: #194894;
}

#product-section .product-filters ul li a.active {
  font-weight: 700;
  text-decoration: underline;
  color: #194894;

}

#product-section .products-grid {
  width: 80vw;
  box-sizing: border-box;
}

#product-section .products-grid:not(.slick-initialized) {
  display: flex;
}

#product-section .slick-track {
  display: flex;
  gap: 1vw;
  margin-left: 0;
}

#product-section .product-item {
  text-align: center;
  /*display: flex;
  justify-content: center;
  align-items: center;*/
  position: relative;

}

#catalog .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#product-section .product-item img.attachment-woocommerce_thumbnail {
  background: rgba(25, 72, 148, 0.1);
  border-radius: 20px;
  width: 100%;
  height: 38vh !important;
  object-fit: none;
}

#product-section .prev-white:not(.slick-hidden),
#product-section .next-white:not(.slick-hidden) {
  display: flex;
  justify-content: center;
  background-color: #194894;
  position: absolute;
  top: 16vh;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  padding: 1rem;
}

#product-section .prev-white img,
#product-section .next-white img {
  width: 1rem;
  height: 1rem;
}

#product-section .prev-white.loading,
#product-section .next-white.loading {
  display: none !important;
}

/*#product-section .prev-white {
  left: 12vw;
}*/

#product-section .next-white {
  right: -1vw;
}

#product-section .products-grid h3 {
  font-family: 'Manrope';
  font-size: 1rem;
  font-weight: 500;
  line-height: 1rem;

}

.product-tags>.tag {
  position: absolute;
  top: 1vh;
  right: 1vw;
  background: rgba(25, 72, 148, 0.1);
  color: #000;
  padding: .8rem;
  text-align: center;
  font-family: 'Manrope';
  font-weight: 500;
  font-size: 14px;
  z-index: 1;
  box-sizing: border-box;
  border-radius: 5px;
}

/* ****************************************************************************************************** */
#provider-form-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 6vh 2vw;
}

#provider-form-wrapper .form-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(10px, -0.64px + 2.13vw, 30px);
}

#provider-form-wrapper .form-content h1 {
  font-family: 'Georgia';
  font-size: 3rem;
  font-weight: 400;
  line-height: 3rem;
}

#provider-form-wrapper .image-display {
  flex: 1;
}

#provider-form-wrapper .image-display img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

#provider-form-wrapper .woocommerce .register .form-row,
#account-section .edit-account .form-row,
#tab-Vertical .woocommerce-form-row {
  flex: 1;
  display: flex;
  gap: 20px;
}

.form-row-parents {
  position: relative;
  flex: 1;
}

/* .form-row label.error {
  position: absolute;
  right: 0;
  top: -20px;
  width: auto;
  height: auto;
  margin: 0;
  font-size: 11px !important;
  font-weight: 500;
  line-height: 11px !important;
  background: #fb0101;
  padding: 5px 5px 4px !important;
  color: #fff !important
}

.form-row label.error:after {
  border-color: #fb0101 transparent transparent;
  -o-border-image: none;
  border-image: none;
  border-right: 6px solid transparent;
  border-style: solid;
  border-width: 6px;
  content: "";
  height: 0;
  left: 5px;
  position: absolute;
  top: 100%;
  width: 0
} */

#provider-form-wrapper .woocommerce .register .form-row-parents>input,
.form-row-parents>select,
#account-section .edit-account .form-row-parents>input,
#tab-Vertical input[type="text"] {
  flex: 1;
  outline: none;
  border: none;
  background-color: #FAFAFA;
  border: 1px solid #FAFAFA;
  color: #194894;
  font-family: 'Manrope';
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  padding: 18px 20px;
  border-radius: 1rem;

}

#provider-form-wrapper .woocommerce .register .form-row-parents>input::placeholder,
#account-section .edit-account .form-row-parents>input::placeholder,
#tab-Vertical input::placeholder {
  color: #194894;
}

#provider-form-wrapper .woocommerce .register>p,
#account-section .edit-account>p {
  display: none !important;
}

#provider-form-wrapper .woocommerce-privacy-policy-text p {
  display: none;
}

.woocommerce-Button,
input[type="submit"],
#step-1 button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  background-color: #194894;
  color: #fff;
  font-family: 'Manrope';
  font-weight: 500;
  font-size: 16px;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 3.5rem;
  border: none;
  cursor: pointer;
  width: fit-content;
  transition: transform 0.5s ease-in-out;
}

.button .icon-container {
  transition: transform 0.5s ease-in-out;
}

.woocommerce-Button:hover .icon-container,
input[type="submit"]:hover .icon-container,
#step-1 button:hover .icon-container {
  transform: rotate(45deg);
}

.woocommerce-Button .icon-container img {
  width: 16px;
  object-fit: contain;
  display: block;
  margin-bottom: -2px;
  transition: transform 0.5s ease-in-out;
}

.woocommerce-Button:hover .icon-container img {
  transform: unset;
}

.woocommerce-Button.login-button:hover .icon-container img {
  transform: rotate(45deg);
}

.login-button.woocommerce-Button:hover .icon-container {
  transform: translateY(-50%);
}

/* #arrow-send-patient {
  width: 8vw;
} */

.woocommerce-Button img:hover {
  transition: transform 0.5s ease-in-out;
  transform: rotate(45deg);

}



#account-section .right-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4vw;
}

#account-section .contact-section {
  flex: 1;
  position: relative;
}

#account-section .contact-section .provider {
  position: absolute;
  top: 5vh;
  right: 2vw;
  background: #FAFAFA;
  ;
  color: #194894;
  padding: .8rem;
  text-align: center;
  font-family: 'Manrope';
  font-weight: 500;
  font-size: 14px;
  z-index: 1;
  box-sizing: border-box;
  border-radius: 1rem;
}

#account-section .right-container h2 {
  font-family: Georgia;
  font-size: 3rem;
  font-weight: 400;
  line-height: 3rem;

}

#tab-Vertical {
  display: flex;
  flex-direction: column;
  gap: 5vh;
}

#tab-Vertical .tab-header {
  display: flex;
  flex-direction: row !important;
  align-items: center;
  gap: 2vw;
  font-family: 'Manrope';
  font-size: 1rem;
  font-weight: 500;
  line-height: 2rem;

}

.tab-header-wrapper {
  display: none;
}

#tab-Vertical .tabHeaderAccount {
  cursor: pointer;
}

#tab-Vertical .tabHeaderAccount.active {
  color: #194894;
  text-decoration: underline;
  font-family: 'Manrope';
  font-size: 1rem;
  font-weight: 600;
  line-height: 2rem;

}

.sales-representitive-container {
  display: flex;
  flex-direction: column;
  gap: 2vw;

}

.sales-representitive-container>.header {
  display: flex;
  gap: 1vw;
}

.sales-representitive-container>.header>img {
  width: 6vw;
  height: 15vh;
  border-radius: 1rem;
  object-fit: contain;
}

.sales-representitive-container>.header>.title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1vh;
}

.sales-representitive-container>.header>.title h4 {
  font-family: 'Manrope';
  font-size: 2rem;
  font-weight: 500;


}

.sales-representitive-container>.header>.title p {
  font-family: 'Manrope';
  font-size: 1.5rem;
  font-weight: 300;


}

.sales-representitive-container>.body {
  display: flex;
  flex-direction: column;
  gap: 5vh;
}

.sales-representitive-container>.body>.contact-switch-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 36vw;
}

.sales-representitive-container>.body>.contact-switch-container .address {
  text-align: right;
}

.sales-representitive-container>.body>.contact-switch-container>.buttons {
  display: flex;
  align-items: center;
  gap: 16px;

}

.sales-representitive-container>.body>.contact-switch-container>.adress {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1vh;
  padding: 0 6vw;

}

.sales-representitive-container>.body>.contact-switch-container>.adress p {
  font-family: 'Manrope';
  font-size: 1rem;
  font-weight: 400;
}

.contact-switch-container .buttons {
  margin-block: 30px 20px;
}

.buttons .tab-button {
  background-color: #fff;
  padding: 1.5vh;
  border-radius: 0.9rem;
  border: 1px solid #194894;
  font-family: 'Manrope';
  font-size: 1rem;
  font-weight: 500;
}

.buttons .tab-button.active {
  background-color: #194894;
  color: #fff;
  padding: 1.5vh;
  border-radius: 0.9rem;
  font-family: 'Manrope';
  font-size: 1rem;
  font-weight: 500;
}


#sales-form,
#pharmacist-form {
  display: none;
}

.contact-switch-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#sales-form textarea,
#pharmacist-form textarea {
  resize: none;
  width: 100%;
  height: 210px;
  background-color: #F2F2F2;
  border: none;
  border-radius: 16px;
  font-family: 'Manrope';
  font-size: 1rem;
  font-weight: 500;
  color: #194894;
  padding: 30px;
}

.wpcf7-form button {
  background-color: #194894;
  padding: 13px 29px;
  border-radius: 2rem;
  border: none;
  color: #fff;
  font-family: 'Manrope';
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
}

.wpcf7-form button>img {
  transition: all 0.4s ease-in-out;
  margin-bottom: -2px;
  width: 16px;
  object-fit: contain;
}

.wpcf7-form button:hover>img {

  transform: rotate(45deg);
  transition: 0.3s ease-in;
}

#sales-form textarea::placeholder,
#pharmacist-form textarea::placeholder {
  font-family: 'Manrope';
  font-size: 1.5rem;
  font-weight: 500;
  color: #194894;
  border: none;


}

#sales-form textarea:focus,
#pharmacist-form textarea:focus {
  border-color: transparent;
  outline: none;
}


#sales-form.active,
#pharmacist-form.active {
  display: block !important;
}

legend {
  display: none;
}


#reg_doctor_name {}

.sales-representative-container .header {
  display: flex;
  align-items: center;
  gap: 20px;
}




/* ****************************************fav********************************** */
#favorites .favorite-products {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 2vw;
  list-style: none;
}

#favorites h2 a {
  font-family: 'Manrope';
  font-size: 1rem;
  font-weight: 500;
  line-height: 18px;
  text-align: center;
  text-overflow: ellipsis;
  text-decoration: none;
  color: #000;
}







/* ************************************************************************************************************* */
#my-orders {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 2VW;
  gap: 5vh;
}

#my-orders>h1 {
  width: 80vw;
  font-family: Georgia;
  font-size: 3rem;
  font-weight: 400;

}

#my-orders>.orders-container>table {
  width: 80vw;
  background-color: #FAFAFA;
  min-height: 20vh;
  border-radius: 1rem;
  padding: 1vw;
  font-family: 'Manrope';
  font-size: 1rem;
  font-weight: 500;

}

#my-orders>.orders-container>table td {
  font-family: 'Manrope';
  font-size: 1rem;
  font-weight: 600;


}


/* ********************* */
.request-prices-catalog {
  padding: 3vw 4vh;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* justify-content: center; */
  background: rgba(25, 72, 148, 0.3);
  gap: 2vw;
}

.request-prices-catalog h2 {
  font-family: Georgia;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2rem;
  color: #fff;
}

.request-now-button {
  display: inline-flex;
  align-items: center;
  padding: 1vh 1vw;
  background-color: #fff;
  color: #194894;
  border-radius: 25px;
  text-decoration: none;
  font-family: 'Manrope';
  font-size: 1rem;
  font-weight: 500;
  line-height: 1rem;
  gap: 0.5rem;

}




.request-now-button:hover img {
  transform: rotate(45deg);
  transition: transform 0.5s ease-in-out;

}





@media (max-width:768px) {

  /* #product-section .products-header {
    flex-direction: column;
    align-items: center;
    gap: 5vw;

  }

  #product-section .product-filters {
    flex-direction: column;
    justify-content: center;
    align-items: center;

  }

  #product-section .products-header .view-full-button {
    width: 50%;
    align-items: center;
  }

  #product-section .prev-white, #product-section .next-white {
    display: none !important;
  }

  #product-section .product-item img {
    width: 80vw;
  }

  #product-section .products-grid {
    width: 100%;
  }

  .product-tags>.tag {
    top: 2vh;
    right: 13vw;
  }

  #patient .text-section {
    align-items: center;
  }

  #product-section .product-filters ul {
    align-items: center;
  } */

  .request-now-button {
    padding: 2vw !important;
  }

  #account-section .contact-section {
    display: none;
  }

  #tab-Vertical .tab-header {
    gap: 7vw;
  }

  .sales-representitive-container>.header {
    /* flex-direction: column; */
    gap: 6vw;
  }

  .sales-representitive-container>.header>img {
    width: 45vw;
    height: 25vh;
  }

  .sales-representitive-container>.header>.title h4 {
    font-size: 1.5rem;
  }

  .sales-representitive-container>.header>.title p {
    font-size: 1rem;
  }

  .sales-representitive-container>.body>.contact-switch-container>.adress {

    padding: 0px 2vw !important;
  }

  #sales-form textarea,
  #pharmacist-form textarea {
    font-size: 1rem;
    padding: 13px 23px;

  }

  #pharmacist-form textarea::placeholder {
    font-size: 1rem;


  }

  #sales-form textarea:focus,
  #pharmacist-form textarea:focus {
    font-size: 1rem
  }

  #provider-form-wrapper .woocommerce .register .form-row,
  #account-section .edit-account .form-row,
  #tab-Vertical .woocommerce-form-row {
    flex-direction: column;
  }

  #step-1,
  #step-2 {
    width: 100vw;
  }

}

#provider-form {
  display: none;
}

#provider-form.active {
  display: flex;
}

#patient-form {
  display: none;
}

#patient-form.active {
  display: flex;
}

#contact-section .wpcf7-form {
  display: flex;
  flex-direction: column;
  width: 100% !important;
  gap: 15px;
}

/*  */

.info-table .button-group {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.info-table input[type="radio"] {
  display: none;
}

.info-table .button-radio {
  display: flex;
  padding: 10px;
  border: .2rem solid transparent;
  background-color: rgba(25, 72, 148, 0.1);
  cursor: pointer;
  border-radius: .5rem;
  transition: background-color 0.3s ease;
  font-family: 'Manrope';
  font-size: .8rem;
  font-weight: 400;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  line-height: 1;
}

.info-table .button-radio:hover {
  background-color: rgba(25, 72, 148, 0.1);
}

.info-table input[type="radio"]:checked+.button-radio {
  border: .2rem solid #194894;
  background-color: white;
}

/*  message to pharmasie*/
.message-to-pharmacie {
  position: relative;
}

.message-to-pharmacie textarea {
  resize: none;
  width: 33vw;
  height: 20vh;
  background-color: #F2F2F2;
  border: none;
  border-radius: 1.5rem;
  font-family: 'Manrope';
  font-size: 1rem;
  font-weight: 500;
  color: #194894;
  padding: 2vw;
}

.message-to-pharmacie textarea::placeholder {
  font-family: 'Manrope';
  font-size: 1.5rem;
  font-weight: 500;
  color: #194894;
  border: none;
}

.message-to-pharmacie textarea:focus {
  border-color: transparent;
  outline: none;
}

@media (max-width: 768px) {
  .message-to-pharmacie textarea {
    width: 90vw;
    padding: 4vw;
  }

}

.form-select {
  border-radius: 17px !important;
  background-color: #FAFAFA !important;
  border-color: #FAFAFA !important;
  font-size: clamp(1rem, 0.911rem + 0.238vw, 1.125rem) !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  color: #194894 !important;
  height: auto !important;
  padding: clamp(0.313rem, 0.146rem + 0.532vw, 0.625rem) 40px clamp(0.313rem, 0.146rem + 0.532vw, 0.625rem) clamp(0.625rem, 0.459rem + 0.532vw, 0.938rem) !important;
  padding-right: 40px !important;
}

.form-select-style {
  font-family: 'Manrope' !important;
}

/* .select2-container--default {
  border-radius: 17px !important;
  background-color: #FAFAFA !important;
  border-color: #FAFAFA !important;
  font-size: clamp(1rem, 0.911rem + 0.238vw, 1.125rem) !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  color: #194894 !important;
  height: auto !important;
  padding: clamp(0.625rem, 0.293rem + 1.064vw, 1.25rem) !important;
  padding-right: 40px !important;
} */


/* .select2-container--default .select2-search--inline .select2-search__field::placeholder,
.select2-selection__rendered {
  color: #194894 !important;
}

.select2-container--open .select2-dropdown {
  border-radius: 10px !important;
  overflow: hidden !important;
  border: 1px solid #ccc !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #efefef !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder,
.select2-container--default .select2-selection--multiple .select2-selection__placeholder,
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #194894 !important;
}

.select2-container--default .select2-selection__choice,
.select2-container--default .select2-selection__choice {
  background-color: #194894 !important;
  border: 1px solid #194894 !important;
  color: #fff !important;
  font-size: 14px !important;
}

.select2-container--default .select2-selection__choice__remove,
.select2-container--default .select2-selection__choice__remove {
  color: #fff !important;
  opacity: 0.7;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 20px !important;
  width: 20px !important;
  top: 50% !important;
  right: 10px !important;
  transform: translateY(-50%) !important;
  bottom: inherit !important;
} */
.select2-container .select2-selection--single {
  height: auto !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

/* CSS for invalid fields */
/* .input-error {
  border: 2px solid red !important;
}

.input-valid {
  border: 2px solid green !important;
} */
.policy-row {
  display: flex !important;
  align-items: start !important;
  gap: 8px !important;
  align-items: center !important;
  position: relative;
}

.policy-row input {
  flex: 0 0 auto !important;
}

.policy-row label {
  font-family: 'Manrope';
}

.products-grid-wrapper {
  position: relative;
}

#step-2.step-group .policy-row {
  align-items: start !important;
}

.customCheckbox {
  position: relative;
}

.customCheckbox input[type="checkbox"] {
  position: absolute;
  left: 0;
  opacity: 0;
  top: 0;
  left: 0;
}

.customCheckbox>.lable-text {
  display: block;
  width: 100%;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
  color: #000;
  font-size: 14px;
}

.customCheckbox>.lable-text a {
  color: #000;
}

.customCheckbox>.lable-text a:hover {
  color: #194894;
}

.customCheckbox>.lable-text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  border: 2px solid #194894;
  background: #ffffff;
  border-radius: 3px;
}

.customCheckbox>.lable-text:after {
  content: "";
  -webkit-transform: translate(4px, 5.38px) rotate(-45deg);
  transform: translate(4px, 5.38px) rotate(-45deg);
  width: 9px;
  height: 5px;
  border: 2px solid #fff;
  border-top-style: none;
  border-right-style: none;
  opacity: 0;
  transition: all .4s ease-in-out;
  position: absolute;
  left: 0;
  top: 0px;
  bottom: 14px;
  margin: auto;
}

.customCheckbox input[type="checkbox"]:checked~.lable-text:before {
  background-color: #194894;
  border-color: #194894;
}

.customCheckbox input[type="checkbox"]:checked~.lable-text:after {
  opacity: 1;
}


.loader-wrapper {
  position: absolute;
  inset: 0;
  z-index: 9;
  background-color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
}

.loader-wrapper.loading {
  display: flex;
}

.loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  color: inherit;
  vertical-align: middle;
  pointer-events: none;
  border: 3px solid #194894;
  border-bottom-color: transparent;
  border-radius: 50%;
  animation: 1s loader linear infinite;
  position: relative;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.filter-clear-button {
  font-family: 'Manrope';
  margin-left: auto;
  margin-bottom: -21px;
  margin-right: 30px;
  text-decoration: none;
  color: #194894;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

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

  /*  #tab-Vertical .tab-header {
    overflow: auto;
    display: block;
    white-space: nowrap;
    margin: 0 -7px;

  }

  #tab-Vertical .tabHeaderAccount {
    cursor: pointer;
    white-space: normal;
    display: inline-block;
    width: auto;
    padding: 0 7px;
  }*/
  #account-section .right-container {
    padding-right: 20px;
  }

  .account-content #tab-Vertical {
    display: block;
    position: relative;
  }

  #tab-Vertical .tabHeaderAccount {
    display: block;
  }

  .tab-header-wrapper {
    width: 100%;
    background: #194894;
    color: #fff;
    padding: 15px 20px;
    border-radius: 15px;
    text-align: left;
    font-size: 16px;
    font-family: 'Manrope';
    font-weight: 700;
    position: relative;
    margin-bottom: 15px;
    display: block;
  }

  #tab-Vertical .tabHeaderAccount.active a {
    color: #fff;
    text-decoration: none;
    line-height: 1.2;
  }

  .tab-header-wrapper::before {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    content: '';
    right: 20px;
    top: 18px;
    width: 10px;
    height: 10px;
    transform: rotate(135deg);
  }

  #tab-Vertical .tab-header {
    position: absolute;
    top: 60px;
    z-index: 1;
    width: calc(100% - 30px);
    gap: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 00.4);
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
    display: none;
    width: 100%;
    overflow: hidden;
    white-space: unset;
    margin: 0;
  }

  .tab-header .tabHeaderAccount {
    width: 100%;
    background: #fff !important;
    margin: 0;
    border-bottom: 1px solid #194894;
    padding: 14px !important;
    height: auto;
    line-height: 1.2;
    border-radius: 0 !important;
  }

  .tab-header .tabHeaderAccount.active {
    background: #194894 !important
  }

  .tab-header .tabHeaderAccount:last-child {
    border-bottom: 0
  }

  .info-table .button-radio {
    padding: 5px 8px;
  }
}


@media (max-width: 991px) {
  #news-page {
    position: relative;
  }

  #explore-news-section .news-carousel {
    margin-bottom: 30px;
  }

  #news-filters-label {
    width: 100%;
    background: #194894;
    color: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    text-align: left;
    font-size: 18px;
    font-family: 'Manrope';
    font-weight: 700;
    position: relative;
  }

  #news-filters-label::before {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    content: '';
    right: 22px;
    top: 22px;
    width: 11px;
    height: 11px;
    transform: rotate(135deg);
  }

  #news-filters {
    position: absolute;
    top: 78px;
    z-index: 1;
    width: calc(100% - 30px);
    gap: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 00.4);
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
    display: none;
  }

  #news-filters button {
    width: 100%;
    background: #fff !important;
    margin: 0;
    border-bottom: 1px solid #194894;
    padding: 14px !important;
    height: auto;
    line-height: 1.2;
    border-radius: 0 !important;
  }

  #news-filters button.active {
    background: #194894 !important
  }

  #news-filters button:last-child {
    border-bottom: 0
  }

  #news-posts {
    margin-top: 10px
  }

  #provider-form-wrapper .woocommerce .register .form-row-parents>input,
  #account-section .edit-account .form-row-parents>input,
  #tab-Vertical input[type="text"] {
    padding: 17px 23px;
    font-size: 1rem;
  }

  #provider-form-wrapper .woocommerce .register .form-row-parents>input::placeholder,
  #account-section .edit-account .form-row-parents>input::placeholder,
  #tab-Vertical input::placeholder,
  #sales-form textarea::placeholder,
  #pharmacist-form textarea::placeholder,
  .message-to-pharmacie textarea::placeholder {
    font-size: 1rem;
  }



}

.sticky-header {
  padding-top: var(--header-height);
}

header.has-sticky {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  transition: .4s all ease-in-out;
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  padding-block: 15px;
}

#form-msg-orders {
  width: 100%;
}

.woocommerce-shop .woocommerce-notices-wrapper {
  display: none;
}


/* .woocommerce-password-hint,
.woocommerce-password-strength {
  display: none !important;
} */

.login-box .woocommerce-form-row {
  position: relative;
}


@media (max-width: 768px) {
  #account-section .right-container {
    padding-right: 0;
  }

  .input-radiobutton {
    flex-direction: row !important;
  }
}


@media(max-width:568px) {
  .contact-switch-container {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: start;
    margin-bottom: 15px;
  }

  .sales-representitive-container>.header>img {
    width: 100px;
    height: 100px;
  }

  .sales-representitive-container>.header>.title h4 {
    font-size: 20px;
  }

  .wpcf7-form button {
    padding: 11px 20px;
    font-size: 14px;
  }

  .wpcf7-form button>img {
    width: 14px
  }

  .info-table .button-radio {
    min-width: auto;
    padding: 3px 8px;
  }

  .wpcf7-form .form-control {
    flex: 0 0 100%;
  }
}

#provider-form-wrapper .woocommerce .register .form-row.form-row-wide.form-row-three {
  flex: 0 0 33.33%;
  flex-direction: row;
  display: inline-flex;
}

.form-loader {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  background-color: hsla(0, 0%, 100%, 0.50);
}

.form-loader.loading {
  display: flex;
}

.form-loader::before {
  content: '';
  width: 19px;
  height: 19px;
  border: 3px solid #194894;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.formResponse,
.salesformResponse {
  display: none;
  margin-top: 10px;
}

.formResponse.show,
.salesformResponse.show {
  display: block;
}

.formResponse p,
.salesformResponse p {
  font-size: 14px;
}

.formResponse p.success,
.salesformResponse p.success {
  color: green;
}

.formResponse p.error,
.salesformResponse p.error {
  color: red;
}