﻿@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700');
@import url('normalize.min.css');
@import url('bootstrap.min.css');
@import url('bootstrap-datetimepicker.min.css');
@import url('font-awesome.min.css');
@import url('animate.css');

html {
    width: 100%;
}

body {
    width: 100%;
    font-family: 'Roboto Condensed', sans-serif;
    margin: 0;
    height: 100%;
    color: #000;
    line-height: 1.65;
    font-size: 14px;
    box-shadow: none !important;
    text-shadow: none !important;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.040em;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-stroke: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-stroke: 100%;
}

@media (min-device-width:60em) {
    html {
        font-size: 80%;
    }
}

h1 {
    margin: 10px 0px 5px 20px;
    font-size: 110%;
    color: rgb(250, 166, 31);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    text-shadow: none !important;
    font-style: normal;
    text-transform: uppercase;
    font-variant: normal;
    font-weight: 600;
}

h2 {
    color: #757575;
    margin: 5px 0px 5px 20px;
    text-transform: uppercase;
    font-size: 100%;
    font-weight: 600;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: none;
}

h3 {
    font-size: 130%;
    font-weight: 600;
    margin: 0;
    padding: 5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    text-shadow: none;
    font-style: normal;
    font-variant: normal;
    line-height: 15.4px;
}

.loading {
    width: 100%;
    margin-left: 50%;
    margin-top: 20px;
}

.hide {
    display: none;
}


p {
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    font-size: 100%;
    text-shadow: none;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-text-stroke: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-stroke: 100%;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

iframe {
    width: 100%;
    height: auto;
}

footer {
    clear: both;
    width: 100%;
    letter-spacing: 0;
}

.pulse {
    animation-name: pulse;
    animation-duration: 2s;
}

.animated {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    animation-name: pulse;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .animated.infinite {
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
    }

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}
/*Scroll Bars*/
::-webkit-scrollbar {
    width: 15px;
}
/* this targets the default scrollbar (compulsory) */

::-webkit-scrollbar-track {
    background-color: #e9e9e9;
}
/* the new scrollbar will have a flat appearance with the set background color */

::-webkit-scrollbar-thumb {
    background-color: #939393;
}
/* this will style the thumb, ignoring the track */

::-webkit-scrollbar-button {
    display: none;
}
/* optionally, you can style the top and the bottom buttons (left and right for horizontal bars) */

::-webkit-scrollbar-corner {
    background-color: #939393;
}

.button {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    background-color: transparent;
    border-radius: 1px;
    border: 0;
    box-shadow: none !important;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 0.8em;
    font-weight: 600;
    letter-spacing: 0.150em;
    text-overflow: ellipsis;
    line-height: 1.2em;
    padding: 0 10px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
}

input[type="button"] {
    padding: 8px 3px;
    outline-color: #d1d1d1;
    min-width: 40px;
    border: 1px solid #d1d1d1;
    color: #000000;
    background: #e7e7e7; /* Old browsers */
    background: -moz-linear-gradient(top, #e7e7e7 0%, #d1d1d1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e7e7e7), color-stop(100%,#d1d1d1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #e7e7e7 0%,#d1d1d1 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #e7e7e7 0%,#d1d1d1 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #e7e7e7 0%,#d1d1d1 100%); /* IE10+ */
    background: linear-gradient(to bottom, #e7e7e7 0%,#d1d1d1 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e7e7e7', endColorstr='#d1d1d1',GradientType=0 ); /* IE6-9 */
    font-weight: 600;
}

    input[type="button"].input-active {
        color: #000000;
        border: 1px solid rgb(250, 179, 66);
        background: rgb(250, 166, 31); /* Old browsers */
        font-weight: 600;
    }

    input[type="button"].input-changed {
        border: 1px solid #58ad12;
        background: #b0e47f; /* Old browsers */
        background: -moz-linear-gradient(top, #b0e47f 1%, #83d144 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#b0e47f), color-stop(100%,#83d144)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #b0e47f 1%,#83d144 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #b0e47f 1%,#83d144 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #b0e47f 1%,#83d144 100%); /* IE10+ */
        background: linear-gradient(to bottom, #b0e47f 1%,#83d144 100%); /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b0e47f', endColorstr='#83d144',GradientType=0 ); /* IE6-9 */
    }

    input[type="button"].input-changed-up {
        border: 1px solid #c7a646;
        color: #000000;
        background: rgb(250, 166, 31); /* Old browsers */
    }

    input[type="button"].input-changed-down {
        border: 1px solid #58ad12;
        color: #000;
        background: #b0e47f; /* Old browsers */
        background: -moz-linear-gradient(top, #b0e47f 1%, #83d144 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#b0e47f), color-stop(100%,#83d144)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #b0e47f 1%,#83d144 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #b0e47f 1%,#83d144 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #b0e47f 1%,#83d144 100%); /* IE10+ */
        background: linear-gradient(to bottom, #b0e47f 1%,#83d144 100%); /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b0e47f', endColorstr='#83d144',GradientType=0 ); /* IE6-9 */
    }

i {
    margin-right: 3px;
    margin-left: 3px;
}

a {
    text-decoration: none;
    color: #0099CC;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: none;
}

    a:focus,
    a:hover,
    a:active {
        color: #83d144;
        font-weight: 500;
        text-decoration: none;
        cursor: pointer;
        outline: none;
    }

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

ul, menu {
    display: block;
    list-style-type: none;
    margin: 0;
    padding: 0;
    -webkit-margin-before: 0px;
    -webkit-margin-after: 0px;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0;
    -webkit-padding-start: 0;
}

    ul.bullet {
        list-style: disc inside;
        font-weight: 500;
    }

ol.bullet {
    font-weight: 600;
}


audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

div {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 2 */
    -moz-text-size-adjust: 100%;
    -webkit-text-stroke: 100%;
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none !important;
    padding: 0px 3px;
    border-radius: unset;
    border: 1px solid #ccc;
    text-align: center;
    text-shadow: none;
    font-size: 100%;
}

    input[type=text] {
        -webkit-appearance: none;
        box-shadow: none !important;
        -moz-appearance: none;
        appearance: none;
        border-radius: unset;
        padding: 0px 3px;
        text-align: center;
        outline: none;
    }

    input.watermark {
        color: #999;
    }


.input-changed {
    color: black;
    background: blue;
}

.control-label {
    font-size: 90%;
}

.form-horizontal .control-label {
    font-size: 90%;
    letter-spacing: 0.01em;
    text-align: left;
}

.form-group {
    margin-bottom: 5px;
}

.form-group {
    margin-bottom: 5px;
}

.input-sm, .form-group-sm .form-control {
    border-radius: unset;
    box-shadow: none;
    text-shadow: none;
    height: 25px;
    padding: 0 3px;
}


.UnderParticipantNameClass input {
    height: 20px;
    padding: 0 3px;
}

.show {
    display: block;
}

.hide {
    display: none;
}

/* ==================================
   Browser Upgrade Prompt
   ================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}
/* ==================================
  Website
  
/*Header Backrounds*/
/*=====================================*/

.holdingHeader {
    padding: 130px 0 0 0;
    background: url(../Images/system-in-maintenance.jpg) no-repeat;
    background-position: center top;
    height: 260px;
    text-align: center;
}

    .holdingHeader input {
        padding: 4px;
        font-size: 100%;
        width: 200px;
    }

.header-bet-in-play {
    background: #c0c0c0 url(../Images/header-bet-in-play.jpg) repeat-x;
    max-height: 100px;
}

.headerExchange {
    background: #c0c0c0 url(../Images/header-exchange.jpg) repeat-x;
    max-height: 100px;
}

.headerContact {
    background: #c0c0c0 url(../Images/header-help.jpg) repeat-x;
    max-height: 100px;
}

.headerCasion {
    background: #c0c0c0 url(../Images/horse-sil-bg.jpg) repeat-x;
    max-height: 100px;
}

.accountHeader {
    background: #c0c0c0 url(../Images/horse-sil-bg.jpg) repeat-x;
    max-height: 100px;
}

.homeHeader {
    background: #c0c0c0 url(../Images/horse-sil-bg.jpg) repeat-x;
    max-height: 100px;
}

.horseHeader {
    background: #c0c0c0 url(../Images/horse-sil-bg.jpg) repeat-x;
    max-height: 100px;
}

.toteHeader {
    background: #c0c0c0 url(../Images/header-tote.jpg) repeat-x;
    max-height: 100px;
}

.sportHeader {
    background: #c0c0c0 url(../Images/header-sport.jpg) repeat-x;
    max-height: 100px;
}

.lottoHeader {
    background: #c0c0c0 url(../Images/header-lotto.jpg) repeat-x;
    max-height: 100px;
}

.soccerHeader {
    background: #c0c0c0 url(../Images/header-soccer.jpg) repeat-x;
    max-height: 100px;
}

.mobileHeader {
    background: #c0c0c0 url(../Images/header-mobile.jpg) repeat-x;
    max-height: 100px;
}

.main-container {
    background: #ffffff none repeat scroll 0 0;
    padding-bottom: 50px;
}

.greenBut {
    background: #8dc641;
    color: #fff;
    font-size: 80%;
    cursor: pointer;
    font-weight: 600;
    padding: 5px 8px;
    display: inline-block;
    text-align: center;
    border: 0;
    min-width: 100px;
    transition: all 0.3s ease 0s;
    text-transform: uppercase;
}

    .greenBut:hover {
        background: #21a9e1;
        transition: all 0.3s ease 0s;
    }

.redBut {
    text-align: center;
    border: 1px solid #42b4e6;
    font-size: 80%;
    font-weight: 600;
    text-transform: uppercase;
    float: left;
    padding: 5px 8px;
    color: #000;
    background: #9cd9f3; /* Old browsers */
    background: -moz-linear-gradient(top, #9cd9f3 0%, #4ec5f8 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#9cd9f3), color-stop(100%,#4ec5f8)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #9cd9f3 0%,#4ec5f8 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #9cd9f3 0%,#4ec5f8 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #9cd9f3 0%,#4ec5f8 100%); /* IE10+ */
    background: linear-gradient(to bottom, #9cd9f3 0%,#4ec5f8 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9cd9f3', endColorstr='#4ec5f8',GradientType=0 ); /* IE6-9 */
}

.greenBut a {
    text-decoration: none;
    color: #000;
}

.redBut a, u {
    text-decoration: none;
    color: #000;
}

.orangeBut {
    background-color: rgb(250, 166, 31);
    color: #fff;
    font-size: 80%;
    cursor: pointer;
    font-weight: 600;
    padding: 5px 8px;
    display: inline-block;
    text-align: center;
    border: 0;
    min-width: 100px;
    transition: all 0.3s ease 0s;
    text-transform: uppercase;
}

    .orangeBut:hover {
        background: #8dc641;
        transition: all 0.3s ease 0s;
    }

.info-main .hrGreenStrip {
    width: 80%;
    margin: 20px 10%;
}

.info-main {
    padding: 20px;
    width: 100%;
    overflow-x: auto;
    min-height: 400px;
}

    .info-main h1 {
        margin: 10px 0px 10px 0px;
    }

    .info-main h3 {
        color: #8dc641;
        display: block;
        margin: 15px 0 0 0;
        font-size: 100%;
    }

    .info-main p {
        margin: 0 5px;
    }

    .info-main ul {
        margin-left: 20px;
    }

        .info-main ul li a {
            font-size: 100%;
            line-height: 1.4;
        }

    .info-main .table {
        width: 320px !important;
        font-size: 10px;
    }

    .info-main .table-bordered > thead > tr > th,
    .info-main .table-bordered > tbody > tr > th,
    .info-main .table-bordered > tfoot > tr > th,
    .info-main .table-bordered > thead > tr > td,
    .info-main .table-bordered > tbody > tr > td,
    .info-main .table-bordered > tfoot > tr > td {
        text-align: center;
    }

@media (min-width:380px) {
    .info-main .table {
        width: 100% !important;
        max-width: 100%;
        font-size: 100%;
    }
}

.news {
    display: inline-block;
    overflow: hidden;
    position: relative;
    width: 90%;
    /* Firefox */
    width: -moz-calc(100% - 10px);
    /* WebKit */
    width: -webkit-calc(100% - 10px);
    /* Opera */
    width: -o-calc(100% - 10px);
    /* Standard */
    width: calc(100% - 10px);
}

.site .news {
    margin: 0;
    padding: 0;
    width: 80%;
    /* Firefox */
    width: -moz-calc(100% - 190px);
    /* WebKit */
    width: -webkit-calc(100% - 190px);
    /* Opera */
    width: -o-calc(100% - 190px);
    /* Standard */
    width: calc(100% - 190px);
}

.news ul {
    margin: 0;
    position: relative;
    -webkit-padding-start: 0;
}

    .news ul li {
        color: #fff;
        text-align: center;
        height: 40px;
        line-height: 1.2;
        margin-top: 10px;
        overflow: visible;
        text-decoration: none;
        vertical-align: middle;
        font-size: 50%;
        font-weight: 400;
        position: relative;
        padding: 0;
        list-style: none;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: antialiased;
        -webkit-user-select: none;
    }

    .news ul:hover {
        -webkit-animation-play-state: paused;
        -moz-animation-play-state: paused;
        -ms-animation-play-state: paused;
        animation-play-state: paused;
    }


.news span:hover + ul {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -ms-animation-play-state: paused;
    animation-play-state: paused;
}


@media (min-device-width: 640px) {
    .news ul li {
        font-size: 75%;
    }
}

.menutop {
    max-height: 40px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#a4de6e+0,87d34b+100 */
    background: #a4de6e; /* Old browsers */
    background: -moz-linear-gradient(top, #a4de6e 0%, #87d34b 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #a4de6e 0%,#87d34b 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #a4de6e 0%,#87d34b 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a4de6e', endColorstr='#87d34b',GradientType=0 ); /* IE6-9 */
}

.hero-spacer {
    margin-top: 50px;
}

.hero-feature {
    margin-bottom: 30px;
}

.fa-podcast {
    font-size: 120%;
    margin: 2px 5px;
}

.fa-id-card-o {
    color: rgb(250, 166, 31);
    font-weight: 400;
    font-size: 110%;
    margin: 2px 10px 0 5px;
}

.eventDiv {
    margin-left: 20px;
}

.divLotto {
    margin-top: 2px;
}

#LoginDiv {
    background: #fff;
}

#wrapper {
    background: #21a9e1;
}

#content {
    float: left;
    width: 100%;
    display: block;
}

.nopadding {
    padding: 0;
}

.btnBetslip {
    margin: 0;
    position: relative;
    width: 100% !important;
    height: 100% !important;
    display: block;
    padding-bottom: 50px;
}

.LottoMain:before,
#content2::before {
    clear: both;
}

.LottoLive,
.LottoMain,
#BettingDetails,
#sidebar2,
#content2 {
    background: #fff;
    vertical-align: top;
    margin: 0;
    position: relative;
    visibility: visible !important;
    float: left;
    display: block;
    padding: 0;
    width: 100%;
    height: 100% !important;
}


.displayBetSlip {
    position: fixed;
    width: 100%;
    bottom: 0 !important;
    z-index: 999;
    left: 0 !important;
    margin: 0 0 0 0;
    height: 45px;
    min-height: 45px;
    text-align: center;
    color: #000;
    font-weight: 600;
    border: 1px solid #42b4e6;
    background: #9cd9f3;
    background: -moz-linear-gradient(top, #9cd9f3 0%, #4ec5f8 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#9cd9f3), color-stop(100%,#4ec5f8));
    background: -webkit-linear-gradient(top, #9cd9f3 0%,#4ec5f8 100%);
    background: -o-linear-gradient(top, #9cd9f3 0%,#4ec5f8 100%);
    background: -ms-linear-gradient(top, #9cd9f3 0%,#4ec5f8 100%);
    background: linear-gradient(to bottom, #9cd9f3 0%,#4ec5f8 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9cd9f3', endColorstr='#4ec5f8',GradientType=0 );
}

    .displayBetSlip .BetCount {
        -ms-touch-action: manipulation;
        touch-action: manipulation;
        cursor: pointer;
        -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .3);
        box-shadow: 0 3px 8px rgba(0, 0, 0, .3);
        border-radius: 25%;
        border-radius: 25% !important;
        -webkit-border-radius: 25% !important;
        width: 40px !important;
        color: #fff;
        font-weight: 600;
        background-color: #8dc641;
        display: inline-block;
    }

    .displayBetSlip #hide-show-betslip {
        padding-right: 10px;
        display: inline-block;
        -ms-touch-action: manipulation;
        touch-action: manipulation;
        cursor: pointer;
    }

input#Betsliptoggle {
    display: none;
    margin: 0;
    padding: 0;
    border: none;
}

#sidebar2 .BetslipHeading {
    margin: 0;
    display: block;
    text-align: center;
    color: #000;
    font-weight: 600;
    border: 1px solid rgb(250, 180, 31);
    background: rgb(250, 166, 31)
}

@media (min-device-width: 992px) {
    .displayBetSlip,
    input#Betsliptoggle,
    .displayBetSlip .BetCount {
        height: 0px;
        margin: 0;
        border: none;
        display: none !important;
    }

    #content2 {
        width: 80%;
        width: -webkit-calc(100% - 300px);
        width: -moz-calc(100% - 300px);
        width: -o-calc(100% - 300px);
        width: calc(100% - 300px);
        min-width: -webkit-calc(100% - 300px);
        min-width: -moz-calc(100% - 300px);
        min-width: -o-calc(100% - 300px);
        min-width: calc(100% - 300px);
        max-width: -webkit-calc(100% - 300px);
        max-width: -moz-calc(100% - 300px);
        max-width: -o-calc(100% - 300px);
        max-width: calc(100% - 300px);
    }

    #BettingDetails,
    #sidebar2 {
        padding: 0;
        margin: 0;
        width: 300px;
        float: right;
    }
}

.social-container {
    text-align: center;
    width: 100%;
    display: inline-block;
    margin-top: 5px;
}

    .social-container .images {
        display: inline-block;
        text-align: center;
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
        -o-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
        cursor: pointer;
    }

        .social-container .images img {
            float: left;
            margin: 5px 5px;
            margin-right: 10px;
        }


@media (max-height: 449px) {
    #RotatePhone {
        display: none !important;
    }
}

@media (min-height: 450px) {
    #RotatePhone {
        display: block;
    }

    .overlay {
        opacity: 0.89998;
        background: #f7f3f3;
        width: 100%;
        height: 100%;
        z-index: 9999;
        top: 0;
        left: 0;
        position: fixed;
    }

    .overlayImg {
        background-image: url(../Images/rotate_phone.png);
        background-repeat: no-repeat;
        height: 402px;
        width: 310px;
        margin: 120px 40px 0px 50px;
    }

    .overlayClose {
        position: absolute;
        top: 95px;
        color: #4d4c4c;
        display: inline-block;
        left: 250px;
        font-weight: 600;
        text-align: center;
        vertical-align: middle;
    }

        .overlayClose i {
            color: #4d4c4c;
            font-size: 30px;
        }
}

@media only screen and (min-device-width: 992px) {
    .twitter-timeline {
        width: 100%;
    }
}

@media only screen and (min-device-width: 1200px) {
    #wrapper {
        opacity: 1;
    }
}


.logo {
    margin: 0 0 15px 15px;
}

    .logo img {
        max-width: 90px;
        height: auto;
    }

.clear {
    clear: both;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
    display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
    display: none !important;
}

@media (max-device-width: 767px) {
    .visible-xs {
        display: block !important;
    }

    table.visible-xs {
        display: table !important;
    }

    tr.visible-xs {
        display: table-row !important;
    }

    th.visible-xs,
    td.visible-xs {
        display: table-cell !important;
    }

    .visible-xs-block {
        display: block !important;
    }

    .visible-xs-inline {
        display: inline !important;
    }

    .visible-xs-inline-block {
        display: inline-block !important;
    }

    .hidden-xs {
        display: none !important;
    }
}

@media (min-device-width: 768px) and (max-device-width: 991px) {
    .visible-sm {
        display: block !important;
    }

    table.visible-sm {
        display: table !important;
    }

    tr.visible-sm {
        display: table-row !important;
    }

    th.visible-sm,
    td.visible-sm {
        display: table-cell !important;
    }

    .visible-sm-block {
        display: block !important;
    }

    .visible-sm-inline {
        display: inline !important;
    }

    .visible-sm-inline-block {
        display: inline-block !important;
    }

    .hidden-sm {
        display: none !important;
    }
}

@media (min-device-width: 992px) and (max-device-width: 1199px) {
    .visible-md {
        display: block !important;
    }

    table.visible-md {
        display: table !important;
    }

    tr.visible-md {
        display: table-row !important;
    }

    th.visible-md,
    td.visible-md {
        display: table-cell !important;
    }

    .visible-md-block {
        display: block !important;
    }

    .visible-md-inline {
        display: inline !important;
    }

    .visible-md-inline-block {
        display: inline-block !important;
    }

    .hidden-md {
        display: none !important;
    }
}

@media (min-device-width: 1200px) {
    .visible-lg {
        display: block !important;
    }

    table.visible-lg {
        display: table !important;
    }

    tr.visible-lg {
        display: table-row !important;
    }

    th.visible-lg,
    td.visible-lg {
        display: table-cell !important;
    }

    .visible-lg-block {
        display: block !important;
    }

    .visible-lg-inline {
        display: inline !important;
    }

    .visible-lg-inline-block {
        display: inline-block !important;
    }

    .hidden-lg {
        display: none !important;
    }
}

.visible-print {
    display: none !important;
}

@media print {
    .visible-print {
        display: block !important;
    }

    table.visible-print {
        display: table !important;
    }

    tr.visible-print {
        display: table-row !important;
    }

    th.visible-print,
    td.visible-print {
        display: table-cell !important;
    }
}

.visible-print-block {
    display: none !important;
}

@media print {
    .visible-print-block {
        display: block !important;
    }
}

.visible-print-inline {
    display: none !important;
}

@media print {
    .visible-print-inline {
        display: inline !important;
    }
}

.visible-print-inline-block {
    display: none !important;
}

@media print {
    .visible-print-inline-block {
        display: inline-block !important;
    }
}

@media print {
    .hidden-print {
        display: none !important;
    }
}

.row {
    margin-right: 0px;
    margin-left: 0px;
}

    .row:before,
    .row:after {
        display: table;
        content: " ";
    }

    .row:after {
        clear: both;
    }

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: relative;
    min-height: 1px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
    float: left;
}

