html, body {
    height: 100%;
}

a:focus {
    outline: none;
}

.btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus {
    outline: none;
}

#_csrf {
    display: none;
}

.usernameLabel {
    text-align: right;
    max-width: 200px;
}

.usernameLabel a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.date-picker-container,
.filter-date-picker-container {
    overflow: hidden;
}

#date-picker-anchor,
#filter-date-picker-anchor {
    position: relative;
}

#date-picker-anchor div.bootstrap-datetimepicker-widget.dropdown-menu,
#filter-date-picker-anchor div.bootstrap-datetimepicker-widget.dropdown-menu {
    left: 0px !important;
    top: auto !important;
    bottom: 0px !important;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
    input {
        line-height: 3 !important;
        padding: 3px 12px;
    }
}

.panel-header-row {
    padding: 12px;
    height: 40px;
    margin-top: -16px;
    font-family: inherit;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: normal;
    line-height: 1;
    color: #555555;
    background-color: #eeeeee;
    border: 1px solid #ccc;
}

.awfModal, .alert {
    z-index: 1131 !important;
}

.blockUI-text {
    margin-top: 10px;
    margin-bottom: 10px;
}

.iconSuccess {
    color: #5cb85c;
}

.navbar {
    margin-bottom: 0px;
}

.nav-pills {
    margin-bottom: 20px;
}

.navBarButton ul.nav.nav-pills {
    min-height: 56px;
}

.pullRight {
    float: right !important;
    margin-right: 0;
}

.buttonLargeText {
    width: auto !important;
    margin-left: -50px;
}

.statusBadge {
    min-height: 15px !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
    border-radius: 5px !important;
}

.orderProductStatusBadge {
    font-size: 80% !important;
    min-width: 180px;
    max-width: 180px;
    display: inline-block;
    float: right;
}

.orderStatusBadge {
    display: block !important;
    max-width: 180px;
}

.grouped-order-product-sequence {
    max-width: 100px;
}

.groupedStatusBadge {
    margin-right: 10px;
    margin-left: auto;
}

.label {
    font-size: 80% !important;
}

.without-border {
    border: none;
    box-shadow: none;
}

.searchKstBtn {
    height: 50px;
    white-space: normal;
    padding: 3px;
}

.thumbnail-button {
    margin-left: 0px !important;
    flex-shrink: 0;
    display: flex !important;
    align-items: center;
}

.thumbnail-button > button {
    min-width: 272px;
    text-align: left;
}

#passwordForgotten {
    padding-top: 0px;
    padding-bottom: 10px;
}

.list-text {
    white-space: pre-wrap;
}

.section-text {
    margin-left: -10px;
    margin-top: 7px;
    display: block;
}

.organisation-ext-int-column {
    word-spacing: 10px;
}

.organisation-ext-int-column i {
    font-size: 16px;
}

.organisation-table-all-columns {
    text-align: center;
    vertical-align: middle !important;
}

/************ Custom form validation field classes ***********/

.custom-error-label {
    color: #a94442 !important;
}

.custom-error-field {
    border-color: #a94442 !important;
    -webkit-box-shadow: inset 0 1px 1px rgba(169, 68, 66, 0.075) !important;
    box-shadow: inset 0 1px 1px rgba(169, 68, 66, 0.075) !important;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s !important;
}

/************ Login ***********/

.form-control:focus {
    border-color: #FFACAAFF;
}

#loginForm {
    max-width: 500px;
}

.login-info-links {
    padding: 15px;
    font-size: 12px;
    line-height: 2;
}

.login-info-links a.impressumLink > span, .login-info-links a.dataProtectionLink > span {
    padding-right: 5px;
}

.user-state-label-cnt > div {
    padding: 0px;
}

/************ Terms & Conditions dialog ***********/
#confirmNewSimTermsAndConditionsDialog .checkbox {
    margin: 0px;
}


.user-locked-checkbox-cnt div.checkbox label.bf-required:after {
    content: " ";
}

.user-locked-checkbox-cnt {
    position: relative;
    width: 20px;
    height: 20px;
    margin-top: -14px;
}

.user-locked-checkbox-cnt div.checkbox {
    position: absolute;
    padding: 0;
    margin: 0;
}

/* ------------------ Help PopUp ----------------- */

