:root {
    /* --base_text_color: rgba(229, 224, 216, 0.85); */
    --base_text_color: rgb(172 167 195);
    --highlight_text_color: rgb(210, 205, 232);
    --pink_primary_color: rgb(237 55 191);
    --pink_highlight_color: #d945a4;
    --yellow_soft_highlight_color: #cd9541;
    --premium_color: rgb(219 22 22);

    /* Theme*/
    --base_soft_color: #15131d;
    --base_dark_color: #0e0d17;
    --base_highlight_color: #21202b;
    
  }

::-webkit-scrollbar {
    display: none;    
}

* {
    -webkit-tap-highlight-color: transparent; 
    -webkit-touch-callout: none;
}

a{
    cursor: pointer;
}

html, body {
    scrollbar-width: none; /* Para Firefox */
    -ms-overflow-style: none;  /* Para Internet Explorer y Edge */
}

body {
    color: var(--base_text_color);
    background-color: var(--base_soft_color);
    margin: 0;
    /* min-height: 100vh; */
}

img{
    outline: none; 
    -webkit-tap-highlight-color: transparent; 

    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Chrome Opera */
}

.base_color{
    color: var(--base_text_color) !important;
}

.highlight_color{
    color: var(--highlight_text_color) !important;
}

.highlight_link{
    color: var(--base_text_color) !important;
    animation: breathing_effect 2s ease-in-out infinite;
    text-decoration: none;
}

.center_auto_block{
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.negative_top{
    margin-top: -30px;
}

.faq_ul{
    padding-top: 0 !important;
}

@keyframes breathing_effect {
    0%, 100% {
      filter: brightness(100%);
    }
    50% {
      filter: brightness(150%);
    }
}

.breathing_effect {
    animation: breathing_effect 2s ease-in-out infinite;
}

.popi_privacy_policy{
    padding: 30px;
    max-width: 1000px;
    width: -webkit-fill-available;
    width: -moz-available;
    margin: 0 auto;
    font-family: system-ui;
    font-size: 19px;
}

.popup_title{
    font-size: 18px;
    font-weight: bold;
    display: block;
    padding: 10px 0;
}

.popup-active {
    overflow: hidden;
    filter: blur(5px);
}

.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5010;
    overflow: auto;
}

.popup {
    background-color: #2a2929ad;
    padding: 20px 35px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 5020;
    overflow-y: auto;
    max-height: 92%;
    max-width: 1250px;
    width: auto;
    margin: 10px;
    color: #c3bdde;
    backdrop-filter: blur(8px);
}

.popup_button{
    min-width: 120px;
    min-height: 30px;
    font-size: 16px;
    border-radius: 12px;
    cursor: pointer;
    border: none;
    margin: 14px 10px;
}

.event_popup_button
{
    background: #9d0356;
    color: white;
    font-weight: bold;
}

.popup::-webkit-scrollbar {
    width: 12px; /* Ancho de la barra de desplazamiento */
}

.popup::-webkit-scrollbar-track {
    background: #000000; /* Color de fondo de la pista de desplazamiento */
}

.popup::-webkit-scrollbar-thumb {
    background: #4a4a4a; /* Color de la barra de desplazamiento */
}

.popup::-webkit-scrollbar-thumb:hover {
    background: #555; /* Color de la barra de desplazamiento al pasar el mouse */
}

/* Estilizar las barras de desplazamiento para Firefox */
.popup {
    scrollbar-width: thin; /* "auto" o "thin" */
    scrollbar-color: #4a4a4a #000000;/* Color de la barra y de la pista */
}

.author, .no_decor{
    text-decoration: none;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    filter: blur(5px);
    z-index: 5000;
}

.wiki_container
{
    padding-left: 0px !important;
}

.manga_page_header_text{
    font-size: 26px;
    font-weight: bold;
    padding-bottom: 20px;
    padding-left: 15px;
}

.manga_info_page{
    display: flex;
    padding: 15px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-top: 0px;
    margin-top: 25px;
}

.manga_info_page_col1{
    display: flex;
    flex-direction: column;
}

.manga_info_page_col1 span{
    padding-top: 6px;
}

.manga_info_page_col1 img{
    cursor: pointer;
}

.manga_info_page_col2{
    display: flex;
    flex-direction: column;
    padding-left: 40px;
}

.cs_form_top_padding
{
    padding-top: 40px;
}

.cs_form_col_block{
    display: flex;
    flex-direction: column;
    padding: 0px 20px;
    min-height: 50px;
    align-items: center;
    font-size: 22px;
}

.cs_not_published{
    border: 3px dashed red;
    box-sizing: border-box;
}

.cs_edit_story_buttons_container {
    display: flex;
    padding: 15px 0;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 380px;
    width: -webkit-fill-available;
    width: -moz-available;
}

.cs_edit_story_button{
    width: 100%;
    max-width: 250px;
    color: white;
    border: rgb(72, 72, 72);
    background-color: #313131;
    cursor: pointer;
    padding: 10px 20px;
    text-align: center;
    border-radius: 20px;
}

.cs_edit_story_button:hover{
    background-color: #575656;
}


.cs_style_select{
    width: 100% !important;
    max-width: 380px;
    height: 26px;
    margin-bottom: 20px;
    font-size: 18px !important;
    padding-left: 20px;
}

.cs_style_select option{
    width: 100%;
    max-width: 300px;
    background-color: rgb(43, 43, 43);
    height: 26px;
    color: inherit;
    margin-bottom: 20px;
    text-align: left;
}

/*! Chapter creator */
.cc_app{
    display: flex;
    flex-direction: column;
    min-width: 250px;
    width: 80%;
    max-width: 640px;
}

.cc_input, .cc_textarea, .cc_select, .cc_button, .cc_file_input {
    background-color: #333;
    color: #fff;
    border: 1px solid #555;
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 4px;
    font-size: 16px;
}

.cc_select{
    width: -webkit-fill-available;
    width: -moz-available;
}

/* @keyframes cc_button_blink {
    0%, 100% { background-color: #304861; }
    50% { background-color: #4d739b; }
} */

