html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, main,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
a {
    color: #ff6ec7;
}
a:hover, a:focus {
    color: #fff;
    text-shadow: 0 0 8px #ff6ec7;
}
select, input, textarea {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
html {
    font-size: 14px;
}

/* === FESTIVE ANIMATED BACKGROUND === */
@keyframes bgShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(255, 110, 199, 0.4), 0 0 10px rgba(255, 110, 199, 0.2); }
    50% { box-shadow: 0 0 15px rgba(255, 110, 199, 0.6), 0 0 30px rgba(255, 110, 199, 0.3), 0 0 45px rgba(255, 110, 199, 0.1); }
}
@keyframes rainbowBorder {
    0% { border-color: #ff6ec7; }
    16% { border-color: #ff9a3c; }
    33% { border-color: #ffd700; }
    50% { border-color: #3cff6e; }
    66% { border-color: #3cb4ff; }
    83% { border-color: #a83cff; }
    100% { border-color: #ff6ec7; }
}
@keyframes confettiFall1 {
    0% { top: -10px; left: 10%; opacity: 1; transform: rotate(0deg); }
    100% { top: 100%; left: 15%; opacity: 0; transform: rotate(720deg); }
}
@keyframes confettiFall2 {
    0% { top: -10px; left: 50%; opacity: 1; transform: rotate(0deg); }
    100% { top: 100%; left: 45%; opacity: 0; transform: rotate(-540deg); }
}
@keyframes confettiFall3 {
    0% { top: -10px; left: 80%; opacity: 1; transform: rotate(0deg); }
    100% { top: 100%; left: 85%; opacity: 0; transform: rotate(360deg); }
}
@keyframes headerGradient {
    0% { background-position: 0% 50%; }
    25% { background-position: 50% 100%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 0%; }
    100% { background-position: 0% 50%; }
}
@keyframes textShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

body {
    background: #0d0221;
    background-image:
        radial-gradient(ellipse at 10% 20%, rgba(255, 110, 199, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(60, 180, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(168, 60, 255, 0.05) 0%, transparent 50%);
    color: #e0d6f0;
    font: 14px/1.5 Roboto, Arial, Helvetica, sans-serif;
}
.cf:after,
.form-body:after {
    content: "";
    display: table;
    clear: both;
}

/* === CONFETTI DECORATION ON WRAPPER === */
.wrapper {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.wrapper::before,
.wrapper::after {
    content: "";
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    z-index: 9999;
    pointer-events: none;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.wrapper::before {
    background: #ffd700;
    animation: confettiFall1 7s 0s infinite;
}
.wrapper::after {
    background: #ff6ec7;
    animation: confettiFall2 9s 2s infinite;
}

/* === ALERTS === */
.alert {
    position: relative;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 12px;
}
.alert-success {
    color: #fff;
    font-size: 18px;
    background: linear-gradient(135deg, #00c9a7, #3cff6e);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 201, 167, 0.3);
}
.alert-danger {
    color: #fff;
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.3);
}
.notice {
    border: 2px solid #a83cff;
    padding: 15px;
    margin-bottom: 15px;
    color: #d4a8ff;
    border-radius: 12px;
    font-weight: bold;
    animation: rainbowBorder 4s linear infinite;
}
.long-wallet {
    word-wrap: break-word;
}

.content-wrap {
    flex: 1;
    padding: 15px 0;
}
.frame {
    width: 1100px;
    max-width: 95%;
    margin: auto;
}
.italic {
    font-style: italic;
}
.ex {
    font-weight: 700;
}
.p-list a,
.make-order a, .add-review a, .more-news,
.logo,
.select-list a,
.balance-btn {
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

/* === ACTION BUTTONS === */
.action-btn {
    display: inline-block;
    vertical-align: top;
    margin: 0 3px;
    background: linear-gradient(135deg, #a83cff, #ff6ec7);
    color: #fff;
    border-radius: 50%;
    width: 30px; height: 30px;
    line-height: 26px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(168, 60, 255, 0.4);
    transition: all .3s ease;
}
.action-btn i:before {
    vertical-align: middle;
}
.action-btn:hover,
.action-btn:focus {
    text-decoration: none;
    background: linear-gradient(135deg, #ffd700, #ff9a3c);
    color: #fff;
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
}

/* === BALANCE ROW === */
.balance-row {
    padding: 10px 0;
    background: linear-gradient(90deg, rgba(13, 2, 33, 0.95), rgba(30, 10, 60, 0.95));
    border-bottom: 1px solid rgba(168, 60, 255, 0.3);
    font-size: 12px;
    text-align: right;
    text-transform: uppercase;
}
.balance,
.balance-row .balance-btn,
.balance-btn {
    display: inline-block;
    vertical-align: middle;
}
.balance-row .balance-btn,
.balance-btn {
    background: linear-gradient(135deg, #ff6ec7, #a83cff);
    color: #fff;
    font-size: 13px;
    border-radius: 20px;
    padding: 5px 15px;
    margin-right: 4px;
    box-shadow: 0 2px 10px rgba(255, 110, 199, 0.3);
}
.balance-row .balance-btn:hover,
.balance-row .balance-btn:focus,
.balance-btn:hover,
.balance-btn:focus {
    text-decoration: none;
    background: linear-gradient(135deg, #ffd700, #ff9a3c);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

/* === TOP NAVIGATION === */
.top-wrap {
    background: rgba(13, 2, 33, 0.95);
    border-bottom: 1px solid rgba(168, 60, 255, 0.2);
}
.top-nav {
    text-align: right;
}
.top-nav > li {
    display: inline-block;
    vertical-align: top;
}
.top-nav > li > a {
    color: #c4b5e0;
    font: 13px Oswald, Arial, Helvetica, sans-serif;
    transition: all .3s ease;
}
.top-nav > li:nth-child(4)> a,
.top-nav > li:nth-child(4)> .dropdown-menu > li:first-child > a {
    color: #ffd700;
}
.top-nav > li > a:hover,
.top-nav > li > a:focus {
    background: transparent;
    color: #ff6ec7;
    text-shadow: 0 0 10px rgba(255, 110, 199, 0.5);
}

/* === HEADER === */
.general-header {
    background: linear-gradient(135deg, #0d0221, #1a0533, #2d1b69, #a83cff, #ff6ec7, #ffd700, #ff9a3c);
    background-size: 400% 400%;
    animation: headerGradient 8s ease infinite;
    padding: 30px 0;
    position: relative;
    box-shadow: 0 5px 30px rgba(168, 60, 255, 0.3);
}
.general-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6ec7, #ffd700, #3cff6e, #3cb4ff, #a83cff, #ff6ec7);
    background-size: 200% 100%;
    animation: bgShift 3s linear infinite;
}
.logo {
    color: #fff;
    font: 32px Oswald, Arial, Helvetica, sans-serif;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 110, 199, 0.3);
    letter-spacing: 2px;
}
.logo:hover,
.logo:focus {
    color: #ffd700;
    text-decoration: none;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.4);
}
.header-right {
    float: right;
}
.tg-bots {
    text-align: right;
    padding: 0 15px;
}
.tg-bots a {
    color: #fff;
}
.general-nav > li {
    display: inline-block;
    vertical-align: top;
}
.general-nav > li > a {
    position: relative;
    display: block;
    text-decoration: none;
    padding: 8px 18px;
    text-transform: uppercase;
    font: 15px Oswald, Arial, Helvetica, sans-serif;
    color: #fff;
    border-radius: 25px;
    transition: all .3s ease-out;
    cursor: pointer;
    border: 1px solid transparent;
}
.general-nav > li > a:hover,
.general-nav > li > a:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(255, 110, 199, 0.3);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
    background-color: transparent;
    border-color: transparent;
}

/* === DROPDOWN === */
.dropdown-menu {
    border: 0;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, #ff6ec7, #ffd700, #3cb4ff) 1;
    background: rgba(20, 5, 50, 0.97);
    box-shadow: 0 10px 40px rgba(168, 60, 255, 0.3);
    border-radius: 0 0 12px 12px;
    backdrop-filter: blur(10px);
}
.dropdown-menu > li:not(:first-child) {
    border-top: 1px solid rgba(168, 60, 255, 0.2);
}
.dropdown-menu > li > a {
    color: #c4b5e0;
    font-size: 12px;
    transition: all .2s ease;
}
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
    background: transparent;
    outline: 0;
    color: #ff6ec7;
    padding-left: 30px;
}
.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
    color: #ffd700;
    background: transparent;
}

.lighter {
    font-size: 1.2em;
    color: #ff6ec7;
    text-shadow: 0 0 5px rgba(255, 110, 199, 0.3);
}

/* === REVIEWS === */
.review-item {
    text-align: left;
    padding: 20px;
    background: linear-gradient(135deg, rgba(30, 10, 60, 0.8), rgba(20, 5, 50, 0.9));
    border: 1px solid rgba(168, 60, 255, 0.2);
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all .3s ease;
}
.review-item:hover {
    border-color: rgba(255, 110, 199, 0.4);
    box-shadow: 0 8px 30px rgba(168, 60, 255, 0.2);
}
.reply-item {
    padding-left: 6%;
}
.reply-user {
    float: left;
}
.reply-text {
    overflow: hidden;
    padding-left: 15px;
}
.reply-user img {
    width: 60px;
    height: auto;
    border-radius: 50%;
    border: 2px solid #a83cff;
}
.review-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 10px;
    color: #ff6ec7;
    font: 17px Oswald,Arial,Helvetica,sans-serif;
}
.ticket-header {
    padding-bottom: 10px;
    color: #ff6ec7;
    font: 17px Oswald,Arial,Helvetica,sans-serif;
}
.review-date {
    font-size: 0.9em;
}
.rh-info {
    flex: 1;
}
.ticket-header .rating {
    display: inline-block;
    vertical-align: middle;
}
.rating {
    font: 0/0 serif;
    width: 180px; height: 33px;
}
.rating-1 { background: url("../images/star1.png"); }
.rating-2 { background: url("../images/star2.png"); }
.rating-3 { background: url("../images/star3.png"); }
.rating-4 { background: url("../images/star4.png"); }
.rating-5 { background: url("../images/star5.png"); }

.add-review {
    text-align: center;
    padding: 15px 15px 45px;
}

/* === WELCOME / ERROR === */
.welcome,
.error,
.select-list .error {
    display: block;
    width: 100%;
    color: #fff;
    background: linear-gradient(135deg, #a83cff, #ff6ec7);
    font: 16px Oswald, Arial, Helvetica, sans-serif;
    padding: 15px;
    border-radius: 12px;
    margin: 0 auto 25px;
    box-shadow: 0 4px 20px rgba(168, 60, 255, 0.3);
}
.select-list li + .error,
.error + .error {
    display: none;
}
.select-list .error a {
    background: none transparent;
    display: inline;
    width: auto;
    padding: 0;
}
.error-page {
    padding: 5%;
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    text-shadow: 0 0 20px rgba(255, 110, 199, 0.5), 0 0 40px rgba(168, 60, 255, 0.3);
}

/* === TITLES === */
.general-ttl {
    padding: 25px 0;
    color: #fff;
    text-transform: uppercase;
    font: 3rem Oswald, Arial, Helvetica, sans-serif;
    text-align: center;
    background: linear-gradient(90deg, #ff6ec7, #ffd700, #3cb4ff, #a83cff, #ff6ec7);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 4s linear infinite;
}
.general-ttl a {
    color: inherit;
    text-decoration: none;
    -webkit-text-fill-color: #ff6ec7;
}
.general-ttl a:hover,
.general-ttl a:focus {
    -webkit-text-fill-color: #ffd700;
}
.general-ttl + .sub-ttl {
    margin-top: -15px
}
.sub-ttl {
    padding: 0 15px 25px;
    color: #c4b5e0;
    font: 2.5rem Oswald, Arial, Helvetica, sans-serif;
    text-align: center;
}

/* === HOME TEXT / PAGE CONTENT === */
.home-text,
.page-content {
    padding: 25px;
    margin-bottom: 15px;
    color: #b8a8d8;
    font-size: 1.2rem;
    text-align: justify;
    background: linear-gradient(135deg, rgba(30, 10, 60, 0.6), rgba(20, 5, 50, 0.8));
    border: 1px solid rgba(168, 60, 255, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(5px);
}
.home-ttl,
.home-text h2,
.home-text h1 {
    font-size: 2rem;
    text-transform: uppercase;
    color: #fff;
}
.home-text h3 { font-size: 1.75rem; color: #fff; }
.home-text h4 { font-size: 1.5rem; color: #fff; }
.home-text h5 { font-size: 1.4rem; color: #fff; }
.home-text h6 { font-size: 1.3rem; color: #fff; }
.home-text h1, .home-text h2, .home-text h3, .home-text h4, .home-text h5, .home-text h6 {
    font-family: Oswald, Arial, Helvetica, sans-serif;
    padding-bottom: 0.6em;
    text-align: left;
}
.home-text p,
.home-text ul,
.home-text ol,
.page-content p,
.page-content ul,
.page-content ol {
    margin-bottom: 15px;
}
.home-text strong,
.page-content strong {
    font-weight: bold;
}
.page-content i {
    font-style: italic;
}

/* === BUTTONS (ORDER, REVIEW, NEWS) === */
.make-order {
    padding: 15px 0;
    text-align: center;
}
.make-order a,
.add-review a,
.more-news {
    display: inline-block;
    vertical-align: top;
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff6ec7, #a83cff);
    color: #fff;
    border: none;
    font: 16px Oswald,Arial,Helvetica,sans-serif;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .3s ease-out;
    box-shadow: 0 4px 20px rgba(255, 110, 199, 0.4);
    animation: glow 2s ease-in-out infinite;
    letter-spacing: 1px;
}
.make-order a:hover, .make-order a:focus,
.add-review a:hover, .add-review a:focus,
.more-news:hover, .more-news:focus {
    background: linear-gradient(135deg, #ffd700, #ff9a3c);
    color: #fff;
    text-decoration: none;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}
.make-order p {
    padding-bottom: 15px;
}
blockquote {
    padding: 10px 0 10px 30px;
    quotes: "\201C""\201D""\2018""\2019";
    border-left: 3px solid #a83cff;
}
blockquote:before {
    font-size: 4em;
    line-height: 0.1em;
    margin-right: 0.25em;
    vertical-align: -0.4em;
    content: open-quote;
    color: #ff6ec7;
}

/* === BREADCRUMB === */
.breadcrumb {
    padding: 10px 0;
    margin-bottom: 20px;
    list-style: none;
    background-color: transparent;
    border-radius: 0;
    font-size: 12px;
}
.breadcrumb > li {
    display: inline-block;
    vertical-align: middle;
    text-shadow: none;
}
.breadcrumb > li + li:before {
    padding: 0 5px;
    color: #7a6aa0;
    content: "\0087";
}
.breadcrumb a {
    color: #7a6aa0;
    text-decoration: none;
    transition: color .2s ease;
}
.breadcrumb a:hover {
    color: #ff6ec7;
}
.breadcrumb .active {
    color: #c4b5e0;
}

/* === SELECT LIST (CATEGORIES) === */
.select-list {
    padding-bottom: 25px;
    text-align: center;
}
.select-list li {
    display: inline-block;
    vertical-align: top;
    padding: 0 7px 15px;
}
.select-list a {
    display: block;
    cursor: pointer;
    text-transform: uppercase;
    padding: 1.3vw 2vw;
    color: #fff;
    border-radius: 16px;
    background: linear-gradient(135deg, #a83cff, #6e2bdb);
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(168, 60, 255, 0.3);
    transition: all .3s ease;
    border: 1px solid rgba(255, 110, 199, 0.2);
}
.select-list li:nth-child(2) a,
.select-list li:nth-child(3n+5) a {
    background: linear-gradient(135deg, #ff6ec7, #e040a0);
}
.select-list li:nth-child(3) a,
.select-list li:nth-child(3n+6) a {
    background: linear-gradient(135deg, #ffd700, #ff9a3c);
    color: #1a0533;
}
.select-list a:hover,
.select-list a:focus {
    text-decoration: none;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 30px rgba(168, 60, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

/* === PRODUCT LIST / CARDS === */
.product-list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
}
.product-list li {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 24.5%;
    padding: 0 15px 30px;
    text-align: center;
}
.reserve-list li {
    width: 33%;
}
.product-wrap {
    width: 100%; height: 100%;
    padding: 12px;
    text-decoration: none;
    display: block;
    cursor: pointer;
    text-align: left;
    color: #c4b5e0;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(30, 10, 60, 0.8), rgba(20, 5, 50, 0.95));
    border: 1px solid rgba(168, 60, 255, 0.2);
    margin-bottom: 10px;
    transition: all .3s ease-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}
.product-wrap::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ff6ec7, #a83cff, #3cb4ff, #ffd700);
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity .3s ease;
}
.product-wrap:hover,
.product-wrap:focus {
    text-decoration: none;
    color: #fff;
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 10px 40px rgba(168, 60, 255, 0.3);
}
.product-wrap:hover::before {
    opacity: 1;
}
.reserve-wrap:hover,
.reserve-wrap:focus {
    color: #fff;
}
.img-wrap {
    display: block;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
}
.img-wrap:before {
    display: block;
    padding-top: 100%;
    content: "";
}
.img-wrap img {
    position: absolute;
    top: 0; left: 0;
    right: 0; bottom: 0;
    max-width: 100%;
    margin: auto;
}
.product {
    width: 100%;
    padding-bottom: 45px;
}
.product-ttl {
    font: 18px Oswald, Arial, Helvetica, sans-serif;
    text-decoration: none;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, #ff6ec7, #a83cff) 1;
    padding: 10px 0;
    color: #fff;
}
.price {
    display: block;
    padding: 10px 0;
    color: #ffd700;
    font: 18px Oswald, Arial, Helvetica, sans-serif;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}
.product-description {
    font-size: 0.9em;
    padding: 10px 0;
}
.review-qty {
    display: inline-block;
    vertical-align: top;
    color: #c4b5e0;
    font: bold 12px Roboto, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    transition: all .2s ease-out;
    background: rgba(168, 60, 255, 0.15);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(168, 60, 255, 0.3);
}
.review-qty:hover,
.review-qty:focus {
    color: #fff;
    background: linear-gradient(135deg, #ff6ec7, #a83cff);
    text-decoration: none;
    border-color: transparent;
}

/* === NEWS / POSTS === */
div.post {
    background: linear-gradient(135deg, rgba(30, 10, 60, 0.6), rgba(20, 5, 50, 0.8));
    border: 1px solid rgba(168, 60, 255, 0.15);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 25px;
}
.news-title {
    padding: 15px 0;
    font-weight: bold;
    color: #fff;
}
.post img {
    max-width: 100%;
    border-radius: 12px;
}
a.post {
    color: #c4b5e0;
    text-decoration: none;
}
a.post:hover,
a.post:focus {
    color: #ff6ec7;
    text-decoration: none;
}
.post-meta {
    padding: 10px 0;
}
.post-meta > li {
    display: inline-block;
    vertical-align: top;
}
.post-meta > li + li {
    padding-left: 10px;
}
.widget {
    padding-bottom: 25px;
}
.widget-title {
    color: #a83cff;
    font-weight: bold;
}

/* === ORDER DETAILS === */
.order-details {
    font-size: 18px;
    padding: 20px 4%;
    color: #fff;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(30, 10, 60, 0.9), rgba(168, 60, 255, 0.2));
    border: 1px solid rgba(168, 60, 255, 0.3);
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(168, 60, 255, 0.2);
}
.order-details span {
    font-size: 23px;
}
.order-details .lighter {
    font-size: 1.6em;
}

/* === FORMS === */
.payment-form ::-webkit-input-placeholder,
::-webkit-input-placeholder {
    color: #7a6aa0;
}
.payment-form ::-moz-placeholder,
::-moz-placeholder {
    color: #7a6aa0;
}
.payment-form :-ms-input-placeholder,
:-ms-input-placeholder {
    color: #7a6aa0;
}
.payment-form :-moz-placeholder,
:-moz-placeholder {
    color: #7a6aa0;
}
.content-page {
    font-size: 17px;
    padding: 25px 0;
    margin-bottom: 25px;
}
.g-recaptcha > div {
    margin: auto;
    max-width: 100%;
    overflow: hidden;
}
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #ff6ec7;
    font: 20px Arial, Helvetica, sans-serif;
    cursor: pointer;
    opacity: 1;
    transition: all .2s ease;
}
.close:hover {
    text-shadow: 0 0 10px #ff6ec7;
    transform: rotate(90deg);
}
.content-page p,
.content-page ul,
.content-page ol {
    padding-bottom: 15px;
}
.content-page ul {
    list-style: inside circle;
}
.content-page ol {
    list-style: inside decimal;
}
.content-page ul li,
.content-page ol li {
    padding-bottom: 10px;
}
.contact-form {
    width: 800px;
    max-width: 100%;
    margin: auto;
    padding-bottom: 25px;
}
.contact-form input:not([type=submit]),
.contact-form textarea {
    width: 100%;
    border: 0;
    padding: 10px 15px;
    background: transparent;
    color: #c4b5e0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 16px;
    box-shadow: none;
    border: 0;
    border-bottom: 2px solid rgba(168, 60, 255, 0.3);
    border-radius: 0;
    transition: border-color .3s ease;
}
.contact-form input:not([type=submit]):focus,
.contact-form textarea:focus {
    border-bottom-color: #ff6ec7;
    outline: 0;
}
.form-button {
    text-align: center;
}
.payment-form {
    text-align: center;
    padding: 15px;
    width: 650px;
    max-width: 100%;
    margin: auto;
}
.payment-form .has-error input:focus,
.payment-form input:focus {
    outline: 0;
    box-shadow: 0 0 0 2px rgba(255, 110, 199, 0.3);
    border-color: #ff6ec7;
}
.payment-form select,
.payment-form input[type=text],
.payment-form input[type=email],
.payment-form input[type=password],
.payment-form textarea,
.form-control,
.hasDatepicker {
    padding: 12px 15px;
    border: 1px solid rgba(168, 60, 255, 0.3);
    background: rgba(20, 5, 50, 0.8);
    color: #e0d6f0;
    border-radius: 12px;
    display: block;
    box-shadow: none;
    width: 100%;
    height: auto;
    transition: all .3s ease;
}
.form-control:focus {
    border-color: #ff6ec7;
    box-shadow: 0 0 0 3px rgba(255, 110, 199, 0.15);
}
#statusform-verifycode,
#reviewform-verifycode,
#contactform-verifycode,
#signupform-verifycode {
    padding: 13px 15px;
}
.help-block {
    margin: 0;
    padding: 5px 0 0;
    text-align: left;
}
.has-error .help-block {
    color: #ffd700;
}
.has-error .form-control,
.has-error .form-control:focus,
.has-success .form-control,
.has-success .form-control:focus,
.form-control:focus {
    box-shadow: none;
}
.form-row {
    padding-bottom: 15px;
}
.field-addfundsform-mode > label {
    text-align: left;
    padding-bottom: 15px;
    display: block;
}
#addfundsform-mode label,
.payment-row label {
    display: inline-block;
    vertical-align: top;
    padding: 10px 15px;
    background: linear-gradient(135deg, rgba(30, 10, 60, 0.9), rgba(168, 60, 255, 0.2));
    color: #fff;
    font-size: 17px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid rgba(168, 60, 255, 0.2);
}
.theme--light.v-input:not(.v-input--is-disabled) input, .theme--light.v-input:not(.v-input--is-disabled) textarea,
.theme--light.v-icon, .theme--light.v-select .v-select__selections, .theme--light.v-label {
    color: #e0d6f0;
}
.theme--light.v-text-field > .v-input__control > .v-input__slot::before {
    border-color: #a83cff;
}
.check-col {
    position: relative;
    display: inline-block;
    vertical-align: top;
}
.check-col + .check-col {
    margin-left: 2px;
}
.check-col input {
    position: absolute;
    top: 0; bottom: 0; left: 0;
    margin: auto;
    opacity: 0;
}
.payment-form .check-col label {
    padding: 10px 15px;
    background: rgba(30, 10, 60, 0.8);
    display: block;
    color: #fff;
    font-size: 17px;
    opacity: .5;
    border-radius: 8px;
    border: 1px solid rgba(168, 60, 255, 0.2);
    transition: all .3s ease;
}
.check-col input:checked + label,
.check-col:hover label {
    opacity: 1;
    border-color: #ff6ec7;
    box-shadow: 0 0 15px rgba(255, 110, 199, 0.2);
}
.payment-form label {
    padding-right: 10px;
}
.payment-form .radio {
    display: inline-block;
    vertical-align: top;
    margin-top: 10px;
    padding: 7px 15px;
    background: rgba(168, 60, 255, 0.15);
    color: #c4b5e0;
    border-radius: 20px;
    border: 1px solid rgba(168, 60, 255, 0.3);
}
.payment-form .field-confirmform-mode > label {
    color: #e0d6f0;
    text-transform: uppercase;
    font-size: 1.4rem;
    font-weight: bold;
}

/* === SUBMIT BUTTONS === */
.payment-form input[type=submit],
.reload,
.address-form button[type=submit],
.payment-form button[type=submit],
.contact-form input[type=submit],
.contact-form button[type=submit],
.form-group button {
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff6ec7, #a83cff);
    color: #fff;
    border: none;
    text-transform: uppercase;
    font: 16px Oswald, Arial, Helvetica, sans-serif;
    border-radius: 50px;
    transition: all .3s ease-out;
    box-shadow: 0 4px 20px rgba(255, 110, 199, 0.3);
    cursor: pointer;
    letter-spacing: 1px;
}
.reload {
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
}
.reload-wrap {
    text-align: center;
}
.captcha-img {
    float: left;
    padding-right: 10px;
}
.captcha-input {
    overflow: hidden;
}
.payment-form input[type=submit]:hover,
.payment-form input[type=submit]:focus,
.payment-form button[type=submit]:hover,
.payment-form button[type=submit]:focus,
.address-form button[type=submit]:hover,
.address-form button[type=submit]:focus,
.contact-form button[type=submit]:hover,
.contact-form button[type=submit]:focus,
.reload:focus,
.reload:hover,
.form-group button:hover,
.form-group button:focus {
    color: #fff;
    outline: 0;
    background: linear-gradient(135deg, #ffd700, #ff9a3c);
    border: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}
.review-list .summary {
    display: none;
}
.summary {
    padding-bottom: 15px;
}

/* === PAGINATION === */
.pagination {
    display: block;
    padding-bottom: 15px;
    text-align: center;
    border-radius: 0;
}
.pagination>li {
    display: inline-block;
    vertical-align: top;
}
.pagination>li a {
    padding: 3px 10px;
    display: block;
    cursor: pointer;
    font-size: 1.5rem;
    text-decoration: none;
    background: rgba(168, 60, 255, 0.15);
    border: 1px solid rgba(168, 60, 255, 0.3);
    color: #c4b5e0;
    border-radius: 8px;
    margin: 0 2px;
    transition: all .2s ease;
}
.pagination>.disabled>span, .pagination>.disabled>span:hover, .pagination>.disabled>span:focus, .pagination>.disabled>a, .pagination>.disabled>a:hover, .pagination>.disabled>a:focus {
    opacity: .4;
    text-decoration: none;
    background: rgba(168, 60, 255, 0.1);
    border: 1px solid rgba(168, 60, 255, 0.2);
    border-radius: 8px;
    padding: 3px 10px;
    color: #7a6aa0;
    font-size: 1.5rem;
}
.pagination>.active>a, .pagination>.active>span, .pagination>.active>a:hover, .pagination>.active>span:hover, .pagination>.active>a:focus, .pagination>.active>span:focus {
    padding: 3px 10px;
    font-size: 1.5rem;
    border: 1px solid transparent;
    color: #fff;
    background: linear-gradient(135deg, #ff6ec7, #a83cff);
    box-shadow: 0 2px 10px rgba(255, 110, 199, 0.3);
}
.pagination>li a:hover,
.pagination>li a:focus {
    color: #fff;
    background: rgba(168, 60, 255, 0.4);
    border-color: #a83cff;
}
.pagination>li:first-child>a, .pagination>li:first-child>span,
.pagination>li:last-child>a, .pagination>li:last-child>span {
    border-radius: 8px;
}

.big {
    font-size: 2em;
}
.big-text {
    padding-bottom: 25px;
    font-size: 1.5em;
}

/* === FOOTER === */
.main-footer {
    text-align: center;
    padding: 10px 0;
    border-top: 3px solid;
    border-image: linear-gradient(90deg, #ff6ec7, #ffd700, #3cb4ff, #a83cff) 1;
    background: rgba(13, 2, 33, 0.95);
}
.main-footer a {
    color: #7a6aa0;
    text-transform: uppercase;
    font: 12px Oswald, Arial, Helvetica, sans-serif;
    transition: all .2s ease;
}
.main-footer a:hover,
.main-footer a:focus {
    color: #ff6ec7;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(255, 110, 199, 0.3);
}
.footer-nav a {
    display: inline-block;
    vertical-align: top;
    padding: 10px;
}

/* === TABS / BUTTONS === */
.tabs-well,
.btn-well {
    padding-bottom: 10px;
}
.tabs-well .tabs-link,
.tabs-well .btn,
.tabs-well .balance-btn,
.btn-well a,
.btn-logout,
.removeItem,
#addItem {
    display: inline-block;
    vertical-align: top;
    padding: 8px 18px;
    margin: 0 5px 5px 0;
    background: rgba(168, 60, 255, 0.2);
    color: #c4b5e0;
    border-radius: 25px;
    border: 1px solid rgba(168, 60, 255, 0.3);
    box-shadow: none;
    transition: all .3s ease;
    font-weight: bold;
}
.tabs-well .btn-success {
    background: linear-gradient(135deg, #ff6ec7, #a83cff);
    color: #fff;
    border-color: transparent;
}
.tabs-well .tabs-link:hover,
.tabs-well .btn:hover,
.tabs-well .balance-btn:hover,
.tabs-well .tabs-link:focus,
.tabs-well .btn:focus,
.btn-well a:hover,
.btn-well a:focus,
.btn-logout:hover,
.btn-logout:focus,
.removeItem:hover,
.removeItem:focus,
.tabs-well .balance-btn:focus,
#addItem:hover,
#addItem:focus {
    border: 1px solid transparent;
    outline: 0;
    box-shadow: 0 4px 20px rgba(255, 110, 199, 0.3);
    background: linear-gradient(135deg, #ff6ec7, #a83cff);
    color: #fff;
    text-decoration: none;
}

/* === TABLES === */
.table-wrap {
    width: 100%;
    overflow: auto;
}
.table .action-column {
    width: 75px;
}
.table-wrap .table {
    max-width: none;
}
.table .form-control,
.table .hasDatepicker {
    padding: 5px 7px;
}
.table > thead > tr > th,
.table-wrap .table > thead > tr > th {
    background: linear-gradient(135deg, rgba(30, 10, 60, 0.95), rgba(168, 60, 255, 0.3));
    border-color: rgba(168, 60, 255, 0.2);
    color: #fff;
    vertical-align: middle;
    font: 15px Oswald, Arial, Helvetica, sans-serif;
}
.table > thead > tr > th > a {
    color: #fff;
}
.table-wrap thead th a {
    color: #fff;
}
.table .multi-width {
    min-width: 170px;
}
.responsive-table .table {
    max-width: 100%;
}
.responsive-table img {
    max-width: 100%;
}
.table td[data-title="\041d\043e\043c\0435\0440 \0434\043b\044f \043f\043e\043f\043e\043b\043d\0435\043d\0438\044f"] {
    overflow: hidden;
    text-overflow: ellipsis;
}
#product_items .item,
.address-wrap {
    background: rgba(168, 60, 255, 0.08);
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 12px;
    border: 1px solid rgba(168, 60, 255, 0.15);
}
.table-striped > tbody > tr:nth-of-type(2n+1) {
    background-color: rgba(168, 60, 255, 0.06);
}
.table-bordered {
    border: 1px solid rgba(168, 60, 255, 0.2);
}
.table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td {
    border: 1px solid rgba(168, 60, 255, 0.15);
}
.table > thead > tr > td.warning, .table > tbody > tr > td.warning, .table > tfoot > tr > td.warning, .table > thead > tr > th.warning, .table > tbody > tr > th.warning, .table > tfoot > tr > th.warning, .table > thead > tr.warning > td, .table > tbody > tr.warning > td, .table > tfoot > tr.warning > td, .table > thead > tr.warning > th, .table > tbody > tr.warning > th, .table > tfoot > tr.warning > th {
    background-color: rgba(255, 215, 0, 0.12);
}
.table > thead > tr > td.success, .table > tbody > tr > td.success, .table > tfoot > tr > td.success, .table > thead > tr > th.success, .table > tbody > tr > th.success, .table > tfoot > tr > th.success, .table > thead > tr.success > td, .table > tbody > tr.success > td, .table > tfoot > tr.success > td, .table > thead > tr.success > th, .table > tbody > tr.success > th, .table > tfoot > tr.success > th {
    background-color: rgba(60, 255, 110, 0.12);
}

/* === ADDRESS FORM === */
.address-form .form-body {
    padding: 20px 15px;
    background: rgba(20, 5, 50, 0.8);
    border: 1px solid rgba(168, 60, 255, 0.15);
    border-radius: 12px;
    margin-bottom: 15px;
}
.address-form .form-group {
    float: left;
    width: 25%;
    padding: 0 10px;
}
.address-form div[class*='address_text'],
.address-form div[class*='priority'] {
    float: none;
    width: 100%;
    clear: both;
}
.qr-code {
    padding-bottom: 15px;
    text-align: center;
}
body .application--wrap {
    min-height: 0;
}
body .theme--light.application {
    background: transparent;
    color: inherit;
}

/* === TICKET / ADMIN / USER INFO === */
.ticket-info {
    padding-bottom: 15px;
}
.ticket-info > span {
    color: #ff6ec7;
    font: 18px Oswald, Arial, Helvetica, sans-serif;
}
.admin-info {
    padding: 20px;
    background: linear-gradient(135deg, rgba(30, 10, 60, 0.6), rgba(20, 5, 50, 0.8));
    border: 1px solid rgba(168, 60, 255, 0.2);
    border-radius: 16px;
    margin-bottom: 15px;
}
.admin-info p,
.admin-info ol,
.admin-info ul {
    padding-bottom: 10px;
}
.admin-info ol {
    list-style: decimal inside;
}
.admin-info strong {
    font-weight: bold;
    color: #ffd700;
}
.admin-info ul {
    list-style: circle inside;
}
.admin-info a {
    color: #ff6ec7;
}
.control-label {
    font: 16px Oswald, Arial, Helvetica, sans-serif;
    padding-bottom: 15px;
    color: #c4b5e0;
}
.user-info {
    padding: 20px;
    background: linear-gradient(135deg, rgba(30, 10, 60, 0.6), rgba(20, 5, 50, 0.8));
    border: 1px solid rgba(168, 60, 255, 0.2);
    border-radius: 16px;
    margin-bottom: 15px;
}
.user-info .hasDatepicker {
    background: rgba(168, 60, 255, 0.15);
}
.user-info > li {
    padding-bottom: 5px;
}
.user-info > li > span {
    font-weight: bold;
    color: #ff6ec7;
}
.last-order div[data-key] {
    float: left;
    width: 48.5%;
}
.last-order div[data-key]:nth-child(odd) {
    margin-left: 3%;
}
.fixed-table .table {
    table-layout: fixed;
    width: 100%;
}
.fixed-table .table td {
    word-wrap: break-word;
}

/* === MODAL === */
#mainTextModal {
    z-index: 9999999 !important;
    background: rgba(13, 2, 33, 0.7);
    backdrop-filter: blur(5px);
}
.modal-backdrop.in {
    z-index: 9999998 !important;
    opacity: 0.8 !important;
}
.modal-content .btn-primary {
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff6ec7, #a83cff);
    color: #fff;
    border: none;
    text-transform: uppercase;
    font: 16px Oswald, Arial, Helvetica, sans-serif;
    border-radius: 50px;
    transition: all .3s ease-out;
    box-shadow: 0 4px 20px rgba(255, 110, 199, 0.3);
}
.modal-content .btn-primary:hover,
.modal-content .btn-primary:focus, .modal-content .btn-primary.focus {
    color: #fff;
    outline: 0;
    background: linear-gradient(135deg, #ffd700, #ff9a3c);
    border: none;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}
.modal-content {
    background: linear-gradient(135deg, #0d0221, #1a0533);
    border: 1px solid rgba(168, 60, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(168, 60, 255, 0.3);
}
.modal-header,
.modal-footer {
    border-color: rgba(168, 60, 255, 0.2);
}
.modal-title {
    font-weight: bold;
    text-align: center;
    font-size: 1.5em;
    color: #fff;
    background: linear-gradient(90deg, #ff6ec7, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === FONTS === */
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular-webfont.woff') format('woff'),
    url('../fonts/Roboto-Regular-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold-webfont.woff') format('woff'),
    url('../fonts/Roboto-Bold-webfont.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Oswald-Regular.eot');
    src: url('../fonts/Oswald-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Oswald-Regular.woff2') format('woff2'),
    url('../fonts/Oswald-Regular.woff') format('woff'),
    url('../fonts/Oswald-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'fontello';
    src: url('../fonts/fontello.eot?58234571');
    src: url('../fonts/fontello.eot?58234571#iefix') format('embedded-opentype'),
    url('../fonts/fontello.woff2?58234571') format('woff2'),
    url('../fonts/fontello.woff?58234571') format('woff'),
    url('../fonts/fontello.ttf?58234571') format('truetype'),
    url('../fonts/fontello.svg?58234571#fontello') format('svg');
    font-weight: normal;
    font-style: normal;
}
[class^="icon-"]:before, [class*=" icon-"]:before {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.icon-basket:before { content: '\e800'; }
.icon-award:before { content: '\e801'; }
.icon-login-1:before { content: '\e802'; }
.icon-briefcase:before { content: '\e803'; }
.icon-user:before { content: '\e804'; }
.icon-globe:before { content: '\e805'; }
.icon-location:before { content: '\e806'; }
.icon-clock:before { content: '\e807'; }
.icon-cancel:before { content: '\e808'; }
.icon-pencil:before { content: '\e809'; }
.icon-star:before { content: '\e80a'; }
.icon-star-empty:before { content: '\e80b'; }
.icon-reply:before { content: '\f112'; }
.icon-dollar:before { content: '\f155'; }
.icon-paper-plane:before { content: '\f1d8'; }
.icon-user-plus:before { content: '\f234'; }
.icon-shopping-basket:before { content: '\f291'; }


/* === RESPONSIVE === */
@media screen and (max-width: 1040px) {
    .general-header {
        text-align: center;
    }
    .general-nav,
    .header-right {
        float: none;
    }
    .tg-bots {
        text-align: center;
    }
    .responsive-table .table,
    .responsive-table .table tbody,
    .responsive-table .table thead,
    .responsive-table .table tr,
    .responsive-table .table td,
    .responsive-table .table thead tr.filters {
        display: block;
        width: 100%;
    }
    .responsive-table .table thead tr {
        display: none;
    }
    .responsive-table td[data-title]:before {
        padding-right: 15px;
        font-weight: bold;
        content: attr(data-title);
        color: #ff6ec7;
    }
    .responsive-table .table-striped > tbody > tr:nth-of-type(odd) {
        background-color: rgba(168, 60, 255, 0.08);
    }
    .responsive-table .table td {
        border: 0;
    }
    .responsive-table .table thead td:empty {
        display: none;
    }
}
@media screen and (max-width: 900px) {
    .product-list li {
        width: 32.5%;
    }
    .reserve-list li {
        width: 49%;
    }
    .order-details {
        padding-left: 10px;
    }
    .last-order div[data-key] {
        float: none;
        width: 100%;
    }
    .last-order div[data-key]:nth-child(odd) {
        margin-left: 0;
    }
    .add-review a {
        margin-bottom: 10px;
    }
}
@media screen and (max-width: 790px) {
    .select-list li {
        width: 49%;
    }
    .address-form .form-group:not(:last-child) {
        width: 50%;
    }
}
@media screen and (max-width: 650px) {
    .product-list li {
        width: 45.5%;
    }
    .reserve-list li {
        width: 100%;
    }
    .general-ttl {
        font-size: 2rem;
    }
    .general-nav li {
        display: block;
        text-align: center;
    }
    .general-nav > li > a {
        display: inline-block;
        vertical-align: top;
    }
    .select-list {
        text-align: center;
    }
    .round-wrap .sukub {
        display: none;
    }
    .address-form .form-group:not(:last-child) {
        width: 100%;
        float: none;
    }
    .review-header {
        text-align: center;
    }
    .rating {
        margin: 10px auto 0;
    }
}
@media screen and (max-width: 560px) {
    .general-header {
        padding: 10px 0;
    }
    .general-nav .dropdown-menu {
        position: relative;
        width: 100%;
    }
    .select-list li {
        width: 100%;
    }
    .balance-row {
        text-align: center;
    }
    .balance {
        display: block;
        margin-bottom: 5px;
    }
    .top-nav {
        text-align: left;
    }
    .top-nav > li {
        width: 48%;
    }
}
@media screen and (max-width: 480px) {
    .product-list li {
        width: 100%;
    }
}
