/* Základný štýl pre tlačidlá s pulz efektom */

.button-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.buttonPULSEred .button-icon,
.buttonPULSEblack .button-icon,
.buttonPULSEwhite .button-icon {
  height: 28px;
  width: auto;
  margin-right: 8px;
  vertical-align: middle;
}

.buttonPULSEred,
.buttonPULSEblack,
.buttonPULSEwhite {
  box-sizing: border-box;
  padding: 12px 5vw;
  font-size: 16px;
  border-radius: 32px;
  transition: 0.4s ease;
  cursor: pointer;
  display: inline-block;
  min-width: 120px;
  max-width: 100%;
  text-align: center;
  white-space: nowrap;
  z-index: 1;
  text-decoration: none !important;
}

@media (max-width: 960px) and (min-width: 768px) {
  .buttonPULSEred,
  .buttonPULSEwhite,
  .buttonPULSEblack {
    padding: 10px 8vw;
    font-size: 14px !important;
  }
}

@media (max-width: 767px) {
  .buttonPULSEred,
  .buttonPULSEwhite,
  .buttonPULSEblack {
    font-size: 12px !important;
  }
}

.buttonPULSEred {
  background-color: #f80120;
  color: white !important;
  border: 2px solid transparent;
  box-shadow: 0 0 0 rgba(248, 1, 32, 0.6);
  animation: pulseRed 2s infinite;
  text-decoration: none !important;
}

.buttonPULSEblack {
  background-color: black !important;
  color: white !important;
  border: 2px solid transparent;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.6);
  animation: pulseBlack 2s infinite;
  text-decoration: none !important;
}

.buttonPULSEwhite {
  background-color: white !important;
  color: black !important;
  border: 2px solid transparent;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0.6);
  animation: pulseWhite 2s infinite;
  text-decoration: none !important;
}

.buttonPULSEred:hover {
  background-color: #bb0101;
}

.buttonPULSEblack:hover {
  background-color: grey !important;
  color: white !important;
}

.buttonPULSEwhite:hover {
  background-color: black !important;
  color: white !important;
}

@keyframes pulseRed {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(248, 1, 32, 0.6);
  }
  70% {
    transform: scale(1.03);
    box-shadow: 0 0 0 10px rgba(248, 1, 32, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(248, 1, 32, 0);
  }
}

@keyframes pulseBlack {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.6);
  }
  70% {
    transform: scale(1.03);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

@keyframes pulseWhite {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  }
  70% {
    transform: scale(1.03);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
