﻿/*simplyLOCAL CSS -> overrides simply-X default*/
@font-face {
    font-family: 'Interstate';
    src: url('fonts/Interstate-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'NotoSans';
    src: url('fonts/NotoSans-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: local('Open Sans'), local('OpenSans'), url(https://fonts.gstatic.com/s/opensans/v13/cJZKeOuBrn4kERxqtaUH3T8E0i7KZn-EPnyo3HZu7kw.woff) format('woff');
}
@font-face {
    font-family: "FranklinGothic";
    font-style: normal;
    src: url(../../fonts/FranklinGothicLTPro-DmCn.otf);
    /*if IE */
    src: local("FranklinGothicLTPro-BkCn.otf"), url("../../fonts/FranklinGothicLTPro-DmCn.otf") format("truetype");
    /* non-IE */
}
.sx {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    text-transform: none !important;
    color: white;
}
.sx-brand > a:hover {
    font-family: 'Open Sans', sans-serif;
    text-transform: none !important;
}

label {
    color: #010101;
}

.form-control {
    background-color: #ede4e4;
    color: #010101;
}

small {
    color: #000;
}

.popover {
    background-color: #000;
    border: 1px solid gray;
    color: #fff;
}
.popover-title {
    background-color: #000;
    color: #fff;
}
.popover > .arrow, .popover > .arrow:after {
    border-color: transparent;
    border-style: solid;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #000;
}
.table-hover > tbody > tr:hover {
    background-color: #000;
}

.sx-pageloader {
    text-align: center;
    z-index: 9999999;
    background-color: rgba(255, 255, 255, 0.7);
    font-family: 'Open Sans', sans-serif;
    color: #FCED5A;
    position: fixed;
    padding-top: 10%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: large;
    height: 100%;
}

.itemOptionVariant {
    min-height: 100px;
    max-height: 100px;
    min-width: 100px;
    -webkit-box-shadow: 1px 1px 10px 1px rgb(163 163 163);
    -moz-box-shadow: 1px 1px 10px 1px rgba(163,163,163,1);
    box-shadow: 1px 1px 10px 1px rgb(163 163 163);
    text-align: center;
    align-content: center;
    display: inline-grid;
    align-items: center;
    margin: 3px;
    justify-content: center;
    border: 1px solid gray;
    border-radius: 10%;
    padding: 20px;
    color: white;
}

.itemOptionVariant-selected {
    color: white;
    background-color: #67c246;
}

#minus {
    background-color: gray;
    color: white;
    border-color: gray;
}

#plus {
    background-color: gray;
    color: white;
    border-color: gray;
}

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.close {
    color: #fff;
    opacity: 1;
}

.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10 {
    margin-bottom: 4px;
}
/* Loading Overlay */
.loadingOverlay {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 9999999;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: 10px solid #f7f7f7;
    border-radius: 50%;
    border-top: 10px solid #FCED5A;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.check_box {
    padding-left: 6px;
}
.check_box label {
    display: inline-block;
    position: relative;
    padding-left: 5px;
    color: #010101;
}
.check_box label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    margin-left: -20px;
    border: 1px solid #cccccc;
    border-radius: 3px;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}
.check_box label::after {
    display: inline-block;
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    top: 0;
    margin-left: -20px;
    padding-left: 3px;
    padding-top: 1px;
    font-size: 11px;
    color: #555555;
}

.check_box input[type="checkbox"] {
    opacity: 0;
}
.check_box input[type="checkbox"]:focus + label::before {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}
.check_box input[type="checkbox"]:checked + label::after {
    font-family: 'FontAwesome';
    content: "\f00c";
}
.check_box input[type="checkbox"]:disabled + label {
    opacity: 0.65;
}

.check_box input[type="checkbox"]:disabled + label::before {
    background-color: #eeeeee;
    cursor: not-allowed;
}

.check_box.check_box-circle label::before {
    border-radius: 50%;
}

.check_box.checkbox-inline {
    margin-top: 0;
}
/*primary*/
.check_box-primary input[type="checkbox"]:checked + label::before {
    background-color: #428bca;
    border-color: #428bca;
}

.check_box-primary input[type="checkbox"]:checked + label::after {
    color: #fff;
}
/*danger*/
.check_box-danger input[type="checkbox"]:checked + label::before {
    background-color: #d9534f;
    border-color: #d9534f;
}

