﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700');

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

@font-face {
    font-family: 'FSSinclair';
    src: url("/fonts/fssinclair/FSSinclairWeb-Bold.eot"); /* IE9 */
    src: url("/fonts/fssinclair/FSSinclairWeb-Bold.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
    url("/fonts/fssinclair/FSSinclairWeb-Bold.woff") format("woff"); /* Modern Browsers */
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'digital-7';
    src: url('/Fonts/Digital-7/digital-7_mono-webfont.woff2') format('woff2'), url('/Fonts/Digital-7/digital-7_mono-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}

html {
    font-size: 62.5%;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background: #000;
}

body {
    font-size: 1.5rem;
    background-color: #2b2b2b;
    font-family: 'FSSinclair';
    line-height: 2.4rem;
    font-weight: 400;
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
}

/* Buttons*/
button {
    border-radius: 3px;
}
.btn {
    border-radius: 3px;
    color: #fff;
    padding: 10px 15px;
    font-weight: 400;
    font-size: 1.5rem;
    font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
    cursor: pointer;
    transition: .25s;
}

.btn-primary {
    border: 2px solid #c3a046;
    background: #c3a046;

}

    .btn-primary:hover {
        border-color: #826a30;
        background: #826a30;
    }

.btn-secondary{
    color: black;
    border: 2px solid white;
    background: white;
}

.btn-secondary:hover {
    border-color: #c4c4c4;
    background: #c4c4c4;
}

/* Cards*/
.card {
    padding: 16px;
    border-radius: 5px;
    border: 2px solid grey;
}

/* NAV */
#dashboard-nav {
    background: #000;
    font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
}

    #dashboard-nav #dashboard-nav-container {
        padding: 1.5rem 30px;
        display: flex;
        justify-content: space-between;
        
    }

    #nav-logo {
        width: 60px;
    }

    #dashboard-nav #tabs-container {
        display: flex;
    }

        #dashboard-nav #tabs-container a {
            display: flex;
            margin: 0 1rem 0 0;
            color: #fff;
            text-decoration: none;
            padding: 1rem;
            line-height: normal;
            border-radius: 5px;
            transition: .25s;
        }

            #dashboard-nav #tabs-container a:hover, #dashboard-nav #tabs-container a.active {
                color: #c3a046;
            }
            /* ALGEMEEN */
            .no-underline {
    text-decoration: none;
}

    .no-underline:hover {
        text-decoration: underline;
    }

.cl-white {
    color: white;
}

.cl-black {
    color: black
}

.cl-gold {
    color: #c3a046;
}

.cl-gray {
    color: #949494;
}

.cl-gray1 {
    color: #5c5c5c;
}

.uppercase {
    text-transform: uppercase;
}

.align-center {
    text-align: center;
}

/* DEBUG */
.live-ok {
    color: green;
}

.live-nok {
    color: red;
}

/* SPLASH */
#splash {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

    #splash .logo {
        width: 80vw;
        height: 60vh;
        background: url(/Images/logo_fp.svg) no-repeat center center;
        background-size: contain;
    }

/* FULLSCREEN OVERLAY */
.fullscreen {
    position: absolute;
    left: 0;
    top: 0;
    width: 1920px;
    height: 1080px;
    z-index: 10;
    background: #000;
}


/* SLIDER */

.slick-dots {
    margin: 0;
    padding: 0;
    text-align: center;
    list-style: none;
    display: block;
}

    .slick-dots li {
        margin: 0 5px;
        padding: 0;
        display: inline-block;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #949494;
    }

        .slick-dots li.slick-active {
            background: white;
        }

        .slick-dots li button {
            display: none;
        }


/* DASHBOARD */

.vestiging-btn {
    color: #fff;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 5px;
    padding: 5px 10px;
    margin-bottom: 5px;
    display: block;
    text-align: center;
    font-size: 12px;
    line-height: 1;
    font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
}

    .vestiging-btn:not(.offline):hover {
        background: #fff;
        color: #000;
    }

    .vestiging-btn.offline {
        opacity: .5;
    }

    .vestiging-btn.checking {
        font-style: italic;
        border: 2px solid yellow;
    }


#service-overzicht .head,
#service-overzicht .overzicht-block-body {
    font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
}

#service-overzicht .head {
    font-weight: 700;
}

#service-reset {
    font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.50);
    color: #000;
}

