@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto.woff2") format("woff2"),
        url("../fonts/Roboto.woff") format("woff"),
        url("../fonts/Roboto.ttf") format("ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "DroidSerif";
    src: url("../fonts/DroidSerif.ttf") format("ttf");
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: Roboto, sans-serif;
    /* height: 468px;
    width: 696px; */
    width: 100vw;
    height: 100vh;
    position: relative;
    background: #bdbdbd;
}

body::-webkit-scrollbar {
    display: none;
}

html,
body {
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    overflow: auto;
}

button,
input {
    outline: none;
}

.spacer {
    flex: 1 1 auto;
}

/* #root {
    height: 468px;
    width: 696px;
} */

#app,
#root,
.container,
.money-order-page {
    height: 100%;
    width: 100%;
    
    background: #bdbdbd;
}

.money-order-page > div {
    width: 100%;
    height: 100%;
    background: #4daeae;
}

.input-container {
    padding: 16px 8%;
}

.input-container p {
    text-transform: uppercase;
    font-family: Roboto, sans-serif;
    margin-top: 100px;
    margin-bottom: 15px;
    font-size: 25px;
}

.input-container .input-div {
    position: relative;
}

.input-container .input-div span {
    position: absolute;
    font-family: Roboto, sans-serif;
    font-size: 38px;
    color: #666;
    top: 15px;
    left: 16px;
}

.input-container .input-div input {
    width: 100%;
    color: #555;
    font-size: 39px;
    padding: 7px 20px 7px 43px;
    box-sizing: border-box;
    font-family: Roboto, sans-serif;
    border: none;
    outline: none;
    border-radius: 5px;
    box-shadow: 6px 5px 11px rgba(0, 0, 0, 0.2);
}

.numpad-container {
    background: #eeeeee;
    box-sizing: border-box;
    margin-left: auto;
    width: 100%;
    border-radius: 5px;
    box-shadow: 2px 2px 8px 1px rgba(0, 0, 0, 0.2);
}

.num-key-overlay {
    height: 287px;
    background: rgba(96, 93, 93, 0.24);
    bottom: 0;
    position: absolute;
    width: 100%;
}

.numpad-container .numpad {
    width: 340px;
}

.numpad-container .numpad .numbers-container {
    padding: 5px;
}

.numpad-container .numpad .enter-container {
    width: 111px;
}

.numpad-container .num-key.backspace {
    color: white;
}

.numpad-container .num-key.backspace img {
    height: 20px;
}

.numpad-container .num-key.enter {
    background: #39ac2e;
    color: white;
    height: 203px;
    font-size: 22px;
}

.numpad-container .num-key.zero {
    width: 140px;
}

button.num-key {
    outline: none;
    border-radius: 5px;
    color: #274285;
    width: 65px;
    height: 33px;
    background-color: #dddddd;
    text-align: center;
    margin: 2px;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    border-top: 1px white solid;
    border-left: 1px white solid;
    border-bottom: 1px #ababab solid;
    border-right: 1px #ababab solid;
}

.numpad-container button.num-key:active {
    color: white;
    background: #274285;
}

input::placeholder {
    color: #ccc;
}

.operator-instructions {
}

.operator-instructions .navigation-conatiner {
    background: #605d5d;
    bottom: 0;
    position: absolute;
    height: 75px;
    align-items: center;
    display: flex;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.operator-instructions .operator-instructions-container {
    height: calc(100% - 100px);
    box-sizing: border-box;
    display: flex;
}

.operator-instructions .operator-instructions-container > div {
    display: inline-block;
    border-radius: 8px;
    padding: 20px;
    height: 94%;
    width: 100%;
    box-sizing: border-box;
}

.operator-instructions .operator-instructions-container > div h2 {
    font-size: 31px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #222;
}

.operator-instructions .operator-instructions-container > div pre {
    font-size: 23px;
    white-space: pre-wrap;
}

.operator-instructions.custom-style .operator-instructions-container > div h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #222;
}

.operator-instructions.custom-style .operator-instructions-container > div pre {
    font-size: 20px;
    white-space: pre-wrap;
}