.col-xs-12 {
    width: 100%;
}

.col-xs-11 {
    width: 91.66666667%;
}

.col-xs-10 {
    width: 83.33333333%;
}

.col-xs-9 {
    width: 75%;
}

.col-xs-8 {
    width: 66.66666667%;
}

.col-xs-7 {
    width: 58.33333333%;
}

.col-xs-6 {
    width: 50%;
}

.col-xs-5 {
    width: 41.66666667%;
}

.col-xs-4 {
    width: 32.33%;
}

.col-xs-3 {
    width: 25%;
}

.col-xs-2 {
    width: 16.66666667%;
}

.col-xs-1 {
    width: 8.33333333%;
}

.col-xs-pull-12 {
    right: 100%;
}

.col-xs-pull-11 {
    right: 91.66666667%;
}

.col-xs-pull-10 {
    right: 83.33333333%;
}

.col-xs-pull-9 {
    right: 75%;
}

.col-xs-pull-8 {
    right: 66.66666667%;
}

.col-xs-pull-7 {
    right: 58.33333333%;
}

.col-xs-pull-6 {
    right: 50%;
}

.col-xs-pull-5 {
    right: 41.66666667%;
}

.col-xs-pull-4 {
    right: 32.33%;
}

.col-xs-pull-3 {
    right: 25%;
}

.col-xs-pull-2 {
    right: 16.66666667%;
}

.col-xs-pull-1 {
    right: 8.33333333%;
}

.col-xs-pull-0 {
    right: auto;
}

.col-xs-push-12 {
    left: 100%;
}

.col-xs-push-11 {
    left: 91.66666667%;
}

.col-xs-push-10 {
    left: 83.33333333%;
}

.col-xs-push-9 {
    left: 75%;
}

.col-xs-push-8 {
    left: 66.66666667%;
}

.col-xs-push-7 {
    left: 58.33333333%;
}

.col-xs-push-6 {
    left: 50%;
}

.col-xs-push-5 {
    left: 41.66666667%;
}

.col-xs-push-4 {
    left: 32.33%;
}

.col-xs-push-3 {
    left: 25%;
}

.col-xs-push-2 {
    left: 16.66666667%;
}

.col-xs-push-1 {
    left: 8.33333333%;
}

.col-xs-push-0 {
    left: auto;
}

.col-xs-offset-12 {
    margin-left: 100%;
}

.col-xs-offset-11 {
    margin-left: 91.66666667%;
}

.col-xs-offset-10 {
    margin-left: 83.33333333%;
}

.col-xs-offset-9 {
    margin-left: 75%;
}

.col-xs-offset-8 {
    margin-left: 66.66666667%;
}

.col-xs-offset-7 {
    margin-left: 58.33333333%;
}

.col-xs-offset-6 {
    margin-left: 50%;
}

.col-xs-offset-5 {
    margin-left: 41.66666667%;
}

.col-xs-offset-4 {
    margin-left: 32.33%;
}

.col-xs-offset-3 {
    margin-left: 25%;
}

.col-xs-offset-2 {
    margin-left: 16.66666667%;
}

.col-xs-offset-1 {
    margin-left: 8.33333333%;
}

.col-xs-offset-0 {
    margin-left: 0;
}

@media (min-device-width: 768px) and (min-device-width: 99px) {
    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
        float: left;
    }

    .col-sm-12 {
        width: 100%;
    }

    .col-sm-11 {
        width: 91.66666667%;
    }

    .col-sm-10 {
        width: 83.33333333%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-8 {
        width: 66.66666667%;
    }

    .col-sm-7 {
        width: 58.33333333%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-5 {
        width: 41.66666667%;
    }

    .col-sm-4 {
        width: 32.33%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-2 {
        width: 16.66666667%;
    }

    .col-sm-1 {
        width: 8.33333333%;
    }

    .col-sm-pull-12 {
        right: 100%;
    }

    .col-sm-pull-11 {
        right: 91.66666667%;
    }

    .col-sm-pull-10 {
        right: 83.33333333%;
    }

    .col-sm-pull-9 {
        right: 75%;
    }

    .col-sm-pull-8 {
        right: 66.66666667%;
    }

    .col-sm-pull-7 {
        right: 58.33333333%;
    }

    .col-sm-pull-6 {
        right: 50%;
    }

    .col-sm-pull-5 {
        right: 41.66666667%;
    }

    .col-sm-pull-4 {
        right: 32.33%;
    }

    .col-sm-pull-3 {
        right: 25%;
    }

    .col-sm-pull-2 {
        right: 16.66666667%;
    }

    .col-sm-pull-1 {
        right: 8.33333333%;
    }

    .col-sm-pull-0 {
        right: auto;
    }

    .col-sm-push-12 {
        left: 100%;
    }

    .col-sm-push-11 {
        left: 91.66666667%;
    }

    .col-sm-push-10 {
        left: 83.33333333%;
    }

    .col-sm-push-9 {
        left: 75%;
    }

    .col-sm-push-8 {
        left: 66.66666667%;
    }

    .col-sm-push-7 {
        left: 58.33333333%;
    }

    .col-sm-push-6 {
        left: 50%;
    }

    .col-sm-push-5 {
        left: 41.66666667%;
    }

    .col-sm-push-4 {
        left: 32.33%;
    }

    .col-sm-push-3 {
        left: 25%;
    }

    .col-sm-push-2 {
        left: 16.66666667%;
    }

    .col-sm-push-1 {
        left: 8.33333333%;
    }

    .col-sm-push-0 {
        left: auto;
    }

    .col-sm-offset-12 {
        margin-left: 100%;
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-sm-offset-9 {
        margin-left: 75%;
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-sm-offset-6 {
        margin-left: 50%;
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-sm-offset-4 {
        margin-left: 32.33%;
    }

    .col-sm-offset-3 {
        margin-left: 25%;
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-sm-offset-0 {
        margin-left: 0;
    }
}

@media (min-device-width: 992px) {
    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
        float: left;
    }

    .col-md-12 {
        width: 100%;
    }

    .col-md-11 {
        width: 91.66666667%;
    }

    .col-md-10 {
        width: 83.33333333%;
    }

    .col-md-9 {
        width: 75%;
    }

    .col-md-8 {
        width: 66.66666667%;
    }

    .col-md-7 {
        width: 58.33333333%;
    }

    .col-md-6 {
        width: 48%;
    }

    .col-md-5 {
        width: 41.66666667%;
    }

    .col-md-4 {
        width: 32.33%;
    }

    .col-md-3 {
        width: 25%;
    }

    .col-md-2 {
        width: 16.66666667%;
    }

    .col-md-1 {
        width: 8.33333333%;
    }

    .col-md-pull-12 {
        right: 100%;
    }

    .col-md-pull-11 {
        right: 91.66666667%;
    }

    .col-md-pull-10 {
        right: 83.33333333%;
    }

    .col-md-pull-9 {
        right: 75%;
    }

    .col-md-pull-8 {
        right: 66.66666667%;
    }

    .col-md-pull-7 {
        right: 58.33333333%;
    }

    .col-md-pull-6 {
        right: 50%;
    }

    .col-md-pull-5 {
        right: 41.66666667%;
    }

    .col-md-pull-4 {
        right: 32.33%;
    }

    .col-md-pull-3 {
        right: 25%;
    }

    .col-md-pull-2 {
        right: 16.66666667%;
    }

    .col-md-pull-1 {
        right: 8.33333333%;
    }

    .col-md-pull-0 {
        right: auto;
    }

    .col-md-push-12 {
        left: 100%;
    }

    .col-md-push-11 {
        left: 91.66666667%;
    }

    .col-md-push-10 {
        left: 83.33333333%;
    }

    .col-md-push-9 {
        left: 75%;
    }

    .col-md-push-8 {
        left: 66.66666667%;
    }

    .col-md-push-7 {
        left: 58.33333333%;
    }

    .col-md-push-6 {
        left: 50%;
    }

    .col-md-push-5 {
        left: 41.66666667%;
    }

    .col-md-push-4 {
        left: 32.33%;
    }

    .col-md-push-3 {
        left: 25%;
    }

    .col-md-push-2 {
        left: 16.66666667%;
    }

    .col-md-push-1 {
        left: 8.33333333%;
    }

    .col-md-push-0 {
        left: auto;
    }

    .col-md-offset-12 {
        margin-left: 100%;
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-md-offset-9 {
        margin-left: 75%;
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-md-offset-6 {
        margin-left: 50%;
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-md-offset-4 {
        margin-left: 32.33%;
    }

    .col-md-offset-3 {
        margin-left: 25%;
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-md-offset-0 {
        margin-left: 0;
    }
}

@media (min-device-width: 1200px) {
    .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
        float: left;
    }

    .col-lg-12 {
        width: 100%;
    }

    .col-lg-11 {
        width: 91.66666667%;
    }

    .col-lg-10 {
        width: 83.33333333%;
    }

    .col-lg-9 {
        width: 75%;
    }

    .col-lg-8 {
        width: 66.66666667%;
    }

    .col-lg-7 {
        width: 58.33333333%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-5 {
        width: 41.66666667%;
    }

    .col-lg-4 {
        width: 32.33%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-2 {
        width: 16.66666667%;
    }

    .col-lg-1 {
        width: 8.33333333%;
    }

    .col-lg-pull-12 {
        right: 100%;
    }

    .col-lg-pull-11 {
        right: 91.66666667%;
    }

    .col-lg-pull-10 {
        right: 83.33333333%;
    }

    .col-lg-pull-9 {
        right: 75%;
    }

    .col-lg-pull-8 {
        right: 66.66666667%;
    }

    .col-lg-pull-7 {
        right: 58.33333333%;
    }

    .col-lg-pull-6 {
        right: 50%;
    }

    .col-lg-pull-5 {
        right: 41.66666667%;
    }

    .col-lg-pull-4 {
        right: 32.33%;
    }

    .col-lg-pull-3 {
        right: 25%;
    }

    .col-lg-pull-2 {
        right: 16.66666667%;
    }

    .col-lg-pull-1 {
        right: 8.33333333%;
    }

    .col-lg-pull-0 {
        right: auto;
    }

    .col-lg-push-12 {
        left: 100%;
    }

    .col-lg-push-11 {
        left: 91.66666667%;
    }

    .col-lg-push-10 {
        left: 83.33333333%;
    }

    .col-lg-push-9 {
        left: 75%;
    }

    .col-lg-push-8 {
        left: 66.66666667%;
    }

    .col-lg-push-7 {
        left: 58.33333333%;
    }

    .col-lg-push-6 {
        left: 50%;
    }

    .col-lg-push-5 {
        left: 41.66666667%;
    }

    .col-lg-push-4 {
        left: 32.33%;
    }

    .col-lg-push-3 {
        left: 25%;
    }

    .col-lg-push-2 {
        left: 16.66666667%;
    }

    .col-lg-push-1 {
        left: 8.33333333%;
    }

    .col-lg-push-0 {
        left: auto;
    }

    .col-lg-offset-12 {
        margin-left: 100%;
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-lg-offset-9 {
        margin-left: 75%;
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-lg-offset-6 {
        margin-left: 50%;
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-lg-offset-4 {
        margin-left: 32.33%;
    }

    .col-lg-offset-3 {
        margin-left: 25%;
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-lg-offset-0 {
        margin-left: 0;
    }
}


.caption {
    padding-top: 8px;
    padding-bottom: 8px;
    color: #777;
    text-align: left;
}

.thbold {
    font-weight: 600;
}

.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
    vertical-align: middle;
    line-height: inherit;
}

.table > tbody > tr > td, .table > tbody > tr > th,
.table > tfoot > tr > td, .table > tfoot > tr > th,
.table > thead > tr > td, .table > thead > tr > th {
    padding: 3px;
}

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
    vertical-align: middle;
    border-top: 1px solid #ddd;
}

.table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd;
}

.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
    border-top: 0;
}

.table > tbody + tbody {
    border-top: 2px solid #ddd;
}

.table .table {
    background-color: #fff;
}

.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
    padding: 5px;
}

.table-bordered {
    border: 1px solid #ddd;
}

    .table-bordered > thead > tr > th,
    .table-bordered > tbody > tr > th,
    .table-bordered > tfoot > tr > th,
    .table-bordered > thead > tr > td,
    .table-bordered > tbody > tr > td,
    .table-bordered > tfoot > tr > td {
        border: 1px solid #ddd;
    }

    .table-bordered > thead > tr > th,
    .table-bordered > thead > tr > td {
        border-bottom-width: 2px;
    }

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #ebebeb;
}

.table-hover > tbody > tr:hover {
    background-color: #f5f5f5;
}

table col[class*="col-"] {
    position: static;
    display: table-column;
    float: none;
}

table td[class*="col-"],
table th[class*="col-"] {
    position: static;
    display: table-cell;
    float: none;
}

.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
    background-color: #f5f5f5;
}

.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
    background-color: #dff0d8;
}

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
    background-color: #d0e9c6;
}

.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
    background-color: #d9edf7;
}

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
    background-color: #c4e3f3;
}

.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
    background-color: #fcf8e3;
}

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
    background-color: #faf2cc;
}

.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
    background-color: #f2dede;
}

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
    background-color: #ebcccc;
}

