.guide-tooltip {
  position: absolute;
  background: #fff;
  border: 0.5px solid #333;
  border-radius: 5px;
  padding: 15px;
  z-index: 10003;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  max-width: 400px;
}
.guide-tooltip .close {
  color: #3498db;
  transform: scale(1.5);
  position: relative;
  bottom: 20px;
  right: -20px;
  top: unset;
  left: unset;
}
.guide-tooltip .close:hover {
  color: red;
  transform: scale(1.5);
  position: relative;
  bottom: 20px;
  right: -20px;
}
.guide-tooltip .close:active {
  color: #3498db;
  transform: scale(1.5);
  position: relative;
  bottom: 20px;
  right: -20px;
}
.guide-tooltip .title {
  font-weight: bold;
  margin-bottom: 10px;
  font-family: Montserrat;
  text-align: left;
}
.guide-tooltip .body {
  text-align: left;
  font-family: Montserrat;
}
.guide-tooltip .buttons {
  margin-top: 10px;
  text-align: right;
}
.guide-tooltip .buttons button {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 16px;
  width: 95px;
  height: 40px;
}
.guide-tooltip .guideManage {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 12px;
  padding: 0 12px;
}
.guide-tooltip .guideManage a {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 12px;
  color: #083D77;
  cursor: pointer;
  display: inline-block;
  transition: transform 0.2s ease-in-out;
}
.guide-tooltip .guideManage a:hover {
  transform: scale(1.05);
}
.guide-highlighted {
  outline: 3px solid #0D86D9 !important;
  border-radius: 4px !important;
  position: relative;
  z-index: 10002 !important;
  animation: pulseHighlightStrong 1.5s ease-in-out infinite !important;
}
@keyframes pulseHighlightStrong {
  0% {
    box-shadow: 0 0 0px 0 rgba(13, 134, 217, 0.8), 0 0 0px 0 rgba(13, 134, 217, 0.6);
  }
  50% {
    box-shadow: 0 0 8px 4px rgba(13, 134, 217, 0.6), 0 0 15px 6px rgba(13, 134, 217, 0.4);
  }
  100% {
    box-shadow: 0 0 0px 0 rgba(13, 134, 217, 0.8), 0 0 0px 0 rgba(13, 134, 217, 0.6);
  }
}
.guide-element-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}
#guideBtn {
  margin-right: 30px;
  height: 32px;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  padding: 6px 12px;
  border: none !important;
}
#guideBtn.hidden {
  display: none;
}
#guideBtn .icons {
  transform: rotate(-90deg);
  color: #083D77;
}
#guideBtn span {
  margin-left: 10px;
  color: #083D77;
}
#guideBtn:hover .icons {
  color: #fff;
}
#guideBtn:hover span {
  color: #fff;
}
.guides-popup {
  max-width: 550px;
  /* Confirm bude jako třetí */
  /* Deny bude jako druhé */
  /* Cancel bude jako první */
}
.guides-popup .order-confirm {
  order: 1;
}
.guides-popup .order-deny {
  order: 3;
}
.guides-popup .order-cancel {
  order: 2;
}