#login {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    text-align: center;
}

    #login form {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
        padding: 20px;
    }

        #login form input {
            width: 300px;
            max-width: 100%;
            border: 2px solid #fff;
            background: transparent;
            color: #fff;
            margin-bottom: 15px;
            height: 50px;
            padding: 0 10px;
        }

        #login form button {
            font-family: 'FSSinclair';
            width: 300px;
            max-width: 100%;
            border: 2px solid #fff;
            background: #fff;
            color: #000;
            margin-bottom: 15px;
            height: 50px;
            padding: 0 10px;
            font-weight: 700;
            font-size: 18px;
            cursor: pointer;
        }

            #login form button:hover {
                background: transparent;
                color: #fff;
            }

    #login .validation-summary-errors ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

#service-overzicht .winners {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    color: #000;
}

#service-overzicht .winner {
    margin-bottom: 20px;
}

    #service-overzicht .winner .inner {
        padding: 10px;
        border-radius: 5px;
    }

    #service-overzicht .winner .prize {
        margin: 0;
        text-align: center;
        padding: 5px 0;
        border-bottom: 1px solid #000;
    }

    #service-overzicht .winner .info {
        padding-top: 10px;
        font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
        font-size: 11px;
        line-height: 1.2;
    }

        #service-overzicht .winner .info > div {
            margin-bottom: 3px;
        }

        #service-overzicht .winner .info i {
            width: 20px;
        }

#service-overzicht .winners .winner.gold .inner {
    background: #c3a046;
}

#service-overzicht .winners .winner.silver .inner {
    background: #949494;
}

#service-overzicht table {
    margin: 0 0 20px 0;
}

    #service-overzicht table thead th {
        padding: 3px 0;
        text-align: left;
        font-size: 16px;
        border-bottom: 2px solid #fff;
    }

    #service-overzicht table tbody {
        font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
        font-size: 12px;
    }

    #service-overzicht table td {
        padding: 3px 0;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.50);
    }

#service-overzicht .meekijken {
    padding: 20px;
    margin-bottom: 25px;
}

    #service-overzicht .meekijken p {
        font-family: 'FSSinclair';
        margin: 0;
        margin-bottom: 15px;
        text-align: center;
        font-size: 16px;
    }

    #service-overzicht .meekijken select {
        background-color: #fff;
        border: 1px solid #fff;
        padding: 10px;
        color: #000;
        width: 100%;
        display: inline-block;
        -moz-appearance: none;
        -webkit-appearance: none;
        appearance: none;
        cursor: pointer;
        background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 23.0.6, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Layer_1' focusable='false' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 286.1 167' style='enable-background:new 0 0 286.1 167;' xml:space='preserve'%3E%3Cpath d='M24.1,0h238c21.4,0,32.1,25.9,17,41l-119,119c-9.4,9.4-24.6,9.4-33.9,0L7.1,41C-8,25.9,2.7,0,24.1,0z'/%3E%3C/svg%3E%0A");
        background-repeat: no-repeat,repeat;
        background-position: right 2.5rem top 50%,0 0;
        background-size: 1rem;
        margin-bottom: 10px;
    }

    #service-overzicht .meekijken button {
        width: 100%;
    }

        #service-overzicht .meekijken button:first-of-type {
            margin-bottom: 10px;
        }

#service-overzicht .list-vestiging {
    border: 1px solid #fff;
    margin-bottom: 20px;
}

    #service-overzicht .list-vestiging .list-header {
        font-size: 12px;
        background: #fff;
        color: #000;
        padding: 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        cursor: pointer;
    }

    #service-overzicht .list-vestiging .list-icon {
        width: 12px;
        transition: .35s;
    }

    #service-overzicht .active.list-vestiging .list-icon {
        transform: rotate(180deg);
    }

    #service-overzicht .list-vestiging .count {
        width: 30px;
        height: 30px;
        background: #000;
        margin-right: 4px;
        color: #fff;
        border-radius: 50%;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 10px;
    }

#service-overzicht .vestigingen-active .online {
    display: block;
}

#service-overzicht .vestigingen-active .offline {
    display: none;
}

#service-overzicht .vestigingen-notactive .online {
    display: none;
}

#service-overzicht .vestigingen-notactive .offline {
    display: block;
}

#service-overzicht .list-vestiging .list-body {
    padding: 0;
    margin: 0;
    list-style: none;
    display: none;
}

#service-overzicht .list-vestiging .list-item {
    border-bottom: 1px solid #fff;
    padding: 10px;
}

    #service-overzicht .list-vestiging .list-item .city {
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
    }

    #service-overzicht .list-vestiging .list-item .screens {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

        #service-overzicht .list-vestiging .list-item .screens .screen {
            padding: 11px 2px 18px 2px;
            margin: 3px;
            font-size: 10px;
            line-height: 1;
            background: url(/Images/screen-icon.svg) no-repeat center top;
            background-size: contain;
            width: calc(20% - 6px);
            text-align: center;
        }