.table-responsive {
    min-height: .01%;
    overflow-x: auto;
}

@media (max-device-width: 767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd;
    }

        .table-responsive > .table {
            margin-bottom: 0;
        }

            .table-responsive > .table > thead > tr > th,
            .table-responsive > .table > tbody > tr > th,
            .table-responsive > .table > tfoot > tr > th,
            .table-responsive > .table > thead > tr > td,
            .table-responsive > .table > tbody > tr > td,
            .table-responsive > .table > tfoot > tr > td {
                word-break: break-all;
            }

        .table-responsive > .table-bordered {
            border: 0;
        }

            .table-responsive > .table-bordered > thead > tr > th:first-child,
            .table-responsive > .table-bordered > tbody > tr > th:first-child,
            .table-responsive > .table-bordered > tfoot > tr > th:first-child,
            .table-responsive > .table-bordered > thead > tr > td:first-child,
            .table-responsive > .table-bordered > tbody > tr > td:first-child,
            .table-responsive > .table-bordered > tfoot > tr > td:first-child {
                border-left: 0;
            }

            .table-responsive > .table-bordered > thead > tr > th:last-child,
            .table-responsive > .table-bordered > tbody > tr > th:last-child,
            .table-responsive > .table-bordered > tfoot > tr > th:last-child,
            .table-responsive > .table-bordered > thead > tr > td:last-child,
            .table-responsive > .table-bordered > tbody > tr > td:last-child,
            .table-responsive > .table-bordered > tfoot > tr > td:last-child {
                border-right: 0;
            }

            .table-responsive > .table-bordered > tbody > tr:last-child > th,
            .table-responsive > .table-bordered > tfoot > tr:last-child > th,
            .table-responsive > .table-bordered > tbody > tr:last-child > td,
            .table-responsive > .table-bordered > tfoot > tr:last-child > td {
                border-bottom: 0;
            }
}

.bottom50px {
    min-width: 500px;
    width: 100%;
    height: 50px;
}

.timeDisplay {
    margin: 2px 5px 0 0;
    float: right;
    font-weight: 600;
    letter-spacing: 0;
    font-size: 70%;
    color: #000000;
}


.right {
    float: right;
}

.left {
    float: left;
}

.hidden {
    display: none;
}

.hrRow1 {
    font-size: 100%;
    font-weight: 400;
    width: 100%;
}

.hrRow2 {
    font-size: 90%;
    font-weight: 400;
}

.hrRow3 {
    font-size: 60%;
    font-weight: 400;
    line-height: 1;
    min-height: 12px;
    width: 80%;
    width: -webkit-calc(100% - 80px);
    width: -moz-calc(100% - 80px);
    width: -o-calc(100% - 80px);
    width: calc(100% - 80px);
    float: right;
    margin-top: 0px;
    margin-bottom: 0px;
}

#LoadingImg {
    padding-top: 100px;
    margin: 0 auto;
    width: 100px;
    height: 400px;
}

#messages {
    width: 100%;
}

#contact-us {
    display: block;
    padding: 10px 20px 50px 20px;
}

    #contact-us h1 {
        margin: 20px 0px 5px 0;
    }

    #contact-us ul.bullet li {
        font-weight: 500;
        font-size: 100%;
    }

#promoContent {
    background: #ffffff;
    position: relative;
    min-height: 300px;
    padding-bottom: 60px;
}

#FrameContent iframe {
    width: 100%;
    min-height: 700px;
    height: 100%;
    top: 0;
    left: 0;
}
/*===================================*/
/*INFO BAR STYLES*/
/*===================================*/
.InfoImageHomeHeader {
    height: 40px;
    position: relative;
    float: left;
    background: transparent;
    display: block;
    padding-right: 10px;
    cursor: pointer;
}

.InfoImageHeader {
    height: 40px;
    position: relative;
    float: left;
    background: transparent;
    display: block;
    padding-right: 10px;
    cursor: pointer;
}

.InfoImage {
    margin-top: -4px;
    display: block;
    float: left;
}

.InfoImageMiddle {
    display: block;
    float: left;
    margin-top: 5px;
    padding: 0 10px;
}

.InfoImageTop {
    display: block;
    margin-top: -9px;
    float: left;
}


.ProfleLink a {
    float: left;
}

.UsernameLink {
    color: #faa61f;
}

.hrGreenStrip {
    background: #7ac33e;
    height: 1px;
    width: 100%;
}

.horGoldStrip1px {
    background: #dfbb57;
    height: 1px;
    width: 100%;
}


.form > div {
    margin-bottom: 10px;
    width: 400px;
}

    .form > div input {
        float: right;
    }

    .form > div > span {
        float: left;
    }

