/*
Theme Name: Divi Child Theme
Description: Child Theme for Divi
Author:  Hand to Sky
Template: Divi
Version:  1.0.2
*/

/*
---------------------------
	CSS DIRECTORY
---------------------------
	=Font Setup
	=Global
	=Header
	=Footer
	=Media Queries
*/

/* ====Font Setup /////////////////////////////////////////////////*/

/* ====Global /////////////////////////////////////////////////*/
.hotspot-grid {
  display: grid;
  grid-template-columns: repeat(var(--cols), 1fr);
  grid-template-rows: repeat(var(--rows), 1fr);
  position: relative;
}

.hotspot-grid__image {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  width: 100%;
  display: block;
}

.hotspot-grid__spot {
  grid-row: var(--r);
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.hotspot-grid__spot:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

/* ====Header /////////////////////////////////////////////////*/

/* ====Footer /////////////////////////////////////////////////*/

/* ====Media Queries /////////////////////////////////////////////////*/
@media (max-width: 767px) {
}
@media (min-width: 768px) {
}
@media (min-width: 992px) {
}
@media (min-width: 1200px) {
}
