/*
#bp-emailing-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index:1000;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .8;
    display: none;
}

#bp-emailing-popup {
    position: fixed;
    z-index:1000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    display: none;
}

#bp-emailing-close-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
*/
@media only screen and (min-width: 1025px) {
    #bp-emailing-overlay {
        display:none;
    }
     #bp-emailing-popup {
         display:none;
     }
     
     #bp-emailing-close-icon {
         display:none;
     }
}
@media only screen and (max-width: 1024px) {
    
    #bp-emailing-overlay {
        position: fixed;
        top: 0;
        left: 0;
        z-index:1000;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgb(255 255 255 / 0%) 0, var(--global-body-bgcolor) 50%);
        /*opacity: .8;*/
        display: none;
    }
    
    #bp-emailing-popup {
        position: fixed;
        z-index: 1000;
        /* top: 50%; */
        bottom: 0;
        /* left: 50%; */
        width: -webkit-fill-available;
        /* transform: translate(-50%, -50%); */
        background: var(--global-body-bgcolor);
        padding: 20px;
        display: none;
    }
    
    #bp-emailing-close-icon {
        position: absolute;
        top: 10px;
        right: 10px;
        cursor: pointer;
    }
    
    .submit-popup-btn {
        margin-top: 2%;
        background: #0f6fb7;
        color: white;
    }
    
    #bp-emailing-save:disabled {
        /* CSS styles to apply when the button is disabled */
        background: #0f6fb770;
        cursor: not-allowed;
        color: white;
    }

}


@media only screen and (min-width: 768px) {
  .emailing-row > .emailing-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media only screen and (max-width: 767px) {
  .emailing-row > .emailing-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


.emailing-row {
    margin-bottom: 5%;
}


.emailing-card {
    text-align: left;
    padding: 5%;
    border-radius: 32px;
    /*  box-shadow: rgb(50 50 93 / 25%) 0px 13px 27px -5px, rgb(0 0 0 / 30%) 0px 8px 16px -8px; */
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
}


.successing {
    color:#57d98b;
    font-size: 45px;
}

.normal {
    color:#e8cd6f;
    font-size: 40px;
}

.failing {
    color:#dc584e;
    font-size: 35px;
}


.emailing-icons > i {
    background: #6d9cec;
    font-size:22px;
    float:right;
    color: white;
    padding: 5%;
    border-radius: 30%;
}

.emailing-icons > i:hover {
    background-color: white;
    color:#6d9cec;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
}


.emailing-card {
    padding:5%;
    border-radius: 32px;
}