.delivery-wrapper {
    position: fixed;
    display: flex;
    z-index: 100000;
    justify-content: center;
    top: 0;
    left: 0;
    cursor: pointer;
    font-family: sans-serif !important;
}

.delivery-info {
    display: flex;
    position: relative;
    background-color: #ffffffde;
    align-items: center;
    text-align: center;
    border: 1px solid black;
    border-top: 0px !important;
    border-radius: 0px 0px 10px 10px;
    width: 80%;
    margin: 0 auto;
    padding: 10px;
}

@media (max-width: 800px) {
    .delivery-info {
        width: 100%;
        font-size: 12px;
    }

    .delivery-info > svg {
        width: 200px;
        height: 150px;
    }
}

.delivery_close_btn {
    position: absolute;
    color: red;
    top: -10px;
    right: 0;
    margin: 5px;
    font-size: 30px;
    cursor: pointer;
}