@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');

body {
  background: #222;
  background-image: url(https://images.unsplash.com/photo-1469474968028-56623f02e42e?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=3506&q=80);
}

* {
  font-family: 'Inter';
  font-weight: 400;
}

.logo {
  width: 45px;
  height: auto;
}

/*----------------------------------------
  Both Headers
----------------------------------------*/
.header {
  display: block;
  max-width: calc(100% - 70px);
  width: 100%;
  height: auto;
  position: fixed;
  z-index: 5;
  top: 0px;
  left: 0px;
  right: 0px;
  background: transparent;
  padding: 15px 15px 0px 15px;
  font-family: 'Inter';
}
.header-inner {
  width: 100%;
  height: auto;
  background: rgba(255 255 255 / 20%);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  justify-content: auto;
  align-items: center;
  padding: 10px 20px;
}

/* Header breakpoints */

 @media screen and (max-width: 1007px){
  
  .navigation ul {
    display: table !important;
  }    

}

/*@media screen and (min-width: 1008px){
  #mobile-header {
    display: none;
  }
}
*/

/*----------------------------------------
  Desktop Header
----------------------------------------*/
/*----- Left Column -----*/
#desktop-header .left-col {
  display: block;
  width: 20%;
  height: 100%;
}
#desktop-header .left-col .col-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
}

/*----- Middle Column -----*/
#desktop-header .middle-col {
  display: block;
  width: 80%;
  height: 100%;
}
#desktop-header .middle-col .col-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.navigation {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.navigation ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  list-style-type: none;
}


.navLink {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

/*----- Right Column -----*/
#desktop-header .right-col {
  display: block;
  width: 20%;
  height: 100%;
}
#desktop-header .right-col .col-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
}

/*----------------------------------------
  Mobile Header
----------------------------------------*/
/*----- Left Column -----*/
#mobile-header {
display: none;
}
#mobile-header .left-col {
  display: none;
  width: 33%;
  height: 100%;
}
#mobile-header .left-col .col-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
}

/*----- Middle Column -----*/
#mobile-header .middle-col {
  display: block;
  width: 34%;
  height: 100%;
}
#mobile-header .middle-col .col-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/*----- Right Column -----*/
#mobile-header .right-col {
  display: block;
  width: 33%;
  height: 100%;
}
#mobile-header .right-col .col-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
}

/*----------------------------------------
  Menu Drawer & Function
----------------------------------------*/
#menuToggle {
  display: block;
  position: relative;
  z-index: 15;
  -webkit-user-select: none;
  user-select: none;
  margin-top: 3px;
}
.menuNavLink {
  text-decoration: none;
}
.menuNavLink li {
  color: #1b181980;
  transition: color 0.3s ease;
}
.menuNavLink li:hover {
  color: #1b1819;
}
#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0; /* make this invisible */
  z-index: 15; /* and place it over the menu icon */
  -webkit-touch-callout: none;
}
.menuIconLine {
  display: block;
  width: 24px;
  height: 1px;
  margin-bottom: 4px;
  position: relative;
  background: #fff;
  border-radius: 0px;
  z-index: 14;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}
