.delivery-info-box {
    position: relative;
    padding-bottom: 10px;
    padding: 20px;
    border-radius: 8px;
    min-width: 25%;
    width: 100%;
}

.popup-box {
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 85%;
    padding: 15px;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    outline: 0;
    display: none;
    z-index: 1;
}

.close-popup{
    float: right;
    color: black;
    font-size: 20px;
    padding: 0;
    background: none;
}

.delivery-info-box p,
.popup-box label {
    color: black;
    font-family: Arial, sans-serif;
    font-size: 18px;
}

.popup-box input[type="text"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #97bf0d;
    border-radius: 4px;
    margin-top: 8px;
    margin-bottom: 12px;
    background-color: #f2f3f5;
    color: #97bf0d;
}

.popup-box button[type="submit"] {
    background-color: #97bf0d;
    color: #f2f3f5;
    border: none;
    padding: 10px 40px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

.popup-box button[type="submit"]:hover {
    background-color: #05630b;
}

.down-arrow {
    cursor: pointer;
    color: #06870e;
    font-size: 16px;
    margin-left: 10px;
}