.check_box-danger input[type="checkbox"]:checked + label::after {
    color: #fff;
}
/*info*/
.check_box-info input[type="checkbox"]:checked + label::before {
    background-color: #5bc0de;
    border-color: #5bc0de;
}

.check_box-info input[type="checkbox"]:checked + label::after {
    color: #fff;
}
/*warning*/
.check_box-warning input[type="checkbox"]:checked + label::before {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}

.check_box-warning input[type="checkbox"]:checked + label::after {
    color: #fff;
}
/*success*/
.check_box-success input[type="checkbox"]:checked + label::before {
    background-color: #5cb85c;
    border-color: #5cb85c;
}

.check_box-success input[type="checkbox"]:checked + label::after {
    color: #fff;
}

@media (max-width: 768px) {
    .navbar-toggle-desktop {
        display: none;
    }
}
/*Internet Explorer / EDGE Navbar Brand FIX*/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    /* IE10+ CSS */
    .sx-brand {
        margin-top: -25px;
        float: left;
        margin-left: 15px;
    }
}
@supports (-ms-accelerator:true) {
    /* IE Edge 12+ CSS */
    .sx-brand {
        margin-top: -25px;
        float: left;
        margin-left: 15px;
    }
}
@supports (-ms-ime-align:auto) {
    /* IE Edge 16+ CSS */
    .sx-brand {
        margin-top: -25px;
        float: left;
        margin-left: 15px;
    }
}

footer {
    height: 30px;
}
/* Lastly, apply responsive CSS fixes as necessary */
@media (max-width: 767px) {
    body {
        font-size: 16px !important;
    }
    footer {
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.icon-inverted {
    filter: brightness(1) invert(0);
}

/*main body design*/
body {
    font-family: FranklinGothic;
    background-color: #FCED5A;
    color: #010101;
    font-size: 20px;
}

/*navbar design*/
.sidebar {
    font-family: 'Open Sans', sans-serif;
    background-color: #000;
    -webkit-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.75);
    box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.75);
    height: 102%;
    margin-top: -2px;
}
.sidebar h1, .sidebar h2, .sidebar h3, .sidebar h4, .sidebar h5, .sidebar h6, .sidebar h7, .sidebar h8, .sidebar h9, .sidebar h10 {
    color: #fff;
}

.navbar-brand {
    font-family: 'Open Sans', sans-serif;
    margin-left: 0px !important;
}
.navbar-brand > img {
    display: unset;
    filter: brightness(100) invert(0);
}
.navbar-btn > button {
    background-color: #f0f0f0;
}
.navbar-inverse {
    background-color: #000 !important;
    border-color: lightgray;
    font-family: 'Open Sans', sans-serif;
    box-shadow: 0 0 15px 1px rgb(0 0 0 / 7%);
}
.navbar-inverse .navbar-brand:hover {
    color: #696969
}
.navbar-collapse > li > a:hover, .nav > li > a:focus {
    color: #fff;
}
.navbar-collapse > li > a {
    color: #fff;
}
.navbar-inverse > li > a:hover, .nav > li > a:focus {
    color: #fff;
}
.navbar-inverse > li > a {
    color: #fff;
}
.nav > li > a > img {
    filter: brightness(100) invert(0);
}
.invertfix{
    filter: brightness(100) invert(1) !important; 
}
/*.nav > li {}*/
/*.navbar-collapse > li {}*/
/*.navbar-inverse > li {}*/
.nav > li > a:hover, .nav > li > a:focus {
    color: #fff !important;
}
.nav > li > a {
    color: #fff !important;
}

/*headline design*/
h1, h2, h3, h4, h5, h6, h7, h8, h9, h10 {
    font-family: 'FranklinGothic', sans-serif;
    color: #000;
}

.jumbotron p, .jumbotron label {
    color: #010101;
    margin-bottom: 0%;
}
/*globales link design*/
a {
    color: #67c246;
    font-family: 'FranklinGothic', sans-serif;
}
a:focus, a:hover, a:visited, a:visited:hover {
    color: #010101;
    text-decoration: none !important
}

.open > .dropdown-menu {
    overflow-y: scroll;
    z-index: 999999999999 !important
}
/*global panels*/
.panel {
    -webkit-box-shadow: 2px 2px 13px 1px rgba(163,163,163,1);
    -moz-box-shadow: 2px 2px 13px 1px rgba(163,163,163,1);
    box-shadow: 2px 2px 13px 1px rgba(163,163,163,1);
    font-family: 'FranklinGothic', sans-serif;
    background-color: #fff;
}

