* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #000;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 5px 40px;
  border-bottom: 1px solid #ccc;
}


.logo img {
  height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 60px;
}

nav ul li a {
  text-decoration: none;
  color: #26336A;
  border-bottom: 2px solid transparent;
  padding-bottom: 0px;
  font-weight: bold;
  padding-top: 30px;
  display: inline-block;
}

nav ul li a:hover,
nav ul li a.active {
  border-bottom: 2px solid #26336A;
}

.hero {
  position: relative;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  margin: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-image: url("Medžiagos/Viršelis_Konferencijų_salė/pagrindinio_lango_foto.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-overlay {
  background: rgba(0, 33, 89, 0.7); /* tamsiai mėlynas permatomas fonas */
  padding: 20px 40px;
  border-radius: 12px;
  text-align: center;
  animation: fadeIn 1.2s ease;
}

.hero-overlay h1 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero-section {
    height: 220px;
  }

  .hero-overlay h1 {
    font-size: 20px;
    padding: 10px 20px;
  }
}
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  will-change: opacity, transform;
}

.fade-in-section.visible {
  opacity: 1;
  transform: none;
}


.hero h1 {
  font-size: 2rem;
  color: white;
}

.events {
  padding: 40px 40px 0;
  text-align: left;
}

.events h2 {
  font-size: 20px;
  color: #26336A;
  font-weight: bold;
  margin-bottom: 10px;
}

.events .date {
  font-size: 12px;
  color: #555;
}

.events .title {
  font-size: 16px;
  font-weight: bold;
  margin-top: 5px; 
}

.left-box {
  width: 440px;
  height: 480px;
  background-color: #26336A;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.slideshow {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.tour {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px;
}

.icon-360 {
  max-width: 80%;
  height: auto;
}

.location-info {
  padding: 40px;
}

.location-info h2 {
  font-size: 18px;
  color: #26336A;
  margin-bottom: 10px;
}

.video-map {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 50px;
  justify-content: center;
  align-items: flex-start;
}

.video-container {
  width: 380px; 
  height: 563px; 
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  background-color: #000;
  flex-shrink: 0; 
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: black;
}

.video-overlay-text {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  font-weight: 600;
  color: white;
  text-align: center;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  pointer-events: none;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  transition: background-color 0.3s ease;
}

.play-button::before {
  content: '';
  position: absolute;
  left: 26px;
  top: 20px;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 24px solid white;
}

.play-button:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.footer {
  background-color: #e7edf8;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border-top: 1px solid #ccc; /* arba palik neutralų atskyrimą */
}


.footer-logo img {
  height: 60px;
  
}

.footer-info {
  font-size: 16px;
  color: #26336A;
  font-weight: 500;
  line-height: 1.4;
  max-width: 300px;
  margin-top: 10px;
}

.footer-info p {
  margin: 4px 0;
}

.footer-info p:first-child {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}


section {
  border-bottom: 1px solid #ccc;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.right-box {
  width: 580px;
  height: 400px;
  background-color: white;
  border: 2px solid #2c3e91;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 0;
  overflow: hidden; 
  position: relative;
}

.panorama-container {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.panorama-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}



.panorama-launcher {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("Medžiagos/360_laipsniu/360_laipsniu_viršelis.jpg") center center / cover no-repeat;
  color: white;
  font-weight: bold;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  transition: filter 0.3s ease;
}

.panorama-launcher:hover {
  filter: brightness(1.1);
}

#panorama {
  width: 100%;
  height: 100%;
  display: none;
}

.container {
  max-width: 1900px;
  margin: 0 15px;
  padding: 0 10px; /* čia sukuriamas tarpas nuo kairio/dešinio krašto */
}

.contact-map-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1 1 50%;
  min-width: 300px;
}

.map-box_contact {
  flex: 1 1 45%;
  min-height: 260px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  min-width: 300px;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 60px;
}

.contact-container {
  flex: 1 1 50%;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: flex-start; /* išdėsto iš kairės */
  align-items: flex-start;
}

