@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif !important;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

input:focus,
textarea:focus,
select:focus,
button:focus,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
button:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.pswp__zoom-wrap {
  max-width: none;
  width: auto !important;
  height: 80vh !important;
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

.pswp {
  --pswp-placeholder-bg: transparent !important;
}

.pswp img {
  max-width: none;
  width: auto !important;
  height: 80vh !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
}

::selection {
  color: white;
  background: #B4000A;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

svg,
video,
iframe {
  max-width: 100%;
}

/*Scroll bar*/
::-webkit-scrollbar {
  width: 0.5em;
}

/*scroll bar šoupatko*/
::-webkit-scrollbar-thumb {
  background-color: #B4000A;
}

/*Pozadí scrollbaru*/
::-webkit-scrollbar-track {
  background-color: #292929;
}

::-webkit-scrollbar-thumb:hover {
  background-color: gray;
}

.site-toast {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 1200;
  background: #292929;
  color: white;
  border-left: 4px solid #B4000A;
  min-width: 19rem;
  max-width: min(24rem, 100vw - 2rem);
  padding: 0.8rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
  opacity: 0;
  transform: translateY(-0.6rem);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.site-toast > i {
  color: #B4000A;
  font-size: 1rem;
  flex-shrink: 0;
}

.site-toast span {
  display: block;
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.3;
  flex: 1;
}

.site-toast .site-toast__close {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  width: 1.4rem;
  height: 1.4rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.site-toast .site-toast__close:hover {
  color: white;
}

.site-toast--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media only screen and (max-width: 700px) {
  .site-toast {
    top: 0.85rem;
    left: calc(clamp(0.8rem, 4vw, 1.5rem) - 0.12rem);
    right: calc(clamp(0.8rem, 4vw, 1.5rem) - 0.12rem);
    max-width: none;
    min-width: 0;
    padding: 0.72rem 0.75rem;
  }

  .site-toast span {
    font-size: 0.86rem;
  }
}

/*# sourceMappingURL=global.css.map */
