/*=== TOOTLTIPS ===*/

@keyframes pulse {
   0% {
      transform: scale(1);
      opacity: 1;
   }

   100% {
      transform: scale(2);
      opacity: 0;
   }
}

.tootltips1 {
   margin-top: 50px;
   margin-bottom: 50px;
   text-align: center;

   --color__brand1: #54BDBD;
   --color__brand2: #F7B800;
   --color__brand3: #54BDBD;
   --color__brand4: #FFE599;
}

.tootltips1__container {
   display: inline-block;
   position: relative;
   max-width: 100%;
   width: 650px;
}

.tootltips1__img {
   width: 100%;
   max-width: 100%;
}

.tootltips1__dot {
   --color-tooltip: var(--color__brand2);
   position: absolute;
   display: block;
   width: 8.5%;
   height: 5.6%;
   border-radius: 50%;
}

[data-tipped-options*="light"].tootltips1__dot {
   --color-tooltip: var(--color__brand3);
}

.tootltips1__dot:hover {
   cursor: pointer;
}

.tootltips1__dot:before {
   --size-tooltip: 40px;
   content: "";
   position: absolute;
   left: 0;
   top: 0;
   width: var(--size-tooltip);
   height: var(--size-tooltip);
   border-radius: 50%;
   background-color: var(--color-tooltip);
   animation: pulse 1s infinite;
   transition: visibility .5s;
}

@media (max-width: 576px) {
   .tootltips1__dot:before {
      --size-tooltip: 20px;
   }
}

.tootltips1__dot:hover:before {
   visibility: hidden;
}

.tpd-skin-dark .tpd-background-content,
.tpd-skin-dark .tpd-background-title {
   background-color: #F7B800;
}

.tpd-skin-dark .tpd-content,
.tpd-skin-dark .tpd-title,
.tpd-skin-dark .tpd-close {
   color: #fff;
}

.tpd-skin-light .tpd-background-content,
.tpd-skin-light .tpd-background-title {
   background-color: #54BDBD;
}

.tpd-skin-light .tpd-content,
.tpd-skin-light .tpd-title,
.tpd-skin-light .tpd-close {
   color: #fff;
}

/*-- Tootltip 1 --*/

.tootltips1--2 .dot1 {
   top: 21.5%;
   left: 24.8%;
}

.tootltips1--2 .dot2 {
   top: 50.9%;
   left: 15.4%;
}

.tootltips1--2 .dot3 {
   top: 44.8%;
   left: 92.9%;
}

.tootltips1--2 .dot4 {
   top: 14.5%;
   left: 78.9%;
}

.tootltips1--2 .dot5 {
   top: 77.5%;
   left: 59.9%;
}


/*=== FIN TOOLTIPS ===*/