#service-overzicht .vestigingen-notactive .list-item .screens .screen {
    color: rgba(255,255,255, 0.5);
    background: url(/Images/screen-icon-not-active.svg) no-repeat center top;
}

#service-overzicht {
    /*height: 100vh;*/
    height: calc(100vh-6.8rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

    #service-overzicht .overzicht-blocks {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        max-height: 100vh;
    }

        #service-overzicht .overzicht-blocks.noscroll {
            max-height: none;
        }

    #service-overzicht .overzicht-block {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        max-height: 100%;
    }

    #service-overzicht .overzicht-block.noscroll {
        max-height: none;
    }

        #service-overzicht .overzicht-block .overzicht-block-body::-webkit-scrollbar {
            width: 8px;
        }

        #service-overzicht .overzicht-block .overzicht-block-body::-webkit-scrollbar-track {
            background: #fff;
            border-radius: 4px;
        }

        #service-overzicht .overzicht-block .overzicht-block-body::-webkit-scrollbar-thumb {
            background-color: darkgrey;
            border-radius: 4px;
            outline: none;
        }

        #service-overzicht .overzicht-block .overzicht-block-body {
            overflow-y: auto;
        }

/*------------------------------------*\
    Default Grid
\*------------------------------------*/
[class*='col-'] {
    float: left;
    padding-right: 10px;
    padding-left: 10px;
}

.no-p {
    padding: 0;
}

.page-container {
    padding: 60px 0;
}

.grid-big {
    width: 100%;
    max-width: 1620px;
    margin: 0 auto;
    *zoom: 1;
}

.grid {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    *zoom: 1;
}


    .grid:after {
        clear: both;
    }

.grid-pad {
    padding-top: 0;
    padding-left: 10px;
    padding-right: 10px;
}

.push-right {
    float: right;
}

.show-on-mobile {
    display: none;
}

.col-1-1 {
    width: 100%;
}

.col-2-3,
.col-8-12 {
    width: 66.66%;
}

.col-1-2,
.col-6-12 {
    width: 50%;
}

.col-1-3,
.col-4-12 {
    width: 33.33%;
}

.col-1-4,
.col-3-12 {
    width: 25%;
}

.col-1-5 {
    width: 20%;
}

.col-1-6,
.col-2-12 {
    width: 16.667%;
}

.col-1-7 {
    width: 14.28%;
}

.col-1-8 {
    width: 12.5%;
}

.col-1-9 {
    width: 11.1%;
}

.col-1-10 {
    width: 10%;
}

.col-1-11 {
    width: 9.09%;
}

.col-1-12 {
    width: 8.33%
}

.col-11-12 {
    width: 91.66%
}

.col-10-12 {
    width: 83.333%;
}

.col-9-12,
.col-3-4 {
    width: 75%;
}

.col-5-12 {
    width: 41.66%;
}

.col-7-12 {
    width: 58.33%
}

.push-2-3,
.push-8-12 {
    margin-left: 66.66%;
}

.push-1-2,
.push-6-12 {
    margin-left: 50%;
}

.push-1-3,
.push-4-12 {
    margin-left: 33.33%;
}

.push-1-4,
.push-3-12 {
    margin-left: 25%;
}

.push-1-5 {
    margin-left: 20%;
}

.push-1-6,
.push-2-12 {
    margin-left: 16.667%;
}

.push-1-7 {
    margin-left: 14.28%;
}

.push-1-8 {
    margin-left: 12.5%;
}

.push-1-9 {
    margin-left: 11.1%;
}

.push-1-10 {
    margin-left: 10%;
}

.push-1-11 {
    margin-left: 9.09%;
}

.push-1-12 {
    margin-left: 8.33%
}

/* Lokaal lights */

.prize-block-pot {
    position: relative;
    background: url(/Images/Scherm_4cijfers_noShadow.png) no-repeat center center;
    background-size: contain;
    width: 500px;
    height: 240px;
    text-align: center;
    margin: 0 auto;
}

    .prize-block-pot .prize {
        font-family: "digital-7";
        font-size: 210px;
        line-height: 240px;
        height: 245px;
        padding: 0 60px;
        position: relative;
        z-index: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        color: #ffe96b;
        text-shadow: 0 0 20px #ffe96b;
    }

        .prize-block-pot .prize::before {
            content: '8888';
            color: #ffc949;
            position: absolute;
            z-index: -1;
            opacity: .1;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        }

    .prize-block-pot .lights {
        list-style: none;
        padding: 0;
        margin: 0;
        position: absolute;
        width: 100%;
        height: 100%;
    }

        .prize-block-pot .lights li {
            width: 5%;
            height: 10%;
            background: url(/Images/Lokaal/Lampje_uit.png) no-repeat center center;
            background-size: contain;
            position: absolute;
        }

            .prize-block-pot .lights li.active {
                background: url(/Images/Lokaal/Lampje_aan.png) no-repeat center center;
                background-size: contain;
            }

            .prize-block-pot .lights li.flicker {
                -webkit-animation: flickerLight .3s infinite;
                animation: flickerLight .3s infinite;
            }

