@font-face {
  font-family: "A Kordi";
  src: url("/fonts/A\ KORDi.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("/fonts/DM-Sans-regular.woff2") format("woff2");
  font-display: swap;
}

/* =========================
   RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Vazirmatn", sans-serif;
  background: #050505;
  color: #fff;
  overflow-x: hidden;
  line-height: 1.8;
}

/* =========================
   VARIABLES
========================= */

:root {
  --bg: #050505;
  --bg-secondary: #07111f;

  --white: #ffffff;

  --primary: #00a3ff;
  --cyan: #00e5ff;

  --glass: rgba(255, 255, 255, 0.05);

  --border: rgba(255, 255, 255, 0.08);

  --shadow: 0 0 20px rgba(0, 163, 255, 0.25);
}

.project-card h3 {
  padding: 20px 20px 10px;
}

.project-card p {
  padding: 0 20px 20px;
}

/* =========================
   CONTAINER
========================= */

.container {
  width: min(1200px, 90%);
  margin: auto;
}

/* =========================
   BACKGROUND
========================= */

.background-glow {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  pointer-events: none;

  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(0, 163, 255, 0.15),
      transparent 30%
    ),
    radial-gradient(circle at 80% 70%, rgba(0, 229, 255, 0.12), transparent 35%);

  z-index: -2;
}

.grid-overlay {
  position: fixed;

  inset: 0;

  z-index: -1;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);

  background-size: 50px 50px;
}

/* =========================
   HEADER
========================= */

.header {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 999;

  backdrop-filter: blur(0px);

  background: rgba(5, 5, 5, 0.65);

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar {
  margin-top: 10px;
  margin-bottom: 10px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.borderNav {
  padding: 5px 25px;
  border: 2px solid;
  border-radius: 50px;
  background-color: rgb(46 69 109 / 79%);
}

/* .logo {
  text-decoration: none;

  color: #fff;

  font-size: 1.8rem;

  font-weight: 800;

  letter-spacing: 2px;
}

.logo:hover {
  color: var(--primary);
} */

li a {
  margin: 0;
  font-family: "A Kordi", "DM Sans", sans-serif;
  letter-spacing: -0.03em;
}

.logo {
  direction: ltr;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #fff, #00a3ff, #00a3ff);
  /* background: linear-gradient(90deg, #fff,  #00a3ff); */

  background-clip: text;
  -webkit-background-clip: text;
  /* color: transparent; */
  -webkit-text-fill-color: transparent;
  animation: glowFloat 3s ease-in-out infinite;
}
.logo span {
  color: #00a3ff;
}

@keyframes glowFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}

.nav-links {
  display: flex;

  list-style: none;

  gap: 2rem;
}

.nav-links a {
  color: #ccc;

  text-decoration: none;

  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-btn {
  text-decoration: none;

  color: #fff;

  border: 1px solid var(--primary);

  padding: 0.8rem 1.4rem;

  border-radius: 999px;

  transition: 0.4s;
}

.nav-btn:hover {
  background: var(--primary);

  box-shadow: var(--shadow);
}

/* =========================
   HERO
========================= */

.hero {
  padding-top: 85px;

  min-height: 100vh;

  display: flex;

  align-items: center;

  position: relative;

  flex-direction: column;
}

.hero-content {
  text-align: center;
}

.hero-badge {
  display: inline-block;

  padding: 0.7rem 1.2rem;

  border-radius: 999px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  background: rgba(255, 255, 255, 0.03);

  color: #d6d6d6;

  margin-bottom: 2rem;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);

  line-height: 1.2;

  font-weight: 800;

  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--primary);
}

.hero-description {
  max-width: 750px;

  margin: auto;

  color: #b5b5b5;

  font-size: 1.15rem;

  margin-bottom: 3rem;
}

.hero-buttons {
  display: flex;

  justify-content: center;

  gap: 1rem;

  flex-wrap: wrap;
}

/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  cursor: pointer;

  border: none;

  padding: 1rem 2rem;

  border-radius: 999px;

  transition: 0.4s;
}