.panel-body {
    padding: 15px;
    background-color: #fff;
}

.panel-default > .panel-heading {
    color: #010101;
    background-color: #fff;
    border-color: darkgrey;
}
/*global modals*/
.modal {
    font-family: 'FranklinGothic', sans-serif;
}

.modal-content {
    background-color: #fff;
    border: 1px solid darkgray;
}
/*global jumbotron design*/
.jumbotron {
    background-color: #fff;
    -webkit-box-shadow: 2px 2px 13px 1px rgba(163,163,163,1);
    -moz-box-shadow: 2px 2px 13px 1px rgba(163,163,163,1);
    box-shadow: 2px 2px 13px 1px rgba(163,163,163,1);
    padding-left: 10px !important;
    padding-right: 10px !important;
    padding-bottom: 50px;
    color: #010101;
}
/*jquery Number Counter*/
.counter {
    background-color: #fff;
    margin: 0.5%;
    padding: 5px;
    border-radius: 5px;
    font-family: 'FranklinGothic', sans-serif;
    -webkit-box-shadow: 2px 2px 13px 1px rgba(163,163,163,1);
    -moz-box-shadow: 2px 2px 13px 1px rgba(163,163,163,1);
    box-shadow: 2px 2px 13px 1px rgba(163,163,163,1);
    color: white;
}
.count-img {
    margin-top: 10px;
    margin-bottom: 0;
}
.count-title {
    font-size: 30px;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
    font-family: 'FranklinGothic', sans-serif;
}
.count-text {
    font-size: 13px;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
    font-family: 'FranklinGothic', sans-serif;
    color: #000 !important;
}
.col_once {
    width: 95.9%;
}
.col_half {
    width: 40%;
    display: inline-block;
}
.col_sec_row {
    width: 47%;
    display: inline-block;
}
.col_third_row {
    width: 31%;
    display: inline-block;
}
.col_third {
    width: 32%;
    display: inline-block;
}
.col_fourth {
    width: 23.5%;
    display: inline-block;
}
.col_fifth {
    width: 18.4%;
    display: inline-block;
}
.col_sixth {
    width: 15%;
    display: inline-block;
}
.col_three_fourth {
    width: 74.5%;
    display: inline-block;
}
.col_twothird {
    display: inline-block;
    width: 66%;
}
.col_half, .col_third, .col_twothird, .col_fourth, .col_three_fourth, .col_fifth {
    display: inline-block;
    margin-right: 0.5%;
    margin-bottom: 20px;
}

.end {
    margin-right: 0 !important;
}
/* Only affects between 100 and 790px width - for portrait layouts only */
@media only screen and (min-width: 100px) and (max-width: 790px) {
    .col_half .col_third .col_fourth .col_fifth .col_sixth .col_three_fourth .col_twothird .col_half, .col_third, .col_twothird, .col_fourth, .col_three_fourth, .col_fifth, .col_sec_row, .col_third_row {
        width: 99%;
        margin-bottom: 20px;
    }
    .counter {
        margin: 0%;
        margin-bottom: 5px;
        width: 100%;
    }
    .navbar-inverse .navbar-toggle .icon-bar {
        background-color: #fff;
    }
    .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
        background-color: #333;
    }
    .navbar-collapse.collapsing {
        color: white;
        background-color: black;
    }
    .navbar-collapse.collapse.in {
        color: white;
        background-color: black;
    }
    .navbar-inverse {
        background-color: white;
        border-color: lightgray;
    }
    .nav > li > a:hover, .nav > li > a:focus {
        color: #fff;
        background-color: rgba(61, 61, 61, 0.4) !important;
    }
    .nav > li > a {
        color: #67c246;
        background-color: transparent !important;
    }
    .nav > li {
        color: #9d9d9d
    }
    .sx-brand {
        margin-right: 15px;
    }

    #rc-imageselect, .g-recaptcha {
        transform: scale(0.77);
        -webkit-transform: scale(0.77);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
}
/* Only affects from 768 */
@media (min-width: 768px) {
    .sidebar {
        position: fixed;
        top: 52px;
        bottom: 0;
        left: 0;
        z-index: 1000;
        display: block;
        padding: 20px;
        overflow-x: hidden;
        overflow-y: auto;
    }
}
/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .jumbotron {
        margin-top: 20px;
        padding-left: 10px !important;
        padding-right: 10px !important;
        padding-bottom: 50px;
    }
    .body-content {
        padding: 0;
    }
}
/*global scrollbars*/
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.3);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.5);
    background-color: lightgray !important;
}
/* Move down content because we have a fixed navbar that is 50px tall */
.body-content {
    margin-top: 50px;
    padding-bottom: 20px;
}
/* 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;
}
/* Set widths on the form inputs since otherwise they're 100% wide */
input[type="text"], input[type="password"], input[type="email"], input[type="tel"], input[type="select"] {
    max-width: 280px;
}