@-webkit-keyframes flickerLight {
    0% {
        background: url(/Images/Lokaal/Lampje_uit.png) no-repeat center center;
        background-size: contain;
    }

    50% {
        background: url(/Images/Lokaal/Lampje_aan.png) no-repeat center center;
        background-size: contain;
    }

    100% {
        background: url(/Images/Lokaal/Lampje_uit.png) no-repeat center center;
        background-size: contain;
    }
}

@keyframes flickerLight {
    0% {
        background: url(/Images/Lokaal/Lampje_uit.png) no-repeat center center;
        background-size: contain;
    }

    50% {
        background: url(/Images/Lokaal/Lampje_aan.png) no-repeat center center;
        background-size: contain;
    }

    100% {
        background: url(/Images/Lokaal/Lampje_uit.png) no-repeat center center;
        background-size: contain;
    }
}



/* TOP */
.prize-block-pot .lights .light-0 {
    top: 2%;
    left: 10%;
}

.prize-block-pot .lights .light-1 {
    top: 2%;
    left: 14%;
}

.prize-block-pot .lights .light-2 {
    top: 2%;
    left: 18%;
}

.prize-block-pot .lights .light-3 {
    top: 2%;
    left: 22%;
}

.prize-block-pot .lights .light-4 {
    top: 2%;
    left: 26%;
}

.prize-block-pot .lights .light-5 {
    top: 2%;
    left: 30%;
}

.prize-block-pot .lights .light-6 {
    top: 2%;
    left: 34%;
}

.prize-block-pot .lights .light-7 {
    top: 2%;
    left: 38%;
}

.prize-block-pot .lights .light-8 {
    top: 2%;
    left: 42%;
}

.prize-block-pot .lights .light-9 {
    top: 2%;
    left: 46%;
}

.prize-block-pot .lights .light-10 {
    top: 2%;
    left: 50%;
}

.prize-block-pot .lights .light-11 {
    top: 2%;
    left: 54%;
}

.prize-block-pot .lights .light-12 {
    top: 2%;
    left: 58%;
}

.prize-block-pot .lights .light-13 {
    top: 2%;
    left: 62%;
}

.prize-block-pot .lights .light-14 {
    top: 2%;
    left: 66%;
}

.prize-block-pot .lights .light-15 {
    top: 2%;
    left: 70%;
}

.prize-block-pot .lights .light-16 {
    top: 2%;
    left: 74%;
}

.prize-block-pot .lights .light-17 {
    top: 2%;
    left: 78%;
}

.prize-block-pot .lights .light-18 {
    top: 2%;
    left: 82%;
}

.prize-block-pot .lights .light-19 {
    top: 2%;
    left: 86%;
}



/* RIGHT TOP CORNER */
.prize-block-pot .lights .light-20 {
    top: 4%;
    left: 90%;
}

.prize-block-pot .lights .light-21 {
    top: 10%;
    left: 93%;
}

.prize-block-pot .lights .light-22 {
    top: 18%;
    left: 94%;
}



/* RIGHT */
.prize-block-pot .lights .light-23 {
    top: 26%;
    left: 94%;
}

.prize-block-pot .lights .light-24 {
    top: 34%;
    left: 94%;
}

.prize-block-pot .lights .light-25 {
    top: 42%;
    left: 94%;
}

.prize-block-pot .lights .light-26 {
    top: 50%;
    left: 94%;
}

.prize-block-pot .lights .light-27 {
    top: 58%;
    left: 94%;
}

.prize-block-pot .lights .light-28 {
    top: 66%;
    left: 94%;
}

.prize-block-pot .lights .light-29 {
    top: 74%;
    left: 94%;
}


/* RIGHT BOTTOM CORNER */
.prize-block-pot .lights .light-30 {
    top: 81.5%;
    left: 92.4%;
}

.prize-block-pot .lights .light-31 {
    top: 86.5%;
    left: 89.2%;
}



/* BOTTOM */
.prize-block-pot .lights .light-32 {
    top: 88%;
    left: 85%;
}

.prize-block-pot .lights .light-33 {
    top: 88%;
    left: 81%;
}

.prize-block-pot .lights .light-34 {
    top: 88%;
    left: 77%;
}

.prize-block-pot .lights .light-35 {
    top: 88%;
    left: 73%;
}

.prize-block-pot .lights .light-36 {
    top: 88%;
    left: 69%;
}

