/* Start custom CSS for html, class: .elementor-element-a40bdde *//* =========================================================
   All IPTV Player – FAQ Page
   New Premium Design
   Existing HTML Remains Unchanged
========================================================= */

.atv-faq-page-section {
  --faq-primary: #24dde0;
  --faq-primary-dark: #00aeb5;
  --faq-teal: #006f73;
  --faq-dark: #021416;
  --faq-dark-soft: #062629;
  --faq-title: #092f31;
  --faq-text: #405f61;
  --faq-muted: #708587;
  --faq-white: #ffffff;
  --faq-light: #f3ffff;
  --faq-soft: #f7fbfb;
  --faq-border: #dcebec;

  position: relative;
  width: 100%;
  padding: clamp(75px, 8vw, 110px) 20px;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7fbfb 50%,
      #ffffff 100%
    );
  color: var(--faq-title);
  font-family: inherit;
}

.atv-faq-page-section *,
.atv-faq-page-section *::before,
.atv-faq-page-section *::after {
  box-sizing: border-box;
}

/* =========================================================
   Background Decorations
========================================================= */

.atv-faq-page-section::before {
  content: "";
  position: absolute;
  top: 170px;
  right: -180px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(36, 221, 224, 0.12),
    transparent 68%
  );
  pointer-events: none;
}

.atv-faq-page-section::after {
  content: "";
  position: absolute;
  bottom: 150px;
  left: -210px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 174, 181, 0.08),
    transparent 68%
  );
  pointer-events: none;
}

.atv-faq-container {
  position: relative;
  z-index: 2;
  width: min(100%, 1120px);
  max-width: none;
  margin-inline: auto;
}

/* =========================================================
   Heading Panel
========================================================= */

.atv-faq-heading {
  position: relative;
  max-width: none;
  margin: 0 0 28px;
  padding: clamp(38px, 5vw, 62px);
  overflow: hidden;
  border: 1px solid rgba(36, 221, 224, 0.18);
  border-radius: 32px;
  background:
    radial-gradient(
      circle at 88% 20%,
      rgba(36, 221, 224, 0.19),
      transparent 30%
    ),
    radial-gradient(
      circle at 8% 100%,
      rgba(0, 174, 181, 0.14),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #021416 0%,
      #062629 58%,
      #031719 100%
    );
  box-shadow: 0 30px 75px rgba(3, 45, 47, 0.2);
  text-align: left;
}

.atv-faq-heading::before {
  content: "";
  position: absolute;
  top: 34px;
  right: 38px;
  width: 140px;
  height: 140px;
  opacity: 0.22;
  background-image: radial-gradient(
    rgba(36, 221, 224, 0.65) 1.2px,
    transparent 1.2px
  );
  background-size: 13px 13px;
  pointer-events: none;
}

.atv-faq-heading::after {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(38px, 5vw, 62px);
  width: 78px;
  height: 5px;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(
    90deg,
    var(--faq-primary),
    var(--faq-primary-dark)
  );
}

/* Heading Label */

.atv-faq-heading > span {
  position: relative;
  z-index: 2;
  min-height: 33px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 13px;
  border: 1px solid rgba(36, 221, 224, 0.24);
  border-radius: 999px;
  background: rgba(36, 221, 224, 0.085);
  color: var(--faq-primary);
  font-size: 11.5px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.25px;
}

.atv-faq-heading > span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--faq-primary);
  box-shadow: 0 0 0 5px rgba(36, 221, 224, 0.1);
}

/* Heading Title */

.atv-faq-heading h2 {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(35px, 4.5vw, 61px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: clamp(-1.8px, -0.12vw, -0.7px);
  text-wrap: balance;
}

/* Heading Description */

.atv-faq-heading p {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0;
  color: #bfd4d6;
  font-size: clamp(15px, 1.35vw, 17px);
  font-weight: 500;
  line-height: 1.8;
}

/* =========================================================
   FAQ List
========================================================= */

.atv-faq-list-centered {
  max-width: none;
  margin: 0;
  display: grid;
  gap: 14px;
  counter-reset: alltv-faq-counter;
}

/* =========================================================
   FAQ Item
========================================================= */

.atv-faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--faq-border);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 13px 34px rgba(4, 70, 73, 0.065);
  counter-increment: alltv-faq-counter;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.atv-faq-item:hover {
  border-color: rgba(0, 174, 181, 0.29);
  box-shadow: 0 19px 46px rgba(4, 70, 73, 0.1);
  transform: translateY(-2px);
}

