a{
    text-decoration: none !important;
}
*{
    box-sizing: border-box;
}

/* LiveChat Online Badge Animation */
@keyframes pulse-livechat {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    50% {
        opacity: 0.85;
        box-shadow: 0 0 8px 3px rgba(34, 197, 94, 0.4);
    }
}

.livechat-online {
    animation: pulse-livechat 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.livechat-online:hover {
    transform: scale(1.05);
    box-shadow: 0 0 12px 4px rgba(34, 197, 94, 0.6);
}
/* Mitgliederkarte */
.member-card {
    background: #111b21 !important;
    border: 1px solid #2a3942 !important;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    color: #e9edef !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.member-card:hover {
    transform: translateY(-5px);
    border-color: #00a884 !important;
    box-shadow: 0 4px 12px rgba(0, 168, 132, 0.2);
}






.peteitcms-single-profile .profile-name {
    color: #e9edef;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5), 0 1px 0 #00a884;
}

/* Profile Content */
.profile-content {
    background: #111b21;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 1px solid #2a3942;
}

/* Profile Form Sections */
.profile-section {
    margin-bottom: 30px;
}



/* Haupt Container */
.peteitcms-member-list-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Rollenfilter */
.peteitcms-role-filter {
    background: transparent;
    box-shadow: none !important;
    padding: 0;
    margin: 0 !important;
    border-radius: 8px;
}


.role-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin: 0 !important;
}
.role-btn {
    padding: 15px;
    min-width: 100%;
    font-size: 20px;
    text-align: center;
    border-radius: 12px;
    color: #e9edef !important;
    background: #202c33 !important;
    border: 1px solid #2a3942 !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
    cursor: pointer;
}

.role-btn:hover {
    background: #2a3942 !important;
    border-color: #00a884 !important;
}

.role-btn.active {
    background: #00a884 !important;
    border-color: #00a884 !important;
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(0, 168, 132, 0.3);
}

.view-profile-btn{
    padding: 10px;
    font-size: 20px;
    width: 185px;
    text-align: center;
    border-radius: 12px;
    color: #fff !important;
    background: #00a884 !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
}

.view-profile-btn:hover {
    background: #06cf9c !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 168, 132, 0.3);
}

.member-card-button-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 10px;
}

.member-stats-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
}


/* Mitglieder Grid */
.peteitcms-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}



.member-avatar {
    margin-bottom: 20px;
}

.member-avatar img {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #00a884;
    transition: border-color 0.3s ease;
}

.member-card:hover .member-avatar img {
    border-color: #06cf9c;
}



.member-info h4 {
    margin: 0 0 8px 0;
    font-size: 1.3em;
    font-weight: 600;
}

.member-info h4 a {
    color: #e9edef;
    text-decoration: none;
    transition: color 0.3s ease;
}

.member-info h4 a:hover {
    color: #00a884;
}

.member-role {
    color: #8696a0;
    font-size: 0.9em;
    margin: 0 0 20px 0;
    font-style: italic;
}


/* Einzelnes Profil */
.peteitcms-member-profile {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.profile-header {
    background: #111b21;
    color: #e9edef;
    display: block !important;
    align-items: center;
    gap: 30px;
    padding: 20px 10px 10px 10px;
    border-radius: 8px;
    border: 1px solid #2a3942;
}

.profile-avatar img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #00a884;
}

.profile-info h1 {
    margin: 0 0 10px 0;
    font-size: 2.2em;
    font-weight: 700;
}

.profile-role {
    font-size: 1.1em;
    opacity: 0.9;
    margin: 0 0 10px 0;
    color: #8696a0 !important;
    text-shadow: none;
}

.profile-registered {
    font-size: 0.9em;
    opacity: 0.8;
    margin: 0 0 20px 0;
}

.posts-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #00a884;
    color: white !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
}

.posts-btn:hover {
    background: #06cf9c;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 168, 132, 0.3);
}

/* Profil Content */
.profile-content {
    background: #111b21;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 1px solid #2a3942;
}

.profile-content h3 {
    margin: 0 0 20px 0;
    color: #e9edef;
    font-size: 1.4em;
    border-bottom: 2px solid #00a884;
    padding-bottom: 10px;
}

.profile-bio {
    line-height: 1.6;
    color: #8696a0;
    font-size: 1.1em;
}

.no-bio {
    color: #8696a0;
    font-style: italic;
}

