#Order_section {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    background-color: #000000b0;
    top: 0;
    z-index: 999;
}

#Order_form_box {
    background: var(--main-color-2);
    display: block;
    border-radius: 10px;
}

#Order_form_box .right input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

input[type="date"] {
    position: relative;
}

/* create a new arrow, because we are going to mess up the native one
see "List of symbols" below if you want another, you could also try to add a font-awesome icon.. */
input[type="date"]:after {
    content: " ";
    padding: 0;
    margin: 0;
}

/* adjust increase/decrease button */
#Order_form_box .right input[type="date"]::-webkit-inner-spin-button {
    z-index: 1;
}

/* adjust clear button */
#Order_form_box .right input[type="date"]::-webkit-clear-button {
    z-index: 1;
}


#Order_form_box .right input[type="submit"] {
    background-color: rgb(255, 232, 35);
    border: 2px solid rgb(255, 232, 35);
    border-radius: 3px;
    color: rgb(6, 45, 91);
    cursor: pointer;
    padding: 0;
}

#Order_form_box .right select {
    width: 93px;
}

#Order_form_box .right select,
#Order_form_box .right input {
    border-radius: 5px;
    border: 0;
    height: 35px;
    padding-left: 30px;
    line-height: 1;
    background-color: #fff;
    color: var(--main-color-2);
    font-family: "Fira Sans", sans-serif;
}

#Order_form_box .right select {
    text-align: center;
    padding-left: 0;
}

#Order_form_box .right div i {
    position: absolute;
    padding: 4px;
    color: var(--main-color-2);
    z-index: 2;
}

#Order_form_box .right .input-line input {
    width: 100%;
}

#Order_form_box .right .input-line {
    display: flex;
    align-items: center;
    gap: 8px;
}

#Order_form_box .right {
    height: 100%;
    padding: 20px;
    display: grid;
    grid-row-gap: 10px;
}

#hidePOPOrder_section {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}

#Order_form_1 {
    z-index: 2;
}

#Order_form_1 .message {
    display: none;
    min-height: 40px;
    min-width: 270px;
    background-color: var(--main-color-1);
    margin-bottom: 10px;
    border-radius: 10px;
    padding: 20px;
    max-width: 400px;
    color: var(--main-color-2);
    font-family: "Fira Sans", sans-serif;
}

#Order_form_1 .close_btn {
    cursor: pointer;
    margin-right: 24px;
}

#Order_form_1 .close_btn:before,
#Order_form_1 .close_btn:after {
    content: "";
    position: absolute;
    width: 24px;
    height: 4px;
    background: var(--main-color-1);
}

#Order_form_1 .close_btn:before {
    transform: rotate(45deg);
}

#Order_form_1 .close_btn:after {
    transform: rotate(-45deg);
}

#Order_form_1 .pop_title {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