.prize-block-pot .lights .light-37 {
    top: 88%;
    left: 65%;
}

.prize-block-pot .lights .light-38 {
    top: 88%;
    left: 61%;
}

.prize-block-pot .lights .light-39 {
    top: 88%;
    left: 57%;
}

.prize-block-pot .lights .light-40 {
    top: 88%;
    left: 53%;
}

.prize-block-pot .lights .light-41 {
    top: 88%;
    left: 49%;
}

.prize-block-pot .lights .light-42 {
    top: 88%;
    left: 45%;
}

.prize-block-pot .lights .light-43 {
    top: 88%;
    left: 41%;
}

.prize-block-pot .lights .light-44 {
    top: 88%;
    left: 37%;
}

.prize-block-pot .lights .light-45 {
    top: 88%;
    left: 33%;
}

.prize-block-pot .lights .light-46 {
    top: 88%;
    left: 29%;
}

.prize-block-pot .lights .light-47 {
    top: 88%;
    left: 25%;
}

.prize-block-pot .lights .light-48 {
    top: 88%;
    left: 21%;
}

.prize-block-pot .lights .light-49 {
    top: 88%;
    left: 17%;
}

.prize-block-pot .lights .light-50 {
    top: 88%;
    left: 13%;
}

.prize-block-pot .lights .light-51 {
    top: 88%;
    left: 9%;
}




/* LEFT BOTTOM CORNER */
.prize-block-pot .lights .light-52 {
    top: 86%;
    left: 5%;
}

.prize-block-pot .lights .light-53 {
    top: 80%;
    left: 2%;
}

.prize-block-pot .lights .light-54 {
    top: 72%;
    left: 1%;
}


/* LEFT */
.prize-block-pot .lights .light-55 {
    top: 64%;
    left: 1%;
}

.prize-block-pot .lights .light-56 {
    top: 56%;
    left: 1%;
}

.prize-block-pot .lights .light-57 {
    top: 48%;
    left: 1%;
}

.prize-block-pot .lights .light-58 {
    top: 40%;
    left: 1%;
}

.prize-block-pot .lights .light-59 {
    top: 32%;
    left: 1%;
}

.prize-block-pot .lights .light-60 {
    top: 24%;
    left: 1%;
}

.prize-block-pot .lights .light-61 {
    top: 16%;
    left: 1%;
}




/* LEFT TOP CORNER */
.prize-block-pot .lights .light-62 {
    top: 8%;
    left: 2.4%;
}

.prize-block-pot .lights .light-63 {
    top: 2.8%;
    left: 5.5%;
}






/* Lokaal scherm 1 */

#lokaal-scherm1 {
    font-family: "Gotham SSm A", "Gotham SSm B", 'Roboto', sans-serif;
    width: 1280px;
    height: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 0 50px 50px 50px;
    text-transform: uppercase;
    background: #000 no-repeat center center;
    background-size: cover;
    opacity: 0;
    -webkit-animation: flickerscreen 1s forwards;
    animation: flickerscreen 1s forwards;
    background: #000 url(/Images/Lokaal/Kast.png) no-repeat center center;
    background-size: 90%;
    overflow: hidden;
    position: relative;
}

    #lokaal-scherm1::after {
        content: '';
        background: url(/Images/Lokaal/Kast-Overlay.png) no-repeat center center;
        background-size: 90%;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 999;
    }

@-webkit-keyframes flickerscreen {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    20% {
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    40% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    60% {
        opacity: 1;
    }

    70% {
        opacity: 0;
    }

    80% {
        opacity: 1;
    }

    90% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes flickerscreen {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    20% {
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    40% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    60% {
        opacity: 1;
    }

    70% {
        opacity: 0;
    }

    80% {
        opacity: 1;
    }

    90% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#lokaal-scherm1 .prize-block {
    background: url(/Images/Scherm_3cijfers.png) no-repeat center center;
    background-size: contain;
    width: 900px;
    height: 500px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 10px;
}

    #lokaal-scherm1 .prize-block .prize {
        font-family: "digital-7";
        font-size: 390px;
        line-height: 550px;
        height: 500px;
        position: relative;
        z-index: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        padding: 0 185px;
        color: #ffe96b;
        text-shadow: 0 0 20px #ffe96b;
    }

        #lokaal-scherm1 .prize-block .prize::before {
            content: '888';
            font-family: "digital-7";
            font-size: 390px;
            line-height: 550px;
            color: #ffc949;
            position: absolute;
            z-index: -1;
            opacity: .1;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        }

    #lokaal-scherm1 .prize-block.flicker .prize::before {
        -webkit-animation: flickerNumbers .3s infinite;
        animation: flickerNumbers .3s infinite;
    }


