 .disModalIsGood   {
    opacity: 1;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
    background: white;
    width: 500px;
    height: fit-content;
    display: flex;
    text-align: center
    justify-content: center;
    align-items: center;
    padding: 40px;
    -webkit-box-shadow: 1px 2px 19px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 2px 19px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 1px 2px 19px 0px rgba(0,0,0,0.75);
    border-radius: 10px;
}
.content_banner {
    text-align: center;
}
.content_banner h2 {
    font-family: "Druk Bold", Sans-serif !important;
}
#closeModal {
position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.floatingRedeem {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 99999;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 20px;
    border-radius: 20px;
    cursor:pointer;
    transition: 0.5s all;
}
.floatingRedeem:hover {
  right: 20px;
  bottom:20px;
}

.overlay-modal {
position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99;
}