.infohome {
    position: relative;
    display: block;
    width: 100%;
    height: 40px;
    padding: 0px;
    background: #494949;
    background: -moz-linear-gradient(top, #494949 0%, #000000 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#494949), color-stop(100%,#000000));
    background: -webkit-linear-gradient(top, #494949 0%,#000000 100%);
    background: -o-linear-gradient(top, #494949 0%,#000000 100%);
    background: -ms-linear-gradient(top, #494949 0%,#000000 100%);
    background: linear-gradient(to bottom, #494949 0%,#000000 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#494949', endColorstr='#000000',GradientType=0 );
}

    .infohome a {
        width: 25px;
        height: 40px;
        float: left;
        margin-left: 8px;
        display: block;
    }

        .infohome a:before {
            content: "\f015";
            -moz-osx-font-smoothing: grayscale;
            -webkit-font-smoothing: antialiased;
            font-family: FontAwesome;
            font-style: normal;
            font-weight: normal;
            text-transform: none !important;
            color: rgb(250, 166, 31);
            font-size: 180%;
            height: 40px;
            display: inline-block;
        }

.LivePerson {
    float: right;
    width: 140px;
    display: block;
    text-wrap: none;
    line-height: 40px;
    margin: 10px 0 0 0;
    text-emphasis-style: none;
}

    .LivePerson:before {
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
        text-transform: none !important;
    }

    .LivePerson:after {
        font-family: FontAwesome;
        content: "\f086  ";
        color: rgb(250, 166, 31);
        text-wrap: none;
        display: block;
        float: right;
        font-size: 200%;
        margin: -42px 5px 0 5px;
    }
/*======================*/
.holding {
    text-align: center;
}

    .holding h3 {
        font-size: 250%;
        font-weight: 300;
        color: #000000;
    }

        .holding h3 a {
            color: #21a9e1;
            text-decoration: none;
        }

            .holding h3 a:hover {
                color: #8dc641;
            }
/*======================*/
/*mobile*/
/*======================*/
.mobile {
    text-align: center;
    min-height: 900px;
    margin: 20px;
}

    .mobile h3 {
        display: inline-block;
        font-size: 250%;
        margin: 20px;
        font-weight: 300;
        color: #000000;
    }

        .mobile h3 a {
            color: #21a9e1;
            text-decoration: none;
        }

            .mobile h3 a:hover {
                color: #8dc641;
            }


        .mobile h3.smaller {
            display: inline-block;
            margin: 18px;
            font-size: 250%;
            font-weight: 300;
            color: #000000;
        }

.gotoMobileBut {
    display: inline-block;
    margin: 20px;
    margin: 0 auto;
    cursor: pointer;
}

.gotoHoldingBut {
    width: 110px;
    cursor: pointer;
    display: inline-block;
    vertical-align: bottom;
}


/*Background Colours*/
.green {
    color: #000000;
    background: #b0e47f; /* Old browsers */
    background: -moz-linear-gradient(top, #b0e47f 1%, #83d144 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#b0e47f), color-stop(100%,#83d144)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #b0e47f 1%,#83d144 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #b0e47f 1%,#83d144 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #b0e47f 1%,#83d144 100%); /* IE10+ */
    background: linear-gradient(to bottom, #b0e47f 1%,#83d144 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b0e47f', endColorstr='#83d144',GradientType=0 ); /* IE6-9 */
}

.gold {
    color: #000;
    background: #87c440; /* Old browsers */
    background: -moz-linear-gradient(top, #87c440 0%, #3eb649 98%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#87c440), color-stop(98%,#3eb649)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #87c440 0%,#3eb649 98%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #87c440 0%,#3eb649 98%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #87c440 0%,#3eb649 98%); /* IE10+ */
    background: linear-gradient(to bottom, #87c440 0%,#3eb649 98%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#87c440', endColorstr='#3eb649',GradientType=0 ); /* IE6-9 */
}

.red {
    color: #000000;
    background: #9cd9f3; /* Old browsers */
    background: -moz-linear-gradient(top, #9cd9f3 0%, #4ec5f8 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#9cd9f3), color-stop(100%,#4ec5f8)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #9cd9f3 0%,#4ec5f8 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #9cd9f3 0%,#4ec5f8 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #9cd9f3 0%,#4ec5f8 100%); /* IE10+ */
    background: linear-gradient(to bottom, #9cd9f3 0%,#4ec5f8 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9cd9f3', endColorstr='#4ec5f8',GradientType=0 ); /* IE6-9 */
}

.resultbuttons {
    float: right;
    margin-right: 0;
    margin-bottom: 10px;
    display: inline-block;
}



@media (max-device-width : 374px) {
    .resultbuttons {
        margin-right: 0;
    }
}

.myBet a {
    color: #ffffff;
}

.cont table .btnViewBet {
    background-color: rgb(250, 166, 31);
    color: #fff;
    font-size: 100%;
    cursor: pointer;
    font-weight: 600;
    padding: 5px 8px;
    display: inline-block;
    text-align: center;
    border: 0;
    min-width: 100px;
    transition: all 0.3s ease 0s;
    text-transform: uppercase;
}

    .cont table .btnViewBet:hover {
        background: #8dc641;
        color: #ffffff;
        transition: all 0.3s ease 0s;
    }


.myBet a:hover {
    color: #ffffff;
    background-color: #8dc641;
    border: solid 1px #b0e47f;
}

.BT-Description,
.BT-Participants {
    text-align: left;
}

.BT-BetType {
    text-align: center;
}

.BT-Participants {
    text-transform: lowercase;
}


.ResultsBut {
    padding: 3px 5px 3px 5px;
    float: right;
    cursor: pointer;
    font-size: 80%;
    font-weight: 600;
    display: inline-block;
    color: #000000;
    text-transform: uppercase;
    text-align: center;
    border: 1px solid #ea9200;
    background: rgb(250, 166, 31); /* Old browsers */
}

.podcastBut:before {
    content: "\f2ce";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-transform: none !important;
    margin: 5px;
    font-size: 130%;
    color: #fff;
    vertical-align: middle;
}

.LoadingSpinner {
    color: #000;
    font-size: 120%;
}

.multiple_line1 .lblMultiples,
.ParticipantNameClassHeader .lblOddsClass {
    display: inline-block;
    background: #E7E7E7;
    background: -moz-linear-gradient(top, #E7E7E7 0%, #D1D1D1 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#E7E7E7), color-stop(100%,#D1D1D1));
    background: -webkit-linear-gradient(top, #E7E7E7 0%,#D1D1D1 100%);
    background: -o-linear-gradient(top, #E7E7E7 0%,#D1D1D1 100%);
    background: -ms-linear-gradient(top, #E7E7E7 0%,#D1D1D1 100%);
    background: linear-gradient(to bottom, #E7E7E7 0%,#D1D1D1 100%);
    border: 1px solid #ababab;
    min-width: 40px;
    display: inline;
    float: left;
    padding: 2px 5px;
    font-weight: 600;
    font-size: 90%;
    color: #000;
    text-transform: uppercase;
    text-align: center;
    margin: 8px 5px 0 0;
}

.multiple_line1 .lblMultiples {
    margin: 0px 5px 0 0;
}

.decimalOdds {
    display: none;
}


.ParticipantNameClassHeader .oddsJustChanged {
    border: 1px solid #58ad12;
    background: #b0e47f; /* Old browsers */
    background: -moz-linear-gradient(top, #b0e47f 1%, #83d144 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#b0e47f), color-stop(100%,#83d144)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #b0e47f 1%,#83d144 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #b0e47f 1%,#83d144 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #b0e47f 1%,#83d144 100%); /* IE10+ */
    background: linear-gradient(to bottom, #b0e47f 1%,#83d144 100%); /* W3C */
}


.scratched {
    text-decoration: line-through;
    font-size: 80%;
    color: red;
}

    .scratched .colParticipantDesc {
        font-size: 80%;
    }

.blackTitle {
    text-transform: uppercase;
    text-align: center;
    padding: 5px;
    color: #dfbe5e;
    background: #0e0e0e; /* Old browsers */
    background: -moz-linear-gradient(top, #0e0e0e 1%, #757575 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#0e0e0e), color-stop(100%,#757575)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #0e0e0e 1%,#757575 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #0e0e0e 1%,#757575 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #0e0e0e 1%,#757575 100%); /* IE10+ */
    background: linear-gradient(to bottom, #0e0e0e 1%,#757575 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0e0e0e', endColorstr='#757575',GradientType=0 ); /* IE6-8 */
}

.messageContent {
    width: 100%;
    height: 100px;
    background: #ffffff; /* Old browsers */
    background: -moz-linear-gradient(top, #ffffff 0%, #cfc6ac 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#cfc6ac)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #ffffff 0%,#cfc6ac 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #ffffff 0%,#cfc6ac 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #ffffff 0%,#cfc6ac 100%); /* IE10+ */
    background: linear-gradient(to bottom, #ffffff 0%,#cfc6ac 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#cfc6ac',GradientType=0 ); /* IE6-8 */
}

.greenHeader {
    width: 100%;
    padding: 5px 0;
    max-height: 40px;
    text-align: center;
    border: none;
    text-transform: uppercase;
    color: #fff;
    background: rgb(250, 166, 31); /* Old browsers */
}

/****************************************/
/*HEADER DESIGN*/
#HeaderDiv {
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

    #HeaderDiv .headerInfoContainer:before,
    #HeaderDiv .headerInfoContainer:after {
        clear: both;
    }

    #HeaderDiv .headerInfoContainer {
        height: 100px;
        display: block;
        max-height: 100px;
        width: 100%;
    }

        #HeaderDiv .headerInfoContainer .InfoLogo {
            margin-top: 2px;
            float: left;
            cursor: pointer;
            vertical-align: top;
            -ms-touch-action: manipulation;
            touch-action: manipulation;
            cursor: pointer;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }



        #HeaderDiv .headerInfoContainer .headerInfoDetails {
            float: right;
            vertical-align: top;
            display: inline-block;
            margin: 0;
            width: 217px;
            max-width: 260px;
            height: 100%;
            background: #c0c0c0; /* Old browsers */
            background: -moz-linear-gradient(top, #c0c0c0 0%, #939393 100%); /* FF3.6+ */
            background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c0c0c0), color-stop(100%,#939393)); /* Chrome,Safari4+ */
            background: -webkit-linear-gradient(top, #c0c0c0 0%,#939393 100%); /* Chrome10+,Safari5.1+ */
            background: -o-linear-gradient(top, #c0c0c0 0%,#939393 100%); /* Opera 11.10+ */
            background: -ms-linear-gradient(top, #c0c0c0 0%,#939393 100%); /* IE10+ */
            background: linear-gradient(to bottom, #c0c0c0 0%,#939393 100%); /* W3C */
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c0c0c0', endColorstr='#939393',GradientType=0 ); /* IE6-9 */
        }

            #HeaderDiv .headerInfoContainer .headerInfoDetails .LoginDiv input[type="password"],
            #HeaderDiv .headerInfoContainer .headerInfoDetails .LoginDiv input[type="text"] {
                font-weight: 300;
                display: inline-block;
                width: 100px;
                margin: 1px 2px 2px 2px;
                padding: 1px;
            }

                #HeaderDiv .headerInfoContainer .headerInfoDetails .LoginDiv input[type="password"]:focus,
                #HeaderDiv .headerInfoContainer .headerInfoDetails .LoginDiv input[type="text"]:focus {
                    content: "";
                    outline: none;
                    border-color: #aaa;
                }

            #HeaderDiv .headerInfoContainer .headerInfoDetails .LoginDiv .blueBut {
                line-height: 1.87;
                vertical-align: middle;
                font-size: 0.7em;
                display: inline-block;
                padding: 5px 0;
                margin: 0 0 0 3px;
            }

            #HeaderDiv .headerInfoContainer .headerInfoDetails .LoginDiv .greenBut {
                line-height: 1.87;
                vertical-align: middle;
                font-size: 0.7em;
                display: inline-block;
                padding: 5px 0;
                margin: 0 0 0 3px;
            }

            #HeaderDiv .headerInfoContainer .headerInfoDetails .LoginDiv .ForgotPasswordBtn,
            #HeaderDiv .headerInfoContainer .headerInfoDetails .LoginDiv .depositOptionsLink {
                margin: 0px 0px 0px 6px;
                position: relative;
                display: inline-block;
                bottom: 0;
            }

            #HeaderDiv .headerInfoContainer .headerInfoDetails .LoginDiv .ForgotPasswordBtn {
                margin: 0px 0px 0px 13px;
            }

                #HeaderDiv .headerInfoContainer .headerInfoDetails .LoginDiv .depositOptionsLink a,
                #HeaderDiv .headerInfoContainer .headerInfoDetails .LoginDiv .ForgotPasswordBtn a {
                    color: #ffffff;
                    font-size: 80%;
                }

                    #HeaderDiv .headerInfoContainer .headerInfoDetails .LoginDiv .depositOptionsLink a:hover,
                    #HeaderDiv .headerInfoContainer .headerInfoDetails .LoginDiv .ForgotPasswordBtn a:hover {
                        color: #ffffff;
                    }

            #HeaderDiv .headerInfoContainer .headerInfoDetails .LoggedInDiv {
                padding: 2px 0 0 3px;
            }

                #HeaderDiv .headerInfoContainer .headerInfoDetails .LoggedInDiv .orangeBut,
                #HeaderDiv .headerInfoContainer .headerInfoDetails .LoggedInDiv .blueBut,
                #HeaderDiv .headerInfoContainer .headerInfoDetails .LoggedInDiv .greenBut {
                    line-height: 1.87;
                    vertical-align: middle;
                    font-size: 0.7em;
                    display: inline-block;
                    padding: 5px 0;
                    margin: 0;
                }

                #HeaderDiv .headerInfoContainer .headerInfoDetails .LoggedInDiv .orangeBut {
                    min-width: 80px;
                }

                #HeaderDiv .headerInfoContainer .headerInfoDetails .LoggedInDiv .blueBut,
                #HeaderDiv .headerInfoContainer .headerInfoDetails .LoggedInDiv .greenBut {
                    min-width: 60px;
                }

                #HeaderDiv .headerInfoContainer .headerInfoDetails .LoggedInDiv .headerWelcome {
                    color: #ffffff;
                    font-size: 80%;
                }

                #HeaderDiv .headerInfoContainer .headerInfoDetails .LoggedInDiv #lblWelcomeLabel {
                    display: inline-block;
                    font-size: 80%;
                }

                #HeaderDiv .headerInfoContainer .headerInfoDetails .LoggedInDiv #lblWelcome {
                    display: inline-block;
                    margin-left: 5px;
                    font-size: 80%;
                }

                #HeaderDiv .headerInfoContainer .headerInfoDetails .LoggedInDiv .amount,
                #HeaderDiv .headerInfoContainer .headerInfoDetails .LoggedInDiv .desc {
                    color: #ffffff;
                    display: inline-block;
                    font-size: 80%;
                }

                #HeaderDiv .headerInfoContainer .headerInfoDetails .LoggedInDiv .amount {
                    margin-left: 5px;
                    font-size: 90%;
                }

                    #HeaderDiv .headerInfoContainer .headerInfoDetails .LoggedInDiv .amount:before {
                        content: "R";
                        margin-right: 2px;
                    }

                #HeaderDiv .headerInfoContainer .headerInfoDetails .LoggedInDiv .Refresh:before {
                    content: "\f021 ";
                    font-family: FontAwesome;
                    -moz-osx-font-smoothing: grayscale;
                    -webkit-font-smoothing: antialiased;
                    font-family: FontAwesome;
                    font-style: normal;
                    font-weight: normal;
                    text-transform: none !important;
                    margin-right: 0px;
                    margin-left: 3px;
                    font-size: 100%;
                    top: 0;
                }

                #HeaderDiv .headerInfoContainer .headerInfoDetails .LoggedInDiv .Refresh {
                    display: inline-block;
                    color: #fff;
                    font-size: 80%;
                    cursor: pointer;
                }

                #HeaderDiv .headerInfoContainer .headerInfoDetails .LoggedInDiv .RefreshDate {
                    font-size: 70%;
                    color: #fff;
                    display: inline-block;
                    margin-left: 3px;
                }

            #HeaderDiv .headerInfoContainer .headerInfoDetails .HeaderErrorMsg :before {
                content: "\f06a";
                -moz-osx-font-smoothing: grayscale;
                -webkit-font-smoothing: antialiased;
                font-family: FontAwesome;
                font-style: normal;
                font-weight: normal;
                text-transform: none !important;
                background: #fff no-repeat;
                font-size: 120%;
                top: 0;
            }

            #HeaderDiv .headerInfoContainer .headerInfoDetails .HeaderErrorMsg {
                color: #D8000C;
                border: 1px solid;
                height: 15px;
                margin: 1px 0 0 0;
                padding: 0;
                background: #FFBABA;
                font-size: 65%;
                text-align: left;
                letter-spacing: 0em;
                text-wrap: normal;
                display: none;
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: antialiased;
                text-shadow: none;
            }

.headerInfoContainer .headerInfoDetails .ErrorLogo {
    max-width: 20%;
    height: 100%;
    float: left;
}

.ErrorLogo img {
    margin: 25px;
}



#HeaderDiv .headerInfoContainer .InfoLogo img {
    max-width: 100px;
    width: 100px;
    margin-top: 15px;
}


@media (min-width: 414px) {
    #HeaderDiv .headerInfoContainer .InfoLogo img {
        height: auto;
        margin-left: 2px;
        margin-top: 5px;
        width: 160px;
        max-width: 200px;
    }
}

@media (max-device-width: 800px) {

    #HeaderDiv.header-bet-in-play,
    #HeaderDiv.headerExchange,
    #HeaderDiv.headerBuddyBonus,
    #HeaderDiv.headerContact,
    #HeaderDiv.headerCasion,
    #HeaderDiv.accountHeader,
    #HeaderDiv.homeHeader,
    #HeaderDiv.horseHeader,
    #HeaderDiv.toteHeader,
    #HeaderDiv.sportHeader,
    #HeaderDiv.lottoHeader,
    #HeaderDiv.soccerHeader,
    #HeaderDiv.mobileHeader,
    #HeaderDiv.toteHeader {
        background: #c0c0c0;
        background: -moz-linear-gradient(top, #c0c0c0 0%, #939393 100%);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c0c0c0), color-stop(100%,#939393));
        background: -webkit-linear-gradient(top, #c0c0c0 0%,#939393 100%);
        background: -o-linear-gradient(top, #c0c0c0 0%,#939393 100%);
        background: -ms-linear-gradient(top, #c0c0c0 0%,#939393 100%);
        background: linear-gradient(to bottom, #c0c0c0 0%,#939393 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c0c0c0', endColorstr='#939393',GradientType=0 );
    }
}

@media (min-device-width: 300px) {
    .headerInfoContainer .headerInfoDetails .LoginDiv input[type="password"],
    .headerInfoContainer .headerInfoDetails .LoginDiv input[type="text"] {
        margin: 10px 3px 10px 8px;
    }

    .headerInfoContainer .headerInfoDetails .LoginDiv .blueBut,
    .headerInfoContainer .headerInfoDetails .LoginDiv .greenBut {
        margin: 0px 3px 10px 8px;
    }

    .headerInfoContainer .headerInfoDetails .LoginDiv .ForgotPasswordBtn,
    .headerInfoContainer .headerInfoDetails .LoginDiv .depositOptionsLink {
        margin: 0px 5px 0px 10px;
    }

    .headerInfoContainer .headerInfoDetails .LoggedInDiv .orangeBut,
    .headerInfoContainer .headerInfoDetails .LoggedInDiv .blueBut,
    .headerInfoContainer .headerInfoDetails .LoggedInDiv .greenBut {
        min-width: 75px;
        margin: 2px 0 0 0;
    }
}

@media (min-device-width: 568px) {
    .headerInfoContainer .headerInfoDetails .LoggedInDiv .orangeBut,
    .headerInfoContainer .headerInfoDetails .LoggedInDiv .blueBut,
    .headerInfoContainer .headerInfoDetails .LoggedInDiv .greenBut {
        min-width: 100px;
    }


    .headerInfoContainer .headerInfoDetails .LoginDiv input[type="password"],
    .headerInfoContainer .headerInfoDetails .LoginDiv input[type="text"] {
        margin: 10px;
    }

    .headerInfoContainer .headerInfoDetails .LoginDiv .blueBut,
    .headerInfoContainer .headerInfoDetails .LoginDiv .greenBut {
        margin: 0 10px;
    }

    .headerInfoContainer .headerInfoDetails .LoginDiv .ForgotPasswordBtn {
        margin: 5px 0 0 34px;
    }

    .headerInfoContainer .headerInfoDetails .LoginDiv .depositOptionsLink {
        margin: 0px 0 0 10px;
    }
}

#menuToggle {
    display: block;
    padding-bottom: 20px;
    background: #ffffff;
    z-index: 100;
    margin-top: 10px;
    text-shadow: none;
    -webkit-user-select: none;
    user-select: none;
}

    #menuToggle .nav-trigger {
        display: none;
        /*background: #b0e47f;
        background: -moz-linear-gradient(top, #b0e47f 1%, #83d144 100%);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#b0e47f), color-stop(100%,#83d144));
        background: -webkit-linear-gradient(top, #b0e47f 1%,#83d144 100%);
        background: -o-linear-gradient(top, #b0e47f 1%,#83d144 100%);
        background: -ms-linear-gradient(top, #b0e47f 1%,#83d144 100%);
        background: linear-gradient(to bottom, #b0e47f 1%,#83d144 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b0e47f', endColorstr='#83d144',GradientType=0 );
        text-align: center;
        width: 37px;
        height: 30px;
        position: absolute;
        top: 1px;
        left: 0px;
        cursor: pointer;
        margin: -4px 0 0 2px;
        border-radius: 3px;
        opacity: 1;
        text-shadow: none;
        z-index: 2;
        -webkit-touch-callout: none;*/
    }

    #menuToggle .StickyMenu {
        display: none;
    }
/*  display: block;
        text-shadow: none;
        letter-spacing: 0;
        font-weight: bold;
        line-height: 0.5;
        font-size: 9px;
        color: rgb(33, 169, 225);
        width: 30px;
        text-transform: uppercase;
        z-index: 10;
        height: 23px;
        margin: -5px 4px 4px 8px;
    }

        #menuToggle .StickyMenu .fa-bars:before {
            -webkit-box-sizing: unset;
            -moz-box-sizing: unset;
            box-sizing: unset;
        }

        #menuToggle .StickyMenu i {
            margin-top: 0px;
            text-shadow: none;
            margin: 0;
            color: rgb(33, 169, 225);
            font-stretch: expanded;
            font-size: 25px;
        }

    #menuToggle .nav-trigger ~ .StickyMenu ~ .site-wrap {
        width: 99%;
        padding-left: 5px;
    }

    #menuToggle .nav-trigger:checked ~ .StickyMenu ~ .site-wrap {
        left: 140px;
        width: 87%;
        padding: 0;
        width: -webkit-calc(100% - 150px);
        width: -moz-calc(100% - 150px);
        width: -o-calc(100% - 150px);
        width: calc(100% - 150px);
    }*/


input[type=checkbox], input[type=radio] {
    -webkit-box-sizing: unset;
    -moz-box-sizing: unset;
    box-sizing: unset;
}
/*#menuToggle .nav-trigger:checked ~ .menu_span:nth-last-child(3) {
        opacity: 0;
        transform: rotate(0deg) scale(0.5, 0.5);
    }

    #menuToggle .nav-trigger:checked ~ .menu_span:nth-last-child(2) {
        opacity: 1;
        transform: rotate(-45deg) translate(0, -1px);
    }

    #menuToggle .nav-trigger:checked ~ ul {
        transform: scale(1.0, 1.0);
        opacity: 1;
    }*/

.list-group-item:before {
    content: "\f111  ";
    margin-right: 10px;
    font-size: 80%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-transform: none !important;
    vertical-align: middle;
}

.list-group-item {
    border: none;
    font-size: 100%;
    padding: 5px 15px;
}

.exchangeframe,
.exchangeloggedout,
.exchange {
    margin: 0 0 0 0;
    width: 100%;
    height: 100%;
}

.ExchangeContent {
    font-size: 100%;
    text-align: center;
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
}

    .ExchangeContent .warning {
        margin-bottom: 20px;
    }

    .ExchangeContent .warningcontent {
        padding: 10px;
        font-size: 100%;
        color: #000000;
    }

    .ExchangeContent .warningicon {
        float: left;
        padding: 5px 0px;
        width: 65px;
        height: 58px;
    }

        .ExchangeContent .warningicon img {
            height: 45px;
            width: auto;
        }



    .ExchangeContent h3 {
        font-size: 180%;
        font-weight: 500;
        color: #000000;
        text-align: center;
        padding: 15px;
    }

    .ExchangeContent .loggedoutBut {
        margin-left: 0 auto;
        color: #fff;
        text-decoration: none;
        font-size: 80%;
        font-weight: 700;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: antialiased;
        text-shadow: none;
    }

    .ExchangeContent .gotoexchangeBut {
        background: #21a9e1;
        margin-bottom: 20px;
        font-size: 80%;
        color: #fff;
        cursor: pointer;
        font-weight: 600;
        padding: 10px 8px;
        display: inline-block;
        text-align: center;
        border: 0;
        min-width: 100px;
        transition: all 0.3s ease 0s;
        text-transform: uppercase;
    }

    .ExchangeContent .bettingtable {
        margin-bottom: 20px;
    }

        .ExchangeContent .bettingtable thead tr:nth-child(1) {
            font-size: 120%;
            background-color: #838383;
            color: #ffffff;
        }

        .ExchangeContent .bettingtable thead tr:nth-child(2) {
            font-size: 120%;
            background-color: rgb(250, 166, 31);
            color: #000;
        }

        .ExchangeContent .bettingtable thead tr th {
            text-align: center;
            border: 0;
        }

            .ExchangeContent .bettingtable thead tr th:nth-child(1) {
                width: 45%;
            }

            .ExchangeContent .bettingtable thead tr th:nth-child(2) {
                color: #ffffff;
                width: 10%;
            }

            .ExchangeContent .bettingtable thead tr th:nth-child(3) {
                width: 45%;
            }

        .ExchangeContent .bettingtable table > tbody > tr > td {
            padding: 0;
        }

        .ExchangeContent .bettingtable .table {
            margin-bottom: 0;
        }

        .ExchangeContent .bettingtable #exchangeTable tr td {
            text-align: left;
            width: 40%;
            color: #000;
            padding: 8px;
        }


