/*
@require catrina v1.1
*/

.universal__container {
    background-color: whitesmoke;
    position: fixed;
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-rows: 50px auto;
}

.global__header {
    background-color: white;
    height: 50px;
    text-align: center;
    display: grid;
    align-items: center;
    grid-template-columns: 350px auto;
    color: var(--c-gray2);
    border-bottom: 1px solid whitesmoke;
}
.g__header__name {
    cursor: pointer;
}

.g__header__name img {
    width: 49px;
    height: 49px;
}

.main__container {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 350px auto;
    overflow-y: auto;
}

.lateral__container {
    background-color: white;
    font-size: 18px;
    padding: 1%;
    overflow-y: auto;
}
.lateral__list {
    padding-top: 15px;
    padding-bottom: 15px;
    overflow-y: scroll;
}

.lateral__container li, .lateral__li {
    border-radius: 0.5rem;
    background-color: whitesmoke;
    margin-top: 2%;
    padding: 1%;
    min-height: 35px;
    align-items: center;
    cursor: pointer;
    list-style: none;
    display: grid;
    justify-content: center;
    transition: 0.5s;
    color: var(--c-gray2);
    border: 2px solid var(--c-gray1);
}

.lateral__container li.lateral__li--select{
    background-color: var(--c-red2);
    border-color: var(--c-red2);
    color: white;
    transition: 0.5s;
}

.lateral__closed {
    display: none;
}

.lateral__open {
    display: inherit;
}

li.lateral__sub {
    width: 90%;
    border-color: whitesmoke;
}

.body__container{
    padding: 1%;
    color: var(--c-gray2);
    overflow-y: auto;
}

/* ----- app product c ----- */
.option_card {
    display: inline-grid;
    text-align: center;
    height: 90px;
    border: 2px solid var(--c-gray5);
    transition: 0.5s;
    border-radius: 0.5rem;
    place-items: center;
    cursor: pointer;
}

.product__c__form {
    display: grid;
    text-align: center;
    place-items: center;
}

.product__c__form__data {
    overflow-y: scroll;
}

.product__c__form__sub_container, .simple_box {
    background-color: white;
    border-radius: 0.5rem;
    display: inline-block;
    margin: 1%;
    padding: 1%;
    width: 90%;
}

.simple_box.c--hidden {
    display: none;
}

.data_div {
    display: grid;
    width: 100%;
    grid-template-columns: 250px auto;
    margin-bottom: 20px;
}

.data_div label, ._place-center {
    display: grid;
    place-items: center;
}

.data_middle_div {
    height: 90px;
    display: inline-grid;
    width: 40%;
}

.sub_container_list {
    display: inline-grid;
    grid-template-rows: 30px auto;
}

.btnAdd {
    background-color: var(--c-yellow2);
    color: white;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    font-weight: bolder;
    font-size: 20px;
}

.c__product__list_names, .simple_list_container{
    background-color: whitesmoke;
    width: 100%;
    height: auto;
    display: grid;
    place-items: center;
    border-radius: 0.5rem;
    margin-top: 5px;
}

.c__product__list_name, .simple_list_item {
    border-radius: 0.5rem;
    background-color: white;
    margin: 0.5%;
    padding: 0.5%;
    width: 50%;
    display: grid;
    grid-template-columns: auto 35px;
}

.delete__item_btn {
    width: 25px;
    height: 25px;
    background-color: var(--c-red2);
    border-radius: 0.5rem;
    color: white;
    border: none;
    cursor: pointer;
}

.product__c__print_option_form {
    padding: 1%;
}

.c__product__print_op_card{
    background-color: white;
    border-radius: 0.5rem;
    display: grid;
    place-items: center;
    margin: 1%;
    padding: 1.5% 1%;
}

.c__product__print_op_card img {
    width: 50vw;
    max-width: 600px;
}

.c__product__send_btns {
    display: grid;
    place-items: center;
    padding: 1%;
    grid-template-columns: 50% 50%;
    width: 100%;
}
.c__product__send_btns span {
    width: 100%;
    padding: 1%;
}
.c__product__send_btns span button {
    width: 70%;
}
/* ----- app product c json ----- */
.product__c__form-json {
    display: grid;
    grid-template-rows: 30px auto 50px;
    position: relative;
    width: 100%;
    height: 100%;
}

.product__json_in {
    position: relative;
    height: 100%;
}

.product__json_in textarea {
    max-width: 100%;
    max-height: 100%;
    min-width: 100%;
    min-height: 100%;
}

.product__json_btn {
    margin-top: 5px;
}
/* ----- app product del ----- */
.del__p__icon {
    border: 2px solid var(--c-gray5);
    border-radius: 0.5rem;
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
}
/* ----- app edit prices ----- */
#scales_list_box {
    padding: 1.5%;
}
.row_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    margin: 1%;
    border-bottom: 1px solid var(--c-gray5);
    place-items: center;
}
/*******************/
.simple_box { display: inline-grid; }

._center_align { text-align: center; }

._width_80p { width: 80%; }

._width_90p { width: 90%; }
/*grid*/
._grid {display: grid}
._inline_grid {display: inline-grid}
._grid_3_col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

._inline_grid_3_col {
    display: inline-grid;
    grid-template-columns: repeat(3, 1fr);
}

._inline_grid_2_col {
    display: inline-grid;
    grid-template-columns: 50% 50%;
}
._col_20-40-20 {grid-template-columns: 20% 60% 20%}
._col_40-40-20 {grid-template-columns: 40% 40% 20%}
/**/
._margin_1p {margin: 1%;}
._margin_2p { margin: 2%;}
._margin_3p { margin: 3%;}
._font_10px { font-size: 10px}
._font_15px { font-size: 15px}
._font_20px { font-size: 20px}
._font_25px { font-size: 25px}
._font_30px { font-size: 30px}
._font_35px { font-size: 35px}
/*hover*/
._h_color_orange1:hover { color: var(--c-orange1)}
._h_color_orange2:hover { color: var(--c-orange2)}
._h_color_yellow1:hover { color: var(--c-yellow1)}
._h_color_yellow2:hover { color: var(--c-yellow2)}
._h_color_red1:hover { color: var(--c-red1)}
._h_color_red2:hover { color: var(--c-red2)}
._h_border_color_yellow1:hover {border-color: var(--c-yellow1)}
._h_border_color_orange1:hover { border-color: var(--c-orange1)}
._h_border_color_red1:hover { border-color: var(--c-red1)}
._h_border_color_orange2:hover { border-color: var(--c-orange2)}
._h_border_color_yellow2:hover { border-color: var(--c-yellow2)}
._h_border_color_red2:hover { border-color: var(--c-red2)}
/**/
._transition_0_5s { transition: 0.5s}
._transition_0_7s { transition: 0.7s}
/**/
._square_10px {height: 10px; width: 10px}
._square_15px {height: 15px; width: 15px}
._square_20px {height: 20px; width: 20px}
._square_25px {height: 25px; width: 25px}
._square_30px {height: 30px; width: 30px}
._square_35px {height: 35px; width: 35px}
._square_40px {height: 40px; width: 40px}
._square_45px {height: 45px; width: 45px}
/**/
._pointer {cursor: pointer}