.contact-left,
.contact-right {
  flex: 1 1 400px; /* fiksuotas minimalus plotis */
  max-width: 400px;
}

.contact-left p,
.contact-right p {
  margin: 6px 0;
  color: #333;
  line-height: 1.5;
}

.contact-left p:first-child,
.contact-right p:first-child {
  font-weight: bold;
  margin-bottom: 10px;
}
.btn-rezervacija {
  background-color: #f1c40f;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.btn-rezervacija:hover {
  background-color: #d4ac0d;
}

.kainorastis-section {
  margin: 40px auto;
  padding: 20px;
  max-width: 950px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.kainorastis-section h2 {
  color: #26336A;
  font-size: 22px;
  margin-bottom: 15px;
}

.kainorastis-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  white-space: pre-line;
}
.calendar-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  position: relative;
  padding-bottom: 80px;
}

.btn-rezervacija-absolute {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: #f1c40f;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .btn-rezervacija-absolute {
    bottom: 10px;
    right: 10px;
    padding: 8px 14px;
    font-size: 14px;
  }
}

.btn-rezervacija-absolute:hover {
  background-color: #d4ac0d;
}

.fc .fc-button {
  background-color: #26336A !important;
  border: none;
  color: white !important;
  font-weight: bold;
  border-radius: 6px;
  padding: 6px 12px;
  transition: background-color 0.2s ease-in-out;
}

.fc .fc-button:hover {
  background-color: #1b264f !important;
}

.fc .fc-button:disabled {
  background-color: #a0a0a0 !important;
  cursor: not-allowed;
}
.fc-event {
  font-size: 12px;
}
.fc-bg-event {
  background-color: #f31616 !important;
}
/* ... tavo esamas CSS išlieka ... */

/* MODERNUS FULLCALENDAR STILIUS – papildyta žemiau */
#calendar {
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
}

/* Tinklelio linijos švelnesnės, bet matomos */
.fc-theme-standard td,
.fc-theme-standard th {
  border: 1px solid #ddd !important;
}

/* Dienos kortelės su lengvu užpildu */
.fc-daygrid-day {
  background-color: #fafafa;
  transition: background-color 0.3s ease;
}

/* Hover efektas */
.fc-daygrid-day:hover {
  background-color: #f0f4ff;
}

/* Dienos langelio dizainas */
.fc-daygrid-day-frame {
  padding: 8px;
  border-radius: 8px;
  min-height: 100px;
  height: auto !important;
}

