﻿/*simply-X defaults*/
@font-face {
    font-family: 'Interstate';
    src: url('fonts/Interstate-Regular.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'NotoSans';
    src: url('fonts/NotoSans-Regular.ttf') format('truetype');
    font-display: swap;
}

.sx {
    font-family: Interstate;
    text-transform: none !important;
}

.sx-brand > a:hover {
    font-family: Interstate;
    text-transform: none !important;
}

.sx-pageloader {
    text-align: center;
    z-index: 9999999;
    background-color: rgba(255, 255, 255, 0.7);
    font-family: 'Noto Sans';
    color: Red;
    position: fixed;
    padding-top: 10%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: large;
    height: 100%;
}

.sx-dropdown {
    max-width: 280px;
}

.form-control > sx-dropdown {
    max-width: 280px;
}

.form-control > .dropdown-toggle {
    max-width: 280px;
}

/*btn-group {
    max-width: 280px;width:100%;
}
.dropdown-toggle {
    max-width: 280px;width: 100%;
}*/

.itemOptionVariant {
    min-height: 100px;
    max-height: 100px;
    min-width: 100px;
    -webkit-box-shadow: 1px 1px 1px 0px rgba(163,163,163,1);
    -moz-box-shadow: 1px 1px 1px 0px rgba(163,163,163,1);
    box-shadow: 1px 1px 1px 0px rgba(163,163,163,1);
    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;
    background-color: white !important;
}

.itemOptionVariant-selected {
    color: white;
    background-color: rgba(59, 59, 59, 0.70) !important;
}

.unselectable {
    cursor: not-allowed;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
}

.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 #ff0000;
    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;
    }

        .check_box label::before {
            content: "";
            display: inline-block;
            position: absolute;
            width: 17px;
            height: 17px;
            left: 0;
            margin-left: -19px;
            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: -19px;
            padding-left: 3px;
            padding-top: 1px;
            font-size: 11px;
            color: #555555;
        }

    .check_box input[type="checkbox"] {
        opacity: 0;
        margin: 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;
}

/*check_radio---------------------------------------------------*/

.check_radio {
    padding-left: 6px;
}

.check_radio label {
    display: inline-block;
    position: relative;
    padding-left: 5px;
}

.check_radio label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    margin-left: -20px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    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_radio 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_radio input[type="radio"] {
    opacity: 0;
}

.check_radio input[type="radio"]:focus + label::before {
    outline: 1px solid -webkit-focus-ring-color;
    outline-offset: -2px;
}

.check_radio input[type="radio"]:checked + label::after {
    font-family: 'FontAwesome';
    content: "\f00c";
}

.check_radio input[type="radio"]:disabled + label {
    opacity: 0.65;
}

.check_radio input[type="radio"]:disabled + label::before {
    background-color: #eeeeee;
    cursor: not-allowed;
}

.check_radio.check_radio-circle label::before {
    border-radius: 50%;
}

.check_radio.checkbox-inline {
    margin-top: 0;
}

/*primary*/
.check_radio-primary input[type="radio"]:checked + label::before {
    background-color: #428bca;
    border-color: #428bca;
}

.check_radio-primary input[type="radio"]:checked + label::after {
    color: #fff;
}
/*danger*/
.check_radio-danger input[type="radio"]:checked + label::before {
    background-color: #d9534f;
    border-color: #d9534f;
}

.check_radio-danger input[type="radio"]:checked + label::after {
    color: #fff;
}
/*info*/
.check_radio-info input[type="radio"]:checked + label::before {
    background-color: #5bc0de;
    border-color: #5bc0de;
}

.check_radio-info input[type="radio"]:checked + label::after {
    color: #fff;
}
/*warning*/
.check_radio-warning input[type="radio"]:checked + label::before {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}

.check_radio-warning input[type="radio"]:checked + label::after {
    color: #fff;
}
/*success*/
.check_radio-success input[type="radio"]:checked + label::before {
    background-color: #5cb85c;
    border-color: #5cb85c;
}

.check_radio-success input[type="radio"]:checked + label::after {
    color: #fff;
}

#ctl00_MainContent_delivery{
    text-align: center;
}

/*
@media (max-width: 768px) {    
}*/
/*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; padding-right: 20px; padding-left: 20px;*/
}