.item-with-help {
    width: calc(100% - 14px) !important;
}

.help-icon {
    font-size: 18px;
    color: #5bc0de;
}

.popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.awf-popup {
    top: calc(50% - 4px);
    position: absolute;
    right: 5px;
    pointer-events: all;
}

.popup .popuptext {
    visibility: hidden;
    width: 200px;
    background-color: #aaa;
    color: #fff;
    text-align: center;
    border-radius: 6px !important;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    z-index: 10000;
    white-space: pre-wrap;
    text-align: left;
    padding: 5px;
}

.popup .popuptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #aaa transparent transparent transparent;
}

.popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 500ms;
    animation: fadeIn 500ms;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.helpLink {
    font-size: 14px;
    position: absolute;
    right: 170px;
    top: 85px;
    background-color: #EC1B2D;
    color: white;
    min-width: 60px;
    min-height: 25px;
    padding: 5px 10px;
    text-align: center;
    word-spacing: 5px;
    border-radius: 5px !important;
    box-shadow: 1px 2px 2px rgba(100, 100, 100, 0.5);
}

a.helpLink:hover {
    color: #DDDDDD !important;
}

a.helpLink:active,
a.helpLink:focus {
    color: #EEEEEE !important;
}

a.helpLink > span {
    padding-right: 5px;
}

.help-custom-cnt {
    position: absolute;
    pointer-events: none;
}

/* ------------------ TextEditor (QuillJs) ----------------- */
.align-center {
    text-align: center;
}

/* ------------------ Paddings ----------------- */

/* ------------------ Error's pages ----------------- */
.error-message-container {
    text-align: center;
    margin-top: 80px;
}

.error-message {
    font-size: 45px;
}

/* --------------------------------------------- */

/* ------------------ Paddings ----------------- */
.panel-no-padding .panel-heading, .panel-no-padding .panel-body, .no-padding {
    padding: 0px !important;
}

.order-defails-left-column {
    padding: 0px 5px 0px 7px !important;
}

.counterLabel {
    padding-top: 5px;
    padding-right: 8px;
    margin-left: 5px;
    box-shadow: 1px 1px 10px 1px #888;
}

/* --------------------------------------------- */

/* ------------------ Margins ------------------ */
.margin-top-small {
    margin-top: 5px;
}

.margin-top-medium {
    margin-top: 10px;
}

/* --------------------------------------------- */
/* ------------------ Captcha ------------------ */
div.BDC_CaptchaDiv {
    display: flex;
}

div.BDC_CaptchaIconsDiv {
    margin-left: 5px;
}

div.BDC_CaptchaImageDiv a[style] {
    opacity: 0;
}

.BDC_CaptchaDiv a img.BDC_SoundIcon {
    display: none !important;
}

/* --------------------------------------------- */
/* ------------------ Dialogs ------------------ */
#scrollUpCustom {
    background-image: url("/awfFrontEnd/jakarta.faces.resource/images/scrollUp.png.xhtml");
    background-size: 100%;
    bottom: 65px;
    right: 12px;
    width: 24px; /* width of the custom image */
    height: 24px; /* height of the custom image */
    outline: none;
}

/* Data table */
:root {
    --dt-row-selected: 255, 172, 170;
    --dt-row-selected-text: 0, 0, 0;
    --dt-row-selected-link: 9, 10, 11
}

.table.dataTable tbody > tr.selected,
table.dataTable tbody > tr > .selected {
    background-color: rgb(255, 172, 170) !important;
    color: black;
}


.dataTable tbody tr:hover {
    background: rgb(255, 226, 225) !important;
}

.pagination > li > a, .pagination > li > span {
    color: black;
    background-color: #fff;
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    color: #fff;
    background-color: #FFACAAFF;
    border-color: #FFACAAFF;
    outline-color: #FFACAAFF;
}


/* -------------------------------------------------- */
/* ------------------ Icon colored ------------------ */
.icon-primary, .primary-text {
    color: #337ab7;
}

.icon-success, .success-text {
    color: #5cb85c;
}

.icon-info, .info-text {
    color: #5bc0de;
}

.icon-warning, .warning-text {
    color: #f0ad4e;
}

.icon-danger, .danger-text, .danger-text > a {
    color: #d9534f !important;
}

