

/* Анимация */
@keyframes anima {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Скроллбар */
::-webkit-scrollbar {
    position: absolute;
    width: 14px;
    background-color: #242424;
}
::-webkit-scrollbar-thumb {
    border: 3px solid #242424;
    border-radius: 10px;
    background-color: #363738;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #6A6C6D;
}
::-webkit-scrollbar-corner {
    background-color: #242424;
    border-color: #242424;
}

/* Основные теги */
body {
    margin: 0px;
    top: 0 !important;
    
    background-color: #191919;
}
a {
    color: #FFF;
    text-decoration: none;
}
p {
    margin: 0;
}
li, ul {
    margin: 0;
    padding: 0;
    
    list-style-type: none;
}
hr {
    width: 100%;
    height: 0.5px;
    border: 0;
    background-color: #6A6C6D;
}
h1, h6 {
    margin: 0;
    
    font-family: Roboto-Regular;
    font-size: 22px;
    font-weight: normal;
}
h2, h6 {
    margin: 0;
    
    font-family: Roboto-Regular;
    font-size: 13px;
    font-weight: normal;
}

/* Шапка */
header {
    position: relative;
    
    width: 100%;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    
    font-family: Roboto-Regular;
    word-spacing: 2px;
    letter-spacing: 0.5px;
    
    animation: anima 0.7s;
}

/* Блок для центрирования */
#header_box {
    margin: 0 20px 20px 20px;
    width: 1200px;
    border-radius: 0 0 5px 5px;
    background-color: #363738;
    box-shadow: 0 0 5px -3px #000000;

    display: flex;
    flex-direction: column;
}
#header_box h1, h4, h3 {
    display: none;
}

/* Задний фон */
#header_background {
    width: 100%;
    height: 200px;
    background-image: url(../img/header/header_background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Логотип в шапке */
#header_logo {
    width: 300px;
}

/* Навигация сайта*/
nav {
    position: relative;
    padding: 10px;
    box-sizing: border-box;
    
    width: 100%;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Кнопка меню */
#menu-triger {
    position: absolute;
    display: none;
    
    margin: 0px 0 0 10px;
    left: 0;
    
    min-width: 25px;
    height: 23px;
    background: url(../img/header/menu/mobile_menu/menu_open.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}

/* Выпадающее меню */
#menu-popup {
    z-index: 3;
    display: flex;
}

/* Кнопка закрытия меню */
#menu-close {
    display: none;
    z-index: 4;
    position: sticky;
    top: 15px;
    margin: 0 0 -20px 101%;
    
    width: 25px;
    height: 25px;
    border-radius: 15px;
    background-color: #363738;
    background-image: url(../img/header/menu/mobile_menu/menu_close.svg);
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: center;
    box-shadow: 0 0 5px -2px #000000;
}

/* Разделы */
.link_button {
    border-radius: 3px;
    
    min-height: 30px;
    
    font-size: 15px;
    
    transition: 0.1s;
}
.link_button:hover {
    background-color: #535557;
}
.link_button a {
    padding: 2.5px 12px 2.5px 6px;
    box-sizing: border-box;
    
    width: 100%;
    height: 30px;

    display: flex;
    align-items: center
}

/* Иконки */
.header_img {
    margin: 0 8px 0 0;

    height: 25px;
}
.theporndude_img {
    margin: 3px 5px 3px 2px;

    width: 20px;
    height:  20px;

    filter: grayscale(100%);
}

/* Сортировка (блок с языками, переводчиками, студиями и категориями) */
#menu_sorting {
    position: absolute;
    margin: 376px 0 0 0;
    right: 0;
    width: 250px;
}
#menu_sorting .donut_button {
    display: none;
    margin: 0;
    padding: 6px;
    
    border-radius: 3px;
    background-color: transparent;
    
    font-size: 14px;
}
#menu_sorting .donut_button:hover {
    background-color: #535557;
}
#menu_sorting hr {
    display: none;
}
.sorting_box {
    margin: 0 0 20px 0;
    padding: 10px;
    box-sizing: border-box;
    
    width: 250px;
    border-radius: 5px;
    background-color: #242424;
    box-shadow: 0 0 5px -3px #000000;
    
    font-size: 13px;
    word-spacing: 0;
}
.sorting_name {
    margin: 0 0 10px 0;
    color: #FFF;
}
.sorting_item {
    margin: 6px 0 0 0;
    
    min-height: 27px;
    max-height: 27px;
    border-radius: 3px;
    background-color: #363738;
    
    font-size: 14px;
    
    transition: 0.1s;
}
.sorting_item:hover {
    background-color: #535557;
}
.sorting_item a {
    display: block;

    padding: 5px 10px;
    box-sizing: border-box;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
}

/* Языковые картинки */
.lang_img {
    margin: 0 10px 0 0;
    
    width: 20px;
}

