/*
Theme Name: TheHypackel
Theme URI: https://thehypackel.com
Author: TheHypackel Team
Author URI: https://thehypackel.com
Description: Premium Android Games Hub theme with custom Games post type, dynamic articles, and full customizer support for hero, stats and branding.
Version: 1.0
Requires at least: 5.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: thehypackel
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body{
background:#0a0a0a; 
font-family:Arial,sans-serif;
color:#e0e0e0;
overflow-x: hidden;
}

.page-container { max-width: 1200px; margin: 0 auto; }
.w-100 { width: 100%; }

/* ==================== HEADER STYLING ==================== */
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 0;
background: #0a0a0a;
border-bottom: 1px solid rgba(255,255,255,0.03);
}

.logo-container {
display: flex;
flex-direction: column;
}

.logo {
font-size: 32px;
font-weight: 900;
color: #ff2a3b; 
letter-spacing: 1px;
text-decoration: none;
display: inline-block;
}

.logo span {
color: #fff;
}

.logo-sub {
font-size: 11px;
color: #888888;
margin-top: -2px;
}

nav {
display: flex;
align-items: center;
}

nav ul {
display: flex;
align-items: center;
list-style: none;
margin: 0;
padding: 0;
}

nav ul li {
position: relative;
}

nav a {
color: #aaaaaa;
text-decoration: none;
margin: 0 15px;
font-size: 14px;
font-weight: bold;
text-transform: uppercase;
transition: color 0.3s;
}

nav a:hover, nav a.active, nav ul li.current-menu-item a {
color: #ff2a3b;
}

nav a i {
font-size: 10px;
margin-left: 3px;
}

.header-search-icon {
color: white;
font-size: 18px;
cursor: pointer;
margin-left: 15px;
transition: color 0.3s;
background: none;
border: none;
}

.header-search-icon:hover {
color: #ff2a3b;
}

.header-search-form {
display: none;
}


/* ==================== HERO & TAGS STYLING ==================== */
.hero{
min-height:530px;
background:
linear-gradient(rgba(10,10,10,0.4), rgba(10,10,10,0.98)),
url('https://images.unsplash.com/photo-1538481199705-c710c4e965fc?w=1600'); 
background-size:cover;
background-position: center;
display:flex;
align-items:center;
padding:60px 0;
box-sizing: border-box;
}

.hero-text{
width: 80%;
}

.hero h1{
font-size:60px;
margin:0;
line-height: 1.1;
color: #ffffff;
}

.hero h1 span{
color:#ff2a3b;
}

.search{
margin-top:30px;
display:flex;
max-width: 600px;
border: 1px solid rgba(255, 42, 59, 0.2);
border-radius: 5px;
overflow: hidden;
}

.search input{
flex: 1;
padding: 15px;
border:none;
background: #161616;
font-size: 15px;
color: #fff;
outline: none;
}

.search button{
background:#ff2a3b;
color: white;
border:none;
padding:15px 30px;
cursor:pointer;
font-weight: bold;
font-size: 15px;
transition: background 0.3s;
}

.search button:hover {
background: #d61b2b;
}

/* Category Tags under Search */
.popular-tags {
margin-top: 20px;
display: flex;
flex-wrap: wrap;
gap: 10px;
align-items: center;
}

.popular-tags span {
color: #666666;
font-size: 13px;
font-weight: bold;
text-transform: uppercase;
}

.popular-tags a {
background: rgba(255, 255, 255, 0.03);
color: #aaaaaa;
text-decoration: none;
padding: 6px 14px;
border-radius: 20px;
font-size: 12px;
font-weight: bold;
transition: all 0.3s;
border: 1px solid rgba(255,255,255,0.01);
}

.popular-tags a:hover {
background: #ff2a3b;
color: #ffffff;
transform: translateY(-2px);
}


/* ==================== SECTION HEADER & SEE MORE BUTTON ==================== */
.section-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 25px;
}

