@font-face {
    font-family: 'Saira Condensed';
    src:url("../fonts/saira-condensed/SairaCondensed-ExtraLight.ttf");
    font-weight: 300;
}
@font-face {
    font-family: 'Saira Condensed';
    src:url("../fonts/saira-condensed/SairaCondensed-Light.ttf");
    font-weight: 300;
}
@font-face {
    font-family: 'Saira Condensed';
    src:url("../fonts/saira-condensed/SairaCondensed-Medium.ttf");
    font-weight: 500;
}
@font-face {
    font-family: 'Saira Condensed';
    src:url("../fonts/saira-condensed/SairaCondensed-SemiBold.ttf");
    font-weight: 600;
}
@font-face {
    font-family: 'Saira Condensed';
    src:url("../fonts/saira-condensed/SairaCondensed-Bold.ttf");
    font-weight: 700;
}
@font-face {
    font-family: 'Barlow Semi Condensed';
    src:url("../fonts/barlow-semi-condensed/BarlowSemiCondensed-Light.ttf");
    font-weight: 300;
}
@font-face {
    font-family: 'Barlow Semi Condensed';
    src:url("../fonts/barlow-semi-condensed/BarlowSemiCondensed-Medium.ttf");
    font-weight: 400;
}
@font-face {
    font-family: 'Barlow Semi Condensed';
    src:url("../fonts/barlow-semi-condensed/BarlowSemiCondensed-SemiBold.ttf");
    font-weight: 500;
}
@font-face {
    font-family: 'Barlow Semi Condensed';
    src:url("../fonts/barlow-semi-condensed/BarlowSemiCondensed-Bold.ttf");
    font-weight: 600;
}
@font-face {
    font-family: 'Roboto Condensed';
    src:url("../fonts/roboto-condensed/RobotoCondensed-Light.ttf");
    font-weight: 400;
}
@font-face {
    font-family: 'Roboto Condensed';
    src:url("../fonts/roboto-condensed/RobotoCondensed-Regular.ttf");
    font-weight: 500;
}
@font-face {
    font-family: 'Roboto Condensed';
    src:url("../fonts/roboto-condensed/RobotoCondensed-Bold.ttf");
    font-weight: 600;
}

@font-face {
    font-family: 'Roboto';
    src:url("../fonts/roboto/Roboto-Bold.ttf");
    font-weight: 600;
}