/* Поисковая строка */
#search-block {
    width: 230px;
    height: 30px;
    border-radius: 3px;
    
    display: flex;
    align-items: center;
}
#input-search {
    padding: 8px 65.5px 8px 15px;
    box-sizing: border-box;
    
    width: 230px;
    height: 30px;
    border: 0px;
    border-radius: 3px;
    background-color: #535557;
    outline: none;
    
    font-family: Roboto-Medium;
    font-size: 13px;
    color: #FFF;

    transition: 0.1s
}
#input-search:focus {
    background-color: #6A6C6D;
}
input::placeholder {
    color: #AAAAAA;
}
input:focus::placeholder {
    color: transparent;
}
#search_button {
    margin: 2.5px 12.5px 2.5px -52.5px;
    
    min-width: 50px;
    height: 25px;
    border-radius: 3px;
    
    background-color: #242424;
    background-image: url(../img/header/menu/search_1.svg);
    background-repeat: no-repeat;
    background-size: 25%;
    background-position: center;
    
    border: 0;
    cursor: pointer;
}
#search_button:hover {
    background-image: url(../img/header/menu/search_2.svg);
}

/* Ссылки на Telegram и ВКонтакте */
#social_networks {
    display: none;
    
    margin: 0 0 20px 0;
    
    width: 267px
}
#social_networks2 {
    display: none;
    
    margin: 0 0 10px 0;
    
    width: 267px
}
.social_networks_button {
    box-sizing: border-box;
    
    border-radius: 5px;
    background-color: #363738;
    transition: 0.2s;

    font-family: Roboto-Regular;
    font-size: 15px;
}
.social_networks_button2 {
    box-sizing: border-box;
    margin-left: 73px;
    border-radius: 5px;
    background-color: #363738;
    transition: 0.2s;

    font-family: Roboto-Regular;
    font-size: 15px;
}
header .social_networks_button {
    box-shadow: 0 0 5px -3px;
}
.social_networks_button a {
    display: block;
    padding: 6px 12px 6px 6px;
    box-sizing: border-box;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
}
.social_networks_button:hover {
    background-color: #535557;
}
.social_networks_button2 a {
    display: block;
    padding: 6px 12px 6px 6px;
    box-sizing: border-box;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
}
.social_networks_button2:hover {
    background-color: #535557;
}
.social_logo {
    margin: 0 8px 0 0;
    width: 25px
}




/* Основной контент */
main {
    margin: 0 0 60px 0;
    
    width: 100%;
    
    font-family: Roboto-Regular;
    font-size: 15px;
    letter-spacing: 0.5px;
    color: #FFF;
    
    display: flex;
    justify-content: center;
    
    animation: anima 0.7s;
}

/* Блок для центрирования */
#main_box {
    margin: 0 20px;
    box-sizing: border-box;

    width: 100%;
    max-width: 1200px;

    display: flex;
    justify-content: space-between;
}

/* Левая колонка */
#left_column {
    width: 100%;
    
    display: flex;
    align-items: center;
    flex-direction: column;
}

/* Блок рекламы */
.horizontal_advertising_box {
    padding: 0 20px 20px 0;
    box-sizing: border-box;
    
    width: 100%;

    display: flex;
    justify-content: center;
}
.horizontal_advertising {
    box-sizing: border-box;
    
    width: 100%;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#block_1 {
    border-radius: 3px;
    overflow: hidden;
}
#block_2 {
    border-radius: 3px;
    overflow: hidden;
}
#block_3 {
    border-radius: 3px;
    overflow: hidden;
}
#block_4 {
    display: none;
    
    width: 100%;
    justify-content: center;
}

/* Кастомизация рекламы */
/* Example: */
.exontw-outer-container {
    visibility: visible;
}
.exontw-item {
    background-color: transparent;
}
.exontw-item-image {
    border-radius: 0px;
}
.exontw-item-title {
    text-shadow: 0 0 transparent;
    text-align: center;
}
.exontw-item-text {
    border: 0px none transparent;
    text-align: center;
}
.exo-native-widget-item-content {
    text-align: center;
}
.exo-native-widget-item-title {
    text-align: center;
    color: #FFF;
}
.exo-native-widget-item-text {
    text-align: center;
}
.exo-native-widget-item-brand {
    text-align: center;
    color: #FFF;
}