@keyframes cc_button_blink {
    0%, 100% { background-color: #520b31; }
    50% { background-color: #9d0356; }
}

.cc_button--blink {
    animation: cc_button_blink 1.5s ease-in-out infinite;
}

.cc_button:hover {
    background-color: #575656;
}

.cc_button {
    cursor: pointer;
}

.cc_button_highlight {
    background: #9d0356;
    border-color: #dd0077;
}

.cc_button_highlight:hover {
    background-color: #c90a71 !important;
}

.cc_button_highlight_blue {
    background: #304861;
    border-color: #4c7095;
}

.cc_button_highlight_blue:hover {
    background-color: #3d5a79 !important;
}
  
.cc_drop_zone {
    background-color: #444;
    color: #ddd;
    border: 2px dashed #666;
    padding: 20px;
    text-align: center;
    margin-bottom: 10px;
    cursor: pointer;
}

.cc_language_row {
    padding: 20px 0;
}

.cc_progress_bar_container {
    width: 100%;
    background-color: #eee;
    border-radius: 4px;
    margin: 10px 0;
}

.cc_clear_button, .cc_remove_button {
    cursor: pointer;
    background-color: #7d2922;
    color: white;
    border: none;
    padding: 8px 16px;
    margin-left: 10px;
    border-radius: 4px;
}  
.cc_clear_button:hover,.cc_remove_button:hover {
    background-color: #5d0606 !important; 
}

.cc_row_chapter_selector{
    flex-direction: row;
    gap: 20px;
}

.cc_disable_opa{
    opacity: 0.5;
}

.cc_success_msg_padding{
    padding-top: 0;
    padding-bottom: 14px;
}

.cc_success-message {
    color: #5cb85c;
    text-align: center;
    display: block;
    padding-top: 11px;
}

.cc_error-message {
    color: red;
    text-align: center;
    display: block;
    padding-top: 11px;
}
  
.cc_progress_bar {
    height: 20px;
    background-color: #5cb85c;
    border-radius: 4px;
    width: 0;
    transition: width 0.7s ease;
}

.cc_chibi_tutorial{
    cursor: pointer;
    width: 100%;
    max-width: 250px;
    height: auto;
}

.cc_chibi_tutorial_link{
    display: block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: -50px;
    z-index: 1;
    filter: drop-shadow(0px 1px 2px black);
}


.cc_image_preview_container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    cursor: pointer;
    transition: filter 0.2s ease-in-out;
}


  
.cc_image_preview {
    width: 90px !important;
    object-fit: cover;
    margin-right: 5px;
    margin-bottom: 5px;
}

.cc_image_preview:hover{
    filter: brightness(0.7);
}

.cc_image_guide{
    height: auto;
    width: 100%;
    margin: 0 auto;
    padding-top: 25px;
}


.cloud_tag{
    width: 400px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 20px 10px;
    gap: 8px;
    flex-grow: 1;
    justify-content: center;
    align-content: center;
    font-size: 16px;
}

.selection_tag_block
{
    display: flex;
    background-color: #2d2d2d;
    padding: 15px;
    border-radius: 20px;
    flex-wrap: wrap;
    width: 430px;
    gap: 12px 2px;
    margin-top: 20px;
    font-size: 16px;
}

.selected_cloud_tag{
    opacity: 0.4;
    filter: grayscale(0.2);
}

.img_info_image{
    width: auto !important;
    max-width: 100% !important;
}

.faq_block{
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.faq_table{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 0 auto;
}

.faq_question{
    font-size: 21px;
    /* font-weight: bold; */
    display: block;
    color: #dddddd;
}

.faq_answer
{
    font-size: 18px;
}

.sub_heading {
    font-size: 24px;
    font-weight: 100;
}

.chibi_page_container {
    width: 100%;
    padding: 40px;
}

.chibi_title{
    font-size: 26px;
    font-weight: bold;
}

.chibi_link {
    display: block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: -29px;
    z-index: 1;
    filter: drop-shadow(0px 2px 4px black);
    color: #ff00b9;
    font-family: 'poppins_bold';
    position: relative;
    left: -2px;
}

.chibi_table{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.faq_guide_item{
    position: relative; 
    text-align: center;
    padding-top: 10px;
}

.genre_tags{
    display: flex;
}

.genre_tag{
    background-color: gray;
    padding: 2px 16px;
    min-width: 74px;
    text-align: center;
    border-radius: 25px;
    margin-right: 10px;
    color: white;
    box-sizing: border-box;
}

.genre_nsfw, .genre_action, .genre_tentacles,.genre_rape,.genre_drama, .genre_terror,.genre_bondage,.genre_gore,.genre_extreme,.genre_brutal {
    background-color: #c90015; /* Red for intense genres */
}

.genre_adventure, .genre_glasses, .genre_fantasy, .genre_supernatural,.genre_robot {
    background-color: #0e76a8; /* Blue for imaginative genres */
}

.genre_sci-fi, .genre_scifi, .genre_slice_of_life {
    background-color: #49beb7; /* Sci-fi and life-stories in teal */
}

.genre_sports, .genre_shonen,.genre_school {
    background-color: #b56d00; /* Orange for energetic genres */
}

.genre_harem, .genre_isekai {
    background-color: #835c00; /* Gold for escapist genres */
}

.genre_furry
{
    background-color: #918911;
}


.genre_vore,
.genre_domination, .genre_spokon
{
    background-color: #01a659;
}

.genre_milf, .genre_ntr {
    background-color: #8b4513; /* Dark brown for adult themes */
}

.genre_comedy {
    background-color: #049b6b; /* Bright yellow for humor */
}

.genre_feet,.genre_dark, .genre_mystery,.genre_mecha,.genre_sado {
    background-color: #34495e; /* Dark blue for mystery and dark themes */
}

.genre_bisexual, .genre_gay, .genre_lesbian {
    background-color: #d9004c; /* Pink shades for LGBTQ+ genres */
}

.genre_romance, .genre_yaoi, .genre_yuri, .genre_otome, .genre_giant, .genre_futanari {
    background-color: rgb(214, 0, 207); /* Romantic genres in deep pink */
}

.genre_romcom, .genre_ecchi,.genre_hentai,.genre_questionable {
    background-color: #94006a; /* Cheerful violet for romantic comedies */
}

.genre_sfw {
    background-color: #219b54; /* Green for safe content */
}

.genre_straight{
    background-color: rgb(108, 7, 158);
}


.switch_container {
    position: relative;
    display: inline-block;
    width: 60px; 
    height: 34px; 
    /* margin-left: 10px; */
    transform: scale(0.8);
}

.switch_container_not_logged_in
{
    margin-left: -10px !important; 
}

.switch_input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch_slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #207ead; 
    transition: .4s;
    border-radius: 34px;
}

.switch_slider_on {
    background-color: #ae1a1a; 
}

.switch_slider:before, .switch_slider_on:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.switch_slider_on:before {
    transform: translateX(26px); /* Mover el círculo al otro lado cuando está 'on' */
}

.switch_input:focus + .switch_slider {
    box-shadow: 0 0 1px #ae1a1a;
}

.switch_container,
.switch_slider {
  -webkit-user-select: none; /* Chrome/Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE/Edge */
  user-select: none; /* Standard */
}

/* Desactivar el resaltado de tap en dispositivos móviles */
.switch_container {
  -webkit-tap-highlight-color: transparent;
}

.cs_mini_image_preview {
    width: 220px !important;
    height: auto !important;
    border: 3px solid red;
}

.center_block{
    margin: 0 auto;
}

.center_text{
    text-align: center;
}

.center_text_block{
    text-align: center;
    display: flex;
    justify-content: center;
}

.gallery_info_p
{
    max-width: 650px;
    width: auto;
    text-align: left;
}


table {
    border-collapse: collapse;
    width: 100%;
}

td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

.ai_info{
    max-width: 800px;
    text-align: left;
    font-size: 17px;
}

.g_table{
    width: auto;
    padding: 20px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
}


.img_promo{
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    padding-bottom: 10px;
}

.blue_light_highlight{
    color: #18e8ff;
}

.create_new_story_button{
    width: -webkit-fill-available;
    width: -moz-available;
    height: max-content;
    max-height: 370px;
    flex-grow: 1;
    min-width: 222px;

    cursor: pointer;
    border-radius: 25px;
    background-color: #3b3b3b;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    border: 2px dashed #636363;
}

.upload_gallery_images_button{
    cursor: pointer;
    border-radius: 25px;
    width: 200px;
    height: 200px;
    background-color: #3b3b3b;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 120px;    
}

.web_form{
    display: flex;
    padding: 15px;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.form_table{
    display: flex;
    flex-direction: column;
    padding-top: 16px;
}

/*! Create manga form */
.cm_form_cover{
    width: max-content !important;
    height: auto !important;
    max-height: 100% !important;
    cursor: pointer;
    padding-bottom: 20px;
    min-width: 100%;
}


.cm_input{
    background-color: var(--base_highlight_color);
    font-size: 23px;
    text-align: center;
    border: none;
    color: inherit;
    width: 100%;
    min-height: 60px;
    border-radius: 10px;
}

.cm_input::placeholder {
    color: red;
}

.cm_textarea{
    text-align: left;
    border-radius: 6px;
    scrollbar-width: thin;
    scrollbar-color: #4a4a4a #000000;
    min-width: 350px;
    min-height: 100px;
    padding: 10px;
}

.cm_textarea::-webkit-resizer{
    border-width: 8px;
    border-style: double;
    border-color: transparent #9d0356 #9d0356 transparent;
}


.form_button{
    color: var(--base_text_color);
    background-color: #3b3b3b;
    border: none;
    width: 200px;
    height: 50px;
    color: white;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
}

.form_image_gallery_row{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
    max-width: 650px;
    flex-direction: column;
    background-color: #3b3b3b;
    padding: 25px;
    border-radius: 15px;
}

.form_image_gallery_row img{
    width: auto !important;
    height: max-content !important;
    margin: 0 auto;
    max-width: 100%;
}

.form_image_gallery_row input{
    width: 100%;
    height: 30px;
    border-radius: 3px;
    border: none;
    padding: 0px 4px;
    box-sizing: border-box;
}

.form_image_gallery_row textarea{
    width: 100%;
    height: 30px;
    border-radius: 3px;
    border: none;
    max-width: 400px;
    min-height: 30px;
    min-width: 173px;
    padding: 7px 5px;
    box-sizing: border-box;
}

.form_image_gallery_row_checkbox{
    width: 30px !important;
    margin: 0;
}

.form_image_gallery_col2{
    display: flex;
    flex-direction: column;
    padding-top: 16px;
}

.form_image_gallery_col2_row{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px 20px;
    min-height: 50px;
}

.form_image_gallery_col2_row span{
    min-width: 150px;
}

.manga_sinopsis{
    color: white;
    max-width: 810px;
}

.chapter_list{
    display: flex;
    flex-direction: column;
}

.chapter_row{
    display: flex;
    min-height: 56px;
    width: 100%;
    align-items: center;
    padding-left: 15px;
    cursor: pointer;
    border-bottom: gray 1px solid;
    color: wheat;
    background-color: transparent;
    transition: background-color 0.25s ease;
}

.not_purchased_general{
    color: gray !important;
}

.chapter_row:hover{
    background-color: #424242;
}

.ongoing_manga {
    color: greenyellow;
}

.completed_manga  {
    color: rgb(170, 64, 128);
}

.hiatus_manga {
    color: rgb(164, 178, 228);
}

.artbook_manga {
    color: aqua;
}

.extra_top_padding{
    padding-top: 30px !important;
}

.extra_bottom_padding{
    padding-bottom: 50px !important;
}

.story_gallery{
    display: flex;
    padding: 15px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 0px;
    margin-top: -32px;
}

.image_gallery{
    margin-top: 0px;
}

.image_gallery_item{
    max-width: 22%;
    min-width: 100px;   
    display: flex;
    padding: 40px;
    flex-direction: column;
    cursor: pointer;
    align-items: center;
}

.image_gallery_item:hover{
    background-color: rgba(255, 255, 255, 0.224);
}

.product_item{
    max-width: 22%;
    min-width: 100px;   
    display: flex;
    padding: 40px;
    flex-direction: column;
    cursor: pointer;
    align-items: center;
    position: relative;
}

.product_item:hover{
    background-color: rgba(255, 255, 255, 0.224);
}

.image_viewer{
    display: flex;
    padding: 15px 0;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.image_viewer_data{
    width: 100%;
    display: flex;
    flex-direction: column;
    font-size: 20px;
    justify-content: center;
    padding-top: 30px;
    max-width: 1000px;
}

.image_viewer_data_col1, .image_viewer_data_col2{
    display: flex;
    flex-direction: column;
    border: solid #4d4d4d;
    border-width: 1px 0 1px 1px;
}

.image_viewer_data_col1 span, .image_viewer_data_col2 span{
    border: solid #434343;
    border-width: 0 1px 1px 0;
    padding: 5px 18px;
    min-width: 160px;
    padding-right: 30px;
}

.image_viewer_row{
    display: flex;
    border: solid #4d4d4d;
    border-width: 1px 0px 0px 1px;
}

.image_viewer_label {
    border: solid #434343;
    border-width: 0 1px 1px 0;
    width: 20%;
    font-weight: bold;
    min-width: 210px;
    padding: 10px 12px;
  }
  
  .image_viewer_value {
    border: solid #434343;
    border-width: 0px 1px 1px 1px;
    flex-grow: 1;
    padding: 10px 12px;
  }

.image_viewer_image{
    width: max-content !important;
    height: 470px !important;
    max-height: 100% !important;
    max-width: 100% !important;
    cursor: pointer;
}

.red_button{
    font-size: 17px;
    border-radius: 3px;
    cursor: pointer;
    border: none;
    height: 40px;
    width: fit-content;
    margin: 9px 0;
    padding: 0 27px;
    line-height: 2;
    background: #9d0356;
    color: white;
}


.purchase_button{
    font-size: 17px;
    border-radius: 3px;
    cursor: pointer;
    border: none;
    height: 40px;
    width: fit-content;
    margin: 9px 0;
    padding: 0 27px;
    line-height: 2;
    background: #9d0356;
    color: white;
}

.big_button{
    width: 100%;
    min-height: 60px;
    font-size: 22px;
    border-radius: 7px;
}

.product_data{
    display: flex;
    flex-direction: column;
    padding-top: 11px;
}

.product_title{
    text-align: center;
    color: #d75e5e;
    font-weight: bold;
}

.collapsible_content {
    background-color: var(--base_dark_color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.mp_collapsible_open {
    max-height: 400px;  
    transition: max-height 0.3s ease-out;
}

.mp_collapsible_text{
    max-width: 610px;
    margin: 0 auto;
    text-align: center;
    color: #e3d2e2;
    padding: 30px;
}

.crop_action_buttons{
    display: flex;
}

.cropper_image_container{
    width: 80%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.menu_container{
    height: 65px;
    cursor: pointer;
    border-bottom: 1px solid black;
    width: 100%;
    background-color: #35333f;
    display: flex;
    align-items: center;
    padding-left: 30px;
    transition: transform 0.3s ease;
}

.open_menu_container{
    max-height: max-content;
}

.menu_list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    width: 100%;
    background-color: var(--base_dark_color);
    padding-left: 30px;
    color: var(--pink_highlight_color);
}

.menu_list ul li a{
    text-decoration: none;
    cursor: pointer;
}

.dropdown{
    padding-bottom: 80px;
}

.subtitle{
    font-size: 21px;
}
.center_flex{
    display: flex;
    justify-content: center;
}

.center_flex_content{
    display: block;
}

.store_buttons{
    display: flex;
    padding-bottom: 20px;
    width: fit-content;
    align-items: flex-start;
    margin: 0 auto;
    margin-top: -17px;

}

.store_buttons a img
{
    width: 100%;
    max-height: 70px;
}

.highlight
{
    color: var(--pink_highlight_color);
}

.highlight_yellow_soft
{
    color: var(--yellow_soft_highlight_color);
}

.highlight_yellow
{
    color: #fdc473;
}

.highlight_blue
{
    color: #61cdfb;
}

.highlight_orange
{
    color: orange;
}

.highlight_green
{
    color: #31cb23;
}

.highlight_red{
    color: var(--premium_color);
}

.web_card {
    width: 300px;
    height: 400px;
    background-color: #535353;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
}


.web_card_image {
    max-width: 90%;
    max-height: 100%;
}

.web_card_text{
    padding-top: 15px;
    font-size: 25px;
    color: #ff65b8;
}

.card_overlay{
    position: absolute;
    background-color: rgb(0 0 0 / 71%);
    width: 250px;
    height: 264px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    left: 45px;
    margin-top: -1px;
}

.news_padding
{
    padding-top: 0;
    padding-bottom: 10px;
}

.p_footer_wrapper{
    position: relative;
}

.footer_manga_reader{
    position: relative;
    bottom: -190px;
    z-index: -1;
    padding-bottom: 0;
}

.footer_manga_reader #p_footer_wrapper
{
    padding-bottom: 0;
}

#p_footer_wrapper
{
    background-color: var(--base_highlight_color);
    height: 77px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 72px;
}

.p_footer_general {
    font-size: 22px;
    color: #fb4baa;
    text-align: center;
    
}

.main_page_body{
    transform-origin: top;
    transform: scale(1.28);
    transition: transform 0.3s ease;
}

.target_cards{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 20px;
}

.card_container {
    text-decoration: none;
    cursor: pointer;
    margin-left: 20px;
    margin-right: 20px;
    font-weight: bold;
    padding-top: 20px;
    transition: transform 0.3s ease;
}

.card_container:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.card_container:hover .card_overlay {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/*! Manga reader */
.mr_header_bar{
    width: 100%;
    height: auto;
    display: flex;
    padding: 20px 0;
}

.mr_static_mode_button_row{
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 30px 0;
}

.mr_header_icon{
    cursor: pointer;
    font-size: 40px;
    min-width: 60px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #74a8eb;
}

.mr_header_icons_right
{
    margin-left: auto;
    justify-content: flex-end;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 20px;
}

.mr_language_icons{
    display: flex;
    gap: 8px;
}

.mr_header_icon_right{
    margin-left: auto;
    justify-content: flex-end;
    color: inherit;
}

.mr_language_span{
    text-transform: uppercase;
    font-size: 21px;
    font-weight: bold;
    background: #7b1853;
    padding: 2px 10px;
    border-radius: 30px;
    cursor: pointer;
}

.mr_header_bar_title{
    font-size: 21px;
    font-weight: bold;
}

.mr_header_bar_subtitle{
    font-size: 16px;
}

.mr_header_bar_data{
    display: flex;
    flex-direction: column;
}

.mr_go_top{
    position: fixed;
    right: 5px;
    bottom: 74px;
}

.mr_go_bottom{
    position: fixed;
    right: 5px;
    bottom: 17px;
}

/* subnormgpt*/

.mr_image_container {
    overflow: hidden;
    width: 100%;
}

.mr_image_preview {
    width: 100%; 
    height: auto; 
    object-fit: contain; 
    cursor: pointer; 
}

.mr_images_wrapper {
    display: flex; 
    transition: transform 0.25s ease-in-out; 
}

.mr_image_box {
    width: 100%;
    overflow: hidden;
}

.mr_button {
    cursor: pointer; 
    padding: 10px 20px; 
    margin: 5px;
    border: none; 
    background-color: #007bff; 
    color: white;
    border-radius: 5px; 
    font-size: 16px; 
    width: 110px;
}

.mr_button:hover {
    background-color: #0056b3; 
}

.mr_scroll_view img {
    margin-bottom: 10px;
}

.mr_images_zoom_block{
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.mr_slider_container{
    display: flex;
    align-items: center;
    justify-content: center;
}

.mr_slider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    transition: opacity .2s;
    border-radius: 4px;
  }

  .mr_slider_vertical_page {
    max-width: 300px;
    margin-bottom: 40px;
    margin-top: 10px;
    top: 9px;
    position: relative;
  }
  
  .mr_slider:hover {
    opacity: 1;
  }
  
  .mr_slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: #59a1f2;
    cursor: pointer;
    border-radius: 3px;
  }
  
  .mr_slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #59a1f2;
    cursor: pointer;
    border-radius: 3px;
  }
  



.max_z{
    z-index: 9999;
}

/*! Image generator */
.image_gen_wrapper {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 20px;
}

.image_gen_top_data{
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}

.image_generator_settings{
    display: flex;
    width: fit-content;
    height: 100%;
    flex-direction: column;
    gap: 4px;
    padding: 30px;
    flex-wrap: wrap;
    padding-top: 11px;
    justify-content: flex-start;
    background-color: #191919;
}

.image_gen_prompt_boxes{
    min-height: 130px !important;
    width: 100% !important;
    max-width: 700px;
    padding: 10px 
}

.image_generator_setting_element{
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.image_generator_setting_dir_row{
    display: flex;
    flex-direction: row;
    gap: 0;
    justify-content: space-evenly;
}

.img_settings_size_in_row{
    max-width: 90px;
}

.gen_chk {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border: 2px solid #b40d67;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
  }
  
  .gen_chk:checked {
    background-color: #b40d67;
  }
  
  .gen_chk:checked:after {
    content: '';
    position: absolute;
    width: 6px;
    height: 15px;
    border: solid white;
    border-width: 0 4px 4px 0;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }




.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: #35333f;
    border-radius: 5px;
    outline: none;
    margin: 11px 0;
  }
  
  .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #b40d67;
    cursor: pointer;
    border-radius: 50%;
  }
  
  .slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #b40d67;
    cursor: pointer;
    border-radius: 50%;
  }
  
  .slider::-ms-thumb {
    width: 20px;
    height: 20px;
    background: #b40d67;
    cursor: pointer;
    border-radius: 50%;
  }
  
  .slider::-moz-range-progress {
    background: #b40d67;
    border-radius: 5px;
  }
  
  .slider::-ms-fill-lower {
    background: #b40d67;
    border-radius: 5px;
  }







.image_generator_sub_element {
    display: flex;
    flex-direction: column;
}

.img_gen_size_row{
    display: flex;
    zoom: 0.8;
    margin-top: -10px;
    height: 94px;
}

.input_small_value {    
    width: 70px !important;    
}

.image_gen_prompts{
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 21px;
    margin-top: 10px;
    
}

.img_generate_button{
    padding-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.generate_image_button {
    min-width: 120px;
    min-height: 44px;
    border-radius: 4px;
    margin: 0;
    font-size: 17px;
    cursor: pointer;
    border: none;
    height: 40px;
    width: fit-content;
    padding: 0 27px;
    line-height: 2;
    background: #9d0356;
    color: white;
    min-width: 151px;
}

.image_gen_checkbox {
    width: 30px !important;
    height: 24px;
    margin: 0;
}

.generate_loading{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.generate_loading i{
    font-size: 50px;    
}

.generating_image{
    opacity: 0.3;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fa-arrow-rotate-right {
    animation: spin 2s linear infinite;
    color: #b40d67;
}

.inoperative{
    pointer-events: none;
}


.image_gen_image_preview{
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
}

.image_gen_image{
    cursor: pointer;
    position: relative;
}

.absolute_top_right{
    display: flex;
}

.modern_input{
    width: auto;
    min-height: 40px;
    padding-left: 10px;
    background-color: transparent;
    color: inherit;
    border: 0;
    border-bottom: 2px solid rgb(83, 83, 83);
    font-size: 14px;
}

.modern_input:-webkit-autofill,
.modern_input:-webkit-autofill:focus {
    transition: background-color 0s 600000s, color 0s 600000s !important;
}

.modern_input:focus{
    outline: none;
}

.dark_input{
    width: auto;
    min-height: 40px;
    padding-left: 10px;
    background-color: #373737;
    color: inherit;
    border: 0;
    border-radius: 7px;
}

.login_form_submit{
    margin-top: 15px;
    width: 100%;
    border-radius: 45px;
}

.input_gray_forms{
    background-color: #fcfcfc;
    color: black;
}

.prompt_areas {
    display: flex;
    position: relative;
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
}


.separator {
    width: 100%;
    opacity: 0.13;
}

.img_gen_size_row_item{
    padding: 10px;
    cursor: pointer;
}

.img_gen_size_row_item_selected  {
    background-image: linear-gradient(rgba(54, 54, 54, 1), rgba(54, 54, 54, 1));
    background-position: 10px 18px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.img_gen_bottom_row{
    display: flex;
    gap: 30px;
}

/*! user account */

.user_account_container
{
    width: 100%;
    display: flex;
    padding-top: 30px;
    gap: 60px;
    font-size: 18px;
}

.user_account_container_left_row{
    width: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 17px;
}

.user_account_container_right_row{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.user_account_container_data_row{
    display: flex;
    position: relative;
    width: 100%;
    align-items: center;
}

.user_account_container_data_label{
    min-width: 180px;
}

.user_account_sub_flex{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tier_button_info{
    background-color: rgb(194, 9, 108);
    color: #ffffffe3;
    cursor: pointer;
    padding: 1px 10px;
    border-radius: 30px;
    font-weight: bold;
    position: relative;
    top: -2px;
}

.account_tier_explanation{
    display: flex;
    position: relative;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
}

.save_profile_button{
    position: relative;
    margin-right: 9px;
    line-height: 2.3;
    float: right;
}

.margin0{
    margin: 0;
}

.user_account_sub_flex_title{
    display: flex;
    gap: 14px;
}


.user_account_container_ava_drag {
    cursor: pointer;
    border-radius: 25px;
    width: 210px;
    height: 315px;
    background-color: #3b3b3b;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 70px;
    opacity: 0.6;
}

.user_account_container_ava_drag_loaded_image {
    opacity: 1;
    overflow: hidden;
}

.user_account_container_ava_drag_loaded_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}






.aim_master{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


.rinin_wrapper{
    width: 100%;
    height: 100vh;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    overflow-y: auto;    
    display: flex;
    flex-direction: column;
}

.auto_height{
    height: auto !important;
    min-height: auto !important;
}

.rinin_header{
    width: 100%;
    height: auto;
    background-color: var(--base_highlight_color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 150px;
}

.rinin_header_img_reader{
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top left;
    display: block;
}

.rinin_header_img{
    width: auto;
    height: 150px;
}

.header_right_menu{
    width: fit-content;
    display: flex;
    gap: 10px;
    align-items: center;
}

.header_menu_entries{
    width: auto;
    display: flex;
    gap: 40px;
    align-items: center;
    font-size: 20px;
    padding-right: 40px;
}

.header_menu_entry{
    position: relative;
}

.notification_circle{
    display: flex;
    border-radius: 40px;
    background-color: rgb(198 0 88);
    color: white;
    padding: 8px;
    position: relative;
    box-shadow: 0px 0px 4px 0px rgb(0 0 0);
    width: 6px;
    height: 6px;
    font-weight: bold;
    font-family: system-ui;
    justify-content: center;
    align-items: center;
    text-align: center;
    top: -9px;
    line-height: 1;
}

.notification_circle_big{
    font-size: 14px;
}

.notification_circle_small{
    display: flex;
    border-radius: 40px;
    background-color: rgb(198 0 88);
    color: white;
    padding: 8px;
    position: relative;
    box-shadow: 0px 0px 4px 0px rgb(0 0 0);
    width: 6px;
    height: 6px;
    font-weight: bold;
    font-family: system-ui;
    justify-content: center;
    align-items: center;
    text-align: center;
    top: -7px;
    left: -8px;
    line-height: 1;
    zoom: 0.85;
    font-size: 14px;
}

.notification_circle_on_bar{
    top: -13px;
    left: 17px;
    position: absolute;
}



.login_window{
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}

.google_button_icon {
    width: 30px !important;
    height: 30px;
    margin: auto;
}

.button_google_login{
    display: flex;
    gap: 10px;
    background: #050d14;
    border-radius: 60px;
    width: fit-content;
    margin: 0 auto;
    margin-top: 50px;
    font-size: 14px;
    align-items: center;
}

.soft_hr{
    width: 100%;
    opacity: 0.2;
}

.extra_functions{
    color: rgb(221 98 227);
    font-size: 13px;
    cursor: pointer;
}


.main_floating_menu_no_login{
    min-width: 480px !important;
}

.main_floating_menu {
    /* display: none; */
    position: absolute;
    background-color: #202027c7;
    min-width: 650px;
    z-index: 60;
    padding: 30px;
    top: 88px;
    left: -202px;
    font-size: 16px;
    border-radius: 8px;
    color: #96959c;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 18px 3px #0000005c
}


.main_floating_menu_small{
    display: none;
    position: absolute;
    background-color: #202027c7;
    min-width: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 60;
    padding: 7px;
    top: 88px;
    left: 6px;
    font-size: 16px;
    border-radius: 8px;
    color: #96959c;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 18px 3px #0000005c
}

.main_floating_menu_table{
    display: flex;
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    justify-content: center;
    justify-content: space-between;
}

.main_floating_menu_table_account{
    padding: 15px;
} 

.main_floating_menu_column{
    margin: 0 15px;
}

.main_floating_menu_block{
    margin-bottom: 30px;
}

.main_fmenu_block_title{
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
    white-space: nowrap;
}

.main_fmenu_block_data{
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.main_fmenu_block_data_element{
    display: flex;
    gap: 15px;
    align-items: center;
}

.main_fmenu_block_data_element i{
    min-width: 20px;
}

.main_fmenu_block_data_element a{
    margin-left: -4px;
}

.big_hitbox{
    height: 100px;
    display: flex;
    position: relative;
    align-items: center;
}

.main_floating_menu a:hover { color: var(--highlight_text_color) !important;}

/* #floating_menu_trigger:hover .main_floating_menu {display: block;} */
/* @media (min-width: 768px) {
    .desktop_menu_entry:hover {display: block;}
} */

#account_menu_item:hover .main_floating_menu {display: block;}

.floating_menu_open{
    display: block;
}

.header_menu_entry_link{
    text-decoration: none;
    color: inherit;
    font-weight: bold;
}

.header_menu_entry_link:hover{
    color: var(--highlight_text_color) !important;
}

.main_wrapper{
    height: auto;
    background-color: var(--base_soft_color);
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.wiki_panel{
    background-color: var(--base_dark_color);
    width: auto;
    padding: 15px;
    display: flex;
    justify-content: center;
    padding-bottom: 35px;
    min-height: 412px;
    flex-grow: 1;
}

.rinin_main_col1_closed{
    left: -110% !important;
    width: 0 !important;
    transition: all 0.3s linear;
}

.bar_info{
    position: relative;
    display: flex;
    height: auto;
    align-items: center;
}

.bar_info_item{
    display: flex;
    gap: 3px;
    padding-left: 10px;
    align-items: center;
}

.bar_info_label{
    font-weight: 100;
}

.mobile_bar{
    width: 100%;
    padding: 21px 0;
    display: flex;
    align-items: center;
    margin: 0 auto;
    justify-items: center;
    gap: 25px;
    font-size: 30px;
    justify-content: center;
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    border-top: solid 1px #42444dba;
    z-index: 900; 
}

.mobile_bar_background{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
    backdrop-filter: blur(5px);
}

.mobile_bar_item{
    display: flex;
    gap: 8px;
    cursor: pointer;
    z-index: 1;
    text-shadow: 0 0 6px black;
    position: relative;
}

.button_menu_button{
    width: 40px;
    height: 40px;
    background-color: #35333f;
    color: #ffffffc7;
    cursor: pointer;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    z-index: 9999;
    margin-top: 0;
    right: 0;
    left: 9px;
    display: none;
}

.user_block{
    display: flex;
    flex-grow: 1;
    overflow-y: auto;
    position: relative;
}

.black_bg{
    background-color: var(--base_dark_color);
    width: 100%;
}

.store_panel, .product_panel{
    background-color: var(--base_dark_color);
    padding: 15px;
    display: flex;
    padding-bottom: 35px;
    min-height: 412px;
    width: -webkit-fill-available;
    width: -moz-available;
    flex-grow: 1;
    justify-content: center;
}

.general_left_panel{
    background-color: var(--base_dark_color);
    padding: 17px;
    display: flex;
    justify-content: flex-start;
    padding-bottom: 35px;
    min-height: 412px;
    width: -webkit-fill-available;
    width: -moz-available;
    flex-grow: 1;
    padding-left: 48px;
}

.img_gallery{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.img_gallery a{
    max-width: 250px;
    height: auto;
    padding: 8px;
}

.img_gallery a img{
    max-width: 100%;
    height: auto;
}

.img_container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.img_container img{
    max-width: 100%;
    height: auto;
}

.wiki_panel_content{
    padding: 15px;
    max-width: 1080px;
    margin: 0 auto;
}

.wiki_panel_content_max{
    padding: 15px;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

.wiki_panel_content_extra_large{
    max-width: 1332px;
}

.wiki_panel_content_header_text{
    font-size: 26px;
    font-weight: bold;
    padding-bottom: 20px;
    text-align: center;
}

.wiki_panel_content_header_text_left{
    font-size: 26px;
    font-weight: bold;
    padding-bottom: 20px;
    text-align: left;
}

.top_padding{
    padding-top: 22px;
}

.ai_red{
    color: #ee4c4c;
}

.ai_aqua{
    color: #05f5ff;
}

#wp_faq{
    padding-top: 0 !important;
}

/*! Accordion */
.accordion  {
    overflow: hidden;
    flex: 1 1 570px;
    margin: 10px;
    border-radius: 20px;
    border: 1px solid #35333f;
    box-sizing: border-box;
    height: min-content;
    flex-direction: column;
    display: flex;
    flex-wrap: wrap;
}

.accordion_button  {
    background-color: #0e0d17;
    color: #ddd;
    cursor: pointer;
    padding: 28px;
    width: 100%;
    border: none;
    outline: none;
    transition: 0.4s;    
    display: flex;
    align-items: center;
    min-height: 70px;
    text-align: left;
    gap: 19px;
}

.accordion_button.acord_active, .accordion_button:hover {
    background-color: #21202b;
}

.acordicon {
    color: var(--base_text_color);
    font-size: 19px;
}

.accordion_content {
    max-height: 0;
    padding: 0 18px;
    overflow: hidden;
    background-color: #0e0d17;
    /* border-top: 1px solid #35333f; */
    transition: max-height 0.5s ease;
}



/*! end accordion */

.active:after {
    content: "\2212";
}

.mobile_flex_column{
    
}

.wiki_header_warning{
    font-size: 21px;
    padding-bottom: 20px;
}

.wiki_panel_full_content{
    padding: 15px;
    max-width: max-content;
    width: -webkit-fill-available;
    width: -moz-available;
}


.wiki_panel_full_content img{
    width: -webkit-fill-available;
    width: -moz-available;
    height: max-content;
    max-height: 496px;
    max-width: 250px; /*TODO check this*/
}

.gallery_img{
    width: auto !important;
    height: 100% !important;
    max-height: 180px !important;
    max-width: 100%;
    object-fit: cover;
}

/*! News scroll (nd = news data) */
.nd_slider_container {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    max-width: 1263px;

    outline: none; 
    -webkit-tap-highlight-color: transparent; 

    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Chrome Opera */
}



.nd_image_slider {
    overflow: hidden;
    display: flex;
    align-items: center;
    margin: 0 40px;
}

.nd_slider_wrapper {
    transition: transform 0.5s ease;
    display: inline-flex;
}

.nd_arrow {
    position: absolute;
    top: 44%;
    transform: translateY(-50%);
    cursor: pointer;
    background-color: transparent;
    border: none;
    padding: 10px;
    z-index: 2;
    color: inherit;
    transition: all 0.2s ease;
    font-size: 30px;
}

.nd_arrow:hover{
    background-color: #42424285;
    color:white;
    border-radius: 50px;
}

.nd_left_arrow {
    left: 0;
}

.nd_right_arrow {
    right: 0;
}




.product_disabled{
    /* filter: grayscale(1) contrast(0.5); */
    transition: filter 0.5s ease; 
}

.product_disabled:hover{
    filter: none;
}

.login_register_url{
    position: relative;
    margin-right: 40px;
    line-height: 2.3;
}

.coin{
    width: 23px !important;
    position: relative;
}

.coin_row {
    display: inline-flex;
    gap: 3px;
    padding: 0 3px;
    align-items: center;
}

.coin_alone{
    width: 23px !important;
    position: relative;
    top: 4px;
    left: 2px;
}

.shop_panel_container {
    margin-top: 30px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", "Ubuntu", sans-serif;
    font-weight: 600;
}

.shop_panel_row_title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.shop_panel_row {
    display: flex;
    gap: 20px;
    width: 100%;
    color: white;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    padding: 50px 0;
    align-items: baseline;
    flex-wrap: wrap;
}

/*! region badge and highlight*/
    .shop_panel_row_item.is_highlight {
        -ms-flex-item-align: start;
        -webkit-align-self: flex-start;
        align-self: flex-start;
        background-color: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-top: -34px;
        border-radius: 14px;
    }

    .shop_panel_row_item_badge {
        margin-bottom: 16px;

        box-sizing: border-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .badge.is_highlightbadge {
        background-color: rgba(0, 0, 0, .2);
        color: var(--checkout-white);
    }

    .badge {
        -ms-flex-item-align: center;
        -webkit-align-self: center;
        align-self: center;
        border-radius: 4px;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        height: 18px;
        overflow: hidden;
        padding: 2px 6px;
        position: relative;
        text-align: center;
    }

    .badge_text{
        margin: 0;
        font-size: 12px;
        font-weight: 500;
    }

    .badge.is_highlightbadge:before {
        -webkit-animation: badgeHighlightShimmer 3.5s;
        animation: badgeHighlightShimmer 3.5s;
        -webkit-animation-delay: 1.8s;
        animation-delay: 1.8s;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .18) 25%, rgba(255, 255, 255, .3) 50%, rgba(255, 255, 255, .18) 75%, rgba(255, 255, 255, 0));
        content: "";
        display: block;
        height: 90px;
        left: -60%;
        position: absolute;
        top: -150px;
        -webkit-transform: rotate(-25deg);
        -ms-transform: rotate(-25deg);
        transform: rotate(-25deg);
        width: 200px;
    }

    @-webkit-keyframes badgeHighlightShimmer {
        0% {
            left: -100%;
            top: -150px
        }

        50% {
            left: 100%;
            top: 150px
        }

        to {
            left: 100%;
            top: 150px
        }
    }

    @keyframes badgeHighlightShimmer {
        0% {
            left: -100%;
            top: -150px
        }

        50% {
            left: 100%;
            top: 150px
        }

        to {
            left: 100%;
            top: 150px
        }
    }
/*! endregion*/

.star_container{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.rating_star{
    color: rgb(100, 100, 100);
    padding-right: 5px;
    transition: text-shadow 0.3s ease-in-out;
    transition: filter 0.3s ease-in-out;

}

.rating_star.shine {
    animation: shine 1s forwards;
}

@keyframes shine {
    0% {
        text-shadow: none;
    }
    50% {
        filter: brightness(10);
        text-shadow: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 30px currentColor, 0 0 40px currentColor;
    }
    100% {
        filter: brightness(1);
        text-shadow: 0 0 5px currentColor, 0 0 10px currentColor, 0 0 15px currentColor, 0 0 20px currentColor;
    }
}

.star_checked{
    color: gold;
}

.rating_star:hover{
    cursor: pointer;
}

.flex_container {
    box-sizing: border-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.align_items_center {
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.flex_col{
    flex-direction: column;
}

.shop_panel_pack_item{
    min-height: 407px !important
}

.shop_panel_row_item {
    width: 256px;
    display: flex;
    flex-direction: column;
    padding: 34px;
    min-height: 553px;
}

.shop_panel_row_item img {
    border-radius: 6px;
}

.shop_panel_row_item_title {
    font-size: 20px;
    font-weight: 600;
    display: block;
    padding-bottom: 18px;
    padding-top: 10px;
    text-align: center;
}

.tier_total_column{
    padding-bottom: 14px;
    font-size: 21px;
    text-align: center;
}

.shop_panel_tier_subrow{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.shop_panel_row_item_description {
    font-size: 16px;
    display: flex;
    gap: 14px;
    color: #cacaca;
    justify-content: center;
    padding-bottom: 22px;
}

.shop_panel_row_item_description span {
    margin: 0 !important;
}

.shop_no_ul_description{
    text-align: center;
    padding-bottom: 18px !important;
}

.shop_ul
{
    list-style-type: none;
    padding: 0;
    padding-left: 14px;
}

.shop_ul li {
    position: relative;
    padding-left: 30px; 
}

.shop_ul li:before {
    content: "\f058";
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    left: 0;
    top: 3px;
    color: rgb(128 128 128);
    font-weight: 900;
    font-size: 18px;
}

.shop_panel_row_item_value {
    display: flex;
    flex-direction: row;
    align-items: center;
    line-height: 1.1;
    gap: 5px;
    padding-top: 10px;
}

.shop_panel_row_item_button {
    width: 100%;
    height: 44px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    background-color: #d6007d;
    color: white;
    margin-top: 10px;
    font-weight: 600;
    margin-top: 20px;
}

.shop_more_info_button {
    width: auto;
    height: 38px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    background-color: #e0e0e0;
    color: black;
    font-weight: 600;
    margin-left: auto;
}

.shop_active_button {
    background-color: #3c3c3c;
}



.spr_price{
    font-size: 36px;
    font-weight: 700;
}

.spr_label{
    font-size: 13px;
    opacity: 0.7;
    font-weight: 400;
    margin-top: 2px;
}

.wiki_panel_content_data {
    margin-top: -13px;
}

.wiki_panel_content_data ul
{
    padding-left: 20px;
    padding-top: 30px;
    color: var(--pink_primary_color);
    
}

.hidden{
    display: none;
}

.header_bar{
    font-weight: bolder;
    font-size: 21px;
    display: flex;
    justify-content: space-between;
    min-height: 70px;
    align-items: center;
    width: 100%;
    z-index: 50;
    background-color: var(--base_soft_color);
    padding: 0 13px;
    box-sizing: border-box;
}

.header_bar a{
    color: #fb4baa !important;
}

.logged_header_bar{
    display: flex;
    justify-content: flex-end;
}

.internal_ul{
    padding: revert !important;
    color: orange !important;
    padding-bottom: 5px !important;
}

.pointer{
    cursor: pointer;
    font-weight: bold;
}

.back_button{
    cursor: pointer;
    font-weight: bold;
    font-size: 28px;
    color: #565454;
}
.back_button:hover{
    color: gray;
}

.logout_link
{
    font-size: 17px;
    color: #fb4baa;
    cursor: pointer;
    font-weight: bold;
}

.highlighted_entry{
    font-weight: bold;
}

.premium_menu_link
{
    font-size: 17px;
    color: #fb4baa;
    cursor: pointer;
}

.p_footer{
    font-size: 16px;
}

.news{
    color: #ff93ff;
}

.page_menu{
    text-wrap: nowrap;
    padding-right: 20px;
}

.downloads
{
    width: 70%;
    max-width: 1024px;
    min-width: 305px;
    margin: 0 auto;
    text-align: center;
}

.rinin_container
{
    width: 100%;
    display: flex;
    position: relative;
    flex-grow: 1;
}

.rinin_container_title
{
    width: 70%;
    max-width: 1024px;
    min-width: 305px;
    margin: 0 auto;
    text-align: center;
}

.rinin_main_col1
{
    display: none;
    width: 30%;
    max-width: 393px;
    overflow: hidden;
    transition: all 0.3s linear;
}

.rinin_main_col2
{
    width: 100%;
    width: inherit;
    overflow-x: hidden;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.download_grid {
    display: grid;
    grid-template-columns: 0fr 1fr;
    gap: 10px;
    width: 100%;
    column-gap: 20px;
    margin-bottom: 20px;
}

.version_title {
    grid-column: span 2;
    padding-bottom: 7px;
}

.d_icon{
    max-width: 75px;
}


a {
    text-decoration: underline;
    color: var(--pink_primary_color);
}

a:hover {
    color: rgb(255, 166, 224); 
}

a:focus {
    outline: none;
}

a:active {
}

.diamond_tier{
    color: #61cdfb;
    font-weight: bolder;
    font-size: 17px;
}

.gold_tier{
    color: orange;
    font-weight: bolder;
    font-size: 17px;
}

.silver_tier{
    color: rgb(219 219 219);
    font-weight: bolder;
    font-size: 17px;
}

.info_free_tier{
    color: rgb(204, 204, 204);
    font-weight: bolder;
    font-size: 17px;
}

.premium{
    color: rgb(219 22 22);
    font-weight: bolder;
    font-size: 17px;
}

.non_premium, .free_tier,.inactive_tier{
    color: orange;
    font-weight: bolder;
    /* text-transform: uppercase; */
    font-size: 17px;
}

.my_account {
    font-size: 17px;
    color: #fb4baa;
    margin-right: 30px;
    font-weight: bold;
}

.user_data_mail{
    text-wrap: nowrap;
    padding-left: 20px;
}

/* Fonts */
@font-face {
    font-family: poppins_bolder;
    src: url(../fonts/Poppins-SemiBold.ttf);
  }

@font-face {
    font-family: poppins_bold;
    src: url(../fonts/Poppins-Medium.ttf);
  }
  
@font-face {
    font-family: poppins_regular;
    src: url(../fonts/Poppins-Light.ttf);
}

.poppins_regular{
    font-family: poppins_regular;
}

.poppins_bold{
    font-family: poppins_bold;
}

.poppins_bolder{
    font-family: poppins_bolder;
}

.icon_flex{
    display: flex;
    width: 100%;
    justify-content: center;
}


/*! Events */
.am_event_panel{
    display: flex;
    justify-content: center;
    padding: 15px;
    align-items: center;
    gap: 20px;    
    margin: 0 auto;
    width: 100%;
    max-width: 1660px;
}

.am_event_panel_col1{
    display: flex;
    flex-direction: column;
    min-width: 200px;
    width: 35.5%;
    max-width: 600px;
}

.am_event_panel_col2{
    display: flex;
    flex-direction: column;
    width: 65%;
    max-width: 1060px;
    gap: 27px;
}

/* Text animation from white to gold in breathing effect */
.breathing_effect {
    animation: breathing_effect 2s ease-in-out infinite;
    text-decoration: none;
}

@keyframes promo_cycle {
    0%, 100% {
        color: rgb(202 196 231);; 
    }
    50% {
        color: transparent; 
    }
  }

.promo_text{
    animation: promo_cycle 2s infinite;
    padding-bottom: 20px;
    cursor: pointer;
    width: fit-content;
    margin: 0 auto;
    margin-top: -20px;
}


.event_banner{
    cursor: pointer;
    position: relative;
}

.banner_image_info img{
    width: 100%;
}

.event_info {
    max-width: 970px;
    text-align: left;
    font-size: 17px;
}

.event_infnite_data{
    font-size: 50px;
    line-height: 1;
}

.banner_progress{
    position: absolute;
    right: 25px;
    z-index: 2;
    bottom: 8px;
    font-weight: bolder;
    font-size: 31px;
    font-family: 'poppins_bold';
}

.banner_progress_current{
    color: #5dc1e6;
}


.banner_progress_total{
    color: #1f424f;
}

.event_banner img{
    z-index: 1;
    position: relative;
    width: 100%;
}

.input_select_story {
    height: 40px;
    border: none;
    background-color: #3b3b3b;
    color: var(--pink_primary_color);
    font-size: 20px;
    text-align: center;
    width: auto;
    padding: 5px 40px;
    box-sizing: content-box;
}

.input_select_story option {
    text-align: left;
}


.input_select {
    height: 40px;
    border: none;
    width: 100%;
    background-color: #3b3b3b;
    color: var(--pink_primary_color);
    max-width: 200px;
    font-size: 22px;
    text-align: center;
}

.row_container {
    width: 100%;
    margin-bottom: 20px;
}

.d_iconv2 {
    padding-top: 5px;
    width: 100%;
}

.icon_col{
    width: 100%;
    max-width: 90px;
    padding-right: 15px;
    padding-left: 15px;
}

/* @media only screen and (max-device-width: 2330px) {

    .main_page_body{
        transform: scale(1.4);
    }

}

@media only screen and (max-device-width: 1800px) {

    .main_page_body{
        transform: scale(1.3);
    }

} */

/*! Image browser */
#im_image_expandable {
    transition: transform 0.5s ease-in-out;
    cursor: pointer;
}

#im_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* High enough to be above other elements */
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s ease-in-out;
    flex-direction: column;
    gap: 20px;
}

#im_overlay.show {
    visibility: visible;
    opacity: 1;
}


#im_image_enlarged {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.download_img_overlay{
    font-size: 24px;
    cursor: pointer;
    font-weight: bold;
}

.full_content{
    background-color: var(--base_dark_color);
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.story_content_icons{
    display: flex;
    position: absolute;
    top: 9px;
    right: 41px;
    gap: 10px;
    pointer-events: none;
}

.story_content_icons * {
    pointer-events: none; 
  }

.story_content_icon{
    display: flex;
    border-radius: 40px;
    background-color: rgb(198 0 88);
    color: white;
    padding: 12px;
    position: relative;
    align-items: center;
    width: fit-content;
    height: auto;
    gap: 7px;
    box-shadow: 0px 0px 8px 2px rgb(0 0 0);
    font-size: 25px;
}

.st_icon_counter_span{
    font-size: 16px;
}

.st_icon_counter{
    border-radius: 40px;
    background-color: rgb(198 0 88);
    font-size: 13px;
    color: white;
    position: absolute;
    top: -10px;
    left: 31px;
    padding: 5px;
    width: fit-content;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.gift_box
{
    position: absolute;
    width: 150px;
    height: 150px;
    top: 94px;
    right: 20px;
    z-index: 9999;
    cursor: pointer;

    animation: bounce-effect 2s infinite;
    animation-delay: 2s;
    animation-timing-function: cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

.gift_box_sample {
    position: relative;
    width: 150px;
    height: 150px;
    z-index: 9999;
    animation: bounce-effect 2s infinite;
    animation-delay: 2s;
    animation-timing-function: cubic-bezier(0.36, 0.07, 0.19, 0.97);
    margin: 0 auto;
}

.gift_box_image img
{
    width: 100%;
}

@keyframes bounce-effect {
    0%, 100% {
      transform: rotate(0deg);
    }
    10% {
      transform: rotate(14deg);
    }
    20% {
      transform: rotate(-8deg);
    }
    30% {
      transform: rotate(14deg);
    }
    40% {
      transform: rotate(-4deg);
    }
    50% {
      transform: rotate(10deg);
    }
    60% {
      transform: rotate(0deg);
    }
    70% {
      transform: rotate(5deg);
    }
    80%, 90% {
      transform: rotate(0deg);
    }
  }

.general_ui{
    border-radius: 14px;
}

.register_form{
    width: 90%;
    max-width: 260px;
}

.form_errors{
    color: #df5569;
    text-align: center;
    display: block;
    padding-top: 0px;
    font-size: 12px;
}


/*! Disqus */
.global_disqus_block{
    width: 100%;
    background-color: var(--base_dark_color);
    padding: 50px;
    box-sizing: border-box;
    padding-bottom: 12px;
}

#disqus_thread {
    transform: scale(1.3); 
    /* transform-origin: top left;*/
    width: 76.92%; 
    max-width: 1000px;

    transform-origin: top center;
    margin: 0 auto;
}

#disqus_thread iframe {
    zoom: 1.35;
}

.embed-refresh-v2 .avatar .user--refresh {
    width: 72px;
    height: 72px;
    border-radius: 8px;
}




@media only screen and (max-device-width: 1650px) {

    .main_page_body{
        transform: scale(1.1);
    }

}

@media only screen and (max-device-width: 1200px) {

    .main_page_body{
        transform: scale(1);
    }

}


@media only screen and (max-device-width: 1119px) {   


    .desktop_menu_entry{
        display: none;
    }

    .desktop_notification{
        display: none;
    }

    .menu_list{
        padding: 0;
    }

    .main_floating_menu {
        position: fixed;
        background-color: #252525;
        min-width: 300px;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        z-index: 60;
        padding: 30px;
        top: 0;
        left: 0;
        font-size: 16px;
        border-radius: 8px;
        color: #96959c;
        width: 100%;
        height: 90vh;
        box-sizing: border-box;
        overflow: scroll;
    }

    .main_floating_menu_table {
        flex-wrap: wrap;
    }

    .story_gallery {
        padding: 0;
        margin-top: -10px;
    }

    .product_item{
        padding: 28px;
        padding-top: 19px;
    }

    .story_content_icons {
        display: flex;
        position: absolute;
        top: 4px;
        right: 24px;
        gap: 10px;
        pointer-events: none;
        zoom: 0.7;
    }
}


@media only screen and (max-device-width: 960px) {

    .am_event_panel {
        max-width: 100%;
    }

    .am_event_panel_col1
    {
        display: none;
    }

    .am_event_panel_col2 {
        width: 100%;
        max-width: 100%;
        gap: 60px;
    }

    .banner_progress {
        right: 37px;
        bottom: 13px;
        font-size: 52px;
    }

    .event_infnite_data{
        font-size: 90px;
    }

}

@media only screen and (max-device-width: 767px) {   

    .star_container {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 40px;
        gap: 11px;
    }

    .wiki_panel_content_max {
        padding: 0;
        padding-top: 15px;
    }

    .accordion {
        flex-basis: calc(100% - 20px);
    }

    .shop_panel_row {
        display: flex;
        gap: 20px;
        width: 100%;
        color: white;
        padding-top: 0;
        align-items: center;
        justify-content: center;
        margin-top: -41px;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: center;
    }

    .shop_panel_row_item.is_highlight {
        margin-top: -10px;
    }

    .switch_container_not_logged_in
    {
        margin-left: 0px !important; 
    }

    .wiki_panel_full_content{
        padding: 15px 0;
    }

    .login_register_url{
        margin-right: 10px;
    }

    .story_content_icons {
        display: flex;
        position: absolute;
        top: -8px;
        right: 19px;
        gap: 10px;
        pointer-events: none;
        zoom: 0.7;
    }

    .gift_box {
        position: absolute;
        width: 150px;
        height: 150px;
        top: -7px;
        right: 6px;
        z-index: 999999;
        cursor: pointer;
        animation: bounce-effect 2s infinite;
        animation-delay: 2s;
        animation-timing-function: cubic-bezier(0.36, 0.07, 0.19, 0.97);
    }

    #disqus_thread {
        transform: scale(1);
        transform-origin: top left;
        width: 100%;
    } 

    .global_disqus_block {
        width: 100%;
        background-color: var(--base_dark_color);
        padding: 16px;
        box-sizing: border-box;
        padding-bottom: 16px;
    }

    #disqus_thread iframe {
        zoom: normal;
    }



    .account_tier_explanation {
        align-items: center;
    }

    .user_account_sub_flex {
        align-items: center;
    }

    .user_account_sub_flex .user_account_container_data_label{
        text-align: center;
    }

    .user_account_container_right_row {
        align-items: center;
        gap: 29px;
    }


    .general_left_panel{
        padding: 0;
        padding-top: 20px;
    }

    .user_account_container_data_row .cc_input{
        text-align: center;
        width: 80%;
        height: 50px;
    }

    .user_account_container_data_row {
        display: flex;
        position: relative;
        width: 100%;
        align-items: center;
        flex-direction: column;
        gap: 9px;
        align-content: center;
        flex-wrap: wrap;
        text-align: center;
        align-items: center !important;
    }

    .mobile_center_flex{
        justify-content: center;
    }

    .user_account_container {
        flex-direction: column;
        align-items: center;
        padding-bottom: 50px;
    }

    .cc_input, .cc_textarea, .cc_select, .cc_button, .cc_file_input {
        width: 100%;
    }

    .cc_clear_button, .cc_remove_button {
        margin-left: 0px;
    }


    .cs_manage_chapters{
        flex-wrap: nowrap;
    }

    .mobile_flex_column{
        flex-direction: column;
    }

    .red_button {
        font-size: 15px;
        padding: 0 13px;
        line-height: 2.4;
        height: auto;
        
    }

    .login_register_url{
        position: absolute;
        right: 0;
    }

    .wiki_panel_content_header_text{
        /* display: flex; 
        text-align: center;
        flex-direction: column; */
    }

    .rinin_header{
        min-height: 70px;
        max-height: 70px;
    }

    .rinin_header_img{
        height: 70px;
    }


    .rinin_header_img_reader {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: top left;
        display: block;
        min-height: 115px;
    }

    .mr_header_bar {
        width: 100%;
        height: auto;
        display: flex;
        padding: 20px 0;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 20px;
        justify-content: space-between;
    }

    .mr_header_bar_data {
        order: 0;
        width: 100%;
    }

    .mr_header_icon {
        order: 1;
    }

    .mr_header_icons_right {
        order: 2;
    }



    .cm_textarea {
        min-width: auto;
        min-height: 150px;
    }



    .form_image_gallery_col2{
        width: 100%;
    }

    .purchase_button {
        margin: 0 auto;
    }

    .cs_edit_story_buttons_container {
        display: flex;
        padding: 15px 0;
        flex-direction: column;
        gap: 10px;
        max-width: 1050;
        align-items: center;
        flex-wrap: nowrap;
    }

    .cloud_tag {
        width: 130%;
        display: flex;
        flex-direction: row;
        padding: 21px 0px;
        gap: 3px 8px;
        flex-grow: 0;
        justify-content: center;
        align-content: center;
        flex-wrap: wrap;
    }

    .selection_tag_block {
        display: flex;
        background-color: #2d2d2d;
        padding: 15px;
        border-radius: 20px;
        flex-wrap: wrap;
        width: 110%;
        gap: 12px 2px;
        margin-top: 20px;
    }


    .cm_form_cover {
        width: 100% !important;
    }

    .image_viewer,.cm_input {
        width: 100%;
    }

    .image_viewer {
        flex-wrap: nowrap;
    }

    .cm_input {
        font-size: 20px;
    }

    .image_viewer_image
    {
        width: 100% !important;
        height: auto !important;
    }

    .image_viewer_data {
        width: 100%;
        display: flex;
        font-size: 17px;
        padding-top: 30px;
        max-width: 1000px;
        align-items: center;
        flex-direction: column;
    }    

    .image_viewer_row {
        display: flex;
        border: solid #4d4d4d;
        border-width: 1px 0px 0px 1px;
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        margin-bottom: 30px;
        width: 100%;
    }

    .purchase_row{
        order: -1;
    }

    .image_viewer_label {
        border: solid #434343;
        border-width: 0 1px 1px 0;
        width: auto;
        font-weight: bold;
        min-width: 210px;
        padding: 10px 12px;
    }



    .gallery_img {
        /* width: 100px !important;
        height: auto !important;
        max-height: inherit !important; */
    }

    .image_gallery_item{
        max-width: 100%;
        min-width: 100px;
        display: flex;
        padding: 20px 8px;
        flex-direction: column;
        cursor: pointer;
        align-items: center;
    }

    .form_image_gallery_row {
        max-width: 230px;
    }

    .form_image_gallery_col2_row {
        flex-direction: column;
        align-items: center;
        max-width: 220px;
        text-align: center;
    }

    .form_image_gallery_row input {
        margin: 10px 0px;
    }

    .form_image_gallery_row textarea {
        margin: 10px 0px;
        max-width: 100%;
    }



    .manga_page_header_text{
        padding-left: 0;
        text-align: center;
    }

    .user_block{
        flex-direction: column;
    }

    .rinin_main_col1_closed{
        width: 90% !important;
    }

    .button_menu_button{        
        margin: 0;
    }

    .main_page_body{
        transform: scale(1.2);
    }

    .header_bar{
        font-size: 17px !important;
        justify-content: center;
        gap: 12px;
        padding: 0;
        align-items: center;
    }

    .back_button {
        cursor: pointer;
        font-weight: bold;
        font-size: 33px;
        position: absolute;
        top: -51px;
        right: 17px;
    }

    .p_footer{
        font-size: 17px !important;
    }


    .rinin_wrapper{
        font-size: 14px !important;
    }


    .logged_header_bar {
        font-size: 16px;
        justify-content: center;
        margin-left: -0px;
        width: 100%;
    }

    .premium {
        font-size: 16px;
    }

    .user_data_mail{
        width: 80%;
    }

    .p_footer_general {
        font-size: 17px;
    }

    .rinin_container {
        flex-direction: column;
        align-items: center;
    }

    .rinin_main_col1, .rinin_main_col2{
        padding-top: 20px;
        padding-top: 0;
        overflow: hidden;
        width: 100%;
        max-width: initial;
    }

    .rinin_main_col1 {
        position: absolute;
        height: -webkit-fill-available;
        height: -moz-available;
        background-color: var(--base_soft_color);
        top: 0;
        z-index: 999;
        transition: left 0.3s linear;
        overflow-y: scroll;
        padding: 0;
        left: 50%;
        transform: translateX(-50.1%);
        width: 91%;
        padding-bottom: 50px;
    }

    .rinin_main_col1_open{
        left: 0 !important;
        transition: all 0.3s linear;
    }

    

    .my_account {
        margin-right: 12px;
    }

    .page_menu{
        text-align: center;
        display: flex;
        position: relative;
        flex-wrap: wrap;
        align-items: center;
    }

    .main_wrapper {
        height: auto;
        background-color: var(--base_soft_color);
        position: relative;
        margin-top: 0;
        padding: 0px;
    }

    .menu_container{
        width: auto;
        padding-left: 0px;
        display: flex;
        justify-content: center;
    }

    .menu_header{
        margin: 0 auto;
    }

    .menu_list{
        padding-left: 0px;
    }

    .menu_list ul{
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

    .menu_list ul li{
        display: flex;
        justify-content: center;
        background-color: #232323;
        border-bottom: 1px solid black;
    }

    .menu_list ul li a{
        text-decoration: none;
        cursor: pointer;
        height: 40px;
        display: flex;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
        text-align: center;
        font-size: 16px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .store_panel{
        width: auto;
        padding-bottom: 20px;
        min-height: auto;
    }

    .wiki_panel{
        width: auto;
        padding-bottom: 20px;
        min-height: auto;
    }

    .wiki_panel_content_extra_large{
        width: 73%;
    }

    .store_buttons{
        width: 200px;
        flex-direction: column-reverse;
    }

    .page_menu{
        padding-right: 0;
    }

    .story_gallery {
        padding: 0;
        margin-top: -10px;
    }

    .product_item{
        padding: 15px;
        padding-top: 19px;
    }

}


/*! Mobile 2, only place here when is absolutely necessary to wait between 767 and 681px to change */
@media only screen and (max-device-width: 681px) {
    .genre_tags {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .genre_tag {
        padding: 2px 16px;
        margin-right: 7px;
        margin-bottom: 16px;
    }

    .manga_info_page {
        display: flex;
        padding: 15px;
        flex-wrap: wrap;
        justify-content: center;
        padding-top: 0px;
        margin-top: 25px;
    }

    .manga_info_page_col2 {
        display: flex;
        flex-direction: column;
        padding: 0;
        padding-top: 50px;
    }

}


@media only screen and (max-device-width: 482px) {
    .main_floating_menu_column {
        width: 100%;
    }

}