.btn-primary {
  background: var(--primary);

  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-4px);

  box-shadow: 0 0 30px rgba(0, 163, 255, 0.45);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.1);

  color: #fff;

  background: transparent;
}

.btn-secondary:hover {
  border-color: var(--primary);

  color: var(--primary);
}

/* =========================
   SECTIONS
========================= */

.section {
  padding: 120px 0;
}

.section-header {
  margin-bottom: 4rem;
}

.section-header span {
  color: var(--primary);

  font-weight: 700;
}

.section-header h2 {
  font-size: 3rem;

  margin-top: 0.5rem;
}

/* =========================
   ABOUT
========================= */

.about-content p {
  max-width: 800px;

  color: #b8b8b8;

  margin-bottom: 3rem;
}

.features-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

  gap: 1.5rem;
}

.feature-card {
  padding: 2rem;

  border-radius: 20px;

  background: var(--glass);

  border: 1px solid var(--border);

  backdrop-filter: blur(20px);

  transition: 0.4s;
}

.feature-card:hover {
  transform: translateY(-8px);

  border-color: var(--primary);

  box-shadow: var(--shadow);
}

/* =========================
   SKILLS
========================= */

.skills-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));

  gap: 1.5rem;
}

.skill-card {
  padding: 2rem;

  text-align: center;

  background: var(--glass);

  border: 1px solid var(--border);

  border-radius: 20px;

  transition: 0.4s;
}

.skill-card:hover {
  transform: translateY(-8px);

  border-color: var(--cyan);

  box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

/* =========================
   PROJECTS
========================= */

.projects-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 2rem;
}

.project-card {
  overflow: hidden;

  background: var(--glass);

  border-radius: 25px;

  border: 1px solid var(--border);

  transition: 0.4s;
}

.project-card:hover {
  transform: translateY(-10px);

  box-shadow: var(--shadow);
}

.project-image {
  height: 240px;

  background: linear-gradient(135deg, #07111f, #00a3ff);
}

/* =========================
   CONTACT
========================= */

.contact-form {
  display: flex;

  flex-direction: column;

  gap: 1rem;

  max-width: 700px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.08);

  color: #fff;

  padding: 1rem;

  border-radius: 15px;

  outline: none;

  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);

  box-shadow: 0 0 15px rgba(0, 163, 255, 0.15);
}

/* =========================
   FOOTER
========================= */

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);

  padding: 2rem 0;

  text-align: center;

  color: #9f9f9f;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .nav-links {
    display: none;
  }

  .hero-title {
    font-size: 3rem;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .borderNav {
    display: none;
  }
  .timeline-item:nth-child(even) {
    margin-right: 0% !important;
  }
  .hero {
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 90px 0;
  }
}

.hidden {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------- */

.hero-content {
  text-shadow: 0px 0px 30px wheat;
  text-align: center;
  z-index: 2;
  max-width: 800px;
}
.hero-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}
.hero-name {
  color: #4a7bff;
}
.hero-type {
  font-size: 32px;
  font-weight: 600;
  height: 48px;
  margin-bottom: 20px;
}
.cursor {
  display: inline-block;
  font-weight: bold;
  color: #4a7bff;
  animation: blink 0.6s infinite alternate;
}
.hero-desc {
  font-size: 18px;
  opacity: 0.85;
  line-height: 34px;
  margin-top: 10px;
}
.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(80, 120, 255, 0.45),
    rgba(0, 0, 0, 0)
  );
  filter: blur(60px);
  border-radius: 50%;
  z-index: 1;
  animation: glowMove 8s infinite ease-in-out;
}
.hero-backlight {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(30, 40, 70, 0.35),
    rgba(0, 0, 0, 0.9)
  );
  z-index: 0;
}

@keyframes glowMove {
  0% {
    transform: translate(-80px, -40px) scale(1);
  }
  50% {
    transform: translate(40px, 60px) scale(1.2);
  }
  100% {
    transform: translate(-80px, -40px) scale(1);
  }
}

/* ----------- */
/* =========================
   SHM CURSOR
========================= */

