.promocode-modal-dialog-wrapper{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}
.promocode-modal-dialog-bg{
    background-color: rgba(0,0,0,0.5);
    width:100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
}
.promocode-modal-dialog{
    position: fixed;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    height: 100%;
    width: 100%;
}
.promocode-modal-dialog-content{
    display: flex;
    flex-direction: column;
    width: 60%;
    height: 60%;
    background-color: rgba(255,255,255,0.9);
    justify-content: center;
    align-items: center;
}
.promocode-modal-dialog-content-header{
    display: flex;
    flex-direction: row;
}
.promocode-modal-dialog-content-body{
    display: flex;
    flex-direction: row;
}
.form-group-row{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.form-group-row.dialog-form{
   padding:8px;
}
.form-group-row .input{
    width:100%;
    padding:4px 8px;
}
.dialog-form-input{
    width: 100%;
    font-size: 2rem;
}
.modal-backdrop{
    z-index: unset !important;
}
.box-promo-code{
    border-bottom: 5px solid #1E4C7C;
    background: rgba(255,255,255,0.85);
    padding: 40px 0px 20px;
    border-radius: 5px;
    margin: -15px 0;
}
@media only screen and (min-width:769px){
    .masukan-kode-promo-mobile{
        display: none;
    }
    .masukan-kode-promo-desktop{
        display: block;
    }
}
@media only screen and (max-width:768px){
    .masukan-kode-promo-mobile{
        padding-top: 16px;
        display: block;
    }
    .masukan-kode-promo-desktop{
        display: none;
    }
}