/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:ital,wght@0,300;0,700;1,300&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans Condensed', sans-serif;
  background: #000;
} */

#videoPopupContent {
  position: fixed;
  bottom: 40px;
  right: 40px;
  font-size: 22px;
  width: 350px;
  height: 330px;
  background: #df0023;
  color: white;
  cursor: pointer;
  display: none;
  /* display: block; */
  z-index: 9999;
}

.contentTitleBlock {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.showBlock {
  display: block !important;
  animation: fadeIn 2s;
  -webkit-animation: fadeIn 2s;
  -moz-animation: fadeIn 2s;
  -o-animation: fadeIn 2s;
  -ms-animation: fadeIn 2s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.contentTitle {
  font-size: 30px;
  margin: 0;
  padding: 5px 15px 5px 15px;
  background: #fff;
  width: 135px;
  color: #000;
  vertical-align: middle;
}

.videoContent {
  display: flex;
  flex-direction: column;
  padding: 20px 10px;
  margin: 0;
  height: 100%;
  gap: 15px;
  justify-content: center;
}

.videoContent .videoTitle {
  margin: 0;
  font-size: 15px;
  text-align: center;
  line-height: 1.2;
}

#exitButton {
  position: absolute;
  z-index: 999;
  right: 10px;
  color: #fff;
  border: none;
  font-size: 30px;
  background-color: transparent;
  cursor: pointer;
  border: 0;
}

@media only screen and (max-width: 1120px) {
  .showBlock {
    display: none !important;
  }
}