.navigation-conatiner button {
    outline: none;
    border-radius: 5px;
    border: none;
    color: #555;
    width: 150px;
    height: 40px;
    background-color: #fff;
    text-align: center;
    margin: 5.5px;
    font-family: Roboto, sans-serif;
    font-size: 19px;
    font-weight: bold;
    box-shadow: 1px 4px 2px 0 rgba(0, 0, 0, 0.1);
}

.navigation-conatiner button:active,
.navigation-conatiner button.red:active,
.navigation-conatiner button.green:active {
    color: white;
    background: orange;
}

.navigation-conatiner button:nth-child(2) {
    margin-left: auto;
}

.navigation-conatiner button.red {
    background: #db4040;
    color: white;
}

.navigation-conatiner button.green {
    background: #39ac2e;
    color: white;
}

.default-page {
    height: 100%;
    position: relative;
}

.barcode-number,
.product-field {
    padding: 10px 20px;
    height: 100%;
    box-sizing: border-box;
}

.barcode-number .container,
.product-field .container {
    display: flex;
    height: 100%;
}

.barcode-number .field-container,
.product-field .field-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    position: relative;
}

.barcode-number .field-container p.or,
.product-field .field-container p.or {
    font-size: 25px;
    text-align: center;
    margin: 40px 0;
    color: #646464;
}

.barcode-number .field-container input#barcode,
.product-field .field-container input {
    border: 1px #34ff34 solid;
    font-size: 18px;
    font-weight: 700;
    padding: 5px 10px;
}

.barcode-number .field-container input#barcode::placeholder,
.product-field .field-container input::placeholder {
    color: #ccc;
}

.barcode-number .field-container label,
.product-field .field-container label {
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 17px;
}

.barcode-number .field-container input[type="submit"],
.product-field .field-container input[type="submit"] {
    background: #2196f3;
    color: white;
    border: none;
    margin-bottom: 10px;
    padding: 12px 40px;
    font-size: 20px;
    outline: none;
    border-radius: 40px;
    cursor: pointer;
}

.barcode-number .field-container input[type="submit"]:hover,
.product-field .field-container input[type="submit"]:hover {
    background: #42a5f5;
}

.barcode-number .field-container .title,
.product-field .field-container .title,
.price-management-container .title,
.update-price-page-container .title {
    font-weight: 700;
    color: white;
    font-size: 28px;
    margin-bottom: 10px;
    position: relative;
}

.product-field .field-container .product-title,
.prompt-operator-id-title {
    font-weight: 700;
    color: white;
    font-size: 28px;
    margin-bottom: 38px;
    position: relative;
}

.barcode-number .title,
.product-field .title {
    position: absolute;
    text-align: left;
    color: #2196f3;
    font-size: 32px;
    font-weight: 400;
}

.main-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 15px;
}

.main-menu .title {
    width: 100%;
    color: white;
    font-size: 28px;
    text-indent: 20px;
    font-weight: 700;
}

body .main-menu .title span {
    margin-left: 0;
}

body .title {
    position: relative;
}

body .title span {
    font-size: 16px;
    margin-left: 20px;
    font-weight: 100;
    margin-top: -8px;
    position: absolute;
    top: 16px;
}

.main-menu .menu-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
}

.main-menu .button-container {
    margin-top: 20px;
    overflow-y: auto;
    height: 300px;
    min-width: 500px;
    max-width: 500px;
}

.main-menu .button-container.wide-page {
    max-width: 560px;
    min-width: 560px;
}

.main-menu .scroll-container {
    display: flex;
    flex-wrap: wrap-reverse;
    flex-direction: column;
    align-content: space-between;
    height: 300px;
    padding: 10px;
    vertical-align: middle;
    align-items: center;
}
::-webkit-scrollbar {
    width: 0px; /* Remove scrollbar space */
    background: transparent; /* Optional: just make scrollbar invisible */
}
.main-menu .scroll-container button {
    min-width: 80px;
    width: 80px;
    height: 70px;
    margin-top: 35px;
    background: #c4c4c4;
    border-top: 3px white solid;
    border-left: 3px white solid;
    border-bottom: 3px #ababab solid;
    border-right: 3px #ababab solid;
}

