﻿* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}

a, button, .button {
    cursor: pointer;
}

ul {
    list-style: none;
}

.clear {
    clear: both;
}

.panel {
    -webkit-box-shadow: 0 2px 9px 0 rgba(0,0,0,0.27);
    -moz-box-shadow: 0 2px 9px 0 rgba(0,0,0,0.27);
    box-shadow: 0 2px 9px 0 rgba(0,0,0,0.27);
    background: white;
    border-radius: 5px;
    position: relative;
}

.panel-header {
    font-weight: 500;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-size: 14px;
    padding: 10px 15px;
}

.panel-content {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 15px;
    color: #2c333a;
}

.panel-footer {
    padding: 10px 15px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.panel-content, .panel-footer {
    position: relative;
}

.panel-close {
    float: right;
    font-weight: bold;
    cursor: pointer;
    padding: 0 8px;
}

.panel-buttons {
    float: right;
}

.panel-button {
    display: inline-block;
    margin-left: 28px;
}

.panel-content.panel-full-width {
    padding: 0;
}

.panel-content-header {
    text-indent: 25px;
    padding: 15px 0;
    background: #ededed;
    font-size: 16px;
    font-weight: 500;
    margin: 10px -15px;
}

.panel.closed .panel-content, .panel.closed .panel-footer {
    display: none !important;
}

.button {
    -webkit-box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.21);
    -moz-box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.21);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.21);
}

button {
    border: 1px #ebebeb solid;
    color: #0c3224;
    background: #f9f9f9;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjZGNkY2QiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, #f9f9f9 0%, #cdcdcd 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9f9f9), color-stop(100%,#cdcdcd));
    background: -webkit-linear-gradient(top, #f9f9f9 0%,#cdcdcd 100%);
    background: -o-linear-gradient(top, #f9f9f9 0%,#cdcdcd 100%);
    background: -ms-linear-gradient(top, #f9f9f9 0%,#cdcdcd 100%);
    background: linear-gradient(to bottom, #f9f9f9 0%,#cdcdcd 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9f9f9', endColorstr='#cdcdcd',GradientType=0 );
    -webkit-box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.21);
    -moz-box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.21);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.21);
}

.button, button {
    line-height: 34px;
    border-radius: 3px;
    padding: 0 15px;
    font-size: 14px;
    display: inline-block;
}

input[type="text"], input[type="email"], input[type="password"], input[type="number"] {
    border-radius: 3px;
    font-size: 14px;
    border: 1px #cecccc solid;
    padding: 10px 14px;
    color: #2c333a;
}

input[type="submit"] {
    padding: 0 10px;
}

select {
    border-radius: 3px;
    border: 1px solid #cecccc;
    text-indent: 5px;
    height: 40px;
}

    select option {
        padding: 10px;
    }

.drop-down {
    float: right;
    position: relative;
    font-weight: normal;
}

    .drop-down span {
        cursor: pointer;
    }

        .drop-down span .fa {
            margin-left: 5px;
        }

    .drop-down ul {
        position: absolute;
        background: white;
        z-index: 10;
        color: black;
        right: -15px;
        top: 30px;
        width: 100px;
        display: none;
        -webkit-box-shadow: 0 0 8px 0 rgba(0,0,0,0.53);
        -moz-box-shadow: 0 0 8px 0 rgba(0,0,0,0.53);
        box-shadow: 0 0 8px 0 rgba(0,0,0,0.53);
    }

        .drop-down ul li {
            float: left;
            width: 100%;
        }

            .drop-down ul li a {
                width: 100%;
                display: block;
                text-indent: 14px;
                line-height: 30px;
                color: #3b3b3b;
                text-decoration: none;
            }

                .drop-down ul li a:hover {
                    background: #f3f3f3;
                }

    .drop-down.opened ul {
        display: block;
    }

.cashier-header .drop-down ul {
    top: 35px;
    width: 92px;
}

.form-row {
    padding: 10px 0;
    width: 100%;
    clear: both;
}

    .form-row .form-cell input, .form-row .form-cell button, .form-row .form-cell select {
        width: 100%;
    }

        .form-row .form-cell input[type="radio"] {
            width: auto !important;
        }

    .form-row label {
        padding-bottom: 5px;
        display: inline-block;
        width: 100%;
    }

.center-text {
    text-align: center;
}

.right-text {
    text-align: right;
}

/* Login panel */
#login-page, #cashier {
    width: 100%;
    height: 100%;
}

.cashier-logo {
    line-height: 33px;
}

#login-page .cashier-logo {
    text-align: center;
    margin-top: 100px;
}

#login-page .cashier-logo img {
    max-width: 100px;
}

#login-page .cashier-logo span {
    font-size: 17px;
}

#login-panel {
    width: 480px;
    margin: 30px auto 0 auto;
}

.login-error {
    color: #e30b61;
}

/* Cashier top panel */
.cashier-header {
    float: left;
    position: relative;
    width: 100%;
}