body {
  cursor: none;
}

input,
textarea {
  cursor: text;
}

.cursor {
  position: fixed;

  width: 12px;
  height: 12px;

  background: #00a3ff;

  border-radius: 50%;

  pointer-events: none;

  z-index: 99999;

  transform: translate(-50%, -50%);

  box-shadow:
    0 0 10px #00a3ff,
    0 0 20px #00a3ff,
    0 0 30px #00a3ff;

  transition:
    width 0.25s ease,
    height 0.25s ease,
    background 0.25s ease;
}

.cursor-blur {
  position: fixed;

  width: 30px;
  height: 30px;

  border-radius: 50%;

  background: rgba(0, 162, 255, 0.074);

  backdrop-filter: blur(5px);

  pointer-events: none;

  z-index: 99998;

  transform: translate(-50%, -50%);

  transition:
    width 0.3s ease,
    height 0.3s ease;
}

/* Hover State */

.cursor.active {
  width: 10px;
  height: 10px;

  background: #0068a4;
}

.cursor-blur.active {
  width: 35px;
  height: 35px;
}

/* Click State */

.cursor.click {
  transform: translate(-50%, -50%) scale(0.75);
}

/* Mobile */

@media (max-width: 992px) {
  .borderNav{
    display:none;
  }
  .cursor,
  .cursor-blur {
    display: none;
  }

  body {
    cursor: auto;
  }
}

/* =========================
   PARTICLES CANVAS
========================= */

#particles-canvas {
  position: fixed;

  inset: 0;

  width: 100%;
  height: 100%;

  z-index: -3;

  pointer-events: none;
}

/* =========================
   HERO ORBS
========================= */

.hero {
  overflow: hidden;
}

/* Orb Base */

.hero-orb {
  position: absolute;

  border-radius: 50%;

  filter: blur(80px);

  pointer-events: none;

  opacity: 0.5;

  animation: floatOrb 12s ease-in-out infinite;
}

/* Orb 1 */

.orb-1 {
  width: 350px;
  height: 350px;

  background: #00a3ff;

  top: 10%;
  left: -100px;
}

/* Orb 2 */

.orb-2 {
  width: 300px;
  height: 300px;

  background: #00e5ff;

  top: 50%;
  right: -80px;

  animation-delay: -3s;
}

/* Orb 3 */

.orb-3 {
  width: 250px;
  height: 250px;

  background: #0044ff;

  bottom: -100px;
  left: 40%;

  animation-delay: -6s;
}

/* Floating */

@keyframes floatOrb {
  0% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-50px) translateX(30px);
  }

  100% {
    transform: translateY(0) translateX(0);
  }
}

/* =========================
   ANIMATED LIGHTING
========================= */

body::before {
  content: "";

  position: fixed;

  inset: 0;

  pointer-events: none;

  z-index: -4;

  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(0, 163, 255, 0.15),
      transparent 30%
    ),
    radial-gradient(circle at 80% 70%, rgba(0, 229, 255, 0.15), transparent 30%);

  animation: lightingMove 15s ease-in-out infinite;
}

@keyframes lightingMove {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-30px, 30px) scale(1.1);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* =========================
   HERO TITLE ENERGY
========================= */

.hero-title {
  position: relative;

  z-index: 5;

  text-shadow:
    0 0 20px rgba(0, 163, 255, 0.2),
    0 0 40px rgba(0, 163, 255, 0.15),
    0 0 80px rgba(0, 163, 255, 0.1);
}

/* Animated Shine */

.hero-title::after {
  content: "";

  position: absolute;

  inset: -20px;

  background: radial-gradient(circle, rgba(0, 163, 255, 0.12), transparent 70%);

  z-index: -1;

  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0% {
    opacity: 0.4;
    transform: scale(0.95);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }

  100% {
    opacity: 0.4;
    transform: scale(0.95);
  }
}

.btn-primary {
  background: linear-gradient(135deg, #00a3ff, #00e5ff);

  color: #fff;

  position: relative;

  overflow: hidden;
}

.btn-primary::before {
  content: "";

  position: absolute;

  top: 0;

  left: -100%;

  width: 100%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );

  transition: 0.8s;
}