.main-menu button.menu-item {
    float: left;
    text-align: center;
    margin: 5px;
    margin-top: 0;
    background: #c4c4c4;
    border-top: 3px white solid;
    border-left: 3px white solid;
    border-bottom: 3px #ababab solid;
    border-right: 3px #ababab solid;
    color: #274285;
    font-weight: 700;
    padding: 0px;
    min-width: 80px;
    height: 70px;
}

.main-menu button.menu-item.red {
    background: rgb(255, 24, 0);
    border-top: 3px #f0908b solid;
    border-left: 3px #f0908b solid;
    border-bottom: 3px #a65954 solid;
    border-right: 3px #a65954 solid;
    color: white;
    position: relative;
}

button.menu-item.red .item-price,
.price-management-container .item-price {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
    background-color: white;
    color: red;
    font-size: 14px;
    max-width: 100%;
    min-width: 45px;
    height: 20px;
}

.main-menu .button-image,
.price-management-container .button-image {
    max-width: 100%;
    max-height: 100%;
}

.main-menu button.menu-item a {
    text-decoration: none;
    color: #274285;
}

.navigation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.navigation .build-version-button {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 20px;
    width: 20px;
}

.navigation .build-version-button span {
    visibility: visible;
    position: absolute;
    top: -5px;
    width: 84px;
    color: white;
    right: 17px;
    text-align: right;
}

.navigation .main-navigation {
    display: flex;
    padding: 0 15px;
}

.navigation .main-navigation button:first-child {
    margin-right: 10px;
}

.navigation .main-navigation button {
    background: #34ff34;
    padding: 8px 40px;
    font-size: 20px;
    font-weight: 700;
    border-top: 2px white solid;
    border-left: 2px white solid;
    border-bottom: 2px #ababab solid;
    border-right: 2px #ababab solid;
}

.navigation .main-navigation button.next {
    margin-left: auto;
}

.navigation .url-container {
    padding: 10px 18px;
    color: #274285;
    font-size: 12px;
    visibility: hidden;
}