.atv-faq-item[open] {
  border-color: rgba(0, 174, 181, 0.38);
  box-shadow: 0 24px 56px rgba(4, 70, 73, 0.13);
}

/* =========================================================
   FAQ Summary
========================================================= */

.atv-faq-item summary {
  position: relative;
  min-height: 91px;
  display: flex;
  align-items: center;
  padding: 22px 76px 22px 92px;
  list-style: none;
  cursor: pointer;
  background: #ffffff;
  color: var(--faq-title);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.48;
  transition:
    background 0.22s ease,
    color 0.22s ease;
}

.atv-faq-item summary::-webkit-details-marker {
  display: none;
}

/* FAQ Number */

.atv-faq-item summary::before {
  content: counter(alltv-faq-counter, decimal-leading-zero);
  position: absolute;
  top: 50%;
  left: 23px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 174, 181, 0.18);
  border-radius: 14px;
  background: var(--faq-light);
  color: var(--faq-primary-dark);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.7px;
  transform: translateY(-50%);
  transition:
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}

/* Open / Close Button */

.atv-faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 23px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 174, 181, 0.18);
  border-radius: 11px;
  background: var(--faq-light);
  color: var(--faq-primary-dark);
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-50%);
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}

/* Opened Question */

.atv-faq-item[open] summary {
  background:
    radial-gradient(
      circle at 92% 15%,
      rgba(36, 221, 224, 0.13),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #062629,
      #031719
    );
  color: #ffffff;
}

.atv-faq-item[open] summary::before {
  border-color: rgba(36, 221, 224, 0.2);
  background: rgba(36, 221, 224, 0.1);
  color: var(--faq-primary);
}

.atv-faq-item[open] summary::after {
  content: "−";
  border-color: var(--faq-primary);
  background: var(--faq-primary);
  color: #032224;
  transform: translateY(-50%) rotate(180deg);
}

/* =========================================================
   FAQ Answer
========================================================= */

.atv-faq-item > div {
  position: relative;
  padding: 28px 34px 31px 92px;
  border-top: 1px solid var(--faq-border);
  background:
    linear-gradient(
      180deg,
      #ffffff,
      #fbfefe
    );
}

.atv-faq-item > div::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 46px;
  width: 4px;
  height: calc(100% - 62px);
  min-height: 38px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    var(--faq-primary),
    var(--faq-primary-dark)
  );
}

.atv-faq-item p {
  max-width: 870px;
  margin: 0;
  color: var(--faq-text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.85;
}

.atv-faq-item p + p {
  margin-top: 13px;
}

.atv-faq-item a {
  color: var(--faq-teal);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(0, 174, 181, 0.25);
  text-underline-offset: 3px;
}

.atv-faq-item a:hover {
  color: var(--faq-primary-dark);
  text-decoration-color: currentColor;
}

/* Lists Inside Answers */

.atv-faq-item ul,
.atv-faq-item ol {
  display: grid;
  gap: 9px;
  margin: 15px 0 0;
  padding-left: 22px;
}

.atv-faq-item li {
  color: var(--faq-text);
  font-size: 14px;
  font-weight: 550;
  line-height: 1.7;
}

.atv-faq-item li::marker {
  color: var(--faq-primary-dark);
  font-weight: 900;
}

/* =========================================================
   Bottom CTA
========================================================= */

.atv-faq-bottom-cta {
  position: relative;
  max-width: none;
  margin: 34px 0 0;
  padding: clamp(37px, 5vw, 57px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "label actions"
    "heading actions"
    "description actions";
  align-items: center;
  gap: 9px 50px;
  overflow: hidden;
  border: 1px solid rgba(36, 221, 224, 0.18);
  border-radius: 29px;
  background:
    radial-gradient(
      circle at 88% 15%,
      rgba(36, 221, 224, 0.19),
      transparent 31%
    ),
    linear-gradient(
      135deg,
      #021416,
      #062629 59%,
      #031719
    );
  box-shadow: 0 29px 70px rgba(3, 45, 47, 0.22);
  color: #ffffff;
  text-align: left;
}

.atv-faq-bottom-cta::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 35px;
  width: 115px;
  height: 115px;
  opacity: 0.19;
  background-image: radial-gradient(
    rgba(36, 221, 224, 0.7) 1px,
    transparent 1px
  );
  background-size: 12px 12px;
  pointer-events: none;
}

.atv-faq-bottom-cta::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: clamp(37px, 5vw, 57px);
  width: 78px;
  height: 4px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(
    90deg,
    var(--faq-primary),
    var(--faq-primary-dark)
  );
}

