.delivery-info-popup {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
	display: none;
    align-items: center;
    margin: auto;
    z-index: 9999;
    background: #00000059;
}
.delivery-info-popup-wrap {
    overflow: hidden;
    position: fixed;
    right: 0;
    left: 0;
    margin: auto;
    background: #27bfc1;
    width: 390px;
    padding: 7px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 0 0 14px 3px #00000012;
    transition: all .3s;
    z-index: 9999;
    border-radius: 20px;
    color: #fff;
}
.delivery-info-popup-title {
    font-size: 26pt;
    margin-bottom: 10px;
	font-weight: 600;
}
.delivery-info-popup-content {
    font-size: 14pt;
    line-height: 30px;
}
.delivery-info-popup-content img {
    width: 100%;
}
.delivery-info-popup-text-wrap p {
    line-height: 22px;
}
button#delivery-info {
    background: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16pt;
    border-radius: 10px;
    margin-top: 10px;
    cursor: pointer;
	color: #27bfc1;
}
.info-icon {
    position: absolute;
    opacity: .2;
    top: -30px;
    width: 300px;
    right: -70px;
}
.buttons {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: auto;
}
.delivery-info-ns-label {
    font-size: 11pt;
    margin-top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
#main #delivery-info-ns {
    margin-right: 6px;
    width: 14px;
    height: 14px;
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
}

@media (max-width: 768px) {
    .delivery-info-popup-wrap {
        width: 90%;
        box-sizing: border-box;
    }
}