:root{
    --red:#e10600;
    --gray:#EFF0F2;
    --gray1:#303030;
    --gray0:#1f1f1f;
    --black:#0f0f0f;
    --blue-gray:#798FA7;
    --dark-blue-gray:#2e2e41;
    --old-gray:#A19D9C;
    --light-border:1px solid #e0e0e0;
    --condensed-font:'Saira Condensed', sans-serif;
    --normal:"Segoe UI", sans-serif;
    --semi-font: 'Roboto Condensed';
    --odds-font: 'Roboto';
    --red-gradient: linear-gradient(360deg, #b90107, #ff0008);
}
*{
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
*:focus{
    outline: none;
}
h1, h2, h3, h4, h5 {
    font-family: var(--semi-font);
}
ul{
    padding: 0;
    margin: 0;
}
body {
    margin: 0;
    padding: 0;
    background: #fff;
    font-family: var(--normal);
    font-size: 15px;
    min-height:100vh;
    position:relative;
    overflow-x: hidden;

    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
    -webkit-tap-highlight-color: transparent;
}
body::before{
    display: block;
    content: '';
    height: 100px;
    width: 100%;
}
.flex{
    display: flex;
    display: -webkit-flex;
}

.flex-align-center{
    align-items: center;
}
.flex50 {
    width: 50%;
}
.flex-wrap{
    flex-wrap:wrap;
    -webkit-flex-wrap: wrap;
}

/*HEADER*/
.header {
    background: #ffffff;
    height: 60px;
    display: flex;
    align-items: center;
    flex: 1;
}
.current-time {
    font-weight: 500;
    font-family: var(--condensed-font);
}
.mode-button {
    height: 30px;
    border: 0;
    padding: 0 10px;
    border-radius: 20px;
}
.dark-button {
    font-size: 32px;
    padding: 0;
    cursor: pointer;
    color: #fff;
    display:flex;
    align-items: center;
    background: var(--red);
}
i.las.la-sun {
    font-size: 21px;
    margin-left: 5px;
}
.sub-header {
    background: #282828;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 180px;
}
.sub-header h1{
    margin: 0;
}
.logo {
    display: flex;
    padding: 10px;
}
.logo-img{
   height: 40px;
}
.col-left {
    width: 280px;
    background: #1f1f1f;
    flex-direction: column;
    flex-shrink: 0;
    display: flex;
    height: calc(100vh - 60px);
    position: fixed;
    left: 0;
    top: 60px;
    z-index: 2;
}

.col-center {
    margin-left: 280px;
    margin-right: 300px;
    position:relative;
}

.center-content-wrapper {
    display: flex;
    width: 100%;
    min-height: calc(100vh - 210px);
    justify-content: center;
    align-items: center;
}

/***
    EVENTS MARKETS ---------------------
*/

.event-markets {
    position: fixed;
    top: 60px;
    left: 280px;
    background: #fff;
    width: calc(100% - 580px);
    height: calc(100vh - 60px);
    animation: fade-in .3s ease-in-out;
    display: flex;
    flex-direction: column;
    z-index: 3;
}

.event-markets-header {
    display: flex;
    background: var(--gray1);
    color: #ddd;
    align-items: center;
}
.event-markets-back-btn {
    font-size: 15px;
    background: var(--gray0);
    color: #ddd;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    cursor: pointer;
}
.event-markets-nav {
    display: flex;
    background: var(--gray1);
    margin: 0 10px;
    white-space: nowrap;
    overflow-x: auto;
}
.event-markets-name {
    font-size: 17px;
    font-weight: 500;
}
.markets-list {
    margin: 0 10px 10px 10px;
    overflow: auto;
    border-bottom: var(--light-border);
}
.event-markets-header-left {
    display: flex;
    align-items: center;
}
.event-markets-title {
    padding: 20px;
    /*background: #fff;*/
    display: flex;
    align-items: center;
}
.event-markets-code, .event-markets-date {
    margin-right: 20px;
    font-size: 14px;
    color: #777;
}
.event-markets-nav-item {
    line-height: 40px;
    padding: 0 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color:#fff;
}
.event-markets-nav-item.active {
    background: var(--red);
    color: #fff;
}
/*SLIDE */
.slide-image {
    display: block;
    max-width: 300px;
}
.slide-image img {
    width: 100%;
}

.previousButton {
    opacity: 0.2;
    left: 10px !important;
}
.nextButton {
    opacity: 0.2;
    right: 10px !important;
}
.previousButton:hover, .nextButton:hover{
    opacity: 0.7;
}
/*------------------------------------------------*/

.menu{
    display:flex;
    align-items: center;
    height: 100%;
    flex:1;
}
.menu li {
    list-style-type: none;
    margin: 0 10px;
    padding: 0 10px;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
    flex:0;
}
.menu li.active {
    background: #eee;
}
.menu-link {
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    font-family: var(--normal);
    display: flex;
    height: 100%;
    justify-content: center;
    text-align: center;
    align-items: center;
    white-space: nowrap;
}
.close-sports-menu {
    height: 40px;
    width: 40px;
    position: absolute;
    top: 0;
    right: -40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: #000;
    color: #fff;
}
/*
li.active::after!*, .menu li:hover::after*! {
    content: '';
    display: block;
    height: 6px;
    width: 6px;
    position: absolute;
    bottom: 9px;
    border-radius: 20px;
    background: var(--red);
    animation: active-menu .2s ease;
}
*/

.top-bar {
    background: var(--red);
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    align-items: center;
    width: 300px;
    position:relative;
}
.top-bar::before{
    content: '';
    display: block;
    border-top:60px solid var(--red);
    border-left:26px solid transparent;
    position:absolute;
    left:-26px;
    top:0;
}
.header-container {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    box-shadow: 0 1px 3px #00000025;
    z-index: 4;
    position: fixed;
    top: 0;
    left: 0;
}

.login-container {
    display: flex;
    align-items: center;
    margin-right: -10px;
}
/*.main-content {
    display: flex;
    flex:1;
    justify-content: center;
}*/
.main{
    flex:1;
}
.register, .sign-in {
    background: var(--red);
    color: #fff;
    font-weight: 600;
    line-height: 30px;
    border-radius: 2px;
    padding: 0 15px;
    font-size: 14px;
    height: 30px;
    margin-left:10px;
}
.register span, .sign-in span{
    color:#fff;
}
.register-wrapper {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
    border-radius: 2px;
}
.sign-in{
    background: #cc0b12;
    margin-left: 10px;
    position:relative;
    cursor:pointer;
}
.sign-in i {
    font-size: 16px;
    margin-right: 2px;
    display: block;
    float: left;
    line-height: 31px;
    margin-left: -5px;
    color:#fff;
}
.my-account-link{
    color:#000;
    text-decoration: none;
    font-weight: 400;
}
.col-center.scrolling-container {
    background: #828282;
    margin-top:-40px;
}

/*SLIDER *******************************************/
.slide-container {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 35%;
}
.each-fade {
    position: absolute;
    height: 100%;
    width: 100%;
}
.slider-image {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    display:flex;
}


.verify-ticket {
    background: var(--dark-blue-gray);
    padding: 10px 15px;
    border-radius: 20px;
    max-width: 300px;
    width:100%;

}
.verify-ticket input {
    line-height: 30px;
    border-radius: 5px;
    border: 0;
    width: 100%;
    padding: 0 8px;
    margin-bottom:5px;
}
.verify-label {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #d8d8d8;
}

/*SPORTS MENU*/
.results-menu {
    padding: 10px;
}
.sport-menu-item {
    cursor: pointer;
    transition: .1s;
   /* border-bottom: 1px solid #eff0f2;*/
    animation: active-menu .4s ease;
}

.sport-menu-item.results-item {
    padding: 0 15px;
    line-height: 40px;
    font-weight: 600;
    background: var(--gray1);
    color: #eee;
    margin-bottom: 1px;
    font-size: 14px;
}
.sport-menu-item.results-item.active {
    background: var(--red);
    background: var(--red-gradient);
    color: #fff;
}
.sport-menu-item:last-child{
    border-bottom: 0;
}
a.sport-menu-item {
    text-decoration: none;
}
.sport-submenu {
    background: #000;
    border-radius: 0 0 2px 2px;
    padding: 5px;
    color: #fff;
    overflow: auto;
}
.sport-menu-item-details {
    background: #303030;
    height: 40px;
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #d4d4d4;
    font-family: var(--semi-font);
    margin-bottom: 1px;
    padding: 0 2px;
    font-size: 14px;
}
.sport-menu-item-details.active, .sport-menu-item-details:hover{
    background: var(--red);
    background: var(--red-gradient);
    color: #fff;
    border-radius:1px;
}
.submenu-item {
    display: flex;
    border-bottom: 1px solid #1b1b1b;
    padding: 5px 10px;
    font-size: 13px;
    flex-direction: column;
    font-weight: 400;
    color: #aaa;
}
.submenu-item.active {
    background: #ffffff2b;
    border-radius:2px;
    color:#fff;
}
.submenu-item-details {
    display: flex;
    width: 100%;
}
.tournaments-list {
    margin-top: 10px;
}
.tournament-name {
    padding: 5px 10px;
    margin-bottom: 1px;
    border-radius: 2px;
    animation: .3s active-menu ease-in-out;
    border-top: 1px solid #1f1f1f;
}
.tournament-name.active {
    background: var(--red);
}
.submenu-item:last-child{
    border-bottom: 0;
}
.submenu-title {
    flex: 1;
    color: #aaa;
    font-weight: 500;
}
.sport-icon img {
    width: 100%;
    height: auto;
}
.sport-icon{
    width: 22px;
    margin-left: 5px;
    margin-right: -5px;
    display: flex;
    align-items: center;
    background-position:center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 22px;
}
.icon-1{
    background-image:url('../img/icons/sports/soccer.png');
}
.icon-2{
    background-image:url('../img/icons/sports/basketball.png');
}
.icon-3{
    background-image:url('../img/icons/sports/baseball-96.png');
}
.icon-4{
    background-image:url('../img/icons/sports/ice-hockey-96.png');
}
.icon-5{
    background-image:url('../img/icons/sports/tennis.png');
}
.icon-6{
    background-image:url('../img/icons/sports/handball-96.png');
}
.icon-7{
    background-image:url('../img/icons/sports/floorball.png');
}
.icon-10{
    background-image:url('../img/icons/sports/boxing-glove-96.png');
}
.icon-12{
    background-image:url('../img/icons/sports/rugby.png');
}
.icon-13{
    background-image:url('../img/icons/sports/australian-football-96.png');
}
.icon-15{
    background-image:url('../img/icons/sports/field-hockey-96.png');
}
.icon-16{
    background-image:url('../img/icons/sports/american-football-96.png');
}
.icon-19{
    background-image:url('../img/icons/sports/snooker-ball.png');
}
.icon-20{
    background-image:url('../img/icons/sports/ping-pong-96.png');
}
.icon-22{
    background-image:url('../img/icons/sports/darts-96.png');
}
.icon-23{
    background-image:url('../img/icons/sports/volleyball-white.png');
}
.icon-29{
    background-image:url('../img/icons/sports/futsal-96.png');
}
.icon-31{
    background-image:url('../img/icons/sports/shuttlecock-96.png');
}
.icon-32{
    background-image:url('../img/icons/sports/bls.png');
}
.icon-34{
    background-image:url('../img/icons/sports/volleyball-96.png');
}
.icon-117{
    background-image:url('../img/icons/sports/mma.png');
}
.icon-614079{
    background-image:url('../img/icons/sports/trophy-96.png');
}
input.search-input {
    height: 40px;
    border: 0;
    width: 100%;
    padding: 0 15px;
    background: #464646;
    font-size: 15px;
    color: #fff;
    border-radius:0;
}
input.search-input::placeholder{
    color:#ccc;
}
.search-event {
    position:relative;
    border-radius:0;
}
.verify-ticket-button {
    border: 0;
    width: 32px;
    height: 32px;
    background: #505050;
    position: absolute;
    right: 5px;
    top: 4px;
    color: #ccc;
    font-size: 20px;
    cursor: pointer;
    border-radius: 1px;
    text-align: center;
}
.react-daterange-picker__calendar{
    bottom:unset !important;
}
span.sport-title {
    flex: 1;
    padding: 0 10px;
    text-transform: uppercase;
    height: 100%;
    display: flex;
    align-items: center;
}
.events-counter {
    margin-right: 5px;
    width: 30px;
    text-align: center;
    background: #1f1f1f;
    border-radius: 2px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    color: #d4d4d4;
}
.events-counter.active{
    color:#fff;
    background: var(--black);
}
/*CONTACT PAGE****************************************************/
.contact-wrapper {
    padding: 30px;
}

/*FEATURED EVENTS*/
.featured-events {
    display: flex;
}
.featured-event {
    margin:0 5px;
}
.featured-event-name {
    background: var(--dark-blue-gray);
    text-align: center;
    border-radius: 2px 2px 0 0;
    line-height: 30px;
    padding: 5px 20px;
    color: #e8e8e8;
    font-family: var(--semi-font);
}
.featured-odds {
    display: flex;
    margin: 3px 0;
}
.featured-odd {
    background: var(--dark-blue-gray);

    text-align: center;
    /*border-radius: 3px;*/
    flex: 1;
}
.featured-value {
    font-size: 24px;
    font-weight: 700;
    color: #d8d8d8;
    font-family: var(--condensed-font);
}
.featured-label {
    font-size: 14px;
    color: #d6c637;
}
.featured-action {
    text-align: center;
    background: var(--red);
    border-radius: 0 0 2px 2px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 30px;
    font-family: var(--condensed-font);
}
.featured-odd:last-child {
    margin-right: 0;
}
.featured-odd {
    margin-right: 3px;
}
/*FOOTER*/
.footer {
    background: var(--gray1);
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 0 -1px #0000004d;
    z-index: 1;
}
footer.footer {
    height: 150px;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
}
body.with-footer::after {
    content: '';
    display: block;
    height: 150px;
    width: 100%;
}
body.with-footer::before {
    height: 60px;
}
.inner-footer {
    max-width: 1260px;
    margin: 0 auto;
}
.footer-columns {
    display: flex;
    margin-bottom:50px;
}
.footer-column.footer-icons-col {
    display: flex;
    align-items: center;
    padding: 20px;
}

.footer-text {
    text-align: center;
    padding: 10px;
    font-size: 12px;
    color: #a5a5a5;
    width: 100%;
    border-top: 1px solid #1f1f1f;
}
.footer-links {
    display: flex;
    flex-direction: column;
}
.footer-infos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    background: #464646;
    color: #ddd;
    border-radius: 2px;
    font-weight: 500;
    font-size: 14px;
    position:relative;
    padding: 8px 15px;
}

.footer-infos-menu {
    position: absolute;
    flex-direction: column;
    background: #fff;
    padding: 20px;
    bottom: 35px;
    right: 0px;
    border-radius: 5px;
    display:none;
    box-shadow: -1px -1px 5px #00000025;
}
.footer-infos-menu::after{
    content:'';
    display: block;
    border-right: 20px solid #fff;
    border-bottom:20px solid transparent;
    position:absolute;
    bottom:-10px;
    right: 25px;
}
.footer-infos:hover .footer-infos-menu{
    display:flex;
}
.footer-infos-menu-item {
    text-decoration: none;
    white-space: nowrap;
    color: #000;
    margin: 10px 0;
    font-size: 15px;
}
.footer-infos-label {
    display: flex;
    align-items: center;
}
.footer-infos i{
    font-size:18px;
    margin-left:5px;
    margin-right: -5px;
}
.icon-link{
    display: flex;
}
.footer-col {
    flex: 1;
    display: flex;
    padding: 10px;
}
.footer-logo {
    font-size: 60px;
    font-weight: 700;
    color: #c9cfdc;
    line-height: 50px;
}
.footer-data {
    font-size: 14px;
    margin-top: 30px;
}
.footer-title {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
}
a.footer-link {
    color: #a4a4b7;
    text-decoration: none;
    margin-bottom: 10px;
}
.disclaimer {
    color: #cacfdc;
}
.footer-icon img{
    width:100%;
}
.footer-icon {
    margin-right: 10px;
}
.footer-icons {
    display: flex;
}
.icon-18 {
    border: 5px solid var(--red);
    border-radius: 50%;
    height: 46px;
    width: 46px;
    font-size: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--condensed-font);
    background: #fff;
    color: #000;
    font-weight: 600;
}
/*RIGHT*/
.col-right {
    background: var(--gray0);
    position: fixed;
    right: 0;
    top: 60px;
    z-index: 2;
    height: calc(100vh - 60px);
}

