/*
Theme Name: MND CPG17 - Kate Edition
Author: Monica
Author URI: http://monican.stars.bz
Description: A responsive Coppermine theme inspired by "Kate" Netflix movie.
Version: 2023.1.0
*/

/*
Table of Contents:
1.0 - Main (Kate Style)
2.0 - Structure
3.0 - Menu (Kate Style)
4.0 - Header (Original)
5.0 - Footer (Kate Style)
6.0 - CPG Menu (Kate Style)
7.0 - CPG Content
8.0 - Forms (Kate Style)
9.0 - Images (Kate Style)
10.0 - Tables (Kate Style)
11.0 - Statlinks (Kate Style)
12.0 - Categories (Kate Style)
13.0 - Albums (Kate Style)
14.0 - Thumbnails (Kate Style)
15.0 - Sort order (Kate Style)
16.0 - Preview (Kate Style)
17.0 - Administrator (Kate Style)
18.0 - Miscellaneous (Kate Style)
19.0 - No Edit
20.0 - Responsive
-------------------------------------------------------------- */

/* 1.0 Main - Kate Style
-------------------------------------------------------------- */
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font: 14px/25px 'Lato', sans-serif;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    color: #e0e0e0;
    background: #0a0a0a url('images/dark-texture.jpg') repeat;
}

a {
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    text-decoration: none;
    color: #c77adf;
}

a:hover,
a:focus {
    color: #ff4d8d;
    text-shadow: 0 0 5px rgba(255, 77, 141, 0.5);
}

