﻿:root
{
    --sa-top: env(safe-area-inset-top);
    --sa-right: env(safe-area-inset-right);
    --sa-bottom: env(safe-area-inset-bottom);
    --sa-left: env(safe-area-inset-left);
    --mod-blue-100: #3a2e76;
    --very-dark-violet: #150e25;
    --very-dark-violet-200: #211442;
    --very-dark-violet-300: #180c35;
}
html body
{
    padding: 0;
}
body
{
    background: var(--very-dark-violet)!important;
    letter-spacing: 0;
    width: 100%;
    height: 100%;
    font-family: Inter,sans-serif,system-ui;
}
body, h1, h2, h3, h4, ol, p, ul
{
    margin: 0;
    padding: 0;
}
::-webkit-scrollbar-thumb
{
    background: var(--mod-blue-100);
    border-radius: 5px;
}
::-webkit-scrollbar
{
    width: 4px;
}
::-webkit-scrollbar-track
{
    background: var(--very-dark-violet-300);
    margin: 0;
}
*
{
    scrollbar-width: thin;
    scrollbar-color: var(--mod-blue-100) var(--very-dark-violet-300);
    box-sizing: border-box;
}
@keyframes spin
{
    0%
    {
        transform: rotate(0deg)!important;
    }
    to
    {
        transform: rotate(1turn);
    }
}
.ellipsis
{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
span[class*=" icon-"]:before, span[class^=icon-]:before
{
    width: inherit;
}
.w-100
{
    width: 100%;
}
.h-100
{
    height: 100%;
}
.fontWeightRegular
{
    font-weight: 400;
}
.flex
{
    display: flex;
}
.flex-1
{
    flex: 1 1;
}
.line-clamp-1
{
    -webkit-line-clamp: 1;
}
.line-clamp-1, .line-clamp-2
{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-2
{
    -webkit-line-clamp: 2;
}
.line-clamp-3
{
    -webkit-line-clamp: 3;
}
.line-clamp-3, .line-clamp-4
{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-4
{
    -webkit-line-clamp: 4;
}
.wrapper-img-scale>img
{
    transition: transform .5s;
}
.wrapper-img-scale:hover>img
{
    transform: scale(1.2);
}
.d-none
{
    display: none!important;
}
.flex-col-center
{
    display: flex;
    flex-direction: column;
    align-items: center;
}
input::-ms-clear, input::-ms-reveal
{
    display: none;
}
.word-break-all
{
    word-break: break-all;
}
.m-auto
{
    margin: auto;
}
.mb-auto
{
    margin-bottom: auto;
}
.mt-auto
{
    margin-top: auto;
}
.relative
{
    position: relative;
}
.fontFamilyBarlow
{
    font-family: Barlow,sans-serif;
}
@keyframes shake
{
    0%
    {
        transform: translate(1px,1px) rotate(0deg);
    }
    10%
    {
        transform: translate(-1px,-2px) rotate(-1deg);
    }
    20%
    {
        transform: translate(-3px) rotate(1deg);
    }
    30%
    {
        transform: translate(3px,2px) rotate(0deg);
    }
    40%
    {
        transform: translate(1px,-1px) rotate(1deg);
    }
    50%
    {
        transform: translate(-1px,2px) rotate(-1deg);
    }
    60%
    {
        transform: translate(-3px,1px) rotate(0deg);
    }
    70%
    {
        transform: translate(3px,1px) rotate(-1deg);
    }
    80%
    {
        transform: translate(-1px,-1px) rotate(1deg);
    }
    90%
    {
        transform: translate(1px,2px) rotate(0deg);
    }
    to
    {
        transform: translate(1px,-2px) rotate(-1deg);
    }
}
.egg-animation
{
    animation: shake .5s!important;
    transition: opacity .5s;
}
.overlay-layout--Qu-L0 *
{
    font-family: Inter,sans-serif,system-ui!important;
}
input:-webkit-autofill, input:-webkit-autofill:active, input:-webkit-autofill:focus
{
    -webkit-text-fill-color: #fff!important;
    -webkit-background-clip: text!important;
    background-clip: text!important;
}
input:not(.MuiSelect-nativeInput):-webkit-autofill, input:not(.MuiSelect-nativeInput):-webkit-autofill:active, input:not(.MuiSelect-nativeInput):-webkit-autofill:focus
{
    -webkit-box-shadow: inset 0 0 0 50px #180c35!important;
}
.MuiSelect-nativeInput:-webkit-autofill, .MuiSelect-nativeInput:-webkit-autofill:active, .MuiSelect-nativeInput:-webkit-autofill:focus
{
    -webkit-box-shadow: inset 0 0 0 50px #211442!important;
}
.animated__scaleUpFromBottom .animated__scaleUpFromBottom__children
{
    transform-origin: bottom;
    transition: transform .3s ease-in-out;
}
.animated__scaleUpFromBottom .animated__scaleUpFromBottom__children .svg-main-path
{
    transition: fill .3s ease-in-out;
}
.animated__scaleUpFromBottom:hover .animated__scaleUpFromBottom__children
{
    transform: scale(1.1);
}
.animated__scaleUpFromBottom:hover .animated__scaleUpFromBottom__children .svg-main-path
{
    fill: #9d81ea;
}
.animated__scaleUpFromCenter .animated__scaleUpFromCenter__children
{
    transform-origin: center;
    transition: transform .3s ease-in-out;
}
.animated__scaleUpFromCenter:hover .animated__scaleUpFromCenter__children
{
    transform: scale(.8);
}
@keyframes fadeInUp
{
    0%
    {
        opacity: 0;
        transform: translate3d(0,10px,0);
    }
    to
    {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animated__fadeInUp
{
    animation: fadeInUp .5s ease-in-out;
}
@keyframes shimmer
{
    to
    {
        -webkit-mask-position: left;
    }
}
@keyframes scaleInUp
{
    0%
    {
        opacity: 0;
        transform: scale(.9);
    }
    to
    {
        opacity: 1;
        transform: scale(1);
    }
}
.animated__scaleInUp
{
    animation: scaleInUp .3s ease-in-out;
}
@keyframes progressNotification
{
    0%
    {
        height: 0;
    }
    to
    {
        height: 100%;
        border-bottom-left-radius: 7px;
    }
}
@keyframes shine
{
    0%
    {
        opacity: 0;
        left: -100%;
    }
    to
    {
        opacity: 1;
        left: 100%;
    }
}
@keyframes bounceIn
{
    0%
    {
        opacity: 0;
        transform: scale(.3);
    }
    50%
    {
        opacity: 1;
        transform: scale(1.05);
    }
    70%
    {
        transform: scale(.9);
    }
    to
    {
        transform: scale(1);
    }
}
.animated__transition
{
    transition: all 355ms cubic-bezier(.4,0,.6,1) 0ms;
}
@font-face
{
    font-family: icon-fonts;
    src: url(https://www.spinbet.com/fonts/icon-fonts.ttf?68c68cce4e9f17e5c2b853376d212ba8) format("truetype"),url(https://www.spinbet.com/fonts/icon-fonts.woff?68c68cce4e9f17e5c2b853376d212ba8) format("woff"),url(https://www.spinbet.com/fonts/icon-fonts.woff2?68c68cce4e9f17e5c2b853376d212ba8) format("woff2");
}
span[class*=" icon-"]:before, span[class^=icon-]:before
{
    font-family: icon-fonts!important;
    font-style: normal;
    font-weight: 400!important;
    font-feature-settings: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.icon-add-friend:before
{
    content: "";
}
.icon-ads:before
{
    content: "";
}
.icon-American-Football:before
{
    content: "";
}
.icon-arrow-2:before
{
    content: "";
}
.icon-arrow-forward:before
{
    content: "";
}
.icon-arrow-right:before
{
    content: "";
}
.icon-arrow:before
{
    content: "";
}
.icon-Assuse-Rules:before
{
    content: "";
}
.icon-Baseball:before
{
    content: "";
}
.icon-betslip:before
{
    content: "";
}
.icon-big-size:before
{
    content: "";
}
.icon-Blackjack-2:before
{
    content: "";
}
.icon-Blackjack-copy:before
{
    content: "";
}
.icon-blackjack:before
{
    content: "";
}
.icon-blog:before
{
    content: "";
}
.icon-bomb:before
{
    content: "";
}
.icon-bonus:before
{
    content: "";
}
.icon-burger:before
{
    content: "";
}
.icon-calendar:before
{
    content: "";
}
.icon-casino:before
{
    content: "";
}
.icon-chat:before
{
    content: "";
}
.icon-check:before
{
    content: "";
}
.icon-chevron-left:before
{
    content: "";
}
.icon-close:before
{
    content: "";
}
.icon-coin-2:before
{
    content: "";
}
.icon-coin:before
{
    content: "";
}
.icon-coins:before
{
    content: "";
}
.icon-copy:before
{
    content: "";
}
.icon-credit:before
{
    content: "";
}
.icon-Darts:before
{
    content: "";
}
.icon-delete-2:before
{
    content: "";
}
.icon-delete:before
{
    content: "";
}
.icon-deposit:before
{
    content: "";
}
.icon-dinosaur:before
{
    content: "";
}
.icon-document:before
{
    content: "";
}
.icon-drop-down:before
{
    content: "";
}
.icon-drop-up:before
{
    content: "";
}
.icon-edit:before
{
    content: "";
}
.icon-email-sent:before
{
    content: "";
}
.icon-error:before
{
    content: "";
}
.icon-exclamation:before
{
    content: "";
}
.icon-expand-2:before
{
    content: "";
}
.icon-expand:before
{
    content: "";
}
.icon-eye-close:before
{
    content: "";
}
.icon-eye:before
{
    content: "";
}
.icon-F1:before
{
    content: "";
}
.icon-facebook:before
{
    content: "";
}
.icon-favourite:before
{
    content: "";
}
.icon-foot-ball:before
{
    content: "";
}
.icon-Football:before
{
    content: "";
}
.icon-fun:before
{
    content: "";
}
.icon-game-show:before
{
    content: "";
}
.icon-GameController:before
{
    content: "";
}
.icon-gem:before
{
    content: "";
}
.icon-gift:before
{
    content: "";
}
.icon-google:before
{
    content: "";
}
.icon-hamburger:before
{
    content: "";
}
.icon-hand:before
{
    content: "";
}
.icon-Handball:before
{
    content: "";
}
.icon-high-volatility:before
{
    content: "";
}
.icon-history:before
{
    content: "";
}
.icon-Horse-Racing:before
{
    content: "";
}
.icon-Incognito:before
{
    content: "";
}
.icon-info-error:before
{
    content: "";
}
.icon-info:before
{
    content: "";
}
.icon-instagram:before
{
    content: "";
}
.icon-link:before
{
    content: "";
}
.icon-live-casino:before
{
    content: "";
}
.icon-Live:before
{
    content: "";
}
.icon-lobby:before
{
    content: "";
}
.icon-lock:before
{
    content: "";
}
.icon-log-out:before
{
    content: "";
}
.icon-logo-twitch:before
{
    content: "";
}
.icon-main:before
{
    content: "";
}
.icon-metamask:before
{
    content: "";
}
.icon-minimize:before
{
    content: "";
}
.icon-new-game:before
{
    content: "";
}
.icon-new:before
{
    content: "";
}
.icon-pause:before
{
    content: "";
}
.icon-percent:before
{
    content: "";
}
.icon-picture-in-picture:before
{
    content: "";
}
.icon-placeholder:before
{
    content: "";
}
.icon-plus:before
{
    content: "";
}
.icon-provider:before
{
    content: "";
}
.icon-providers-search:before
{
    content: "";
}
.icon-recentlyPlayed:before
{
    content: "";
}
.icon-redirect:before
{
    content: "";
}
.icon-referral:before
{
    content: "";
}
.icon-referral1:before
{
    content: "";
}
.icon-reload:before
{
    content: "";
}
.icon-responsible-gambling:before
{
    content: "";
}
.icon-rewards-2:before
{
    content: "";
}
.icon-rewards:before
{
    content: "";
}
.icon-rich-inbox:before
{
    content: "";
}
.icon-roulette:before
{
    content: "";
}
.icon-search:before
{
    content: "";
}
.icon-security:before
{
    content: "";
}
.icon-settings:before
{
    content: "";
}
.icon-slide-bottom:before
{
    content: "";
}
.icon-slide-left:before
{
    content: "";
}
.icon-slide-right:before
{
    content: "";
}
.icon-slide-top:before
{
    content: "";
}
.icon-slot:before
{
    content: "";
}
.icon-sport-3x3_basketball:before
{
    content: "";
}
.icon-sport-age-of-empires:before
{
    content: "";
}
.icon-sport-air_hockey:before
{
    content: "";
}
.icon-sport-air-racing:before
{
    content: "";
}
.icon-sport-alpineskiing:before
{
    content: "";
}
.icon-sport-americanfootball:before
{
    content: "";
}
.icon-sport-aotennis-b:before
{
    content: "";
}
.icon-sport-archery:before
{
    content: "";
}
.icon-sport-arena_of_valor:before
{
    content: "";
}
.icon-sport-arm-wrestling:before
{
    content: "";
}
.icon-sport-athletics:before
{
    content: "";
}
.icon-sport-aussierules:before
{
    content: "";
}
.icon-sport-badminton:before
{
    content: "";
}
.icon-sport-ball-hockey:before
{
    content: "";
}
.icon-sport-bandy:before
{
    content: "";
}
.icon-sport-baseball-b:before
{
    content: "";
}
.icon-sport-baseball:before
{
    content: "";
}
.icon-sport-basketball:before
{
    content: "";
}
.icon-sport-beachsoccer:before
{
    content: "";
}
.icon-sport-beachtennis:before
{
    content: "";
}
.icon-sport-beachvolleyball:before
{
    content: "";
}
.icon-sport-biathlon:before
{
    content: "";
}
.icon-sport-bikes:before
{
    content: "";
}
.icon-sport-bobsleigh:before
{
    content: "";
}
.icon-sport-bodybuilding:before
{
    content: "";
}
.icon-sport-bossaball:before
{
    content: "";
}
.icon-sport-bowls:before
{
    content: "";
}
.icon-sport-boxing:before
{
    content: "";
}
.icon-sport-brawl-stars:before
{
    content: "";
}
.icon-sport-callofduty:before
{
    content: "";
}
.icon-sport-canoeslalom:before
{
    content: "";
}
.icon-sport-capoeira:before
{
    content: "";
}
.icon-sport-chess:before
{
    content: "";
}
.icon-sport-cinemaawards:before
{
    content: "";
}
.icon-sport-clash-of-clans:before
{
    content: "";
}
.icon-sport-clash-royale:before
{
    content: "";
}
.icon-sport-COD-mobile:before
{
    content: "";
}
.icon-sport-counterstrike:before
{
    content: "";
}
.icon-sport-cricket:before
{
    content: "";
}
.icon-sport-crosscountry:before
{
    content: "";
}
.icon-sport-crossfire:before
{
    content: "";
}
.icon-sport-curling:before
{
    content: "";
}
.icon-sport-cycling:before
{
    content: "";
}
.icon-sport-darts:before
{
    content: "";
}
.icon-sport-default-placeholder:before
{
    content: "";
}
.icon-sport-diving:before
{
    content: "";
}
.icon-sport-dota2:before
{
    content: "";
}
.icon-sport-draughts:before
{
    content: "";
}
.icon-sport-dtm:before
{
    content: "";
}
.icon-sport-e-fighting-b:before
{
    content: "";
}
.icon-sport-ecricket-b:before
{
    content: "";
}
.icon-sport-eicehockey:before
{
    content: "";
}
.icon-sport-equestrian:before
{
    content: "";
}
.icon-sport-eshooter:before
{
    content: "";
}
.icon-sport-esport-fighting:before
{
    content: "";
}
.icon-sport-esport:before
{
    content: "";
}
.icon-sport-fencing:before
{
    content: "";
}
.icon-sport-fieldhockey:before
{
    content: "";
}
.icon-sport-fifa-b:before
{
    content: "";
}
.icon-sport-fifa-cyber:before
{
    content: "";
}
.icon-sport-fifa-penalty-b:before
{
    content: "";
}
.icon-sport-fifa-volta:before
{
    content: "";
}
.icon-sport-figureskating:before
{
    content: "";
}
.icon-sport-floorball:before
{
    content: "";
}
.icon-sport-formula_e:before
{
    content: "";
}
.icon-sport-formula-1:before
{
    content: "";
}
.icon-sport-formula-2:before
{
    content: "";
}
.icon-sport-fortnite:before
{
    content: "";
}
.icon-sport-free-fire:before
{
    content: "";
}
.icon-sport-freestyle-wrestling:before
{
    content: "";
}
.icon-sport-freestyleskiing:before
{
    content: "";
}
.icon-sport-frisbee:before
{
    content: "";
}
.icon-sport-futsal:before
{
    content: "";
}
.icon-sport-gaelicfootball:before
{
    content: "";
}
.icon-sport-gaelichurling:before
{
    content: "";
}
.icon-sport-game-of-tag:before
{
    content: "";
}
.icon-sport-golf:before
{
    content: "";
}
.icon-sport-greco-roman-wrestling:before
{
    content: "";
}
.icon-sport-greyhound:before
{
    content: "";
}
.icon-sport-halo:before
{
    content: "";
}
.icon-sport-handball:before
{
    content: "";
}
.icon-sport-harness:before
{
    content: "";
}
.icon-sport-headis:before
{
    content: "";
}
.icon-sport-hearthstone:before
{
    content: "";
}
.icon-sport-horseracing:before
{
    content: "";
}
.icon-sport-icehockey:before
{
    content: "";
}
.icon-sport-indycar:before
{
    content: "";
}
.icon-sport-international:before
{
    content: "";
}
.icon-sport-jai-alai:before
{
    content: "";
}
.icon-sport-judo:before
{
    content: "";
}
.icon-sport-kabbadi:before
{
    content: "";
}
.icon-sport-karate:before
{
    content: "";
}
.icon-sport-king-of-glory:before
{
    content: "";
}
.icon-sport-lacrosse:before
{
    content: "";
}
.icon-sport-league-of-legends-wild-rift:before
{
    content: "";
}
.icon-sport-leagueoflegends:before
{
    content: "";
}
.icon-sport-luge:before
{
    content: "";
}
.icon-sport-mma:before
{
    content: "";
}
.icon-sport-mobile-legends:before
{
    content: "";
}
.icon-sport-moto-gp:before
{
    content: "";
}
.icon-sport-motorcycleracing:before
{
    content: "";
}
.icon-sport-motorsport:before
{
    content: "";
}
.icon-sport-music:before
{
    content: "";
}
.icon-sport-mysticalsoccer:before
{
    content: "";
}
.icon-sport-nascar:before
{
    content: "";
}
.icon-sport-nba2k-b:before
{
    content: "";
}
.icon-sport-nba2k:before
{
    content: "";
}
.icon-sport-netball:before
{
    content: "";
}
.icon-sport-newsport:before
{
    content: "";
}
.icon-sport-nordiccombined:before
{
    content: "";
}
.icon-sport-olympics:before
{
    content: "";
}
.icon-sport-overwatch:before
{
    content: "";
}
.icon-sport-padel-tennis:before
{
    content: "";
}
.icon-sport-pesapallo:before
{
    content: "";
}
.icon-sport-pokemon:before
{
    content: "";
}
.icon-sport-poker:before
{
    content: "";
}
.icon-sport-politics:before
{
    content: "";
}
.icon-sport-pool:before
{
    content: "";
}
.icon-sport-powerlifting:before
{
    content: "";
}
.icon-sport-PUBG-mobile:before
{
    content: "";
}
.icon-sport-pubg:before
{
    content: "";
}
.icon-sport-quake:before
{
    content: "";
}
.icon-sport-quidditch:before
{
    content: "";
}
.icon-sport-rainbow_six:before
{
    content: "";
}
.icon-sport-rally:before
{
    content: "";
}
.icon-sport-rinkhockey:before
{
    content: "";
}
.icon-sport-rocket_league:before
{
    content: "";
}
.icon-sport-rocket-league-b:before
{
    content: "";
}
.icon-sport-rowing:before
{
    content: "";
}
.icon-sport-rugby:before
{
    content: "";
}
.icon-sport-rugbyleague:before
{
    content: "";
}
.icon-sport-sailing:before
{
    content: "";
}
.icon-sport-sambo:before
{
    content: "";
}
.icon-sport-sepak-takraw:before
{
    content: "";
}
.icon-sport-shooting:before
{
    content: "";
}
.icon-sport-shorttrack:before
{
    content: "";
}
.icon-sport-sidewipe:before
{
    content: "";
}
.icon-sport-skateboarding:before
{
    content: "";
}
.icon-sport-skeleton:before
{
    content: "";
}
.icon-sport-skijumping:before
{
    content: "";
}
.icon-sport-skirace:before
{
    content: "";
}
.icon-sport-snooker:before
{
    content: "";
}
.icon-sport-snowboard:before
{
    content: "";
}
.icon-sport-soccer:before
{
    content: "";
}
.icon-sport-softball:before
{
    content: "";
}
.icon-sport-specials:before
{
    content: "";
}
.icon-sport-speedboat-racing:before
{
    content: "";
}
.icon-sport-speedskating:before
{
    content: "";
}
.icon-sport-speedway:before
{
    content: "";
}
.icon-sport-squash:before
{
    content: "";
}
.icon-sport-starcraft-brood-war:before
{
    content: "";
}
.icon-sport-starcraft:before
{
    content: "";
}
.icon-sport-starcraft2:before
{
    content: "";
}
.icon-sport-stockcarracing:before
{
    content: "";
}
.icon-sport-street_fighter_v:before
{
    content: "";
}
.icon-sport-street-hockey:before
{
    content: "";
}
.icon-sport-sumo:before
{
    content: "";
}
.icon-sport-surfing:before
{
    content: "";
}
.icon-sport-swimming:before
{
    content: "";
}
.icon-sport-table-football:before
{
    content: "";
}
.icon-sport-tabletennis:before
{
    content: "";
}
.icon-sport-taekwondo:before
{
    content: "";
}
.icon-sport-team-fortress2:before
{
    content: "";
}
.icon-sport-tekken:before
{
    content: "";
}
.icon-sport-tennis:before
{
    content: "";
}
.icon-sport-teqball:before
{
    content: "";
}
.icon-sport-tournament:before
{
    content: "";
}
.icon-sport-track-cycling:before
{
    content: "";
}
.icon-sport-trackmania:before
{
    content: "";
}
.icon-sport-triathlon:before
{
    content: "";
}
.icon-sport-trotting:before
{
    content: "";
}
.icon-sport-valorant:before
{
    content: "";
}
.icon-sport-virtualsport:before
{
    content: "";
}
.icon-sport-volleyball:before
{
    content: "";
}
.icon-sport-warcraft:before
{
    content: "";
}
.icon-sport-waterpolo:before
{
    content: "";
}
.icon-sport-wintersports:before
{
    content: "";
}
.icon-sport-wlifting:before
{
    content: "";
}
.icon-sport-wot:before
{
    content: "";
}
.icon-sport-wow:before
{
    content: "";
}
.icon-sport-wrestling:before
{
    content: "";
}
.icon-sports:before
{
    content: "";
}
.icon-sportsbook:before
{
    content: "";
}
.icon-square:before
{
    content: "";
}
.icon-stake:before
{
    content: "";
}
.icon-star-1:before
{
    content: "";
}
.icon-star:before
{
    content: "";
}
.icon-stats-2:before
{
    content: "";
}
.icon-stats-3:before
{
    content: "";
}
.icon-stats:before
{
    content: "";
}
.icon-success:before
{
    content: "";
}
.icon-support:before
{
    content: "";
}
.icon-t-shirt:before
{
    content: "";
}
.icon-table-games:before
{
    content: "";
}
.icon-Table-tennis:before
{
    content: "";
}
.icon-telegram:before
{
    content: "";
}
.icon-telephone:before
{
    content: "";
}
.icon-theatre:before
{
    content: "";
}
.icon-tip:before
{
    content: "";
}
.icon-transactions:before
{
    content: "";
}
.icon-transfer:before
{
    content: "";
}
.icon-twitter:before
{
    content: "";
}
.icon-Upcoming:before
{
    content: "";
}
.icon-verification:before
{
    content: "";
}
.icon-vip:before
{
    content: "";
}
.icon-wager:before
{
    content: "";
}
.icon-wallet:before
{
    content: "";
}
.icon-warning:before
{
    content: "";
}
.icon-wheel:before
{
    content: "";
}
.icon-x:before
{
    content: "";
}