/* Lastly, apply responsive CSS fixes as necessary */
@media (max-width: 767px) {
    footer {
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .navbar-toggle-desktop {
        display: none;
    }

    .body-content {
        margin-top: 70px !important;
    }
}

/*@media (min-width: 1001px) { footer { margin-left: 15%; } }
@media (min-width: 850px) and (max-width: 1000px) { footer { margin-left: 20%; } }
@media (min-width: 765px) and (max-width: 849px) { footer { margin-left: 25%; } }
@media (min-width: 300px) and (max-width: 764px) { footer { margin-left: 5%; } }*/

.icon-inverted {
    filter: brightness(0) invert(0);
}

.inverted-img {
    filter: invert(1);
}

/*main body design*/
body {
    background-color: #fdfefd; /*#fcfcfc;*/
    background-image: url(https://bb25.simply-festival.de/portal/content/cbf/BB25.jpg);
background-repeat: no-repeat;
    background-size: 100%;
}

/*navbar design*/
.sidebar {
    font-family: NotoSans;
    background-color: white;
    /*-webkit-box-shadow: 2px 0px 2px 0px rgba(130,130,130,1);
    -moz-box-shadow: 2px 0px 2px 0px rgba(130,130,130,1);
    box-shadow: 2px 0px 2px 0px rgba(130,130,130,1);*/
}
.navbar {
    /*max-height: 50px;*/
}

.navbar-fixed-top {
    box-shadow: 0px 0px 20px -10px grey;
    border: none
}

.navbar-brand {
    font-family: Interstate;
    margin-left: 0px !important;
}

.navbar-brand > img {
    display: unset
}

.navbar-btn > button,
.navbar-btn > a > linkbutton {
    background-color: #f0f0f0;
}

.navbar-inverse {
    background-color: white;
    border-color: lightgray;
    font-family: NotoSans;
}

    .navbar-inverse .navbar-brand:hover {
        color: #696969
    }

.navbar-collapse > li > a:hover, .nav > li > a:focus {
    color: red;
}

.navbar-collapse > li > a {
    color: red;
}

.navbar-inverse > li > a:hover, .nav > li > a:focus {
    color: red;
}

.navbar-inverse > li > a {
    color: red;
}

.nav > li > a:hover, .nav > li > a:focus {
    color: red !important;
}

.nav > li > a {
    color: red !important;
}

.nav > li > a:active {
    color: darkred !important;
}

/*headline design*/
h1,
h2,
h3,
h4,
h5,
h6,
h7,
h8,
h9,
h10 {
    font-family: NotoSans;
}

/*globales link design*/
a {
    color: red;
    font-family: NotoSans;
}

    a:focus,
    a:hover,
    a:visited,
    a:visited:hover {
        color: red;
        text-decoration: none !important
    }

.open > .dropdown-menu {
    overflow-y: auto;
    max-height: 50vh;
    z-index: 999999999999 !important;
    -webkit-box-shadow: none; /*2px 2px 13px 1px rgba(163,163,163,1);*/
    -moz-box-shadow: none; /*2px 2px 13px 1px rgba(163,163,163,1);*/
    box-shadow: none; /*2px 2px 13px 1px rgba(163,163,163,1);*/
}
/*global panels*/
.panel {
background-color: rgba(255, 255, 255, 0.85);
    -webkit-box-shadow: none; /*2px 2px 13px 1px rgba(163,163,163,1);*/
    -moz-box-shadow: none; /*2px 2px 13px 1px rgba(163,163,163,1);*/
    box-shadow: none; /*2px 2px 13px 1px rgba(163,163,163,1);*/
    font-family: NotoSans;
}

/*global modals*/
.modal {
    font-family: NotoSans;
}

.googleMap {
    -webkit-box-shadow: 1px 1px 1px 0px rgba(163,163,163,1);
    -moz-box-shadow: 1px 1px 1px 0px rgba(163,163,163,1);
    box-shadow: 1px 1px 1px 0px rgba(163,163,163,1);
    width: 100%;
    height: 300px;
}

/*global jumbotron design*/
.jumbotron {
    background-color: rgba(255, 255, 255, 0.85);
    -webkit-box-shadow: 1px 1px 1px 0px rgba(163,163,163,1);
    -moz-box-shadow: 1px 1px 1px 0px rgba(163,163,163,1);
    box-shadow: 1px 1px 1px 0px rgba(163,163,163,1);
    padding-left: 10px !important;
    padding-right: 10px !important;
    padding-bottom: 50px;
}

/*jquery Number Counter*/
.counter {
    background-color: #ffffff;
    margin: 0.5%;
    padding: 5px;
    border-radius: 12px;
    font-family: NotoSans;
    display: table;
    -webkit-box-shadow: 1px 1px 1px 0px rgba(163,163,163,1);
    -moz-box-shadow: 1px 1px 1px 0px rgba(163,163,163,1);
    box-shadow: 1px 1px 1px 0px rgba(163,163,163,1);
}

/*.counter .col_once div .col-md-6 div:nth-child(2) {
        background-color: pink
    }*/


.count-img {
    display: block;
    margin: auto; 
    max-width: 100%;
    /*height: auto;*/
}

.count-title {
    font-size: 30px;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
    font-family: NotoSans
}

.count-text {
    font-size: 13px !important;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
    font-family: NotoSans 
    }


.col_once {
    width: 95.9%;
}
.col_half {
    width: 40%;
    display: inline-block;
}
.col_sec_row {
    width: 47%;
    display: inline-block;
}
.col_third_row {
    width: 30%;
    display: inline-block;
}
.col_third {
    width: 30%;
    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;
}

.text-danger {
    color: #a94442 !important;
}

.alert {
    margin-top: 10px;
}

/* 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: 31%;
        /* align-items: center; */
    }

    .navbar-inverse .navbar-toggle .icon-bar {
        background-color: #000
    }

    .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
        background-color: #f0f0f0
    }

    .navbar-inverse {
        background-color: white;
        border-color: lightgray;
    }

    .nav > li > a:hover, .nav > li > a:focus {
        color: red;
        background-color: white !important;
    }

    .nav > li > a {
        color: red;
        background-color: white !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: 51px;
        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: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.3);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -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: 60px;
    /*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="number"],
input[type="email"],
input[type="tel"],
input[type="select"],
input[type="time"],
input[type="datetime"],
input[type="color"],
select,
.multiselect {
    max-width: 280px;
}

    input[type="color"].form-control {
        padding: 3px;
    }
/*
    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;
}

.paymenttypblock {
    width: 90% !important;
    margin: 0 auto !important;
}

#creditcardHolder {
    clear: both;
}

.VoucherChooseBar {
    border-radius: 6px;
    display: flex;
    cursor: pointer;
    background: none repeat scroll 0% 0% #EEEEEE;
    margin-bottom: 20px;
    min-height: 80px;
    min-width: 150px;
    padding: 5px;
    align-items: center;
}

    .VoucherChooseBar:hover {
        background: none repeat scroll 0% 0% #dddddd !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;
    }


.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 images*/
.languageImg {
    -webkit-box-shadow: 1px 1px 1px 0px rgba(181,174,181,1);
    -moz-box-shadow: 1px 1px 1px 0px rgba(181,174,181,1);
    box-shadow: 1px 1px 1px 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 {
    /* 20px padding + 1px border */
    /*margin-bottom: 20px;*/
    margin-right: -20px;
    margin-left: -20px;
}

    .nav-sidebar > li > label {
        padding-right: 20px;
        padding-left: 20px;
    }

    .nav-sidebar > li > select {
        padding-right: 20px;
        padding-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;
    }

/*
 * Main content
 */
/*.main { padding: 20px!important; }*/
/*@media (min-width: 768px) {
  .main { padding-right: 20px; padding-left: 20px; }
}*/
.main .page-header {
    margin-top: 15px;
    font-family: NotoSans;
}

/*
 * 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%;
    }

#profileImagePopover {
    display: none;
}
/*#imgProfileImage { }*/

#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;
}