.gray-text {
    color: gray;
}

.black-text {
    color: black;
}

.success-background {
    background-color: #5cb85c;
}

.info-background {
    background-color: #5bc0de;
}

.warning-background {
    background-color: #f0ad4e;
}

.danger-background {
    background-color: #d9534f;
}

.primary-background {
    background-color: #337ab7;
}

/* ------------------------------------------------------------------------ */
/* ----------------------------- BootsFaces Row/Column--------------------- */
.row-center-content {
    text-align: center;
    align-content: center;
}

/* ------------------------------------------------------------------- */
/* ----------------------------- Products----------------------------- */
.productImage {
    padding-top: 10px;
    height: 150px;
}

.productImage-container {
    text-align: center;
}

.product-name {
    font-size: 12px;
}

.cartImage {
    max-width: 100px;
    max-height: 60px;
    margin-right: auto;
    margin-left: auto;
    display: block;
}

.cart-product-column {
    width: 285px;
    position: relative;
}

.cart-product-title {
    font-size: 15px;
}

.cart-product-info {
    display: flex;
}

.cart-parameters-column {
    padding: 8px 0px !important;
}

.cart-actions-column {
    width: 50px;
}

.productAuthorization-image {
    height: 50px !important;
}

.productAuthorization-panel {
    height: 100px;
}

.productAuthorizationTask-panel {
    padding: 10px;
    border: 1px;
    background-color: #dff0d8;
    border-color: #d6e9c6;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.productAuthorizationTask-panel-new {
    background-color: #fcf8e3;
    border-color: #faebcc;
}

.productAuthorizationTask-panel .panel-group {
    margin-bottom: 0px;
}

.productAuthorizationTask-panel .panel {
    box-shadow: none;
    border: 0px;
}

#basketProductsList .img-responsive, #basketProductsList .thumbnail > img, #basketProductsList .thumbnail a > img, #basketProductsList .carousel-inner > .item > img, #basketProductsList .carousel-inner > .item > a > img {
    max-width: none;
    height: auto;
}

.thumbnail-shop {
    height: 540px;
}

.thumbnail-shop .caption {
    height: 205px;
    display: flex;
    flex-direction: column;
}

.thumbnail-text {
    height: 125px;
    min-height: 125px;
    flex-shrink: 0;
}

#cartPanel .form-group, #cartPanel .form-inline .form-control {
    width: 100%;
}

.comment-row {
    margin-top: 15px;
}

.comment-column {
    bottom: 0px;
    margin-bottom: 7px;
}

.comment-area-row {
    bottom: 0px;
}

.comment-area-row > div[class^="col-"] {
    padding: 0px;
}

.addComment-button {
    font-size: 12px;
}

.comment-column .panel-heading {
    padding: 0px;
    border: none;
    box-shadow: none;
    border-radius: 0;
    background: none;
}

