.noti_p{
    position: relative;
}

.noti-child{
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 10000;
    padding: 30px;
}

.noti-child .icon_noti{
    font-size: 30px;
    color: #fff;
}

.noti_active{
    transform: translate(500px);
    transition: 0.7s all ease-in-out;
}

.noti_success{
    background: #fa9e1a;
    padding: 10px 30px;
    border-radius: 6px;
    position: relative;
}

.noti_success::after{
    position: absolute;
    background: #32934f;
    width: 2px;
    height: 1005;
    content: "";
    left: 0;
    top: 0;
}

.noti_success .noti-text h4{
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px !important;
}

.noti_success .noti-text p{
    font-size: 13px;
    color: rgb(241, 241, 241);
    margin: 0 !important;
}

.noti_success .noti-text{
    position: relative;
}

.noti_success .noti-text i{
    position: absolute;
    top: 0px;
    right: -10px;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
}

.noti_deactive{
    transform: translate(0px);
}





.noti_danger{
    padding: 10px 30px;
    border-radius: 4px;
    background: #fa9e1a;
    position: relative;
}

.noti_danger::after{
    position: absolute;
    background: #32934f;
    width: 2px;
    height: 1005;
    content: "";
    left: 0;
    top: 0;
}

.noti_danger .noti-text h4{
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px !important;
}

.noti_danger .noti-text p{
    font-size: 13px;
    color: rgb(241, 241, 241);
    margin: 0 !important;
}

.noti_danger .noti-text{
    position: relative;
}

.noti_danger .noti-text i{
    position: absolute;
    top: 0px;
    right: -10px;
    font-size: 20px;
    cursor: pointer;
}





.news_btn{
    background: #fa9e1a;
    margin-top: 30px;
    padding: 10px 30px !important;
    border-radius: 2px !important;
}

.Button_Loader {
    width:30px;
    height:30px;
    border-radius:50%;
    border:6px solid;
    border-color:#fff #0000;
    animation:s1 0.7s infinite;
}

@keyframes s1 {to{transform: rotate(.5turn)}}