/* 2.0 Structure
-------------------------------------------------------------- */
.site-content,
.site-container {
    max-width: 1100px;
    margin: 0 auto;
    background-color: rgba(10, 10, 10, 0.9);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

.site-content:before,
.site-content:after,
.site-navigation:before,
.site-navigation:after {
    display: table;
    content: '';
}

.site-content:after,
.site-navigation:after {
    clear: both;
}

/* 3.0 Menu - Kate Style
-------------------------------------------------------------- */
.site-navigation {
    line-height: 20px;
    background: rgba(20, 20, 20, 0.9);
    border-bottom: 1px solid #4a1a4a;
}

.site-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-navigation li,
.main-navigation,
.social-navigation {
    display: inline-block;
}

.site-navigation a {
    display: inline-block;
    color: #e0e0e0;
}

.site-navigation a:hover,
.site-navigation a:focus {
    color: #ff4d8d;
}

.main-navigation {
    float: left;
    text-transform: uppercase;
}

.main-navigation li {
    margin: 0 25px 0 0;
}

.main-navigation a {
    font-size: 11px;
    padding: 15px 0;
    letter-spacing: 1px;
}

.social-navigation {
    float: right;
}

.social-navigation li {
    margin: 0 0 0 10px;
}

.social-navigation a {
    padding: 15px 0 14px 0;
}

.social-navigation a:before {
    font-family: FontAwesome;
    content: '\f1e0';
}

.social-navigation a[href*='facebook.com']:before {
    content: '\f09a';
}

.social-navigation a[href*='plus.google.com']:before {
    content: '\f0d5';
}

.social-navigation a[href*='instagram.com']:before {
    content: '\f16d';
}

.social-navigation a[href*='tumblr.com']:before {
    content: '\f173';
}

.social-navigation a[href*='twitter.com']:before {
    content: '\f099';
}

.social-navigation a[href*='youtube.com']:before {
    content: '\f16a';
}

.social-navigation a[href*='mailto:']:before,
.social-navigation a[href$='/contact/']:before {
    content: '\f0e0';
}

.social-navigation a[href$='/feed/']:before {
    content: '\f09e';
}

/* 4.0 Header - Original
-------------------------------------------------------------- */
.site-header {
    height: 430px;
    margin: 0 0 35px 0;
    background: url(images/header.jpg) no-repeat center;
    background-size: cover;
}

.site-branding {
    text-align: center;
    text-transform: uppercase;
}

.site-branding .site-container {
    padding: 33px 0;
    border-bottom: 1px solid #4a1a4a;
}

.site-title {
    font: 400 37px/38px 'Playfair Display', serif;
    margin: 5px 0;
    letter-spacing: 4px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.site-title span {
    color: #ae07f5;
}

.site-tagline {
    font-size: 11px;
    margin: 5px 0;
    letter-spacing: 2px;
    color: #aaa;
}

/* 5.0 Footer - Kate Style
-------------------------------------------------------------- */
.site-footer {
    padding: 20px 0;
    background-color: rgba(10, 10, 10, 0.9);
    border-top: 1px solid #4a1a4a;
}

.site-info {
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    color: #c77adf;
}

.site-disclaimer {
    margin: 10px 0 0 0;
    padding: 10px 0 0 0;
    border-top: 1px solid #4a1a4a;
    color: #888;
}

/* 6.0 CPG Menu - Kate Style
-------------------------------------------------------------- */
.cpg-navigation {
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    margin: 0 0 25px 0;
    padding: 9px 10px;
    text-align: center;
    text-transform: uppercase;
    background: linear-gradient(to right, #1a0a1a, #330033, #1a0a1a);
    border: 1px solid #4a1a4a;
}

.cpg-navigation a {
    padding: 5px;
    color: #e0e0e0;
}

.cpg-navigation a:hover,
.cpg-navigation a:focus {
    text-decoration: underline;
    color: #ff4d8d;
}

/* 7.0 CPG Content
-------------------------------------------------------------- */
.content-area {
    margin: 25px 0;
    padding: 15px;
    background-color: rgba(20, 20, 20, 0.7);
    border: 1px solid #333;
}

/* 8.0 Forms - Kate Style
-------------------------------------------------------------- */
.textinput {
    padding-right: 3px;
    padding-left: 3px;
    border: 1px solid #4a1a4a;
    background-color: #1a0a1a;
    color: #e0e0e0;
}

.listbox {
    vertical-align: middle;
    border: 1px solid #4a1a4a;
    background-color: #1a0a1a;
    color: #e0e0e0;
}

.button,
.buttonlist ul li a {
    font-size: 10px;
    line-height: 19px;
    margin-right: 2px;
    padding: 0 3px;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    white-space: nowrap;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid #c77adf;
    background: linear-gradient(to bottom, #6a2a6a, #4a1a4a);
}

.button:hover,
.buttonlist ul li a:hover,
.button:focus,
.buttonlist ul li a:focus {
    color: #fff;
    border: 1px solid #ff4d8d;
    background: linear-gradient(to bottom, #ff4d8d, #c73a73);
}

.radio,
.checkbox {
    vertical-align: middle;
}

/* 9.0 Images - Kate Style
-------------------------------------------------------------- */
.image {
    margin: 3px;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    border: 1px solid #333;
    box-shadow: 0 0 10px rgba(199, 122, 223, 0.3);
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.image:hover {
    opacity: .9;
    box-shadow: 0 0 15px rgba(255, 77, 141, 0.5);
}

/* 10.0 Tables - Kate Style
-------------------------------------------------------------- */
.tableb {
    padding: 5px 10px;
    background-color: rgba(20, 20, 20, 0.7);
    border: 1px solid #333;
}

.tableb_alternate {
    padding-top: 0;
    padding-bottom: 0;
    background-color: rgba(30, 30, 30, 0.7);
}

.tablef {
    padding: 10px;
    background: linear-gradient(to right, #1a0a1a, #330033, #1a0a1a);
}

/* 11.0 Statlinks - Kate Style
-------------------------------------------------------------- */
.tableh1 {
    font: 400 29px/1.2 'Playfair Display', serif;
    padding: 10px;
    color: #c77adf;
    text-shadow: 1px 1px 2px #000;
}

.statlink {
    font-size: 14px;
    line-height: 25px;
}

.statlink a {
    color: #c77adf;
}

.statlink a:hover,
.statlink a:focus {
    color: #ff4d8d;
}

/* 12.0 Categories - Kate Style
-------------------------------------------------------------- */
.catrow_noalb,
.catrow {
    padding: 10px;
    border-bottom: 1px solid #333;
}

.catlink {
    font-size: 15px;
    font-weight: 700;
    display: block;
}

.catlink a {
    color: #c77adf;
}

.catlink a:hover,
.catlink a:focus {
    color: #ff4d8d;
}

/* 13.0 Albums - Kate Style
-------------------------------------------------------------- */
.tableh2 {
    font-weight: 700;
    line-height: 21px;
    padding: 12px 10px;
    background: linear-gradient(to right, #1a0a1a, #330033, #1a0a1a);
    color: #e0e0e0;
}

.alblink {
    font-weight: 700;
}

.alblink a {
    color: #c77adf;
}

.alblink a:hover,
.alblink a:focus {
    color: #ff4d8d;
}

.album_stat {
    font-size: 85%;
    margin: 5px 0;
    color: #aaa;
}

.tableb p {
    line-height: 1.5;
    margin: 0;
    padding: 10px 0 0 0;
    color: #e0e0e0;
}

p.album_stat {
    padding: 5px 0 0 0;
}

/* 14.0 Thumbnails - Kate Style
-------------------------------------------------------------- */
.thumbnails {
    padding: 10px;
}

.thumb_filename {
    font-size: 80%;
    line-height: 1.5;
    display: block;
    color: #aaa;
}

.thumb_title {
    font-size: 80%;
    font-weight: 700;
    line-height: 1.5;
    display: block;
    margin: 2px 5px;
    padding: 5px 10px;
    background-color: rgba(30, 30, 30, 0.7);
    color: #e0e0e0;
}

.thumb_caption {
    font-size: 80%;
    line-height: 1.5;
    display: block;
    padding: 1px;
    color: #aaa;
}

.thumb_num_comments {
    font-size: 85%;
    font-weight: normal;
    font-style: italic;
    line-height: 1.5;
    display: block;
    padding: 2px;
    color: #888;
}

/* 15.0 Sort order - Kate Style
-------------------------------------------------------------- */
.sortorder_cell {
    font: normal 11px/11px 'Lato', sans-serif;
    letter-spacing: -1px;
    text-transform: none;
    color: #888;
}

.sortorder_options {
    white-space: nowrap;
}

/* 16.0 Preview - Kate Style
-------------------------------------------------------------- */
.navmenu {
    font-weight: 700;
    border-style: none;
    background: linear-gradient(to right, #1a0a1a, #330033, #1a0a1a);
}

.navmenu img {
    margin: 0;
    padding: 5px;
}

.navmenu a {
    display: block;
    padding: 5px;
    color: #e0e0e0;
}

.navmenu a:hover,
.navmenu a:focus {
    background: rgba(255, 77, 141, 0.2);
}

.display_media {
    padding: 10px;
}

option,
#tabs_dropdown_select {
    font-weight: 400;
    color: #e0e0e0;
    background-color: #1a0a1a;
}

/* 17.0 Administrator - Kate Style
-------------------------------------------------------------- */
.admin_menu {
    font-size: 10px;
    text-align: center;
    text-transform: uppercase;
    background: linear-gradient(to right, #1a0a1a, #330033, #1a0a1a);
}

.admin_menu a {
    display: block;
    padding: 5px;
    color: #e0e0e0;
}

.admin_menu a:hover,
.admin_menu a:focus {
    text-decoration: underline;
    color: #ff4d8d;
}

.admin_float {
    line-height: 1;
    position: relative;
    display: block;
    float: left;
    margin: 1px;
    white-space: nowrap;
}

/* 18.0 Miscellaneous - Kate Style
-------------------------------------------------------------- */
.filmstrip_background {
    background-color: rgba(10, 10, 10, 0.9);
}

.prev_strip {
    text-align: left;
}

.next_strip {
    text-align: right;
}

.detail_head_collapsed,
.detail_head_expanded {
    color: #c77adf;
}

/* 19.0 No Edit
-------------------------------------------------------------- */
pre.filepath {
    margin: 0;
    padding: 0;
    color: #aaa;
}

.user_thumb_infobox {
    margin-top: 1px;
    margin-bottom: 1px;
    background-color: rgba(20, 20, 20, 0.7);
    border: 1px solid #333;
}

.user_thumb_infobox th {
    font-size: 100%;
    font-weight: bold;
    margin-top: 1px;
    margin-bottom: 1px;
    text-align: center;
    color: #c77adf;
    background-color: rgba(30, 30, 30, 0.7);
}

.user_thumb_infobox td {
    font-size: 85%;
    margin-top: 1px;
    margin-bottom: 1px;
    text-align: center;
    color: #e0e0e0;
}

.user_thumb_infobox a {
    text-decoration: none;
    color: #c77adf;
}

.user_thumb_infobox a:hover {
    text-decoration: underline;
    color: #ff4d8d;
}

.icon {
    margin-right: 1px;
    vertical-align: middle;
}

.comment_date {
    font-size: 90%;
    vertical-align: middle;
    color: #888;
}

.footer {
    font-size: 9px;
    color: #888;
}

.footer a {
    text-decoration: none;
    color: #c77adf;
}

.footer a:hover {
    text-decoration: underline;
    color: #ff4d8d;
}

.topmenu {
    font-family: 'Trebuchet MS', Verdana, Geneva, Arial, sans-serif;
    font-size: 110%;
    line-height: 130%;
    color: #e0e0e0;
}

.topmenu a {
    text-decoration: none;
    color: #c77adf;
}

.topmenu a:hover {
    text-decoration: underline;
    color: #ff4d8d;
}

.img_caption_table {
    width: 100%;
    margin: 0;
    border: none;
    background-color: rgba(20, 20, 20, 0.7);
}

.img_caption_table th {
    font-size: 100%;
    padding-top: 4px;
    padding-right: 10px;
    padding-bottom: 4px;
    padding-left: 10px;
    color: #c77adf;
    border-top: 1px solid #333;
    background: rgba(30, 30, 30, 0.7);
}

.img_caption_table td {
    padding-top: 6px;
    padding-right: 10px;
    padding-bottom: 6px;
    padding-left: 10px;
    white-space: normal;
    border-top: 1px solid #333;
    background: rgba(25, 25, 25, 0.7);
}

.debug_text {
    width: 100%;
    margin: 0;
    border: #333;
    background-color: rgba(20, 20, 20, 0.7);
    color: #e0e0e0;
}

.clickable_option {
    cursor: default;
}

.listbox_lang {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 80%;
    vertical-align: middle;
    color: #e0e0e0;
    border: 1px solid #4a1a4a;
    background-color: #1a0a1a;
}

.pic_title {
    font-size: 100%;
    font-weight: bold;
    line-height: 1.0em;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    text-align: center;
    color: #c77adf;
}

.pic_caption {
    font-size: 100%;
    font-weight: normal;
    line-height: 1.0em;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    text-align: center;
    color: #aaa;
    background-image: none;
}

.important {
    font-weight: bold;
    padding-top: 3px;
    padding-right: 1px;
    padding-bottom: 3px;
    padding-left: 1px;
    color: #ff4d8d;
}

#cpgChooseLanguageWrapper {
    float: left;
}

#cpgChooseThemeWrapper {
    float: left;
}

/** Swfupload css **/
div.fieldset {
    margin: 10px 0;
    padding: 20px 10px;
    border: 2px solid #4a1a4a;
    background-color: rgba(20, 20, 20, 0.7);
}

div.fieldset span.legend {
    font-weight: bold;
    position: relative;
    top: -30px;
    padding: 3px;
    color: #fff;
    background-color: #6a2a6a;
}

div.flash {
    width: 375px;
    margin: 10px 5px;
    border-color: #4a1a4a;
    background-color: rgba(20, 20, 20, 0.7);
}

input[disabled] {
    border: 1px solid #333;
    background-color: rgba(30, 30, 30, 0.7);
}

.progressWrapper {
    overflow: hidden;
    width: 357px;
}

.progressContainer {
    overflow: hidden;
    margin: 5px;
    padding: 4px;
    border: solid 1px #4a1a4a;
    background-color: rgba(20, 20, 20, 0.7);
}

/* Message */
.message {
    overflow: hidden;
    margin: 1em 0;
    padding: 10px 20px;
    border: solid 1px #6a2a6a;
    background-color: rgba(106, 42, 106, 0.3);
    color: #e0e0e0;
}

/* Error */
.red {
    border: solid 1px #b50000;
    background-color: rgba(181, 0, 0, 0.3);
}

/* Current */
.green {
    border: solid 1px #2a6a2a;
    background-color: rgba(42, 106, 42, 0.3);
}

/* Complete */
.blue {
    border: solid 1px #2a4a6a;
    background-color: rgba(42, 74, 106, 0.3);
}

.progressName {
    font-size: 8pt;
    font-weight: 700;
    overflow: hidden;
    width: 323px;
    height: 14px;
    text-align: left;
    white-space: nowrap;
    color: #e0e0e0;
}

.progressBarInProgress,
.progressBarComplete,
.progressBarError {
    font-size: 0;
    width: 0;
    height: 2px;
    margin-top: 2px;
    background-color: #c77adf;
}

.progressBarComplete {
    visibility: hidden;
    width: 100%;
    background-color: #4dff4d;
}

.progressBarError {
    visibility: hidden;
    width: 100%;
    background-color: #ff4d4d;
}

.progressBarStatus {
    font-family: Arial;
    font-size: 7pt;
    width: 337px;
    margin-top: 2px;
    text-align: left;
    white-space: nowrap;
    color: #e0e0e0;
}

a.progressCancel {
    font-size: 0;
    display: block;
    float: right;
    width: 14px;
    height: 14px;
    background-image: url(../../images/cancelbutton.gif);
    background-repeat: no-repeat;
    background-position: -14px 0;
}

a.progressCancel:hover {
    background-position: 0 0;
}

.swfupload {
    vertical-align: top;
}

/**styles for photo manager*/
table#pic_sort tr td {
    padding: 4px;
    border-bottom: 1px solid #4a1a4a;
    background-color: rgba(20, 20, 20, 0.7);
    color: #e0e0e0;
}

/** styles for album manager and photo album*/
table#album_sort tr td {
    padding: 3px;
    border-bottom: 1px solid #4a1a4a;
    background-color: rgba(20, 20, 20, 0.7);
    color: #e0e0e0;
}

table#album_sort tr td span.editAlbum {
    font-size: 10px;
    line-height: 100%;
    display: none;
    margin-left: 100px;
    cursor: pointer;
    text-decoration: underline;
    color: #ff4d8d;
}

.cpg_message_info,
.cpg_message_success,
.cpg_message_warning,
.cpg_message_error,
.cpg_message_validation {
    margin: 10px 0;
    padding: 15px 10px 15px 50px;
    border: 1px solid;
    background-repeat: no-repeat;
    background-position: 10px center;
    color: #e0e0e0;
}

.cpg_message_info {
    color: #a5d0ff;
    border-color: #2a4a6a;
    background-color: rgba(42, 74, 106, 0.3);
    background-image: url('../../images/message/info.png');
}

.cpg_message_success {
    color: #a5ffa5;
    border-color: #2a6a2a;
    background-color: rgba(42, 106, 42, 0.3);
    background-image: url('../../images/message/ok.png');
}

.cpg_message_warning {
    color: #ffe0a5;
    border-color: #6a4a2a;
    background-color: rgba(106, 74, 42, 0.3);
    background-image: url('../../images/message/warning.png');
}

.cpg_message_error {
    color: #ffa5a5;
    border-color: #6a2a2a;
    background-color: rgba(106, 42, 42, 0.3);
    background-image: url('../../images/message/stop.png');
}

.cpg_message_validation {
    color: #ffc0a5;
    border-color: #6a3a2a;
    background-color: rgba(106, 58, 42, 0.3);
    background-image: url('../../images/message/error.png');
}

.cpg_summary {
    font-size: .9em;
    float: right;
    width: 400px;
    margin: 10px 0;
    padding: 5px 10px 5px 10px;
    text-align: right;
    color: #ff4d8d;
    border: 1px solid #4a1a4a;
    background-color: rgba(106, 42, 74, 0.3);
}

#GB_window {
    border: 5px solid #4a1a4a;
    background-color: rgba(20, 20, 20, 0.9);
}

.external {
    padding-right: 10px;
    background: transparent url('../../images/link.gif') 100% 50% no-repeat;
}

/* 20.0 Responsive
-------------------------------------------------------------- */
@-webkit-viewport {
    width: device-width;
}

@-moz-viewport {
    width: device-width;
}

@-ms-viewport {
    width: device-width;
}

@-o-viewport {
    width: device-width;
}

@viewport {
    width: device-width;
}

.show-menu,
.main-navigation input[type=checkbox] {
    display: none;
}

.main-navigation input[type=checkbox]:checked ~ .rpv-menu {
    display: block;
}

@media (max-width: 954px) {
    .site-content,
    .site-container {
        padding: 0 3%;
    }

    .show-menu {
        font-size: 14px;
        display: block;
        padding: 10px 3%;
        color: #e0e0e0;
    }

    .show-menu:before {
        font-family: FontAwesome;
        margin: 0 5px 0 0;
        content: '\f0c9';
    }

    .site-navigation {
        line-height: 25px;
        margin: 0 0 50px 0;
        border-bottom: 1px solid #4a1a4a;
    }

    .site-navigation .site-container,
    .site-navigation a {
        padding: 0;
    }

    .main-navigation {
        display: block;
        float: none;
    }

    .main-navigation a {
        display: block;
    }

    .main-navigation ul,
    .main-navigation a:after,
    .social-navigation {
        display: none;
    }

    .main-navigation ul li,
    .main-navigation li a {
        width: 100%;
    }

    .main-navigation li {
        margin: 0;
        padding: 7px 3%;
        border-top: 1px solid #4a1a4a;
    }

    .main-navigation a:after,
    .main-navigation a:hover:after,
    .main-navigation a:before,
    .main-navigation a:hover:before {
        display: none;
    }

    .site-header {
        display: none;
    }

    .site-branding .site-container {
        padding: 20px 3%;
        border-bottom: 1px solid #4a1a4a;
    }

    .site-tagline {
        line-height: 17px;
        padding: 4px 0;
    }
}

.thumbnail {
    max-width: 12vw!important;
    height: auto;
    border: 1px solid #4a1a4a!important;
    box-shadow: 0 0 5px rgba(199, 122, 223, 0.3)!important;
}

.thumb_title,
.thumb_caption,
.thumb_filename,
.thumb_num_comments {
    overflow: hidden;
    max-width: 12vw!important;
}

.strip_image {
    max-width: 10vw!important;
    height: auto;
    border: 1px solid #4a1a4a!important;
}

#film {
    width: 100%!important;
    background-color: rgba(10, 10, 10, 0.9)!important;
}

#film .thumb a:link {
    width: 100%!important;
}

.tape {
    width: 100%!important;
    height: 100%!important;
    margin-left: 0!important;
    background-color: transparent!important;
}

.remove {
    display: none!important;
}

.display_media .image {
    max-width: 70vw!important;
    height: auto;
    border: 1px solid #4a1a4a!important;
    box-shadow: 0 0 15px rgba(199, 122, 223, 0.5)!important;
}

#picinfo {
    overflow: scroll;
    width: 100%!important;
    background-color: rgba(20, 20, 20, 0.7)!important;
    border: 1px solid #4a1a4a!important;
}