@media (min-device-width: 300px) and (max-device-width: 800px) {
    .ExchangeContent .bettingtable {
        margin-left: 0%;
        font-size: 90%;
        width: 100%;
    }

        .ExchangeContent .bettingtable thead tr:nth-child(1) {
            font-size: 100%;
        }

        .ExchangeContent .bettingtable thead tr:nth-child(2) {
            font-size: 90%;
        }

        .ExchangeContent .bettingtable img {
            margin: 0;
            width: 100%;
        }

    .ExchangeContent .warning {
        margin-bottom: 30px;
    }

    .ExchangeContent .warningcontent {
        font-size: 80%;
    }

    .ExchangeContent .warningicon {
        height: 25px;
        width: 30px;
    }

        .ExchangeContent .warningicon img {
            height: 20px;
        }
}


@media (max-device-width: 599px) {
    .loggedoutBut {
        font-size: 80%;
        padding: 5px;
        margin: 10px;
    }

    .loggedinBut,
    .ExchangeContent h3 {
        font-size: 80%;
        font-weight: 600;
        line-height: 2;
        padding: 0;
        margin: 5px;
    }
}

@media (min-device-width: 600px) and (max-device-width: 799px) {
    .ExchangeContent h3 {
        font-size: 20px;
        line-height: 1.5;
        padding: 0;
        margin: 5px;
    }
}

@media (min-device-width: 800px) and (max-device-width: 900px) {
    .ExchangeContent h3 {
        font-size: 24px;
        line-height: 2;
        padding: 0;
        margin: 5px;
    }
}

.blueBut {
    background: #21a9e1;
    font-size: 80%;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    padding: 5px 8px;
    display: inline-block;
    text-align: center;
    border: 0;
    min-width: 100px;
    transition: all 0.3s ease 0s;
    text-transform: uppercase;
}

    .blueBut:hover {
        background: #8dc641;
        transition: all 0.3s ease 0s;
    }

    .blueBut a,
    .greenBut a,
    .orangeBut a {
        color: #fff;
        text-decoration: none;
        font-size: 100%;
        font-weight: 600;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: antialiased;
        text-shadow: none;
    }

.headerWelcome .greenBut {
    float: right;
}


/*Buttons*/

.UCMatches input {
    min-width: 40px;
    padding: 8px 3px;
}

.Reports {
    overflow-x: auto;
}

.reportrange {
    position: relative;
}

    .reportrange input[type="text"],
    .reportrange input {
    }
/*=================================*/
/*Soccer 6 section*/
/*=================================*/
#Soccer6 i {
    color: black;
}

.Soccer6Wrapper {
    margin: 0 auto;
    background: url(../Images/exchange/watermark.jpg) no-repeat;
    width: 1027px;
    height: 583px;
}

.gotoSoccer6But {
    margin: 0 auto;
    width: 407px;
    cursor: pointer;
}

.Soccer6Wrapper a {
    text-decoration: none;
}

.Soccer6 {
    text-align: center;
}

    .Soccer6 h3 {
        font-size: 36px;
        font-weight: 300;
        color: #000000;
        text-align: center;
        line-height: 3;
        padding: 20px;
    }

.Soccer6loggedout {
    text-align: center;
}

    .Soccer6loggedout h3 {
        font-size: 35px;
        font-weight: 300;
        color: #000000;
        text-align: center;
        line-height: 3;
        padding: 20px;
    }
/*=================================*/
/*ERROR AND SUCCESS MESSAGES*/
/*=================================*/
.boldp {
    color: red;
    font-weight: 300;
}

.lblErrorMsg {
    font-size: 12px;
    text-align: center;
}

#passwordError,
#lblErrorMsg {
    color: #D8000C;
    background-color: #FFBABA;
    border: 2px solid;
    padding: 8px 16px;
    font-size: 12px;
    display: none;
}

.InfoMessage {
    color: #00529B;
    border: 2px solid;
    padding: 10px 10px;
    margin-bottom: 10px;
    background-color: #BDE5F8;
    font-size: 12px;
    max-width: 500px;
}

.resetPasswordSubmit {
    float: right;
    cursor: pointer;
}

.largeInfoMessage:before {
    content: "\f05a";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-transform: none !important;
    margin-right: 5px;
    font-size: 26px;
    top: 0;
}

.largeInfoMessage {
    color: #00529B;
    border: 2px solid;
    padding: 10px 10px;
    margin-bottom: 10px;
    margin-top: 10px;
    background-color: #BDE5F8;
    font-size: 14px;
    display: none;
}

.largeErrorMessage:before {
    content: "\f06a";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-transform: none !important;
    margin-right: 10px;
    font-size: 16px;
    top: 0;
    display: inline-block;
}

.largeErrorMessage {
    color: #D8000C;
    border: 2px solid;
    padding: 3px;
    margin: 0 0 10px 0;
    line-height: 1;
    font-size: 12px;
    letter-spacing: 0em;
    font-weight: 600;
    display: inline-block;
}

.smallErrorMessage {
    margin: 2px 5px;
    letter-spacing: 0.03em;
    font-size: 85%;
}

    .smallErrorMessage:before {
        content: "\f12a";
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
        text-transform: none !important;
        margin-right: 3px;
        top: 0;
    }

.smallErrorMessage {
    color: #D8000C;
    border: 1px solid;
    padding: 3px 3px 3px 5px;
    background: #FFBABA;
    font-size: 90%;
    font-weight: 600;
    text-align: left;
    display: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: antialiased;
    text-shadow: none;
}

.largeSuccessMessage {
    color: #4F8A10;
    border: 2px solid;
    margin: 0 0 20px 10px;
    padding: 20px 10px 20px 50px;
    background: #DFF2BF url(../Images/PageSuccess.png) no-repeat;
    background-position: 10px 16px;
    font-size: 18px;
    display: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: antialiased;
    text-shadow: none;
}

.successTick {
    background: #DFF2BF url(../Images/PageSuccess20x20.png) no-repeat;
    background-position: center;
}
/********************************/

.tablered tr {
    border-bottom: 1px solid #dfbb57;
    font-weight: 600;
    color: #ffffff;
    background: #ababab; /* Old browsers */
    background: -moz-linear-gradient(top, #ababab 0%, #8b8b8b 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ababab), color-stop(100%,#8b8b8b)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #ababab 0%,#8b8b8b 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #ababab 0%,#8b8b8b 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #ababab 0%,#8b8b8b 100%); /* IE10+ */
    background: linear-gradient(to bottom, #ababab 0%,#8b8b8b 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ababab', endColorstr='#8b8b8b',GradientType=0 ); /* IE6-9 */
    text-align: center;
    vertical-align: middle;
    height: 59px;
}

.opens {
    background-repeat: no-repeat;
    height: 15px;
    width: 13px;
    float: left;
    margin: 5px;
    cursor: auto;
}

/****************Login.register*****************/
#tblForgot {
    width: 50%;
}

/*.==============================================*/
/*BETTING SLIP*/
/*.==============================================*/
.opacity {
    opacity: 0;
}

.opacityNone {
    opacity: 1;
}


.BettingSlipEntry2,
.BettingSlipEntry,
#BettingSlipMultiples,
.CalculatorWrapper {
    padding-bottom: 1px;
    color: #000;
    background: #efefef;
    font-weight: 600;
    letter-spacing: 0;
    font-size: 85%;
}

#BettingSlipMultiples,
.CalculatorWrapper {
    padding-right: 15px;
}

.lblMultiples {
    font-size: 100%;
}

.RaceHeading div {
    display: inline-block;
}

/*.RaceHeading {
	color: #000;
	width: 100%;
	display: inline-block;
	background: #efefef; 
background: -moz-linear-gradient(top, #efefef 0%, #d0d0d0 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#efefef), color-stop(100%,#d0d0d0));
background: -webkit-linear-gradient(top, #efefef 0%,#d0d0d0 100%); 
background: -o-linear-gradient(top, #efefef 0%,#d0d0d0 100%); 
background: -ms-linear-gradient(top, #efefef 0%,#d0d0d0 100%);
background: linear-gradient(to bottom, #efefef 0%,#d0d0d0 100%);
}

*/
.RaceHeading {
    width: 100%;
    display: block;
    min-height: 35px;
    background: rgb(250, 166, 31);
}

.lblRaceName {
    display: inline-block;
    float: left;
    margin-left: 0px;
    max-width: 250px;
}

.myPodcast .table-striped,
.myRaceCards .table-striped {
    font-weight: 600;
    cursor: pointer;
}

    .myPodcast .table-striped > tbody > tr > td,
    .myRaceCards .table-striped > tbody > tr > td {
        padding: 5px 0px;
    }

        .myPodcast .table-striped > tbody > tr > td > a,
        .myRaceCards .table-striped > tbody > tr > td > a {
            color: #2f2e2e;
            font-size: 110%;
        }

    .myPodcast .table-striped > tbody > tr:nth-of-type(even),
    .myRaceCards .table-striped > tbody > tr:nth-of-type(even) {
        background: #ffffff;
    }

    .myRaceCards .table-striped > tbody > tr > td > a > i,
    .myPodcast .table-striped > tbody > tr > td > a > i {
        color: rgb(250, 166, 31);
    }

.DisplayPodcast {
    display: none;
}

.betSlipHorseName {
    max-width: 250px;
    padding-left: 3px;
}

#txtMatchTitle {
    float: left;
    max-width: 250px;
    display: inline-block;
}

.CalculatorWrapper {
    padding-bottom: 20px;
}

.BettingSlipEntry {
    width: 100%;
    border: #E7E7E7 1px solid;
}

.ParticipantNameClassHeader {
    margin: 5px 0px;
    display: inline;
    float: left;
}

.UnderParticipantNameClass {
    text-align: right;
    margin: -27px 10px 0 0;
    float: right;
}

.greenBetSlipAmount {
    clear: both;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    font-size: 90%;
    font-weight: 600;
    background: #222222;
    padding: 2px 0;
}

.ParticipantNameClass {
    margin-left: 5px;
}

.betStakeLine input[type="text"],
.betStakeLine input {
    padding: 5px;
    font-weight: 600;
    width: 60px;
    float: right;
    text-align: center;
}

.betslipText {
    color: #111111;
    margin-top: 5px;
    margin-left: 10px;
    display: inline-block;
    width: 100%;
}


.betslipTextKey img {
    float: left;
    display: inline-block;
    margin-right: 5px;
}

.betslipTextKey p {
    text-align: left;
    font-size: 90%;
    display: inline-block;
    margin: 0 0 3px 0;
}

/*BUTTONS*/
#RaceHeading .divRemoveBet {
    display: inline;
    float: right;
    padding: 6px 10px;
    font-size: 100%;
    margin: 0;
}

    #RaceHeading .divRemoveBet:hover {
        cursor: pointer;
        color: #ffffff;
        background: #000;
    }

#RaceHeading i {
    margin-right: 0;
}

.DrawHeading .divRemoveBet {
    margin: 0 5px 0 2px;
    cursor: pointer;
}

#divSingles .divRemoveBet {
    padding: 0px 5px 0px 5px;
    display: inline;
    margin: 0 5px 0 2px;
    float: right;
    cursor: pointer;
}

