/* Enhanced Header Styles - COMPLETE FIXED VERSION */

/* ========================================
   1. TOP BAR (OPTIONAL - YOU CAN REMOVE)
======================================== */
.top-bar {
  background-color: var(--soft-bg);
  color: rgb(84, 176, 70);
  padding: 8px 0;
  font-size: 14px;
  display: none;
}

@media (min-width: 992px) {
  .top-bar {
    display: block;
  }
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-item:hover {
  opacity: 0.8;
  color: white;
}

.contact-item i {
  font-size: 12px;
  opacity: 0.8;
}

.top-bar-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.newsletter-link {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  transition: opacity 0.3s ease;
}

.newsletter-link:hover {
  opacity: 0.8;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 5px;
}

.language-selector select {
  background: transparent;
  border: none;
  color: white;
  font-size: 13px;
  cursor: pointer;
  padding: 2px;
}

.language-selector select option {
  background: var(--primary-color);
  color: white;
}

/* ========================================
   2. MAIN HEADER
======================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
 background: linear-gradient(135deg, #ebedf1 0%, #ebedf1e5 100%);
  box-shadow: 0 2px 20px rgba(10, 29, 19, 0.66);
  transition: all 0.3s ease;
  height: 60px;
  width: 100%;
}

.main-header.scrolled {
  box-shadow: 0 4px 25px rgba(159, 78, 78, 0.695);
}

/* ========================================
   3. NAVBAR CONTAINER
======================================== */
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1px 0px;
  max-width: 100%;
  margin: 0;
  position:  sticky;
}

@media (max-width: 992px) {
  .navbar .container {
    padding: 1px 10px;
    min-height: 60px;
  }
}

/* ========================================
   4. LOGO
======================================== */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  z-index: 1001;
  margin-left: 0;
  padding-left: 0;
  flex-shrink: 0;
}

.logo-img {
  height: 45px;
  width: auto;
  border-radius: 4px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: 'Amatic SC', cursive; /* Playful, unique safari feel */
  font-weight: 700;
  font-size: 28px;
  color: var(--primary-color);
  letter-spacing: 1px;
}
.logo-sub {
  font-family: 'Raleway', sans-serif; /* Modern, minimal for subtitle */
  font-size: 10px;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}


@media (max-width: 992px) {
  .logo {
    max-width: 70%;
  }

  .logo-img {
    height: 40px;
  }
  
  .logo-main {
    font-size: 18px;
  }
  
  .logo-sub {
    font-size: 9px;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 768px) {
  .logo-img {
    height: 38px;
  }
  
  .logo-main {
    font-size: 16px;
  }
  
  .logo-sub {
    font-size: 8px;
  }
}

/* ========================================
   5. MOBILE MENU BUTTON - IMPROVED
======================================== */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1002;
  cursor: pointer;
  padding-right: 50px;
  margin-left: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  background: rgba(53, 76, 62, 0.05);
}

@media (max-width: 992px) {
  .mobile-menu-btn {
    display: flex;
  }
}

.menu-line {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
  position: absolute;
 
}

.menu-line:nth-child(1) {
  top: 16px;
}

.menu-line:nth-child(2) {
  top: 21px;
}

.menu-line:nth-child(3) {
  top: 26px;
}

/* IMPROVED HAMBURGER ANIMATION */
.mobile-menu-btn.active .menu-line:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
  top: 21px;
}

.mobile-menu-btn.active .menu-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.mobile-menu-btn.active .menu-line:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
  top: 21px;
}

/* Close button indication */
.mobile-menu-btn::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active::after {
  border-color: rgba(53, 76, 62, 0.1);
}

/* ========================================
   6. NAV CONTAINER - FIXED
======================================== */
.nav-container {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  
}

/* Desktop: Show normally */
@media (min-width: 993px) {
  .nav-container {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    flex-direction: row;
    box-shadow: none;
    overflow: visible;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
  }
}

