#form-subscribe {
    position: relative;
}

/* Prelaoder */
.preloader {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    background-color: rgba(255,255,255,0.6);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.preloader .pulse {
    margin-left: -40px;
    margin-top: 5%;
}
.preloader .pulse:before, .preloader .pulse:after {
    content: "";
    border: 5px solid #323232;
    width: 80px;
    height: 80px;
    border-radius: 500px;
    position: absolute;
}
.preloader .pulse:before {
    -webkit-animation: pulse-outer 0.8s ease-in infinite;
    animation: pulse-outer 0.8s ease-in infinite;
}
.preloader .pulse:after {
    -webkit-animation: pulse-inner 0.8s linear infinite;
    animation: pulse-inner 0.8s linear infinite;
}

@-webkit-keyframes pulse-outer {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
    }
    50% {
        opacity: 0.5;
        filter: alpha(opacity=50);
    }
    100% {
        opacity: 0;
        filter: alpha(opacity=0);
    }
}
@keyframes pulse-outer {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
    }
    50% {
        opacity: 0.5;
        filter: alpha(opacity=50);
    }
    100% {
        opacity: 0;
        filter: alpha(opacity=0);
    }
}
@-webkit-keyframes pulse-inner {
    0% {
        -webkit-transform: scale(0);
        opacity: 0;
        filter: alpha(opacity=0);
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 1;
        filter: alpha(opacity=100);
    }
}
@keyframes pulse-inner {
    0% {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
        opacity: 0;
        filter: alpha(opacity=0);
    }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
        filter: alpha(opacity=100);
    }
}

/* Notice */
.notice {
    position: relative;
    margin: 1em;
    background: #F9F9F9;
    padding: 1em 1em 1em 2em;
    border-left: 4px solid #DDD;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.125);
    margin: 15px 0;
}

.notice.info {
    border-color: #0074D9;
}

.notice.success {
    border-color: #2ECC40;
}
.notice.warning {
    border-color: #FFDC00;
}

.notice.error {
    border-color: #FF4136;
}

.btn__back {
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    color: #000000;
    text-decoration: underline;
    margin-top: 15px;
    display: block;

    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.btn__back:hover {
    text-decoration: none;
}

.audio__item .audio__item-image {
    max-width: 100px!important;
    width: 100%!important;
    height: auto!important;
    margin-right: 15px;
}

@media(max-width: 480px) {
    .audio__item .audio__item-image {
        max-width: 50px!important;
        margin-right: 10px;
    }
}

a.auth__link {
    text-decoration: underline;
    color: #000;
}

a.auth__link:hover {
    text-decoration: none;
}

.disabled {
    pointer-events: none;
    cursor: none;
}

.subscription-radioBtn-wrap .radio-custom-wrap.disabled {
    opacity: 0.5;
}

.account-subscription {
    position: relative;
}

.subscribe__change-button {
    margin-left: 0;
    margin-top: 40px;
    display: none;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.subscribe__change-button:hover {
    border-bottom-color: var(--clr-pink);
}

.subscribe__change-button.active {
    display: block;
}

.hidden__paginate {
    pointer-events: none;
    display: none!important;
    visibility: hidden;
    opacity: 0;
}

.author__search {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.author__search-title {
    margin-right: 10px;
}

.author__search-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.author__search-list li {
    margin-right: 10px;
}

.author__search-list a {
    font-size: 13px;
    color: #000;
}
.author__search-list a:hover {
    text-decoration: underline;
}
.article__wrap {
    position: relative;
}

/* Topic */
.topic__content {
    display: block;
    border: none;
    height: 100vh;
    width: 100%;
}

span.close__notice {
    font-size: 18px;
    font-weight: 700;
    position: absolute;
    top: 0;
    right: 5px;
    opacity: 0.7;
    cursor: pointer;
}

.blur__menu {
    pointer-events: none;
    opacity: 0.5;
    cursor: none;
    -webkit-filter: blur(1px);
    filter: blur(1px);
}

.account-wrapper .nice-select-dropdown .list li.disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: none;
    -webkit-filter: blur(1px);
    filter: blur(1px);
}

.just-validate-error-field {
    border-bottom: 3px solid var(--clr-error)!important;
}

.just-validate-error-label {
    position: absolute;
    margin-top: 2px;
    top: 100%;
    right: 0;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2em;
    color: var(--clr-error)!important;
    transition: var(--def-transition);
}

.null__border {
    border: 1px solid var(--clr-black);
}

.account-subscription-list:not(:last-child) {
    border-bottom: 3px solid #000000;
    padding-bottom: 15px;
}

.menu-card h3::first-letter,
.card-item h3:first-letter {
    text-transform: uppercase;
}

.maybe__search {
    margin-bottom: 30px;
}

.maybe__search-title {
    font-weight: 700;
    margin-right: 5px;
}

.maybe__search-result {
    text-decoration: underline;
}

.maybe__search-result:hover {
    text-decoration: none;
    cursor: pointer;
}

/* Search filter */
.search__filter {
    display: flex;
    align-items: center;
}

.search__filter-title {
    font-family: var(--acc-font);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.18em;
    text-transform: uppercase;
    margin-right: 5px;
}

.search__filter-list {
    display: flex;
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
}

.search__filter-item {
    width: max-content;
    margin: 0px 5px;
    cursor: pointer;
}

.search__filter-item.active,
.search__filter-item:hover {
    text-decoration: underline;
}

.search__item.hidden {
    display: none!important;
}

.button__loadmore {
    display: block;
    margin: 40px auto;
}

/* Voice button */
.voice__recorder {
    display: grid;
    align-items: center;
    grid-template-columns: 3fr 1fr;
    margin-top: 5px;
    grid-gap: 15px;
}

.voice__recorder-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.voice__recorder-buttons button {
    padding: 5px;
    font-size: 15px;
    margin-right: 5px;
}

.voice__recorder-buttons button:first-child {
    max-width: 80px;
}

.voice__recorder-buttons button:last-child {
    max-width: 64px;
    margin-right: 0;
}

.voice__recorder-info {
    font-family: var(--acc-font);
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
}

.article-head-media-wrap.no__resize::before {
    display: none;
}

.article-head-media-wrap.no__resize .article-head-media-el {
    position: initial;
}
