* {
  font-family: "Roboto", Arial, sans-serif;
  padding: 0;
  margin: 0;
  outline: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
.logo {
  width: 150px;
}
#map-loader {
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(100dvh - 81px);
  background: rgba(255, 255, 255, 1);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
  color: #333;
}
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top: 4px solid #175190;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 10px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#menu {
  top: 0;
  left: 0;
  width: 100%;
  background-color: hsl(211 72% 25% / 1);
  color: white;
  height: 56px;
  z-index: 1;
  display: flex;
  padding: 0 10px;
  align-items: center;
  position: relative;
  gap: 30px;
  box-shadow: 0 3px 41px 4px #ffffff6e;
}
.m_desk a {
  color: white;
  text-decoration: none;
  padding: 5px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  font-family: sans-serif;
}
#menu ul {
  display: flex;
}
#menu li {
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 15px;
}
.m_desk li a {
  transition: all linear 0.3s;
}
.m_desk li a:hover {
  transition: all linear 0.3s;
  text-shadow: 0 0 2px white;
}
li {
  list-style: none;
}

.m_mov {
  display: none;
}
.menu_check {
    position: absolute;
    top: 6px;
    right: 15px;
    width: 42px;
    height: 42px;
    display: flex;
    opacity: 0;
    z-index: 2;
}
.menu_toggle {
  height: 34px;
  position: relative;
  top: 50px;
  right: 0;
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.menu_box {
  height: 103px;
  background: white;
  position: relative;
  top: 59px;
  width: 50dvw;
  transform: translateX(calc(50dvw + 16px));
  transition: all linear .3s;
  ul {
    flex-direction: column;
    a {
      color: #c29b00;
    }
  }
}
.menu_check:checked ~ .menu_box {
  transform: translateX(0);
  transition: all linear .3s;
}
#map {
  height: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 15px;
}
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
#search-panel,
#directory-panel {
  display: none;
  position: absolute;
  top: 70px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background-color: white;
  padding: 10px;
  z-index: 2;
  overflow: auto;
}
#search-panel table,
#directory-panel table {
  width: 100%;
  border-collapse: collapse;
}
#search-panel th,
#search-panel td,
#directory-panel th,
#directory-panel td {
  border: 1px solid #ccc;
  padding: 8px;
}
#search-panel th {
  background-color: #f2f2f2;
}
.pan {
    display: flex
;
    position: absolute;
    transform: scale(0);
    height: calc(100dvh - 80px);
    top: 56px;
    padding: 0;
    background: rgb(244 247 255);
    -mox-backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    overflow: hidden;
    font-size: 20px;
    flex-direction: column;
    width: 100dvw;
}
.search_sec {
  height: 60px;
  width: 100vw;
  overflow: hidden;
  justify-content: center;
  display: flex;
  align-items: center;
  @media (max-width: 480px) and (orientation: portrait) {
    width: 100dvw;
    padding: 0 18px;
    gap: 10px;
  }
}
.search {
  width: 450px;
  height: 30px;
  border-radius: 10px;
  border: 1px solid gray;
  padding: 10px;
  outline: 0;
  color: rgba(15, 42, 90, 1);
  font-weight: bold;
}
.search_send {
  width: 70px;
  height: 30px;
  border-radius: 10px;
  border: 0;
  background-color: rgba(15, 42, 90, 0.8);
  color: white;
  padding: 0 15px;
}
.crane_grid {
  display: flex;
  gap: 20px;
  overflow-y: auto;                     /* mejor: auto (solo aparece si hace falta) */
  height: calc(100vh - 140px);
  justify-content: space-between;
  padding: 5px 20px;
  transition: width 0.3s linear;        /* orden correcto */
  flex-wrap: wrap;                    /* explícito; si quieres wrap en pantallas grandes cambiarlo en media queries */
  box-sizing: border-box;
}

/* pequeño ajuste para móviles (portrait) */
@media (max-width: 480px) and (orientation: portrait) {
  .crane_grid {
    width: 100dvw;
    height: 160px;
    padding: 5px 20px;
    flex-wrap: nowrap !important;
  }
}