.form-control[disabled], .form-control[readonly] {
    background-color: #ede4d4;
    opacity: 1;
    border: 1px solid gray;
}

/* payment methods design */
.credit-card-box .panel-title {
    display: inline;
    font-weight: bold;
}
.credit-card-box .form-control.error {
    border-color: red;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(255,0,0,0.6);
}
.credit-card-box label.error {
    font-weight: bold;
    color: red;
    padding: 2px 8px;
    margin-top: 2px;
}
.credit-card-box .payment-errors {
    font-weight: bold;
    color: red;
    padding: 2px 8px;
    margin-top: 2px;
}
.credit-card-box label {
    display: block;
}
.credit-card-box .display-td {
    display: table-cell;
    vertical-align: middle;
}
.credit-card-box .panel-heading img {
    min-width: 180px;
}

.pm_button {
    text-align: center;
    display: inline-block;
}

.paymentMethodIcon {
    border-radius: 6px;
    display: flex;
    cursor: pointer;
    background: none repeat scroll 0% 0% #EEEEEE;
    margin: 15px;
    min-height: 80px;
    min-width: 150px;
    padding: 5px;
    align-items: center;
}
.paymentMethodIcon:hover {
    background: none repeat scroll 0% 0% #dddddd !important;
    transition: all 0.1s ease-in 0s;
}
.paymentMethodIcon.highlight {
    background: none repeat scroll 0% 0% #fffd73 !important;
    transition: all 0.1s ease-in 0s;
}
.paymentMethodIcon.disabled {
    cursor: not-allowed;
}
.paymentMethodIcon.hidden {
    display: none;
}

.card-holder {
    padding: 10px;
    margin: 15px;
}
/* Password Strength */
.short {
    font-weight: bold;
    color: #FF0000;
    font-size: medium;
}
.weak {
    font-weight: bold;
    color: orange;
    font-size: medium;
}
.good {
    font-weight: bold;
    color: #2D98F3;
    font-size: medium;
}
.strong {
    font-weight: bold;
    color: limegreen;
    font-size: medium;
}
.shortProgress {
    width: 20px;
    border-bottom: solid 4px;
    border-bottom-color: #FF0000;
    font-weight: bold;
    color: #FF0000;
    font-size: medium;
}
.weakProgress {
    width: 40px;
    border-bottom: solid 4px;
    border-bottom-color: orange;
    font-weight: bold;
    color: orange;
    font-size: medium;
}
.goodProgress {
    width: 60px;
    border-bottom: solid 4px;
    border-bottom-color: #2D98F3;
    font-weight: bold;
    color: #2D98F3;
    font-size: medium;
}
.strongProgress {
    width: 80px;
    border-bottom: solid 4px;
    border-bottom-color: limegreen;
    font-weight: bold;
    color: limegreen;
    font-size: medium;
}
.passwordEquals {
    border: 2px solid green
}
.passwordNotEquals {
    border: 2px solid red
}

/*language dropdown*/
.languageImg {
    -webkit-box-shadow: 2px 2px 4px 0px rgba(181,174,181,1);
    -moz-box-shadow: 2px 2px 4px 0px rgba(181,174,181,1);
    box-shadow: 2px 2px 4px 0px rgba(181,174,181,1);
}
/*google maps design*/
#googleMaps {
    position: relative;
    padding-bottom: 56%;
    height: 0;
    overflow: hidden;
}
#googleMaps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* Sidebar navigation */
.nav-sidebar {
    margin-right: -21px;
    /* 20px padding + 1px border */
    margin-bottom: 20px;
    margin-left: -20px;
}
.nav-sidebar > li > a {
    padding-right: 20px;
    padding-left: 20px;
}
.nav-sidebar > .active > a, .nav-sidebar > .active > a:hover, .nav-sidebar > .active > a:focus {
    background-color: #428bca;
}
.nav li.active a, .nav li a:hover, .nav li.active a:focus, .nav li.active a:hover{
    background-color:#000;
}
/* * Main content */
.main {
    padding: 20px !important;
}