#divSingles > .ClearSlipID:hover {
    background: #4C4C4C;
    background: -moz-linear-gradient(top, #4C4C4C 0%, #595959 12%, #666 25%, #474747 39%, #2C2C2C 50%, black 51%, #111 60%, #2B2B2B 76%, #1C1C1C 91%, #838383 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #4C4C4C), color-stop(12%, #595959), color-stop(25%, #666), color-stop(39%, #474747), color-stop(50%, #2C2C2C), color-stop(51%, black), color-stop(60%, #111), color-stop(76%, #2B2B2B), color-stop(91%, #1C1C1C), color-stop(100%, #838383));
    background: -webkit-linear-gradient(top, #4C4C4C 0%, #595959 12%, #666 25%, #474747 39%, #2C2C2C 50%, black 51%, #111 60%, #2B2B2B 76%, #1C1C1C 91%, #838383 100%);
    background: -o-linear-gradient(top, #4C4C4C 0%, #595959 12%, #666 25%, #474747 39%, #2C2C2C 50%, black 51%, #111 60%, #2B2B2B 76%, #1C1C1C 91%, #838383 100%);
    background: -ms-linear-gradient(top, #4C4C4C 0%, #595959 12%, #666 25%, #474747 39%, #2C2C2C 50%, black 51%, #111 60%, #2B2B2B 76%, #1C1C1C 91%, #838383 100%);
    background: linear-gradient(to bottom, #4C4C4C 0%, #595959 12%, #666 25%, #474747 39%, #2C2C2C 50%, black 51%, #111 60%, #2B2B2B 76%, #1C1C1C 91%, #838383 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4C4C4C', endColorstr='#838383', GradientType=0 );
}

.SubmitMultiplesbtn,
.Submitbtn {
    float: right;
    margin: 5px 1px;
    font-size: 100%;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px 8px;
    color: #0c0c0c;
    background: rgb(250, 166, 31); /* Old browsers */
}

    .SubmitMultiplesbtn:hover,
    .Submitbtn:hover {
        cursor: pointer;
        color: #0c0c0c;
        background: rgb(250, 166, 31); /* Old browsers */
    }

.divPrintBet {
    float: right;
    margin: 0 5px 5px 0;
    border: 1px solid #58ad12;
    font-size: 90%;
    font-weight: 600;
    text-transform: uppercase;
    padding: 1px 3px;
    color: #000000;
    background: #b0e47f; /* Old browsers */
    background: -moz-linear-gradient(top, #b0e47f 1%, #83d144 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#b0e47f), color-stop(100%,#83d144)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #b0e47f 1%,#83d144 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #b0e47f 1%,#83d144 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #b0e47f 1%,#83d144 100%); /* IE10+ */
    background: linear-gradient(to bottom, #b0e47f 1%,#83d144 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b0e47f', endColorstr='#83d144',GradientType=0 ); /* IE6-9 */
}

    .divPrintBet:hover {
        cursor: pointer;
        border: 1px solid #58ad12;
        color: #000;
        background: #84d245; /* Old browsers */
        background: -moz-linear-gradient(top, #84d245 0%, #a6df72 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#84d245), color-stop(100%,#a6df72)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #84d245 0%,#a6df72 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #84d245 0%,#a6df72 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #84d245 0%,#a6df72 100%); /* IE10+ */
        background: linear-gradient(to bottom, #84d245 0%,#a6df72 100%); /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#84d245', endColorstr='#a6df72',GradientType=0 ); /* IE6-9 */
    }

.BettingslipFooter {
    background: #efefef;
    width: 100%;
}

/*VERFIY BET*/
#VerifyBettingslipFooter {
    width: 100%;
    padding-bottom: 5px;
    color: #000;
    font-size: 80%;
    border-bottom: solid 1px rgb(250, 166, 31);
}

    #VerifyBettingslipFooter .betslipText {
        color: #000000;
        margin-top: 0px;
    }

        #VerifyBettingslipFooter .betslipText .lblConfirmation p {
            margin: 0;
        }

        #VerifyBettingslipFooter .betslipText .lblConfirmationResult {
            font-weight: 600;
            margin-top: 5px;
        }
/*MULTIPLES*/
.ExcludedInMultiple {
    color: red;
}

.BettingSlipMultiplesClass {
    border-bottom: 1px solid #e7e7e7;
    color: #000;
    font-weight: 600;
    text-align: center;
    padding: 5px 0 0 0;
}

.lblMultiples {
    float: left;
    margin-left: 3px;
}

#lblStakeLabel {
    margin: 10px;
}

.lblMultiplesLabel {
    float: left;
    display: inline-block;
    margin: 2px 5px 0 5px;
}

.BettingSlipBetsMultiple {
    border-bottom: solid #ffffff 1px;
}

#lblOddsLabel {
    float: left;
    margin: 10px 5px 0 5px;
}

.lblOddsClass {
    float: left;
    margin-left: 3px;
}

.hrProfit {
    float: left;
}

.multiple_line1 {
    float: left;
}

.multiple_line2 {
    float: right;
}

.multiple_line3 {
    width: 100%;
    float: right;
    margin-right: 5px;
    margin-top: 5px;
}

.multiple_line4 {
    width: 100%;
    float: right;
    padding: 0px;
}

.lblStakeMultiplesLabel {
    margin-left: 3px;
    display: inline-block;
    float: right;
}

.lblStakeMultiples {
    float: right;
    display: inline-block;
}

.txtBetMultipleAmount {
    width: 70px;
    margin-right: 0px;
    margin-left: 5px;
    float: right;
}

.lblProfitMultiplesLabel {
    margin-right: 3px;
    float: right;
}

.lblProfitMultiples {
    margin-right: 3px;
    float: right;
}

.lblBonusLabel {
    float: right;
    margin-right: 6px;
}

.lblBonus {
    float: right;
    margin-right: 3px;
}

    .lblProfitMultiples:before,
    .lblBonus:before,
    .lblProfit:before,
    .lblTotalProfit:before {
        content: "R";
        font-weight: 600;
    }

.lblTotalProfit,
.lblTotalProfitLabel,
.profit {
    margin-top: 12px;
    padding-right: 5px;
    color: #20a9e1;
    float: left;
    font-size: 100%;
}

.isMultiple {
    background: url(../Images/m-icon20.png) no-repeat;
    padding: 2px 0px 5px 18px;
    background-position: 0 1px;
    font-size: 90%;
    margin-top: 5px;
    margin-left: 6px;
}

.notMultiple {
    background: url(../Images/noMultiples.png) no-repeat;
    padding: 2px 0px 5px 18px;
    background-position: 0 1px;
    font-size: 100%;
    margin-top: 5px;
    margin-left: 6px;
}


.Rotateing-Banners .highlights {
    margin: 0;
    padding: 0;
    border: 4px double #E7E7E7;
    height: 210px;
    position: relative;
    min-width: 200px;
    display: inline-block;
    float: left;
}

.carryoverBg,
.payoutsBg,
.inplayBg,
.lottoBg,
.oddsBg,
.loyaltyBg,
.sportsBg,
.inplayBg {
    height: 100%;
}

@media (max-device-width:599px) {
    .Rotateing-Banners .highlights {
        width: 100%;
    }
}

@media (min-device-width: 600px) and (max-device-width: 799px) {
    .Rotateing-Banners .highlights {
        /* Firefox */
        width: -moz-calc(100% / 2);
        /* WebKit */
        width: -webkit-calc(100% / 2);
        /* Opera */
        width: -o-calc(100% / 2);
        /* Standard */
        width: calc(100% / 2);
        /* Firefox */
        min-width: -moz-calc(100% / 2);
        /* WebKit */
        min-width: -webkit-calc(100% / 2);
        /* Opera */
        min-width: -o-calc(100% / 2);
        /* Standard */
        min-width: calc(100% / 2);
    }
}

@media (min-device-width: 800px) {
    .Rotateing-Banners .highlights {
        /* Firefox */
        width: -moz-calc(100% / 3);
        /* WebKit */
        width: -webkit-calc(100% / 3);
        /* Opera */
        width: -o-calc(100% / 3);
        /* Standard */
        width: calc(100% / 3);
        /* Firefox */
        min-width: -moz-calc(100% / 3);
        /* WebKit */
        min-width: -webkit-calc(100% / 3);
        /* Opera */
        min-width: -o-calc(100% / 3);
        /* Standard */
        min-width: calc(100% / 3);
    }
}

.Rotateing-Banners .carousel-content {
    color: grey;
    padding: 0;
    margin: 0;
}

.Rotateing-Banners h1 {
    font-weight: 600;
    text-transform: uppercase;
    float: left;
    display: inline-block;
    margin: 5px 10px 0 10px;
    text-align: center;
    padding: 0 10px 0 10px;
}


.Rotateing-Banners h2 {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 130%;
    line-height: 1.5;
    display: inline-block;
    margin: 10px 0px 0 10px;
    text-align: center;
    padding: 0;
}

.Rotateing-Banners h3 {
    color: #008dc7;
    font-weight: 600;
    font-size: 130%;
    text-wrap: normal;
    text-transform: uppercase;
    line-height: 1.5;
    display: inline-block;
    margin: 5px 0px 0px 10px;
    text-align: center;
    padding: 0;
}

.Rotateing-Banners h4 {
    color: #59af00;
    line-height: 1.5;
    font-size: 100%;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-left: 10px;
    margin-top: 0;
    font-weight: 600;
    display: inline-block;
    text-align: center;
}

.Rotateing-Banners h5 {
    color: #59af00;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0;
    text-align: left;
    margin: 10px 0;
}

.betnow {
    background: #8dc641;
    color: #fff;
    font-size: 250%;
    padding: 12px;
    margin: 10px;
    width: 200px;
    text-align: center;
    border: 0;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    float: left;
    transition: all 0.3s ease 0s;
}

.betnow2 {
    background: #8dc641;
    color: #fff;
    font-size: 250%;
    padding: 12px;
    margin: 10px 10px 13px 70px;
    width: 200px;
    text-align: center;
    border: 0;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    float: left;
    transition: all 0.3s ease 0s;
}

.betnow3 {
    background: #83d144;
    color: #fff;
    font-size: 250%;
    padding: 12px;
    margin: 0px;
    width: 200px;
    text-align: center;
    border: 0;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    float: left;
    transition: all 0.3s ease 0s;
}

.betnow a {
    text-decoration: none;
    color: #fff;
}

div.betnow2 a {
    text-decoration: none;
    color: #fff;
}

.betnow3 a {
    text-decoration: none;
    color: #fff;
}

.sz-copy {
    width: 98%;
    margin-top: 0;
    display: inline-block;
}

.lotto-copy {
    width: 100%;
    display: inline-block;
}

.carousel,
.carousel-inner {
    height: 100%;
}

.highlightContent {
    height: 100%;
}

.Rotateing-Banners .carousel-content {
    width: 100%;
    height: 100%;
}

    .Rotateing-Banners .carousel-content .header .sz-copy h1 {
        color: #21a9e1;
        font-size: 100%;
    }

    .carousel-inPlay h2,
    .Rotateing-Banners .carousel-content .header .sz-copy h2 {
        color: rgb(250, 166, 31);
        text-align: left;
        font-size: 80%;
        padding: 0;
        margin: 5px 0 0 10px;
    }


    .carousel-inPlay h3,
    .Rotateing-Banners .carousel-content .sz-copy h3 {
        color: #757575;
        text-align: left;
        font-size: 90%;
        text-wrap: normal;
        padding: 0;
        padding: 0 0 0 0;
    }

    .Rotateing-Banners .carousel-content .sz-copy .lotto-copy h3 {
        text-align: center;
        color: #000;
        width: 90%;
    }

        .Rotateing-Banners .carousel-content .sz-copy .lotto-copy h3:nth-child(odd) {
            color: rgb(250, 166, 31);
        }

.Rotateing-Banners .carousel-currentsports .header .sz-copy h3 {
    font-size: 90%;
    margin: 5px 0 0 10px;
    color: #757575;
    line-height: 1.7;
    padding: 0;
    display: inline-block;
    text-align: left;
}

    .Rotateing-Banners .carousel-currentsports .header .sz-copy h3:nth-child(2n+1) {
        color: #83d144;
    }


.Rotateing-Banners .carousel-inPlay .item {
    width: 100%;
    margin-top: 11px;
}

    .Rotateing-Banners .carousel-inPlay .item h1,
    .Rotateing-Banners .carousel-inPlay .item h3,
    .Rotateing-Banners .carousel-inPlay .item h4 {
        font-size: 9px;
        float: left;
        letter-spacing: 0;
        line-height: 2;
        font-weight: 500;
        text-align: left;
        display: inline-block;
        padding: 0 3px 0 0;
        margin: 0;
    }

    .Rotateing-Banners .carousel-inPlay .item h3 {
        letter-spacing: 0;
        overflow: hidden;
    }

.Rotateing-Banners .carousel-Payouts .item {
    width: 100%;
}

    .Rotateing-Banners .carousel-Payouts .item h1,
    .Rotateing-Banners .carousel-Payouts .item h4 {
        font-size: 9.4px;
        font-weight: 500;
        line-height: 1.5;
        letter-spacing: 0;
        float: left;
        text-align: left;
        display: inline-block;
        padding: 0 0 0 3px;
        margin: 0;
    }

    .Rotateing-Banners .carousel-Payouts .item h1 {
        min-width: 116px;
        padding: 0 0 0 3px;
    }

    .Rotateing-Banners .carousel-Payouts .item h4 {
        text-align: left;
        padding-left: 0px;
        min-width: 109px
    }

    .Rotateing-Banners .carousel-Payouts .item h3 {
        line-height: 1.5;
        letter-spacing: 0;
        margin-right: 2px;
        letter-spacing: 0;
        font-size: 9.4px;
        font-weight: 500;
        display: inline-block;
        float: left;
        text-align: right;
        margin: 0;
    }

.Rotateing-Banners .loyaltyBg .carousel-content .sz-copy h3 {
    font-size: 80%;
    width: 80%;
    margin: 0;
    padding: 5px 10px;
}

@media (min-device-width: 700px) and (max-device-width: 999px) {
    .Rotateing-Banners .carousel-inPlay .item h3,
    .Rotateing-Banners .carousel-inPlay .item h1,
    .Rotateing-Banners .carousel-inPlay .item h4 {
        font-size: 10px;
        padding: 0 0 0 10px;
    }

    .Rotateing-Banners .carousel-inPlay .item h1 {
        min-width: 45px;
    }

    .Rotateing-Banners .carousel-Payouts .item h1 {
        min-width: 150px;
        font-size: 11px;
        padding: 0 0 0 10px;
    }

    .Rotateing-Banners .carousel-Payouts .item h3,
    .Rotateing-Banners .carousel-Payouts .item h4 {
        font-size: 11px;
        padding: 0 0 0 10px;
    }

    .Rotateing-Banners .loyaltyBg .carousel-content .sz-copy h3 {
        font-size: 90%;
        width: 80%;
        margin: 0;
        padding: 10px 10px;
    }
}

@media (min-device-width: 1000px) {
    .Rotateing-Banners .carousel-inPlay .item h3,
    .Rotateing-Banners .carousel-inPlay .item h1,
    .Rotateing-Banners .carousel-inPlay .item h4 {
        font-size: 10px;
        padding: 0 0 0 10px;
    }

    .Rotateing-Banners .carousel-inPlay .item h1 {
        min-width: 45px;
    }


    .Rotateing-Banners .carousel-Payouts .item h1,
    .Rotateing-Banners .carousel-Payouts .item h3,
    .Rotateing-Banners .carousel-Payouts .item h4 {
        font-size: 10px;
        padding: 0 0 0 0;
    }

    .Rotateing-Banners .carousel-Payouts .item h1 {
        min-width: 140px;
        padding: 0 0 0 10px;
    }

    .Rotateing-Banners .loyaltyBg .carousel-content .sz-copy h3 {
        font-size: 90%;
        width: 80%;
        margin: 0;
        padding: 5px 10px;
    }
}

.Rotateing-Banners .carousel-Carryovers {
    height: 100px;
}

    .Rotateing-Banners .carousel-Carryovers h1,
    .Rotateing-Banners .carousel-Carryovers h3,
    .Rotateing-Banners .carousel-Carryovers h4 {
        font-size: 90%;
        float: none;
        font-weight: 500;
        line-height: 1;
        text-align: left;
        display: inline-block;
        padding: 0;
        margin: 0;
    }

    .Rotateing-Banners .carousel-Carryovers h4 {
        width: 100px;
        width: -webkit-calc(100% - 150px);
        width: -moz-calc(100% - 150px);
        width: -o-calc(100% - 150px);
        width: calc(100% - 150px);
    }

    .Rotateing-Banners .carousel-Carryovers h3 {
        text-align: right;
        font-size: 80%;
        padding-right: 10px;
        width: 70px;
    }


    .Rotateing-Banners .carousel-Carryovers h1 {
        margin-left: 10px;
        width: 70px;
    }


.Rotateing-Banners .highlightContent .carousel-currentsports img {
    height: 40px;
    margin: 10px;
    width: auto;
}

.Rotateing-Banners .highlightContent .carousel-currentlotto img {
    width: auto;
    margin: 5px 7px 0 7px;
    height: 40px;
}

.Rotateing-Banners .highlightContent .carousel-currentlotto .sz-copy img {
    padding: 0;
    opacity: 0.2;
    display: block;
    max-height: 100px;
    max-width: 200px;
    position: absolute;
    margin: 25px 50px 0 0;
}

.Rotateing-Banners .carousel-currentsports .sz-copy {
    color: #000;
    height: 65px;
    top: 10px;
}

.Rotateing-Banners .highlightContent img {
    float: left;
    max-height: 60px;
    max-width: 60px;
    margin: 0;
    opacity: 1;
    display: inline-block;
}

.Rotateing-Banners .highlightContent .payoutsBg img {
    height: 40px;
    margin: -5px 0 0 5px;
    width: auto;
}

.Rotateing-Banners .highlightContent .loyaltyBg img,
.Rotateing-Banners .highlightContent .inplayBg img {
    height: 40px;
    margin: 0px 0 0 5px;
    width: auto;
}

.Rotateing-Banners .highlightContent #carousel-jackpots .sz-copy h3:nth-child(2n+1) {
    color: #83d144;
}

.Rotateing-Banners .highlightContent #carousel-jackpots img {
    display: inline-block;
    float: left;
    height: 36px;
    width: auto;
    min-width: 10px;
    height: 36px;
    max-width: 140px;
    margin: 0;
}

.Rotateing-Banners #currentJackpots h1 {
    padding: 0;
    display: block;
    /* Firefox */
    width: -moz-calc(100% - 110px);
    /* WebKit */
    width: -webkit-calc(100% - 110px);
    /* Opera */
    width: -o-calc(100% - 110px);
    /* Standard */
    width: calc(100% - 110px);
    margin: 0 0 0 10px;
    font-size: 100%;
    text-align: left;
    color: #000000;
}


