.img-div-page{
    cursor: pointer;
    max-height: 90vh;
    max-width: 500px; 
}
.blur{
    height: 100vh; 
    overflow: auto;
    filter: blur(5px);
}
body{
    word-break: break-word;
}
.img-div-page img{
    max-height: 90vh;
    max-width: 100%;
}
.img-div-page video{
    max-height: 90vh;
    max-width: 100%;
}
#fluid_video_wrapper_my-video:-webkit-full-screen video{
    max-height: 100vh;
}
.categories-img{
    max-width: 100%;
}

.categories-img-ul{
    background: rgb(106, 28, 179);
    padding: 2%;
    border-radius: 5px;
}
.categories-img-ul li{
    list-style-type: circle;
    margin-left: 10%;
}
.img-div-page{
    width: 100%;
}
#popup {
    z-index: 1;
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    text-align:center;
    
}
#popup>div.wrapper {
    padding: 10px;
    position: absolute;
    top: 50%;
    left:0;
    right:0;
    transform: translateY(-50%);
    display:block;
    text-align:center
}
#popup button {
    width: 49%;
}
#popup .content {
    border-radius: 5px;
    padding: 20px;
    background:#292929;
    font-weight: 700;
    display:inline-block;
}
#popup .content form{
    display: inline;
}
@media (max-width: 430px){
    .categories-img{
        max-width: 100%;
    }
    .categories-img-ul{
        max-width: 100%;
    }
}
@media (min-width: 430px){
    .card-subtitle{
        max-width: 35vw;
    }
}
.choices__list{
    color: #000;
}
.img_zoom{
    height: 100vh;
    display:flex;justify-content:center;align-items:center;width:100%;
    position: absolute;
    z-index: 1;
    
}
.img_zoom_img{
    border: 5px solid rgba(0,0,0,0.7);
    display: inline;
    max-width: 90vw;
    max-height: 95vh;
}
.close_img{
    position: absolute;
    float: right;
}
.btn-red{
    margin-left: 0.4rem;   
    padding: 0.375rem 0.75rem;
    margin-bottom: 0.5rem; 
    color: white!important;
    background: #364d63;
}
.btn-cop{
    background: rgb(255, 33, 33);
}
.card-subtitle{
    margin-bottom: 0.9rem!important;
}
.original{
    justify-content: center;
    top:50%; 
    left: 50%;
    transform:translate(-50%, -50%);
    position: fixed;
    width: 100vw;
    height: 100vh;
}
.originalImage{
    max-width: 100%;
    max-height: 100vh;
    
}
.mainContainer{
    display: flex;
    justify-content: center;
}
.originalContainer{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    max-width: 100%;
    max-height: 100%;
}
.close {
    float: right;
    width: 2em;
    height: 2em;
    background: rgba(41,41,41, 0.6);
    clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
}
.original .views{
    cursor: pointer;
    border-radius: 0;
    padding: 1%;
}
.views{
    background: rgba(41,41,41, 0.2);
}
.original .views:hover{
    transition:0.3s;
    background: rgba(0, 0, 0, 0.6);
}
.original .views:hover .close{
    transform:rotate(90deg);
    transition:0.3s;
    background: rgb(48, 48, 48);
}
.vote{
    display: flex;
    align-items: center;
    height: 38px;
    margin-top: 3px;
}
.like-sticker{
    padding-right: 5px;
    font-size: 38px;
}
.info-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 5px;
}
#promo-popup {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 285px;
  height: 60px;
  background: #222;
  color: #fff;
  font-size: 17px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(47, 47, 47, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.5s ease;
}

#promo-popup.show {
  opacity: 1;
}

#promo-popup .close-btn {
  cursor: pointer;
  font-weight: bold;
  margin-left: 10px;
}