#menuIconLine1 {
  transform-origin: 0% 0%;
}
#menuIconLine3 {
  transform-origin: 0% 100%;
}
/* This transforms all 3 lines of the menu icon into an "X". */
#menuToggle input:checked ~ .menuIconLine {
  opacity: 1;
  transform: rotate(45deg) translate(-5.5px, -4px);
  background: #1b1819;
}
/* This will hide the middle menu icon line. */
#menuToggle input:checked ~ #menuIconLine2 {
  opacity: 0 !important;
  transform: rotate(0deg) scale(0.2, 0.2) !important;
}
/* This makes the third / last menu icon line to go the other direction. */
#menuToggle input:checked ~ #menuIconLine3 {
  transform: rotate(-45deg) translate(0, -1px);
}
#menu {
  position: fixed;
  width: 300px;
  height: 100vh;
  top: 0px;
  right: -355px;
  margin: -15px 0px 0px 0px; /* top, right, bottom, left */
  padding: 80px 20px 20px 20px; /* top, right, bottom, left */
  background: #fff;
  list-style-type: none;
  -webkit-font-smoothing: antialiased; /* prevents text from flickering in safari */
  transition: right 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  z-index: 10;
}
.menuNavLink li {
  font-size: 18px;
  padding: 12px;
  text-align: left;
  font-weight: 400;
  font-family: 'Inter';
}
#menuToggle input:checked ~ ul {
  right: -15px;
}


  #map {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  }
  
  .marker {
  background-image: url('cenilogo\ pin.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  /* border-radius: 50%; */
  cursor: pointer;
  }
  
  .mapboxgl-popup {
  max-width: 200px;
  }
  
  .mapboxgl-popup-content {
    font: 400 12px/22px 'Source Sans Pro', 'Helvetica Neue', sans-serif;
    padding: 10px;
    min-width: 300px;

    
    
  }
  .mapboxgl-popup-content strong {
    font-size:14px;
    font-weight: bold;
    text-align: center;
  }

.tb-strong {
    font-weight: bold;
  }
  .mapboxgl-popup-content h3 {
    background: #0260a0ff;
    color: #fff;
    margin: 0;
    padding: 10px;
    border-radius: 3px 3px 0 0;
    font-weight: 700;
    margin-top: -15px;
  }
  
  .mapboxgl-popup-content h4 {
    margin: 0;
    padding: 10px;
    font-weight: 400;
  }
  
  .mapboxgl-popup-content div {
    padding: 10px;
  }
  
  .mapboxgl-popup-anchor-top > .mapboxgl-popup-content {
    margin-top: 15px;
    padding: 10px;
  
  }
  
  .mapboxgl-popup-anchor-top > .mapboxgl-popup-tip {
    border-bottom-color: #91c949;
  }

  .select {
    position: relative;
    min-width: 300px;
  }
  .select svg {
    position: absolute;
    right: 12px;
    top: calc(50% - 3px);
    width: 10px;
    height: 6px;
    stroke-width: 2px;
    stroke: #9098a9;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
  }
  .select select {
    -webkit-appearance: none;
    padding: 7px 40px 7px 12px;
    width: 100%;
    border: 1px solid #e8eaed;
    border-radius: 5px;
    background: #ffffff00;
    box-shadow: 0 1px 3px -2px #9098a9;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    transition: all 150ms ease;
  }
  .select select:required:invalid {
    color: #ffffff;
  }

  .mapboxgl-popup-close-button {
    display: none;
  }
  .select select option {
    color: #223254;
  }
  .select select option[value=""][disabled] {
    display: none;
  }
  .select select:focus {
    outline: none;
    border-color: #07f;
    box-shadow: 0 0 0 2px rgba(0,119,255,0.2);
  }
  .select select:hover + svg {
    stroke: #07f;
  }
  .sprites {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
    user-select: none;
  }

  /* plan  */
.fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 200px;
  z-index: 10;
  background-color: #fff;
}

#download {
  /* display: none; */
  background-color: #0260a0;
  color: #fff !important;
}

#download  option {
  color: #fff;
}

.overlay {
  z-index: 90;
  background-color: #1b1819;
  opacity: .7;
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0px;
  top: 0px;
}

.great-title {
  width: 80vw;
  height: 80vh;
  background-color: #fffffff4;
  border-radius: 1px;
  box-shadow: 0px 0px 10px #1b18194e;
  z-index: 99;
  position: fixed;
  color: #1b1819;
  left: 10vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
 
  align-items: center;
  /* margin-top: 100px; */
  /* backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px); */


}

.great-title h1 {
  color: #223254;
}


.great-title button {
  padding: 17px 50px 17px 22px;
  width: 80%;
  border: 1px solid #e8eaed;
  border-radius: 5px;
  background: #0260a0ff;
  box-shadow: 0 1px 3px -2px #9098a9;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  transition: all 150ms ease;
  color: #fff;
  flex-wrap: wrap-reverse;
  text-transform: uppercase;
}


  .table_datas td, .table_datas th {
    /* border: 1px solid #ddd; */
    padding: 1px;
  }
  
  .table_datas tr:nth-child(even){background-color: #f2f2f2;}
  
  .table_datas tr:hover {background-color: #ddd;}
  
  .table_datas th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #04AA6D;
    color: white;
  }

.plan {
  padding: 10px;
  background-color: var(--c-white);
  color: var(--c-del-rio);
}
.plan strong {
  font-weight: 600;
  color: var(--c-coffee);
}
.plan .inner {
  padding: 20px;
  padding-top: 40px;
  background-color: var(--c-fair-pink);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.plan .pricing {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--c-apricot);
  border-radius: 99em 0 0 99em;
  display: flex;
  align-items: center;
  padding: 0.625em 0.75em;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--c-coffee);
}
.plan .pricing small {
  color: var(--c-del-rio);
  font-size: 0.75em;
  margin-left: 0.25em;
}
.plan .title {
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--c-coffee);
}
.plan .title + * {
  margin-top: 0.75rem;
}
.plan .info + * {
  margin-top: 1rem;
}
.plan .features {
  display: flex;
  flex-direction: column;
}
.plan .features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.plan .features li + * {
  margin-top: 0.75rem;
}
.plan .features .icon {
  background-color: var(--c-java);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  border-radius: 50%;
  width: 20px;
  height: 20px;
}
.plan .features .icon svg {
  width: 14px;
  height: 14px;
}
.plan .features + * {
  margin-top: 1.25rem;
}
.plan button {
  font: inherit;
  background-color: var(--c-indigo);
  border-radius: 6px;
  color: var(--c-white);
  font-weight: 500;
  font-size: 1.125rem;
  width: 100%;
  border: 0;
  padding: 1em;
}
.plan button:hover, .plan button:focus {
  background-color: var(--c-governor);
}