.section-header h2 {
color:#fff;
font-size: 24px;
margin: 0;
border-left: 4px solid #ff2a3b;
padding-left: 12px;
}

.see-more-btn {
background: rgba(255, 42, 59, 0.08);
color: #ff2a3b;
text-decoration: none;
padding: 8px 18px;
border-radius: 4px;
font-size: 13px;
font-weight: bold;
text-transform: uppercase;
border: 1px solid rgba(255, 42, 59, 0.2);
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 6px;
}

.see-more-btn:hover {
background: #ff2a3b;
color: #fff;
box-shadow: 0 0 15px rgba(255, 42, 59, 0.25);
transform: translateX(3px);
}


/* ==================== GAMES STYLING & UPGRADED BUTTONS ==================== */
.games{
padding:40px 60px;
}

.grid{
display:grid;
grid-template-columns:repeat(4,1fr); 
gap:15px; 
}

.card{
background:#121212;
border-radius:8px; 
overflow:hidden;
transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
box-shadow: 0 4px 10px rgba(0,0,0,0.5);
position: relative;
border: 1px solid rgba(255,255,255,0.02);
display: flex;
flex-direction: column;
justify-content: space-between;
}

.card-img-wrapper {
overflow: hidden;
width: 100%;
height: 140px;
}

.card img{
width:100%;
height:100%; 
object-fit:cover;
transition: transform 0.5s;
}

.card h3{
padding:12px 10px 4px 10px;
font-size:15px; 
margin: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis; 
text-align: center;
background: #121212;
color: #ffffff;
}

.card h3 a {
color: inherit;
text-decoration: none;
}

/* Play store small info line under title */
.source-info {
font-size: 10px;
color: #666666;
text-align: center;
margin-bottom: 12px;
display: flex;
align-items: center;
justify-content: center;
gap: 4px;
}

.source-info i {
color: #22c55e; /* Subtle Green indicator for safety */
font-size: 7px;
}

/* Upgraded Download Button Style */
.download{
background:#2d0d11;
color:#ff2a3b;
padding:11px; 
text-align:center;
font-weight:bold;
font-size:13px; 
cursor: pointer;
transition: all 0.3s ease;
border-top: 1px solid rgba(255,255,255,0.02);
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
letter-spacing: 0.5px;
text-decoration: none;
}

.download i {
font-size: 12px;
transition: transform 0.3s ease;
}

/* Hover Animations and Effects */
.card:hover {
transform: translateY(-5px);
border-color: rgba(255, 42, 59, 0.4);
box-shadow: 0 10px 25px rgba(255, 42, 59, 0.15);
}

.card:hover img {
transform: scale(1.08);
}

.card:hover .download {
background: #ff2a3b;
color: white;
box-shadow: 0 0 15px rgba(255, 42, 59, 0.3);
}

/* Makes the arrow bounce slightly downwards on hover */
.card:hover .download i {
transform: translateY(2px);
}

.no-games-message {
color: #888888;
padding: 20px 0;
}


/* ==================== BRANDED HYPACKEL FEATURES SECTION ==================== */
.features-section {
background: #121212;
padding: 60px;
text-align: center;
border-top: 1px solid rgba(255,255,255,0.03);
border-bottom: 1px solid rgba(255,255,255,0.03);
}

.features-section h2 {
font-size: 28px;
margin-bottom: 10px;
color: #fff;
}

.features-section h2 span {
color: #ff2a3b;
}

.features-section p.subtitle {
color: #888888;
margin-bottom: 40px;
font-size: 16px;
}

.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
max-width: 1200px;
margin: 0 auto;
}

.feature-box {
background: #161616;
padding: 30px 20px;
border-radius: 10px;
transition: transform 0.3s, border 0.3s;
border-bottom: 3px solid transparent;
border: 1px solid rgba(255,255,255,0.01);
}

