<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.mainHeader {
  position: relative;
  width: 100%;
  height: 60px;
  /* background-color: rgb(141, 55, 167); */
  background-color: #7800b9;
  display: flex;
}

.newsContainer {
  display: flex;
  justify-content: center;
  color: #e7e8ea;
}

.newsDiv {
  max-width: 600px;
  /* text-align: justify; */
}

.sideAdDiv {
  padding: 30px;
  height: 260px;
  width: 310px;
}

.midIframe {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 280px;
}


.highlight {
  background-color: #e7e8ea;
  background-image: linear-gradient(to right, #e7e8ea 0%, #e7e8ea 100%);
  line-height: 1.5em;
}

.backBtn {
  /* position: fixed; */
  height: 50px;
  width: 70px;
  border-radius: 10%;
  border: none;
  color: #7800b9;
  margin: 5px;
  cursor: pointer;
}

.backBtn:hover {
  outline: 1px solid white;
  background-color: #7800b9;
  color: white;

}

.backArrow {
  font-size: 35px;
}

.viewChanger {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 0);
  height: 40px;
  background-color: #aaa9a9;
  width: 125px;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  margin: 0px;
  padding: 0px;
}

.mobileIcon {
  font-size: 38px;
  color: #7800b9;
}

.mobileIconDiv {
  width: 50%;
  height: 100%;
  text-align: center;
}

.desktopIcon {
  font-size: 38px;
  color: #7800b9;
}

.desktopIconDiv {
  width: 50%;
  height: 100%;
  text-align: center;
}

.activeView {
  background-color: #e0e2e3;
  color: white;
  cursor: default;
}

.notActiveView {
  cursor: pointer;
}

.mobileContainer {
  width: 360px;
  position: relative;
}

.mobileMainContainer {
  background-color: #e7e8ea;
  padding-top: 10px;
  padding-bottom: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.mobileNewsContainer{
  width: 317px;
  height: 632px;
  background-color: #fff;
  position: absolute;
  top: 71px;
  /* opacity: .5; */
  left: 21px;
  border-bottom-right-radius: 40px;
  border-bottom-left-radius: 40px;
  /* border-bottom-right-radius: 42px;
  border-bottom-left-radius: 36px; */
  overflow-y: scroll;
  overflow-x: hidden;
  padding-left: 6px;
  color: #e7e8ea;
}

::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 2px grey; 
  border-radius: 10px;
  margin-bottom: 24px
}

.newsDiv{
  color: #e7e8ea;
}

.videoContainer{
  width: 100%;
}
.videoContainer &gt; video{
  width: 100%;
}

video::-webkit-media-controls-play-button { display: none; }

video::-webkit-media-controls-volume-slider { display: none; }

video::-webkit-media-controls-mute-button { display: none; }

video::-webkit-media-controls-timeline { display: none; }

video::-webkit-media-controls-current-time-display { display: none; }
video::-webkit-media-controls-time-remaining-display{display: none;}
video::-webkit-media-controls-fullscreen-button {
  display: block;
}</pre></body></html>