.btn-preorder {
    background-image: url(../Resources/shop.png);
    background-repeat: no-repeat;
    background-position: center;
    min-width: 80px;
}

#ctl00_MainContent_preOrderSubmitButtonBadge > div {
    position: absolute;
    right: 20%;
    top: 0px;
}

preorderbadge {
    position: fixed;
}

preorderbadge::before {
    content: attr(data-count);
    width: 20px;
    height: 20px;
    line-height: 18px;
    text-align: center;
    display: block;
    border-radius: 50%;
    background: rgb(59, 59, 59);
    border: 1px solid #FFF;
    box-shadow: 0 1px 3px rgba(0,0,0,0.4);
    color: #FFF;
    position: absolute;
    top: -7px;
    left: -7px;
    z-index: 100;
}

preorderbadge.badge-top-right:before {
    left: auto;
    right: -7px;
}

badge::before {
    content: attr(data-count);
    width: 20px;
    height: 20px;
    line-height: 18px;
    text-align: center;
    display: block;
    border-radius: 50%;
    background: rgb(59, 59, 59);
    border: 1px solid #FFF;
    box-shadow: 0 1px 3px rgba(0,0,0,0.4);
    color: #FFF;
    position: absolute;
    top: -7px;
    left: -2px;
    z-index: 100;
}