@media (max-width: 739px) {
    .site-title,
    .site-tagline {
        letter-spacing: 0;
    }

    .image {
        margin: 2px;
    }

    .tableb {
        padding: 5px;
    }

    .tablef {
        padding: 10px 5px;
    }

    .tableh1 {
        font-size: 23px;
    }

    .tableh2 {
        line-height: 20px;
        padding: 6px 5px;
    }

    .tableb p {
        padding: 5px 0 0 0;
    }

    .thumbnails {
        padding: 10px 3px;
    }

    .sortorder_cell {
        display: none;
    }

    .navmenu {
        font-size: 1.5vw!important;
    }

    .display_media {
        padding: 5px;
    }

    .thumb_caption_rating img,
    #comments img {
        max-width: 2vw!important;
        height: auto!important;
    }

    #comments #captchaImg img {
        max-width: 25vw!important;
        height: auto!important;
    }

    .comment_date {
        font-size: 1.4vw!important;
    }

    .navmenu img,
    .buttonlist img {
        max-width: 2.5vw!important;
        height: auto;
    }

    .buttonlist ul li a span {
        line-height: 2vw!important;
        height: 2vw!important;
    }

    .buttonlist ul li a {
        font-size: 1.5vw!important;
    }

    .thumb_title {
        margin: 0;
        padding: 2px 0;
        background: none;
    }
}

