.banner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.55)),
    url(/assets/images/common/bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 120px 15px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bgZoom 15s ease-in-out infinite alternate;
}

@keyframes bgZoom {
  0% {
    background-size: 100%;
    background-position: center;
  }
  100% {
    background-size: 150%; /* slight zoom-in */
    background-position: center;
  }
}

.banner-content p {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.banner-content h2 {
  font-size: 46px;
  font-weight: 700;
  margin: 8px 0;
}

/* === Animation Effects === */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-down {
  animation: fadeInDown 1s ease-out forwards;
}

.fade-up {
  animation: fadeInUp 1s ease-out forwards;
}

.fade-up-delay {
  animation: fadeInUp 1s ease-out 0.5s forwards;
  opacity: 0; /* Hidden until animation */
}


.banner-top-left button.quot-btn:hover {
  cursor: pointer;
}

.banner-top-right {
  margin-top: 18px;
}

.typing-text {
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #ffffff; /* Cursor effect */
  animation: typing 2s steps(30, end) forwards, blink 0.7s step-end infinite;
}

/* Typing effect */
@keyframes typing {
  from { width: 0 }
  to { width: 22ch } /* Adjust ch count to match your text length */
}

/* Cursor blinking */
@keyframes blink {
  from, to { border-color: transparent }
  50% { border-color: #ffffff; }
}

/* Category Section */
.category {
  padding: 40px 20px;
}

.category .container {
  max-width: 1200px;
  margin: 0 auto;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* default: 4 per row */
  gap: 20px;
}

/* ✅ Mobile: 3 per row */
@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ✅ Very small screens: 2 per row */
@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.category-card {
  position: relative; /* for overlay positioning */
  overflow: hidden;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.category-card a {
  text-decoration: none;
  display: block;
  color: inherit;
}

.category-card img {
  height: 150px;
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease; /* smooth zoom */
}

/* ✅ Zoom effect on hover */
.category-card:hover img {
  transform: scale(1.1);
}

/* ✅ Overlay (hidden by default) */
.category-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;              
  background: rgba(255, 255, 255, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;       
  text-align: center;
  padding: 10px;
  opacity: 0;                 /* hidden */
  transition: opacity .3s ease;
}

/* ✅ Show overlay on hover */
.category-card:hover .overlay {
  opacity: 1;
}

.category-card .overlay h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin: 0;
  word-break: break-word;
}

/* ✅ Gradient Card Styles for Dynamic WooCommerce Categories */
.category-gradient-card {
  background: linear-gradient(135deg, #1a365d 0%, #55c4eb 100%);
  padding: 40px 20px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  height: 180px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.category-gradient-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.category-gradient-card h3 {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-card a {
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}

@media (max-width: 768px) {
  .category-gradient-card {
    height: 140px;
    padding: 30px 15px;
  }
  
  .category-gradient-card h3 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .category-gradient-card {
    height: 120px;
    padding: 20px 10px;
  }
  
  .category-gradient-card h3 {
    font-size: 0.85rem;
  }
}

.about-simple {
  padding: 60px 20px;
}

.about-simple p {
  max-width: 900px;
  margin: 0 auto 25px auto;
  font-size: 18px;
  line-height: 1.7;
  color: #222;
}

.btn-custom {
  display: inline-block;
  padding: 12px 28px;
  background: #55c4eb; 
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-custom:hover {
  background: #d97a12;
}

.accordion-button {
  background-color: #fff;   /* keep white background */
  color: #55c4eb;          /* blue text */
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background-color: #f0faff;  /* very light blue background when opened */
  color: #55c4eb;
  box-shadow: none;
}

.accordion-button::after {
  filter: invert(47%) sepia(97%) saturate(480%) hue-rotate(161deg) brightness(94%) contrast(92%);
  /* makes the arrow icon also #55c4eb */
}

.accordion-item {
  border: 1px solid #55c4eb;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-body {
  background: #fff;
  color: #333;  /* normal black text */
}
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
  background-color: #c3efff;
}

.service-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #e6f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #006f97;
}

.service-card h5 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
  color: #17619e;
}

.service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}


.global-presence {
  background-color: #edf9ff;
  padding: 3.5rem 0;
  color: #176e9e;
}

.global-presence .ul-accordion .li-accordion .accordion-button:not(.collapsed) {
  background-color: unset !important;
  border: 0;
  border-bottom: 1px solid;
  box-shadow: none !important;
  color: #176e9e !important;
  padding-bottom: 5px;
}

.global-presence .ul-accordion .li-accordion .accordion-button::after {
  font-family: "FontAwesome";
  flex-shrink: 0;
  content: "\f078";
  background-image: unset;
}

.global-presence .ul-accordion .li-accordion button {
  background-color: unset;
  color: #176e9e;
  padding: 4px 0px;
  font-size: 1rem !important;
  font-weight: 400 !important;
}

.global-presence .ul-accordion .li-accordion h2 {
  font-size: 1rem;
  font-family: Montserrat, sans-serif;
}

.global-presence .ul-accordion .li-accordion {
  border: 1px solid;
  padding: 6px 12px;
  border-radius: 0.25rem;
  position: relative;
  margin-bottom: 10px;
  background-color: unset;
}

.why-section {
  padding: 60px 20px;
  background: #f9fafc;
}

.why-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}

.why-title span {
  color: #2c8ecf;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 columns for desktop/tablet */
  gap: 40px;
  align-items: start;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr; /* single column */
  }
}

