.toast_wrap {
    background-color: #25d366;
    padding: 25px;
    display: none;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.toast_wrap.loading_wrap_error {
    background-color: #d3d5d6;
    box-shadow: 2px 2px 4px 0px #00000026;
}

.toast_wrap.info_message {
    background-color: #D3D5D6;
}

.toast_wrap .wrap_toast_success {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 30px;
}

.toast_wrap .wrap_toast_success .oops_text {
    color: #081F32;
    width: calc(100% - 30px);
}

.toast_wrap.loading_wrap_error .wrap_toast_success .oops_text {
    color: #081f32 !important;
    font-weight: 500;
}

.toast_wrap.loading_wrap_error .wrap_toast_success .error__btn_cancel figure img {
    filter: invert(1);
}

.toast_wrap .wrap_toast_success .error__btn_cancel {
    width: 30px;
    text-align: start;
}

.toast_wrap .wrap_toast_success .error__btn_cancel:hover {
    cursor: pointer;
}

.toast_wrap .wrap_toast_success .error__btn_cancel figure {
    max-width: 30px;
    width: 100%;
}

.toast_wrap .wrap_toast_success .oops_text p {
    font-weight: 600;
}

.error__btn_cancel {
    border: unset;
    background-color: unset;
    width: 25px;
    height: 25px;
    display: inline-block;
}

@media only screen and (max-width: 575px) {
    .toast_wrap {
        padding: 20px 10px;
    }

    .toast_wrap .wrap_toast_success {
        padding: 0px 5px;
    }
    .toast_wrap .wrap_toast_success .error__btn_cancel figure {
        max-width: 25px;
    }
}