.Rotateing-Banners .betnow3 {
    padding: 5px;
    width: 90px;
    position: absolute;
    top: 165px;
    z-index: 100;
    right: 40px;
    float: right;
    margin: 0;
    font-size: 100%;
}

.Rotateing-Banners .carousel-currentsports {
    position: absolute;
}

    .Rotateing-Banners .carousel-currentsports .betnow3 {
        position: absolute;
        top: 165px;
    }

.Rotateing-Banners .carousel-content {
    height: 100%;
}

.Rotateing-Banners .otherLotto {
    margin: 15px 0 0 20px;
}

    .Rotateing-Banners .otherLotto h2,
    .Rotateing-Banners .otherLotto h3 {
        font-size: 100%;
    }

.Rotateing-Banners .carousel-tabSport {
    margin: 10px 0 10px 45px;
    height: 100%;
}

    .Rotateing-Banners .carousel-tabSport img {
        height: 50px;
        max-height: 50px;
        width: auto;
    }

.Rotateing-Banners .highlightContent .sz-copy img {
    opacity: 1;
    position: absolute;
    top: 50px;
    height: 100px;
    right: 5px;
}

.Rotateing-Banners .livelottoImg img {
    width: 100px;
    height: auto;
}



#divBetLimits,
#divTwitter,
#BettingSlipResults,
#divMyBets,
#divPayouts {
    background-color: #ffffff;
    padding: 0;
    width: 100%;
    margin: 0;
    color: #000000;
}


#divWinLimits,
#divMyBetsList {
    background-color: #ffffff none repeat scroll 0 0;
}

    #divWinLimits td,
    #divMyBetsList td {
        text-align: center;
    }



.MyBets table tbody tr td,
.MyBets table thead tr th {
    text-align: left;
}

    .MyBets table tbody tr td:nth-child(2) div,
    .MyBets table thead tr th:nth-child(2) {
        text-align: center;
    }

    .MyBets table tbody tr td:nth-child(3) div {
        text-overflow: ellipsis;
    }

.ViewBetsbtn {
    color: #4ec5f8;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
    margin-left: 10px;
}

    .ViewBetsbtn:hover {
        color: #8dc641;
    }

#BettingDetails .collapse {
    background: #21a9e1;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    font-size: 90%;
    padding: 8px 0;
    border: 0;
    width: 100%;
    display: block;
    margin-bottom: 0px;
    color: #ffffff;
    border-top: solid 0.5px #4ec5f8;
    transition: all 0.3s ease 0s;
    text-transform: uppercase;
}

    #BettingDetails .collapse:before {
        content: "\f078 ";
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
        text-transform: none !important;
        float: left;
        margin-left: 5px;
        vertical-align: middle;
    }

    #BettingDetails .collapse:hover {
        background: rgb(250, 166, 31); /* Old browsers */
        cursor: pointer;
        border-top: solid 0.5px rgb(250, 166, 31);
    }


    #BettingDetails .collapse + input {
        display: none; /* hide the checkboxes */
    }

        #BettingDetails .collapse + input + div {
            display: none;
        }

        #BettingDetails .collapse + input:checked + div {
            display: block;
        }


.btnPodcast .fa-podcast {
    color: #ffffff;
    font-size: 120%;
}

.cont {
    height: 100%;
    padding: 0;
    background: #fff;
    width: 100%;
    margin: 0;
    font-size: 90%;
    max-height: 485px;
    overflow-y: auto;
    letter-spacing: 0.05em;
    -webkit-transition: .5s all cubic-bezier(0.730, -0.485, 0.145, 1.620);
    transition: .5s all cubic-bezier(0.730, -0.485, 0.145, 1.620);
}

    .cont table a {
        text-decoration: none;
        color: #000;
        text-transform: uppercase;
        font-size: 110%;
    }

        .cont table a:hover {
            color: rgb(250, 166, 31);
            font-weight: 600;
        }


    .cont table tr {
        width: 100%;
        padding: 0;
        background: #ffffff;
        letter-spacing: 0.05em;
        border: 1px;
        color: black;
        font-size: 80%;
    }

        .cont table tr td:nth-child(1) {
            min-width: 43px;
        }

        .cont table tr td:nth-child(2) {
            min-width: 40px;
        }

        .cont table tr td #EventID {
            width: 0px;
        }

#btnLimits table tr td {
    text-align: center;
}

.BT-Results {
    width: 100%;
    font-size: 100%;
    line-height: 2;
    display: inline-block;
}

    .BT-Results:nth-child(odd) {
        background-color: #eee;
    }

    .BT-Results:nth-child(even) {
        background-color: #fff;
    }

.BT-Results-Venue {
    text-align: center;
}

.BT-Results-Event {
    text-align: left;
    display: inline-block;
    min-width: 60px;
    padding-right: 10px;
    float: left;
}

.BT-Results-Result {
    text-align: left;
    float: left;
    font-size: 90%;
    font-weight: 300;
    display: inline-block;
    padding-right: 10px;
}

.SportsPage #BettingSlipResults {
    visibility: hidden;
    height: 0;
}

.SoccerPage #BettingSlipResults {
    visibility: hidden;
    height: 0;
}

.timeDisplayBettingSlip {
    font-size: 90%;
    margin: 5px;
    float: right;
    color: #000000;
    font-weight: 600;
}

#divAds {
    width: 100%;
    margin: 0;
    padding: 0;
}

    #divAds img {
        margin: 0;
        width: 49%;
        padding: 0;
        display: inline-block;
        height: auto;
        margin-bottom: 3px;
    }

@media (max-width : 991px) {
    #divAds img {
        margin: 0;
        width: 24%;
        display: inline-block;
        /*border-bottom: 15px solid #4C4C4C;*/
        height: auto;
    }
}
/*======================================================
	END OF BETSLIP
======================================================*/
/*FOOTER STYLES*/
/*=====================================================*/
.FooterdDiv {
    position: relative;
    padding: 10px;
    width: 100%;
    text-align: center;
    background: #e3e3e3; /* Old browsers */
    background: -moz-linear-gradient(top, #e3e3e3 0%, #9e9e9e 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e3e3e3), color-stop(100%,#9e9e9e)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #e3e3e3 0%,#9e9e9e 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #e3e3e3 0%,#9e9e9e 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #e3e3e3 0%,#9e9e9e 100%); /* IE10+ */
    background: linear-gradient(to bottom, #e3e3e3 0%,#9e9e9e 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e3e3e3', endColorstr='#9e9e9e',GradientType=0 ); /* IE6-9 */
}

    .FooterdDiv .hrGreenStrip {
        height: 1px;
        width: 80%;
        margin: 0 auto;
    }

    .FooterdDiv p {
        font-size: 90%;
        color: #000000;
        text-align: center;
        line-height: 1.1;
        padding: 0;
    }

        .FooterdDiv p a {
            color: #000;
            text-decoration: none;
        }

            .FooterdDiv p a:hover {
                color: #0099CC;
            }

    .FooterdDiv .DepositImages {
        text-align: center;
    }

        .FooterdDiv .DepositImages img {
            padding: 5px 3px;
            vertical-align: middle;
        }

    .FooterdDiv .SocialImages {
        text-align: center;
        display: block;
        margin: 5px 0 10px 0;
    }

        .FooterdDiv .SocialImages ul {
            text-align: center;
        }

            .FooterdDiv .SocialImages ul li {
                list-style-type: none;
                display: inline-block;
            }

                .FooterdDiv .SocialImages ul li a i {
                    color: #fff;
                    width: 40px;
                    height: 40px;
                    border-radius: 20px;
                    font-size: 25px;
                    text-align: center;
                    margin-right: 10px;
                    padding-top: 15%;
                    -ms-touch-action: manipulation;
                    touch-action: manipulation;
                    cursor: pointer;
                    -webkit-user-select: none;
                    -moz-user-select: none;
                    -ms-user-select: none;
                    user-select: none;
                    -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .3);
                    box-shadow: 0 3px 8px rgba(0, 0, 0, .3);
                }

                    .FooterdDiv .SocialImages ul li a i:hover {
                        opacity: .7;
                    }

                    .FooterdDiv .SocialImages ul li a i.fa-facebook {
                        background: #3b5998;
                    }

                    .FooterdDiv .SocialImages ul li a i.fa-envelope-o {
                        background: #83d144;
                    }

                    .FooterdDiv .SocialImages ul li a i.fa-twitter {
                        background: #00aced
                    }

                    .FooterdDiv .SocialImages ul li a i.fa-google-plus {
                        background: #dd4b39
                    }
/*=====================================*/
/*seo STYLES*/
/*=====================================*/
.Seo_Content {
    bottom: 0;
    position: relative;
    padding: 10px;
}

    .Seo_Content h1 {
        font-size: 100%;
        color: #222222;
        margin: 5px 0;
        padding: 0;
    }

    .Seo_Content p {
        font-size: 90%;
        text-align: left;
        color: #757575;
        margin: 5px 0;
        padding: 0;
        width: 90%;
    }

        .Seo_Content p a {
            color: #0099CC;
            font-weight: 600;
        }

            .Seo_Content p a:hover {
                color: #4ec5f8;
                font-weight: 600;
            }

.page-content {
    float: left;
    background: #fff;
    max-width: 1000px;
    min-width: 800px;
    padding: 30px;
    margin: 0 auto;
}

    .page-content h1 {
        font-size: 200%;
        color: #222222;
        margin: 5px 0;
        padding: 0;
        border: none;
        background: none;
        float: none;
    }

    .page-content p {
        font-size: 100%;
        color: #757575;
        margin: 5px 0;
        padding: 0;
        width: 85%;
    }

        .page-content p a {
            color: #0099CC;
            font-weight: 600;
        }

            .page-content p a:hover {
                color: #4ec5f8;
                font-weight: 600;
            }

    .page-content img {
        padding: 10px;
    }

.modalDialog {
    position: absolute;
    opacity: 0;
    max-width: 250px;
    width: 250px;
    min-height: 240px;
    pointer-events: none;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    z-index: 999;
    border-radius: 10px;
}

    .modalDialog > div {
        width: 250px;
        font-size: 80%;
        vertical-align: top;
        position: relative;
        margin: -50% 0 0 0;
        padding: 40px 20px 13px 20px;
        border-radius: 10px;
        z-index: 999;
        background: #fff;
        background: -moz-linear-gradient(#fff, #d1d1d1);
        background: -webkit-linear-gradient(#fff, #d1d1d1);
        background: -o-linear-gradient(#fff, #d1d1d1);
        -webkit-box-shadow: 0 40px 40px 0 rgba(0, 0, 0, .3);
        box-shadow: 0 40px 40px 0 rgba(0, 0, 0, .3);
    }

        .modalDialog > div strong {
            color: #8dc641;
            font-size: 140%;
        }

    .modalDialog .close {
        background: #83d144;
        color: #FFFFFF;
        z-index: 999;
        line-height: 24px;
        position: absolute;
        opacity: 1;
        cursor: pointer;
        right: 12px;
        text-align: center;
        top: 5px;
        width: 24px;
        text-decoration: none;
        font-weight: 600;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        border-radius: 12px;
        -moz-box-shadow: 1px 1px 3px #83d144;
        -webkit-box-shadow: 1px 1px 3px #83d144;
        box-shadow: 1px 1px 3px #83d144;
    }
/*=================================*/
/*bet like a legend*/
/*=================================*/
.betlegend {
    margin: 0 auto;
    max-width: 300px;
}

.betlegendScroller {
    margin: 0 auto;
}
/* cookie
---------------------------------*/
#cookie-bar {
    background: #111111;
    height: auto;
    line-height: 16px;
    color: #ffffff;
    text-align: center;
    padding: 5px;
}

    #cookie-bar.fixed {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }

        #cookie-bar.fixed.bottom {
            bottom: 0;
            top: auto;
        }

    #cookie-bar p {
        margin: 0;
        padding: 0;
        font-weight: 500;
        color: #ffffff;
        font-size: 75%;
    }

    #cookie-bar a {
        color: #ffffff;
        display: inline-block;
        text-decoration: none;
        padding: 3px 5px;
        margin: 0 5px;
    }

    #cookie-bar .cb-enable {
        background: #8dc641;
    }

        #cookie-bar .cb-enable:hover {
            background: #9fca67;
        }

    #cookie-bar .cb-disable {
        background: #8dc641;
    }

        #cookie-bar .cb-disable:hover {
            background: #8dc641;
        }

    #cookie-bar .cb-policy {
        background: #faa61f;
    }

        #cookie-bar .cb-policy:hover {
            background: #f9b951;
        }

.alert-box {
    color: #555;
    font-size: 160%;
    padding: 5px 15px 5px 20px;
    margin: 10px;
    width: 100%;
    display: none;
}

    .alert-box span {
        font-weight: 600;
        text-transform: uppercase;
    }

.error:before {
    content: "\f06a ";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-transform: none !important;
    margin-right: 5px;
    font-size: 200%;
    color: red;
    vertical-align: middle;
}

.error {
    background: #ffecec no-repeat 10px 50%;
    border: 1px solid #f5aca6;
    font-size: 100%;
    vertical-align: middle;
}

.success:before {
    content: "\f00c  ";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-transform: none !important;
    margin-right: 5px;
    font-size: 200%;
    vertical-align: middle;
    color: green;
}

.success {
    background: #e9ffd9 no-repeat 10px 50%;
    border: 1px solid #a6ca8a;
}

.warning {
    background: #fff8c4 no-repeat 10px 50%;
    border: 1px solid #f2c779;
}

.notice:before {
    content: "\f129";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-transform: none !important;
    color: blue;
}

.notice {
    background: #e3f7fc no-repeat 10px 50%;
    border: 1px solid #8ed9f6;
}


.StreamImgZA img,
.StreamImgUK img {
    -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .3);
    box-shadow: 0 3px 8px rgba(0, 0, 0, .3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.audioBut,
.StreamTV {
    margin: 5px 0 0 5px;
}

.JockeyInfoIcon,
.resultsInfoIcon,
.HelpInfoIcon,
.tote-button,
.BackInfoIcon {
    width: 40px;
    height: 40px;
    margin: 0;
    text-decoration: none;
    display: inline-block;
    background: #4ec5f8;
    font-weight: 300;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .3);
    box-shadow: 0 3px 8px rgba(0, 0, 0, .3);
    border-radius: 50%;
}

    .StreamTV:before,
    .audioBut:before,
    .HelpInfoIcon:before,
    .BackInfoIcon:before,
    .resultsInfoIcon:before {
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
        text-transform: none !important;
        font-size: 25px;
        color: #fff;
        vertical-align: middle;
    }

.JockeyInfoIcon {
    width: 30px;
    height: 30px;
}

    .JockeyInfoIcon:before {
        content: "\f129";
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
        text-transform: none !important;
        margin: 5px 5px 0 5px;
        font-size: 20px;
        color: #fff;
        vertical-align: middle;
    }

.StreamTV:before {
    content: "\f26c";
}

.audioBut:before {
    content: "\f028";
}

.HelpInfoIcon {
    background: #83d144;
}

    .HelpInfoIcon:before {
        content: "\f128";
    }

.BackInfoIcon:before {
    content: "\f060";
}

.resultsInfoIcon:before {
    content: "\f0cb";
}


/*
=====================================================================
MENU
=====================================================================
*/
#MenuDiv {
    z-index: 999;
}

    #MenuDiv:before,
    #MenuDiv:after {
        clear: both;
    }