.why-left {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.why-list li {
  font-size: 16px;
  margin: 8px 0;
  padding-left: 22px;
  position: relative;
}

.why-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2c8ecf;
  font-weight: bold;
}


.highlight-box {
  display: flex;
  gap: 15px;
  align-items: center;
  background: #2c8ecf;
  color: #fff;
  border-radius: 12px;
  padding: 15px;
  margin-top: 20px;
}

.highlight-box img {
  width: 40px;
}

.why-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stats-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-6px);
}

.stats-card img {
  width: 50px;
  margin-bottom: 12px;
}

.stats-card h3 {
  font-size: 24px;
  color: #2c8ecf;
  margin: 5px 0;
}

.stats-card p {
  font-size: 14px;
  color: #555;
}

.inquiry-section form button {
  margin-top: 0.6rem;
  padding: 5px 25px;
  opacity: 1;
  color: white;
  text-transform: uppercase;
  font-size: 14px;
}

.inquiry-section form {
  margin-top: 2.5rem;
  border: #000;   /* black border */
  border-radius: 8px;       /* rounded corners */
  padding: 20px;            /* space inside */
  max-width: 500px;         /* optional: form width */
  margin: 20px auto;        /* center align */
  background: #fff;         /* white background */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* soft shadow */
}

.inquiry-section {
  margin: 4rem 0;
}

.inquiry-section form .input-group {
  display: inline-block;
  padding: 8px 10px;
}

.inquiry-section form .input-group input,
.inquiry-section form .input-group textarea,
.inquiry-section form .input-group select {
  width: 100%;
  background: transparent;
  border-color: #3333338a;
  border-radius: 4px !important;
}

.inquiry-section form .input-group label {
  margin-bottom: 2px;
  font-size: 14px;
}

/* pagespeed fix */

.banner .banner-top-right > img {
  width: 100%;
  height: auto;
  aspect-ratio: 17 / 9;
  object-fit: cover;
}

.category {
  min-height: 138px;
}

.banner .banner-top-left .certificate-logo {
  min-height: 118px;
}

/* 0 to 768px */