badge.badge-top-right:before {
    left: auto;
    right: -2px;
}

.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: white;
    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;
}

#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;
}

.profitcentercreateheader {
    font-size: 16px;
}

#ctl00_MainContent_cbxCreateStaffIsActive, #ctl00_MainContent_cbxCreateStaffOverSellpoints, #ctl00_MainContent_cbxCreateStaffOverProfitcenters,
#ctl00_MainContent_cbxEditStaffIsActive, #ctl00_MainContent_cbxEditStaffOverSellpoints, #ctl00_MainContent_cbxEditStaffOverProfitcenters,
#ctl00_MainContent_cbxCreateExtraRewardIsActive, #ctl00_MainContent_cbxEditExtraRewardIsActive {
    margin-right: 5%;
}

/*VR PAYMENT WIDGET STYLES*/
.wpwl-form {
    background: #f8f8f8
}
.wpwl-label-brand {
    display: none
}
.wpwl-form-card {
    background: #f8f8f8;
    border: 0px
}
.wpwl-control, input.wpwl-control {
    background: white;
    border: 1px solid #ddd;
    box-shadow: none;
    border-radius: 0px;
    text-transform: none;
    padding: 10px;
    font-size: 18px;
    height: 50px;
}
.input-text:focus, input[type=text]:focus, input[type=tel]:focus, input[type=url]:focus, input[type=password]:focus, input[type=search]:focus, textarea:focus {
    background-color: white;
}
.wpwl-brand-SOFORTUEBERWEISUNG, .wpwl-brand-GIROPAY {
    cursor: pointer
}
.wpwl-brand, .wpwl-img {
    margin: 0 0 0 auto;
}
/*VR PAYMENT WIDGET STYLES END*/

.TreeviewArticleNode {
    color: red;
}
.sidepadding {
    padding-right: 5px;
    padding-left: 5px;
}

.ddladjuster {
    width: 88%;
    margin-left: 15px;
    max-width: 280px;
}

.multilistboxadjuster {
    margin-left: 15px;
}

.articleimggradient {
    background: linear-gradient(white, transparent);
    background: linear-gradient(transparent, white);
}

.wrapper-progressBar {
    width: 100%
}

.progressBar li {
    list-style-type: none;
    float: left;
    width: 33%;
    position: relative;
    text-align: center;
}

    .progressBar li:before {
        content: " ";
        line-height: 30px;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        border: 1px solid #ddd;
        display: block;
        text-align: center;
        margin: 0 auto 10px;
        background-color: white
    }

    .progressBar li:after {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #ddd;
        top: 15px;
        left: -50%;
        z-index: -1;
    }

    .progressBar li:first-child:after {
        content: none;
    }

    .progressBar li.active {
        color: #3c763d;
    }

        .progressBar li.active:before {
            border-color: #3c763d;
            background-color: #3c763d
        }

        .progressBar li.active + li:after {
            background-color: #3c763d;
        }