/* Сортировка по лайкам, просмотрам, дате */
#sorting_block_box {
    padding: 0 20px 20px 0;

    width: 100%;
    box-sizing: border-box;
    
    display: flex;
    flex-direction: column;
    align-items: center;
}
#sorting_block {
    position: relative;
    
    display: flex;
    flex-direction: column;
    align-items: center;
}
#sorting_triger {
    padding: 6px 16px;
    box-sizing: border-box;
    
    width: 100%;
    background-color: #363738;
    border-radius: 3px;
    box-shadow: 0 0 5px -3px #000000;
    
    
    word-spacing: 5px;
    
    display: flex;
    justify-content: center;
    
    cursor: pointer;
    
    transition: 0.1s;
}
#sorting_triger:hover {
    background-color: #535557;
}
#sorting {
    position: absolute;
    margin: 40px 0 0 0;
    
    width: 100%;
    
    display: flex;
    flex-direction: column;
    align-items: center;
}
#sorting_list {
    display: none;
    position: absolute;
    z-index: 2;
    padding: 5px 8px;
    box-sizing: border-box;
    
    width: 100%;
    border-radius: 3px;
    background-color: rgba(34, 34, 34, 0.95);
    box-shadow: 0 0 5px -3px #000000;
    
    backdrop-filter: blur(1px);
}
#sorting_list li {
    margin: 3px 0;
    
    border-radius: 3px;
    
    font-family: Roboto-Light;
    
    transition: 0.1s;
}
#sorting_list li:hover {
    background-color: #535557;
}
#sorting_list a {
    display: block;
    padding: 4px 8px;
    
    display: flex;
    align-items: center;
}
.sorting_img {
    margin: 0 10px 0 0;
    height: 11px;
}

/* Каталог комиксов */
#comix_directory {
    padding: 0 20px 0 0;
    box-sizing: border-box;
    
    width: 100%;
    
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Комикс */
.comix {
    margin: 0 0 20px 0;

    width: 23.4%;
    border-radius: 5px;
    background-color: #363738;
    box-shadow: 0px 0 5px -3px #000000;
    
    overflow: hidden;
    
    display: flex;
    flex-direction: column;

    transition: 0.2s;
}
.comix:hover {
    background-color: #464748;
}

.comix a:first-child {
    display: flex;
    flex-direction: column;
}

/* Ярлык обновления */
.renewal_box {
    position: absolute;
    z-index: 1;
    margin: 5px;
    padding: 2px 6px;
    
    background-color: #FF3347;
    border-radius: 3px;
}

/* Обложка */
.comix_img_box {
    position: relative;

    width: 100%;
    height: 100%;
    border-radius: 5px 5px 0 0;
    background-color: #535557;

    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.comix_img {
    width: 100%;
    transition: 0.2s;
    height: 145px;
}
.comix:hover .comix_img {
    transform: scale(1.1);
}

/* Название и статистика */
.comix_information_box {
    width: 100%;
    border-radius: 3px;
    
    display: flex;
    flex-direction: column;
}

/* Название */
.comix_title {
    padding: 8px 10px;
    box-sizing: border-box;
    
    width: 100%;
    min-height: 30px;
    
    font-size: 85%;
}
.comix_title p {
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Линии */
.comix hr {
    margin: 0;
}

/* Статистика */
.comix-info-set {
    padding: 5px 5px;
    box-sizing: border-box;
    
    width: 100%;
    background-color: rgba(36, 36, 36, 0.70);
    
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.comix-info-set li {
    height: 30px;
    
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.comix-info-set hr {
    width: 0.5px;
    height: 70%;
}
.information_box_img {
    height: 9px;
}
.cifra-info-set {
    font-size: 65%;
    
    display: flex;
    align-items: flex-end;
}

.tags_ul {
    display: block;
    padding: 10px 10px 2px 10px;
    box-sizing: border-box;
    
    width: 100%;
    
    font-size: 80%;
    
    display: flex;
    flex-wrap: wrap;
}
.tags_ul li {
    margin: 0 8px 8px 0;
    
    max-width: 100%;
    border: 0.5px solid rgba(255, 255, 255, 0.70);
    border-radius: 3px;
    
    font-family: Roboto-Light;
    
    transition: 0.2s;
}
.tags_ul li a {
    padding: 3px 5px;
    box-sizing: border-box;
    
    width: 100%;
    height: 100%;
    
    display: block;
}
.tags_ul li:hover {
    background-color: #363738;
}

/* Страницы */
#site_pages {
    padding: 15px 20px 35px 0;
    box-sizing: border-box;
    
    width: 100%;
    
    display: flex;
    justify-content: center;
    align-items: center;
}
.pstrnav_ul {
    font-size: 15px;
    
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.pstrnav_ul li {
    margin: 3px;
    
    min-width: 25px;
    height: 25px;
    
    letter-spacing: 0;
}
.pstrnav_ul a {
    padding: 0 6px;
    
    height: 100%;
    border-radius: 5px;
    background-color: #363738;
    box-shadow: 0 0 5px -3px #000000;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    transition: 0.1s;
}
.pstrnav_ul a:hover {
    background-color: #535557;
}
.pstrnav_ul a.psrt-active {
    background-color: #FF3347;
}
.pstrnav_ul a.pstr-prev {
    background-image: url(../img/main/arrow_prev.svg);
    background-size: 25%;
    background-repeat: no-repeat;
    background-position: center;
}
.pstrnav_ul a.pstr-next {
    background-image: url(../img/main/arrow_next.svg);
    background-size: 25%;
    background-repeat: no-repeat;
    background-position: center;
}
li.nav-piont {
    min-width: 2px;
}

/* Ещё комиксы */
#more_comics_directory {
    margin: 0 20px 0 0;
    
    border-radius: 5px;
    background-color: rgba(34, 34, 34, 0.95);
}
#more_comics_directory #comix_directory {
    margin: 0;
    padding: 10px 18px 0 18px;
}

/* Правая колонка */
#right_column {
    max-width: 250px;
}
#margin_box {
    margin: 3880px 0 0 0;
    
    width: 100%;
    height: 0.01px;
}
#right_column #more_comics_directory {
    margin: 0;
}
#right_column #comix_directory {
    flex-direction: column;
}
#right_column .comix {
    width: 100%;
}