/* portrait > 480px (tablets verticales) */
@media (min-width: 481px) and (orientation: portrait) {
  .crane_grid {
    flex-wrap: wrap;
    width: 100%;                        /* más claro que calc innecesario */
    flex: 1 1 100%;
  }
}


.supplier_logo_wrap{
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.supplier_left{
  width: 90px;
}
.supplier_sec {
  transition: all 0.3s linear;
  width: 365px;
  border-radius: 15px;
  padding: 10px;
  text-align: center;
  height: 150px;
  max-height: 150px;
  background-color: rgb(244 247 255);
  cursor: pointer;
  font-size: 16px;
  overflow: hidden;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  box-shadow: 0 0 10px 0px hsl(0deg 0% 54.5% / 18%);
  transition: all 0.3s linear;
}
@media (max-width: 480px) and (orientation: portrait) {
  .supplier_sec {
    min-width: 120px;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    justify-content: space-between;
    .supplier_address, .supplier_phone{
      display: none;
    }
  }
}
.supplier_sec:hover {
  transition: all 0.3s linear;
  box-shadow: 0 0 5px 0px #314f709e;
}
.supplier_empty {
  transition: all 0.3s linear;
  width: 365px;
  padding: 10px;
  opacity: 0;
  font-size: 16px;
  overflow: hidden;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.supplier_hidden {
  transition: all 0.3s linear;
  width: 150px;
  border: 1px solid gray;
  border-radius: 15px;
  padding: 10px;
  text-align: center;
  height: 200px;
  background-color: rgb(255 255 255 / 82%);
  cursor: pointer;
  font-size: 16px;
  overflow: hidden;
  opacity: 0;
}
a {
  text-decoration: none;
}
.supplier_logo {
    max-width: 80px;
    max-height: 80px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    aspect-ratio: auto;
    background-color: #ffffffb8;
    font-size: 0;
}
.supplier_company {
  font-size: 10pt;
  font-weight: bold;
  color: rgba(15, 42, 90, 1);
  height: 34px;
}
@media (max-width: 480px) and (orientation: portrait) {
  .supplier_info {
    min-height: 40px;
  }
  .supplier_logo {
    width: 75px;
  }
  .supplier_logo_wrap{
    width: 80px;
    height: 80px;
  }
  .supplier_company {
    font-size: 12px;
    text-transform: lowercase;
    &::first-letter{
      text-transform: capitalize;
    }

  }
  .supplier_location {
        max-height: 13px;
        overflow: hidden;
        min-height: 13px;
  }
}
.supplier_location {
  font-size: 7.5pt;
  color: rgb(245 94 0);
}
.supplier_address {
  font-size: 11px;
  padding: 2px 1px;
  font-weight: 400;
  min-height: 52px;
}
.supplier_phone {
  font-size: 9.5pt;
  padding: 2px 5px;
  color: gray;
}
.contact_menu {
  position: absolute;
  right: 10px;
  margin-right: 70px;
  background: #e7ba00;
  padding: 10px 18px !important;
  border-radius: 10px;
  color: black !important;
  font-size: arial;
}
footer {
  position: fixed;
  z-index: 100;
  width: 100%;
  background-color: #175190;
  color: white;
  bottom: 0;
  font-size: 13px;
  height: 25px;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 0 3px;
}
[role="dialog"] {
  -webkit-box-shadow: 0 2px 7px 1px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 7px 1px rgba(0, 0, 0, 0.3);
  -moz-backfrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 0 !important;
  max-width: 420px !important;
  min-width: 420px !important;
}
.gm-style-iw-tc {
  display: none !important;
}
.gm-style-iw-d {
  padding: 0 !important;
}
.gm-ui-hover-effect {
  right: 5px !important;
  top: 5px !important;
  background-color: rgb(234, 1, 1) !important;
  border-radius: 100%;
  color: white !important;
  transform: scale(0.8);
  z-index: 2;
}
.gm-style-iw-d {
  max-width: 420px !important;
  overflow: hidden !important;
  @media (max-width: 480px) and (orientation: portrait) {
    /* Solo móviles en vertical */
    max-width: 95dvw !important;
  }
}
.gm-style .gm-style-iw-c {
  background-color: transparent !important;
  @media (max-width: 480px) and (orientation: portrait) {
    /* Solo móviles en vertical */
    max-width: 95dvw !important;
    min-width: 95dvw !important;
  }
}
.gm-style-iw-chr {
  position: absolute;
  top: 0;
  height: 60px;
  z-index: 2;
  right: 0;
}
.info_buble {
  @media (max-width: 767px) and (orientation: portrait) {
    /* Solo móviles en vertical */
    max-width: 95dvw;
  }
}
.info_banner {
  height: 200px;
  width: 420px;
  background-size: 100%;
  background-repeat: no-repeat;
  position: relative;
  background: #123e6e;
  @media (max-width: 767px) and (orientation: portrait) {
    /* Solo móviles en vertical */
    max-width: 95dvw;
  }
}
.info_main {
  color: white;
  background-color: rgb(0 0 0 / 45%);
  position: relative;
  top: 0;
  width: 100%;
  height: 46px;
  padding: 3px 9px;
  font-size: 16px;
  box-shadow: 0 7px 14px 3px rgb(0 0 0 / 48%);
  display: flex;
  align-items: center;
  z-index: 1;
  font-weight: 400;
}
.info_data {
  padding: 5px;
  display: grid;
  grid-template-columns: 123px 1fr;
  grid-template-rows: 1fr;
  font-size: 14px;
  @media (max-width: 767px) and (orientation: portrait) {
    /* Solo móviles en vertical */
    max-width: 95dvw;
  }
}
.info_address {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 10px;
}
.info_address a:not([type="whatsapp"]) {
  background-color: #546583;
  color: white;
  text-decoration: none;
  padding: 2px 3px;
  border-radius: 4px;
  font-weight: 400;
  font-size: 13px;
}

  [type="whatsapp"] {
    background-color: #25d366;
    color: #000000;
    font-weight: 500;
    text-decoration: none;
    padding: 2px 3px;
    border-radius: 4px;
    font-size: 13px;
  }
.info_detail {
  display: flex;
  gap: 10px;
  min-height: 24px;
  align-items: center;
}
.info_icon {
  min-width: 32px;
  max-height: 32px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.info_text {
  display: flex;
  align-items: flex-start;
  padding: 2px 0;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 400;
}
.info_logo {
  width: 120px;
  min-height: 55px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-backdrop-filter: blur(3px);
  -moz-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  z-index: 2;
}
.directory {
  background-color: rgba(15, 42, 90, 0.8);
  padding: 7px 15px;
  color: white;
  border-radius: 5px;
  border: 0;
  cursor: pointer;
  font-size: 14px;
}
.main_analytics {
  display: flex;
  position: fixed;
  z-index: 1000;
  bottom: 25px;
  right: 0px;
  border: 25px solid rgb(255 255 255 / 11%);
  color: white;
  font-family: sans-serif;

  @media (max-width: 767px) and (orientation: portrait) {
    border: 10px solid rgb(255 255 255 / 11%);
  }
}
.panel_analytics {
  background: rgb(15 42 90 / 73%);
  padding: 10px;
  display: flex;
  flex-direction: row;
  height: 100px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border-radius: 10px;
  align-items: center;

  @media (max-width: 767px) and (orientation: portrait) {
    flex-direction: column;
    height: 100%;
    gap: 12px;
  }
}
.module_info {
  width: 65px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  @media (max-width: 767px) and (orientation: portrait) {
    width: 35px;
  }
}
.module_title {
  font-size: 13px;
  height: 45px;

  @media (max-width: 767px) and (orientation: portrait) {
    font-size: 9px;
    height: 25px;
  }
}
.module_value {
  font-size: 22px;

  @media (max-width: 767px) and (orientation: portrait) {
    font-size: 16px;
  }
}
#grafico {
  margin-top: 10px;
  display: block;
  box-sizing: border-box;
  height: 80px;
  width: 240px;
  @media (max-width: 767px) and (orientation: portrait) {
    display: none !important;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.6);
  }
}
#searchResults {
  display: block;
  height: 370px;
  background: #00000069;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  position: fixed;
  top: 56px;
  width: 100vw;
  z-index: 999;
  position: fixed;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  max-height: 300px;
  width: 300px;
  overflow-y: auto;
  z-index: 9999;
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  font-family: sans-serif;
}
#searchResults li {
  padding: 8px 12px;
  cursor: pointer;
}
#searchResults li:hover {
  background: rgb(240 240 240 / 61%);
}
.highlight {
  background-color: #175190;
  font-weight: bold;
  color: white;
  padding: 0 3px;
  border-radius: 3px;
}
#searchBox {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 12px;
  width: 300px;
  font-size: 16px;
  z-index: 0;
  opacity: 0;
}
.suggestions {
  position: fixed;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: white;
  border: 1px solid #ccc;
  max-height: 300px;
  overflow-y: auto;
  width: 300px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: sans-serif;
}
.suggestions li {
  padding: 8px 12px;
  cursor: pointer;
}
.suggestions li.selected {
  background-color: #1a73e8;
  color: white;
}
.suggestions li .highlight {
  background-color: yellow;
  font-weight: bold;
}
#searchResults li.selected {
  background-color: #f0f0f0;
  font-weight: bold;
}
.marker-html {
  background: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 4px 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}