@-webkit-keyframes flickerNumbers {
    0% {
        opacity: .1;
    }

    50% {
        opacity: .05;
    }

    100% {
        opacity: .1;
    }
}


@keyframes flickerNumbers {
    0% {
        opacity: .1;
    }

    50% {
        opacity: .05;
    }

    100% {
        opacity: .1;
    }
}

@-webkit-keyframes flickerNumbersOutro {
    0% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}


@keyframes flickerNumbersOutro {
    0% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}


#lokaal-scherm1 .winner-info {
    font-size: 60px;
    line-height: 90px;
    font-weight: 400;
    -webkit-transition: all ease-in .5s;
    -o-transition: all ease-in .5s;
    transition: all ease-in .5s;
    color: #fff;
    opacity: 0;
    padding: 0 20px;
    width: 700px;
    margin: 0 auto;
}

    #lokaal-scherm1 .winner-info.active {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }

    #lokaal-scherm1 .winner-info .ticket,
    #lokaal-scherm1 .winner-info .card {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: center;
        gap: 24px;
    }

        #lokaal-scherm1 .winner-info .ticket span,
        #lokaal-scherm1 .winner-info .card span {
            text-align: right;
            display: inline-block;
        }

    #lokaal-scherm1 .winner-info.active .ticket span {
        -webkit-animation-name: flipInX;
        -webkit-backface-visibility: visible !important;
        animation-name: flipInX;
        backface-visibility: visible !important;
        -webkit-animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-duration: 1s;
        animation-fill-mode: both;
        -webkit-animation-delay: 1s;
        animation-delay: 1s;
    }

    #lokaal-scherm1 .winner-info.active .card span {
        -webkit-animation-name: flipInX;
        -webkit-backface-visibility: visible !important;
        animation-name: flipInX;
        backface-visibility: visible !important;
        -webkit-animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-duration: 1s;
        animation-fill-mode: both;
        -webkit-animation-delay: 3s;
        animation-delay: 3s;
    }

    #lokaal-scherm1 .winner-info .ticket .ticket-nr,
    #lokaal-scherm1 .winner-info .card .card-nr {
        text-align: left;
        padding-left: 10px;
        font-size: 80px;
        line-height: 80px;
        font-weight: 700;
        letter-spacing: 4px;
    }

    #lokaal-scherm1 .winner-info.active .ticket .ticket-nr {
        -webkit-animation-name: flipInX;
        -webkit-backface-visibility: visible !important;
        animation-name: flipInX;
        backface-visibility: visible !important;
        -webkit-animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-duration: 1s;
        animation-fill-mode: both;
        -webkit-animation-delay: 1.5s;
        animation-delay: 1.5s;
    }

    #lokaal-scherm1 .winner-info.active .card .card-nr {
        -webkit-animation-name: flipInX;
        -webkit-backface-visibility: visible !important;
        animation-name: flipInX;
        backface-visibility: visible !important;
        -webkit-animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-duration: 1s;
        animation-fill-mode: both;
        -webkit-animation-delay: 3.5s;
        animation-delay: 3.5s;
    }



@-webkit-keyframes flipInX {
    0% {
        -webkit-animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) rotateX(90deg);
        animation-timing-function: ease-in;
        opacity: 0;
        transform: perspective(400px) rotateX(90deg)
    }

    40% {
        -webkit-animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) rotateX(-20deg);
        animation-timing-function: ease-in;
        transform: perspective(400px) rotateX(-20deg)
    }

    60% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        opacity: 1;
        transform: perspective(400px) rotateX(10deg)
    }

    80% {
        -webkit-transform: perspective(400px) rotateX(-5deg);
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInX {
    0% {
        -webkit-animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) rotateX(90deg);
        animation-timing-function: ease-in;
        opacity: 0;
        transform: perspective(400px) rotateX(90deg)
    }

    40% {
        -webkit-animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) rotateX(-20deg);
        animation-timing-function: ease-in;
        transform: perspective(400px) rotateX(-20deg)
    }

    60% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        opacity: 1;
        transform: perspective(400px) rotateX(10deg)
    }

    80% {
        -webkit-transform: perspective(400px) rotateX(-5deg);
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}




/* Lokaal scherm 2 */