.comment-column .panel {
    padding: 0px;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.comment-column .panel-heading a::after {
    content: none;
}

.comment-column .panel-body {
    border: none;
    border-color: transparent;
}

.even .comment-column .panel-heading {
    background: none;
}

.cart-actions-row {
    vertical-align: middle;
    height: 40px;
}

.quantity-row {
    height: 40px;
    margin-top: 10px;
    text-align: center;
}

.quantity-row div[class^="col-"] {
    padding: 0px;
}

.quantity-row div[class^="col-"]:nth-child(2),
.quantity-row div[class^="col-"]:nth-child(3) {
    text-align: left;
}

.quantity-button {
    min-height: 20px;
    max-height: 20px;
    min-width: 20px;
    max-width: 20px;
    border-radius: 50% !important;
}

.quantity-button > span > i {
    padding-top: 3px;
}

.quantity-field {
    width: 50px !important;
    height: 20px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center;
}

.cart-product-type {
    padding-left: 0px;
}

.orderItem-cart {
    font-weight: 500;
    font-size: 15px;
}

.orderItemParameter-cart {
    font-weight: 500;
    padding-left: 10px;
}

.orderProductState {
    margin-top: -29px;
    visibility: visible;
    display: block;
    float: right;
}

.orderEntryCopyButtons {
    margin-top: 10px;
}

.productNotSelected {
    background-color: #f2dede;
    border-color: #ebccd1;
}

.productSelected {
    background-color: #dff0d8 !important;
    border-color: #d6e9c6 !important;
}

.productSelected, .productNotSelected {
    text-content: center;
    display: table;
    min-width: 101px;
    min-height: 154px;
}

.productAuthorization-panel .panel-body.ui-hidden-container {
    padding: 2px 7px !important;
}

.productAuthorisation-group-row {
    margin-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

.productAuthorisation-group-row .col-md-12 {
    padding-left: 0px;
    padding-right: 0px;
}

.productAuthorisation-text-row {
    margin-top: 5px;
    padding-left: 0px;
    padding-right: 0px;
}

.productAuthorisation-text-row .col-md-12 {
    padding-left: 0px;
    padding-right: 0px;
}

.productOrderDetailsImage {
    height: 40px;
    margin-top: 5px;
}

.productOrderListIcon {
    margin: 5px 0px;
    max-height: 60px;
    max-width: 60px;
}

.order-list-heading-row {
    width: 100%;
    display: flex;
}

.order-list-heading-row > div[class^="col-"] {
    align-self: center;
}

.order-list-img-container {
    text-align: center;
}

.order-list-img-container img {
    max-height: 50px;
    margin-left: 7px;
}

.grouped-order-layout {
    width: 100%;
}

/* ---------------------------------------------------------------- */
/* ----------------------------- Panel----------------------------- */
.panel-title-heading-primary a {
    color: #fff;
}

.panel-title-heading-success a {
    color: #3c763d;
}

.panel-title-heading-info a {
    color: #31708f;
}

.panel-title-heading-warning a {
    color: #8a6d3b;
}

.panel-title-heading-danger a {
    color: #a94442;
}

.panel-title-heading- * a {
    color: red !important;
}

[class^="panel-title-heading-"], [class*=" panel-title-heading-"] {
    font-size: 16px;
    color: inherit;
    font-weight: 500;
}

[class^="panel-title-heading-"] .bf-required:after, [class*=" panel-title-heading-"] .bf-required:after {
    content: none !important;
}

.panel-datatable .panel-heading, .panel-datatable-left .panel-heading {
    padding: 1px;
}

.panel-datatable .panel-heading {
    text-align: center;
}

.panel-datatable .panel-body {
    padding: 2px;
}

.hideContent {
    display: none !important;
}

#bundlePanel .panel-group .panel {
    margin-bottom: 20px;
}

.panelGroup-no-margin-bottom .panel-group {
    margin-bottom: 0px;
}

.panelGroup-5-margin-bottom .panel-group {
    margin-bottom: 0px;
}

.panel-no-panel {
    background: inherit !important;
}

.panel-no-panel .panel-heading, .panel-datatable-left .panel-heading {
    padding: 0px;
    min-height: 30px;
}

.panel-no-panel .panel-heading a.collapsed:after, .panel-no-panel .panel-heading a:after {
    content: none;
    right: 5px;
    position: absolute;
}

.panel-no-panel .panel-heading a.collapsed:before, .panel-heading a:before {
    font-style: normal;
    font-variant-ligatures: normal;
    font-variant-caps: normal;
    font-variant-numeric: normal;
    font-weight: normal;
    font-stretch: normal;
    font-size: inherit;
    line-height: 1;
    font-family: FontAwesome;
}

.panel-no-panel, .panel-no-panel .panel-body {
    border: none !important;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none !important;
}

.panel-no-panel a {
    font-size: 12px !important;
    text-decoration: none !important;
}

.panel-no-panel .panel-body {
    padding-top: 5px;
    padding-bottom: 5px;
}

.panel-no-panel .panel-heading a.collapsed:before {
    content: "\f078";
}

.panel-no-panel .panel-heading a:before {
    content: "\f077";
    margin-right: 5px;
}

.panel-no-panel.hidden-expand .panel-heading a.collapsed:before,
.panel-no-panel.hidden-expand .panel-heading a:before {
    content: " ";
    margin-right: 15px;
}

.panel-no-panel.hidden-expand .panel-body {
    display: none;
}


.panel-no-panel a.panel-title-link {
    color: black;
    position: relative;
    min-height: 30px;
    display: flex !important;
    align-items: center;
    padding-left: 5px;
}

.switch-back-user-link > a {
    padding: 15px 0px !important;
}

/* ------------------------------------------------------------------------------ */
/* ----------------------------- OrderProduct panel ----------------------------- */
.item-panel {
    width: 100%;
}

.order-product-panel {
    width: calc(100% - 120px);
    margin-left: auto;
    margin-right: 5px;
}

.order-product-details-panel.panel.panel-default {
    border: none;
    background: transparent;
    box-shadow: none;
}

.order-product-details-panel .panel-body {
    padding-top: 0px;
    padding-bottom: 0px;
}

.order-product-details-panel .row {
    border-bottom: 1px solid #ddd;
    min-height: 30px;
    display: flex;
    align-items: center;
    font-size: 1.1em;
    padding: 5px 0px;
}

.cart-parameters-column .order-product-details-panel.panel.panel-default {
    margin-top: 0px;
}

.task-title-column {
    margin-bottom: 20px;
    padding-left: 30px !important;
}

.order-list-style {
    margin-bottom: 15px !important;
    border-style: solid !important;
    border-width: 1px !important;
}

.order-product-section-title {
    font-size: 13px;
    color: black;
}

.grouped-order-list-style {
    border-color: #c8cbce !important;
}

/***************** Product image container *******************/
.img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-width: 100px;
    max-width: 100px;
}

