:root{
  --bs-dark: #212529;
}
.theme-container {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}
.theme-container:hover {
  opacity: 0.8;
}
.shadow-dark {
  background: linear-gradient(145deg, #23282c, #1e2125);
}
.shadow-light {
  box-shadow: 7px 7px 15px -10px #bbcfda, -4px -4px 4px #ffffff,
  inset 7px 7px 3px rgba(209, 217, 230, 0.35),
  inset -1px -1px 3px rgba(255, 255, 255, 0.3)
}
@keyframes change {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.4);
  }
}
.change {
  animation-name: change;
  animation-duration: 1s;
  animation-direction: alternate;
}
body{
  background-color: white !important;
}
header{
  padding-top: 25px;
}
main{
  padding: 5px;
  padding-top:50px;
  padding-bottom: 200px;
}
footer{
  position: fixed;
  z-index: 99;
  width: 100%;
  height: 125px;
  background-color: transparent;
  bottom:0;
  left:0;
}
.background-logo{
  position: fixed;
  width: 540px;
  height: 540px;
  top:calc(50% - 270px);
  left:calc(50% - 270px);
}
#sec{
  position: fixed;
  top:0px;
  left:0;
  z-index: 99;
  width: 100%;
  height: 100%;
  background-color: #000000a1;
}

.preview-div{
  display: none;
  position: fixed;
  width: 100%;
  height:100%;
  background-color: #000;
  top:0;
  left:0;
  z-index:999;
}
.preview-top, .preview-bottom{
  position: fixed;
  left:0;
  width: 100%;
  height: 40px;
  background:#222;
  text-align: center;
  padding: 10px;
  font-size: 18px;
  box-sizing: border-box;
  color:#fff;
}
.preview-top{
  top:0;
}
.preview-bottom{
  top: calc(100% - 50px);
  width: 90%;
  background: #111;
  left: 5%;
}
.preview-middle{
  position: fixed;
  left:0;
  top:40px;
  width: 100%;
  height: calc(100% - 40px);
  background:#111;
  text-align: center;
  padding: 20px;
  font-size: 18px;
  box-sizing: border-box;
  color:#fff;
}
.img-preview{
  position: absolute;
  border-radius: 15px;
  width:90%;
  left : 5%;
  height: calc(100% - 80px);
  background: rgb(10 14 14 / 70%);
  background-size: cover;
}
.preview-chat-div{
  width: calc(100% - 50px);
  text-align: right;
  height: 55px;
  border-radius: 20px;
  position: absolute;
  bottom:20px;
  background-color: #131719;
  box-sizing: border-box;
  padding-right: 25px;
  padding-top: 10px;
}
.like-count-div{
  width: 20px;
  height: 20px;
  border-radius: 50%;
  box-sizing: border-box;
  padding-top: 3px;
  position: absolute;
  font-size:12px;
  bottom:-25px;
  background-color: #fff;
  margin: 50%;
  color:#000;
  border: 1px solid black;
}
#mobile-view{
  display:none;
  padding-bottom:70px;
  position: fixed;
  top:75px;
  left:0;
  width: 100%;
  height: calc(100% - 150px);
  overflow: scroll;
  box-sizing: border-box;
  padding: 25px;
  padding-top: 50px;
}
#desktop-view{
  color:#fff !important;
  padding-bottom:70px;
  position: fixed;
  top:150px;
  left:0;
  width: 100%;
  height: calc(100% - 200px);
  overflow-y: scroll;
  box-sizing: border-box;
  padding: 30px;
  padding-top: 0px;
  -ms-overflow-style: none;  /* IE and Edge */
 scrollbar-width: none;  /* Firefox */
}
#desktop-view::-webkit-scrollbar {
    display: none;
}
@media only screen and (max-device-width: 1024px) {
    footer{
      border-top : 1px solid black;
      padding-top : 0;
    }
    #rl-div{
      margin: 5px!important;
    }
    /* STYLES HERE */
    input,
    input::-webkit-input-placeholder {
      font-size: 25px;
      line-height: 4;
    }
    .popover-body{
      font-size:14px;
    }
    .menu-item{
      padding-top: 0px;
    }
}
