.minorderpopup {
    
    background-color:rgba(0,0,0,0.4);
    backdrop-filter: blur(6px);
    width:100%;
    height:100%;
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    z-index:125;
    visibility:hidden;
    transform:scale(0);
    opacity:0;
    transition:all 0.3s;
    display:flex;
    justify-content:center;
    align-items:center;
}


.amounttoadd {
    display:inline-block;
}

.popupmininner {
    
    background: #fff;
    border-radius: 6px;
    max-height:90%;
    padding-bottom: 25px;
    max-width:45em;
    text-align:Center;
    margin: 0 auto;
    font-size:1.2em;
    padding-top: 10px;
    padding:10px;
    margin-top:55px;
}


.minorderpopup button {
    background:red;
    color:#fff;
    width:50%;
    border:0px;
    cursor:pointer;
    height:40px;
}


.opened {
    visibility:visible;
    transform:scale(1);
    opacity:1;
}


.minorderpopup .icon {
    display: inline-block;
    width: 2em;
    height: 2em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
    margin-bottom: 5px;
}

.minorderpopup svg {
    font-size:18px;
    color:#000;
}

@media(max-width:960px) {
    .minorderpopup {
        padding:10px;
    }
}