/* Mobile: Hide by default */
@media (max-width: 992px) {
  .nav-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: #ffffff;
    padding: 100px 24px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    overflow-y: auto;
    z-index: 1001;
    margin: 0;
  }
  
  /* Show menu when active */
  .nav-container.active {
    right: 0;
  }
}

/* ========================================
   7. NAVIGATION LINKS
======================================== */
.nav-links {
  display: flex;
  list-style: none;
  gap: 5px;
  margin: 0;
  padding: 0;
}

@media (min-width: 993px) {
  .nav-links {
    flex-direction: row;
  }
}

@media (max-width: 992px) {
  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  color: var(--dark-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color);
  background: rgba(201, 169, 97, 0.05);
}

.nav-link i {
  font-size: 14px;
  width: 20px;
  text-align: center;
}

@media (max-width: 992px) {
  .nav-link {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 17px;
    justify-content: flex-start;
    width: 100%;
  }
  
  .nav-link i {
    width: 24px;
    font-size: 16px;
  }
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  height: 2px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

@media (max-width: 992px) {
  .nav-link.active::after {
    display: none;
  }
}

/* ========================================
   8. DROPDOWN FUNCTIONALITY
======================================== */
.dropdown-arrow {
  width: 12px;
  height: 8px;
  transition: transform 0.3s ease;
  margin-left: 4px;
}

.has-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

@media (max-width: 992px) {
  .has-dropdown > .nav-link {
    position: relative;
  }
  
  .has-dropdown > .nav-link::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 24px;
    line-height: 1;
    transition: transform 0.3s ease;
    font-weight: 300;
    color: var(--primary-color);
  }
  
  .has-dropdown.active > .nav-link::after {
    content: '−';
    transform: none;
  }
  
  .dropdown-arrow {
    display: none;
  }
}

/* ========================================
   9. DROPDOWN MENUS
======================================== */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #E3EAD9;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(7, 32, 19, 0.481);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  padding: 15px 0;
  margin: 0;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 4px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  
  .has-dropdown.active .dropdown {
    max-height: 500px;
    padding: 10px 0;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

.dropdown li {
  padding: 0;
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: var(--dark-text);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.dropdown a:hover {
  background: #0B5D3B;
  color: var(--secondary-color);
  padding-left: 25px;
}

@media (max-width: 992px) {
  .dropdown a {
    padding: 10px 15px 10px 30px;
    font-size: 15px;
  }
  
  .dropdown a:hover {
    padding-left: 35px;
  }
}

/* ========================================
   10. MEGA MENU
======================================== */
.mega-dropdown {
  position: static !important;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #E3EAD9;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(6, 20, 16, 0.475);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
  padding: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.mega-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .mega-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: rgba(229, 240, 233, 0.399);
    border-radius: 4px;
  }
  
  .mega-dropdown.active .mega-menu {
    max-height: 800px;
    padding: 20px;
    margin-top: 10px;
  }
  
  .mega-menu-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.mega-menu-section h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
}

.mega-menu-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu-section li {
  margin-bottom: 10px;
}

.mega-menu-section a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-text);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.mega-menu-section a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.mega-menu-section.featured {
  position: relative;
}

.featured-tour {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  min-height: 200px;
}

.featured-tour img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.featured-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 20px;
}

.featured-content h5 {
  color: rgb(253, 255, 254);
  margin-bottom: 5px;
  font-size: 16px;
}

.featured-content p {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 10px;
}

.btn-small {
  padding: 6px 15px;
  font-size: 12px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-small:hover {
  background: #b89954;
  transform: translateY(-2px);
}

/* ========================================
   11. NAVIGATION ACTIONS
======================================== */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 992px) {
  .nav-actions {
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--primary-color);
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-btn:hover {
  background: #2a3d32;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(53, 76, 62, 0.2);
}

.phone-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.phone-btn:hover {
  background: #b89954;
  transform: scale(1.1);
}

.phone-text {
  display: none;
}

.search-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(53, 76, 62, 0.05);
  border: none;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
}