.MenuLevel1, .MenuLevel2, .MenuLevel3 {
    width: 100% !important;
    cursor: pointer;
    float: left;
    z-index: 999;
}

    .MenuLevel1 ul {
        width: 100% !important;
        margin-top: 0;
        margin-bottom: 0;
    }

        .MenuLevel1 ul li {
            border-right: 1px solid #70b835;
            display: inline-block;
            float: left;
            background: #b0e47f; /* Old browsers */
            background: -moz-linear-gradient(top, #b0e47f 1%, #83d144 100%); /* FF3.6+ */
            background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#b0e47f), color-stop(100%,#83d144)); /* Chrome,Safari4+ */
            background: -webkit-linear-gradient(top, #b0e47f 1%,#83d144 100%); /* Chrome10+,Safari5.1+ */
            background: -o-linear-gradient(top, #b0e47f 1%,#83d144 100%); /* Opera 11.10+ */
            background: -ms-linear-gradient(top, #b0e47f 1%,#83d144 100%); /* IE10+ */
            background: linear-gradient(to bottom, #b0e47f 1%,#83d144 100%); /* W3C */
        }

            .MenuLevel1 ul li:last-child {
                border-right: none;
            }

            .MenuLevel1 ul li:first-child {
                border-left: none;
            }

            .MenuLevel1 ul li a {
                padding: 5px 3px;
                text-decoration: none;
                color: #000;
                text-transform: uppercase;
                white-space: nowrap;
                overflow: hidden;
                position: relative;
                display: block;
                text-align: center;
                font-weight: 700;
            }

            .MenuLevel1 ul li.activeMenu a,
            .MenuLevel1 ul li:hover a {
                width: 100%;
                background: rgb(250, 166, 31);
            }

            .MenuLevel1 ul li#Soccer6 a img {
                margin: -5px 0 0 0;
            }

            .MenuLevel1 ul li a img {
                max-height: 15px;
                overflow: hidden;
                width: auto;
                margin-right: 3px;
            }

    .MenuLevel1 #Tote {
        width: 9%;
    }

    .MenuLevel1 #Soccer6 {
        width: 16%;
    }

    .MenuLevel1 #Lotto {
        width: 7%;
    }

    .MenuLevel1 #HorseRacing {
        width: 11%;
    }

    .MenuLevel1 #SoccerZone {
        width: 12%;
    }

    .MenuLevel1 #Sports {
        width: 6%;
    }

    .MenuLevel1 #Exchange {
        width: 7%;
    }

    .MenuLevel1 #BetInPlay {
        width: 10%;
    }

    .MenuLevel1 #Loyalty {
        width: 6%;
    }

    .MenuLevel1 #ContactUS {
        width: 6%;
    }

    .MenuLevel1 #BuddyBonus a:before {
        content: "\f06b";
        font-family: FontAwesome;
        padding: 0 6px 0 0;
        font-size: 99%;
    }

    .MenuLevel1 #BuddyBonus {
        width: 10%;
    }

.MenuLevel2 {
    background: rgb(250, 166, 31);
    display: none;
}

    .MenuLevel2 ul {
        margin: 0;
    }

        .MenuLevel2 ul li {
            display: inline-block;
            float: left;
            background: rgb(250, 166, 31);
        }

            .MenuLevel2 ul li input[type="text"]#SearchByTeam {
                font-weight: 700;
                color: #0c0c0c;
            }

            .MenuLevel2 ul li#search {
                color: #0c0c0c;
                font-weight: 700;
                padding: 5px 3px;
            }

            .MenuLevel2 ul li a {
                text-decoration: none;
                padding: 6px 8px;
                color: #000;
                display: block;
                white-space: nowrap;
                text-transform: capitalize;
                overflow: hidden;
                text-align: center;
                font-weight: 600;
            }

            .MenuLevel2 ul li.activeMenu a,
            .MenuLevel2 ul li:hover a {
                color: #ffffff;
                padding: 6px 8px;
                background: #414141; /* Old browsers */
                background: -moz-linear-gradient(top, #414141 0%, #0c0c0c 100%); /* FF3.6+ */
                background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#414141), color-stop(100%,#0c0c0c)); /* Chrome,Safari4+ */
                background: -webkit-linear-gradient(top, #414141 0%,#0c0c0c 100%); /* Chrome10+,Safari5.1+ */
                background: -o-linear-gradient(top, #414141 0%,#0c0c0c 100%); /* Opera 11.10+ */
                background: -ms-linear-gradient(top, #414141 0%,#0c0c0c 100%); /* IE10+ */
                background: linear-gradient(to bottom, #414141 0%,#0c0c0c 100%); /* W3C */
            }

.MenuLevel3:before {
    clear: both;
}

.MenuLevel3 {
    background: #efefef;
    display: none;
}

    .MenuLevel3 ul {
        width: 100% !important;
        margin: 0;
        background: #efefef;
    }

        .MenuLevel3 ul li {
            background: #efefef;
            display: inline-block;
            float: left;
        }

            .MenuLevel3 ul li a {
                padding: 3px 8px;
                text-decoration: none;
                display: block;
                color: #000;
                white-space: nowrap;
                overflow: hidden;
                text-align: center;
                font-weight: 700;
            }

            .MenuLevel3 ul li.activeMenu a,
            .MenuLevel3 ul li:hover a {
                color: #ffffff;
                background: #414141; /* Old browsers */
                background: -moz-linear-gradient(top, #414141 0%, #0c0c0c 100%); /* FF3.6+ */
                background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#414141), color-stop(100%,#0c0c0c)); /* Chrome,Safari4+ */
                background: -webkit-linear-gradient(top, #414141 0%,#0c0c0c 100%); /* Chrome10+,Safari5.1+ */
                background: -o-linear-gradient(top, #414141 0%,#0c0c0c 100%); /* Opera 11.10+ */
                background: -ms-linear-gradient(top, #414141 0%,#0c0c0c 100%); /* IE10+ */
                background: linear-gradient(to bottom, #414141 0%,#0c0c0c 100%); /* W3C */
            }
    /* 
===============================================================================
responsive menu
===============================================================================
*/
    .MenuLevel1 input[type=checkbox],
    .MenuLevel2 input[type=checkbox],
    .MenuLevel3 input[type=checkbox] {
        width: 100%;
        margin: 0;
        border: none;
        display: none;
    }

    .MenuLevel1 .fa-ellipsis-v,
    .MenuLevel2 .fa-ellipsis-v,
    .MenuLevel3 .fa-ellipsis-v {
        padding-right: 10px;
        font-size: 17px;
    }

.MenuLevel1 .show-menu {
    display: none;
    padding: 5px;
    cursor: pointer;
    border-top: solid #7ac33e 1px;
    font-size: 100%;
    font-weight: 600;
    text-align: center;
    color: #0c0c0c;
    background: #b0e47f; /* Old browsers */
    background: -moz-linear-gradient(top, #b0e47f 1%, #83d144 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#b0e47f), color-stop(100%,#83d144)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #b0e47f 1%,#83d144 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #b0e47f 1%,#83d144 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #b0e47f 1%,#83d144 100%); /* IE10+ */
    background: linear-gradient(to bottom, #b0e47f 1%,#83d144 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b0e47f', endColorstr='#83d144',GradientType=0 ); /* IE6-9 */
}

    .MenuLevel1 .show-menu img {
        max-height: 20px;
    }

.MenuLevel2 .show-menu2 {
    cursor: pointer;
    padding: 5px;
    border-top: solid rgb(250, 166, 31) 1px;
    border-bottom: solid rgb(250, 166, 31) 1px;
    color: #0c0c0c;
    background: rgb(250, 166, 31);
    display: none;
    text-align: center;
    padding: 8px 5px;
    margin-bottom: 0;
}


.MenuLevel3 .show-menu3 {
    cursor: pointer;
    padding: 5px;
    border-top: solid #efefef 1px;
    width: 100%;
    border-bottom: solid #d0d0d0 1px;
    color: #0c0c0c;
    background: #efefef;
    display: none;
    text-align: center;
    padding: 8px 5px;
    margin-bottom: 0;
}

.MenuLevel1 label,
.MenuLevel2 label,
.MenuLevel3 label {
    margin-bottom: 0;
}

    .MenuLevel1 label a,
    .MenuLevel2 label a,
    .MenuLevel3 label a {
        color: #000;
    }

.account-filter {
    width: 80%;
    margin: 5px;
}

@media (min-width : 769px) and (max-width : 1024px) {
    .account-filter {
        width: 100%;
        margin: 0;
    }

    .MenuLevel1 li a,
    .MenuLevel2 li a,
    .MenuLevel3 li a {
        font-size: 75%;
    }

    .MenuLevel2 ul li#search {
        text-align: center;
    }
}

@media (max-width : 800px) {
    .account-filter {
        width: 100%;
        margin: 0;
    }

    .MenuLevel1 #SoccerZone,
    .MenuLevel1 #Lotto,
    .MenuLevel1 #Tote,
    .MenuLevel1 #HorseRacing,
    .MenuLevel1 #Sports,
    .MenuLevel1 #Exchange,
    .MenuLevel1 #BetInPlay,
    .MenuLevel1 #Loyalty,
    .MenuLevel1 #ContactUS,
    .MenuLevel1 #BuddyBonus,
    .MenuLevel1 #Soccer6 {
        width: 100%;
    }

    .MenuLevel2 ul li#search {
        text-align: center;
    }

    .MenuLevel1 .show-menu,
    .MenuLevel2 .show-menu2,
    .MenuLevel3 .show-menu3 {
        display: block;
        cursor: pointer;
    }

    .MenuLevel1 input[type=checkbox],
    .MenuLevel2 input[type=checkbox],
    .MenuLevel3 input[type=checkbox] {
        width: 100%;
        margin: 0;
        border: none;
    }

    .MenuLevel1 ul,
    .MenuLevel2 ul,
    .MenuLevel3 ul {
        position: static;
    }

        .MenuLevel1 ul li,
        .MenuLevel2 ul li,
        .MenuLevel3 ul li {
            width: 100%;
        }

    .MenuLevel1 input[type=checkbox]:not(:checked) ~ ul {
        display: none;
        margin: 0;
    }

    .MenuLevel2 input[type=checkbox]:not(:checked) ~ ul {
        display: none;
        margin: 0;
    }

    .MenuLevel3 input[type=checkbox]:not(:checked) ~ ul {
        display: none;
        margin: 0;
    }

    .MenuLevel1 input[type=checkbox]:checked ~ ul {
        display: block;
        margin: 0;
    }

    .MenuLevel2 input[type=checkbox]:checked ~ ul {
        display: block;
        margin: 0;
    }

    .MenuLevel3 input[type=checkbox]:checked ~ ul {
        display: block;
        margin: 0;
    }


    /*Create vertical spacing*/
    .MenuLevel1 li {
        border-bottom: 1px solid #b0e47f;
    }

        .MenuLevel1 li:first-child {
            border-top: 1px solid #b0e47f;
            border-bottom: 1px solid #b0e47f;
        }

    .MenuLevel2 li {
        border-bottom: 1px solid rgb(250, 180, 31);
    }

        .MenuLevel2 li:first-child {
            border-top: 1px solid rgb(250, 180, 31);
            border-bottom: 1px solid rgb(250, 180, 31);
        }

    .MenuLevel3 li {
        border-bottom: 1px solid #d1d1d1;
    }

        .MenuLevel3 li:first-child {
            border-top: 1px solid #d1d1d1;
            border-bottom: 1px solid #d1d1d1;
        }

        .MenuLevel2 li input[type="text"],
        .MenuLevel3 li input[type="text"],
        .MenuLevel3 li input[type="text"] input,
        .MenuLevel2 li input[type="text"] input {
            padding: 0px;
        }
}

.fa-info-circle {
    color: #21a9e1;
    font-size: 18px;
    vertical-align: middle;
    margin-right: 5px;
}

.fa-fw {
    width: 1.28571429em;
    text-align: center;
}

.fa-pulse {
    display: inline-block;
    -moz-animation: pulse 2s infinite linear;
    -o-animation: pulse 2s infinite linear;
    -webkit-animation: pulse 2s infinite linear;
    animation: pulse 2s infinite linear;
}

.depositOptions {
    padding: 0px 20px;
}

    .depositOptions h2 {
        color: #f9a41d;
        font-size: 180%;
    }

    .depositOptions p {
        font-size: 120%;
    }

.PromoDiv {
    margin: 0;
    padding: 0;
    background: #dee2de;
}

    .PromoDiv .PromoError:before {
        content: "\f071";
        font-family: FontAwesome;
        margin: 3px 3px 0px -15px;
        font-size: 13px;
        top: 0;
    }

    .PromoDiv .orangeBut {
        margin-left: 20px;
    }

    .PromoDiv .PromoError {
        font-size: 10px;
        color: #D8000C;
        width: 100%;
        font-weight: bold;
        text-align: center;
        height: 10px;
        margin-top: 0px;
        display: inline-block;
        line-height: 1;
    }

    .PromoDiv .Promoterms {
        width: 100%;
        text-align: center;
        margin-top: 3px;
        display: inline-block;
    }

        .PromoDiv .Promoterms a {
            font-size: 10px;
            color: #000000;
            font-weight: 700;
        }

            .PromoDiv .Promoterms a:hover {
                color: #838383;
                font-weight: 700;
            }

    .PromoDiv .promoImage {
        display: inline-block;
        height: 100px;
        width: calc(95% / 2);
        vertical-align: middle;
    }

    .PromoDiv .promoRight {
        display: inline-block;
        width: calc(100% / 2);
        height: 100px;
        vertical-align: middle;
    }

    .PromoDiv form {
        padding: 0;
    }

.promoImage img {
    vertical-align: top;
    padding: 5px;
    width: 140px;
    height: auto;
    margin-left: 0px;
}

.PromoDiv input {
    width: 90px;
    margin: 0px 20px;
    display: inline-block;
    font-size: 1.5em;
    text-align: center;
    color: #646262;
}

.PromoDiv .promotext {
    font-size: 1.2em;
    width: 130px;
    -webkit-transform: translate3d(0,0,0);
    transition: all 0.3s ease 0s;
    text-decoration: none;
    display: inline-block;
    margin: 0px 20px 0px 15px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.PromoDiv .greenBut {
    background: #f3bc67;
    padding: 4px 8px;
    color: #000000;
    text-align: center;
    margin: 0px 12px;
    text-transform: uppercase;
    width: 100px;
    font-size: 11px;
    -webkit-transform: translate3d(0,0,0);
    transition: all 0.3s ease 0s;
    text-decoration: none;
}



.PromoDiv .confirmationText {
    font-size: 12px;
    line-height: 2;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    width: 120px;
    margin: 10px 15px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.PromoDiv .checkbox {
    height: 20px;
    margin: 5px 0;
    cursor: pointer;
}

.PromoDiv input {
    height: 20px;
}

    .PromoDiv input[type=checkbox] {
        vertical-align: middle;
        -webkit-appearance: checkbox;
        -moz-appearance: checkbox;
        position: relative;
        margin-left: 25px;
    }

        .PromoDiv input[type=checkbox]:checked {
            content: "\2713";
            text-shadow: 1px 1px 1px rgba(0, 0, 0, .2);
            font-size: 15px;
            color: #f3f3f3;
            vertical-align: middle;
            text-align: center;
        }



.PromoDiv .TermsDiv {
    min-width: 200px;
    border: solid 2px #d1d1d1;
    padding: 5px 10px;
    margin-top: 10px;
    z-index: 99;
    font-size: 11px;
    color: #000000;
    background-color: #fff;
}



.PromoDiv .CloseTermsDiv:before {
    content: "\f2d4";
    font-family: FontAwesome;
    font-size: 20px;
    color: #8b8b8b;
    top: 0;
    float: right;
}


.PromoDiv ol {
    counter-reset: section; /* Creates a new instance of the
											section counter with each ol
											element */
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.PromoDiv h1 {
    font-size: 1.8em;
    margin: -10px 0 10px 0;
}

.PromoDiv li {
    padding: 5px;
}

    .PromoDiv li b {
        font-weight: bold;
    }

    .PromoDiv li i {
        font-style: italic;
    }


    .PromoDiv li::before {
        font-weight: bold;
        margin-left: -10px;
        font-size: 12px;
        margin-right: 5px;
        counter-increment: section; /* Increments only this instance
											of the section counter */
        content: counters(section,".") "."; /* Adds the value of all instances
											of the section counter separated
											by a ".". */
        /* if you need to support < IE8 then
											make sure there is no space after 
											the ',' */
    }

.promoRight p {
    font-size: 10px;
    width: 100%;
    text-align: center;
    margin: 0;
}

.BettingBasics {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #222222;
    text-align: center;
}
