body{
    color: #FFF;
    background-color: #000;
    font-family: "Anton", sans-serif;
  font-style: normal;
}
.logo{
    margin-top: 25px;
    max-height: 128px;
}
.related{
    font-size: 1.2rem;
}
.search-btn{
    color: #f7971d;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
figure{
    cursor: pointer;
}
figcaption{
    color: #fff !important;
}
figcaption span{
    letter-spacing: 1px;
}
figcaption p{
    font-size: 1.1rem !important;
    margin-bottom: 5px;
}
.stats{
    color: #666666;
    display: block;
}
.stats i{
    font-size: 1.1rem;
}
.orange{
    color: #f7971d;
}
ul{
    list-style: none;
}
ul li{
    border: 1px solid #666666;
    display: inline;
    padding: 15px;
}
ul li a{
    color: #fff;
    font-size: 1.25rem;
    text-decoration: none;
}
ul li a:hover{
    color: #f7971d;
}
.active{
    color: #f7971d !important;
}

.adult-popup {
    font-family: Arial, sans-serif;
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 99999;
  }
  
  .popup-content {
    text-align: center;
    width: 600px;
    background: #000;
    box-shadow: 0 0px 78px 0 rgba(255, 255, 255, 0.2), 0 6px 20px 0 rgba(255, 255, 255, 0.19);

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    padding: 36px;
  }
  
  .popup-title {
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    line-height: 48px;
    color: #FFF;
  }
  
  .popup-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
  }
  
  .popup-action {
    min-width: 200px;
    padding: 15px;
    margin: 0 24px;
    font-size: 18px;
    line-height: 36px;
    outline: none;
    font-weight: bold;
    border-radius: 10px;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
  }
  
  .popup-action__negative {
    background-color: #525252;
  }
  
  .popup-action__negative:hover {
    background-color: #d5452b;
  }
  
  .popup-action__positive {
    background-color: #525252;
  }
  
  .popup-action__positive:hover {
    background-color: #f7971d;
  }