#lokaal-scherm2 {
    font-family: "Gotham SSm A", "Gotham SSm B", 'Roboto', sans-serif;
    width: 640px;
    height: 1080px;
    margin: 0 auto;
    text-align: center;
    padding: 30px 50px 0 50px;
    text-transform: uppercase;
    background: #000 url(/Images/Lokaal/Kast.png) no-repeat center -35px;
    background-size: cover;
    opacity: 0;
    -webkit-animation: flickerscreen 1s forwards;
    animation: flickerscreen 1s forwards;
    overflow: hidden;
    position: relative;
}

    #lokaal-scherm2::after {
        content: '';
        background: url(/Images/Lokaal/Kast-Overlay.png) no-repeat center -35px;
        background-size: cover;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 999;
    }

    #lokaal-scherm2 .location {
        font-family: 'FSSinclair';
        font-size: 40px;
        line-height: 35px;
        height: 100px;
        width: 100%;
        padding: 0 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 10px;
    }

    #lokaal-scherm2 .random-label {
        width: 100%;
        height: 180px;
        background: url(/Images/Lokaal/Logo.png) no-repeat center center;
        background-size: contain;
    }


    #lokaal-scherm2 .prize-block-pot {
        width: 500px;
        height: 240px;
    }

        #lokaal-scherm2 .prize-block-pot .prize {
            font-size: 210px;
            line-height: 240px;
            height: 245px;
            padding: 0 60px;
            text-shadow: 0 0 20px #ffe96b;
        }



    #lokaal-scherm2 .cash-out-title {
        width: 100%;
        height: 40px;
        background: url(/Images/Lokaal/Cashouttext.png) no-repeat center center;
        background-size: contain;
        margin: 0;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    #lokaal-scherm2 .winners {
        margin: 0 auto;
        width: 450px;
    }

        #lokaal-scherm2 .winners .winner {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            padding: 0 10px;
        }


            #lokaal-scherm2 .winners .winner .prize {
                position: relative;
                background: url(/Images/Scherm_3cijfers.png) no-repeat center center;
                background-size: contain;
                width: 120px;
                height: 70px;
                text-align: center;
                border-radius: 10px;
                margin-right: 40px;
            }

                #lokaal-scherm2 .winners .winner .prize .number {
                    font-family: "digital-7";
                    font-size: 50px;
                    line-height: 50px;
                    height: 72px;
                    position: relative;
                    z-index: 1;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    -webkit-box-pack: end;
                    -ms-flex-pack: end;
                    justify-content: flex-end;
                    padding: 0 23px;
                    color: #ffe96b;
                    text-shadow: 0 0 20px #ffe96b;
                }

                    #lokaal-scherm2 .winners .winner .prize .number::before {
                        content: '888';
                        font-family: "digital-7";
                        font-size: 50px;
                        line-height: 50px;
                        color: #ffc949;
                        position: absolute;
                        z-index: -1;
                        opacity: .1;
                        top: 50%;
                        left: 50%;
                        -webkit-transform: translate(-50%, -50%);
                        -ms-transform: translate(-50%, -50%);
                        transform: translate(-50%, -50%);
                    }


            #lokaal-scherm2 .winners .winner .ticket-card {
                width: 210px;
                text-align: left;
                font-size: 18px;
                line-height: 24px;
                font-weight: 400;
            }

            #lokaal-scherm2 .winners .winner .ticket,
            #lokaal-scherm2 .winners .winner .card {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                justify-content: space-between;
            }

            #lokaal-scherm2 .winners .winner .ticket-card .ticket span,
            #lokaal-scherm2 .winners .winner .ticket-card .card span {
                text-align: right;
            }

                #lokaal-scherm2 .winners .winner .ticket-card .ticket span.ticket-nr,
                #lokaal-scherm2 .winners .winner .ticket-card .card span.card-nr {
                    font-size: 24px;
                    font-weight: 700;
                    letter-spacing: 2px;
                }







/* Lokaal scherm full */

#lokaal-scherm-full {
    font-family: "Gotham SSm A", "Gotham SSm B", 'Roboto', sans-serif;
    width: 1920px;
    height: 1080px;
    margin: 0 auto;
    text-align: center;
    text-transform: uppercase;
    background: #000 url(/Images/Lokaal/Kast.png) no-repeat center -120px;
    background-size: 70%;
    opacity: 0;
    -webkit-animation: flickerscreen 1s forwards;
    animation: flickerscreen 1s forwards;
    overflow: hidden;
    position: relative;
}

    #lokaal-scherm-full::after {
        content: '';
        background: url(/Images/Lokaal/Kast-Overlay.png) no-repeat center -120px;
        background-size: 70%;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 999;
    }

    #lokaal-scherm-full .location {
        font-family: 'FSSinclair';
        font-size: 80px;
        line-height: 65px;
        width: 50%;
        height: 200px;
        padding: 0 50px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 0 auto;
        margin-top: 10px;
    }

    #lokaal-scherm-full .random-label {
        width: 100%;
        height: 385px;
        background: url(/Images/Lokaal/Logo.png) no-repeat center center;
        background-size: contain;
    }


    #lokaal-scherm-full .prize-block-pot {
        width: 980px;
        height: 460px;
    }

        #lokaal-scherm-full .prize-block-pot .prize {
            font-size: 400px;
            line-height: 460px;
            height: 465px;
            padding: 0 130px;
            text-shadow: 0 0 20px #ffe96b;
        }

            #lokaal-scherm-full .prize-block-pot .prize.flicker-outro {
                -webkit-animation: flickerNumbersOutro .4s infinite;
                animation: flickerNumbersOutro .4s infinite;
            }

            #lokaal-scherm-full .prize-block-pot .prize.flicker::before {
                -webkit-animation: flickerNumbers .3s infinite;
                animation: flickerNumbers .3s infinite;
            }