.cashier-header .cashier-logo {
    float: left;
    margin-left: 15px;
}

.cashier-header .cashier-logo img {
    max-height: 20px;
    vertical-align: middle;
}

.cashier-header .cashier-logo span {
    font-size: 13px;
}

#general-menu {
    float: left;
    margin-left: 24px;
}

#general-menu li {
    float: left;
}

#general-menu li a {
    float: left;
    font-weight: 500;
    padding: 0 25px;
    line-height: 34px;
}

.cashier-header-panel {
    float: right;
}

.cashier-panel-item {
    float: left;
    border-left: 1px #000000 solid;
    color: white;
    line-height: 34px;
    padding: 0 15px;
}

#log-out {
    cursor: pointer;
    color: #FFF;
    margin: 10px;
}

/* Second menu panel */
.second-menu-panel {
    width: 100%;
    float: left;
    padding: 10px;
}

.second-menu, .second-menu li, .second-menu li a {
    float: left;
}

.second-menu li a {
    line-height: 52px;
    border-radius: 3px;
    padding: 0 20px;
    font-weight: 500;
}

/* Page content */
#main-container {
    width: 100%;
    height: 100%;
}

.main-content {
    height: 100%;
    width: 100%;
}

.page {
    width: 100%;
    height: calc(100% - 72px);
    float: left;
    overflow-x: hidden;
    overflow-y: auto;
}

section.left-block, section.right-block {
    padding: 15px 7px;
    position: relative;
}

    section.left-block.fix-width {
        float: left;
        width: 265px;
    }

    section.right-block.full-width {
        margin-left: 265px;
    }

    section.left-block.full-width {
        width: calc(100% - 265px);
        float: left;
    }

    section.right-block.fix-width {
        float: right;
        width: 265px;
    }

section.game-block {
    height: 100%;
    padding-bottom: 0;
    padding-left: 0;
    padding-top: 0;
}

/* Bet panel */
#bet-stake {
    color: white;
}

#remove-bets {
    float: right;
    font-size: 12px;
}

.bet-amount-button {
    width: 52px;
    padding: 0;
    margin: 0 2px 10px 1px;
}

.selection {
    margin: 10px 0;
}

.selection-title {
    color: #2c333a;
}

.selection-content {
    padding: 2px;
    color: #8e959b;
}

.selection .remove-selection {
    float: right;
    line-height: 20px;
    font-weight: bold;
    display: inline-block;
    cursor: pointer;
    color: #8e959c;
    font-size: 20px;
    line-height: 18px;
}

.selection .selection-status.info-status {
    color: #6CCBA7;
}

.selection .selection-status.error-status {
    color: #E30B61;
}

.product-games-list {
    height: 100%;
    width: 150px;
    float: left;
}

    .product-games-list ul {
        margin: 12px 4px;
    }

        .product-games-list ul li {
            width: 100%;
            float: left;
        }

            .product-games-list ul li a {
                border-radius: 5px;
                float: left;
                width: 100%;
                line-height: 34px;
                text-indent: 10px;
            }

.game-iframe-panel {
    margin-left: 150px;
    height: 100%;
    padding: 15px 0 15px 15px;
}

    .game-iframe-panel iframe {
        width: 100%;
        height: 100%;
        border: 7px #000000 solid;
        border-radius: 5px;
    }

/* Deposite page */
.payments-deposit .full-width form {
    display: inline-block;
}

.payments-deposit .full-width input {
    width: 210px;
    margin-right: 15px;
}

.payments-deposit .full-width .panel-footer {
    display: none;
}

.payments-deposit .full-width .panel-content {
    background: url(Images/Payment_Deposit_BG.png) no-repeat center center;
}

.payments-deposit .full-width .panel.finded .panel-content {
    background: none;
}

.payments-deposit .full-width .panel.finded .panel-footer {
    display: block;
}

#payments-content h3 {
    color: #1a5d88;
    font-size: 24px;
    font-weight: normal;
    line-height: 46px;
}

#payments-content .user-info {
    line-height: 36px;
}

    #payments-content .user-info strong {
        display: inline-block;
        width: 150px;
    }

/* Withdraw page */
.user-withdraw {
    clear: both;
    width: 100%;
    padding: 8px 0;
}

.user-withdraw-amount {
    width: 150px;
    float: left;
}

    .user-withdraw-amount strong, .user-withdraw-amount span {
        float: left;
        display: inline-block;
        clear: both;
    }

    .user-withdraw-amount strong {
        font-weight: bold;
        font-size: 18px;
    }