/* Įvykių dizainas */
.fc-event {
  border: none;
  border-radius: 6px;
  padding: 4px 6px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Šventinių dienų (raudonų) stilius */
.fc-event.bg-red {
  background-color: #ffdddd !important;
  color: #cc0000 !important;
}

/* Konferencijų įvykiai – tamsiai mėlyna */
.fc-event.bg-blue {
  background-color: #26336A !important;
  color: #fff !important;
}

/* Pagerinti FullCalendar mygtukai */
.fc .fc-button {
  background-color: #26336A !important;
  border: none;
  color: white !important;
  font-weight: bold;
  border-radius: 6px;
  padding: 6px 12px;
  transition: background-color 0.2s ease-in-out;
}

.fc .fc-button:hover {
  background-color: #1b264f !important;
}

.fc .fc-button:disabled {
  background-color: #a0a0a0 !important;
  cursor: not-allowed;
}

/* Storesnės linijos virš kalendoriaus */
.fc-scrollgrid {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  overflow: hidden;
}

/* Kiti įprasti įvykiai (jei neturi custom spalvų) */
.fc .fc-daygrid-event {
  margin: 3px 0;
}
.fc-daygrid-event {
  white-space: normal !important;
  overflow-wrap: break-word;
  height: auto !important;
  line-height: 1.3;
}
.fc-event {
  white-space: normal !important;
  overflow-wrap: break-word;
  font-size: 13px;
  padding: 4px 6px;
  line-height: 1.3;
}
.fc-event.bg-red {
  max-width: 100%;
}
.fc-event {
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
  text-align: left;
  font-size: 13px;
  line-height: 1.3;
  padding: 4px 6px;
  max-width: 100%;
}

/* Papildomai – jei naudojamos spalvotos klasės */
.fc-event.bg-red,
.fc-event.bg-blue {
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
}
@media (max-width: 768px) {
  .fc-event {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }
}



/* Pagerinta laiko juosta dienos peržiūroje, jei naudosite ateityje */
.fc-timegrid-slot {
  border-top: 1px solid #e0e0e0;
}
.fc-event.bg-blue {
  background-color: #26336A !important;
  color: #fff !important;
  border: none !important;
  outline: none !important;
}
.fc .fc-daygrid-event.fc-event.bg-blue {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
}

.fc .fc-daygrid-event.fc-event.bg-blue:hover,
.fc .fc-daygrid-event.fc-event.bg-blue:focus,
.fc .fc-daygrid-event.fc-event.bg-blue:active {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
}

:root {
  --fc-event-bg-color: #26336A;

}

@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .rezervacija-btn-wrapper {
    justify-content: center;
    padding-right: 0;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .tour {
    flex-direction: column;
    align-items: flex-start;
  }

  .right-box {
    margin-left: 0;
    margin-top: 20px;
  }

  .video-map {
    flex-direction: column;
  }

  .footer {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 10px;
  }

  .footer-logo img {
    height: 50px;
  }

  .footer-info {
    margin-top: 10px;
    font-size: 15px;
  }
}
/* Užtikrina, kad FullCalendar reaguotų į mažus ekranus */
#calendar {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* iOS smooth scroll */
   min-width: 700px;
}
/* Slankiojamas kalendorius mobiliuose ekranuose */
.calendar-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* iOS scroll support */
  position: relative;
  padding-bottom: 80px;
}

/* Padidina įvykio elementų plotą paspaudimui */
.fc-event {
  min-height: 36px;
  line-height: 1.4;
  padding: 6px 8px;
  touch-action: manipulation;
}

/* Mėlynas įvykis su šešėliu – veikia visur */
.fc-event.bg-blue {
  background-color: #26336A !important;
  color: #fff !important;
  border: none !important;
  outline: none !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
}

/* Palaikymas interakcijoms */
.fc-event.bg-blue:hover,
.fc-event.bg-blue:focus,
.fc-event.bg-blue:active {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
  outline: none !important;
}

/* Reaguoja į mažus ekranus (ypač Android) */
@media (max-width: 600px) {
  .fc .fc-toolbar-title {
    font-size: 1rem;
  }

  .fc .fc-button {
    padding: 4px 8px;
    font-size: 12px;
  }

  .fc .fc-daygrid-day-frame {
    padding: 4px;
  }

  .fc-event {
    font-size: 12px;
    padding: 4px 6px;
  }

  .fc-event.bg-blue {
    font-size: 12px;
    padding: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
  }
}

/* Užtikrina, kad scroll nebūtų sugadintas iOS Safari naršyklėje */
body {
  -webkit-overflow-scrolling: touch;
}
/* ✅ 1. Navigacijos juosta mobiliam */
@media (max-width: 768px) {
  .top-nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  nav ul li a {
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
  }
}