.btn-primary:hover::before {
  left: 100%;
}

body.loading {
  overflow: hidden;
}

/* =========================
   LOADER
========================= */

#loader {
  position: fixed;

  inset: 0;

  background: #050505;

  z-index: 999999;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;
}

.loader-content {
  text-align: center;

  width: 400px;

  max-width: 90%;
}

.loader-logo {
  font-size: 4rem;

  font-weight: 900;

  letter-spacing: 10px;

  color: #fff;

  margin-bottom: 30px;

  text-shadow:
    0 0 20px rgba(0, 163, 255, 0.5),
    0 0 40px rgba(0, 163, 255, 0.3);
}

.loader-line {
  width: 100%;

  height: 3px;

  background: rgba(255, 255, 255, 0.05);

  border-radius: 50px;

  overflow: hidden;
}

.loader-line span {
  display: block;

  width: 0;

  height: 100%;

  background: linear-gradient(90deg, #00a3ff, #00e5ff);
}

.loader-text {
  margin-top: 20px;

  color: #8d8d8d;

  letter-spacing: 3px;

  font-size: 0.85rem;
}

/* ------- */

.loader-logo {
  animation: logoIntro 2s ease infinite alternate;
}

@keyframes logoIntro {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

/* =========================
   HERO CINEMATIC
========================= */

.hero-badge,
.hero-description,
.hero-buttons,
.scroll-indicator {
  opacity: 0;

  transform: translateY(40px);
}

.reveal-line {
  display: block;

  overflow: hidden;
}

.reveal-line {
  opacity: 0;

  transform: translateY(120px);
}

/* =========================
   ACTIVE STATES
========================= */

.hero-loaded .hero-badge {
  opacity: 1;

  transform: translateY(0px);

  transition: 1s ease;
}

.hero-loaded .reveal-line:nth-child(1) {
  opacity: 1;

  transform: translateY(0);

  transition: 1s ease 0.3s;
}

.hero-loaded .reveal-line:nth-child(2) {
  opacity: 1;

  transform: translateY(0);

  transition: 1s ease 0.6s;
}

.hero-loaded .hero-description {
  opacity: 1;

  transform: translateY(-1);

  transition: 1s ease 0.9s;
}

.hero-loaded .hero-buttons {
  opacity: 1;

  transform: translateY(0);

  transition: 1s ease 1.2s;
}

.hero-loaded .scroll-indicator {
  opacity: 1;

  transform: translateY(0);

  transition: 1s ease 1.6s;
}

/* =========================
   SCROLL INDICATOR
========================= */

.scroll-indicator {
  margin-top: 20px;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 12px;
}

.scroll-mouse {
  width: 34px;

  height: 58px;

  border: 2px solid rgba(255, 255, 255, 0.2);

  border-radius: 20px;

  position: relative;
}

.scroll-mouse span {
  position: absolute;

  top: 10px;

  left: 50%;

  width: 5px;

  height: 10px;

  border-radius: 20px;

  background: #00a3ff;

  transform: translateX(-50%);

  animation: scrollMove 2s infinite;
}

.scroll-indicator p {
  font-size: 0.8rem;

  color: #7f7f7f;

  letter-spacing: 3px;
}

@keyframes scrollMove {
  0% {
    opacity: 0;

    top: 10px;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;

    top: 30px;
  }
}

.hero::after {
  content: "";

  position: absolute;

  inset: 0;

  background: radial-gradient(
    circle at center,

    rgba(0, 163, 255, 0.12),
    transparent 70%
  );

  opacity: 0;

  transition: 2s ease;

  pointer-events: none;
}

.hero-loaded .hero::after {
  opacity: 1;
}

/* =========================
   MAGNETIC BUTTONS
========================= */

.btn,
.nav-btn {
  position: relative;

  will-change: transform;

  transition:
    transform 0.15s linear,
    box-shadow 0.3s ease;
}

/* =========================
   PREMIUM CARDS
========================= */

.feature-card,
.skill-card,
.project-card {
  position: relative;

  overflow: hidden;
}

.feature-card::before,
.skill-card::before,
.project-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: -150%;

  width: 100%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );

  transition: 1s;
}