/*SPORTS BETS*/
.league {
    background: #ffffff;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    animation: active-menu .4s ease;
    margin-bottom: 10px;
    box-shadow: 0 0 4px #0003;
}
.results-container .league{
    box-shadow: none;
}
.home-events {
    background: transparent;
    border-radius: 0;
}
.home-league{
    padding: 10px;
}
.league-header {
    display: flex;
    align-items: center;
    color: #fff;
    background: #252525;
    background: linear-gradient(180deg, #252525, #444444);
}
.league-header.results-league-header {
    background: #fff;
}
.league-action {
    width: 22px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor:pointer;
    background:var(--red);
    position:relative;
}
.league-action i {
    color: #eee;
}
.league-action::before {
    content: '';
    display: block;
    border-right: 15px solid var(--red);
    border-bottom: 32px solid transparent;
    left: -15px;
    position: absolute;
}
.league-action i{
    font-size:18px;
    margin-left:-5px;
    margin-top:-2px;
}
.loading-overlay{
    position: absolute;
    font-size: 46px;
    color: #e10c13;
    top: 0;
    width: 100%;
    border-radius: 2px;
    height: 100%;
    text-align: center;
    padding-top: 50px;
    /*background: #ffffffa3;*/
}
.league-name {
    color: #eee;
    text-transform: uppercase;
    flex: 1;
    font-family: var(--semi-font);
    font-weight: 500;
    font-size: 14px;
}
.results-container .league-name {
    background: #fff;
    color: #000;
    padding: 10px;
    font-weight: 600;
    padding-left: 0;
}
.league-sport-icon {
    width: 22px;
    display: flex;
    align-items: center;
    height: 22px;
    margin: 5px;
    background-size: contain;
}
.league-event-item {
    display: flex;
    padding: 15px;
    flex-wrap: wrap;
    animation: active-menu .4s ease;
    border-bottom: 1px solid #dedede;
    transition:.3s;
}
.league-event-item:last-child{
    border-bottom:0;
}
.gradient-bg{
    background: rgba(255,255,255,1);
    background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
    background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
    background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed', GradientType=0 );
}
.no-events {
    text-align: center;
    font-size: 19px;
    padding: 15px;
    font-weight: 400;
}
.event-details {
    flex: 1;
    display: flex;
}
.sport-container, .results-container {
    position: relative;
    padding: 10px;
}

.results-container{
    background: #fff;
    width: calc(100vw - 280px);
}
.event-details-texts {
    flex-direction: column;
    flex: 1;
    display: flex;
    justify-content: center;
}
.flex-sport-menu-container {
    flex-grow: 1;
    overflow: auto;
}
.sports-menu {
    padding: 0 10px;
    margin: 10px 0;
    overflow: auto;
    flex: 1;
}
.event-name {
    font-weight: 500;
    cursor: pointer;
    color: var(--dark-blue-gray);
    font-family: var(--semi-font);
}
.ticket-event-data, .event-date {
    font-family: var(--condensed-font);
    font-size: 12px;
    color:#888;
}
.event-odds {
    display: flex;
    width: 60%;
    flex-wrap: wrap;
}
.special-bets {
    width: 100%;
}
.special-bet {
    display: flex;
    padding: 15px;
    border-bottom:var(--light-border);
    border-left:var(--light-border);
    border-right:var(--light-border);
}
.special-name {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: var(--semi-font);
    color: #000;
    font-size:14px;

}
.extra-bets {
    margin-top: 10px;
    width:100%;
}
.special-odds {
    flex-wrap: wrap;
    display: flex;
    width:50%;
}
.event-actions {
    display: flex;
    align-items: center;
    margin-right: 3px;
}
.all, .specials {
    font-size: 10px;
    text-transform: uppercase;
    font-family: var(--semi-font);
    font-weight: 600;
    padding: 0 5px;
    border: 1px solid #d7d7d7;
    border-radius: 2px;
    line-height: 14px;
    height: 16px;
    color: #676767;
    padding-right: 2px;
    margin: 0 3px;
    cursor: pointer;
}
.all.active {
    background: #3f3f3f;
    color: #ccc;
}
.specials {
    color: var(--red);
    border-color: var(--red);
}
.specials.active {
    background: #800000;
    color: #e6c2c2;
    border-color: #ad2a2a;
}
.all i{
    color:gray;
}
.odd {
    flex-grow: 1;
    padding: 5px 3px;
}
.odd-inner {
    border-radius: 2px;
    box-shadow: 0 0 4px #0000001a;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    cursor: pointer;
    text-align: center;
    background: #ffffff;
    color: #0e0d0d;
    padding: 3px;
    min-height: 30px;
}
.odd.active > .odd-inner {
    background: linear-gradient(180deg, #464646, #303030);
}
.odd.active .odd-label{
    color:#c7c7c7;
}
.odd.active .odd-value{
    color:#fff;
}

.special-odds .odd.active {
    background: linear-gradient(180deg, #daf5dc, transparent);
}
.special-odds >.odd.active >.odd-label{
    background: transparent;
}
span.special-info {
    font-size: 12px;
    color: var(--red);
}

.special-odds .odd-label {
    background: linear-gradient(180deg, #fbfbfb, white);
}
.count1 > .odd{
    width: 100%;
}
.count2 > .odd{
    width: 50%;
}
.count3 > .odd{
    width: 33.33%;
}
.count4 > .odd{
    width: 25%;
}
.count6 > .odd{
    width: 33.33%;
}
.count7 > .odd{
    width: 25%;
}
.count8 > .odd {
    width: 25%;
}
.count9 > .odd {
    width: 20%;
}
.count10 > .odd{
    width: 20%;
}
.count-max .odd {
    width: 25%;
}

.odd-label {
    font-size: 12px;
    color: #585858;
    font-weight: 400;
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.odd-value {
    color: #000000;
    font-family: 'Roboto Condensed';
    font-size: 15px;
    flex: 1;
    font-weight: 600;
}
/*TICKET*/
.ticket{
    width:300px;
}
.ticket-body {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 550px;
    background:var(--gray0);
}
.mobile-close-tickets {
    height: 30px;
    width: 30px;
    justify-content: center;
    align-items: center;
    display:none;
}
.ticket-bets {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 3px;
    margin: 5px;
    margin-bottom:10px;
    overflow: auto;
}

.ticket-event-action {
    width: 20px;
    text-align: center;
    font-size: 18px;
    color: #131313;
}
.remove{
    cursor: pointer;
    color:#bbb;
}
.fixed{
    cursor: pointer;
    color: #aaaaaa;
}
.fixed.active {
    color: var(--red);
}
.ticket-event {
    padding: 10px;
    display: flex;
    background: var(--gray1);
    border-radius: 2px;
    padding-bottom: 5px;
    margin-bottom: 3px;
    animation: active-menu .4s ease;
    flex-shrink: 0;
}
.ticket-line-error {
    color: #ff0008;
    font-weight: 500;
}
.ticket-event-content{
    flex:1;
}

.ticket-header {
    height: 40px;
    font-weight: 600;
    font-size: 20px;
    line-height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    background: var(--red);
    color:#fff;
    box-shadow: inset 0 1px 4px #bb060c;
}
.ticket-header span {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    width: 100%;
}
.ticket-selector{
    display: flex;
}
.ticket-no {
    width: 24px;
    height: 24px;
    background: #cc0b12;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
    font-size: 14px;
    cursor: pointer;
}
.ticket-no.active, .ticket-no:hover{
    background: #2e2d41;
    color: #fff;
}
.ticket-event-name {
    font-family: var(--semi-font);
    font-weight: 400;
    font-size: 13px;
    color:#eee;
}
.ticket-event-data{
    color:#a5a5a5;
}
.bet-odd {
    display: flex;
    line-height: 24px;
    flex-direction: row-reverse;
}
.bet-odd-label {
    flex: 1;
    text-align: center;
    margin-right: -20px;
    font-size: 13px;
    color: #ffd96b;
}
.bet-odd-value {
    flex: 1;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    font-family: var(--semi-font);
}
.ticket-data-row {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    flex: 1;
    align-items: center;
}
.ticket-data-value {
    font-size: 15px;
    font-family: var(--condensed-font);
    line-height: 20px;
}
.system-toggle {
    width: calc(100% - 20px);
    text-align: center;
    margin: 0 10px;
    border-radius: 2px;
    font-family: var(--condensed-font);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    background: var(--red-gradient);
    color: #eee;
    height: 25px;
    cursor:pointer;
}
.system-toggle i{
    font-size: 14px;
    margin-left: 4px;
}
.system-and-reset {
     display: flex;
}
.total-win {
    text-align: center;
    font-size: 24px;
    padding: 0 10px;
    font-weight: 600;
    font-family: var(--condensed-font);
}
.bonus {
    font-size: 13px;
    font-weight: 300;
    margin-top: -8px;
}
.ticket-data-label {
    font-size: 11px;
    width: 100%;
    text-align: center;
    color: #adadad;
}
.ticket-data-content {
    display: flex;
    flex-direction: column;
    color: #ccc;
    padding: 10px;
}
.win-bonus-info {
    text-align: center;
    font-size: 13px;
    color: #a0a0a0;
}
.ticket-data-content-rows{
    display:flex;
}
.empty-ticket {
    background: var(--gray1);
    padding: 30px 20px;
    height: unset;
}
.empty-ticket-text {
    text-align: center;
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 15px;
    font-family: var(--semi-font);
    font-weight: 500;
    color:#eee;
}
.system-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: var(--red);
    margin: 0 10px;
    margin-bottom: 10px;
    padding: 5px;
    border-radius: 2px;
    position:relative;
}
.system-options::after {
    display: block;
    content: '';
    border-top: 10px solid var(--red);
    border-left: 10px solid transparent;
    position: absolute;
    bottom: -10px;
    right:50px;
}
.system-option {
    padding: 0 10px;
    height: 24px;
    background: #cc0b12;
    margin: 3px;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    font-family: var(--condensed-font);
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    color: #fff;
}
.system-option.active, .system-option:active{
    color:#fff;
    background: var(--gray1);
    background:linear-gradient(180deg, #464646, #303030);
}
.print-button{
    text-align:center;
}
.print-button button {
    background: #005d04;
    color: #ffffff;
    padding: 1em;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    border: 0;
    margin: 15px;
}
.print-button button:disabled {
    background: #626262;
    color: #9f9f9f;
    cursor: not-allowed;
}
.disabled-info {
    line-height: 20px;
    color: #fffca9;
    display: block;
    margin-bottom: -10px;
    font-size: 12px;
    cursor: help;
}
.system-container {
    flex: 1;
}
.events-count-label {
    font-size: 13px;
}
.reset-ticket {
    font-size: 20px;
    color: #ffe1e2;
    display: flex;
    align-items: center;
}
.reset-button {
    border-radius: 2px;
    font-size: 14px;
    padding: 0 5px;
    height: 25px;
    display: flex;
    align-items: center;
    cursor: pointer;
    background: var(--red);
    background: var(--red-gradient);
    color: #eee;
    font-family: var(--condensed-font);
}
.reset-container {
    padding-left: 10px;
}
.system-and-reset {
    display: flex;
    padding-bottom: 10px;
}
.bet-input-container {
    display: flex;
    height: 30px;
    padding:0 10px;
}
input.bet-input {
    width: 40%;
    border: 0;
    border-radius: 1px;
    border-right: none;
    text-align: center;
    margin-right: 8px;
    background:#505050;
    color:#fff;
    font-size:16px;
}
.bet-buttons {
    width: 60%;
    display: flex;
    color: #fff;
    font-weight: 500;
    font-family: var(--condensed-font);
    line-height: 35px;
}
.bet-button {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 2px;
    background: var(--red);
    background: var(--red-gradient);
    color:#eee;
    border-radius: 2px;
}

/*Layout*/
.center-top-bar {
    display: flex;
    position: fixed;
    top: 60px;
    left: 280px;
    z-index: 1;
    width: calc(100vw - 580px);
}
.center-top-bar.results-top-bar {
    width: calc(100% - 280px);
}
/*COOKIE DIALOG*/
.cookie-dialog {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #FFEB3B;
    z-index: 10;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cookie-close-btn {
    border: 0;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    position: absolute;
    display: flex;
    top: -10px;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #797979;
    color: #fff;
    right: 10px;
    cursor:pointer;
}
.cookie-actions {
    padding: 0 15px;
}
/*CALENDAR*/
.calendar-bar {
    display: flex;
    height: 40px;
    flex: 1;
    box-shadow: 0 0 3px #0000004a;
    background: var(--gray1);
}
.sports-menu-toggle {
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    flex-shrink: 0;
    flex-direction: column;
    background: var(--red);
    background: var(--red-gradient);
    color:#eee;
}
.sports-menu-toggle i {
    font-size: 24px;
    margin-bottom: -4px;
}
.quick-days {
    display: flex;
    font-size: 15px;
    flex: 1;
}
.quick-day {
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    margin-right: 2px;
    font-family: var(--condensed-font);
    flex: 1;
    justify-content: center;
    color:#eee;
    white-space: nowrap;
}
.quick-day.active, .quick-day:hover {
    background: var(--red);
    background: var(--red-gradient);
    color: #fff;
}
.calendar-toggle {
    font-size: 16px;
    display: flex;
    padding-left: 15px;
    padding-right: 10px;
    border: 0;
    font-weight: 500;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    font-family: var(--condensed-font);
    cursor: pointer;
    background: #101010;
    color: #ccc;
}
.calendar-toggle.active {
    background: var(--red);
    color: #fff;
}
.calendar-toggle.active i {
    color: #e6e6ff;
}
.date-range-picker {
    border-radius: 5px;
    padding: 10px;
    border: 0;
    box-shadow: 0 0 5px #0000004f;
}
.date-range-picker-toggle {
    padding:0 10px;
}
input.react-daterange-picker__inputGroup__input{
    color:#ddd;
}
.react-daterange-picker__button svg{
    stroke:#ccc;
}
.react-daterange-picker__button svg:hover{
    stroke:#fff;
}
.react-daterange-picker__inputGroup {
    font-family: var(--condensed-font);
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    cursor:pointer;
}
.react-daterange-picker__wrapper {
    border: 0 !important;
}
.calendar-toggle i {
    font-size: 24px;
    margin-left: 10px;
    color: #ddd;
}
.days-dropdown {
    align-items: center;
    justify-content: center;
    width: calc(100% - 40px);
    font-weight: 600;
    font-family: var(--condensed-font);
    text-transform: uppercase;
    color: var(--dark-blue-gray);
    font-size: 16px;
    flex-direction: column;
    background: #fff;
    z-index: 999;
    position: absolute;
    right: 20px;
    padding: 10px 5px;
    border-radius: 5px;
    box-shadow: 0 0 8px #00000029;
}
.mobile-active-date {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    font-size: 16px;
    font-family: var(--condensed-font);
    font-weight: 500;
    text-transform: uppercase;
}
.mobile-active-date i{
    margin-left: 5px;
    font-size: 15px;
}
.days-dropdown, .mobile-menu-toggle, .mobile-ticket-toggle{
    display: none;
}

.dropdown-calendar {
    position: relative;
    width: 100%;
    color:#eee;
}


/*LOTTO*/
.lotto-events-wrapper {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    border-top: 2px solid #cdcdd4;
}
.lotto-event-item {
    padding: 10px;
    border-bottom: var(--light-border);
}
.lotto-event-item:last-child{
    border-bottom: 0;
}

.numbers-container {
    display: flex;
    flex-wrap: wrap;
    border-radius: 10px;
    background: var(--gray);
    align-items: center;
    justify-content: center;
    padding:10px;
    margin-top:10px;
}
.number {
    padding: 5px;
}
.bonus-numbers {
    display: flex;
    background: #eece6f;
    padding: 2px 5px;
    margin: 0 10px;
}
.no-odd {
    color: #000000;
    font-size: 10px;
}
.six-game-no {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3px;
    justify-content: flex-end;
}

.no {
    width: 32px;
    height: 32px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 50%;
    font-family: var(--condensed-font);
    font-weight: 500;
    border: 1px solid #c5cbd6;
}
.no.selected {
    background: var(--red);
    color: #fff;
    border: 1px solid #b50000;
}
.flag-icon {
    box-shadow: 0 0 10px #d2d2d2;
}
.six-game-no .number {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #2d2d2d;
    border-radius: 50%;
    font-family: var(--condensed-font);
    color: #ffffff;
    font-size: 18px;
    position: relative;
}
.six-color {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: absolute;
    bottom: 3px;
}
/*Lotto ticket*/
.selected-number {
    background: #eff0f2;
    margin: 0 2px;
    width: 24px;
    border-radius: 5px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 24px;
    font-weight: 600;
    font-family: var(--condensed-font);
    margin-bottom: 4px;
}
.selected-numbers {
    display: flex;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

/*RESULTS*/
.result-six-details {
    display: flex;
    align-items: center;
    width: 25%;
}
.result-event-item:first-child{
    border-top: var(--light-border);
}
.result-event-item {
    display: flex;
    padding: 10px;
    background: #f3f3f3;
    border-bottom: var(--light-border);
    border-left: var(--light-border);
    border-right: var(--light-border);
}
.result-event-details {
    flex: 1;
}
.results-values {
    display: flex;
    flex: 1;
    align-items:center;
}
.result {
    border-left: var(--light-border);
    flex: 1;
    text-align: center;
    flex-direction: column;
    display: flex;
}
.result-label {
    border-bottom: var(--light-border);
    flex: 1;
    font-family: var(--semi-font);
    font-size: 14px;
    color: var(--red);
    font-weight: 500;
    line-height: 30px;
}
.result-value {
    flex: 1;
    font-family: var(--condensed-font);
    font-weight: 600;
    font-size: 15px;
    line-height: 30px;
}
.event-code {
    font-family: var(--condensed-font);
    padding-right: 10px;
    border-right: 1px solid #cccccc4d;
    margin-right: 10px;
    font-size: 13px;
    align-items: center;
    display: flex;
    color:#888;

}
.result-event-details {
    flex: 1;
    display: flex;
    align-items: center;
}
.extracted-numbers {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
}
.extracted-no {
    height: 32px;
    width: 32px;
    background: #2f2f2f;
    margin: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--condensed-font);
    font-weight: 500;
    font-size: 20px;
    color: #fff;
    border-radius: 50%;
}
.menu-title {
    color: #fff;
    font-weight: 600;
    padding: 5px 10px;
    font-size: 17px;
    text-transform: uppercase;
}
.results-sports-menu {
    margin-top: 15px;
}

.no3 ,.no10 ,.no17 ,.no24, .no31 ,.no38, .no45 {
    background: #c30000;
}
.no2, .no9, .no16, .no23 ,.no30 ,.no37 ,.no44{
    background: #6d006d;
}
.no1, .no8 ,.no15, .no22 ,.no29 ,.no36 ,.no43{
    background: #1d3bf9;
}
.no5, .no12, .no19 ,.no26, .no33 ,.no40 ,.no47{
    background: #ffff00;
}
.no6, .no13 ,.no20 ,.no27 ,.no34 ,.no41, .no48{
    background: #ff5e21;
}
.no7 ,.no14 ,.no21 ,.no28 ,.no35, .no42 ,.no49{
    background: #000000;
}
.no4, .no11 ,.no18 ,.no25 ,.no32 ,.no39 ,.no46{
    background: #038003;
}

/*PRESENTATION*/
.present-text {
    padding: 10px 30px;
    font-weight: 400;
    line-height: 24px;
    flex:1;
}
.text-paragraf {
    margin-bottom: 40px;
}

/*MY ACCOUNT*/
.account-wrapper {
    display: flex;
    flex:1;
}
.account-left {
    width: 260px;
    background: var(--gray0);
    display: flex;
    flex-direction: column;
}
.left-account-menu {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 10px;
}
.account-menu-item {
    text-decoration: none;
    color: #eee;
    background: var(--gray1);
    line-height: 20px;
    height: 40px;
    align-items: center;
    display: flex;
    padding: 0 15px;
    margin-bottom: 1px;
}
.account-menu-item.active{
    background:var(--red);
    background:var(--red-gradient);
    color:#fff;
}
.account-menu-item:last-child{
    border-bottom: none;
}
.account-main {
    padding: 15px;
    overflow-x: hidden;
    flex: 1;
    min-height: calc(100vh - 210px);
}
.account-text {
    padding: 10px;
}
.btn.red {
    background: var(--red);
    background: var(--red-gradient);
    color: #fff;
    border: 0;
    padding: 0 15px;
    font-size: 14px;
    border-radius: 1px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--semi-font);
}
.settings-group {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 2px;
}
.submit-group {
    padding: 20px 10px;
}
.settings-group:last-child{
    margin-bottom:0;
}
.account-title {
    font-family: var(--condensed-font);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    padding: 10px;
}
/*PROMOTIONS PAGE*/
.promotions-wrapper {
    display: flex;
    flex-wrap: wrap;
    padding: 50px 0;
}
.promotion {
    width: 33.33%;
    padding: 20px;
}
.promotion-inner {
    position: relative;
}
.promotion-title {
    position: absolute;
    z-index: 20;
    font-weight: 900;
    font-family: var(--semi-font);
    color: #fff;
    font-size: 25px;
    width: 100%;
    padding: 5px 10px;
    background: #00000038;
}
.promotion img {
    width: 100%;
}
/*ADMIN PROMOTIONS*/
.admin-promotions{
    display: flex;
}
.admin-promotion-item{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.admin-promotion-image img{
    height: 100px;
    width: auto;
}
/*ADMIN USERS*/
.user-account {
    display: flex;
    flex-wrap: wrap;
    border-bottom: var(--light-border);
}
.user-account-data {
    flex: 1;
    padding: 5px;
}
/*POPUP*/
.pop-up {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    background: #00000040;
    align-items: center;
    justify-content: center;
    animation:fade-in ease-in-out .2s;
}
.pop-up-inner {
    background: #fff;
    padding: 20px;
    border-radius: 2px;
    box-shadow: 0 0 5px #00000029;
    position: relative;
    max-width: calc(100vw - 40px);
    animation: fade-in-zoom-out .25s ease-in-out;
}
.pop-up-close {
    position: absolute;
    right: -8px;
    top: -8px;
    background: #272727;
    border-radius: 50%;
    width: 26px;
    color: #fff;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.pop-up-title {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}
.placed-ticket-content {
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 100px);
}
.pop-up-content svg {
    width: 100%;
}
.placed-ticket-events {
    background: #f5f5f5;
    padding: 5px 15px;
    border-radius: 2px;
    overflow-y: auto;
    flex:1;
}
.placed-ticket-event-name {
    font-size: 15px;
    font-weight: 500;
}
.placed-ticket-data {
    border: var(--light-border);
    padding: 15px;
    margin-top: 15px;
    text-align:center;
}
.min-win {
    font-size: 14px;
    color: #676767;
}
.max-win {
    font-size: 18px;
    font-weight: 500;
    margin: 5px;
}
.placed-ticket-serial svg {
    width: 100% !important;
}
.placed-ticket-time {
    background: #eaeaea;
    margin: -15px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    padding: 5px;
}
.placed-ticket-event-date {
    font-size: 13px;
    font-weight: 300;
}
.placed-ticket-event, .ticket-data-event {
    border-bottom: 1px solid #e6e6e6;
    padding: 15px 0;
}
.placed-ticket-event:last-child , .ticket-data-event:last-child{
    border-bottom: 0;
}
.bet-detail {
    font-size: 13px;
    color: var(--red);
    width:100%;
}
.placed-ticket-event-bet-details {
    display: flex;
    justify-content: space-between;
}
/*ADMIN FORMS*/
.form-groups{
    display: flex;
    flex-wrap: wrap;
    flex:1;
}
.form-group {
    display: flex;
    flex-direction: column;
    padding: 10px;
    flex:1;
}
.form-group label {
    font-size: 15px;
    margin-bottom: 10px;
}
.form-group input, .form-group select {
    line-height: 32px;
    border-radius: 1px;
    border: 0;
    background: #eff0f2;
    padding: 0 10px;
    height: 32px;
}
.form-group option{
    line-height: 30px;
}
.form-control {
    width: 100%;
}
.submit-button {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.btn {
    border: 0;
    height: 30px;
    padding: 0 15px;
    border-radius: 1px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    cursor:pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.form-check-input {
    height: unset !important;
}
.btn-primary{
    background: #009c00;
    color: #fff;
}
.btn-link {
    color: #000;
    font-size: 12px;
    font-weight: 400;
    margin-top: 20px;
}
.promotion-content {
    display: flex;
    align-items: center;
}
.promotion-details {
    display: flex;
    padding:0 10px;
    align-items: center;
    flex:1;
}
.promotion-detail{
    flex:1;
}
/*VERIFY TICKET RESPONSE*/
.ticket-data-bet-info {
    display: flex;
    justify-content: space-between;
}
.ticket-data-events {
    background: #f5f5f5;
    padding: 5px 15px;
    border-radius: 10px;
}
/*PRESENTATION PAGE*/
.presentation-wrapper {
    display: flex;
    height: 100%;
    padding: 30px;
    align-items: center;
}
.present-image{
    width:50%;
}
.present-image img {
    width: 100%;
}
/*AUTH*/

.auth-card {
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex:1;
    justify-content: center;
}
.auth-dropdown {
    position: absolute;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 7px #00000015;
    right: 10px;
    color: #000;
    padding: 10px 20px;
    width: 190px;
    flex-direction: column;
    align-items: flex-end;
    display: none;
    z-index: 10;
    animation:active-menu .15s ease-in-out;
}
.auth-dropdown::before {
    content: '';
    width: 0;
    height: 0;
    border-right: 10px solid transparent;
    display: block;
    position: absolute;
    top: -6px;
    right:20px;
    border-left: 10px solid transparent;
    border-bottom: 10px solid white;
}
.logout-button {
    color: var(--red) !important;
}
.auth-user {
    text-align: right;
    color: #000;
    line-height: 20px;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    width: 100%;
}
.my-account-toggle:hover .my-account-dropdown{
    display: flex;
    display: -webkit-flex;
}
.admin-menu-items {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.admin-dropdown-toggle:hover .admin-dropdown{
    display: flex;
}
.account-data-item {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #00000012;
    padding: 5px;
    align-items: center;
}
.account-data-item:last-child{
    border-bottom: 0;
}
.account-data-item:hover{
    background: #ededed;
}
.account-ticket-detail {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: #3b3b3b;
}
.account-data-item-actions {
    display: flex;
    font-size: 20px;
    background: var(--gray2);
    border-radius: 3px;
    width:100px;
    align-items:center;
    justify-content: space-between;
}
.account-data-item-view {
    padding: 0 5px;
    background: #ffffff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.account-data-item-delete {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor:pointer;
}
/*ADMIN PROMOTIONS*/
.promotion-item {
    display: flex;
    align-items: center;
    border: var(--light-border);
    padding: 15px;
    margin: 5px 0;
}

.promotion-image {
    width: 130px;
    height: auto;
    flex-shrink: 0;
}
.promotion-image img {
    width:100%;
}
li.mobile-menu-close{
    display:none;
}
.promotion-actions {
    display: flex;
}
.promotions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
}

#mask {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    opacity: .5;
    z-index: 1;
    background: #000;
}
@media only screen and (min-width: 1010px){
    /* width */
    ::-webkit-scrollbar {
        width: 5px;
    }

    /* Track */
    ::-webkit-scrollbar-track{
        background: var(--gray1);
        border-radius:2px;
        margin: 5px 0;
    }

    /* Handle */
    ::-webkit-scrollbar-thumb{
        background: var(--red);
        border-radius:2px;
    }


    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }


    /*SPORTS CONTAINER SCROLLBAR*/
    .sport-container::-webkit-scrollbar {
        width: 6px;
    }
    .sport-container::-webkit-scrollbar-thumb {
        background: var(--red);
        border-radius:1px;

    }
    .sport-container::-webkit-scrollbar-thumb:hover{
        width:10px;
    }
    .sport-container::-webkit-scrollbar-track{
        background: #fff;
        border-radius:1px;
        margin: 5px 0;
    }
}
@media (max-width: 575.98px) {
    .ticket{
        display: none;
        width:100%;

    }
    .ticket-body {
        display: none;
    }
    .promotion-item{
        flex-direction: column;
    }
    .promotion-actions{
        margin-top:20px;
    }
    .promotion-image{

        width: auto;
    }
}

/*S - SMALL*/
@media (max-width: 767.98px) {
    body::after{
        width: 100%;
        content:'';
        display:block;
        height:40px;
        flex-shrink: 0;
    }
    body::before{
        height:90px;
    }
    .flexS100{
        width:100%;
    }
    .col-center{
        margin-left: 0;
    }
    .col-right{
        z-index: 5;
    }
    .search-event {
        position: relative;
        border-radius: 0;
        padding: 10px;
        padding-bottom: 0;
    }
    .verify-ticket-button {
        right: 14px;
        top: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .center-top-bar{
        left: 0;
        top:50px;
        width: 100% !important;
    }
    .ticket-body{
        height:calc(100vh - 40px);
    }
    .event-markets{
        width:100% !important;
        left: 0;
        top:50px;
        height: calc(100vh - 90px);
    }
    .header{
        height:50px
    }
    .sport-container {
        padding: 0;
    }
    .results-container{
        width: 100%;
    }
    .auth-dropdown.admin-dropdown {
        right: -21px;
        top: 30px;
    }
    .auth-dropdown {
        right: 5px;
        top: 40px;
    }
    .login-container{
        margin-right:10px;
    }
    .top-bar {
        padding: 0;
        width: 53px;
        height:50px;
    }
    .top-bar::before{
        border-top: 50px solid var(--red);
        border-left:22px solid transparent;
        left:-22px;
    }

    .register{
        display:none;
    }
    .sign-in span{
        display:none;
    }
    .sign-in i {
        margin: 0;
        line-height: 50px;
        font-size: 22px;
    }

    .sub-header {
        padding:20px 0;
        flex-direction: column;
    }


    .sub-header h1 {
        margin-bottom: 20px;
        font-size: 26px;
    }
    .league{
        margin:0;
    }
    .featured-events {
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
    }
    .verify-ticket {
        margin-top: 20px;
        display: none;
    }
    .print-button button {
        margin: 10px 0 0 0;
        width: 100%;
    }
    .calendar-toggle {
        padding: 0;
        width: 44px;
        justify-content: center;
    }
    .calendar-toggle span{
        display: none;
    }
    .calendar-toggle i{
        margin-left:0
    }
    .days-dropdown{
        padding:10px 0;
    }
    .quick-day {
        color: #000;
        margin:0;
    }
    .promotions-wrapper{
        padding: 0;
    }
    .promotion{
        width:100%;
        padding: 0;
    }
    .col-left {
        display: none;
        z-index: 999;
        position: fixed;
        left: 0;
        top: 0;
        height: 100vh;
    }
    .wrapper {
        flex-wrap: wrap;
        padding: 10px;
    }
    .col-center{
        padding:0;
        width:100%;

    }
    .col-center.scrolling-container, .home-events{
        padding:0;
    }
    .league-event-item {
        flex-direction: column;
    }
    .event-odds, .event-details, .special-name {
        width: 100%;
    }
    .event-details {
        margin-bottom: 10px;
    }
    .special-bet {
        flex-direction: column;
        border-radius: 0;
    }
    .special-odds {
        width: 100%;
        margin-top: 10px;
    }
    .days-dropdown i{
        margin-left: 5px
    }
    footer.footer {
        padding: 20px;
    }

    .mobile-ticket-toggle {
        width: 40px;
        height: 40px;
        font-size: 26px;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
        transform: rotate(-30deg);
    }
    .mobile-close-tickets {
        display: flex;
    }
    .logo {
        flex: 1;
        justify-content: center;
        display: flex;
    }
    .my-account-toggle {
        height: 50px;
        padding: 0 10px;
        margin: 0;
        background: transparent;
        color: var(--aqua);
        border: none;
        width: 50px;
        margin-left: 5px;
        display: block;
    }

    .footer-columns {
        flex-wrap: wrap;
    }
    /*MY ACCOUNT*/
    .account-wrapper {
        flex-wrap: wrap;
    }

    .account-left {
        width: 100%;
        padding: 0;
    }
    .left-account-menu {
        flex-direction: row;
        flex: 1;
        padding: 0;
    }
    .account-menu-item {
        width: 100%;
        border: 0;
        text-align: center;
        margin-bottom: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .account-data-item-actions {
        width: 100%;
        background: transparent;
        margin: 5px 0;
    }
    .account-data-item {
        flex-wrap: wrap;
    }

    .count6 .odd{
        width:33.33%;
    }

    /*PRESENTATION*/
    .presentation-wrapper {
        flex-direction: column-reverse;
        align-items: center;
        padding:20px;
    }
    .present-text{
        padding:10px;
    }
    .present-image{
        width:100%;
    }
    .slide-container {
        padding-bottom: 55%;
    }
    .result-event-item {
        flex-direction: column;
    }
    .result:first-child{
        border-left:none;
    }
    .extracted-numbers {
        justify-content: center;
    }
    .result-event-details{
        margin-bottom:10px;
    }
    .result-six-details{
        width: 100%;
    }
    .six-results-values{
        flex-direction: column;
        align-items: center;
    }
    .dark-button {
        background: transparent;
        padding: 20px;
    }
}

@media (max-width: 991.98px) {
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 22px;
        margin-left: 5px;
    }
    .menu {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        background: var(--gray0);
        align-items:flex-start;
        z-index: 9999;
        white-space: nowrap;
        flex-direction: column;
        overflow-x: auto;
        padding:20px 70px 20px 20px;
    }
    .menu-link{
        color:#fff;
        text-align: left;
    }
    .menu li {
        display: block;
        justify-content: left;
        align-items: flex-start;
        padding: 10px;
        margin: 5px 10px;
        height:44px;
    }
    .menu li.active{
        background: var(--gray1);
    }
    li.mobile-menu-close {
        display: flex;
        color: #b9b9b9;
        position: absolute;
        top: 0;
        right: -5px;
        font-size: 20px;
        background: var(--gray1);
        height: 26px;
        width: 26px;
        padding: 0;
        border-radius: 2px;
        align-items: center;
        justify-content: center;
    }

    .cookie-dialog{
        flex-direction: column;
    }
    .cookie-actions{
        padding: 15px;
        padding-bottom: 0;
    }
}

@media only screen and (max-width: 1199.98px) {
    .ticket {
        flex: 1;
        display: flex;
        flex-direction: column;
        position: fixed;
        bottom: 0;
        right: 0;
        z-index: 1000;
    }
    .side-images{
        display: none;
    }
    .ticket-body {
        display: none;
    }
    .center-top-bar{
        width: calc(100vw - 280px);
    }
    .event-markets{
        width: calc(100% - 280px);
    }
    .col-center{
       margin-right: 0;
    }
}
@media (max-width: 1365.98px){
    .league-event-item {
        flex-direction: column;
    }
    .event-odds{
        width:100%;
    }
}

@keyframes fade-in-zoom-out {
    0%{
        transform: scale(2) translateY(-50px);
        opacity: 0;
    }
    100%{
        transform: none;
        opacity: 1;
    }
}
@keyframes fade-in {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
@keyframes active-menu {
    0%{
        transform: translateY(10px);
        opacity: 0;
    }
    100%{
        transform: none;
        opacity: 1;
    }
}
