#minipos {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #00000090;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

#minipos>.content {
    background-color: #fff;
    border-radius: 5px;
    padding: 15px;
    width: 100%;
    height: 100%;
}

#minipos .header {
    overflow: auto;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding-right: 10px;
    padding-left: 10px;
    height: 70px;
    background-color: #ccc;
}

#minipos .header>div {
    margin-right: 10px;
}

#minipos .header_label {
    color: #fff;
    font-size: 12px;
    margin-bottom: 0;
}

#minipos .columns {
    display: flex;
    align-items: flex-start;
    height: calc(100% - 70px);
}

#minipos .categories {
    width: 200px;
    max-height: 100%;
    overflow: auto;
}

#minipos .products {
    width: calc(100% - 500px);
    display: flex;
    flex-wrap: wrap;
    max-height: 100%;
    overflow: auto;
}

#minipos .cart {
    width: 300px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #ccc;
    padding: 10px;
}

#minipos .cart_content {
    height: calc(100% - 200px);
    overflow: auto;
}

#minipos .cart_buttons {
    height: 200px;
}

#minipos .cart_total {
    font-size: 30px;
    font-weight: bold;
    text-align: right;
}

#minipos .product {
    width: 25%;
    padding: 0 10px;
    margin-bottom: 10px;
}

#minipos .product a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #6c757d;
    color: #ffffff;
    height: 100px;
    text-align: center;
}

#minipos .error select {
    border-color: red;
}

#minipos .alert {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: #00000090;
    width: 100%;
    height: 100vh;
}

#minipos .alert>.content {
    background-color: #fff;
    border-radius: 5px;
    padding: 15px;
    min-width: 200px;
}

#minipos .variants_popup {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: #00000090;
    width: 100%;
    height: 100vh;
}

#minipos .variants_popup>.content {
    background-color: #fff;
    border-radius: 5px;
    padding: 15px;
    width: 100%;
    max-width: 800px;
}

#minipos .variants_popup .variants_category_name {
    margin-bottom: 0;
    font-weight: bold;
}

#minipos .variants_popup .min_max {
    margin-bottom: 10px;
    font-size: 12px;
}

.variants_category.single_choice {
    display: flex;
    flex-wrap: wrap;
}

.variants_category.single_choice a {
    display: block;
    color: #000000;
    background-color: #ccc;
    padding: 5px;
    width: 150px;
    text-align: center;
    margin-right: 10px;
    margin-bottom: 10px;
}

.variants_category.single_choice a.selected {
    background-color: green;
    color: #fff;
}

.variants_category.single_choice a:hover {
    text-decoration: none;
}

.variants_category.multiple_choice {
    display: flex;
    flex-wrap: wrap;
}

.variants_category.multiple_choice a {
    display: block;
    color: #000000;
    background-color: #ccc;
    padding: 5px;
    width: 150px;
    text-align: center;
    margin-right: 10px;
    margin-bottom: 10px;
}

.variants_category.multiple_choice a.selected {
    background-color: green;
    color: #fff;
}

.variants_category.multiple_choice a:hover {
    text-decoration: none;
}

#minipos .qty_popup {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: #00000090;
    width: 100%;
    height: 100vh;
}

#minipos .qty_popup>.content {
    background-color: #fff;
    border-radius: 5px;
    padding: 15px;
    width: 100%;
    max-width: 300px;
}

#minipos .qty_popup .qty_selector_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

#minipos .qty_popup .plus_minus_button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #ccc;
    color: #000;
    border-radius: 5px;
}

#minipos .qty_popup .plus_minus_button:hover {
    text-decoration: none;
}

#minipos .qty_popup .qty {
    font-size: 30px;
    font-weight: bold;
}

#minipos .payment_methods_popup {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: #00000090;
    width: 100%;
    height: 100vh;
}

#minipos .payment_methods_popup>.content {
    background-color: #fff;
    border-radius: 5px;
    padding: 15px;
    width: 100%;
    max-width: 800px;
}

#minipos .customers_popup {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: #00000090;
    width: 100%;
    height: 100vh;
}

#minipos .customers_popup>.content {
    background-color: #fff;
    border-radius: 5px;
    padding: 15px;
    width: 100%;
    max-width: 800px;
}

#minipos .customers_popup .customers_list {
    height: 300px;
    overflow: auto;
}

#minipos .addresses_popup {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: #00000090;
    width: 100%;
    height: 100vh;
}

#minipos .addresses_popup>.content {
    background-color: #fff;
    border-radius: 5px;
    padding: 15px;
    width: 100%;
    max-width: 800px;
}