.maker_content {
  cursor: pointer;
  display: grid;
  justify-items: center;
  z-index: 6000;
  position: relative;
}
.marker_label {
  transition: all linear 0.3s;
  transform: translateY(5px);
  opacity: 0;
  background: white;
  padding: 5px;
  border-radius: 6px;
  border: 1px solid #ccc;
  z-index: 8500;
  max-width: 224px;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: flex;
  align-items: center;
  min-width: 224px;
  max-height: 30px;
  overflow: hidden;
  padding: 5px;
}
.marker_crane {
  position: relative;
  z-index: 9000;
}
.marker_logo {
  min-width: 28px;
  height: 28px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  transform: translateX(-50px);
}
.marker_company {
  font-size: 10px;
  color: #333;
  display: inline-block;
  margin-left: 5px;
  height: 20px;
  transform: translateY(50px);
  background: #f4f4f4;
  display: flex;
  align-items: center;
  padding: 5px;
}
.tour-highlight {
  position: fixed;
  z-index: 9999;
  pointer-events: auto;
  box-shadow: 0 0 0 4px rgba(255, 255, 0, 0.8);
  background: white;
}
.tour-tooltip {
  position: fixed;
  background: #fff;
  color: #000;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  z-index: 10000;
  max-width: 300px;
}
[itemprop="telephone"], [itemprop="whatsapp"], [itemprop="email"] {
    background-color: #546583;
    color: white;
    text-decoration: none;
    padding: 2px 3px;
    border-radius: 4px;
    font-weight: 400;
    font-size: 7.5pt;
    display: inline-flex;
    font-family: sans-serif;
  }
