#plantas .modal-body {
  max-height: 80vh;
  overflow: auto;
}

#galerias {
  position: relative;
}

/* #galerias .wrap {
  max-width: 1080px;
} */

#gallery-content {
  position: relative;
}

#gallery-full {
  position: relative;
  /* margin-top: 40px;
  padding: 0 8px; */
}

#gallery-full .slide-item  {
  max-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 400px;
}

#gallery-full .slide-item picture {
  height: 100%;
  display: flex;
  overflow: hidden;
}

#gallery-full .slide-item picture img {
  height: 100%;
  object-fit: contain;
  object-position: center;
}

#gallery-full .slide-item p {
  padding-top: 8px;
  display: none;
}

#gallery-full .slick-arrow {
  position: absolute;
  top: 0;
  right: 8px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  background: #0D2C44;
  border: 1px solid #0D2C44;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  color: #fff;
  padding: 0;
  z-index: 90;
}

#gallery-full .slick-prev {
  top: 60px;
  padding-right: 5px;
}

#gallery-full .slick-next {
  padding-left: 5px;
}

#gallery-thumb {
  margin-top: 8px;
  padding: 0 4px;
}

#gallery-thumb .slick-slide {
  padding: 0 4px;
}

#gallery-thumb .gallery-item img {
  display: flex;
  margin: auto;
}

#gallery-zoom {
  display: flex;
  position: absolute;
  top: 0;
  left: 8px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  color: #fff;
  background: #0D2C44;
}

#gallery-zoom svg {
  width: 20px;
  fill: #fff;
  z-index: 90;
}

@media screen and (max-width: 360px) {
  #gallery-thumb {
    display: none;
  }

  #gallery-full {
    padding-bottom: 60px;
  }

  #gallery-full .slick-prev {
    top: auto;
    right: auto;
    bottom: 0;
    left: calc(50% - 52px);
  }

  #gallery-full .slick-next {
    top: auto;
    right: auto;
    bottom: 0;
    left: calc(50% + 4px);
  }
}

@media only screen and (max-width: 768px) {
  #gallery-full .slick-arrow {
    width: 35px;
    height: 35px;
    font-size: 25px;
  }
  
  #gallery-full .slick-prev {
    padding-right: 3px;
    top: 40px;
  }
  
  #gallery-full .slick-next {
    padding-left: 3px;
  }

  #gallery-zoom {
    width: 35px;
    height: 35px;
  }

  #gallery-zoom svg {
    width: 15px;
  }
}