.react-responsive-modal-root {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.react-responsive-modal-overlay {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.react-responsive-modal-container {
  height: 100%;
  outline: 0;
  overflow-x: hidden;
  overflow-y: auto;
  text-align: center;
}

/* Used to trick the browser to center the modal content properly  */
.react-responsive-modal-containerCenter:after {
  width: 0;
  height: 100%;
  content: '';
  display: inline-block;
  vertical-align: middle;
}

.react-responsive-modal-modal {
  max-width: 800px;
  display: inline-block;
  text-align: left;
  vertical-align: middle;
  background: #ffffff;
  box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.25);
  margin: 1.2rem;
  padding: 1.2rem;
  position: relative;
  overflow-y: auto;
}

.react-responsive-modal-closeButton {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
  display: flex;
}

@keyframes react-responsive-modal-overlay-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes react-responsive-modal-overlay-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes react-responsive-modal-modal-in {
  0% {
    transform: scale(0.96);
    opacity: 0;
  }
  100% {
    transform: scale(100%);
    opacity: 1;
  }
}

@keyframes react-responsive-modal-modal-out {
  0% {
    transform: scale(100%);
    opacity: 1;
  }
  100% {
    transform: scale(0.96);
    opacity: 0;
  }
}

div.playVideoModal {
  position: absolute;
  left: 50%;
  top: 50%;
  min-width: 632px;
  /* max-height: 80vh; */
  height: 59vh;
  overflow: auto;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  background: #ffffff;
  z-index: 3;
  /* padding-bottom: 140px; */
  /* overflow: hidden; */
}
div.playVideoModal.hide {
  display: none;
}
div.playVideoModal__header {
  position: sticky;
  top: 0;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f2f2f2;
  background: #ffffff;
  z-index: 4;
}
div.playVideoModal__header .right {
  margin-left: auto;
}
div.playVideoModal__header .right.close {
  font-size: 20px;
  line-height: 32px;
  text-decoration: none;
}
div.playVideoModal__header i.dropdown {
  margin-left: 8px;
  font-size: 16px;
  line-height: 32px;
}
div.playVideoModal__body {
  padding: 1.25rem;
  overflow: auto;
}