.detail_page {
  min-height: 100vh;
  font-size: 16px;
  display: flex;
  align-items: center;
  animation: fade_in 500ms ease-out forwards;
}

.detail_page .screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  cursor: pointer;
}

.detail_page.fade_out {
  animation: fade_out 500ms ease-out forwards;
  pointer-events: none;
}

.detail_page.visible {
  display: block;
}

.detail_page .wrapper {
  margin-left: auto;
  height: 100vh;
  width: 450px;
  max-width: 100%;
  overflow-y: auto;
  background: #000;
  box-shadow: 0 0 20px rgba(0,0,0,0.25);
  color: #fff;
  position: relative;
}

.detail_page .wrapper:after {
  clear: both;
  content: " ";
  height: 0;
  display: block;
}

.detail_page .video {
  margin-top: 80px;
  width: 100%;
  height: auto;
  background: #ccc;
}

.detail_page .image {
  display: block;
  margin-top: 80px;
  width: 100%;
  height: auto;
  background: #ccc;
}

.detail_page .text_cont {
  margin: 20px;
}

@media (max-width: 1200px) {
  .detail_page .text_cont {
    width: auto;
  }
}

.detail_page .title {
  font-size: 20px;
  font-family: "Libre Baskerville";
  font-weight: 700;
  margin-top: 40px;
}

.detail_page .text {
  margin-top: 40px;
  line-height: 1.4;
  margin-top: 40px;
  color: #ccc;
}

.detail_page .close {
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
  width: 44px;
  height: 44px;
  background: url('/static/images/close_round_white.svg') center/contain no-repeat;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .detail_page .close {
    position: fixed;
  }
}

.detail_page .vol_video {
  float: left;
  margin: 40px;
  width: 500px;
  height: 400px;
  background: #ccc;
}

.detail_page .button_base {
  display: inline-flex;
  gap: 10px;
  margin-top: 30px;
  align-items: center;
  vertical-align: middle;
  font-weight: 400;
  color: #000;
  background: #fff;
  padding: 11px 20px 12px;
  border-radius: 40px;
  font-size: 15px;
  text-decoration: none;
}

.detail_page .button_icon {
  width: 16px;
  height: 16px;
}
