/* Layout */

.WCC_margin_0 {
    margin: 0;
}

.WCC_right_left_4 {
    margin-left: 4px;
}

.WCC_right_margin_4 {
    margin-right: 4px;
}

.WCC_bottom_margin_4 {
    margin-bottom: 4px !important;
}

.WCC_bottom_margin_16 {
    margin-bottom: 16px;
}

.WCC_disabled {
    cursor: default !important;
    pointer-events: none;
}

/* Commands */

.WWC_button {
    position: relative;
    padding: 4px;
    cursor: pointer;
}

.WWC_button_large_min_width {
    min-width: 120px;
    white-space: nowrap;
}

.WWC_button_small_min_width {
    min-width: 40px;
    white-space: nowrap;
}

.WWC_button_image {
    position: absolute;
    left: 5px;
    top: 5px;
    width: 24px;
    height: 24px;
}

.WWC_primary {
    background: #5ebd5e;
    border: 2px solid #5ebd5e;
    border-radius: 20px;
    color: white;
    font-size: 12px;
}
    .WWC_primary:hover {
        border: 2px solid #AFA;
        background: #5ebd5e;
    }

.WWC_secondary {
    background: #FFF;
    border: 2px solid #0A0;
    border-radius: 20px;
    color: #0A0;
    font-size: 11px;
}
.WWC_secondary:hover {
    border: 2px solid #AFA;
}

.WWC_dangerous {
    background: #F00;
    border: 2px solid #F00;
    color: white;
}
.WWC_dangerous:hover {
    background: #F88;
    border: 2px solid #F88;
}

.WWC_icon_button {
    display: inline-block;
    opacity: 0.5;
    cursor: pointer;
}

.WWC_icon_button.WWC_icon_button_normal {
    font-size: 24px;
    height: 24px;
}

.WWC_icon_button.WWC_icon_button_small {
    font-size: 16px;
    height: 16px;
}
.WWC_icon_button:hover {
    opacity: 1;
}

.WWC_icon_button > span {
    vertical-align: middle;
}

.WWC_icon_button > .fas {
    position: relative;
    top: -4px;
    vertical-align: middle;
    color: #D13139;
}

.WWC_link {
    color: #F00;
    font-size: 14px;
}

.WWC_link:link {
    color: #F00;
}

.WWC_link:visited {
    color: #F00;
}

.WWC_link:hover {
    color: #F00;
    text-decoration: underline;
}

.WWC_link:active {
    color: #F00;
    text-decoration: underline;
}

/* Containers */

.WCC_panel {
    background: #EEE;
    padding: 12px;
}

.WCC_panel > h1 {
    color: #888;
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 8px;
}

.WCC_card {
    padding: 16px;
    margin-bottom: 16px;
}

.WCC_card_color {
    background-color: white;
    border: solid #DDD 2px;
}

.WCC_card_header {
    margin-bottom: 8px;
}

.WCC_card_title {
    color: #DDD;
    font-size: 20px;
}

.WCC_card_icon {
    color: #DDD;
    font-size: 20px;
}

/* Input */

.WCC_form_input_container {
    width: 100%;
    margin: 0 0 8px 0;
    /*margin: 40px 0 20px 0;*/
    text-align: center;
}

.WCC_form_input_label {
    display: inline-block;
    font-size: 0.8rem;
    margin: 0 0 2px 0;
}

.WCC_form_input {
    width: 100%;
    box-sizing: border-box;
    font-size: 1.2rem;
}

.WCC_form_input::placeholder {
    opacity: 0.33;
}

.WCC_form_input_radio {
    box-sizing: border-box;
    font-size: 1.1rem;
}

.WCC_form_input_radio_group {
    box-sizing: border-box;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.WCC_form_input_label_required {
    color: black;
}

fieldset { 
    border: none;
}

.WCC_form_input_label_optional {
    color: #B88;
}

.WCC_form_input_required {
    border: 2px solid darkgray;
}

.WCC_form_input_optional {
    border: 1px solid lightgray;
}

.WCC_form_input_disabled {
    opacity: 0.25;
}

.WCC_form_input_radio_large_font {
    font-size: 1.25rem;
    margin-right: 10px;
}

.WCC_form_input_radio_large {
    height: 16px;
}

.WCC_access_code_input {
    font-size: 1.2rem;
    vertical-align: middle;
}

.WCC_access_code_status_icon {
    vertical-align: middle;
}

.WCC_access_code_busy_indicator {
    height: 30px;
    width: 30px;
    vertical-align: middle;
}

.WCC_access_code_valid {
    color: #0F0;
}

.WCC_access_code_invalid {
    color: #F00;
}

/* Lists */

#WWC_list_empty_message {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    margin: 0;
    transform: translate(-50%, -50%);
    color: #AAA;
}

.WCC_list_item_container {
    display: flex;
    flex-direction: row;
    padding: 8px;
    cursor: pointer;
    border: solid 2px transparent;
}

.WCC_list_item_commands {
    flex: 0 0 48px;
}

