* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #667eea 100%);
min-height: 100vh;
color: #2d3748;
line-height: 1.6;
} .roulette-prediction-container {
max-width: 1200px;
margin: 2rem auto;
padding: 2rem;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(15px);
border-radius: 25px;
box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
border: 1px solid rgba(255, 255, 255, 0.2);
position: relative;
overflow: hidden;
}
.roulette-prediction-container::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
border-radius: 25px 25px 0 0;
} .roulette-title {
color: #2d3748;
text-align: center;
margin-bottom: 2rem;
font-weight: 700;
font-size: 2.5rem;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-shadow: none;
position: relative;
}
.roulette-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 3px;
background: linear-gradient(90deg, #667eea, #764ba2);
border-radius: 2px;
} .mode-explanation {
background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
padding: 2rem;
border-radius: 20px;
margin-bottom: 2rem;
color: white;
box-shadow: 0 15px 35px rgba(79, 172, 254, 0.3);
position: relative;
overflow: hidden;
}
.mode-explanation::before {
content: '';
position: absolute;
top: -50%;
right: -50%;
width: 100%;
height: 100%;
background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}
.mode-explanation p {
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 1rem;
}
.mode-explanation ul {
list-style: none;
padding: 0;
}
.mode-explanation li {
margin: 1rem 0;
padding: 1rem;
background: rgba(255, 255, 255, 0.15);
border-radius: 12px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
transition: all 0.3s ease;
}
.mode-explanation li:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateX(5px);
}
.mode-explanation strong {
color: #fff;
text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
} .section-title {
color: #2d3748;
margin: 2rem 0 1.5rem;
font-weight: 600;
font-size: 1.4rem;
position: relative;
padding-left: 1rem;
}
.section-title::before {
content: '';
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 4px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 2px;
} .roulette-form {
background: #fff;
padding: 2.5rem;
border-radius: 20px;
margin-bottom: 2rem;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
border: 1px solid rgba(0, 0, 0, 0.05);
position: relative;
transition: all 0.3s ease;
}
.roulette-form:hover {
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
transform: translateY(-2px);
}
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
margin-bottom: 1.5rem;
padding: 1.5rem;
background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
border-radius: 15px;
border: 1px solid #e2e8f0;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.form-row::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 2px;
background: linear-gradient(90deg, transparent, #667eea, transparent);
opacity: 0;
transition: opacity 0.3s ease;
}
.form-row:hover {
background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
border-color: #cbd5e0;
transform: translateY(-1px);
}
.form-row:hover::before {
opacity: 1;
}
.form-group {
display: flex;
flex-direction: column;
position: relative;
}
.form-input, .form-select {
padding: 1rem 1.25rem;
border: 2px solid #e2e8f0;
border-radius: 12px;
font-size: 1rem;
background: #fff;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
font-weight: 500;
color: #2d3748;
min-height: 50px;
line-height: 1.5;
}
.form-select {
appearance: none;
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
background-repeat: no-repeat;
background-position: right 1rem center;
background-size: 1.5rem;
padding-right: 3rem;
cursor: pointer;
}
.form-select option {
padding: 0.75rem 1rem;
background: #fff;
color: #2d3748;
font-size: 1rem;
font-weight: 500;
line-height: 1.5;
border: none;
min-height: 40px;
}
.form-select option:hover,
.form-select option:focus {
background: #f7fafc;
color: #2d3748;
}
.form-select::-ms-expand {
display: none;
}
.form-input:focus, .form-select:focus {
outline: none;
border-color: #667eea;
box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
transform: translateY(-1px);
}
.form-input:hover, .form-select:hover {
border-color: #cbd5e0;
} .btn {
padding: 1.25rem 2rem;
font-size: 1.1rem;
font-weight: 600;
line-height: 1;
text-align: center;
cursor: pointer;
border-radius: 15px;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
border: none;
position: relative;
overflow: hidden;
text-transform: uppercase;
letter-spacing: 1px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
transition: left 0.5s ease;
}
.btn:hover::before {
left: 100%;
}
.btn-primary {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: #fff;
}
.btn-primary:hover {
background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
transform: translateY(-3px);
box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}
.btn-danger {
background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
color: #fff;
}
.btn-danger:hover {
background: linear-gradient(135deg, #ff5252 0%, #e53e3e 100%);
transform: translateY(-3px);
box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
}
.btn-block {
display: block;
width: 100%;
} .prediction-container {
background: #fff;
padding: 2.5rem;
border-radius: 20px;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
position: relative;
overflow: hidden;
}
.prediction-container::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #4facfe, #00f2fe);
border-radius: 20px 20px 0 0;
}
.prediction-section {
margin-bottom: 2rem;
}
.prediction-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
gap: 1.5rem;
margin-top: 1.5rem;
}
.prediction-item {
padding: 1.5rem 1rem;
border-radius: 18px;
font-weight: 700;
color: #fff;
text-align: center;
position: relative;
overflow: hidden;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
cursor: pointer;
font-size: 1.3rem;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
border: 2px solid rgba(255, 255, 255, 0.1);
}
.prediction-item::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
transform: rotate(45deg);
transition: all 0.6s ease;
opacity: 0;
}
.prediction-item:hover {
transform: translateY(-8px) scale(1.05);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.prediction-item:hover::before {
opacity: 1;
top: 50%;
left: 50%;
}
.prediction-item.red {
background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}
.prediction-item.black {
background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
box-shadow: 0 8px 25px rgba(45, 55, 72, 0.3);
}
.prediction-item.green {
background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
box-shadow: 0 8px 25px rgba(72, 187, 120, 0.3);
}
.prediction-item.grey {
background: linear-gradient(135deg, #a0aec0 0%, #718096 100%);
box-shadow: 0 8px 25px rgba(160, 174, 192, 0.3);
}
.prediction-item .confidence {
font-size: 0.85rem;
opacity: 0.9;
display: block;
margin-top: 0.5rem;
font-weight: 500;
} .prediction-item.ultimate-normal {
border: 3px solid #4facfe;
position: relative;
}
.prediction-item.ultimate-normal::after {
content: 'NORMAL';
position: absolute;
top: -8px;
right: -8px;
background: #4facfe;
color: white;
padding: 2px 8px;
border-radius: 8px;
font-size: 0.7rem;
font-weight: 600;
}
.prediction-item.ultimate-reverse {
border: 3px solid #ff6b6b;
position: relative;
}
.prediction-item.ultimate-reverse::after {
content: 'REVERSE';
position: absolute;
top: -8px;
right: -8px;
background: #ff6b6b;
color: white;
padding: 2px 8px;
border-radius: 8px;
font-size: 0.7rem;
font-weight: 600;
}
.prediction-item.ultimate-remaining {
border: 3px dashed #9b59b6;
position: relative;
}
.prediction-item.ultimate-remaining::after {
content: 'RANDOM';
position: absolute;
top: -8px;
right: -8px;
background: #9b59b6;
color: white;
padding: 2px 8px;
border-radius: 8px;
font-size: 0.7rem;
font-weight: 600;
} .prediction-summary {
margin-top: 2rem;
padding: 1.5rem;
background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
border-radius: 15px;
border: 1px solid #e2e8f0;
position: relative;
}
.prediction-summary::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 2px;
background: linear-gradient(90deg, #667eea, #764ba2);
border-radius: 15px 15px 0 0;
}
.prediction-summary p {
margin: 0.5rem 0;
font-weight: 500;
color: #4a5568;
}
.prediction-summary strong {
color: #2d3748;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
} .error-message {
background: linear-gradient(135deg, #fed7d7 0%, #feb2b2 100%);
color: #c53030;
padding: 1.5rem;
border-radius: 12px;
font-weight: 500;
margin-top: 1rem;
border: 1px solid #fc8181;
box-shadow: 0 8px 25px rgba(252, 129, 129, 0.2);
}
.success-message {
background: linear-gradient(135deg, #c6f6d5 0%, #9ae6b4 100%);
color: #2f855a;
padding: 1.5rem;
border-radius: 12px;
font-weight: 500;
margin-top: 1rem;
border: 1px solid #68d391;
box-shadow: 0 8px 25px rgba(104, 211, 145, 0.2);
} @keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
.loading {
animation: pulse 2s infinite;
text-align: center;
padding: 2rem;
font-weight: 500;
color: #667eea;
} @media (max-width: 768px) {
.roulette-prediction-container {
margin: 1rem;
padding: 1.5rem;
border-radius: 20px;
}
.roulette-title {
font-size: 2rem;
}
.form-row {
grid-template-columns: 1fr;
gap: 1rem;
padding: 1rem;
}
.prediction-list {
grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
gap: 1rem;
}
.prediction-item {
padding: 1rem 0.5rem;
font-size: 1.1rem;
}
.btn {
padding: 1rem 1.5rem;
font-size: 1rem;
}
.mode-explanation {
padding: 1.5rem;
}
.roulette-form {
padding: 1.5rem;
}
}
@media (max-width: 480px) {
.roulette-prediction-container {
margin: 0.5rem;
padding: 1rem;
}
.roulette-title {
font-size: 1.5rem;
}
.section-title {
font-size: 1.2rem;
}
.prediction-list {
grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
}
} @keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.prediction-container {
animation: fadeInUp 0.6s ease-out;
}
.form-row {
animation: fadeInUp 0.4s ease-out;
}
.prediction-item {
animation: fadeInUp 0.5s ease-out;
} ::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
} .control-buttons {
display: flex;
gap: 1rem;
margin-top: 1rem;
}
.info-panel {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.info-card {
background: #fff;
padding: 2rem;
border-radius: 20px;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
border: 1px solid rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.info-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
}
.info-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.info-header {
display: flex;
align-items: center;
margin-bottom: 1.5rem;
padding-bottom: 1rem;
border-bottom: 2px solid #f0f0f0;
}
.info-header i {
font-size: 1.5rem;
margin-right: 1rem;
color: #667eea;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 0.5rem;
border-radius: 10px;
color: white;
box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}
.info-header h3 {
font-size: 1.3rem;
font-weight: 600;
color: #2d3748;
}
.info-content ol {
padding-left: 1.5rem;
color: #4a5568;
}
.info-content li {
margin: 0.75rem 0;
line-height: 1.6;
transition: all 0.3s ease;
}
.info-content li:hover {
color: #2d3748;
padding-left: 0.5rem;
}
.color-guide {
display: flex;
flex-direction: column;
gap: 1rem;
}
.color-item {
display: flex;
align-items: center;
gap: 1rem;
padding: 0.75rem;
border-radius: 10px;
background: #f8fafc;
transition: all 0.3s ease;
}
.color-item:hover {
background: #edf2f7;
transform: translateX(5px);
}
.color-box {
width: 35px;
height: 35px;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
position: relative;
overflow: hidden;
}
.color-box::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
transform: rotate(45deg);
transition: all 0.5s ease;
opacity: 0;
}
.color-item:hover .color-box::before {
opacity: 1;
animation: shimmer 1s ease-in-out;
}
.color-box.red {
background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
}
.color-box.black {
background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
}
.color-box.green {
background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
}
.feature-list {
list-style: none;
padding: 0;
}
.feature-list li {
margin: 0.75rem 0;
display: flex;
align-items: center;
color: #4a5568;
padding: 0.5rem;
border-radius: 8px;
transition: all 0.3s ease;
}
.feature-list li:hover {
background: #f8fafc;
color: #2d3748;
padding-left: 1rem;
}
.feature-list i {
color: #48bb78;
margin-right: 0.75rem;
font-size: 1.1rem;
background: #c6f6d5;
padding: 0.25rem;
border-radius: 50%;
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
}
.footer {
margin-top: 3rem;
padding: 2rem;
background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
border-radius: 20px;
text-align: center;
border: 1px solid #e2e8f0;
position: relative;
overflow: hidden;
}
.footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, #667eea, #764ba2);
}
.footer p {
color: #718096;
font-size: 0.95rem;
margin-bottom: 1rem;
font-weight: 500;
}
.footer i {
color: #667eea;
margin-right: 0.5rem;
}
.version-info {
color: #a0aec0;
font-size: 0.85rem;
font-weight: 600;
background: rgba(102, 126, 234, 0.1);
padding: 0.5rem 1rem;
border-radius: 20px;
display: inline-block;
} .loading-spinner {
display: inline-block;
width: 30px;
height: 30px;
border: 3px solid rgba(102, 126, 234, 0.3);
border-radius: 50%;
border-top-color: #667eea;
animation: spin 1s ease-in-out infinite;
margin-right: 0.5rem;
}
@keyframes spin {
to { transform: rotate(360deg); }
} label {
font-weight: 600;
color: #4a5568;
margin-bottom: 0.5rem;
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 0.5px;
} @media (max-width: 768px) {
.info-panel {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.control-buttons {
flex-direction: column;
}
.color-guide {
align-items: flex-start;
}
.info-header i {
padding: 0.4rem;
font-size: 1.3rem;
}
.color-box {
width: 30px;
height: 30px;
}
}
@media (max-width: 480px) {
.info-card {
padding: 1.5rem;
}
.footer {
padding: 1.5rem;
}
.version-info {
font-size: 0.8rem;
padding: 0.4rem 0.8rem;
}
} .tooltip {
position: relative;
cursor: help;
}
.tooltip::before {
content: attr(data-tooltip);
position: absolute;
bottom: 125%;
left: 50%;
transform: translateX(-50%);
background: #2d3748;
color: white;
padding: 0.5rem 1rem;
border-radius: 8px;
font-size: 0.85rem;
white-space: nowrap;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
z-index: 1000;
}
.tooltip::after {
content: '';
position: absolute;
bottom: 115%;
left: 50%;
transform: translateX(-50%);
border: 5px solid transparent;
border-top-color: #2d3748;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}
.tooltip:hover::before,
.tooltip:hover::after {
opacity: 1;
visibility: visible;
} .form-select {
padding: 1rem 3rem 1rem 1.25rem !important;
border: 2px solid #e2e8f0 !important;
border-radius: 12px !important;
font-size: 1rem !important;
background: #fff !important;
color: #2d3748 !important;
font-weight: 500 !important;
min-height: 52px !important;
line-height: 1.5 !important;
cursor: pointer !important; appearance: none !important;
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667eea' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
background-repeat: no-repeat !important;
background-position: right 1rem center !important;
background-size: 1.5rem !important; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
} .form-select:focus {
outline: none !important;
border-color: #667eea !important;
box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1) !important;
transform: translateY(-1px) !important;
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667eea' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
} .form-select:hover {
border-color: #cbd5e0 !important;
background-color: #f9fafb !important;
} .form-select option {
padding: 12px 16px !important;
background: #fff !important;
color: #2d3748 !important;
font-size: 1rem !important;
font-weight: 500 !important;
line-height: 1.5 !important;
border: none !important;
min-height: 44px !important;
}
.form-select option:hover,
.form-select option:focus {
background: #f7fafc !important;
color: #2d3748 !important;
}
.form-select option:checked,
.form-select option:selected {
background: #667eea !important;
color: #fff !important;
font-weight: 600 !important;
} .form-select option[value=""] {
color: #a0aec0 !important;
font-style: italic !important;
} .form-select::-ms-expand {
display: none !important;
} @-moz-document url-prefix() {
.form-select {
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667eea' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
}
} .form-group select.form-select {
width: 100% !important;
box-sizing: border-box !important;
} .validation-success .form-select {
border-color: #48bb78 !important;
background-color: rgba(72, 187, 120, 0.05) !important;
}
.validation-error .form-select {
border-color: #ff6b6b !important;
background-color: rgba(255, 107, 107, 0.05) !important;
}
.validation-partial .form-select {
border-color: #ffd700 !important;
background-color: rgba(255, 215, 0, 0.05) !important;
} @media (max-width: 768px) {
.form-select {
font-size: 16px !important; min-height: 48px !important;
padding: 0.75rem 2.5rem 0.75rem 1rem !important;
}
} @media (prefers-color-scheme: dark) {
.form-select {
background-color: #2d3748 !important;
color: #e2e8f0 !important;
border-color: #4a5568 !important;
}
.form-select option {
background-color: #2d3748 !important;
color: #e2e8f0 !important;
}
} .form-select:focus {
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667eea' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' transform='rotate(180)'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
}