.GridviewPager a {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

.GridviewPager span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

.GridviewPager a:hover, .GridviewPager a:focus {
    z-index: 2;
    color: #23527c;
    background-color: #eee;
    border-color: #ddd;
}

.hideGridColumn {
    display: none;
}

.leftfloat {
    float: left;
}

.rightfloat {
    float: right;
}

.modal-xl {
    width: 90%;
}

.greenAddButton {
    background: lightgreen;
    height: 50px;
    border: none;
    width: 30px;
}

.redRemoveButton {
    background: #FF5353;
    height: 50px;
    border: none;
    width: 30px;
}

.Cashdeskconfigpadding li {
    padding: 10px 10px 10px 0px;
    border-bottom: 1px solid #ebebeb;
    border-top: 1px solid #ebebeb;
}

    .Cashdeskconfigpadding li:hover, .devicechooser li:hover {
        background-color: #ebebeb;
    }

.nopaddingtop {
    padding-top: 0px;
}

.nopaddingbottom {
    padding-bottom: 0px;
}

.nopaddingright {
    padding-right: 0px;
}

.nopaddingleft {
    padding-left: 0px;
}

.badge-icon,
.badge-text {
    padding: 5px 5px;
    float: left;
    -webkit-box-flex: 1;
    flex: 1;
    text-align: center;
    font: normal small-caps normal 10px/1.5 Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    text-align: left;
}

.badge {
    display: inline-block;
    color: var(--color-light);
    /* min-width: var(--badge-size); */
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid silver;
}

.badge-icon {
    background: silver;
    max-width: calc( var(--badge-size) / 4);
    color: black;
}

.badge-text {
    color: var(--color-dark);
    background-color: var(--color-light);
}

/** Banner */
.banners-container {
    position: fixed;
    top: 51px;
    left: 0;
    width: 100%;
    z-index: 5;
}

.banner {
    color: white;
    font-weight: 700;
    padding: 2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
}

    .banner .banner-message {
        flex: 1;
        padding: 0 2rem;
    }

    .banner .banner-close {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
        border-radius: 4px;
        cursor: pointer;
        transition: background 0.3s;
    }

        .banner .banner-close:hover {
            background: rgba(0, 0, 0, 0.12);
        }

    .banner.success {
        background: #10c15c;
    }

        .banner.success::after {
            background: #10c15c;
        }

    .banner.error {
        background: #ed1c24;
    }

        .banner.error::after {
            background: #ed1c24;
        }

    .banner.info {
        background: #0b22e2;
    }

        .banner.info::after {
            background: #0b22e2;
        }

    .banner::after {
        content: "";
        position: absolute;
        height: 10%;
        width: 100%;
        bottom: 100%;
        left: 0;
    }

    .banner:not(.visible) {
        display: none;
        transform: translateY(-100%);
    }

    .banner.visible {
        box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.12);
        animation-name: banner-in;
        animation-direction: forwards;
        animation-duration: 0.6s;
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        animation-iteration-count: 1;
    }

@keyframes banner-in {
    0% {
        transform: translateY(-100%);
    }

    50% {
        transform: translateY(10%);
    }

    100% {
        transform: translateY(0);
    }
}

.show-banner {
    appearance: none;
    background: #ededed;
    border: 0;
    padding: 1rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    margin: 0.25rem;
}

.whitespacenowrap {
    white-space: nowrap;
}

/* TICKETING */
@media all and (min-width: 300px) and (max-width: 800px) {
    .ticketingbuildertable tbody tr th {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    .ticketingbuildertable thead tr:nth-child(2) th {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    .ticketingbuildertable tbody tr::before {
        content: "\a";
        white-space: pre;
    }

    .ticketingbuildertable tbody tr td {
        display: block !important;
        text-align: right;
    }

        .ticketingbuildertable tbody tr td::before {
            content: attr(data-label);
            float: left;
            font-weight: 700;
        }

    .TicketbuilderCartTable thead tr th {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    #AddVoucherDiscount {
        margin-top: 10px !important;
    }

    .TicketbuilderCartTable tbody tr::before {
        content: "\a";
        white-space: pre;
    }

    .TicketbuilderCartTable tbody tr td {
        display: block !important;
        text-align: right;
    }

        .TicketbuilderCartTable tbody tr td::before {
            content: attr(data-label);
            float: left;
            font-weight: 700;
        }
}

.reserviereninactive {
    display: none !important;
}

#ShowAllArticleOverview {
    background-color: #337ab7 !important;
    color: white !important;
}

    #ShowAllArticleOverview img {
        filter: brightness(0) invert(1);
    }