.img-container img.productOrderDetailsImage {
    width: 100px;
    height: auto;
}

.img-container .btns-cnt {
    display: flex;
}

.img-container .btns-cnt > * {
    min-width: 60px;
    max-width: 60px;
    margin-left: 5px;
    margin-top: 5px;
}

.img-container.task-style {
    min-width: 200px;
    max-width: 200px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 0px;
}

.img-container.task-style img.productOrderDetailsImage {
    width: 200px;
}

/************************************************************/
.order-product-details-panel .row div {
    display: flex;
    padding: 0px 5px;
}

.no-rl-padding {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.shopping-column {
    display: flex;
    align-items: center;
}

.std-ul-list {
    padding-left: 20px;
    margin-bottom: 0;
}

.generic-wrap-text {
    word-wrap: break-word;
    word-break: break-all;
    hyphens: auto;
    -moz-hyphens: auto;
}

ul.std-ul-list > li {
    color: #5bc0de;
}

.row .orderEntryCopyButtons {
    display: flex;
    justify-content: center;
}

.notiz-textarea {
    border-radius: 5px !important;
}

.no-padding,
.panel-no-panel.no-padding .panel-body {
    padding: 0px !important;
}


/* ---------------------------------------------------------------- */
/* ----------------------------- Table ---------------------------- */
#tapsResultSubscriberPanel .table .panel-group {
    margin-bottom: 0px;
}

#tapsResultSubscriberPanel .table .btn {
    width: 150px;
}

#tapsResultSubscriberPanel .table > thead > tr > th, #tapsResultSubscriberPanel .table > tbody > tr > th, #tapsResultSubscriberPanel .table > tfoot > tr > th, #tapsResultSubscriberPanel .table > thead > tr > td,
#tapsResultSubscriberPanel .table > tbody > tr > td, #tapsResultSubscriberPanel .table > tfoot > tr > td {
    vertical-align: middle;
}

.button-column {
    width: 150px;
}

.text-ellipsis {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    display: block;
}

.taps-icon-column {
    width: 16px;
}

.scheduler-status-column {
    width: 26px;
    text-align: center;
}

.buttonInColumn {
    width: 100px;
}

.id-column {
    width: 20px;
    text-align: center;
}

.order-details-column {
    width: 35%;
}

.order-details-column > .row {
    margin-bottom: 7px;
}

.order-details-column > .row > div:nth-child(2) {
    padding-left: 0px;
}

.legend-field, .subscriber-already-selected {
    background-color: #fcf8e3 !important;
}

.selected-row {
    background-color: rgb(255, 172, 170) !important;
}

.duplicated-alias {
    background-color: #f4e3e1 !important;
}

.legend-example {
    min-height: 23px;
    max-height: 23px;
    min-width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 3px 0px 3px 15px;
    padding: 5px;
    border: 1px solid lightgray;
    font-size: 12px;
}

.legend-example.legend-example-bigger {
    min-width: 175px;
}

