﻿html
{
    height: 100%;
}

body
{
    background-image: url(Img/background.gif);
    background-color: #969BA0 !I;
    color: #727272;
    font-family: 'Roboto', sans-serif;
    font-size: small;
    margin: 0px;
    height: 100%;
}

noscript
{
    font-family: monospace;
    position: absolute;
    top: 20px;
    left: 20px;
}

a
{
    color: #303F9F;
    text-decoration: none;
}

    a:hover
    {
        color: #657384;
    }

input, textarea
{
}

#titlebar
{
    background-color: #303F9F;
    border-bottom: solid 1px #C3C3C3;
    width: 100%;
    padding: 10px;
    vertical-align: middle;
}

.BoxButtons
{
    position: relative;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    vertical-align: middle;
    z-index: 1;
    -webkit-transition: .3s ease-out;
    transition: .3s ease-out;
    text-decoration: none;
    letter-spacing: .5px;
    text-align: center;
    color: #EAEAEA;
    background-color: #303F9F;border: none;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
    display: inline-block;
    height: 36px;
    line-height: 36px;
    padding: 0 16px;
    text-transform: uppercase;
    vertical-align: middle;
    -webkit-tap-highlight-color: transparent;
    border-radius: 4px;
    margin:10px;
}
.pulse {
    overflow: visible;
    position: relative;
}
.pulse::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: inherit;
    border-radius: inherit;
    -webkit-transition: opacity .3s, -webkit-transform .3s;
    transition: opacity .3s, -webkit-transform .3s;
    transition: opacity .3s, transform .3s;
    transition: opacity .3s, transform .3s, -webkit-transform .3s;
    -webkit-animation: pulse-animation 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    animation: pulse-animation 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    z-index: -1;
}
@-webkit-keyframes pulse-animation {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}

@keyframes pulse-animation {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}

    .BoxButtons:hover
    {
        color: white;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
        transition: all 0.15s ease-in-out;
        background-color:#3D4C9E;
    }

.CircleButton
{
    border-radius: 50%;
    width: 35px;
    height: 35px;
    color: #EAEAEA;
    background-color: #1976D2;
    float: left;
    font-weight: bold;
    font-size: large;
    text-align: center;
    vertical-align: middle;
    line-height: 35px;
    box-shadow: 0px 1px 1px #888888;
}

div.content
{
    width: auto;
    text-align: left;
    /*border-right: solid 1px white;
    border-left: solid 1px white;
    border-bottom: none;*/
    margin: 0px auto 0px auto;
    background: #E5E5E5;
    padding: 10px;
    padding-top: 20px;
    min-height: 500px;
    position: relative;
    max-width: 730px;
}

div.footer
{
    width: auto;
    text-align: left;
    /*border: solid 1px white;
    border-top: none;*/
    margin: 0px auto 0px auto;
    background-color: #E5E5E5;
    padding: 0px 10px 20px 10px;
    max-width: 730px;
}

div.BelowFooter
{
    height: 30px;
    width: 750px;
    margin: 0px auto 0px auto;
    background: url(img/background_bottom.png) repeat-x;
}

div.ScoreboardPanel
{
    margin: 10px;
    background-color: #000000;
    box-shadow: 0px 1px 1px #888888;
    text-align: center;
}

.ScoreboardColumn
{
    display: inline-block;
    padding: 4px;
    text-align: center;
    vertical-align: top;
    /*border: solid 2px white;*/
    position:relative;
    overflow:hidden;
}

.BoxShadow
{
    border: none;
    box-shadow: 0px 1px 1px #888888;
    padding: 3px;
    color: white;
    font-size: xx-large;
    vertical-align: middle;
}

.Digit
{
    border: 2px solid black;
    outline: 2px solid white;
    box-shadow: 0px 1px 1px #888888;
    padding: 3px;
    padding-top: 15px;
    padding-bottom: 15px;
    color: black;
    font-size: 4vw;
    vertical-align: middle;
    min-height: 60px;
    margin-top: 3px;
    line-height: 60px;
    display: inline-block !important;
    background-color: white;
}

    .Digit:hover
    {
        cursor: pointer;
    }

.label
{
    width: 35%;
    padding-right: 5px;
    font-size: large;
}

.field
{
    width: 60%;
    font-size: large;
}

h1
{
    font-size: large;
    font-weight: bold;
    color: #090880;
    text-transform: uppercase;
}

h2
{
    font-size: medium;
    font-weight: normal;
    color: #090880;
    text-transform: uppercase;
}

.Column
{
    display: inline-block;
    text-align: left;
    vertical-align: top;
    margin-bottom: -2px;
}

fieldset
{
    padding: 5px 10px 10px 10px;
    margin: 5px;
    border-color: #B4B4B4;
    text-align: center;
}

