﻿/*#region colors*/
:root {
    --red: rgb(209,27,53);
    --orange: rgb(249,192,49);
    --yellow: rgb(255,255,53); /*Made up*/
    --blue: rgb(45,171,226);
    --black15: rgb(219,220,221);
    --black30: rgb(187,189,191);
    --black75: rgb(98,99,102);
    --black100: rgb(0,0,0);
}
/*endregion*/

/*#region securitas-sans*/
@font-face {
    font-family: 'SecuritasSans';
    src: url('../fonts/SecuritasSansTT-Light.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: 'SecuritasSans';
    src: url('../fonts/SecuritasSansTT-Bold.ttf') format('truetype');
    font-weight: bold;
}

@font-face {
    font-family: 'SecuritasSans';
    src: url('../fonts/SecuritasSansTT-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'SecuritasSans';
    src: url('../fonts/SecuritasSansTT-LightItalic.ttf') format('truetype');
    font-style: italic;
}
/*#endregion*/

/*#region body*/
body {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background: url(../Content/Images/securitasBackground.jpg) center center no-repeat;
    background-size: cover;
    /*background: rgb(0,0,0);*/ /* Old Browsers */
    /*background: -moz-linear-gradient(-45deg, rgb(0,0,0) 0%, rgb(0,32,63) 50%, rgb(0,0,0) 100%);*/ /* FF3.6+ */
    /*background: -webkit-gradient(left top, right bottom, color-stop(0%, rgb(0,0,0)), color-stop(50%, rgb(0,32,63)), color-stop(100%, rgb(0,0,0)));*/ /* Chrome, Safari4+ */
    /*background: -webkit-linear-gradient(-45deg, rgb(0,0,0) 0%, rgb(0,32,63) 50%, rgb(0,0,0) 100%);*/ /* Chrome10+,Safari5.1+ */
    /*background: -o-linear-gradient(-45deg, rgb(0,0,0) 0%, rgb(0,32,63) 50%, rgb(0,0,0) 100%);*/ /* Opera 11.10+ */
    /*background: -ms-linear-gradient(-45deg, rgb(0,0,0) 0%, rgb(0,32,63) 50%, rgb(0,0,0) 100%);*/ /* IE 10+ */
    /*background: linear-gradient(135deg, rgb(0,0,0) 0%, rgb(0,32,63) 50%, rgb(0,0,0) 100%);*/ /* W3C */
    /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=1 );*/ /* IE6-9 fallback on horizontal gradient */
    background-attachment: fixed;
    font-family: SecuritasSans;
    font-size: 1.5em;
}

::-moz-selection {
    color: rgb(219,220,221); /*15% BLACK*/
    background: rgb(45,171,226); /*MAIN BLUE*/
}

::selection {
    color: rgb(219,220,221); /*15% BLACK*/
    background: rgb(45,171,226); /*MAIN BLUE*/
}

.bold {
    font-weight: bold;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: SecuritasSans;
    color: rgb(45,171,226); /*MAIN BLUE*/
}

h3,
.h3 {
    margin-top: 0px;
    margin-bottom: 25px;
}

body a:link {
    text-decoration: none;
    color: rgb(45,171,226); /*MAIN BLUE*/
}

body a:hover {
    text-decoration: none;
    color: rgb(0,119,183); /*MAIN BLUE DARK*/
}

body a:active {
    text-decoration: none;
    color: rgb(0,119,183); /*MAIN BLUE DARK*/
}

body a:visited {
    text-decoration: none;
    color: rgb(45,171,226); /*MAIN BLUE*/
}

tab1 {
    padding-left: 4em;
}

.tooltiptable {
    position: absolute;
    z-index: 1070;
    display: block;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    color: red;
    font-weight: 400;
    line-height: 1.42857143;
    line-break: auto;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    white-space: normal;
    font-size: 12px;
    filter: alpha(opacity=0);
    opacity: 0;
}

/*#endregion*/

/*#region login*/
.login-layout {
    background: url(../Content/Images/LoginBackgroundSecuritas.jpg) center center no-repeat;
    background-size: cover;
    display: table;
    position: absolute;
    height: 100%;
    width: 100%;
    color: rgb(255,255,255);
}

.custom-login {
    background-color: rgba(127, 127, 127, 0.6);
    padding-top: 50px;
    padding-bottom: 50px;
    border-top: solid 2px rgba(255, 255, 255, 0.5);
    border-bottom: solid 2px rgba(255, 255, 255, 0.5);
    margin-left: 0;
    margin-right: 0;
}

    .custom-login h2 {
        color: rgb(255,255,255);
    }

.login-image {
    max-width: 360px;
    max-height: 180px;
}

.login-images {
    margin-top: 28px;
    float: right;
}

.logo-image {
    margin: 2em;
}

.logo-text {
    padding: 1em;
}

.login-container {
    display: table-cell;
    vertical-align: middle;
}

.login-form {
    min-width: 800px;
}

.login-label {
    /*text-align: right;*/
    vertical-align: middle;
    margin-bottom: 0;
    padding-top: 7px;
}

.logoutpopup {
    display: none;
    position: absolute;
    margin-left: -250px;
    border: 1px solid #ccc;
    padding: 4px 8px;
    text-align: center;
    z-index: 100;
    right: 0px;
    width: max-content;
    background: var(--black100);
}
/*#endregion*/

/*#region empty-layout*/
.empty-layout {
    background: url(../Content/Images/securitasBackground.jpg) center center no-repeat;
    background-size: cover;
    display: table;
    position: absolute;
    height: 100%;
    width: 100%;
    color: rgb(255,255,255);
}

.custom-empty-layout {
    padding-top: 50px;
    padding-bottom: 50px;
    margin-left: 0;
    margin-right: 0;
}

    .custom-empty-layout h2 {
        color: rgb(255,255,255);
    }

.empty-container {
    display: table-cell;
    vertical-align: middle;
}
/*#endregion*/

/*#region desktop-layout*/
/*#region layout*/
.main-content {
    min-height: 813px;
    border-left: 2px solid rgba(255, 255, 255, 0.5);
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    color: rgb(219,220,221); /*15% BLACK*/
    margin: 0;
    padding: 0;
}

.section-row {
    border-top: 2px solid rgba(255, 255, 255, 0.5);
    padding: 20px;
}

.titles-input-row {
    margin-top: -56px;
    padding-left: 160px;
    padding-bottom: 30px;
    /*background-color: red;*/
}

footer {
    text-align: right;
    color: rgb(255,255,255);
    padding: 15px;
}

.sidenav ul li {
    border-top: solid 2px rgba(255, 255, 255, 0.5);
    width: 100%;
}

    .sidenav ul li:last-child {
        border-bottom: solid 2px rgba(255, 255, 255, 0.5);
    }

    .sidenav ul li a {
        color: rgb(255,255,255);
        border-radius: 0;
        background-color: rgba(0,0,0,0) !important;
    }

        .sidenav ul li a:hover {
            color: rgb(0,119,183) !important; /*MAIN BLUE DARK*/
        }

        .sidenav ul li a:focus {
            outline: none;
        }

        .sidenav ul li a:active {
            outline: none;
        }

    .sidenav ul li.selected a {
        color: rgb(45,171,226); /*MAIN BLUE*/
    }

.nav form li a {
    position: relative;
    display: block;
    padding: 10px 15px;
}

.header-row {
    color: rgb(187,189,191); /*30% BLACK*/
}

    .header-row a:link {
        color: rgb(187,189,191) !important; /*30% BLACK*/
    }

    .header-row a:hover {
        text-decoration: none;
        color: rgb(219,220,221) !important; /*15% BLACK*/
    }

    .header-row a:visited {
        text-decoration: none;
        color: rgb(187,189,191); /*30% BLACK*/
    }

    .header-row a:focus {
        text-decoration: none;
        color: #fff !important; /*75% BLACK*/
    }

.header-logo {
    text-align: center;
    padding-left: 15px;
}

.header-title {
    text-align: center;
    height: 120px;
}

    .header-title h1 {
        /*line-height: 120px;*/
        margin-top: 37px;
        /*margin: 0;*/
        font-weight: bold;
        color: rgb(187,189,191); /*30% BLACK*/
    }

.header-login {
    text-align: right;
    /*line-height: 120px;*/
    margin-top: 48px;
}

    .header-login .glyphicon {
        color: var(--black15);
    }

        .header-login .glyphicon:hover {
            color: var(--black30);
            cursor: pointer;
        }

.footer-row {
    color: rgb(187,189,191); /*30% BLACK*/
    text-align: right;
    margin-top: 10px;
    margin-bottom: 15px;
}

    .footer-row a:link {
        color: rgb(187,189,191) !important; /*30% BLACK*/
    }

    .footer-row a:hover {
        text-decoration: none;
        color: rgb(219,220,221) !important; /*15% BLACK*/
    }

    .footer-row a:visited {
        text-decoration: none;
        color: rgb(187,189,191); /*30% BLACK*/
    }

    .footer-row a:focus {
        text-decoration: none;
        color: #fff !important; /*75% BLACK*/
    }

    .footer-row.login {
        bottom: 0px;
        /*right: 10px;*/
        /*right: 208px;*/
        width: 100%;
        position: absolute;
    }

.paged-list-pager {
    text-align: center;
    position: relative;
    bottom: 0;
    width: 99%;
}

.sublabel {
    padding-left: 4em;
}

.licensepopup {
    bottom: 0px;
    width: 100%;
    position: fixed;
    height: 32px;
    font-size: 20px;
    background-color: rgb(187,189,191); /*30% BLACK*/
    text-align: center;
    z-index: 1;
}

    .licensepopup.red {
        background-color: rgb(209,27,53); /*RED*/
        color: rgb(255,255,255);
    }

    .licensepopup.orange {
        background-color: rgb(249,192,49); /*ORANGE*/
    }

    .licensepopup.yellow {
        background-color: rgb(255,255,53); /*Yellow - made up */
    }

/*#endregion*/
/*#region buttons*/
.small-button {
    background: #30a7e1;
    background: -moz-linear-gradient(top, #30a7e1 0%, #1f9ad5 40%, #0079b8 60%, #0176b6 100%);
    background: -webkit-linear-gradient(top, #30a7e1 0%,#1f9ad5 40%,#0079b8 60%,#0176b6 100%);
    background: linear-gradient(to bottom, #30a7e1 0%,#1f9ad5 40%,#0079b8 60%,#0176b6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#30a7e1', endColorstr='#0176b6',GradientType=0 );
    border-radius: 7px;
    color: white !important;
    border-top: 2px solid #72C5F2;
    border-left: 2px solid #419ACC;
    border-bottom: 2px solid #036B9E;
    border-right: 2px solid #1B82B0;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    margin: 2px 2px 2px 0;
    padding: 6.5px 10px;
    font-weight: bold;
    min-width: 180px;
}

    .small-button:hover {
        text-decoration: none;
        background: #269dd1;
        background: -moz-linear-gradient(top, #269dd1 0%, #1591c7 40%, #006fae 60%, #006cac 100%);
        background: -webkit-linear-gradient(top, #269dd1 0%,#1591c7 40%,#006fae 60%,#006cac 100%);
        background: linear-gradient(to bottom, #269dd1 0%,#1591c7 40%,#006fae 60%,#006cac 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#269dd1', endColorstr='#006cac',GradientType=0 );
        color: white;
    }

    .small-button:visited {
        text-decoration: none;
        border-top: 2px solid #72C5F2;
        border-left: 2px solid #419ACC;
        border-bottom: 2px solid #036B9E;
        border-right: 2px solid #1B82B0;
        color: white;
    }

    .small-button:active {
        text-decoration: none;
        color: white;
        border-top: 2px solid #036B9E;
        border-left: 2px solid #1B82B0;
        border-bottom: 2px solid #72C5F2;
        border-right: 2px solid #419ACC;
    }

    .small-button:focus {
        outline: none;
        border-top: 2px solid #036B9E;
        border-left: 2px solid #1B82B0;
        border-bottom: 2px solid #72C5F2;
        border-right: 2px solid #419ACC;
    }

    .small-button a {
        color: rgb(255,255,255) !important;
    }

    .small-button.sidemenu {
        width: 178px;
    }

    .small-button.margin {
        margin: 20px 20px 2px 0;
    }

.wide-button {
    background: #30a7e1;
    background: -moz-linear-gradient(top, #30a7e1 0%, #1f9ad5 40%, #0079b8 60%, #0176b6 100%);
    background: -webkit-linear-gradient(top, #30a7e1 0%,#1f9ad5 40%,#0079b8 60%,#0176b6 100%);
    background: linear-gradient(to bottom, #30a7e1 0%,#1f9ad5 40%,#0079b8 60%,#0176b6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#30a7e1', endColorstr='#0176b6',GradientType=0 );
    border-radius: 7px;
    color: white !important;
    border-top: 2px solid #72C5F2;
    border-left: 2px solid #419ACC;
    border-bottom: 2px solid #036B9E;
    border-right: 2px solid #1B82B0;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    margin: 2px 2px 2px 0;
    padding: 6.5px 10px;
    font-weight: bold;
    width: 314px;
}

    .wide-button:hover {
        text-decoration: none;
        background: #269dd1;
        background: -moz-linear-gradient(top, #269dd1 0%, #1591c7 40%, #006fae 60%, #006cac 100%);
        background: -webkit-linear-gradient(top, #269dd1 0%,#1591c7 40%,#006fae 60%,#006cac 100%);
        background: linear-gradient(to bottom, #269dd1 0%,#1591c7 40%,#006fae 60%,#006cac 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#269dd1', endColorstr='#006cac',GradientType=0 );
        color: white;
    }

    .wide-button:visited {
        text-decoration: none;
        color: white;
    }

    .wide-button:active {
        text-decoration: none;
        color: white;
        border-top: 2px solid #036B9E;
        border-left: 2px solid #1B82B0;
        border-bottom: 2px solid #72C5F2;
        border-right: 2px solid #419ACC;
    }

    .wide-button:focus {
        outline: none;
    }

/*#region pagination button*/
/*TODO: @Martijn*/
.paginationItem {
    color: white;
    text-align: center;
    /*border-radius: 15px;
    border-radius: 5px;*/
    border: none;
    background-color: #0197D0;
    height: 31px;
    width: 31px;
    text-transform: uppercase;
    font-size: 16px;
    margin: 10px 10px;
    padding: 3px;
    display: inline-block;
}

    .paginationItem.quiz {
        height: 45px;
        width: 150px;
    }

    .paginationItem.current {
        padding: 1px;
        border: 2px solid #D11B35;
    }

.currentPaginationItem.quiz {
    height: 45px;
    width: 150px;
}
/*#endregion*/
/*#endregion*/

/*#region input*/

.col-md-3.half {
    padding: 0 0
}

.col-md-4.half {
    padding: 0 0
}

.col-md-5.half {
    padding: 0 0
}

.col-md-6.half {
    padding: 0 0
}

.col-md-10.half {
    max-width: 345px
}

.col-md-12.half {
    max-width: 345px
}

.input-textbox {
    border-radius: 0;
    border: 1px solid rgb(100,100,100);
    box-shadow: inset 3px 3px 6px 0px rgb(80,80,80);
    font-size: 0.9em;
    margin: 2px 2px 2px 0;
    color: black;
    display: inline-block;
}

    .input-textbox:focus {
        border: 1px solid rgb(100,100,100);
        box-shadow: inset 3px 3px 6px 0px rgb(80,80,80);
    }

    .input-textbox.readonly {
        border: 1px solid rgb(100,100,100);
        box-shadow: inset 3px 3px 6px 0px rgb(80,80,80);
        background-color: rgb(160, 160, 160);
    }

    .input-textbox.half {
        margin: 0 0 0 0;
        /*max-width: 155px;*/
        vertical-align: text-top;
        width: initial !important;
        width: 49%;
    }

        .input-textbox.half.left {
            display: inline-block;
            text-align: left;
        }

        .input-textbox.half.right {
            /*margin-left:10px;*/
        }

    .input-textbox.date {
        max-width: 186px;
    }

    .input-textbox.time {
        max-width: 126px;
    }

    .input-textbox.datetimesmall {
        max-width: 52px;
    }

        .input-textbox.datetimesmall.margin {
            margin-left: 14px
        }

    .input-textbox.datetimebig {
        max-width: 68px;
    }

    .input-textbox.timebig {
        max-width: 152px;
        vertical-align: text-top;
    }

    .input-textbox.checkout {
        display: block;
    }

.dynamic-centered-text {
    margin-top: 10%;
}
/*for day & month input*/
.input-textbox-date-small {
    border-radius: 0;
    border: 1px solid rgb(100,100,100);
    box-shadow: inset 3px 3px 6px 0px rgb(80,80,80);
    font-size: 0.9em;
    margin: 2px 2px 2px 0;
    color: black;
    display: inline-block;
    width: 70px;
}

    .input-textbox-date-small:focus {
        border: 1px solid rgb(100,100,100);
        box-shadow: inset 3px 3px 6px 0px rgb(80,80,80);
    }

/*for year input*/
.input-textbox-date-big {
    border-radius: 0;
    border: 1px solid rgb(100,100,100);
    box-shadow: inset 3px 3px 6px 0px rgb(80,80,80);
    font-size: 0.9em;
    margin: 2px 2px 2px 0;
    color: black;
    display: inline-block;
    width: 154px;
}

    .input-textbox-date-big:focus {
        border: 1px solid rgb(100,100,100);
        box-shadow: inset 3px 3px 6px 0px rgb(80,80,80);
    }

.input-textarea {
    border-radius: 0;
    border: 1px solid rgb(100,100,100);
    box-shadow: inset 3px 3px 6px 0px rgb(80,80,80);
    font-size: 1em;
    color: black;
    max-width: 800px;
    min-height: 200px;
    resize: none !important;
}

    .input-textarea:focus {
        border: 1px solid rgb(100,100,100);
        box-shadow: inset 3px 3px 6px 0px rgb(80,80,80);
    }

.small-input-textarea {
    border-radius: 0;
    border: 1px solid rgb(100,100,100);
    box-shadow: inset 3px 3px 6px 0px rgb(80,80,80);
    font-size: 1em;
    color: black;
    max-width: 800px;
    min-height: 100px;
    resize: none !important;
}

    .small-input-textarea:focus {
        border: 1px solid rgb(100,100,100);
        box-shadow: inset 3px 3px 6px 0px rgb(80,80,80);
    }

.input-checkbox {
    margin-top: 0 !important;
}

    .input-checkbox input {
        margin-left: 0 !important;
    }

.control-label {
    text-align: left !important;
}

.big-checkbox {
    height: 1.2em;
    width: 1.2em;
}
/*#endregion*/
/*#endregion*/

#isScanningMessage {
    font-size: 24px;
}

/*#scannedImage {
    max-height: 100px;
}*/
/*#region touch-layout*/
/*#region layout*/
.content-window {
    min-height: 100%;
    margin: 0;
    padding: 0;
}

.main-row {
    min-height: 100%;
    margin: 0;
}

.side-menu {
    margin-left: -15px;
    width: 178px;
    text-align: left;
}

#dd_language {
    width: 178px;
    padding: 0;
    margin-left: -15px;
    margin-top: -6px;
}

.touch-header-title {
    text-align: center;
    height: 120px;
    border-bottom: 1px solid rgb(219,220,221); /*15% BLACK*/
    margin-bottom: 15px;
}

.touch-header-titles {
    margin-top: 44px;
}

.touch-header-subtitles {
    margin-left: 44px;
    margin-right: 44px;
}

.touch-header-title h2 {
    margin: 0;
    font-weight: bold;
    margin-bottom: 5px;
    color: rgb(187,189,191); /*30% BLACK*/
}

.touch-content {
    text-align: center;
    position: initial;
    margin: 0;
    padding: 0;
    color: rgb(255,255,255);
}

    .touch-content h1, .touch-content h2, .touch-content h3, .touch-content h4, .touch-content h5, .touch-content h6 {
        color: rgb(45,171,226); /*MAIN BLUE*/
    }

    .touch-content label {
        color: rgb(255,255,255);
    }

    .touch-content dt {
        color: rgb(255,255,255);
    }

    .touch-content dd {
        color: rgb(255,255,255);
    }

.keyboard {
    /*position: absolute;*/
    bottom: 0%;
    z-index: 1;
}

.button-row {
    /*position: absolute;*/
    bottom: 32%;
    /*width: 67%;*/
    margin-top: 40px;
    z-index: 0;
}

    .button-row.no-keyboard {
        position: absolute;
        width: 67%;
        bottom: 10%;
    }

.bottom-button-row {
    position: absolute;
    bottom: 3%;
    text-align: center;
    width: 97%;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .button-row.no-keyboard {
        bottom: -27%;
        left: 17%;
    }
}

.footer {
    text-align: right;
    color: rgb(255,255,255);
    position: fixed;
    bottom: 0;
    padding: 15px;
    z-index: -1;
}

#language-widescreen {
    display: block;
}

#language-smallscreen {
    display: none;
}

#webcam {
    width: 100%;
    max-height: 250px;
}
/*#endregion*/

/*#region buttons*/
.touch-button {
    background: #30a7e1;
    background: -moz-linear-gradient(top, #30a7e1 0%, #1f9ad5 40%, #0079b8 60%, #0176b6 100%);
    background: -webkit-linear-gradient(top, #30a7e1 0%,#1f9ad5 40%,#0079b8 60%,#0176b6 100%);
    background: linear-gradient(to bottom, #30a7e1 0%,#1f9ad5 40%,#0079b8 60%,#0176b6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#30a7e1', endColorstr='#0176b6',GradientType=0 );
    border-radius: 7px;
    color: white !important;
    border-top: 2px solid #72C5F2;
    border-left: 2px solid #419ACC;
    border-bottom: 2px solid #036B9E;
    border-right: 2px solid #1B82B0;
    height: 67px;
    width: 350px;
    border: none;
    text-transform: uppercase;
    font-size: 20px;
    display: inline-block;
    text-align: center;
    margin: 10px 0;
    padding: 5px 10px;
    line-height: 55px;
    position: relative;
    margin-bottom: -15px\0; /*<- Needed for IE*/
}

    .touch-button:hover {
        text-decoration: none;
        background: #269dd1;
        background: -moz-linear-gradient(top, #269dd1 0%, #1591c7 40%, #006fae 60%, #006cac 100%);
        background: -webkit-linear-gradient(top, #269dd1 0%,#1591c7 40%,#006fae 60%,#006cac 100%);
        background: linear-gradient(to bottom, #269dd1 0%,#1591c7 40%,#006fae 60%,#006cac 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#269dd1', endColorstr='#006cac',GradientType=0 );
        color: white;
    }

    .touch-button:visited {
        text-decoration: none;
        border-top: 2px solid #72C5F2;
        border-left: 2px solid #419ACC;
        border-bottom: 2px solid #036B9E;
        border-right: 2px solid #1B82B0;
        color: white;
    }

    .touch-button:active {
        text-decoration: none;
        color: white;
        border-top: 2px solid #036B9E;
        border-left: 2px solid #1B82B0;
        border-bottom: 2px solid #72C5F2;
        border-right: 2px solid #419ACC;
    }

    .touch-button:focus {
        outline: none;
        border-top: 2px solid #036B9E;
        border-left: 2px solid #1B82B0;
        border-bottom: 2px solid #72C5F2;
        border-right: 2px solid #419ACC;
    }

    .touch-button.line {
        height: auto !important;
        min-height: 67px !important;
        width: 100% !important;
        max-width: 1800px !important;
        margin-top: 35px\0; /*<- Needed for IE*/
    }

/*#region touch button pagination*/
/*TODO: @Martijn*/
touch-paginationItem {
    color: white;
    text-align: center;
    /*border-radius: 15px;*/
    /*border-radius: 5px;*/
    border: none;
    background-color: #0197D0;
    height: 45px;
    width: 45px;
    text-transform: uppercase;
    font-size: 20px;
    margin: 10px 10px;
    padding: 10px;
    display: inline-block;
}

.touch-paginationItem.quiz {
    height: 45px;
    width: 150px;
}

.touch-paginationItem.current {
    padding: 9px;
    border: 1px solid white;
}

.touch-currentPaginationItem.quiz {
    height: 45px;
    width: 150px;
}
/*#endregion*/
/*#endregion*/

/*#region input*/
.touchscreen-textbox {
    border-radius: 0;
    border: 1px solid rgb(100,100,100);
    box-shadow: inset 3px 3px 6px 0px rgb(80,80,80);
    height: 50px;
    width: 350px;
    text-align: center;
    font-size: 30px;
}

    .touchscreen-textbox:focus {
        border: 1px solid rgb(100,100,100);
        box-shadow: inset 3px 3px 6px 0px rgb(80,80,80);
        outline: none;
    }

    .touchscreen-textbox.ordernumber {
        text-align: left;
        text-indent: 10px;
        min-width: 650px;
    }

.centered-autocomplete {
    padding-left: 25%;
}

.centered-confirm-dl {
    margin: 2em 0;
    padding-left: 35%;
}

.touch-label {
    color: white;
    font-size: 18px;
    vertical-align: top;
    margin-right: 20px;
    line-height: 2em;
}

.touch-radiobutton {
    height: 2em;
    width: 2em;
}

.touch-checkbox {
    height: 2em;
    width: 2em;
}

    .touch-checkbox.readonly {
        filter: invert(35%);
    }

#virtualKeyboard table tr {
    background-color: rgba(0,0,0,0);
    border: none;
}

.checkbox-list-table tr td {
    color: rgb(255,255,255);
    font-weight: bold;
}

.checkbox-list-table tr {
    background-color: rgba(0,0,0,0);
    border: none;
}

.checkbox-list-table td {
    padding: 0 15px;
}

.checkbox.readonly {
    filter: invert(35%);
}

.checkbox.hidden {
    visibility: hidden
}

.test-row {
    margin-bottom: 15px;
}

.captchaImage {
    margin-top: 3px;
    margin-bottom: -18px;
    min-height: 50px;
    max-height: 150px;
}
/*#endregion*/
/*#region popup*/
.alertBox {
    color: #ffffff;
    position: absolute;
    top: 250px;
    left: 50%;
    width: 500px;
    margin-left: -250px;
    background-color: rgb(45,171,226); /*MAIN BLUE*/
    /*border: 1px solid #ccc;*/
    padding: 4px 8px;
    color: #000000;
    text-align: center;
    z-index: 100;
    box-shadow: 7px 7px 6px 0px black;
}

    .alertBox.warning {
        color: #000000;
        background-color: #f4be04;
    }

.alertBoxMessage {
    padding: 10px;
    color: #ffffff;
    font-family: Calibri;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
}

    .alertBoxMessage.warning {
        color: #000000;
    }

.popupbutton {
    /*position: absolute;*/
    background: #30a7e1;
    background: -moz-linear-gradient(top, #30a7e1 0%, #1f9ad5 40%, #0079b8 60%, #0176b6 100%);
    background: -webkit-linear-gradient(top, #30a7e1 0%,#1f9ad5 40%,#0079b8 60%,#0176b6 100%);
    background: linear-gradient(to bottom, #30a7e1 0%,#1f9ad5 40%,#0079b8 60%,#0176b6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#30a7e1', endColorstr='#0176b6',GradientType=0 );
    border-radius: 7px;
    color: white;
    border-top: 2px solid #72C5F2;
    border-left: 2px solid #419ACC;
    border-bottom: 2px solid #036B9E;
    border-right: 2px solid #1B82B0;
    text-align: center;
    font-family: Calibri;
    font-weight: bold;
    font-size: 18px;
    width: 200px;
    height: 75px;
    margin: 10px 10px 10px 10px;
    vertical-align: top;
    /*left: 200px;*/
}

    .popupbutton:hover {
        text-decoration: none;
        background: #269dd1;
        background: -moz-linear-gradient(top, #269dd1 0%, #1591c7 40%, #006fae 60%, #006cac 100%);
        background: -webkit-linear-gradient(top, #269dd1 0%,#1591c7 40%,#006fae 60%,#006cac 100%);
        background: linear-gradient(to bottom, #269dd1 0%,#1591c7 40%,#006fae 60%,#006cac 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#269dd1', endColorstr='#006cac',GradientType=0 );
        color: white;
    }

    .popupbutton:visited {
        text-decoration: none;
        border-top: 2px solid #72C5F2;
        border-left: 2px solid #419ACC;
        border-bottom: 2px solid #036B9E;
        border-right: 2px solid #1B82B0;
        color: white;
    }

    .popupbutton:active {
        text-decoration: none;
        color: white;
        border-top: 2px solid #036B9E;
        border-left: 2px solid #1B82B0;
        border-bottom: 2px solid #72C5F2;
        border-right: 2px solid #419ACC;
    }

    .popupbutton:focus {
        outline: none;
        border-top: 2px solid #036B9E;
        border-left: 2px solid #1B82B0;
        border-bottom: 2px solid #72C5F2;
        border-right: 2px solid #419ACC;
    }

    .popupbutton.warning {
        /*position: absolute;*/
        color: #ffffff;
        background-color: #000000;
        width: 100px;
        height: 48px;
    }

.big-popup-window {
    display: none;
    position: fixed; /* Stay in place */
    z-index: 10; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    /*background-color: rgb(0,0,0);*/ /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.big-popup-window-content {
    background: url(../Content/Images/securitasBackground.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin: 5% auto; /* 15% from the top and centered */
    padding: 40px;
    border: 2px solid #888;
    width: 85%; /* Could be more or less, depending on screen size */
    min-height: 20%;
    max-height: 80%;
    overflow: auto; /* Enable scroll if needed */
}
/*#endregion*/

.QuestionText {
    text-align: left;
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 10px;
    max-width: 100%;
    font-weight: bold;
}

.Answer {
    text-align: left;
    margin-bottom: 3px;
    max-width: 100%;
}

/*.Answer.Answertext {
        margin-bottom: -3px;
    }*/
/*#endregion*/

/*#region general*/
/*#region uncategorized*/
.left-align {
    text-align: left;
}

.right-align {
    text-align: right;
}

.centered {
    text-align: center;
}

.no-left-padding {
    padding-left: 0;
}

.form-inline {
    display: inline;
    /*margin: 0;*/
    padding: 0;
}

.custom-form-group {
    /*padding-left: 4.6%;
    padding-right: 4.6%;*/
    margin-bottom: 0;
}

.password {
    letter-spacing: 5px;
}

.align-top {
    vertical-align: text-top;
}
/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
    text-align: left;
}

.dl-horizontal dd {
    margin: 3px;
}

.dl-wide dt {
    width: 400px;
}

.dl-wide dd {
    margin-left: 420px;
}

.dl-confirm dd {
    margin-top: 20px;
}

form .row {
    margin-left: 0;
    margin-right: 0;
}

.inline {
    display: inline-block;
}
/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 314px;
}

.rightborder {
    border-right: 1px solid var(--black75);
    min-height: 645px;
}

/*#endregion*/

/*#region table*/
.table {
    margin-bottom: 25px;
    max-height: 100px;
    overflow-y: auto;
}

    .table td {
        border: 1px solid rgb(219,220,221); /*15% BLACK*/
        color: #000;
    }

    .table th {
        background-color: rgb(45,171,226); /*MAIN BLUE*/
        color: rgb(255,255,255);
        height: 4em;
        border: 1px solid rgb(219,220,221); /*15% BLACK*/
        vertical-align: middle !important;
    }

        .table th a:link {
            color: rgb(255,255,255) !important;
        }

        .table th a:hover {
            text-decoration: none;
            color: rgb(219,220,221) !important; /*15% BLACK*/
        }

        .table th a:visited {
            text-decoration: none;
            color: rgb(255,255,255);
        }

        .table th a:focus {
            text-decoration: none;
            color: #fff !important; /*75% BLACK*/
        }

    .table tr {
        background-color: rgb(219,220,221); /*15% BLACK*/
        /*color: rgb(0,0,0);*/
        border-bottom: 1px solid rgb(219,220,221); /*15% BLACK*/
        /*height: 59px;*/
    }

        .table tr:nth-child(even) {
            background-color: rgb(255,255,255);
        }

        .table tr td {
            vertical-align: middle !important;
        }

    .table.myvisits tr {
        /*background-color: rgb(255,255,255);*/
        background-color: rgb(255,255,255);
    }

    .table.half {
        width: 45%;
        color: #FF0000;
    }

.table-line td {
    border-top: 2px solid black !important;
}
/*#endregion*/

/*#region media-containers*/
.language {
    /*under*/
    /*
	position: absolute;
	bottom: 50px;
	height: 32px;
	text-align: center;
	width: 100%;
	*/
    /*left*/
    position: fixed;
    left: 35px;
    top: 270px;
    height: 32px;
    text-align: center;
    width: 50px;
}

.image {
    height: 338px;
}

.bigImage {
    min-height: 250px;
    max-height: 507px;
}

.tabletImage {
    display: inline-block;
    min-height: 40%;
    max-height: 60%;
}

.smallImage {
    min-height: 100px;
    max-height: 150px;
}

.flagImage {
    height: 32px;
    width: 48px;
    margin-top: 10px;
    margin-left: -9px
}

    .flagImage.large {
        height: 96px;
        width: 144px;
        margin-top: 10px;
        margin-left: -9px
    }

.footerImage {
    max-height: 36px;
}

.SOCImage {
    max-height: 240px;
    max-width: 440px
}

    .SOCImage.small {
        max-height: 130px;
        max-width: 220px
    }

.mp4ViewerWindow {
    width: 600px;
    height: 338px;
    margin-left: -10px;
    background: #000000;
    border: none;
}

.bigMp4ViewerWindow {
    width: 855px;
    height: 482px;
    background: #000000;
    border: none;
}

.fullscreenViewerWindow {
    width: 1280px;
    height: 720px;
    background: #000000;
    border: none;
    /* width: fit-content;
    height: fit-content;*/
}

.video-controls {
    font-size: 3em;
}

    .video-controls button {
        margin: 0 60px;
    }

    .video-controls .volume-controls button {
        margin: 0 11px 0 0px;
    }


.slidecontainer {
    width: 100%; /* Width of the outside container */
}

.volumeSlider {
    -webkit-appearance: none;
    display: initial !important;
    background: var(--blue);
    height: 10px;
    width: 388px !important;
    max-width: 388px !important;
    margin: 0 11px 0 0px;
}

    .volumeSlider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 10px;
        height: 25px;
        background: var(--black15);
        cursor: pointer;
    }

    .volumeSlider::-moz-range-thumb {
        width: 10px;
        height: 25px;
        background: var(--black15);
        cursor: pointer;
    }

.small-video-controls {
    font-size: 1em;
}

    .small-video-controls button {
        margin: 0.5em 2em;
    }

.video-container {
    text-align: center;
}

.pdfViewerWindow {
    width: 420px;
    height: 594px;
    margin-left: -10px;
    margin-bottom: 10px;
}

.smallPdfViewerWindow {
    width: 200px;
    height: 283px;
}

.smallPdfDiv {
    height: 320px;
}

.smallImage {
    max-width: 200px;
    max-height: 283px;
}

.mediumPdfViewerWindow {
    width: 350px;
    height: 495px;
}

.smallDocContainer {
    margin: 10px;
    float: left;
}

.smallImageWindow {
    max-height: 150px;
    max-width: 150px;
    margin-bottom: 10px;
    margin-left: 10px;
}

.webcamImageControl {
    margin: 0 20px;
    background-color: rgb(0,0,0);
}

/*#endregion*/

/*#region accent-colors*/
.text-warning {
    color: rgb(249,192,49) !important; /*ORANGE*/
}

.green-text {
    color: rgb(17,201,183) !important;
}

.green-table-row td {
    color: rgb(255,255,255);
    background-color: rgb(17,201,183) !important; /*MAIN GREEN*/
}

.green-table-row .glyphicon {
    color: rgb(255,255,255);
}

    .green-table-row .glyphicon:hover {
        color: rgb(187,189,191); /*30% BLACK*/
    }

.text-success {
    color: rgb(17,201,183) !important; /*MAIN GREEN*/
    font-size: 18px;
    font-weight: bold;
}

.red-text {
    color: rgb(209,27,53) !important;
}

.red-table-row td {
    color: rgb(255,255,255);
    background-color: rgb(209,27,53) !important; /*RED*/
}

.red-table-row .glyphicon {
    color: rgb(255,255,255);
}

    .red-table-row .glyphicon:hover {
        color: rgb(187,189,191); /*30% BLACK*/
    }

.text-danger {
    color: rgb(209,27,53); /*RED*/
    font-size: 18px;
    font-weight: bold;
}

    .text-danger ul {
        list-style-type: none;
        padding: 0;
    }

.blue-text {
    color: rgb(0,119,183) !important;
}

.blue-table-row td {
    color: rgb(255,255,255);
    background-color: rgb(0,119,183) !important; /*MAIN BLUE DARK*/
}

.blue-table-row .glyphicon {
    color: rgb(255,255,255);
}

    .blue-table-row .glyphicon:hover {
        color: rgb(187,189,191); /*30% BLACK*/
    }

.yellow-text {
    color: rgb(249,192,49) !important;
}

.yellow-table-row td {
    color: rgb(0,0,0);
    background-color: rgb(249,192,49) !important; /*ORANGE*/
}

.yellow-table-row .glyphicon {
    color: rgb(0,0,0);
}

    .yellow-table-row .glyphicon:hover {
        color: rgb(98,99,102); /*75% BLACK*/
    }

.text-info {
    color: rgb(0,119,183) !important; /*MAIN BLUE DARK*/
}
/*#endregion*/

.logoPoseidon {
    background: url(../Content/Images/securitasLogo.png) top left no-repeat;
    background-size: contain;
    display: block;
    height: 100px;
    text-indent: -9999px;
    margin: 10px 0;
}

.logoCompany {
    background: url(../Uploads/Customlayout/CompanyLogo.png) top left no-repeat;
    background-size: contain;
    display: block;
    height: 100px;
    text-indent: -9999px;
    margin: 10px 0;
}

/*#region glyphicons*/
.glyphicon {
    margin: 5px;
    color: rgb(45,171,226); /*MAIN BLUE*/
    vertical-align: middle;
    font-size: 1.3em;
    text-align: center;
    background: none;
    border: none;
    padding: 0;
}

    .glyphicon:hover {
        color: rgb(0,119,183); /*MAIN BLUE DARK*/
        outline: none;
    }

    .glyphicon:visited {
        text-decoration: none;
    }

    .glyphicon:active {
        text-decoration: none;
    }

    .glyphicon:focus {
        outline: none;
    }

.glyphicon-table-cell {
    min-width: 150px;
}
/*#endregion*/
/*#endregion*/

/*#region contractors portal*/
.requirementsTable th {
    height: 2em;
    padding: 5px;
    border-right: 1px solid rgb(219,220,221); /*15% BLACK*/
}

.requirementsTable tr td {
    text-align: center;
    max-width: 150px;
}

.requirementsIndexTable tr td {
    max-width: 500px;
}
/*#endregion*/

/*#region visitors portal*/
.touchscreentable {
    /*background-color: #55dd55;*/
    /*border: 1px solid white;*/
    /*text-align: right !important;*/
    width: 100%;
    text-align: left;
    margin: 0 auto;
}

    .touchscreentable td, .touchscreentable th {
        /*background-color: #2233AA;*/
        border-bottom: 1px solid white;
        color: #0197D0;
        font-size: 18px;
        text-align: left !important;
        /*text-align: right !important;*/
        /*width: 350px;*/
        white-space: nowrap;
        padding: 10px;
    }

    .touchscreentable th {
        color: #fff;
    }

    .touchscreentable.compartment td, .touchscreentable.compartment th {
        /*background-color: #2233AA;*/
        /*border: 1px solid white;*/
        color: #0197D0;
        font-size: 23px;
        text-align: left !important;
        /*text-align: right !important;*/
        /*width: 350px;*/
        white-space: nowrap;
    }

    .touchscreentable.compartment.lastsubstance td, .touchscreentable.lastsubstance th {
        /*background-color: #2233AA;*/
        /*border: 1px solid white;*/
        color: #0197D0;
        font-size: 23px;
        text-align: left !important;
        /*text-align: right !important;*/
        /*width: 350px;*/
        white-space: nowrap;
    }

.working-area-list {
    max-height: 169px;
    /*max-height: 250px;*/
    width: 328px;
    overflow-y: auto;
    padding-bottom: 6px;
}

.visitor {
    margin-left: 25px;
}

/*#endregion*/

@media screen and (max-width: 1170px) {
    .video-controls {
        font-size: 2em;
    }

        .video-controls button {
            margin: 0 60px;
        }

        .video-controls .volume-controls button {
            margin: 0 7px 0 0px;
        }

    .volumeSlider {
        height: 5px;
        width: 380px !important;
        max-width: 380px !important;
        margin: 0px 7px 0 0px;
    }

        .volumeSlider::-webkit-slider-thumb {
            width: 10px;
            height: 15px;
        }

        .volumeSlider::-moz-range-thumb {
            width: 10px;
            height: 15px;
        }
}

/*#region small-screens*/
@media screen and (max-width: 990px) {
    .login-images {
        text-align: center;
        float: none;
    }

    .login-form {
        min-width: initial;
        text-align: center;
    }

    .input-textbox {
        margin: auto;
    }

    .sidenav ul {
        max-height: 200px;
        overflow-y: auto;
    }

    .keyboard {
        position: relative;
        /*display: none;*/
    }

    .button-row {
        position: relative;
        width: auto;
    }

        .button-row.no-keyboard {
            position: relative;
            width: auto;
        }

    .footer {
        bottom: auto;
    }

    .custom-form-group {
        text-align: left;
    }

    #language-widescreen {
        display: none;
    }

    #language-smallscreen {
        display: block;
    }

    .logoutpopup {
        top: -10px;
        right: 15px;
    }

    .header-login .glyphicon {
        top: -38px;
    }

    .custom-form-group {
        padding-left: 0px;
        margin-bottom: 0;
    }
}


@media screen and (max-width: 1024px) {
    .small-button.sidemenu {
        width: 100px !important;
    }

    .touch-button.line {
        max-width: 580px !important;
    }


    .video-controls {
        font-size: 1em;
    }

        .video-controls button {
            margin: 0 60px;
        }

        .video-controls .volume-controls button {
            margin: 0px 7px 0 3px;
        }

    .volumeSlider {
        height: 5px;
        width: 352px !important;
        max-width: 380px !important;
        margin: 0px 7px 0 3px;
    }

        .volumeSlider::-webkit-slider-thumb {
            width: 10px;
            height: 15px;
        }

        .volumeSlider::-moz-range-thumb {
            width: 10px;
            height: 15px;
        }
}





@media screen and (max-width: 705px) {
    .video-controls {
        font-size: 1em;
    }

        .video-controls button {
            margin: 0 60px;
        }

        .video-controls .volume-controls button {
            margin: 0px 7px 0 3px;
        }

    .volumeSlider {
        height: 5px;
        width: 352px !important;
        max-width: 380px !important;
        margin: 0px 7px 0 3px;
    }

        .volumeSlider::-webkit-slider-thumb {
            width: 10px;
            height: 15px;
        }

        .volumeSlider::-moz-range-thumb {
            width: 10px;
            height: 15px;
        }
}

@media screen and (max-width: 620px) {
    .video-controls {
        font-size: 3em;
    }

        .video-controls button {
            margin: 0 60px;
        }

        .video-controls .volume-controls button {
            margin: 0px 16px 0 0px;
        }

    .volumeSlider {
        height: 5px;
        width: 160px !important;
        max-width: 160px !important;
        margin: 0px 16px 0 0px;
    }

        .volumeSlider::-webkit-slider-thumb {
            width: 10px;
            height: 15px;
        }

        .volumeSlider::-moz-range-thumb {
            width: 10px;
            height: 15px;
        }
}

@media screen and (max-width: 500px) {
    .keyboard {
        /*position: relative;*/
        display: none;
    }
}

@media screen and (max-width: 475px) {
    /*.keyboard {
        position: relative;
        display: none;
    }*/

    .logo-image {
        width: 300px;
        margin: 25px 0;
    }
}
/*#endregion*/