.legend-explanation-text {
    font-size: 12px;
    color: #aaaaaa;
}

/* ------------------------------------------------------------------------ */
/* ----------------------------- Welcome Page ---------------- */
.welcome-page-title {
    font-weight: bold;
}

.space-inline {
    margin-left: 5px;
}

/* ------------------------------------------------------------------------ */
/* ----------------------------- Buttons / Icons / Spinner ---------------- */
.spinner-right {
    margin-left: 5px;
}

.tapsKstAlias .input-group-addon, .searchFilters .input-group-addon {
    padding: 0;
    border: none;
}

.searchFilters .input-group-addon {
    width: 0%;
}

.welcome-btn {
    margin-bottom: 20px;
}

/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */

/* ----------------------------- Bootstrap extensions --------------------- */
/* ----------------------------- col extensions --------------------------- */
.col-md-25 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

@media ( min-width: 992px) {
    .col-md-25 {
        width: 20%;
    }

    .col-md-25 {
        float: left;
    }
}

/* ------------------------------------------------------------------------ */
#removeTaskConfirmDialog div.panel-body div.row:first-child div div.col-md-12, #completeSuccessCb label.control-label {
    padding: 0;
}

#completeSuccessCb label.control-label {
    margin-right: 10px;
}

.button-disabled {
    cursor: not-allowed !important;
    opacity: .65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.button-disabled:focus {
    pointer-events: none !important;
}

/* ----------------------------- Primefaces Quirks --------------------- */
.pf, .pf * {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.nest-bf-in-pf .form-group {
    margin-bottom: 0px;
}

/* ------------------------------------------------------------------------ */

/* --------------------------------------------- */
/* ------------------ SunPas ------------------ */

.android-color {
    color: #A4C639;
}

.apple-color {
    color: rgb(182, 182, 182);
}

.sunpas-downloadapp-txt {
    display: block;
    margin: 20px 0px;
}

.sunpas-scanqrcode-txt {
    display: block;
    margin-bottom: 15px;
}

.sunpas-btn {
    display: block;
    margin: 20px 0px;
}

.sunpasLoginSetupTitle {
    font-size: 20px;
    font-weight: bold;
    display: block;
}

@keyframes sunpasLogoKeyframe {
    0% {
        opacity: 1
    }
    50% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

.sunpasLogo {
    animation-name: sunpasLogoKeyframe;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.small-text-under-input {
    display: block;
    margin: -10px 0px 15px 0px;
    font-size: 11px;
}


.small-text-under-button {
    display: block;
    margin: 5px 0px 0px 0px;
    font-size: 11px;
}


.multiple-select-row {
    min-height: 67px;
    display: flex;
    align-items: center;
}

.multiple-select-main-item {
    border-top: 4px solid #5bc0de;
    border-left: 4px solid #5bc0de;
    border-right: 4px solid #5bc0de;
    padding: 7px 0px;
}

.multiple-select-std-item {
    padding: 7px 0px;
}

.multiple-select-delimiter {
    border-bottom: 1px solid lightgray;
}

.multiple-select-btn-position {
    position: absolute;
    width: 126px !important;
    top: 9px;
}

div.padding-bottom0,
div.padding-bottom0 div.panel-body {
    padding-bottom: 0px;
}

.main-border {
    border-bottom: 4px solid #5bc0de;
    border-left: 4px solid #5bc0de;
    border-right: 4px solid #5bc0de;
}

.bg-table {
    background-color: #f9f9f9;
}

.medium-text {
    font-size: 13px;
}

.enable-multiselect-cnt {
    display: flex;
    justify-content: flex-end;
    max-height: 20px;
    align-items: center;
}

.bottom-margin-and-border {
    margin-bottom: 15px;
    border-bottom: 1px solid lightgray;
    display: flex;
    align-items: center;
}

.small-gray-text-bmargin {
    display: block;
    margin-bottom: 30px;
    color: #aaa;
    font-size: 14px;
}

.table.table-bordered.dataTable {
    border-right-width: 1px;
}


.margin-bottom-15 {
    margin-bottom: 15px;
}

.padding-top-15 {
    padding-top: 15px;
}

.dataTables_length {
    display: inline-block !important;
}

.dataTables_paginate.paging_simple_numbers {
    display: inline-block !important;
    float: right;
}

.flex-cnt {
    display: flex;
    min-width: 100%;
}

.flex-item {
    flex: 1;
}

.no-padding {
    padding: 0px;
}

.flex {
    display: flex;
}

.max-width-100 {
    max-width: 100%;
}

.password-toggle {
    position: absolute;
    color: #555555;
    background-color: #eeeeee;
    min-width: 34px;
    min-height: 34px;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
}

.password-toggle.active {
    background-color: #aaddff;
}

.pwd-t-login {
    top: 0px;
    right: 30px;
}

.item-pwd-t-login {
    width: calc(100% - 48px) !important;
}

.item-pwd-t-reset {
    width: calc(100% - 33px) !important;
}

.pwd-t-reset {
    top: 25px;
    right: 15px;
}

.pwd-t-change {
    top: 25px;
    right: 30px;
}

.addTcCustomersModal .modal-dialog {
    width: 1000px;
}

#sunpas_config_body,
#sunpas_config2_body {
    min-height: 120px;
}

.padding-top-30 {
    padding-top: 30px;
}

.panel-welcome {
    min-height: 330px;
}

div.row.hoverable-row:hover,
div.row.bg-table:hover {
    background-color: rgb(255, 226, 225) !important;
    padding-left: 0;
    padding-right: 0;
}

.text-right {
    text-align: right;
}

#notifyGrouping,
#expressDelivery {
    margin-left: 30px;
}

.padding-l4 {
    padding: 0px 0px 0px 4px !important;
}

.margin-l30 {
    margin-left: 30px;
}

.margin-l20 {
    margin-left: 20px;
}

#sunpasNewDevice {
    margin-left: -5px;
}

.align-right-pr9 {
    text-align: right;
    padding-right: 9px;
}

div.confirmationProductsContainer > div {
    margin-right: 0;
    font-size: 12px;
}

div.confirmTcFaultOrderDialog .order_shoppingCart_makeTCOrderLaserDeactivatedInfoModalText {
    padding-bottom: 15px;
    display: inline-block;
}

table.confirmationProductsTable th.orderproductaggregator {
    border: 0;
}

table.confirmationProductsTable.dataTable tbody tr:hover {
    background: none !important;
}

div#confirmationProducts_wrapper div.dataTables_scrollBody {
    border-left: 0 !important;
}