.side_bar {
  width: 400px;
  flex: auto !important;
}
.bg-top {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
}
.craner_open {
  width: calc(100dvw - 400px);
  overflow: hidden;
    height: calc(100dvh - 140px);
}
@media (max-width: 480px) and (orientation: portrait) {
  .craner_open {
        width: 100dvw !important;
        overflow: scroll;
        height: calc(100dvh - 302px);
        position: relative;
  }
}
.crane_info {
  display: flex;
}
@media (max-width: 480px) and (orientation: portrait) {
  .crane_info {
    flex-direction: column;
  }
}
.crane_port {
  width: 100%;
  height: 300px;
  background-size: cover, 80%;
  background-position: center, center;
  box-shadow: 0 5px 10px 0px hsl(211 72% 70% / 1);
  background-color: #123e6e;
  background-repeat: no-repeat;
  position: relative;
}
.crane_box {
  height: 150px;
  top: -75px;
  position: relative;
  display: flex;
  padding-left: 50px;
}

.crane_logo{
  background: #f4f7ff;
  width: 130px;
    height: 130px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    box-shadow: 0 0 16px 1px hsl(211 72% 41% / 1);
    z-index: 1;
  img {
    font-size: 0;
    width: fit-content;
    position: relative;
    width: 90px;
    height: auto;
  }
}
@media (max-width: 480px) and (orientation: portrait) {
  .crane_port {
    position: fixed;
    height: 220px;
    z-index: 10;
  }
  .crane_box {
    position: fixed;
    top: 364px;
    z-index: 11;
    height: 100px;
    padding-left: 10px;
  }
  .crane_logo {
    width: 100px;
    height: 100px;
    img {
      width: 70px;

    }
  }
  .crane_company {
        width: 100dvw !important;
        padding: 20px 14px 20px 112px !important;
        font-size: 18px !important;
        word-break: normal;
        white-space: pre-wrap !important;
        overflow-wrap: break-word;
  }
  .crane_company_info {
    top: 250px !important;
  }
}
.crane_company {
    color: white;
    height: 75px;
    background-color: rgba(0, 0, 0, 0.5);
    left: 1px;
    position: absolute;
    z-index: 0;
    width: calc(100dvw - 400px);
    padding: 20px 0 20px 197px;
    vertical-align: middle;
    font-size: 20px;
    text-shadow: 0 0 4px #7bb1ea;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.crane_company_info {
    display: flex;
    gap: 10px;
    padding: 10px;
    position: relative;
    align-items: start;
    top: -83px;
    height: calc(100dvh - 595px);
    justify-content: space-between;
    flex-wrap: wrap;
}
.crane_company_details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.crane_company_maps {
    position: relative;
    height: fit-content;
    width: calc(100dvw - 800px);
    flex: 1 1 500px;
}