/* ✅ 2. Slideshow prisitaikymas */
@media (max-width: 768px) {
  .left-box {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .slide {
    height: 100%;
    object-fit: cover;
  }
}

/* ✅ 3. 360° panorama langelis */
@media (max-width: 768px) {
  .right-box {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .panorama-container,
  .panorama-wrapper {
    width: 100%;
    height: 100%;
  }
}

/* ✅ 4. Video ir žemėlapis */
@media (max-width: 768px) {
  .video-map {
    flex-direction: column;
    padding: 20px;
  }

  .video-container{
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}
@media (max-width: 768px) {
  .map-container iframe {
    width: 100% !important;
    height: auto;
    aspect-ratio: 16 / 9;
    display: block;
  }
}


/* ✅ 5. Hero sekcija mobiliam */
@media (max-width: 768px) {
  .hero {
    height: 200px;
    margin: 10px;
    border-radius: 8px;
  }

  .hero h1 {
    font-size: 1.2rem;
    text-align: center;
  }
}

/* ✅ 6. Panorama mygtukas mobiliai */
@media (max-width: 768px) {
  .panorama-launcher {
    font-size: 16px;
    padding: 10px;
    text-align: center;
  }
}
/* Slėpti hamburger mygtuką desktop versijoje */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #26336A;
  padding-top: 25px;
}

/* Mobilus stilius */
@media (max-width: 768px) {
  nav {
    width: 100%;
  }

  .hamburger {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    margin-top: 10px;
    background-color: white;
    border-top: 1px solid #ccc;
  }

  nav ul.show {
    display: flex;
  }

  nav ul li a {
    padding: 12px 20px;
    width: 100%;
    border-bottom: 1px solid #eee;
  }
}

/* Desktop versija su matomu aukščiu */
.map-container.desktop-map {
  flex: 1 1 65%;
  min-width: 400px;
  max-width: 1000px;
  height: 560px; /* ← garantuoja aukštį */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* Mobilus responsive variantas */
.map-responsive.mobile-map {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.map-responsive.mobile-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Rodyti tik vieną žemėlapį priklausomai nuo ekrano */
.desktop-map {
  display: block;
}

.mobile-map {
  display: none;
}

@media (max-width: 768px) {
  .desktop-map {
    display: none;
  }

  .mobile-map {
    display: block;
  }
}
.footer-spacer {
  height: 40px;
}
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 10px;
  }

  .footer-info {
    text-align: center;
    font-size: 14px;
  }

  .footer-logo img {
    height: 50px;
  }
}
.fc .fc-daygrid-day-frame {
  min-height: 80px; /* arba 90px jei reikia daugiau vietos */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 6px;
  box-sizing: border-box;
}
/* Slinkimas į šoną, kai per siaura */
.calendar-scroll-container {
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  position: relative;

}

/* Kalendoriui nurodom minimalų plotį */
#calendar {
  min-width: 800px; /* arba 700px, jei dar siauriau reikia */
}

/* Pagerinimas – mobilus teksto dydis ir antraštės nebesusigrūda */
@media (max-width: 768px) {
  .fc .fc-col-header-cell-cushion {
    font-size: 12px;
    white-space: nowrap;
  }

  .fc .fc-daygrid-day-frame {
    padding: 4px;
  }

  .fc-event {
    font-size: 11px;
    padding: 3px 5px;
  }

  .fc-daygrid-day-number {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .fc .fc-col-header-cell {
    font-size: 11px;
    padding: 4px 6px;
  }

  .fc .fc-toolbar-title {
    font-size: 14px;
  }
}
.calendar-button-wrapper {
  text-align: center;
  margin: 20px 0;
}
.reservation-wrapper {
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.reservation-form h3 {
  color: #26336A;
  font-size: 17px;
  margin-bottom: 20px;
}

.reservation-form label {
  display: block;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.reservation-form input,
.reservation-form textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  background-color: #f3f3f3;
  margin-top: 6px;
  font-size: 14px;
  box-sizing: border-box;
}

.reservation-form textarea {
  resize: vertical;
  min-height: 80px;
}

.checkbox-group {
  margin-top: 25px;
}

.checkbox-group p {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 16px;
  color: #26336A;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 12px; /* padidintas tarpas tarp checkbox ir teksto */
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #26336A;
}

.custom-checkbox input[type="checkbox"] {
  width: 1em;
  height: 1em;
  accent-color: #26336A;
  cursor: pointer;
}


.reservation-form button {
  margin-top: 25px;
  background-color: #f1c40f;
  color: #000;
  font-weight: bold;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.reservation-form button:hover {
  background-color: #d4ac0d;
}
select {
  width: 100%;
  padding: 10px;
  margin: 5px 0 15px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f5f5f5;
  font-size: 16px;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

select:focus {
  border-color: #0066cc;
  outline: none;
  background-color: #fff;
}











