/* .messsage__modal_popup .popup-div {
    transition: opacity 0.5s linear 0 !important;
    -webkit-animation: slide-down .2s ease-out !important;
    -moz-animation: slide-down .2s ease-out !important;
}
@-webkit-keyframes slide-down {
    0% { opacity: 0; -webkit-transform: translateY(-100%); left: 50% }   
  100% { opacity: 1; -webkit-transform: translateY(0); left: 50% }
}
@-moz-keyframes slide-down {
    0% { opacity: 0; -moz-transform: translateY(-100%); left: 50% }   
  100% { opacity: 1; -moz-transform: translateY(0); left: 50% }
} */

.messsage__modal_popup .popup-div {
    padding: 35px 25px;
    box-shadow: -1px -1px 10px rgba(0, 0, 0, .1);
    border-radius: 22px;
    position: fixed;
    top: 50%;
    z-index: 4;
    background: #fff;
    width: 330px;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-bottom: 20px;
    max-height: 670px;
    overflow: auto;
}

.messsage__modal_popup .close-icn {
    position: absolute;
    top: 0;
    line-height: normal;
    right: 4px;
    font-size: 22px;
    color: #C1C1C1;
    background: #ffff;
    border-radius: 5px;
    cursor: pointer;
}

.messsage__modal_popup .popup-div::-webkit-scrollbar {
    display: none;
}
.messsage__modal_popup .close-icn-circle {
    background: #F5F5F5;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #293450;
    line-height: normal;
    margin-top: 10px;
    margin-right: 5px;
}
.messsage__modal_popup .check-icon{
    max-height: 65px;
}
.messsage__modal_popup .modal--title {
    margin: 20px 0;
    font-size: 20px;
    color: #171E43;
    font-weight: 600;
}
.messsage__modal_popup .bottom-line{
    padding-bottom: 5px;
    position: relative;
}
.messsage__modal_popup .bottom-line:after , .messsage__modal_popup .bottom-line:before{
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    height: 4px;
    width: 31px;
    background-color: #FF6600;
}
.messsage__modal_popup .bottom-line:before{
    height: 1px;
    border-bottom: 1px solid #E8EDFB;
    background-color: transparent;
    width: 50%;
}
.messsage__modal_popup .modal--subtitle {
    font-size: 16px;
    color: #171e4380;
}
.messsage__modal_popup .small-title{
    font-size: 10px;
}
.messsage__modal_popup .modal-shadow:after{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(5px);
    background: #00000080;
    content: '';
    z-index: 3;
}

.messsage__modal_popup .fa-blue {
    color: #293450 !important;
}

.messsage__modal_popup .normal-line-height {
    line-height: 16px;
}

@media only screen and (min-width:1300px){
    .messsage__modal_popup .close-web.close-icn-circle {
        background-color: #F5F5F5;
        min-width: 25px;
        min-height: 25px;
        font-size: 12px;
    }
}

@media only screen and (max-width:1199px){
    .messsage__modal_popup .popup-div {
        max-height: calc(100% - 40px);
    }
    .close-web.close-icn-circle {
        min-width: 32px;
        min-height: 32px;
        font-size: 14px;
    }
}
@media only screen and (max-width: 374px) {
    .messsage__modal_popup .popup-div {
        width: 285px !important;
    }
}