.WCC_list_item_data {
    flex-grow: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.WCC_list_item_heading {
    font-weight: bold;
    font-size: 1rem;
    min-height: 2.3ex;
    color: black;
}

.WCC_list_item_details {
    font-size: 0.75rem;
    min-height: 2.3ex;
    color: #888;
}

.WCC_list_item_statistics {
    margin: 0;
    margin-top: 8px;
    font-size: 1rem;
    color: #AAA;
}

.WCC_list_item_statistics > .fas {
    color: #AAA;
    margin-right: 4px;
}

.WCC_list_item_statistic {
    margin-right: 8px;
}

/* Selection */


/* Service */

.WCC_service_call_indicator_container {
    padding: 8px;
    margin: 8px 0;
}

.WCC_service_call_indicator_table {
    width: 100%;
    vertical-align: middle;
    font-size: 0.8rem;
}

.WCC_service_call_indicator_table td {
    text-align: left;
}

.WCC_service_call_activity_indicator {
    width: 40px;
}

.WCC_service_call_error_title {
    font-weight: bold;
}

.WCC_service_call_error {
    color: #800;
    background: #FEE;
}

/* Text */

.WCC_text_header {
    margin-bottom: 4px;
    display: inline-block;
    font-size: 1.33rem;
    color: #888;
}

.loader-container .WCC_text_header{
    font-size: 3rem;
}

.WCC_text_title_header {
    margin-bottom: 4px;
    font-size: 1.33rem;
    color: #888;
}

.WCC_text_section_header {
    display: inline-block;
    font-size: 1.1rem;
    color: #888;
}

.WWS_sectionHeaderHeading {
    font-size: 1.3rem;
    color: #AAA;
}

.WCC_text_header_postfix {
    display: inline-block;
    font-size: 1.1rem;
    color: #888;
    opacity: 0.5;
}

.WCC_text_information_emphasize {
    padding: 0;
    margin: 0;
    text-align: left;
    font-size: 0.9rem;
    opacity: 0.75;
}

.WCC_text_information {
    padding: 0;
    margin: 0;
    text-align: left;
    font-size: 0.8rem;
    opacity: 0.5;
}

.WCC_label_small {
    padding: 0;
    margin: 0;
    text-align: left;
    font-size: 0.66rem;
    opacity: 0.5;
}

.WCC_text_small {
    padding: 0;
    margin: 0;
    text-align: left;
    font-size: 0.66rem;
}

.WCC_text_error {
    padding: 0;
    margin: 0;
    color: #F00;
    text-align: left;
    font-size: 0.8rem;
}

.WCC_text_success {
    padding: 0;
    margin: 0;
    color: #0A0;
    font-size: 0.8rem;
}

.WCC_input_error {
    background-color: #FEE;
    border: 1px solid #F00;
}

.WCC_input_error::placeholder {
    color: #FCC;
}

.WCC_extra_large {
    font-size: 2rem;
    font-weight: bolder;
    padding: 16px;
}

.WCC_text_details {
    font-size: 0.8rem;
}

.WCC_text_bold {
    font-weight: bold;
}

.WCC_table_heading {
    text-decoration: underline;
    font-size: 1.3rem;
}

.WCC_text_in_table_normal {
    font-size: 0.8rem;
}

.WCC_text_in_table_bold {
    font-weight: bold;
    font-size: 1.3rem;
}

/* Statistics */

.WCC_statistics_icon {
    color: #AAA;
    margin-right: 8px;
}

.WCC_statistics_value {
    color: black;
    font-weight: 600;
    margin-right: 16px;
    margin-right: 32px;
}

/* Layout */

.photographLabel {
    font-size: 0.66rem;
    color: #AAA;
}


.total.marginRight8, .barLabel, .orderItemDetailTotal, .WCC_form_input_label_required {
    font-size: 20px;
    text-align: right;
    font-weight: 100;
}

@media only screen and (max-width: 350px){
    .total.marginRight8, .barLabel, .orderItemDetailTotal, .WCC_form_input_label_required {
        font-size: 16px;
        text-align: right;
        font-weight: 100;
    }

}

.WCC_form_input_label_required.WCC_form_input_radio_large {
    font-weight: bold;
}

@media only screen and (max-width: 500px) {

    #productListContainer {
        padding: 8px;
        /*width: 90%;*/
        margin: auto;
        /*height: -webkit-fill-available;*/
        /* height: calc(100vh - 15%);*/
        /*height: 100%;*/
        /*height: -webkit-fill-available;*/
    }

    #form{
        padding: 9px;
    }
}


/*Custom Scrollbar:*/
html {
    /*overflow: auto;*/
}

/* Let's get this party started */
::-webkit-scrollbar {
    width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(255,0,0,0.8);
    background: #ccd3db;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}

    ::-webkit-scrollbar-thumb:window-inactive {
        background: #ccd3db;
    }

.addon-modal-list .card.productCard.shadow-sm{
    scale: 0.8;
}
.addon-modal-list .modal.fade.full-modal.show {
    scale: 0.8;
}