.order_pop_up_action {
    display: inline-block;
    transition: all 0.3s;
}

.order_pop_up_box {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.order_pop_up_box.active {
    display: flex;
}

.order_pop_up_box_in {
    width: 90%;
    max-width: 800px;
    height: 80vh;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    position: relative;
    display: flex;
    flex-direction: column;
}

.order_pop_up {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.frame-content {
    flex-grow: 1;
    overflow: hidden;
}

.btn_close {
    color: #DB3536;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Public Sans', sans-serif;
    transition: color 0.3s;
}
.btn_close:hover {
    color: #db3536;
}