#ticket-validation {
    position: fixed;
    bottom: 0;
    right: 6px;
    width: 238px;
}

    #ticket-validation .panel-header {
        cursor: pointer;
        line-height: 20px;
        padding: 10px 18px;
    }

    #ticket-validation .request-data, #ticket-validation.finded .request-form, #ticket-validation.not-found .request-form, #ticket-validation .panel-footer, #ticket-validation .request-not-found {
        display: none;
    }

    #ticket-validation.finded .request-data, #ticket-validation.finded .panel-footer {
        display: block;
    }

    #ticket-validation.not-found .request-not-found, #ticket-validation.not-found .panel-footer {
        display: block;
    }

    #ticket-validation.not-found strong {
        line-height: 195px;
        text-align: center;
        color: #E30B61;
        width: 100%;
        display: inline-block;
    }

    #ticket-validation .form-row strong, #ticket-validation .form-row span {
        display: inline-block;
    }

    #ticket-validation .form-row strong {
        width: 90px;
    }

    #ticket-validation span.ticket-id {
        color: #1B7BB7;
    }

/* Reports */
.report-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

    .report-table th {
        text-transform: uppercase;
    }

    .report-table th, .report-table td {
        text-align: left;
        padding: 20px 10px 15px 10px;
    }

    .report-table tr {
        border-bottom: 1px #ededed solid;
        font-size: 12px;
    }

        .report-table tr:hover {
            background: #EDEDED;
        }

    .panel-header .fa-print, .report-table td .fa-print {
        cursor: pointer;
        font-size: 16px;
    }

.panel-header .fa-print {
    float: right;
}

.sum-report-table {
    width: auto;
    margin-top: 30px;
}

    .sum-report-table td {
        font-weight: 700;
        color: #2C333A;
    }

/* Message window */
#message-window-overlay {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: none;
}

#message-window {
    position: absolute;
    width: 410px;
    height: 270px;
    left: 50%;
    margin-left: -205px;
    top: 50%;
    margin-top: -135px;
}

    #message-window .panel-header {
        color: white;
    }

    #message-window .panel-content {
        text-align: right;
        background: white;
    }

    #message-window .message-text {
        padding-bottom: 10px;
        height: 145px;
        text-align: left;
    }

    #message-window .button, #message-window button {
        margin-left: 15px;
    }

    #message-window.error .panel-header {
        background: #00A1AF;
    }

    #message-window.info .panel-header {
        background: #6CCBA7;
    }

#confirm-window-overlay {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: none;
}

    #confirm-window-overlay.active {
        display: block;
    }

#confirm-window {
    position: absolute;
    width: 410px;
    height: 270px;
    left: 50%;
    margin-left: -205px;
    top: 50%;
    margin-top: -135px;
}

    #confirm-window .panel-header {
        color: white;
    }

    #confirm-window .panel-content {
        text-align: right;
        background: white;
    }

    #confirm-window .message-text {
        padding-bottom: 10px;
        height: 145px;
        text-align: left;
    }

    #confirm-window .button, #confirm-window button {
        margin-left: 15px;
    }

    #confirm-window.error .panel-header {
        background: #00A1AF;
    }

    #confirm-window.info .panel-header {
        background: #6CCBA7;
    }

.payments-deposit .full-width .panel-content, .payments-witdrow .right-block .panel-content, .reports-by-bet .left-block .panel-content,
.reports-by-shift .left-block .panel-content, .transaction-detail .left-block .panel-content, .report-by-payments .left-block .panel-content {
    min-height: 530px;
}

.report-panel {
    overflow-x: auto;
}

#ticket-validation .fa-times {
    float: right;
    margin-top: 2px;
}

#ticket-validation.closed .fa-times {
    display: none;
}

.hidden-barcode {
    display: none;
}

.settings-page .full-width {
    width: 100%;
    margin-left: 0 !important;
}

.monitors-page .right-block .panel {
    margin-bottom: 10px;
}

.monitors-page .right-block select {
    width: 300px;
    margin-right: 10px;
}

.close-shift {
    float: right;
    margin-right: 15px;
}

#socket-error {
    position: fixed;
    right: 0;
    background: #A90000;
    width: auto;
    padding: 13px 30px;
    z-index: 100;
    top: 37px;
    color: white;
}

/* Loader */
.loader-panel {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    min-height: 200px;
    z-index: 10;
}

.loader {
    font-size: 10px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -50px 0 0 -50px;
    border-top: 1.1em solid rgba(26, 110, 219, 0.32);
    border-right: 1.1em solid rgba(26, 110, 219, 0.32);
    border-bottom: 1.1em solid rgba(26, 110, 219, 0.32);
    border-left: 1.1em solid #1B7BB7;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}

    .loader, .loader:after {
        border-radius: 50%;
        width: 100px;
        height: 100px;
    }

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
    background: #00A1AF !important;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
    background: #00A1AF !important;
    box-shadow: #00A1AF 0 1px 3px 0 inset;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_today {
    color: #00A1AF;
}


@media (max-width: 1023px) {
    #general-menu {
        float: left;
        width: calc(100% - 125px);
    }

    .cashier-header-panel {
        float: left;
    }
}

@media (max-width: 768px) {

    #general-menu {
        margin-left: 0;
        width: 100%;
        border-bottom: 1px solid #005b69;
    }

    .cashier-panel-item {
        padding: 0 5px;
    }
    
    .cashier-id,
    .cashier-languages,
    .cashier-logo {
        display: none;
    }
}