.coming-soon {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.coming-soon h2 {
    color: white;
    font-weight: 700;
    margin-bottom: 90px;
    font-size: 38px;
}

.coming-soon a {
    text-decoration: none;
    color: #000;
}

.voucher-error,
.input-error {
    color: red;
    text-align: center;
    margin-top: 14px;
    font-size: 20px;
}

.intervention {
    height: 100%;
    width: 100%;
    background-color: rgba(77, 69, 64, 0.9);
    z-index: 999;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
}

.intervention .title {
    font-size: 28px;
    color: white;
    margin-bottom: 35px;
    margin-top: 0px;
}
.intervention .custom-title {
    font-size: 30px;
    margin-bottom: 30px;
    color: #dedbd9;
    font-weight: bold;
}
.intervention .description,
.price-management-container .description {
    font-size: 21px;
    color: #dedbd9;
    margin: auto;
    max-width: 350px;
    margin-bottom: 35px;
    /* width: 100%; */
    padding: 0 32px;
    line-height: 130%;
}

.intervention .description.json {
    text-align: left !important;
}

.intervention .left {
    text-align: left;
}

.intervention .left-indent {
    text-align: left;
    margin-left: 25px;
}

.intervention .actions button,
.intervention button {
    vertical-align: middle;
    background: #34ff34;
    padding: 8px 30px;
    font-size: 18px;
    font-weight: 700;
    border-top: 2px white solid;
    border-left: 2px white solid;
    border-bottom: 2px #ababab solid;
    border-right: 2px #ababab solid;
}

.intervention .centered > div {
    width: 500px;
}

.intervention .actions button.dim,
.intervention button.dim {
    background: #aeaeae;
    color: #f0f0f0;
}

.intervention .actions button:first-child {
    margin-bottom: 10px;
}

.intervention .actions {
    display: flex;
    flex-direction: column;
    width: 197px;
    margin: 0 auto;
}

.intervention pre.description {
    font-size: 16px;
    color: #dedbd9;
    margin-bottom: 35px;
    width: 100%;
    height: 340px;
    overflow-y: auto;
    overflow-x: auto;
    line-height: 130%;
    text-align: left;
}

.centered {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* debug console */
.debug-button {
    position: absolute;
    top: 15px;
    right: 15px;
    font-weight: 700;
    border: none;
    color: #333;
    padding: 5px 10px;
    z-index: 1002;
}

.debugger-container {
    position: absolute;
    height: 468px;
    width: 696px;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    top: 0;
    left: 0;
    z-index: 1001;
}

.debugger-container .title {
    color: #fafafa;
    margin: 15px;
}

.debugger-container .hide-button {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 10px;
    font-weight: 700;
    background: white;
    border: none;
}

.debugger-container > div {
    margin-top: 30px;
}

.debugger-container button.clear {
    margin-top: 13px;
    margin-right: 15px;
    border: none;
    padding: 5px 10px;
    font-weight: 700;
}

.debugger-container table {
    width: 100%;
    color: #fafafa;
    border-collapse: separate;
    border-spacing: 0;
    text-align: center;
}

.debugger-container table thead {
    font-weight: 700;
}

.debugger-container table,
.debugger-container tr td {
    border: 1px solid #d1d1d1;
}
.debugger-container tbody {
    display: block;
    height: 330px;
    overflow: auto;
}
.debugger-container thead,
.debugger-container tbody tr {
    display: table;
    width: 100%;
}

.debugger-container th {
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #d1d1d1;
}

.debugger-container td.td1,
.debugger-container th.td1 {
    min-width: 95px;
}
.debugger-container td.td2,
.debugger-container th.td2 {
    min-width: 194px;
}
.debugger-container td.td3,
.debugger-container th.td3 {
    min-width: 90px;
}
.debugger-container td.td4,
.debugger-container th.td4 {
    min-width: 100px;
}
.debugger-container td.td5,
.debugger-container th.td5 {
    min-width: 100px;
}
.debugger-container td.td6,
.debugger-container th.td6 {
    min-width: 100px;
}

::-webkit-scrollbar {
    width: 20px;
}
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

div.hidden {
    display: none !important;
}

.character-keyboard-container {
    margin: 0;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.character-keyboard-container .key-wrapper {
    display: flex;
    /* gap: 1rem; */
    justify-content: center;
    margin-bottom: 8px;
}

.character-keyboard-container .keyboard-wrapper {
    background-color: #eeeeee;
    padding-top: 8px;
    border-radius: 5px;
    width: 100%;
    box-shadow: 2px 2px 8px 1px rgba(0, 0, 0, 0.2);
}

.character-keyboard-container button.btn-char-key {
    min-width: 55px;
    height: 50px;
    outline: none;
    border-radius: 5px;
    color: #274285;
    background-color: #dddddd;
    text-align: center;
    font-family: Roboto, sans-serif;
    font-size: 21px;
    border-top: 1px white solid;
    border-left: 1px white solid;
    border-bottom: 1px #ababab solid;
    border-right: 1px #ababab solid;
    margin: 0 4px;
}

.character-keyboard-container button.btn-char-key:active {
    color: white;
    background: #274285;
}

.character-keyboard-container .btn-space {
    /* flex-grow: .3; */
    min-width: 305px !important;
}

.character-keyboard-container .btn-clear {
    background-image: url(/resources/images/keyboard-delete.png);
    object-fit: contain;
    max-height: max-content;
    background-repeat: no-repeat;
    background-position: center;
}

.character-keyboard-container .btn-clear:active {
    background-image: url(/resources/images/keyboard-delete-white.png) !important;
    object-fit: contain !important;
    max-height: max-content !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.character-keyboard-container .btn-backspace {
    background-image: url(/resources/images/keyboard-backspace2.png);
    object-fit: contain;
    max-height: max-content;
    background-repeat: no-repeat;
    background-position: center;
}

.character-keyboard-container .btn-backspace:active {
    background-image: url(/resources/images/keyboard-backspace2-white.png) !important;
    object-fit: contain !important;
    max-height: max-content !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.character-keyboard-container input,
.prompt-input-container input {
    max-width: 100%;
    width: 97%;
    font-size: 21px;
    font-weight: 700;
    border: 1px #34ff34 solid;
    padding: 5px 10px;
}

.fullscreen-container {
    background-color: #bdbdbd;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.fullscreen-container.dialog-background {
    background: #1a1818d1;
    padding: 16px;
    width: calc(100vw - 32px);
    height: calc(100vh - 32px);
    overflow: hidden !important;
    margin: 0;
}

.char-keyboard-title {
    align-self: flex-start;
    text-indent: 0 !important;
    margin-bottom: 24px;
    color: white;
    font-size: 21px;
    font-weight: 700;
}

.intervention .actions-container {
    display: flex;
    justify-content: center;
}

.intervention .actions-container button {
    margin: 0 20px;
}

.order-details-container {
    position: relative;
    padding: 24px;
}

.order-details-container .item-container {
    display: flex;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    align-items: center;
}

.order-details-container .item-container p.col {
    max-width: 100px;
    flex-grow: 1;
    text-align: center;
}

.order-details-container span.item-name-wrapper {
    display: flex;
    align-items: center;
    flex-grow: 2;
    width: 200px;
}

.order-details-container span.item-name-wrapper img {
    margin-right: 16px;
    height: 24px;
    width: 24px;
}

.action-container {
    width: 100%;
    display: flex;
}

.action-container button {
    background: #34ff34;
    padding: 8px 40px;
    font-size: 16px;
    font-weight: 700;
    border-top: 2px white solid;
    border-left: 2px white solid;
    border-bottom: 2px #ababab solid;
    border-right: 2px #ababab solid;
}

.action-container .quit-button {
    margin-right: 12px;
}

.order-details-container p.order-details-title {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.order-details-container p.sub-title {
    color: white;
    font-size: 18px;
    font-weight: 700;
}

.order-details-container p.customer-name {
    margin-bottom: 20px;
}

.order-details-container .item-list-container {
    height: 240px;
    background: #eeeeee;
    margin-top: 8px;
    position: relative;
    padding: 10px;
    display: flex;
    margin-bottom: 2rem;
    /* margin-bottom: 12px; */
}

.order-details-container .pricing-message {
    margin-bottom: 36px;
}

.order-details-container .item-list-wrapper {
    flex-grow: 1;
}

.order-details-container .item-label {
    display: flex;
    color: #898789;
    font-weight: 600;
    text-align: center;
    margin-bottom: 16px;
}

/* .order-details-container span.list-header {
    flex-grow: 1;
} */
.order-details-container span.col {
    max-width: 100px;
}
/* 
.order-details-container span.list-header:nth-child(1) {
    flex-grow: 2;
} */

.order-details-container .sub-total {
    display: flex;
    font-size: 21px;
    font-weight: 700;
    position: absolute;
    bottom: 0;
    padding-bottom: 16px;
    width: 80%;
    left: 20px;
}

.scroll-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 24px;
    padding-right: 8px;
}
.scroll-button-container .scroll-btn {
    background-size: cover;
    height: 55px;
    width: 55px;
    background-repeat: no-repeat;
    background-position: center;
    border: solid #bfafaf 2px;
    border-radius: 5px;
}

.scroll-button-container .scroll-up {
    /* background-image: url(/resources/images/arrow_up_inactive.png); */
    margin-bottom: 16px;
}

.scroll-button-container .scroll-down {
    /* background-image: url(/resources/images/arrow_down_inactive.png); */
}

img.hot-food {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: inherit;
}

p.hot-food-name {
    position: absolute;
    bottom: 0;
    background: red;
    width: 100%;
    text-align: center;
}

.price-management-container {
    padding: 16px;
}
.price-management-container .search-bar {
    max-width: 600px;
    display: flex;
    align-items: center;
    position: relative;
}

.price-management-container .search-bar input {
    max-width: 100%;
    width: 82%;
    font-size: 21px;
    font-weight: 700;
    border: 1px #34ff34 solid;
    padding: 5px 10px;
    padding-right: 55px;
}

.price-management-container .searchbar-icon-suffix {
    width: 50px;
    display: flex;
    align-items: center;
    position: absolute;
    right: 42px;
    bottom: 6px;
}
.price-management-container .vertical-line {
    width: 2px;
    height: 25px;
    background-color: #34ff34;
}
.price-management-container .search-bar img {
    object-fit: contain;
    max-width: 24px;
    margin-left: 10px;
}

.price-management-container .price-management-description {
    color: white;
    margin-bottom: 32px;
}

.pricing-management-actions {
    margin-top: 42px !important;
}

.price-management-container .product-list-container {
    display: flex;
}

.price-management-container .product-list-wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
    width: 100%;
    height: 200px;
    margin-top: 24px;
    margin-right: 2px;
}

.price-management-container .product-list-wrapper {
    display: flex;
}

.price-management-container .product-button-wrapper {
    width: 30%;
    height: 85px;
    position: relative;
    border: 0 solid transparent;
    border-width: 0 16px 0 0;
}
.price-management-container .product-button {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: red;
    /* border-top: 3px white solid;
    border-left: 3px white solid;
    border-bottom: 3px #ababab solid;
    border-right: 3px #ababab solid; */
    border-top: 3px #f0908b solid;
    border-left: 3px #f0908b solid;
    border-bottom: 3px #a65954 solid;
    border-right: 3px #a65954 solid;
    color: white;
    text-align: center;
}

.price-management-container .no-product-found {
    width: 100%;
    text-align: center;
    font-size: 18px;
    color: white;
}

.price-management-container .product-button-background-image {
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
}

.price-management-container .product-name-with-image {
    width: 95%;
    background: red;
    text-align: center;
    padding: 4px;
    font-size: 14px;
    font-weight: 700;
    align-self: flex-end;
}
.price-management-container .product-name-without-image {
    text-align: center;
    background: red;
    font-size: 14px;
    font-weight: 700;
}

.update-price-page-container {
    padding: 16px;
}

.update-price-page-container .details-wrapper {
    margin-top: 16px;
}

.update-price-page-container .item-row {
    display: flex;
    width: 100%;
    margin-bottom: 6px;
    font-weight: 700;
}
.update-price-page-container .item-row:nth-child(2) {
    margin-bottom: 6px;
    position: relative;
}

.update-price-page-container .label {
    width: 120px;
}
.update-price-page-container .promo-effectivity-date {
    color: #274285;
}

.update-price-page-container .component-wrapper {
    background: #eeeeee;
    padding: 10px;
    padding-bottom: 5px;
    position: relative;
    min-height: 233px;
    margin-bottom: 16px;
}

.update-price-page-container .remove-button-container {
    margin-left: 12px;
    position: relative;
}

.update-price-page-container button.remove-btn {
    padding: 4px 20px;
    font-size: 15px;
    color: white;
    background: red;
    font-weight: 700;
    position: absolute;
    top: -7px;
    right: 0;
}

.update-price-page-container button.edit-price-btn {
    /* position: absolute;
    right: 2px;
    bottom: -8px;
    padding: 8px 16px;
    margin: 8px;
    margin-bottom: 16px;
    font-size: 18px;
    border: navajowhite;
    background: grey;
    color: white;
    border-radius: 4px; */
    position: absolute;
    right: 9px;
    bottom: 0px;
    padding: 8px 16px;
    margin: 8px;
    margin-bottom: 16px;
    font-size: 18px;
    border: navajowhite;
    font-weight: 700;
    background: #ffff00;
    color: #030303;
    border-radius: 45px;
    box-shadow: solid 10px 3px;
    box-shadow: 1px 4px 4px rgb(0 0 0 / 50%);
}

.date-picker-container {
    display: flex;
}

.date-picker-container .date-picker-class {
    margin-bottom: 0;
}

.date-picker-container .left-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.date-picker-container .left-container p {
    color: #274285;
    font-weight: 700;
}

.custom-numkeyboard-container input {
    border: 1px #34ff34 solid;
    font-size: 21px;
    font-weight: 700;
    padding: 5px 10px;
    width: 97%;
}

.prompt-input-container {
    padding: 8px;
    background: #eeeeee;
}

.prompt-input-container .operatorid-prompt-error {
    position: absolute;
    width: 100%;
    padding-top: 7px;
}

.test-button-add-item {
    position: absolute;
    top: 0;
    right: 93px;
    transform: translateY(11px);
    background: #72ff44;
    border-top: 3px white solid;
    border-left: 3px white solid;
    border-bottom: 3px #ababab solid;
    border-right: 3px #ababab solid;
    font-weight: 600;
    padding: 4px;
}


.overlay-menuname-with-image {
    position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        color: white;
        
        font-size: 110%;
        /* font-size: 14px; */
        /* -webkit-text-stroke: 0.5px #000; */
        font-weight: bold;
        width: 100%;
        line-height: 1;
        text-shadow: 1px 1px #000000;
        /* height: 100%; */
}