/* Ссылки на Telegram и ВКонтакте */
main .social_networks_button {
    margin: 10px 0 0 0;
    
    background-color: #363738;
}
main .social_networks_button a {
    padding: 4px;
}
main .social_networks_button:hover {
    background-color: #535557;
}

/* Кнопка доната */
.donut_button {
    margin: 20px 0 0 0;
    padding: 10px;
    box-sizing: border-box;
    
    width: 100%;
    max-height: 35px;
    border-radius: 5px;
    background: #363738;
    cursor: pointer;

    font-family: Roboto-Regular;
    font-size: 14px;
    letter-spacing: 1px;
    color: #FFF;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: 0.2s;
}
.donut_button:hover {
    background: #535557;
}
.donut_button:last-child {
    margin: 10px 0 0 0;
}




/* Подвал сайта*/
footer {
    padding: 45px 0;
    
    width: 100%;
    background-color: #363738;
    box-shadow: 0 0 5px -3px #000000;
    
    font-family: Roboto-Light;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: #FFF;
    
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    
    animation: anima 0.7s;
}

/* Блок для центрирования */
#footer_box {
    margin: 0 20px;
    width: 1200px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Логотип в подвале */
#footer_logo {
    margin: 0 0 45px 0;
    
    width: 200px;
}

/* Главный блок подвала */
#footer_box_main {
    width: 100%;
    
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Блоки контента */
.footer_box_main_block {
    margin: 0 0 45px 0;
}

/* Заголовки */
.footer_heading {
    font-family: Roboto-Regular;
    font-size: 18px;
}

/* Линии */
#footer_box_main hr {
    margin: 10px 0px 20px 0;
}

/* Ссылки-кнопки в подвале */
footer .social_networks_button {
    margin: 10px -6px 0 -6px;
}
footer .social_networks_button a {
    padding: 6px;
}
footer .link_button {
    margin: 5px -11px 0 -10px;
}
footer .header_img{
    margin: 0 5px 0 0;
}

/* О нас */
.footer_about_us {
    margin: 0 0px 45px 0;
    
    max-width: 340px;
}
footer p {
    margin: 16px 0 0 0;
    
    font-size: 13px;
    letter-spacing: 1px;
    color: #dbdbdb;
}
footer b {
    font-family: Roboto-Light;
}

/* Подпись */
.powered_by_kein {
    margin: 0 0 45px;
    font-family: Roboto-Bold;
    font-size: 10px;
    text-align: center;
}
.powered_by_kein a {
    padding: 5px;
    
    border-radius: 50px 50px 5px 5px;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    
    transition: 0.2s;
}
.powered_by_kein a:hover {
    background-color: #535557;
}
#kein_ico {
    margin: 0 0 10px 0;
    width: 40px;
}

.copyright {
    font-family: Roboto-Light;
    font-size: 15px;
}

/* Кнопка наверх */
.inTop_box {
    position: fixed;
    left: 0px;
    top: 0px;
    
    width: 100px;
    height: 100%;
}
.inTop {
    position: fixed;
    left: 0px;
    top: 0px;
    
    width: 100px;
    height: 100%;
    cursor: pointer;
    
    color: rgba(255, 255, 255, 0.50);
    
    transition: 0.4s;
}
.inTop:hover {
    background-color: #222222;
    
    color: #FFF;
}
.inTop span {
    display: block;
    margin: 40px 0 0 0;
    
    width: 100%;
    
    font-family: Roboto-Thin;
    font-size: 15px;
    
    display: flex;
    justify-content: center;
}




/* Блок  комикса */
#comix_description {
    padding: 30px 20px 0 0;
    box-sizing: border-box;
    
    width: 100%; 
    
    display: flex;
}

/* Левый блок */
.left_box {
    margin: 0 20px 0 0;
    
    display: flex;
    flex-direction: column;
}
.left_box .header_img {
    margin: 0 4px 0 0;
}