@media (min-width: 768px) {
    .main {
        padding-right: 40px;
        padding-left: 40px;
    }
}

.main .page-header {
    margin-top: 0;
    font-family: 'FranklinGothic', sans-serif;
}
/* * Placeholder dashboard ideas */
.placeholders {
    margin-bottom: 30px;
    text-align: center;
}

.placeholders h4 {
    margin-bottom: 0;
}

.placeholder {
    margin-bottom: 20px;
}

.placeholder img {
    display: inline-block;
    border-radius: 50%;
}

/*#imgProfileImage {}*/
#profileImagePopover {
    display: none;
}
#imgQrImage {
    margin: 10px;
}

#imgProfileImage:hover {
    opacity: 0.3;
    filter: alpha(opacity=30);
}

.customprogressbar {
    width: 300px;
    height: 21px;
}

.customprogressbarlabel {
    width: 300px;
    height: 21px;
    position: absolute;
    text-align: center;
    font-size: small;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* Add animation to "page content" */
.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s;
    background-color: rgba(255, 255, 255, 0.7);
}

@-webkit-keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0;
        background-color: rgba(255, 255, 255, 0.7);
    }
    to {
        bottom: 0px;
        opacity: 1;
        background-color: rgba(255, 255, 255, 0.7);
    }
}

@keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0;
        background-color: rgba(255, 255, 255, 0.7);
    }
    to {
        bottom: 0;
        opacity: 1;
        background-color: rgba(255, 255, 255, 0.7);
    }
}
/* Gastro Template CSS */
.templateradios tr {
    display: inline;
}

.templateradios tr td label {
    padding-left: 5px;
    padding-right: 5px;
}

.forcevarradios tr td label {
    padding-left: 5px;
    padding-right: 5px;
}

.templatecode {
    max-width: 100%;
    min-height: 500px;
    margin-bottom: 10px;
}

.labelfontweight {
    font-weight: 700;
}

.btn-templatepreview {
    color: #fff;
    background-color: #1a73e8;
    border-color: #1a73e8;
    height: 20px;
    padding: 0px 3px 0px 3px;
    margin-top: -5px;
}

.btn-templatepreview:active:hover, .btn-templatepreview:hover, .btn-templatepreview:focus {
    color: #fff;
    background-color: #155ab4;
    border-color: #155ab4;
}

.btn-newtemplate {
    color: #fff;
    background-color: #ffa312;
    border-color: #ffa312;
    margin-right: 5px;
}

.btn-newtemplate:active:hover, .btn-newtemplate:hover, .btn-newtemplate:focus {
    color: #fff;
    background-color: #c57d0c;
    border-color: #c57d0c;
}

.btn-deletetemplatecode {
    color: #fff;
    background-color: #c50000;
    border-color: #c50000;
}

.btn-deletetemplatecode:active:hover, .btn-deletetemplatecode:hover, .btn-deletetemplatecode:focus {
    color: #fff;
    background-color: #940000;
    border-color: #940000;
}

.floatleft {
    float: left;
}

.previewIframe {
    width: 100%;
    min-height: 500px;
}

#ctl00_MainContent_btnPreOrderSubmit {
    background-repeat: no-repeat;
    background-position: center;
    min-width: 80px;
    /*background-image: url(../Resources/shop.png);*/
    /*min-height: 80px;*/
}

.gastroFileupload {
    display: inline !important;
    margin-bottom: 10px;
}

.btn-gastroupload {
    color: #fff;
    background-color: #3c6160;
    border-color: #3c6160;
}

.btn-gastroupload:active:hover, .btn-gastroupload:hover, .btn-gastroupload:focus {
    color: #fff;
    background-color: #2b4545;
    border-color: #2b4545;
}

.bordercubeleft {
    width: 50%;
    height: 50px;
    text-align: center;
    border-top: 5px solid #000000;
    border-bottom: 5px solid #000000;
    border-left: 5px solid #000000;
    border-right: 5px solid #000000;
    float: left;
}

