.hidden{
    display: none !important;
}

.crypt-email:after { 
    content: attr(data-name) "@" attr(data-domain) "." attr(data-tld);
}

*::-webkit-input-placeholder {
    color: #052229;;
    opacity: 1;
  }
  
  *:-moz-placeholder {
    color: #052229;;
    opacity: 1;
  }
  
  *::-moz-placeholder {
    color:  #052229;;
    opacity: 1;
  }
  
  *:-ms-input-placeholder {
    color: rgba(72, 68, 62, 0.76);
    opacity: 1;
  }

  .b-index._active .b-index-content {
    background: #052229;
  }

.popular-article{

    position: fixed;
    z-index: 50;
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    right: 0;
    width: 100%;
    max-width: 360px;
    bottom: 160px;
    padding: 15px;
    border-radius: 3px 0 0 3px;
    background-color: #fff;
    border: solid 1px #e2dfdd;
    box-shadow: 0 1px 1px 0 rgb(0 0 0 / 10%);
    transition: all .5s;
}
.popular-article__title{
    margin: 0;
    padding: 0;
    font-size: 22px;
    font-family: din-pro;
    margin-bottom: 10px;
}
.popular-article__item{
    padding: 10px 0;
}
.popular-article__link{
    text-transform: uppercase;
    color:var(--green);
    display: block;
    max-width: 80%;
    font-family: 'roboto', sans-serif;
    font-size: 13px;
}
.popular-article__item:not(:last-child){
    border-bottom:1px solid rgb(226, 223, 221);
}
.popular-article__close{
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}
.popular-article__close:before,
.popular-article__close:after{
    content: '';
    position: absolute;
    top: 4px;
    right: -3px;
    width: 12px;
    height: 12px;
    border: solid 2px #222;
    border-radius: 1px;
    border-right: none!important;
    border-bottom: none!important;
}
.popular-article__close:before {
    transform: rotate(315deg)
}

.popular-article__close:after {
    right: 11px;
    transform: rotate(135deg)
}
.popular-article.open{
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


@media only screen
and (min-device-width: 375px)
and (max-device-width: 812px)
and (-webkit-min-device-pixel-ratio: 3)
and (orientation: portrait) {
    .popular-article {
        max-width: 260px;
    }

    .mobile {
        justify-content: center !important;
    }

    .hide {
        display: none;
    }


}