/* Added Extras */
.radiopadding-10{
    padding: 10px;
}

.radiofix label {
    padding-left: 5px !important;
    vertical-align: top;
}
/* Style for PreOrder ConfirmInternal */
.buttonLock {
    width: 40px;
    height: 45px;
    background-color: white;
    border: none;
    color: black !important;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: x-large;
    margin: 2px;
    transition-duration: 0.2s;
    cursor: pointer;
    border-radius: 3px;
}

.lockFree {
    background-color: white;
}

    .lockFree:hover {
        background-color: whitesmoke;
    }

.lockOccupied {
    background-color: lightgrey;
    color: black;
}

    .lockOccupied:hover {
        background-color: whitesmoke !important;
    }

.lockMaintenance {
    background-color: lightcoral;
    cursor: default;
}

.lockSelected {
    border: solid 3px darkgrey;
}

.buttonUnit {
    display: inline-block;
    background-color: white;
    border: none;
    color: black !important;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: medium;
    margin: 2px;
    transition-duration: 0.5s;
    cursor: default;
    border-radius: 5px;
    padding: 2px 7px 2px 7px;
}

    .buttonUnit:hover {
        background-color: whitesmoke;
    }

    .buttonUnit:active {
        background-color: whitesmoke;
    }

.thead {
    color: dimgrey;
    font-weight: lighter !important;
    font-size: xx-large;
    text-align: center;
    border-bottom: 1px solid lightgray;
    padding-bottom: 10px;
}

.vl {
    align-content: normal;
    border-right: 1px solid lightgrey;
    padding-right: 10px;
    padding-left: 10px;
}

.hiddencol {
    display: none;
}

.nomargin {
    margin: 10px !important;
}

.lockCell {
    font-size: 12px;
    width: 100px;
}

.switch {
    display: inline-block;
    height: 34px;
    position: relative;
    width: 60px;
    margin-left: 4px;
    margin-right: 4px;
}

    .switch input {
        display: none;
    }

label > .slider {
    margin-bottom: 0px !important;
}

.slider {
    background-color: #f0f0f0;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
}

    .slider:before {
        background-color: #fff;
        bottom: 4px;
        content: "";
        height: 26px;
        left: 4px;
        position: absolute;
        transition: .4s;
        width: 26px;
        background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABmJLR0QA/wD/AP+gvaeTAAABCUlEQVRIie3UMUoDQRjF8V8ioqnU0sJCrExjYWkVxMJj2HkDO1sbwT438AaWnkAEbUQEQWwUwWY3GuOuxcRG3Nm4YyV+MDAMvPd/zDCP/6mZVgNNG3Pj/TPK3wgyjV3cIsPLeGW4wY5mYcE6HlEIab+uAtfoNDHfxqDCuMQbDpqmX0YeMX/HfhPjz7mMmJe4SDFfxTBiPsRaCuAoYl7iaVKjdsX5Zo3uKhWwUKO7TwXkNbr5VMBZja47KaBqehipfuQBFlMALTxEACWOUwCwJVRB7C/0UiGH4leVYyMVsidUcxXkFX1MpUBWcCokHgkVXQhXmOEEM98Jf1qzs0IHLQnp73AuvMcfnQ+eknaZhnTjRgAAAABJRU5ErkJggg==');
    }

input:checked + .slider {
    background-color: #66bb6a;
}

    input:checked + .slider:before {
        transform: translateX(26px);
        background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABmJLR0QA/wD/AP+gvaeTAAABTklEQVRIie3VvUpDQRAF4M8kiIKChaUKaqNg408R8wC+QBB8AX0A61Q2Fv41KWztTMQX0Bew0MbeJr3YKYgai72YEG+8ewPpPDAsu3f2nLm7M7P8Ywg4xD1GYpwLAwjMYz3W+S+BMkop63e46rOnksH5g028o9FHJA07+MBRjHMpIX/FarI2hV2c4wI1LCffinhAC4uRASl1kW/jGe0e+0Qdo5gW7ic3tvGVQt5tDZFZ1YupPpGnWXUQgb1I8jZu0gh6U+oETewn87UcwWwkYznhaGK2NwW3sKJznmM5BMaTcUa4NzjI2lQTf0SPaQRZVXctZFAMmpF+v1CXHf0TJgchLwpF1MggX+ryj8aOUP7TwqVXcYsXvAlnXsNE4n8sR++qCI2rJa78izp/eRYjUBC6YlrjKuukYTdKOMVcjMBfuBQiHdqLNnQsyPFkfgMK1GX/TfX41gAAAABJRU5ErkJggg==');
    }