.feature-card:hover::before,
.skill-card:hover::before,
.project-card:hover::before {
  left: 150%;
}

/* =========================
   CARD GLOW
========================= */

.feature-card::after,
.skill-card::after,
.project-card::after {
  content: "";

  position: absolute;

  inset: 0;

  opacity: 0;

  background: radial-gradient(
    circle at var(--x) var(--y),
    rgba(0, 163, 255, 0.15),
    transparent 45%
  );

  transition: 0.2s;
}

.feature-card:hover::after,
.skill-card:hover::after,
.project-card:hover::after {
  opacity: 1;
}

/* =========================
   HAMBURGER
========================= */

.menu-toggle {
  display: none;

  width: 48px;
  height: 48px;

  background: none;

  border: none;

  cursor: pointer;

  position: relative;

  z-index: 10001;
}

.menu-toggle span {
  display: block;

  width: 28px;
  height: 2px;

  background: #fff;

  margin: 6px auto;

  transition: 0.4s ease;
}

/* =========================
   MOBILE MENU
========================= */

.mobile-menu {
  position: fixed;

  inset: 0;

  background: rgba(5, 5, 5, 0.96);

  backdrop-filter: blur(30px);

  z-index: 998;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 2rem;

  opacity: 0;

  visibility: hidden;

  transition: 0.5s ease;
}

.mobile-menu a {
  color: #fff;

  text-decoration: none;

  font-size: 2rem;

  font-weight: 700;

  transition: 0.3s;
}

.mobile-menu a:hover {
  color: #00a3ff;

  transform: translateY(-4px);
}

.mobile-menu.active {
  opacity: 1;

  visibility: visible;
}

/* =========================
   ACTIVE HAMBURGER
========================= */

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 992px) {
  .hero-orb {
    animation: none;
  }

  .nav-links {
    display: none;
  }

  .nav-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

/* ---------------------------- */

/* =========================
   TIMELINE
========================= */

.timeline {
  position: relative;

  max-width: 900px;

  margin: 80px auto 0;
}

.timeline::before {
  content: "";

  position: absolute;

  top: 0;

  bottom: 0;

  left: 50%;

  width: 2px;

  background: linear-gradient(to bottom, transparent, #00a3ff, transparent);

  transform: translateX(-50%);
}

.timeline-item {
  position: relative;

  width: 50%;

  padding: 40px;
}

.timeline-item:nth-child(odd) {
  margin-left: auto;
}

.timeline-item:nth-child(even) {
  margin-right: 50%;
}

.timeline-content {
  position: relative;

  padding: 30px;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(20px);

  transition: 0.4s;
}

.timeline-content:hover {
  transform: translateY(-8px);

  border-color: #00a3ff;

  box-shadow: 0 0 30px rgba(0, 163, 255, 0.15);
}

.timeline-dot {
  position: absolute;

  top: 50px;

  width: 18px;

  height: 18px;

  border-radius: 50%;

  background: #00a3ff;

  box-shadow:
    0 0 20px #00a3ff,
    0 0 40px #00a3ff;
}

.timeline-item:nth-child(odd) .timeline-dot {
  left: -9px;
}

.timeline-item:nth-child(even) .timeline-dot {
  right: -9px;
}

.timeline-year {
  color: #00a3ff;

  font-weight: 700;

  display: block;

  margin-bottom: 10px;
}

.timeline-content h3 {
  margin-bottom: 10px;

  font-size: 1.3rem;
}

.timeline-content p {
  color: #b7b7b7;

  line-height: 1.8;
}

.timeline-item {
  opacity: 0;

  transform: translateY(80px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.timeline-item.show {
  opacity: 1;

  transform: translateY(0);
}

@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;

    padding-left: 60px;

    padding-right: 0;

    margin: 0;
  }

  .timeline-dot {
    left: 11px !important;

    right: auto !important;
  }
}