#wizard-keuze a {
    display: block;
    background: #c3a046;
    color: #fff;
    text-decoration: none;
    padding: 2rem 3rem;
    width: 80%;
    margin: 0  auto;
    line-height: normal;
    border-radius: 5px;
    font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
    text-align: center;
}

#wizard-overzicht {
    font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
}

    #wizard-overzicht h2 {
        font-family: 'FSSinclair';
    }

    #wizard-overzicht .form-row {
        padding-top: 18px;
        padding-bottom: 13px;
        margin-bottom: 20px;
    }

        #wizard-overzicht .form-row p {
            font-family: 'FSSinclair';
            margin: 0;
            margin-bottom: 15px;
            font-size: 16px;
        }

        #wizard-overzicht .form-row select {
            background-color: #fff;
            border: 1px solid #fff;
            padding: 10px;
            color: #000;
            width: 100%;
            display: inline-block;
            -moz-appearance: none;
            -webkit-appearance: none;
            appearance: none;
            cursor: pointer;
            background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 23.0.6, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Layer_1' focusable='false' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 286.1 167' style='enable-background:new 0 0 286.1 167;' xml:space='preserve'%3E%3Cpath d='M24.1,0h238c21.4,0,32.1,25.9,17,41l-119,119c-9.4,9.4-24.6,9.4-33.9,0L7.1,41C-8,25.9,2.7,0,24.1,0z'/%3E%3C/svg%3E%0A");
            background-repeat: no-repeat,repeat;
            background-position: right 2rem top 50%,0 0;
            background-size: 1rem;
            margin-bottom: 10px;
        }

        #wizard-overzicht .form-row input[type=text] {
            background-color: #fff;
            border: 1px solid #fff;
            padding: 10px;
            color: #000;
            width: 100%;
            display: inline-block;
            margin-bottom: 10px;
        }

        #wizard-overzicht .form-row input[type=number] {
            background-color: #fff;
            border: 1px solid #fff;
            padding: 10px;
            color: #000;
            width: 100%;
            display: inline-block;
            margin-bottom: 10px;
        }

        #wizard-overzicht .form-row .checkbox {
            margin-bottom: 5px;
        }

        #wizard-overzicht .form-row .campaign-column-list {
            padding-top: 24px;
            columns: 2;
        }

        #wizard-overzicht .form-row .checkbox input {
            display: none;
        }

            #wizard-overzicht .form-row .checkbox input + label {
                line-height: 30px;
                display: inline-block;
                font-size: 13px;
            }

                #wizard-overzicht .form-row .checkbox input + label::before {
                    content: '';
                    display: inline-block;
                    width: 30px;
                    height: 30px;
                    border-radius: 50%;
                    background: transparent;
                    border: 2px solid #ffffff;
                    margin: 0 10px -9px 0;
                }

                #wizard-overzicht .form-row .checkbox input + label:hover {
                    text-decoration: underline;
                    cursor: pointer;
                }

            #wizard-overzicht .form-row .checkbox input:checked + label::before {
                background: #ffffff;
            }


    #wizard-overzicht .field-validation-error {
        font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
        font-size: 1.2rem;
        color: #ff6c6c;
        width: 100%;
        text-align: right;
        display: block;
        margin: -8px 0 0 0;
    }

    #wizard-overzicht .tijd-instellingen-block button {
        float: right;
        margin-top: 20px;
    }

    #wizard-overzicht .overzicht-block-body .save-btn, #wizard-overzicht .overzicht-block-body .price-btn {
        float: right;
    }

    #wizard-overzicht .schermtrekking-gegevens-block .overzicht-block {
        margin: 0 12px;
    }

    #wizard-overzicht .overzicht-block-body .save-btn {
        margin-right: 30px;
        margin-bottom: 32px;
    }

    #wizard-overzicht .select-all {
        width: 100%;
    }


/* SWAL */
.swal2-title {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.swal2-actions button {
    font-size: 1.5rem !important;
}