/* Обложка комикса */
#comix_cover_img {
    margin: 0 0 20px 0;
    
    width: 250px;
    border-radius: 5px;
    box-shadow: 0 0 5px -3px #000000;
}

/* Кнопка "Лайкнуть" */
.like_button {
    margin: 0 0 20px 0;
    
    width: 100%;
    min-height: 35px;
    background-color: #FF3347;
    border-radius: 5px;
    box-shadow: 0 0 5px -3px #000000;
    
    font-size: 15px;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    transition: 0.15s;
    cursor: pointer;
}
.like_button:hover {
    background-color: rgba(255, 51, 71, 0.75);
}
.like_button_text {
    margin: 0 0 20px 0;
    
    width: 100%;
    min-height: 35px;
    background-color: #FF3347;
    border-radius: 5px;
    box-shadow: 0 0 5px -3px #000000;
    
    font-size: 15px;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    transition: 0.15s;
    cursor: pointer;
}
.like_button_text:hover {
    background-color: rgba(255, 51, 71, 0.75);
}
.like_button_video {
    margin: 0 0 20px 0;
    
    width: 100%;
    min-height: 35px;
    background-color: #FF3347;
    border-radius: 5px;
    box-shadow: 0 0 5px -3px #000000;
    
    font-size: 15px;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    transition: 0.15s;
    cursor: pointer;
}
.like_button_video:hover {
    background-color: rgba(255, 51, 71, 0.75);
}

.button_img {
    margin: 0 8px 0 0;
    
    height: 16px;
}
.button_img_pressed {
    margin: 0 8px 0 0;
    display: none;
    height: 16px;
}

/* Блок репостов */
#repost_box {
    margin: 0 0 20px 0;
    
    border-radius: 5px;
    background-color: rgba(34, 34, 34, 0.95);
    box-shadow: 0 0 5px -3px #000000;
    
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
#repost_box .box_name {
    margin: 0 0 15px 0;
}
#repost_box a {
    padding: 0;
    
    width: 100%;
    height: 100%;
    
    display: flex;
    justify-content: center;
    align-items: center;
}
.box_name {
    margin: 0 0 10px 0;
    padding: 5px 10px;
    box-sizing: border-box;
    
    width: 100%;
    min-height: 35px;
    background-color: #363738;
    border-radius: 5px 5px 0 0;
    
    display: flex;
    justify-content: center;
    align-items: center;
}
#repost_box .link_button {
    margin: 0 0 15px;
    
    width: 30px;
    height: 30px;
    border-radius: 5px;
    background-color: #363738;
    
    cursor: pointer;
}
#repost_box .link_button img {
    height: 30px
}

/* Кнопки репостов */
#vk:hover {
    background-color: #2D82BC;
    transition: 0.2s;
}
#odnoklassniki:hover {
    background-color: #FF8326;
        transition: 0.2s;
}
#twitter:hover {
    background-color: #0097F1;
    transition: 0.2s;
}
#facebook:hover {
    background-color: #0089FF;
    transition: 0.2s;
}
#reddit:hover {
    background-color: #FF4300;
    transition: 0.2s;
}

/* Правый блок */
.right_box {
    width: 100%;

    display: flex;
    flex-direction: column;
}
.info_box {
    margin: 0 0 15px 0;
    
    font-size: 15px;
}

/* Статистика */
.right_box .comix-info-set {
    padding: 0;
    
    background-color: transparent;
    
    flex-wrap: wrap;
    justify-content: flex-start;
}
.info_box .comix-info-set li {
    margin: 0 20px 0 0;
    
    font-size: 20px;
    
    flex-direction: row;
}
.info_box .information_box_img {
    margin: 0 7px 0 0;
    
    height: 12px
}

/* Студии и переводчики */
.studio_translator_box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.studio_translator {
    margin: 0 10px 5px 0;
    
    width: 100px;
}
.studio_translator_box .link_button {
    margin: 0 10px 0 0;
    
    width: auto;
    min-height: auto;
    border: 0.5px solid #535557;
    
    font-family: Roboto-Light;
    font-size: 13px;
}
.studio_translator_box .link_button:hover {
    background-color: #535557;
}
.studio_translator_box .link_button a {
    padding: 3px 8px;
    
    max-height: 25px;
}

/* Категории и теги */
.info_box .tags_ul {
    padding: 8px 0 0 0;
    
    font-size: 12px;
}
.info_box .tags_ul li:hover {
    border-color: #FF3347;
    background-color: #FF3347;
}

/* Описание */
.info_box p {
    margin: 8px 0 10px 0;
    
    font-family: Roboto-Light;
    font-size: 14px;
    text-align: justify;
}
.cifra-info-set p {
    margin: 0;
    
    font-family: Roboto-Regular;
    font-size: 13px;
    text-align: justify;
}