.no-members {
    text-align: center;
    color: #8696a0;
    font-size: 1.1em;
    padding: 60px 20px;
    background: #202c33;
    border-radius: 12px;
    border: 2px dashed #2a3942;
}

/* Responsive Design */
@media (max-width: 768px) {
    .peteitcms-member-list-container {
        padding: 15px;
    }
    
    .peteitcms-members-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .role-buttons {
        justify-content: center;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-info h1 {
        font-size: 1.8em;
    }
    
    .profile-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .peteitcms-members-grid {
        grid-template-columns: 1fr;
    }
    
    .member-card {
        padding: 10px;
    }
    
    .member-avatar img {
        width: 100px;
        height: 100px;
    }
    
    .profile-avatar img {
        width: 120px;
        height: 120px;
    }
    
    .role-btn {
        padding: 10px 16px;
        font-size: 0.85em;
    }
}

/* Form Grid Layouts */
.profile-grid-layout {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 5px;
}

.grid-item {
    background: #202c33;
    display: flex;
    border-radius: 8px;
    color: #e9edef;
    flex-direction: column;
    border: 1px solid #2a3942;
    padding: 10px;
}

.grid-item label {
    margin-bottom: 8px;
    font-weight: bold;
}

.grid-item select,
.grid-item input {
    width: 100%;
    padding: 8px;
    border: 1px solid #2a3942;
    border-radius: 4px;
    background: #111b21;
    color: #e9edef;
}

/* Kinks Sektion im Extended Profile */
.kinks-section .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.kinks-section .checkbox-item {
    background: rgba(0, 168, 132, 0.1);
    border: 1px solid rgba(0, 168, 132, 0.3);
    border-radius: 20px;
    padding: 6px 12px;
    margin: 0;
    transition: all 0.3s ease;
}

.kinks-section .checkbox-item:hover {
    background: rgba(0, 168, 132, 0.2);
    border-color: #00a884;
}

.textarea-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.textarea-item {
    color: #e9edef;
    background: #202c33;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #2a3942;
}

.textarea-item label,
.textarea-item .profile-field-label {
    margin-bottom: 8px;
    font-weight: bold;
    color: #e9edef;
}

.text-content {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 10px;
    white-space: pre-wrap;
    line-height: 1.6;
    color: #e9edef;
    scrollbar-width: thin;
    scrollbar-color: #00a884 #2a3942;
}

/* Webkit Browser Scrollbar-Stil */
.text-content::-webkit-scrollbar {
    width: 8px;
}

.text-content::-webkit-scrollbar-track {
    background: #2a3942;
    border-radius: 4px;
}

.text-content::-webkit-scrollbar-thumb {
    background-color: #00a884;
    border-radius: 4px;
}

.text-content::-webkit-scrollbar-thumb:hover {
    background-color: #06cf9c;
}

.textarea-item textarea {
    width: 100%;
    border-radius: 8px;
    padding: 10px;
    resize: vertical;
}

/* Responsive Grid - Switch to fewer columns on medium screens and single column on mobile */
@media (max-width: 992px) {
    .profile-grid-layout {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .profile-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
    .textarea-grid-layout {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Loading Animation */
.peteitcms-loading {
    text-align: center;
    padding: 40px;
}

.peteitcms-loading::after {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #2a3942;
    border-radius: 50%;
    border-top-color: #00a884;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Body Classes für spezifische Seiten */
.peteitcms-members-page .site-main,
.peteitcms-profile-page .site-main {
    padding-top: 0;
}

/* Theme Integration */
.entry-content .peteitcms-member-list-container,
.entry-content .peteitcms-member-profile {
    margin: 0;
}

/* Pagination */
.peteitcms-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    padding: 20px 0;
}

.peteitcms-pagination .page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #202c33;
    color: #e9edef !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid #2a3942;
}

.peteitcms-pagination .page-btn:hover {
    background: #00a884;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 168, 132, 0.3);
}

.peteitcms-pagination .page-btn.active {
    background: #00a884;
    color: white !important;
    border-color: #00a884;
}

.peteitcms-pagination .prev-btn,
.peteitcms-pagination .next-btn {
    width: auto;
    padding: 0 15px;
}

.peteitcms-pagination .page-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #8696a0;
    font-weight: bold;
    pointer-events: none;
}

@media (max-width: 480px) {
    .peteitcms-pagination {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .peteitcms-pagination .page-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9em;
    }
    
    .peteitcms-pagination .prev-btn,
    .peteitcms-pagination .next-btn {
        padding: 0 12px;
    }
}

/* =================================
   SINGLE PROFILE STYLES
   ================================= */

.peteitcms-single-profile {
	max-width: 100% !important;
	background: transparent !important;
	box-shadow: none !important;
    margin: 0 auto;
    padding: 0 25px;
    text-align: center;
}

.peteitcms-single-profile .profile-avatar {
    margin-bottom: 1.5rem;
}

.peteitcms-single-profile .profile-avatar img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid #00a884;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.peteitcms-single-profile .profile-name {
font-size: 2.5rem;
font-weight: bold;
margin: 1rem 0;
color: #e9edef !important;
text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.peteitcms-single-profile .profile-role {
text-align: left !important;
display: block;
border-radius: 0;
font-weight: 600;
font-size: 1.1rem;
margin: 0;
color: #00a884 !important;
text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.peteitcms-single-profile .profile-meta {
    background: transparent !important;
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    color: #8696a0;
}

.peteitcms-single-profile .profile-bio {
    text-align: left;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #202c33;
    border-radius: 8px;
    border: 1px solid #2a3942;
}

.peteitcms-single-profile .profile-bio h3 {
    margin-top: 0;
    color: #e9edef;
}

.peteitcms-single-profile .profile-website {
    margin: 1rem 0;
}

.peteitcms-single-profile .profile-website a {
    color: #00a884;
    text-decoration: none;
}

.peteitcms-single-profile .profile-website a:hover {
    text-decoration: underline;
    color: #06cf9c;
}

.profile-navigation {
    margin: 2rem auto;
    text-align: center;
    max-width: 250px;
}

.profile-navigation .back-to-members {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #00a884;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 168, 132, 0.3);
    margin-bottom: 50px;
}

.profile-navigation .back-to-members:hover {
    background: #06cf9c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 168, 132, 0.4);
}

/* Responsive Single Profile */
@media (max-width: 768px) {
    .peteitcms-single-profile {
        padding: 0rem;
        margin: 1rem;
    }
    
    .peteitcms-single-profile .profile-name {
        font-size: 1.2rem;
    }
    
    .peteitcms-single-profile .profile-avatar img {
        width: 120px;
        height: 120px;
    }
}

/* Profile Tab System */



/* Profile Albums Grid */
.profile-albums-grid {
    margin-top: 1rem;
}

.profile-album-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.profile-album-card .album-preview {
    position: relative;
    overflow: hidden;
}

.profile-album-card .album-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.15);
    z-index: 1;
}

/* Responsive Albums */
@media (max-width: 768px) {
    .profile-albums-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .profile-album-card .album-preview {
        height: 180px;
    }
}



/* Erweiterte Profilfelder Styles (Version 1.3.0) */
.peteitcms-extended-profile-form {
    color: white;
}

.peteitcms-extended-profile-form h3 {
    margin: 0 0 25px 0;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
    text-align: center;
}

.profile-section {
    border-radius: 8px;
}


.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff !important;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #2a3942;
    border-radius: 6px;
    background: #111b21;
    color: #e9edef;
    font-size: 14px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #8696a0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00a884;
    background: #202c33;
}