legend
{
    text-transform: uppercase;
    font-weight: bold;
}

.EnterScoreColumn
{
    display: block;
    padding: 10px;
    position: relative;
}

.EnterScoreLabel
{
    display: inline-block;
    width: 26%;
    text-align: right;
}

.EnterScoreLabel2
{
    display: inline-block;
    width: 40%;
    text-align: right;
}

.EnterScoreField
{
    display: inline-block;
    text-align: left;
    margin: 2px;
    width: 50%;
}

.EnterScoreField2
{
    display: inline-block;
    width: 50%;
    text-align: center;
    margin: 2px;
}


.field
{
    font-family: arial, sans-serif;
    margin-top: 3px;
    font-size: 15px;
    border: solid 1px #B4B4B4;
    text-indent: 3px;
    line-height: 100%;
}

.rcbInputCell INPUT.rcbInput
{
    font-size: 15px;
    padding: 0px;
    height: 18px;
    font-family: arial, sans-serif;
    width: 50px;
    text-indent: 0px;
    color: Black;
    border: none;
}

.RadComboBox_Telerik
{
    Border: none;
}

.Drag
{
    display: inline-block;
    text-align: left;
    vertical-align: top;
    margin-bottom: -2px;
    width: 100%;
}

.dragtop
{
    height: 29px;
    width: 100%;
    background: #657384;
    /* cursor: move; */
    text-align: center;
    border-bottom: solid 1px #C3C3C3;
}

.Header
{
    text-align: center;
    width: 100%;
    /*margin-top: 10px;*/
    height:185px;
    max-width: 750px;
    margin: auto;
    /*padding: 10px;*/
    background-image: url(img/bannerdarts2.png);
}

.dragbody
{
    height: 100%;
    width: 100%;
    background: #F4F6F8 url(img/bg.gif) repeat-x;
    border-right: solid 1px white;
    border-left: solid 1px white;
    border-bottom: solid 0px white;
}

.bodyreflect
{
    height: 35px;
    width: 100%;
    background: #E5E5E5 url(img/reflect_bg.gif) repeat-x;
}

.Grid
{
    text-align: center;
}

.Alt
{
    background-color: WhiteSmoke;
}

.Head
{
    background-color: Gray;
    color: white;
}

    .Head a
    {
        color: white;
    }

        .Head a:hover
        {
            color: #C3C3C3 !important;
        }

.NumDisplayRed
{
    box-shadow: 0px 1px 1px #888888;
    padding: 2px;
    font-size: 150px;
    vertical-align: middle;
    background-color: #330000;
    color: red;
    font-family: digital-7regular;
    border: solid 2px white;
}

.NumDisplayGreen {
    text-align: center;
    box-shadow: 0px 1px 1px #888888;
    padding: 3px;
    font-size: 40px;
    vertical-align: middle;
    background-color: #043300;
    color: #12DE00;
    font-family: digital-7regular;
    border: solid 2px white;
    min-height: 40px;
    overflow-y: hidden;
    background-image: none;
}

.floatleft
{
    float: left;
    padding-left: 10px;
    padding-top: 15px;
}