/* Нижний блок */
#comix_box {
    padding: 0 20px 20px 0;
    box-sizing: border-box;
    
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
/* Предупреждение */
#caution_box {
    margin: 0 0 20px 0;
    padding: 10px;
    box-sizing: border-box;
    
    max-width: 660px;
    border-radius: 5px;
    background-color: rgba(34, 34, 34, 0.95);
    box-shadow: 0 0 5px -3px #000000;
    
    display: flex;
    align-items: center;
}
#caution_box img {
    margin: 0 10px 0 0;
    height: 35px;
}

/* Сам комикс */
#comix_pages_ul {
    margin: 0 0 20px;
    
    max-width: 660px;
    
    display: flex;
    flex-direction: column;
}
#comix_pages_ul img {
    width: 100%;
}

/* Плеер */
#player_box {
    margin: 0 0 20px 0;
    
    width: 100%;
}
#player {
    width: 100%;
}

/* Блок формы комментариев */
#comment_block {
    width: 100%;
    
    display: flex;
    flex-direction: column;
}
#top_box {
    max-width: 100%;
    
    display: flex;
    justify-content: center;
}
#top_box .left_box {
    margin: 0;
    
    max-width: 250px;
    min-width: 250px;
}

/* Дополнительные ссылки */
#additional_links_box {
    margin: 0 0 20px 0;
    padding: 10px;
    box-sizing: border-box;
    
    width: 100%;
    height: 90px;
    border-radius: 5px;
    background-color: #242424;
    box-shadow: 0 0 5px -3px #000000;
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#last_ch {
    letter-spacing: 1px;
}
.additional_links {
    height: 30px;
    border-radius: 3px;
    background-color: #363738;
    
    transition: 0.15s;
}
.additional_links:hover {
    background-color: #535557;
}
.additional_links a {
    box-sizing: border-box;
    
    width: 100%;
    height: 100%;
    
    display: flex;
    justify-content: center;
    align-items: center;
}


#comment_form_box {
    margin: 0 0 20px 20px;
    
    width: 100%;
    
    border-radius: 5px;
    background-color: rgba(34, 34, 34, 0.95);
    box-shadow: 0 0 5px -3px #000000;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Форма комментария */
#comment_form {
    position: relative;
    padding: 0 10px 10px 10px;
    box-sizing: border-box;
    
    width: 100%;
    height: 100%;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
#uc_and_captchabox {
    display: flex;
}
#username_and_commenttextarea {
    margin: 0 10px 0 0;
    
    max-width: 100%;
    
    display: flex;
    flex-direction: column;
}
#comment_form hr {
    margin: 0;
}

/* Ник*/
#username {
    margin: 0 0 10px 0;
    padding: 5px 10px;
    box-sizing: border-box;
    
    width: 160px;
    border: 0.5px solid #363738;
    border-radius: 3px;
    background-color: #363738;
    outline: none;
    
    font-size: 15px;
    color: #FFF;
}
#username:focus {
    border-color: #6A6C6D;
}

/* Текст комментария */
#comment_textarea {
    margin: 0 0 10px 0;
    padding: 5px 10px;
    box-sizing: border-box;
    
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    height: 100%;
    border: 0.5px solid #363738;
    border-radius: 3px;
    background-color: #363738;
    outline: none;
    
    font-family: Roboto-Regular;
    font-size: 15px;
    color: #FFF;
    resize: none;
    
    transition: 0.1s;
}
#comment_textarea:focus {
    border-color: #6A6C6D;
}
#comment_textarea::placeholder {
    font-family: Roboto-Regular;
    font-size: 15px;
    color: #AAAAAA;
}
#comment_textarea:focus::placeholder {
    color: transparent;
}
#comment_textarea::-webkit-scrollbar {
    position: absolute;
    width: 14px;
    background-color: transparent;
}
#comment_textarea::-webkit-scrollbar-thumb {
    border: 4px solid #363738;
    border-radius: 10px;
    background-color: #6A6C6D;
}

/* Капча */
#captcha_box {
    width: 220px;
    
    display: flex;
    flex-direction: column;
}
#captcha_img {
    margin: 0 0 10px 0;
    
    height: 73px;
    
    border-radius: 3px;
}
#reload_and_reg {
    display: flex;
    flex-direction: column;
}
#reloadcaptcha {
    position: relative;
    margin: 0 0 10px 0;
    
    height: 30px;
    border: 0;
    border-radius: 3px;
    background-color: #363738;
    
    font-size: 15px;
    color: #FFF;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    transition: 0.2s;
    cursor: pointer;
}
#reloadcaptcha:hover {
    background-color: #535557;
}
#reloadcaptcha_img {
    margin: 0 6px 0 0;
    
    height: 15px;
    
    transition: 0.2s
}
#reloadcaptcha:hover #reloadcaptcha_img {
    transform: rotate(180deg);
}
#reg_captcha {
    margin: 0 0 10px 0;
    padding: 5px 10px;
    box-sizing: border-box;
    
    width: 100%;
    height: 30px;
    border: 0.5px solid #363738;
    border-radius: 3px;
    background-color: #363738;
    outline: none;
    
    font-size: 15px;
    color: #FFF;
}
#reg_captcha::placeholder {
    font-family: Roboto-Regular;
    font-size: 15px;
    color: #AAAAAA;
}
#reg_captcha:focus::placeholder {
    color: transparent;
}
#reg_captcha:focus {
    border-color: #6A6C6D;
}