@media (min-width: 620px) {
    #tabsMenu .navmenu a {
        display: block!important;
    }

    #tabsMenu .navmenu span {
        display: block!important;
    }
}

@media (max-width: 619px) {
    .navmenu {
        font-size: 2.5vw!important;
    }

    .display_media {
        padding: 0;
    }

    #tabsMenu .navmenu a {
        display: none!important;
    }

    #tabsMenu .navmenu span {
        display: block!important;
    }

    .tableb {
        padding: 1px 1px!important;
    }

    .buttonlist ul li a {
        font-size: 2vw!important;
    }
}

@media (max-width: 1119px) and (min-width: 955px) {
    .site-content,
    .site-container {
        margin: 0 10px;
    }
}

/* Efeitos Especiais - Kate Style */
.neon-text {
    text-shadow: 0 0 5px #c77adf, 0 0 10px #c77adf, 0 0 15px #c77adf, 0 0 20px #ff4d8d;
}

.neon-box {
    box-shadow: 0 0 5px #c77adf, 0 0 10px rgba(199, 122, 223, 0.5);
}

.hover-glow:hover {
    box-shadow: 0 0 15px #ff4d8d;
    transition: all 0.3s ease;
}

.pink-button {
    background: linear-gradient(to bottom, #ff4d8d, #c73a73);
    border: 1px solid #ff4d8d;
}

.pink-button:hover {
    background: linear-gradient(to bottom, #ff6ba5, #ff4d8d);
    box-shadow: 0 0 10px #ff4d8d;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    padding: 15px;
}

@media (max-width: 768px) {
    .thumbnail-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
        padding: 10px;
    }
}