#confirmationProducts_wrapper > div > div.dataTables_scrollHead > div > table > thead {
    background-color: #AFB4BB;
    color: white;
}

table.dataTable thead th.align-right {
    text-align: right;
}

table.confirmationProductsTable.table > tbody > tr > td {
    border-top: 0;
}

.border-bottom-1-gray {
    border-bottom: 1px solid #AFB4BB;
}

.align-right {
    text-align: right;
}

.border-1px {
    border: 1px solid #AFB4BB;
}

.padding-right-23 {
    padding-right: 23px;
}

.width100 {
    width: 100%;
}

.maintenanceTypologySelect td > input {
    margin-right: 5px;
}

#maintenanceModePage label {
    font-weight: normal;
}

.productsLegend, .showMessageOnLoginPageRowLegend {
    font-weight: normal;
    font-size: 12px;
}

.productsLegendDisabled {
    color: #cccccc;
}

.marginTop20px {
    margin-top: 20px;
}

.loginMaintenanceModeWarning {
    margin-bottom: 20px;
    text-align: center;
    font-size: larger;
    background-color: #ff5f5f;
    color: white;
}

.productTileDisabled {
    background-color: rgba(204, 204, 204, 0.25);
    cursor: not-allowed;
}

button.productTileDisabled {
    cursor: not-allowed;
    box-shadow: none;
    background-color: #cccccc;
}

button.productTileDisabled:hover {
    background-color: #ABABABFF;
}

#showMessageOnLoginPageMesssage > label {
    font-size: 1.1em;
}

.showMessageOnLoginPageCol {
    padding-left: 7px;
}

.showMessageOnLoginPageMessageCol {
    padding-left: 32px;
}

.ui-tooltip .ui-tooltip-text {
    background-color: #AFB4BB;
    color: white;
}

.refresh-icon {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 10;
    cursor: pointer;
}

.product-description {
    margin-bottom: 5px;
}