#comment_form hr {
    background-color: #363738
}


/* Кнопка "Отправить комментарий" */
#submit_comment_box {
    width: 100%;
    
    display: flex;
    justify-content: flex-end;
}
#submit_comment {
    margin: 10px 0 0 0;
    padding: 7px 12px;
    box-sizing: border-box;
    
    width: 160px;
    background-color: #363738;
    border: 0;
    border-radius: 3px;
    cursor: pointer;
    
    font-family: Roboto-Regular;
    font-size: 15px;
    color: #FFF;
    
    transition: 0.2s;
}
#submit_comment:hover {
    background-color: #535557;
}

/* error */
#coment_message {
    width: 100%;
    
    font-family: Roboto-Light;
    text-align: center;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#support_img {
    margin: 0 0 8px 0;
    
    height: 35px;
}
.error {
    margin: 0 0 10px 0;
    
    font-size: 13px;
    color: #FF3347;
    
    display: flex;
    align-items: center;
}
.error_img {
    margin: 0 6px 0 0;
    
    height: 15px;
}
span {
    font-style: normal;
}

/* Блок комментариев */
#comment_box {
    width: 100%;
    
    border-radius: 5px;
    background-color: rgba(34, 34, 34, 0.95);
    box-shadow: 0 0 5px -3px #000000;
}
#comment_box .box_name {
    margin: 0 0 15px 0;
}

#no_comment {
    display: flex;
    justify-content: center;
    background-color: transparent;
    
    text-align: center;
}
.comment {
    margin: 0 15px 15px 15px;
    
    border-radius: 3px;
    background-color: #272727;
    
    display: flex;
    flex-direction: column;
    align-items: center;
}
.comment_username {
    padding: 5px 10px;
    box-sizing: border-box;
    
    width: 100%;
    border-radius: 3px 3px 0 0;
    background-color: #363738;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.comment_date {
    color: #AAAAAA;
    font-size: 13px;
}
.comment_text {
    padding: 10px 10px 10px 20px;
    box-sizing: border-box;
    
    width: 100%;
    font-size: 13px;
    
    word-break: break-all;
}



/* БЛОКИ */

/* общий блок */
.bloc_box {
    padding: 0 20px 0 0;
    box-sizing: border-box;
    
    width: 100%;
    
    display: flex;
    flex-direction: column;
}

/* персональный блок */
.bloc {
    margin: 0 0 20px 0;
    padding: 10px 10px 0 10px;
    box-sizing: border-box;
    
    border-radius: 5px;
    background-color: #242424;
    box-shadow: 0 0 5px -3px #000000;
    
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bloc p {
    margin: 0 0 10px 0;
    
    width: 100%;
    
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
#caution_img {
    margin: 0 0 10px 0;
    
    width: 25px;
}

/* Ссылка на почту и кнопка копирования */
#maillink_andcopybutton {
    width: 100%;
    
    display: flex;
}
#maillink_andcopybutton .bloc_link {
    margin: 0 10px 10px 0;
}

/* Ссылки в блоках */
.bloc_link {
    margin: 0 10px;
    padding: 6px 8px;
    box-sizing: border-box;
    
    height: 30px;
    border-radius: 3px;
    background-color: #363738;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    transition: 0.1s;
}
.bloc_link:hover {
    background-color: #535557;
}
#wp {
    margin: 5px 10px;
}
#copytext1 {
    margin: 0 10px 0 0; 
}
#mail_img {
    margin: 0 6px 0 0;
    
    height: 15px;
}
#copy_button {
    margin: 0 0 10px 0;
    padding: 6px 8px;
    box-sizing: border-box;
    
    height: 30px;
    border: none;
    border-radius: 3px;
    background-color: #363738;
    
    font-family: Roboto-Regular;
    font-size: 15px;
    color: #FFF;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    cursor: pointer;
    transition: 0.1s;
}
#copy_button:hover {
    background-color: #535557;
}

/* Разделы*/
.bloc_text {
    margin: 0 0 10px 0;
    
    width: 100%;
    
    font-size: 17px;
}