.search-btn:hover {
  background: rgba(53, 76, 62, 0.1);
  transform: scale(1.1);
}

/* ========================================
   12. SEARCH OVERLAY
======================================== */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.search-overlay.active {
  display: flex;
  opacity: 1;
  align-items: center;
  justify-content: center;
}

.search-container {
  background: #E3EAD9;
  border-radius: 12px;
  padding: 40px;
  max-width: 700px;
  width: 90%;
  position: relative;
  animation: searchSlideIn 0.3s ease;
}

@keyframes searchSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--gray-text);
  cursor: pointer;
  transition: color 0.3s ease;
}

.search-close:hover {
  color: var(--primary-color);
}

.search-content h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: center;
}

.search-form {
  display: flex;
  margin-bottom: 30px;
}

.search-form input {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid var(--border-color);
  border-radius: 8px 0 0 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.search-form input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.search-form button {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0 30px;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-form button:hover {
  background: #2a3d32;
}

.search-suggestions p {
  color: var(--gray-text);
  margin-bottom: 10px;
  font-size: 14px;
}

.suggestion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.suggestion-tags a {
  display: inline-block;
  padding: 8px 15px;
  background: rgba(53, 76, 62, 0.05);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 20px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.suggestion-tags a:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* ========================================
   13. STICKY INDICATOR
======================================== */
.sticky-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 1001;
}

.sticky-indicator.active {
  transform: scaleX(1);
}

/* ========================================
   14. MOBILE BACKDROP
======================================== */
.mobile-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: none;
}

@media (max-width: 992px) {
  .mobile-backdrop {
    display: block;
  }
  
  .mobile-backdrop.active {
    opacity: 1;
    visibility: visible;
  }
}

@media (min-width: 993px) {
  .mobile-backdrop {
    display: none !important;
  }
}

/* ========================================
   15. ANIMATIONS
======================================== */
.main-header.loaded .navbar {
  animation: fadeInDown 0.5s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   16. ACCESSIBILITY
======================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========================================
   17. FIXES FOR EMPTY HEADER ON MOBILE
======================================== */
@media (max-width: 992px) {
  /* Ensure header has content */
  .main-header {
    min-height: 70px;
  }
  
  /* Make sure container has proper spacing */
  .navbar .container {
    min-height: 70px;
    display: flex;
    align-items: center;
  }
  
  /* Prevent logo from shrinking too much */
  .logo {
    flex-shrink: 0;
    min-width: 200px;
  }
  
  /* Mobile menu close button improvements */
  .mobile-menu-btn {
    display: flex;
    order: 2;
  }
  
  /* Add menu open indicator */
  body.menu-open {
    overflow: hidden;
  }
  
  body.menu-open .main-header {
    box-shadow: none;
  }
}

/* ========================================
   18. BACKDROP FOR MENU CLOSE
======================================== */
.menu-backdrop {
  display: none;
}

@media (max-width: 992px) {
  .menu-backdrop {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(242, 238, 238, 0.57);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .menu-backdrop.active {
    opacity: 1;
    visibility: visible;
  }
}


/* whatsapp-button.css */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    animation: pulse-green 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    background-color: #128C7E;
}

.whatsapp-button i {
    font-size: 32px;
    color: white;
}

.whatsapp-tooltip {
    background-color: #075E54;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    margin-right: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.whatsapp-button:hover + .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-chat-options {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    animation: fadeInUp 0.3s ease;
}

.whatsapp-float:hover .whatsapp-chat-options {
    display: flex;
}

.chat-option {
    background: white;
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #075E54;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.chat-option:hover {
    transform: translateX(-5px);
    background-color: #f0f8f0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* WhatsApp Badge */
.whatsapp-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #FF4141;
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badge-pulse 1.5s infinite;
}

@keyframes badge-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-button i {
        font-size: 28px;
    }
    
    .chat-option {
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .whatsapp-button:hover + .whatsapp-tooltip {
        display: none;
    }
    
    .whatsapp-chat-options {
        display: none !important;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
}