.feature-box:hover {
transform: translateY(-5px);
border-bottom: 3px solid #ff2a3b;
box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.feature-box i {
font-size: 40px;
color: #ff2a3b;
margin-bottom: 15px;
}

.feature-box h3 {
font-size: 20px;
color: #fff;
margin-bottom: 10px;
}

.feature-box p {
color: #888888;
font-size: 14px;
line-height: 1.6;
margin: 0;
}

/* ==================== STATS COUNTER SECTION ==================== */
.stats-section {
display: flex;
justify-content: space-around;
padding: 40px 60px;
background: linear-gradient(90deg, #121212, #1a1a1a);
max-width: 1200px;
margin: 40px auto;
border-radius: 10px;
text-align: center;
border: 1px solid rgba(255,255,255,0.02);
}

.stat-item h3 {
font-size: 36px;
color: #ff2a3b;
margin: 0 0 5px 0;
font-weight: 800;
}

.stat-item p {
color: #888888;
margin: 0;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 1px;
}


/* ==================== ARTICLES STYLING ==================== */
.articles {
padding: 40px 60px;
}

.articles-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
}

.article-card {
background: #121212;
border-radius: 10px;
overflow: hidden;
transition: transform 0.3s;
box-shadow: 0 4px 10px rgba(0,0,0,0.5);
border: 1px solid rgba(255,255,255,0.02);
}

.article-card:hover {
transform: translateY(-5px);
border-color: rgba(255, 42, 59, 0.2);
}

.article-card img {
width: 100%;
height: 200px;
object-fit: cover;
display: block;
}

.article-content {
padding: 20px;
}

.article-content .date {
color: #ff2a3b;
font-size: 12px;
font-weight: bold;
text-transform: uppercase;
margin-bottom: 10px;
display: block;
}

.article-content h3 {
margin: 0 0 10px 0;
font-size: 20px;
line-height: 1.4;
color: #fff;
}

.article-content h3 a {
color: inherit;
text-decoration: none;
}

.article-content p {
color: #888888;
font-size: 14px;
line-height: 1.6;
margin: 0;
}

.no-articles-message {
color: #888888;
}


/* ==================== SINGLE GAME PAGE ==================== */
.game-single-wrap {
max-width: 1200px;
margin: 0 auto;
padding: 50px 60px;
}

.game-single-top {
display: grid;
grid-template-columns: 380px 1fr;
gap: 40px;
margin-bottom: 50px;
}

.game-single-thumb {
border-radius: 10px;
overflow: hidden;
background: #121212;
border: 1px solid rgba(255,255,255,0.02);
height: fit-content;
}

.game-single-thumb img {
width: 100%;
height: auto;
display: block;
}

.game-breadcrumb {
font-size: 13px;
color: #666666;
margin-bottom: 15px;
}

.game-breadcrumb a {
color: #888888;
text-decoration: none;
}

.game-breadcrumb a:hover {
color: #ff2a3b;
}

.game-breadcrumb span {
margin: 0 6px;
}

.game-breadcrumb .current {
color: #ff2a3b;
font-weight: bold;
}

.game-single-info h1 {
color: #ffffff;
font-size: 34px;
margin: 0 0 20px 0;
}

.game-source-row {
font-size: 13px;
color: #888888;
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 6px;
}

.game-source-row i {
color: #22c55e;
font-size: 9px;
}

.game-single-download {
display: inline-flex;
padding: 16px 45px;
border-radius: 6px;
font-size: 15px;
background: #ff2a3b;
color: #ffffff;
box-shadow: 0 0 15px rgba(255, 42, 59, 0.25);
margin-bottom: 25px;
}

.game-single-download:hover {
background: #d61b2b;
}

.game-share-row {
display: flex;
align-items: center;
gap: 12px;
}

.game-share-row span {
color: #888888;
font-size: 13px;
font-weight: bold;
}

.game-share-row a {
width: 32px;
height: 32px;
background: #161616;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
text-decoration: none;
font-size: 13px;
border: 1px solid rgba(255,255,255,0.02);
transition: all 0.3s;
}

.game-share-row a:hover {
background: #ff2a3b;
box-shadow: 0 0 10px rgba(255, 42, 59, 0.4);
}

.game-single-body {
max-width: 900px;
margin: 0 auto 50px auto;
}

.game-single-body h2 {
color: #fff;
font-size: 24px;
margin-bottom: 20px;
border-left: 4px solid #ff2a3b;
padding-left: 12px;
}

.game-single-body .entry-content {
color: #cccccc;
font-size: 16px;
line-height: 1.8;
margin-bottom: 35px;
}

.game-single-body .entry-content p {
margin-bottom: 18px;
}

.game-info-table {
width: 100%;
border-collapse: collapse;
background: #121212;
border-radius: 8px;
overflow: hidden;
border: 1px solid rgba(255,255,255,0.02);
}

.game-info-table tr {
border-bottom: 1px solid rgba(255,255,255,0.03);
}

.game-info-table tr:last-child {
border-bottom: none;
}

.game-info-table td {
padding: 14px 20px;
font-size: 14px;
color: #aaaaaa;
}

.game-info-table td:first-child {
width: 40%;
color: #888888;
font-weight: bold;
}

.game-info-table td:first-child i {
color: #ff2a3b;
margin-right: 8px;
width: 16px;
}

.game-info-table td:last-child {
color: #ffffff;
}

.related-games-section {
margin-top: 20px;
}

@media (max-width: 1024px) {
.game-single-wrap { padding: 40px 30px; }
.game-single-top { grid-template-columns: 1fr; }
.game-single-thumb { max-width: 380px; margin: 0 auto; }
}

@media (max-width: 768px) {
.game-single-wrap { padding: 30px 20px; }
.game-single-info h1 { font-size: 26px; }
.game-single-download { width: 100%; justify-content: center; }
.game-info-table td { padding: 12px 14px; font-size: 13px; }
}


/* ==================== SINGLE POST / PAGE / ARCHIVE CONTENT ==================== */
.page-content-wrap {
max-width: 900px;
margin: 0 auto;
padding: 60px;
}

.page-content-wrap h1 {
color: #fff;
font-size: 38px;
margin-bottom: 20px;
border-left: 4px solid #ff2a3b;
padding-left: 14px;
}

.page-content-wrap .entry-meta {
color: #ff2a3b;
font-size: 13px;
font-weight: bold;
text-transform: uppercase;
margin-bottom: 25px;
display: block;
}

.page-content-wrap .entry-thumbnail img {
width: 100%;
border-radius: 10px;
margin-bottom: 30px;
}

.page-content-wrap .entry-content {
color: #cccccc;
font-size: 16px;
line-height: 1.8;
}

.page-content-wrap .entry-content p {
margin-bottom: 20px;
}

.page-content-wrap .entry-content img {
max-width: 100%;
border-radius: 8px;
}

.page-content-wrap .entry-content a {
color: #ff2a3b;
}

.archive-grid {
padding: 60px;
}

.archive-grid h1 {
color: #fff;
font-size: 32px;
margin-bottom: 30px;
border-left: 4px solid #ff2a3b;
padding-left: 14px;
}

.pagination-wrap {
display: flex;
gap: 10px;
justify-content: center;
padding: 40px 60px;
flex-wrap: wrap;
}

.pagination-wrap .page-numbers {
background: #121212;
color: #aaaaaa;
text-decoration: none;
padding: 10px 16px;
border-radius: 5px;
font-size: 14px;
font-weight: bold;
border: 1px solid rgba(255,255,255,0.05);
transition: all 0.3s;
}

.pagination-wrap .page-numbers:hover,
.pagination-wrap .page-numbers.current {
background: #ff2a3b;
color: #fff;
}

.single-game-download-wrap {
margin: 30px 0;
}

.single-game-download-wrap .download {
display: inline-flex;
padding: 16px 40px;
border-radius: 6px;
font-size: 16px;
}

.comments-area {
max-width: 900px;
margin: 0 auto;
padding: 0 60px 60px;
color: #ccc;
}

.comments-area .comment-list {
list-style: none;
}

.comments-area textarea,
.comments-area input[type="text"],
.comments-area input[type="email"] {
background: #161616;
border: 1px solid rgba(255,255,255,0.05);
color: #fff;
padding: 10px;
border-radius: 5px;
width: 100%;
max-width: 500px;
margin-bottom: 10px;
}

.comments-area .submit {
background: #ff2a3b;
color: #fff;
border: none;
padding: 12px 30px;
border-radius: 5px;
font-weight: bold;
cursor: pointer;
}

.search-form-wrap {
padding: 0 60px;
margin-top: 20px;
}


/* ==================== FOOTER STYLING ==================== */
footer {
background: #121212;
margin-top: 60px;
border-top: 1px solid rgba(255,255,255,0.03);
}

.newsletter-section {
display: flex;
justify-content: space-between;
align-items: center;
padding: 40px 60px;
border-bottom: 1px solid rgba(255,255,255,0.03);
max-width: 1200px;
margin: 0 auto;
box-sizing: border-box;
}

.newsletter-left {
display: flex;
align-items: center;
gap: 20px;
}

.newsletter-left i {
font-size: 45px;
color: #555555;
}

.newsletter-text h3 {
color: #ff2a3b;
margin: 0 0 5px 0;
font-size: 22px;
text-transform: uppercase;
letter-spacing: 1px;
}

.newsletter-text p {
color: #888888;
margin: 0;
font-size: 14px;
}

.newsletter-section .newsletter-form {
display: flex;
width: 45%;
max-width: 500px;
border: 1px solid rgba(255, 42, 59, 0.2);
border-radius: 5px;
overflow: hidden;
}

.newsletter-form input {
flex: 1;
padding: 15px 20px;
border: none;
background: #161616;
font-size: 14px;
color: #fff;
outline: none;
}

.newsletter-form button {
background: #ff2a3b;
color: #fff;
border: none;
padding: 0 30px;
font-weight: bold;
font-size: 15px;
cursor: pointer;
transition: background 0.3s;
}

.newsletter-form button:hover {
background: #d61b2b;
}

.footer-main {
display: grid;
grid-template-columns: 2fr 1fr 1fr;
gap: 40px;
padding: 50px 60px;
max-width: 1200px;
margin: 0 auto;
}

.footer-col .footer-logo {
font-size: 28px;
font-weight: 900;
color: #ff2a3b;
margin-bottom: 15px;
}

.footer-col .footer-logo span {
color: #fff;
}

.footer-col p {
color: #888888;
font-size: 14px;
line-height: 1.6;
margin-bottom: 20px;
}

.social-icons {
display: flex;
gap: 12px;
}

.social-icons a {
width: 36px;
height: 36px;
background: #161616;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
text-decoration: none;
transition: all 0.3s;
border: 1px solid rgba(255,255,255,0.02);
}

.social-icons a:hover {
background: #ff2a3b;
color: #fff;
box-shadow: 0 0 10px rgba(255, 42, 59, 0.4);
}

.footer-col h4 {
color: #fff;
font-size: 16px;
margin: 0 0 20px 0;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.footer-col ul {
list-style: none;
padding: 0;
margin: 0;
}

.footer-col ul li {
margin-bottom: 12px;
}

.footer-col ul li a {
color: #888888;
text-decoration: none;
font-size: 14px;
transition: color 0.3s;
}

.footer-col ul li a:hover {
color: #ff2a3b;
}

.footer-bottom {
background: #0a0a0a;
text-align: center;
padding: 20px;
font-size: 13px;
color: #555555;
}


/* ==================== RESPONSIVENESS ==================== */

@media (max-width: 1024px) {
header { padding: 15px 30px; flex-wrap: wrap; }
.hero { padding: 40px 30px; }
.hero-text { width: 80%; }
.hero h1 { font-size: 45px; }
.games, .articles, .features-section { padding: 40px 30px; }
.grid { grid-template-columns: repeat(3, 1fr); }
.features-grid, .articles-grid { grid-template-columns: repeat(2, 1fr); }
.newsletter-section { flex-direction: column; gap: 20px; text-align: center; }
.newsletter-section .newsletter-form { width: 100%; }
.page-content-wrap, .archive-grid, .comments-area { padding: 40px 30px; }
}

@media (max-width: 768px) {
header { flex-direction: column; gap: 15px; padding: 20px; text-align: center; }
nav { flex-wrap: wrap; justify-content: center; gap: 10px; }
nav ul { flex-wrap: wrap; justify-content: center; }
nav a { margin: 5px 10px; }
.header-search-icon { margin-left: 5px; }

.hero { text-align: center; justify-content: center; min-height: 450px; }
.hero-text { width: 100%; }
.hero h1 { font-size: 34px; }
.search { flex-direction: column; gap: 10px; margin-top: 20px; border: none; }
.search input { border-radius: 5px; width: 100%; box-sizing: border-box; border: 1px solid rgba(255, 42, 59, 0.2); }
.search button { border-radius: 5px; width: 100%; }
.popular-tags { justify-content: center; }

/* Mobile adaptation for See More buttons */
.section-header { flex-direction: row; align-items: center; }
.section-header h2 { font-size: 20px; }
.see-more-btn { padding: 6px 12px; font-size: 11px; }

.grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
.features-grid, .articles-grid { grid-template-columns: 1fr; gap: 20px; }
.stats-section { flex-direction: column; gap: 25px; padding: 30px 20px; }

.newsletter-left { flex-direction: column; }

.footer-main { grid-template-columns: 1fr; gap: 30px; padding: 40px 20px; text-align: center; }
.social-icons { justify-content: center; }
.page-content-wrap, .archive-grid, .comments-area { padding: 30px 20px; }
.page-content-wrap h1 { font-size: 28px; }
}




/* WordPress Submenu Styling */

/* Parent menu item */
.menu-item-has-children {
    position: relative;
}

/* Submenu container */
.menu-item-has-children > .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    z-index: 9999;
}

/* Show submenu on hover */
.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Submenu links */
.sub-menu li {
    display: block;
    width: 100%;
}

.sub-menu li a {
    display: block;
    padding: 12px 20px;
    color: #aaaaaa;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

/* Hover effect */
.sub-menu li a:hover {
    Xbackground: #f4f4f4;
    color: #ff2a3b;
}


/* Nested submenu (3rd level) */
.sub-menu .menu-item-has-children > .sub-menu {
    top: 0;
    left: 100%;
}


/* Mobile dropdown */
@media (max-width: 768px) {

    .menu-item-has-children > .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
    }

    .menu-item-has-children:hover > .sub-menu {
        display: block;
    }

    .sub-menu li a {
        padding-left: 30px;
    }
}

/* Vertical WordPress submenu */

.menu-item-has-children > .sub-menu {
    display: block;
    flex-direction: column;
    width: 220px;
    background: #000000;
    padding: 10px 0;
    margin: 0;
    list-style: none;
}

/* Each submenu item full width */
.menu-item-has-children > .sub-menu > li {
    display: block;
    width: 100%;
}

/* Vertical links */
.menu-item-has-children > .sub-menu > li > a {
    display: block;
    padding: 12px 20px;
    white-space: nowrap;
}


/* Keep dropdown hidden until hover */
.menu-item-has-children > .sub-menu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
}


/* Contact From */
.wpcf7-form label {
    color:#ddd;
}

.wpcf7-form input,
.wpcf7-form textarea {
    width:100%;
    background:#fff;
    padding:14px;
    border:none;
}

.wpcf7-submit {
    background:#ff2b45 !important;
    color:#fff !important;
    padding:14px 14px !important;
    border:none !important;
}