*,
*::before,
*::after {
  box-sizing: border-box;
  font: inherit;
}

html {
  width: 100vw;
  height: 100vh;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  scroll-behavior: smooth;
}
html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  text-rendering: optimizeSpeed;
  backface-visibility: hidden;
  width: 100vw;
  height: 100vh;
}

p {
  margin: 0 0 20px 20px;
}

div,
span,
a,
i,
p,
strong,
b,
h1,
h2,
h3,
h4,
h5,
h6,
section,
article,
header,
footer,
ul,
li {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
}

.hide {
  display: none !important;
}

.fadein {
  opacity: 1 !important;
}

.fadeout {
  opacity: 0 !important;
}

.show {
  display: flex !important;
}

.noabs {
  position: relative;
}

a,
a:hover,
a:focus,
a:active {
  outline: none;
  text-decoration: none;
}

main {
  transform-origin: left top;
  overflow: hidden;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.video_wrapper {
  overflow: hidden;
}
.video_wrapper > * {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.menu {
  position: absolute;
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.menu li {
  width: 46px;
  height: 46px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

button {
  position: absolute;
  border: none;
  background: transparent;
  min-width: 46px;
  min-height: 46px;
}

.slide__next {
  top: calc(50% - 58px);
  right: 0;
}

.slide__prev {
  top: calc(50% - 58px);
  left: 0;
}

.popup {
  position: absolute;
  z-index: 99;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  left: 20px;
  top: 20px;
  background-color: transparent;
  background-size: cover;
  border-radius: 20px;
  display: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.popup .popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  cursor: pointer;
}
.popup .popup__close svg {
  fill: red;
}
.popup .popup__content {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 40px;
  overflow-y: auto;
}

.debug main {
  outline: 1px solid red;
}
.debug button {
  background: rgba(255, 0, 0, 0.5);
  outline: 1px solid white;
  cursor: pointer;
  color: white;
}
.debug .menu li {
  background: rgba(255, 0, 0, 0.5);
  outline: 1px solid white;
  color: white;
  cursor: pointer;
}
.debug .popup__close {
  background: rgba(255, 0, 0, 0.5);
  outline: 1px solid white;
}

.debug.debug--hide main {
  outline: none;
}
.debug.debug--hide button {
  opacity: 0;
}
.debug.debug--hide .menu li {
  opacity: 0;
}
.debug.debug--hide .popup__close {
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.container {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 800px;
  height: 450px;
  transform: translate(-50%, -50%);
  display: none;
}

.container.show {
  display: block;
  animation: fadeIn 0.5s ease-in;
}

.video {
  z-index: 9999;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 800px;
  height: 450px;
  background-position: left top;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
}

.button--video {
  top: 318px;
  left: 322px;
  width: 720px;
  height: 420px;
  cursor: default !important;
}/*# sourceMappingURL=style.css.map */