@media only screen and (max-width: 576px) {
  .banner {
    margin-top: 0;
    z-index: 0;
    margin-bottom: -42px;
    padding: 50px 10px 100px 10px;
    background-image: url(assets/image/bg-top-sm.webp);
  }

  .banner .banner-top-left h2 {
    font-size: xx-large;
  }

  .banner .banner-top-left .certificate-logo img {
    width: 50px;
  }

  .banner .banner-top-left .quot-btn {
    font-size: 10px;
    padding: 8px 20px;
  }

  .home-main-category-card {
    margin: 5px 5px 5px 0px;
    width: 78px;
  }

  #category .item img {
    height: 46px;
  }

  #category .item .category-name {
    min-height: 24px;
    padding-top: 2px !important;
    font-size: 8px;
    margin-top: 0px;
  }

  #category .item div.image {
    margin-top: 3px !important;
  }

  #category .item img {
    padding: 5px;
  }

  #category .item .card {
    border-radius: 0.2rem;
  }

  .about-content {
    margin-top: 25px;
    margin-bottom: 20px;
  }

  .explore-product {
    padding: 28px 0;
    background-image: url(/assets/images/common/bg-ptt.webp);
  }

  .explore-product .product-img a {
    width: 100%;
    display: block;
    max-height: 112px;
  }

  .explore-product .product-img .view-all-card a {
    height: 112px;
    line-height: 124px;
  }

  .explore-product .product-img .row > .col-4.col-md-2 {
    margin-top: 12px;
    padding: 0 5px;
  }

  .explore-product .product-img {
    margin-top: 0.75rem;
  }

  .main-services {
    margin-top: 32px;
    margin-bottom: 40px;
  }

  .global-presence {
    padding: 2rem 0;
  }

  .why-Ayunova {
    margin: 1.7rem 0;
  }

  .why-Ayunova .list ul {
    font-size: 12px;
    padding-right: 4px;
  }

  .why-Ayunova .list ul li:before {
    margin-top: 4px;
    display: unset;
    flex: none;
  }

  .why-Ayunova .list ul li {
    display: flex;
  }

  .why-Ayunova .small-card p {
    font-size: 12px !important;
  }

  .why-Ayunova .small-card p {
    font-size: 12px !important;
  }

  section.inquiry-section {
    margin: 2rem 0;
  }

  /* fix area block assin */
  .banner .banner-top-left .certificate-logo {
    min-height: 70px;
  }

  .banner .banner-top-right > img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  #category .item img {
    aspect-ratio: 1 / 0;
    object-fit: cover;
  }

  .explore-product .product-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .global-presence img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .inquiry-section img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block; 
    margin: 0 auto;
  }

  .main-services .service-card .two-part > img {
    width: 75px;
    height: 75px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .why-Ayunova .two-part > img {
    width: 35px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .why-Ayunova .small-card > img {
    width: 47px;
    height: 47px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .mobile-header-logo {
    width: auto;
    height: auto;
    object-fit: cover;
  }

  .img-foot {
    height: auto;
    object-fit: cover;
  }

  footer .footer-widget img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }
}

/* 577px to 768px */

@media (min-width: 577px) and (max-width: 768px) {
  .banner {
    margin-top: 0;
  }
}

/* 768px to 1200px */

@media (min-width: 768px) and (max-width: 1200px) {
  #navbar {
    margin: 0 10px;
  }
}

.select-country-code .select-box .selected-option div::after {
  top: 35%;
  width: 0.5rem;
  height: 0.5rem;
}

.select-country-code .select-box .selected-option {
  overflow: visible;
  background-color: unset;
  border: 1px solid;
  border-color: #3333338a;
  border-radius: 4px !important;
}

.select-country-code .select-box .selected-option div::after {
  right: 0.4rem;
}

.select-country-code .select-box .selected-option div.code-box strong {
  margin-left: 2px;
}

.select-country-code .select-box .selected-option div.code-box svg {
  margin-top: 2px;
}

.select-country-code .select-box .selected-option div.code-box {
  width: auto;
  padding: 0 1.3rem 0 0.5rem;
  display: flex;
}