.slider.round {
    border-radius: /*34*/ 4px;
}

    .slider.round:before {
        border-radius: 10%;
    }

    label > .slider,
    label > .slider.round,
    .slider.round
    .slider,
    .switch {
        margin-bottom: 0px !important
    }


@media (max-width: 768px) {
    /*.col-xs-6 {
        float: none !important;
        width: 100%;
    }*/

    .mobileFix {
        float: left !important;
        content: "";
        clear: both;
        display: table;
    }

    .bereichfix {
        margin-top: 0px !important;
    }

    .artikelfix {
        margin-top: 10px !important;
        margin-right: 15px !important;
    }
}

@media (min-width: 769px) {
    .bereichfix {
        margin-top: -20px !important;
    }
}

#ctl00_MainContent_cmbEvents {
    width: 100% !important;
}

#ctl00_MainContent_EventDomains {
    width: 100% !important;
}

#ctl00_MainContent_gvStaff {
    width: 100% !important;
}

.btn-updown {
    font-size: 10px;
    color: black;
    line-break: anywhere;
}

    .btn-updown:hover {
        color: red;
    }

.gvrbtn-updown {
    max-width: 25px;
    padding-right: 0px !important;
}

.gvLimitHeight {
    max-height: 600px;
    overflow-y: auto;
}
@media (max-width: 767px) {
    .gvLimitHeight {
        max-height: 400px;
    }
}

.multi-panelheader {
}


*::before,
::after {
    box-sizing: border-box;
}
.flex-container {
    height: 100px;
    width:100px;
    display: webkit-box;
    display: flex;
    -webkit-box-pack: center;
        justify-content: center;
    -webkit-box-align: center;
        align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-floW: row wrap;
    padding: 3em 1em;
    /*background: #180148*/
}
.flex-container .flex-item {
    margin: 5px;
    border-radius: 2px;
    padding: 4.5em 5em;
    position: relative;
    min-height: 260px;
    border-radius: 5px;
}
.flex-container .flex-item:focus {    
    box-shadow: 0 3pt 2pt red;
}
flex-container .flex-item a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: e;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align : center;
            align-items: center;
    text-decoration: none;
    text-align: center;
    color: #000;
    font-size: 24px;
    font-weight: normal;
    line-height: 1.5;
    -webkit-transition: 608ms ease;
    transition: 600ms ease;
    border-radius: 0px;
}
flex-container .flex-item a span {
    -webkit-transform: translateZ(50px) scale(0.7);
            transform: translateZ(50px) scale(0.7);
}
.flex-item span > img {
    width: 200px;
    max-height: 200px;
}
.flex-item .text {
    color: black;
    font-family : 'Noto Sans';
    font-size: 12px;
    position: absolute;
    bottom: 20px;
}

.tilt {
    box-shadow: 4px 8px -11px rgba(0, 0, 0, 0.7);
    -webkit-transform-style: preserve-3d
            transform-style: preserve-3d;
    -webkit-transform: perspective(420px) rotateX(0deg) rotateY(Odeg) scale3d(1, 1, 1);
            transform: perspective(420px) rotateX(Odeg) rotateY(0deg) scale3d(1, 1, 1);
}
.tilt:hover {
    box-shadow: 0 8px 28px -5px #000;
}