.section_box {
    padding: 0 20px 20px 0;
    box-sizing: border-box;
    
    width: 100%;
    
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section {
    padding: 3px;
    
    border-radius: 3px;
    background-color: #242424;
    box-shadow: 0 0 5px -3px #000000;
    
    display: flex;
    flex-direction: column;
}
.section_flex {
    display: flex;
    justify-content: center;
    align-items: center;
}
.section_img {
    margin: 0 4px 0 0;
    
    height: 25px;
}
.section_text {
    margin: 0 5px 0 0;
    
    font-size: 15px;
}

/* Теги */
.tags_box {
    padding: 0 20px 0 0;
    box-sizing: border-box;
    
    width: 100%;
    
    display: flex;
    flex-direction: column;
}
.tags_box #search-block {
    margin: 0 0 20px 0;
}
.tags_box #input-search {
    margin: 0;
    
    max-width: 180px;
}
.tags_box hr {
    margin: 0 0 10px 0;
}
.tags_section_name {
    margin: 0 0 10px 0;
    
    max-width: 40px;
    height: 25px;
    border-radius: 3px;
    background-color: #242424;
    box-shadow: 0 0 5px -3px #000000; 
    
    font-family: Roboto-Regular;
    font-size: 15px;
    
    display: flex;
    justify-content: center;
    align-items: center;
}
.tags_box .tags_ul {
    padding: 0 0 12px 0;
    
    width: 100%;
    
    display: flex;
    flex-wrap: wrap;
}
.tags_box .tags_ul li {
    font-size: 14px;
}
.tags_box .tags_ul li:hover {
    background-color: #FF3347;
    border-color: #FF3347;
}

/* Случайные комиксы */
.section_box .link_button {
    background-color: #363738;
    box-shadow: 0 0 5px -3px #000000; 
}
.section_box .link_button:hover {
    background-color: #535557;
}
.section_box .link_button a{
    padding: 5px 8px;;
}
#reload_img {
    margin: 0 6px 0 0;
    height: 16px;
    
    transition: 0.2s;
}
.link_button:hover #reload_img {
    transform: rotate(180deg);
}

/* Поиск */
#section_flex_m {
    margin: 5px 0;
}
.section_link_img {
    margin: 0 8px 0 -6px;
    height: 28px;
}
.section_flex .link_button {
    margin: 4px;
    
    font-size: 16px;
}
.section_flex .link_button a {
    padding: 5px 10px 5px 8px;
}

#page_num_box {
    padding: 0 20px 20px 0;
    box-sizing: border-box;
    
    width: 100%;
    
    display: flex;
    justify-content: center;
}
#page_num {
    padding: 5px 8px;
    
    border-radius: 3px;
    background-color: #FF3347;
    box-shadow: 0 0 5px -3px #000000;
}


#translator_text {
    margin: 0 0 20px 0;
    padding: 10px 10px 0 10px;
    box-sizing: border-box;
    
    width: 100%;
    border-radius: 5px;
    background-color: #242424;
    
    display: flex;
    flex-direction: column;
    align-items: baseline;
}
#translator_text h1 {
    margin: 0 0 -1px 0;
    padding: 2px 12px;
    
    max-width: 200px;
    border-radius: 3px 3px 0 0;
    background-color: #FF3347;
    
    font-size: 18px;
    
    display: flex;
    justify-content: center;
}
#translator_text p {
    margin: 0 0 10px 0;
    padding: 10px;
    box-sizing: border-box;
    
    width: 100%;
    border: 2px solid #FF3347;
}
#translator_text a {
    margin: 0 0 10px 0;
    padding: 5px 8px;
    
    border-radius: 3px;
    background-color: #363738;
    box-shadow: 0 0 5px -3px #000000;
    
    display: flex;
    justify-content: center;
    
    transition: 0.2s;
}
#translator_text a:hover {
    background-color: #535557;
}
#translator_text img {
    margin: 0 0 10px 0;
    
    width: 100%;
    min-width: 0px;
    border-radius: 3px;
}

.bloc h1 {
    margin:  0 0 10px 0;
    padding: 5px 8px;
    box-sizing: border-box;
    
    border-radius: 3px;
    background-color: #363738;
    
    font-size: 17px;
    
    display: flex;
    flex-wrap: wrap;
}

#otziv{
	font: bold 16px Century Gothic;
	color: white;
	padding: 10px;
	background-color: #363738;
	border-radius: 3px;
	z-index: 100;
	position: fixed;
	border: 3px solid #FF3347;
	right: 1%;
	top: 2px;
	display: none;
    align-items: center;
}
#otziv-krest{
	position: absolute;
	margin-top: -13px;
    margin-left: 386px;
	cursor: pointer;
	color: white;
}

/* Похожие комиксы */
#more_comics_directory_1 {
	margin-bottom: 20px;
    border-radius: 5px;
    background-color: rgba(34, 34, 34, 0.95);
}
#more_comics_directory_1 #comix_directory {
    margin: 0;
    padding: 10px 18px 0 18px;
}
#right_column #more_comics_directory_1 {
    margin: 0;
}