.bg-bottom {
    background-image: url(https://reddegruas.com/agedi_gray.svg);
    width: 100%;
    height: calc(100% - 40px);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70%;
}















  .info-panel {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    max-width: 600px;
    width: 100%;
    padding: 28px;
    box-sizing: border-box;
  }

  .info-panel h2 {
    margin: 0 0 20px 0;
    font-size: 22px;
    color: #0a3d91;
    border-left: 6px solid #1871d8;
    padding-left: 10px;
  }

  .info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row;
  }

  .info-item span.icon {
    font-size: 18px;
    width: 24px;
    height: 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .info-item p,
  .info-item a {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    word-break: break-word;
    white-space: break-spaces;
    white-space-collapse: collapse;
    word-break: break-all;
    max-width: 400px;
    min-height: 24px;
  }



  @media (max-width: 480px) and (orientation: portrait) {
    .info-panel {
      padding: 20px;
    }
    .info-item {
      align-items: flex-start;
    }
    .crane_company_info {
      padding: 20px;
    }
  }

  .crane_company_equipment {
    width: calc(100dvw - 400px);
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    flex-direction: row;
}

  .crane_company_equipment_item {

    background-color: rgb(255 255 255);
    transition: all 0.3s linear;
    width: 300px;
    flex: 1 1 auto;
    box-shadow: 0 0 10px 0px hsl(0deg 0% 54.5% / 50%);
    height: 80px;
    padding: 5px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #80808073;
  }
.crane_company_equipment_name {
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 400;
}
.crane_company_equipment_ghost {
    width: 300px;
    flex: 1 1 auto;
    height: 1px;
    opacity: 0;
}

@media (max-width: 480px) and (orientation: portrait) {
  .m_mov {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .m_desk {
    display: none !important;
  }
}
@media (max-width: 480px) and (orientation: portrait) {
  .crane_company_equipment {
    flex-direction: column !important;
    width: calc(100dvw - 10px);
    padding: 20px 0;
  }
  .crane_company_equipment_item {
    width: auto;
  }
}