.bordercuberight {
    width: 50%;
    height: 50px;
    text-align: center;
    border-top: 5px solid #000000;
    border-bottom: 5px solid #000000;
    border-left: 5px solid #000000;
    border-right: 5px solid #000000;
    float: right;
}

.borderpicker {
    text-align: center;
}
/* Only affects 400px width / For portrait layouts only */
@media only screen and (min-width: 100px) and (max-width: 800px) {
    .dxc-chart {
        width: 100%;
    }

    .dx-widget {
        font-size: 9px;
    }

    .dx-last-cell {
        white-space: nowrap !important;
    }

    .dx-pivotgrid-vertical-headers {
        white-space: nowrap !important;
    }

    .dx-dashboard-item {
        width: 100%;
    }

    .dx-dashboard-splitter-layout-place {
        width: 100%;
    }

    .dx-cardItem {
        width: 80%;
    }

    .dxc-legend {
        font-size: 9px;
    }

    .dx-dashboard-title {
        font-size: 14px;
    }

    #dashboardViewer {
        height: 400px;
    }

    .dx-dashboard-item-header {
        font-size: 10px;
    }

    .dx-dashboard-group-item-child {
        padding: 0;
    }

    .dx-widget dx-collection dx-treeview {
        width: 100%;
    }

    .dx-dashboard-splitter-pane {
        width: 70%;
        padding: 0;
    }

    .dx-checkbox-icon {
        width: 20px;
        height: 20px;
        padding: 0;
    }
}

.wisy-editor {
    min-height: 250px;
    height: 250px;
    background-color: #fff;
    border-collapse: separate;
    border: 1px solid rgb(204, 204, 204);
    padding: 4px;
    box-sizing: content-box;
    -webkit-box-shadow: rgba(0, 0, 0, 0.0745098) 0px 1px 1px 0px inset;
    box-shadow: rgba(0, 0, 0, 0.0745098) 0px 1px 1px 0px inset;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
    overflow: scroll;
    outline: none;
    resize: both;
    color: #000;
}

.bootstrap-datetimepicker-widget {
    background-color: #000;
}

#voiceBtn {
    width: 20px;
    color: transparent;
    background-color: transparent;
    transform: scale(2.0, 2.0);
    -webkit-transform: scale(2.0, 2.0);
    -moz-transform: scale(2.0, 2.0);
    border: transparent;
    cursor: pointer;
    box-shadow: none;
    -webkit-box-shadow: none;
}

div[data-role="editor-toolbar"] {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.dropdown-menu a {
    cursor: pointer;
}

.dxsplControl {
    background-color: rgba(60, 60, 60, 0.70);
}

.preorderitemgrouptitle {
    color: #010101;
}
/* Startseite */
#ctl00_MainContent_lblDefaultRegister, #ctl00_MainContent_lblDefaultLogin, #ctl00_webportal_lblNavbarHome, #ctl00_lbNavbarRegister, #ctl00_lbNavbarLoginText {
    border: 1px solid #FCED5A;
    background: #ede4e4;
    padding: 8.5px 17px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #000;
    font-size: 16px;
    font-family: 'FranklinGothic', sans-serif;
    text-decoration: none;
    vertical-align: middle;
    -webkit-box-shadow: 0px 9px 18px 0px rgb(0 0 0 / 14%);
    -moz-box-shadow: 0px 9px 18px 0px rgba(0,0,0,0.14);
    box-shadow: 0px 9px 18px 0px rgb(0 0 0 / 14%);
}

.simplylocalMainlogo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: -3%
}

.simplylocalMaintext {
    text-align: center;
    margin-top: 2%;
    margin-bottom: -1%
}

footer label {
    color: #000 !important;
}

footer a {
    visibility: visible;
    color: #000 !important;
}

#ctl00_MainContent_webportal_lblInfoFanCreateUser1, #ctl00_MainContent_webportal_lblInfoFanCreateUser3 {
    color: #a5a5a5;
}

.btn-default, .btn-primary {
    color: #010101 !important;
    background-color: #ede4e4;
    border: 1px solid #FCED5A;
}

.btn-default:hover, .btn-primary:hover, #ctl00_MainContent_lblDefaultLogin:hover, #ctl00_MainContent_lblDefaultRegister:hover, #ctl00_webportal_lblNavbarHome:hover, #ctl00_lbNavbarRegister:hover, #ctl00_lbNavbarLoginText:hover {
    color: #010101 !important;
    background-color: #FCED5A !important;
    border: 1px solid #FCED5A !important;
}