/* CTA Label */

.atv-faq-bottom-cta > span {
  position: relative;
  z-index: 2;
  grid-area: label;
  width: fit-content;
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  margin: 0 0 4px;
  padding: 7px 12px;
  border: 1px solid rgba(36, 221, 224, 0.23);
  border-radius: 999px;
  background: rgba(36, 221, 224, 0.085);
  color: var(--faq-primary);
  font-size: 10.5px;
  font-weight: 850;
  line-height: 1;
}

/* CTA Heading */

.atv-faq-bottom-cta h3 {
  position: relative;
  z-index: 2;
  grid-area: heading;
  max-width: 680px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(29px, 3.5vw, 46px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.7px;
  text-wrap: balance;
}

/* CTA Text */

.atv-faq-bottom-cta p {
  position: relative;
  z-index: 2;
  grid-area: description;
  max-width: 700px;
  margin: 7px 0 0;
  color: #b7ced0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}

/* CTA Actions */

.atv-faq-bottom-actions {
  position: relative;
  z-index: 2;
  grid-area: actions;
  min-width: 215px;
  display: grid;
  gap: 10px;
}

/* CTA Buttons */

.atv-faq-whatsapp,
.atv-faq-order {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 12.5px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none !important;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.atv-faq-whatsapp {
  border: 1px solid var(--faq-primary);
  background: linear-gradient(
    135deg,
    var(--faq-primary),
    var(--faq-primary-dark)
  );
  color: #032224 !important;
  box-shadow: 0 13px 28px rgba(0, 174, 181, 0.24);
}

.atv-faq-whatsapp:hover {
  color: #032224 !important;
  box-shadow: 0 17px 36px rgba(0, 174, 181, 0.33);
  transform: translateY(-2px);
}

.atv-faq-order {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
  color: #ffffff !important;
}

.atv-faq-order:hover {
  border-color: rgba(36, 221, 224, 0.3);
  background: rgba(36, 221, 224, 0.1);
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* =========================================================
   Accessibility
========================================================= */

.atv-faq-page-section summary:focus-visible,
.atv-faq-page-section a:focus-visible {
  outline: 3px solid rgba(0, 174, 181, 0.36);
  outline-offset: 4px;
}

/* =========================================================
   Tablet
========================================================= */

@media (max-width: 900px) {
  .atv-faq-bottom-cta {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "heading"
      "description"
      "actions";
  }

  .atv-faq-bottom-actions {
    width: 100%;
    max-width: 470px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
  }
}

/* =========================================================
   Mobile
========================================================= */

@media (max-width: 700px) {
  .atv-faq-page-section {
    padding: 65px 15px;
  }

  .atv-faq-heading {
    padding: 37px 24px;
    border-radius: 24px;
    text-align: center;
  }

  .atv-faq-heading::before {
    display: none;
  }

  .atv-faq-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .atv-faq-heading > span {
    margin-inline: auto;
  }

  .atv-faq-heading h2 {
    font-size: clamp(33px, 10vw, 43px);
  }

  .atv-faq-heading p {
    margin-inline: auto;
    font-size: 15px;
  }

  .atv-faq-item summary {
    min-height: 82px;
    padding: 19px 60px 19px 71px;
    font-size: 14px;
  }

  .atv-faq-item summary::before {
    left: 17px;
    width: 39px;
    height: 39px;
    border-radius: 12px;
    font-size: 10.5px;
  }

  .atv-faq-item summary::after {
    right: 16px;
    width: 33px;
    height: 33px;
    font-size: 18px;
  }

  .atv-faq-item > div {
    padding: 25px 21px 27px 45px;
  }

  .atv-faq-item > div::before {
    top: 27px;
    left: 21px;
    height: calc(100% - 54px);
  }

  .atv-faq-item p,
  .atv-faq-item li {
    font-size: 13.5px;
  }

  .atv-faq-bottom-cta {
    padding: 36px 23px;
    border-radius: 23px;
    text-align: center;
  }

  .atv-faq-bottom-cta > span {
    margin-inline: auto;
  }

  .atv-faq-bottom-cta p {
    margin-inline: auto;
  }

  .atv-faq-bottom-actions {
    max-width: 340px;
    grid-template-columns: 1fr;
    margin-inline: auto;
  }

  .atv-faq-whatsapp,
  .atv-faq-order {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .atv-faq-heading {
    padding: 33px 20px;
  }

  .atv-faq-item summary {
    padding-left: 66px;
    padding-right: 54px;
    font-size: 13.5px;
  }

  .atv-faq-item summary::before {
    left: 14px;
  }

  .atv-faq-item summary::after {
    right: 13px;
  }

  .atv-faq-item > div {
    padding: 23px 17px 25px 36px;
  }

  .atv-faq-item > div::before {
    left: 16px;
  }

  .atv-faq-bottom-cta h3 {
    font-size: 29px;
  }
}

/* =========================================================
   Reduced Motion
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .atv-faq-page-section *,
  .atv-faq-page-section *::before,
  .atv-faq-page-section *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* =========================================================
   All IPTV Player – FAQ Arabic RTL Support
   Add after the original FAQ CSS
========================================================= */

.atv-faq-page-section.atv-faq-page-section-ar {
  direction: rtl;
  text-align: right;
}

/* =========================================================
   General RTL
========================================================= */

.atv-faq-page-section-ar .atv-faq-container,
.atv-faq-page-section-ar .atv-faq-heading,
.atv-faq-page-section-ar .atv-faq-list,
.atv-faq-page-section-ar .atv-faq-item,
.atv-faq-page-section-ar .atv-faq-bottom-cta {
  direction: rtl;
  text-align: right;
}

/* =========================================================
   Background Decorations
========================================================= */

.atv-faq-page-section-ar::before {
  right: auto;
  left: -180px;
}

.atv-faq-page-section-ar::after {
  right: -210px;
  left: auto;
}

/* =========================================================
   Heading Panel
========================================================= */

.atv-faq-page-section-ar .atv-faq-heading {
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(36, 221, 224, 0.19),
      transparent 30%
    ),
    radial-gradient(
      circle at 92% 100%,
      rgba(0, 174, 181, 0.14),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #021416 0%,
      #062629 58%,
      #031719 100%
    );
  text-align: right;
}

/* النقاط الزخرفية */
.atv-faq-page-section-ar .atv-faq-heading::before {
  right: auto;
  left: 38px;
}

/* الخط الزخرفي أعلى العنوان */
.atv-faq-page-section-ar .atv-faq-heading::after {
  right: clamp(38px, 5vw, 62px);
  left: auto;
}

/* عنوان ووصف القسم */
.atv-faq-page-section-ar .atv-faq-heading h2,
.atv-faq-page-section-ar .atv-faq-heading p {
  text-align: right;
}

.atv-faq-page-section-ar .atv-faq-heading > span {
  direction: rtl;
  letter-spacing: 0;
}

/* =========================================================
   FAQ Summary
========================================================= */

.atv-faq-page-section-ar .atv-faq-item summary {
  padding: 22px 92px 22px 76px;
  text-align: right;
}

/* رقم السؤال */
.atv-faq-page-section-ar .atv-faq-item summary::before {
  right: 23px;
  left: auto;
  direction: ltr;
  unicode-bidi: isolate;
}

/* زر الفتح والإغلاق */
.atv-faq-page-section-ar .atv-faq-item summary::after {
  right: auto;
  left: 23px;
}

/* خلفية السؤال المفتوح */
.atv-faq-page-section-ar .atv-faq-item[open] summary {
  background:
    radial-gradient(
      circle at 8% 15%,
      rgba(36, 221, 224, 0.13),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #062629,
      #031719
    );
}

/* =========================================================
   FAQ Answer
========================================================= */

.atv-faq-page-section-ar .atv-faq-item > div {
  padding: 28px 92px 31px 34px;
  text-align: right;
}

/* الخط العمودي داخل الإجابة */
.atv-faq-page-section-ar .atv-faq-item > div::before {
  right: 46px;
  left: auto;
}

.atv-faq-page-section-ar .atv-faq-item p {
  text-align: right;
}

/* =========================================================
   Lists Inside Answers
========================================================= */

.atv-faq-page-section-ar .atv-faq-item ul,
.atv-faq-page-section-ar .atv-faq-item ol {
  padding-right: 22px;
  padding-left: 0;
  text-align: right;
}

.atv-faq-page-section-ar .atv-faq-item li {
  text-align: right;
}

/* =========================================================
   Bottom CTA
========================================================= */

.atv-faq-page-section-ar .atv-faq-bottom-cta {
  background:
    radial-gradient(
      circle at 12% 15%,
      rgba(36, 221, 224, 0.19),
      transparent 31%
    ),
    linear-gradient(
      135deg,
      #021416,
      #062629 59%,
      #031719
    );
  text-align: right;
}

/* النقاط الزخرفية */
.atv-faq-page-section-ar .atv-faq-bottom-cta::before {
  right: auto;
  left: 35px;
}

/* الخط الزخرفي السفلي */
.atv-faq-page-section-ar .atv-faq-bottom-cta::after {
  right: clamp(37px, 5vw, 57px);
  left: auto;
}

.atv-faq-page-section-ar .atv-faq-bottom-cta > span,
.atv-faq-page-section-ar .atv-faq-bottom-cta h3,
.atv-faq-page-section-ar .atv-faq-bottom-cta p {
  text-align: right;
}

.atv-faq-page-section-ar .atv-faq-bottom-actions {
  direction: rtl;
}

.atv-faq-page-section-ar .atv-faq-whatsapp,
.atv-faq-page-section-ar .atv-faq-order {
  direction: rtl;
  text-align: center;
}

/* =========================================================
   Tablet RTL
========================================================= */

@media (max-width: 900px) {
  .atv-faq-page-section-ar .atv-faq-bottom-actions {
    margin-right: 0;
    margin-left: auto;
  }
}

/* =========================================================
   Mobile RTL
========================================================= */

@media (max-width: 700px) {
  .atv-faq-page-section-ar .atv-faq-heading,
  .atv-faq-page-section-ar .atv-faq-heading h2,
  .atv-faq-page-section-ar .atv-faq-heading p {
    text-align: center;
  }

  .atv-faq-page-section-ar .atv-faq-heading::after {
    right: 50%;
    left: auto;
    transform: translateX(50%);
  }

  .atv-faq-page-section-ar .atv-faq-item summary {
    padding: 19px 71px 19px 60px;
    text-align: right;
  }

  .atv-faq-page-section-ar .atv-faq-item summary::before {
    right: 17px;
    left: auto;
  }

  .atv-faq-page-section-ar .atv-faq-item summary::after {
    right: auto;
    left: 16px;
  }

  .atv-faq-page-section-ar .atv-faq-item > div {
    padding: 25px 45px 27px 21px;
  }

  .atv-faq-page-section-ar .atv-faq-item > div::before {
    right: 21px;
    left: auto;
  }

  .atv-faq-page-section-ar .atv-faq-bottom-cta,
  .atv-faq-page-section-ar .atv-faq-bottom-cta h3,
  .atv-faq-page-section-ar .atv-faq-bottom-cta p {
    text-align: center;
  }

  .atv-faq-page-section-ar .atv-faq-bottom-actions {
    margin-inline: auto;
  }
}

/* =========================================================
   Small Mobile RTL
========================================================= */

@media (max-width: 480px) {
  .atv-faq-page-section-ar .atv-faq-item summary {
    padding-right: 66px;
    padding-left: 54px;
  }

  .atv-faq-page-section-ar .atv-faq-item summary::before {
    right: 14px;
    left: auto;
  }

  .atv-faq-page-section-ar .atv-faq-item summary::after {
    right: auto;
    left: 13px;
  }

  .atv-faq-page-section-ar .atv-faq-item > div {
    padding: 23px 36px 25px 17px;
  }

  .atv-faq-page-section-ar .atv-faq-item > div::before {
    right: 16px;
    left: auto;
  }
}/* End custom CSS */