.bag-btn {
    display: none;
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 100;

    width: 70px;
    height: 70px;
    background: #fff;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
    border-radius: 50%;
    border: none;
}

.bag-btn.show {
    display: block;
}

.bag-btn>i {
    color: #000;
    font-size: 30px;
}

.bag-btn>span {}

/*============================================ modal ===========================================*/

.order_modal_wrapper {}

.order_modal .success,
.order_modal .error {
    display: flex;
    justify-content: space-between;
    width: 100%;
    color: #fff;
    padding: 20px;
    font-size: 20px;
    line-height: 130%;
}

.order_modal .modal-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
}

.order_modal .modal-header {
    width: 100%;
}

.order_modal .modal-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order_item {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    align-items: center;
}

.order_modal .modal-body>.order_item>img {
    object-position: top;
    object-fit: cover;
}

.order_modal .modal-body>.order_item>p {
    font-size: 16px;
    line-height: 1.55;
    font-weight: 600;
    font-family: var(--font-main), serif;
    color: #000;
    flex: 2;
}

.order_modal .modal-body>.order_item>.counter {
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1;

}

.order_modal .modal-body>.order_item>.counter>button {
    border: 1px solid black;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.order_modal .modal-body>.order_item>.counter>span {
    font-size: 16px;
    font-family: var(--font-main), serif;
    line-height: 1.55;
    font-weight: 300;
    color: #000;
}

.order_modal .modal-body>.order_item>.price {
    font-size: 16px;
    font-family: var(--font-main), serif;
    line-height: 1.55;
    font-weight: 300;
    color: #000;
    flex: 1;


}

.order_modal .modal-body>.order_item>.order_remove {
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid black;

}

.order_modal .modal-footer>p {
    font-size: 16px;
    font-family: var(--font-main), serif;
    line-height: 1.55;
    font-weight: 600;
    color: #000;
}

.order_modal.modal-dialog {
    max-width: 560px;
}

.modalForm {
    width: 100%;
}

.modalForm>label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 1.55;
    font-family: var(--font-main);
    color: #000;
    font-weight: 300;

}

.modalForm>label>input {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
}

.modalForm>button {
    color: #fff;
    padding: 20px 60px;
    display: block;
    width: 100%;
    margin: 0 auto;

    font-size: 16px;
    line-height: 1.3;
    font-family: var(--font-main);
    font-weight: 700;
}

/*============================================ /modal ===========================================*/