.checkbox-group {
    margin-bottom: 1.5rem;
}

.checkbox-group-label {
    display: block;
    margin-bottom: 1rem;
    color: #fff !important;
    font-weight: 500;
    font-size: 16px;
}

.checkbox-item {
    display: inline-flex;
    align-items: center;
    margin: 0.3rem 0.5rem 0.3rem 0;
    padding: 0.4rem 0.8rem;
    background: #202c33;
    border: 1px solid #2a3942;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.checkbox-item:hover {
    background: #2a3942;
    border-color: #00a884;
}

.checkbox-item span {
    color: #e9edef;
    font-size: 14px;
}

.checkbox-item input[type="checkbox"]:checked + span {
    color: #00a884;
    font-weight: 500;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border: none !important
}

.peteitcms-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.peteitcms-btn-primary {
    background: #00a884 !important;
    color: white;
    border: none;
}

.peteitcms-btn-primary:hover {
    background: #06cf9c !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 168, 132, 0.3);
}

.peteitcms-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .peteitcms-extended-profile-form {
        padding: 15px;
    }
    
    .checkbox-item {
        margin: 0.2rem 0.3rem 0.2rem 0;
        padding: 0.3rem 0.6rem;
        font-size: 13px;
    }
}
/*members*/
@media (max-width: 768px) {
    .peteitcms-member-list-container, .bs-card-box {
        padding: 0;
    }
}
.author-about-display{
    padding: 0 !important;
    background: #111b21;
    border: 1px solid #2a3942;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
#author_about_me {
    background: #202c33 !important;
    color: #e9edef;
}
.peteitcms-single-profile .profile-name{
	text-shadow: 2px 2px #000 !important;
}