.select-country-code .select-box .selected-option strong {
  font-size: 1rem;
}

form .input-group.select-country-code .select-box input {
  font-size: 1rem;
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  border: 0;
  border-left: 1px solid;
  border-radius: 0 !important;
}

form
  .input-group.select-country-code
  .select-box
  input.search-box::placeholder {
  color: #333333;
}

form .input-group.select-country-code .select-box input.search-box {
  color: #333333;
  border: 0;
}

.select-country-code .select-box {
  width: auto;
  margin: auto;
}

.select-country-code .select-box .options.active {
  z-index: 3;
  border: 1px solid #3333338a;
}

.select-country-code .select-box .options ol {
  padding-left: 0;
}

.country-home-link a {
  color: #55c4eb;
}

.country-home-link a:hover {
  color: white;
}

/* new common */

.poppins {
  font-family: "Poppins", serif;
}

.text-green {
  color: #0a0a0a !important;
}

.text-blue {
  color: #176e9e !important;
}

.bg-blue {
  background-color: #176e9e !important;
}

.bg-green {
  background-color: #55c4eb !important;
}

.fs-10 {
  font-size: 10px !important;
}

.fs-11 {
  font-size: 11px !important;
}

.fs-12 {
  font-size: 12px;
}

.fs-14 {
  font-size: 14px;
}

body {
  background-color: #f8f8f8;
}

.first-tag {
  margin-top: -24px;
}

.breadcrumbs.first-tag {
  background: rgba(210, 210, 210, 0.2);
  padding-top: calc(1rem + 25px) !important;
}

.breadcrumbs .breadcrumb-item:not(.active) > a {
  color: black;
}

.breadcrumbs .breadcrumb-item:not(.active) > a > i {
  display: none;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  font-weight: 900;
  font-family: monospace;
}

label.required:after {
  content: "*";
  color: red;
}

/* new header */

.translate_language {
  margin-top: -1px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.translate_language span.bd-round-left {
  width: 8px;
  border-radius: 0 0 8px 0;
}

.translate_language span.bd-round-right {
  width: 8px;
  border-radius: 0 0 0 8px;
  margin-right: -1px;
}

.translate_language a > img.flag {
  border-radius: 4px;
  padding-top: 2px;
}

.skiptranslate[style=""] + header {
  margin-top: 39px;
}

img.l-logo {
  max-width: 250px;
}

.md-header-contact a {
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 15px;
}

.md-header-contact a.mail {
  background-color: #176e9e;
  margin-left: 15px;
  padding-right: 15px;
}

.md-header-contact a.phone {
  background-color: #55c4eb;
}

form.search-lg-form {
  display: flex;
}

.search-lg-form button.submit {
  outline: 0;
  border: 0;
  background-color: #176e9e;
  color: white;
  line-height: 1;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 14px;
}

.search-lg-form .search-box::placeholder {
  color: darkgray;
  opacity: 1;
  /* Firefox */
}

.search-lg-form .search-box::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: darkgray;
}

.search-lg-form .search-box {
  line-height: 1;
  outline: 0;
  border: 0;
  border-bottom: 1px solid darkgray;
  border-radius: 0;
  margin-right: -5px;
  font-size: 14px;
  background: transparent;
}

#navbar:not(.sticky) {
  position: relative;
}

#navbar {
  margin: 0 220px;
  padding: 14px 0;
  border-radius: 7px;
}

.button-nav {
  outline: unset;
  border: none;
  color: rgb(5, 5, 5);
  font-size: 20px;
  border-radius: 10px;
  padding: 4px 8px;
}

.mobile-header-logo {
  height: 40px;
}

.lg-lang a,
.sm-lang a {
  background-image: url("/assets/icons/contryflag.webp");
  background-position: 0px -4px;
}

.lg-lang .flag {
  background-position: -0px -0px;
  width: 36px;
  height: auto;
  /* height 35 */
}

.sm-lang a > img {
  width: 40px;
  height: auto;
}