.button3d
{
    display: inline-block;
    flex:1;
    margin-bottom: 15px;
    margin-left: 5px;
    margin-right: 5px;
    -webkit-border-radius: 40px;
    /*-webkit-box-shadow: 0px 3px rgba(128,128,128,1),*/ /* gradient effects */
    /*0px 4px rgba(118,118,118,1), 0px 5px rgba(108,108,108,1), 0px 6px rgba(98,98,98,1), 0px 7px rgba(88,88,88,1), 0px 8px rgba(78,78,78,1), 0px 14px 6px -1px rgba(128,128,128,1);*/ /* shadow */
    -webkit-transition: -webkit-box-shadow .1s ease-in-out;
}

    .button3d span
    {
        background-color: #E8E8E8;
        background-image:
        /* gloss gradient */
        -webkit-gradient( linear, left bottom, left top, color-stop(50%,rgba(255,255,255,0)), color-stop(50%,rgba(255,255,255,0.3)), color-stop(100%,rgba(255,255,255,0.2))),
        /* dark outside gradient */
        -webkit-gradient( linear, left top, right top, color-stop(0%,rgba(210,210,210,0.3)), color-stop(20%,rgba(210,210,210,0)), color-stop(80%,rgba(210,210,210,0)), color-stop(100%,rgba(210,210,210,0.3))),
        /* light inner gradient */
        -webkit-gradient( linear, left top, right top, color-stop(0%,rgba(255,255,255,0)), color-stop(20%,rgba(255,255,255,0.5)), color-stop(80%,rgba(255,255,255,0.5)), color-stop(100%,rgba(255,255,255,0))),
        /* diagonal line pattern */
        -webkit-gradient( linear, 0% 100%, 100% 0%, color-stop(0%,rgba(255,255,255,0)), color-stop(40%,rgba(255,255,255,0)), color-stop(40%,#D2D2D1), color-stop(60%,#D2D2D1), color-stop(60%,rgba(255,255,255,0)), color-stop(100%,rgba(255,255,255,0)));
        -webkit-box-shadow: 0px -1px #fff, /* top highlight */
        0px 1px 1px #FFFFFF; /* bottom edge */
        -webkit-background-size: 100%, 100%, 100%, 4px 4px;
        -webkit-border-radius: 40px;
        -webkit-transition: -webkit-transform .1s ease-in-out;
        display: inline-block;
        width:100%;
        
        height: 80px;
        line-height: 80px;
        color: #3A474D;
        text-transform: uppercase;
        /*font-family: 'TradeGothicLTStd-BdCn20','PT Sans Narrow';*/
        font-weight: 700;
        font-size: 1.8em;
        text-shadow: 0px 1px #fff, 0px -1px #262F33;
    }

        .button3d span:hover
        {
            color: #AEBF3B;
            text-shadow: 0px -1px #97A63A;
            cursor: pointer;
        }

    .button3d:active
    {
        -webkit-box-shadow: 0px 3px rgba(128,128,128,1), 0px 4px rgba(118,118,118,1), 0px 5px rgba(108,108,108,1), 0px 6px rgba(98,98,98,1), 0px 7px rgba(88,88,88,1), 0px 8px rgba(78,78,78,1), 0px 10px 2px 0px rgba(128,128,128,.6); /* shadow */
    }

        .button3d:active span
        {
            -webkit-transform: translate(0, 5px); /* depth of button press */
        }

.newButton
{
    height: 130px;
    font-size: 1.9em;
    font-weight: bold;
    color: #fff;
    width: 75%;
}

/*.button3d span:after {
        content: "";
        display: block;
        width: 10px;
        height: 10px;
    
        position: absolute;
        right: 14px;
        top: 12px;    
        
        font-family: 'Cabin';
        font-weight: 700;
        color: #AEBF3B;
        text-shadow: 0px 1px #fff, 0px -1px #97A63A;
        font-size: 26px;
    }*/

.RedText span
{
    color: #e20808;
}

.GreenBackground span
{
    background-color: #12ca02;
}

.roomnumberlabel
{
    min-width: 300px;
    padding: 15px;
    font-size: 1.2em;
    background-color: #fff;
    border-radius: 3px;
    -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    color:black;
}
.watermark
{
    display: none !important;
    height:0px !important;
    width:0px !important;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.hideblock
{
    display:none;
}

.PlayerButtonOverride{
    height:80px;
    margin-bottom:30px;
    width:80%;
}
.CancelButtonOverride {
   
    /*float:left;*/
    /*margin-left:76px;*/
    color: #000;
    background-color: #fff;
    font-weight: 200;
    font-size: 1em;
    line-height: 50px;
    height: 50px;
    width: 9%;
    display: inline-block;
    
}
.CheckoutTitle {
    font-weight: 500;
    font-size: 2.2em;
    float: left;
    margin-left: 20px;
    margin-top: 10px;
    color: #FFFFFF;
}

.CheckoutValues {
    font-size: 2.8em;
    float: left;
    margin-left: 10px;
    margin-top: 10px;
    max-width: 320px;
    text-align: left;
    color: #ffffff;
}
.ScoreTitle {
    font-weight: 500;
    font-size: 2.2em;
    float: left;
    margin: 10px;
    
}
.ScoreValues {
    font-size: 2.2em;    
    margin: 10px;
    text-align: left;
    display: block;
    word-wrap: break-word;
    white-space: normal;

}
.ScoreTable {
    font-size: 1.5em;
    margin-top: 10px;
    width: 98%;
    position:relative;
    bottom:1px;
    border: 1px solid #3A474D;
}
   
    .ScoreTable tr:nth-child(even) {
        background-color: #f2f2f2;
        color:black;
    }

.ScoreTable th {
    padding-top: 12px;
    padding-bottom: 12px;
    background-color: #000000;
    color: white;
}
.ScoreTable1 {
    font-size: 1.5em;
    margin-top: 10px;
    width: 98%;
    position: relative;
    bottom: 1px;
    border: 1px solid #3A474D;
}

    .ScoreTable1 tr:nth-child(even) {
        background-color: #f2f2f2;
        color: black;
    }

    .ScoreTable1 th {
        padding-top: 12px;
        padding-bottom: 12px;
        background-color: #000000;
        color: white;
    }
.RedHeader th {
    background-color: #FF0000;
}
.GreenHeader th {
    background-color: #12AE00;
}
.BlueHeader th {
    background-color: #303F9F;
}
.YellowHeader th {
    background-color: #C9A51B;
}