.member-info a, .member-role{
	color: #fff !important;
	font-weight:bold;
	text-shadow: 1px 1px #000
}
.peteitcms-member-list-container{
	margin: auto;
	padding:10px !important;
	    background: transparent !important;
	box-shadow: none
}
.peteitcms-profile-container{
		padding:0px !important;
	max-width:100% !important;
	border-radius:8px;
		margin: auto;
}


.peteitcms-single-profile .profile-meta{
	background: transparent !important
}

/* Styling für die Profilanzeige */
.profile-extended-details {
    margin: 1rem 0;
    width: 100%;
}

/*neu*/
.profile-navigation .back-to-members,
.peteitcms-single-profile .profile-tabs .profile-tab,
.peteitcms-single-profile .profile-tabs .profile-tab:hover, .peteitcms-single-profile .profile-tabs .profile-tab:active,
.profile-tab.profile-video-call-btn.offline-button, .profile-tab.profile-audio-call-btn.offline-button{
	color: #fff !important;
	background: #00a884 !important;
	width: 50px !important;
	height: 50px !important;
	border-radius: 50% !important;
	box-shadow: 0px 2px 8px rgba(0, 168, 132, 0.3);
    font-weight: 500;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 0;
    transition: all 0.3s ease;
    border: 1px solid #00a884;
    font-size: 18px !important;
}

.profile-navigation .back-to-members:hover,
.peteitcms-single-profile .profile-tabs .profile-tab:hover,
.peteitcms-single-profile .profile-tabs .profile-tab:active {
    background: #06cf9c !important;
    border-color: #06cf9c;
    transform: scale(1.1);
    box-shadow: 0px 4px 12px rgba(0, 168, 132, 0.4);
}

/* LiveChat Button Styling */
.profile-tab.profile-livechat-btn {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    box-shadow: 0px 2px 8px rgba(34, 197, 94, 0.4) !important;
    animation: pulse-livechat 2s ease-in-out infinite;
}

.profile-tab.profile-livechat-btn:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0px 4px 12px rgba(34, 197, 94, 0.6) !important;
}

@media (max-width: 480px) {
    .profile-tabs {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }
    
    .profile-tabs .profile-tab {
        text-align: center;
        width: 50px;
        height: 50px;
    }
}

#profile-tab-about{
	box-shadow:none;
	margin: 0 !important;
	padding: 0 !important
}
.profile-tab-content {
    display: none;
}

.profile-tab-content:first-of-type {
    display: block;
}

/* Superfan Styling */
.superfan-request-btn,
.superfan-accept-btn,
.superfan-reject-btn,
.superfan-remove-btn,
.superfan-request-sent-btn {
    transition: all 0.3s ease;
}

.superfan-request-btn:hover {
    background: linear-gradient(135deg, #008f6f 0%, #00a884 100%) !important;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 168, 132, 0.3);
}

.superfan-accept-btn:hover {
    background: #008f6f !important;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 168, 132, 0.3);
}

.superfan-reject-btn:hover,
.superfan-remove-btn:hover {
    background: #111b21 !important;
    color: #e9edef !important;
    border-color: #8696a0 !important;
}

.superfan-status-badge {
    animation: badge-glow 2s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(0, 168, 132, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(0, 168, 132, 0.6);
    }
}

.superfan-request-card,
.superfan-card {
    transition: all 0.3s ease;
}

.superfan-request-card:hover,
.superfan-card:hover {
    transform: translateY(-2px);
    border-color: #00a884 !important;
    box-shadow: 0 4px 12px rgba(0, 168, 132, 0.2);
}

/*tribut*/
.tribute-section{
	border-radius:8px;
    background: #202c33;
	border: 1px solid #2a3942;
	padding:5px 10px; 
    color: #e9edef; 
    margin: 0; 
}
.tribute-btn.tribute-btn-disabled{
	background: #111b21 !important;
	color:#8696a0;
	border: 1px solid #2a3942;
	border-radius: 12px !important;
	box-shadow: 0 2px 8px rgba(0,0,0,0.3) !important;
	font-size:16px !important
}