a.gflag {
  vertical-align: middle;
  font-size: 18px;
  padding: 1px 0px;
  background-repeat: no-repeat;
}

#navbar_responsive .multi_language_box {
  width: 250px;
}

/* new footer */

.footer-link {
  font-weight: 400;
}

/* inner search input for product search in Category/brand/integrity */


.title-category .search-input {
  background-color: transparent;
  border: 0.5px solid #a9a9a9;
  outline: 0;
  border-radius: 16px;
  line-height: 2;
  padding-left: 12px;
  padding-right: 12px;
}

.category-heading {
  margin-top: -90px;
  padding-top: 90px;
}

.category-heading.first-visible {
  margin-top: 0px;
  padding-top: 0px;
}

a#showMore {
  line-height: 2.5;
  padding-left: 18px;
  font-weight: 600;
  text-transform: lowercase;
}

/* main category card set */
/* responsive */
/* 0 to 768px */

@media only screen and (max-width: 576px) {
  img.img-foot {
    width: 60%;
  }

  .m-head {
    height: 1.6rem;
  }

  .m-head a {
    padding-top: 1rem;
    padding-bottom: 0.22rem;
    font-size: 0.65rem;
    font-weight: 700;
  }

  #top_button,
  .m-head a:first-child,
  .wp_sticky {
    /*padding-bottom: 0.34rem;*/
    right: 4px;
    bottom: 4px;
    left: unset;
  }

  .dk-footer-box-info a.footer-logo.justify-content-center {
    justify-content: left !important;
  }

  .footer-info-text {
    margin: 12px 0;
  }

  .first-tag {
    margin-top: 0px;
  }

  .breadcrumbs.first-tag {
    padding-top: 0.5rem !important;
  }

  .navigation-button {
    padding: 0;
    text-align: right;
    overflow: hidden;
  }

  #navbar_responsive .multi_language_box {
    background-color: white;
  }

  ul.nav_responsive {
    padding-bottom: 4rem;
  }

  ol.breadcrumb {
    font-size: 0.5rem;
  }

  .breadcrumbs {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  #accordionExample button.accordion-button,
  #accordionExample .accordion-body ul > li {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.65rem !important;
  }

  #accordionExample button.accordion-button::after {
    width: 0.75rem;
    height: 0.75rem;
    background-size: 0.75rem;
  }

  .category-box-name {
    font-size: 12px !important;
    padding-top: 2px;
    line-height: 1;
  }

  .category-box {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .category-box .card {
    height: 80px !important;
  }
}

.category-box {
  margin-top: 1rem !important;
}

.category-box .card {
  height: 86px;
  line-height: 1;
}

/* 768px to 1200px */

@media (min-width: 768px) and (max-width: 1200px) {
  #navbar {
    margin: 0 10px;
    background: #55c4eb;
  }

  .first-tag {
    margin-top: 0px;
  }
}

/* 1200px to 1600px */

@media (min-width: 1201px) and (max-width: 1600px) {
  #navbar {
    margin: 0 20px;
    background: #55c4eb;
  }
}

.button-nav {
  cursor: pointer !important;
  z-index: 9999;
  position: relative;
}

.navigation-backdrop {
  position: fixed;
  top: 0;
  left: 250px;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9998;
}

html {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.ios,
.ios * {
  cursor: pointer;
}

.captcha-box {
  background: url("https://Ayunovapharma.com/assets/img/icons/bright-squares.png")
    no-repeat center center;
  background-size: cover;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  color: #333;
}

.captcha-box .captcha-text {
  font-size: 22px;
  letter-spacing: 4px;
  user-select: none;
}

.captcha-box .bold {
  font-weight: bold;
}

.captcha-box .italic {
  font-style: italic;
}

.captcha-box .bold-italic {
  font-weight: bold;
  font-style: italic;
}

.captcha-box .normal {
  font-weight: normal;
  font-style: normal;
}