#ctl00_MainContent_linkRestorePassword {
    color: #010101;
}

.confirmregisterbutton {
    color: #010101 !important;
    background-color: transparent !important;
    border: 1px solid #FCED5A !important;
}

.confirmregisterbutton:hover {
    color: #010101 !important;
    background-color: #FCED5A !important;
    border: 1px solid #FCED5A !important;
}

#ctl00_MainContent_webportal_lblInfoFanCreateUser2 {
    color: #010101;
}

#ctl00_MainContent_lblDonationInfoHeader {
    color: #010101;
}

.counter h2 {
    color: #010101 !important;
}

#ctl00_MainContent_gvTransactions img {
    filter: brightness(1);
}

#ctl00_MainContent_preOrderItemPanel .col_once label {
    color: #000;
}

#ctl00_loggedInView a {
    color: #FFFFFF
}
#ctl00_MainContent_div_requestDone, #ctl00_MainContent_lblRestorePasswordInfo, #ctl00_MainContent_div_okicVoucher, #ctl00_MainContent_webportal_lblUserManagingPanelAddInfo, #ctl00_MainContent_webportal_lblMerchantManagingPanelAddInfo, #paymentsubmit, #ctl00_MainContent_btnSendRequest {
    color: #010101 !important;
}

#paymentsubmit, #ctl00_MainContent_btnSendRequest {
    background: #ede4e4;
}

#ctl00_MainContent_panelBody .jumbotron .card-holder a:first-child img {
    filter: brightness(100);
}

.page-header {
    color: #000;
    padding-bottom: 5px;
    margin: 0px;
    border-bottom: none;
}

hr {
    display: none;
}

table {
    color: #010101;
}

table tr {
    background-color: #fff;
}

.table-striped > tbody > tr:nth-of-type(odd), .table-hover > tbody > tr:hover {
    background-color: #f5f5f5;
}

table tbody tr td a img {
    filter: brightness(1);
}

.btn-primary {
    color: #fff;
    border: 1px solid #FCED5A;
    /*background-color: transparent;*/
}

.btn-primary:hover {
    color: #fff;
    background-color: transparent;
    border: 1px solid #FCED5A;
}

#ctl00_ddlSelectDomain, #ctl00_MainContent_cmbEvents, #ctl00_MainContent_ddlRefundCount {
    background-color: #000 !important;
    color: #fff !important;
}

#ctl00_ddlSelectDomain:hover, #ctl00_MainContent_cmbEvents:hover {
    color: #fff !important;
}

#ctl00_MainContent_cmbEvents {
    width: 100%;
    max-width: 100%;
}

.well {
    background-color: #010101;
}

.gastroleft span, .gastroright span, .gastrotemplateviewcodes {
    color: #fff;
}

#ctl00_MainContent_alertCssInfo label, #ctl00_MainContent_alertInfoSmtp label, #ctl00_MainContent_webportal_lblAlertInfoMonitoring {
    color: #31708f;
}

.nav > li > a:hover, .nav > li > a:focus {
    color: #FFF ;
    background: #FCED5A;
}

.datepicker, .timepicker {
    background: #fff;
}

.VoucherChooseBar {
    border-radius: 20px;
    display: flex;
    cursor: pointer;
    background: none repeat scroll 0% 0% #FCED5A;
    margin-bottom: 20px;
    min-height: 80px;
    min-width: 150px;
    padding: 5px;
    align-items: center;
}
.VoucherChooseBar:hover {
    background: none repeat scroll 0% 0% #ffec30 !important;
    transition: all 0.1s ease-in 0s;
}
.VoucherChooseBar.highlight {
    background: none repeat scroll 0% 0% #fffd73 !important;
    transition: all 0.1s ease-in 0s;
}
.VoucherChooseBar.disabled {
    cursor: not-allowed;
}
.VoucherChooseBar.hidden {
    display: none;
}

.doubleinvert {
    filter: brightness(100) invert(1) !important;
}

.sx-news .featured-sx-news {
    width: 100%;
    overflow: hidden;
    margin: 20px 0px;
    background-color: rgba(252,237,90, 0.4);
    padding: 15px;
    border-radius: 10px;
}

.setInvisible{
    display: none
}