.bg-one {
    background: linear-gradient(45deg, #ff194b, #8215fO);
}
.bg-two {
    background: linear-gradient(45deg, #ff5f4b, #821564);
}   
.bg-three {
    background: linear-gradient(45deg, #ffeebb, #82000f);
}


.textbox {
    position: relative;
    max-width: 320px;    
}
.textbox label {
    position: absolute;
    display: grid;
    place-items: center left;
    transform-origin: 0% 0%;
    pointer-events: none;
    top: 4px;
    left: 4px;
    height: 46px;
    width: 140px;
    border-radius: 12px;
    background: rgb(255,8,68);
    background: linear-gradient(145deg, rgba(255,8,68,1) 0%, rgba(255,177,153,1) 100%);
    transition: 0.3s;
}
.textbox input {
    width: 320px;
    height: 54px;
    border-radius: 14px;
    background: #31313646;
    border: 0;
    padding-left: 152px;
    font-size: 16px;
    font-family: inherit;
    color: rgb(255 255 255 / 96%);
    outline: none;
    transition: 0.3s;
}
.textbox input::placeholder {
    color: rgb(255 255 255 / 50%);
}
.textbox :is(input:focus, input:valid) {
    padding-left: 18px;
    background: #313136a1;
}
    .textbox :is(input:focus, input:valid) ~ label {
        height: 36px;
        width: 80%;
        translate: -4px -24px;
        scale: 0.725;
        font-size: 16px;
        margin-top: 10px;
    }
    .textbox .form-group :is(input:focus, input:valid) ~ label {
        height: 36px;
        translate: -4px -24px;
        scale: 0.725;
        font-size: 16px;
        margin-top: 10px;
    }


@media only screen and (min-width: 100px) and (max-width: 790px) {
    .preOrderItemList .panel-collapse .panel-body .counter {
        width: 95.9%;
    }
    .preOrderItemList .panel-collapse .panel-body .counter .articleimage {
        width: 100px!important;
    }
    .count-title{
        font-size: 20px;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .preOrderItemList .panel-collapse .panel-body .counter .articleimage {
        width: 100px !important;
    }
    .count-title {
        font-size: 20px;
    }
}
@media (min-width: 768px) {
    .col-sm-offset-3 {
        margin-left: 37% !important;
    }
    .col-sm-9 {
        width: 60% !important;
    }
}
@media (min-width: 900px) {
    .col-md-offset-2 {
        margin-left: 27.5% !important;
    }
    .col-sm-9 {
        width: 68.5% !important;
    }
}
@media (min-width: 992px) {
    .col-md-offset-2 {
        margin-left: 27.5% !important;
    }
    .col-sm-9 {
        width: 70% !important;
    }
}
@media (min-width: 1368px) {
    .col-md-offset-2 {
        margin-left: 20% !important;
    }
    .col-sm-9 {
        width: 77.5% !important;
    }
}
@media (min-width: 1600px) {
    .col-md-offset-2 {
        margin-left: 17.5% !important;
    }
    .col-sm-9 {
        width: 80% !important;
    }
}
@media (min-width: 2000px) {
    .col-md-offset-2 {
        margin-left: 13.5% !important;
    }
}
@media (min-width: 2600px) {
    .col-md-offset-2 {
        margin-left: 10% !important;
    }
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 4px;
    margin-right: 0px;
}

@media (max-width: 768px) {
    .panel-heading {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .create-domain {
        margin-top: 10px;
        margin-left:43px;
    }
}


input::-webkit-calendar-picker-indicator:hover {
    cursor: pointer;
}

.table-responsive-cells {
    border-collapse: separate;
    width: 100%;
}
.table-responsive-cells > tbody > tr > td {
    display: inline-block;
    width: auto;
    margin: 0px 4px 0px 4px;
}

select {
    color: black !important;
}

.tr-warning {
    background-color: lightyellow !important;
}
    .tr-warning:hover {
        background-color: lightgoldenrodyellow !important;
    }

.sticky-header {
    position: sticky;
    top: -2px;
    background-color: #ededed !important;
    font-size: 15px;
}
.tr-warning:hover {
    background-color: lightgoldenrodyellow !important;
}

/* Friends Page */

.tabinactive {
    display: block;
    padding: 4px 18px 4px 18px;
    float: left;
    background: white;
    color: Black;
    font-weight: bold;
}

.tabinactive:hover {
    background: #dddddd;
    color: Black;
}

.tabactive {
    display: block;
    padding: 4px 18px 4px 18px;
    float: left;
    background: #7e7e7e;
    color: white;
    font-weight: bold;
}

.aligncenter{
    text-align: center;
}

.verticalmiddle{
    vertical-align: middle;
}

.tabButton {
    border: 0px;
    border-left: 1px solid lightgray;
    border-right: 1px solid lightgray;
}