.sochm-toast {
    position: fixed;
    z-index: 9999;
    border-radius: 12px;
    padding: 10px 35px 10px 25px;
    background-color: #fff;
    -webkit-box-shadow: 0 5px 10px rgba( 0, 0, 0, 0.3 );
    box-shadow: 0 5px 10px rgba( 0, 0, 0, 0.3 );
    top: 5rem;
    right: 10px;
    border-left: 5px solid #5cb85c;
    overflow: hidden;
    -webkit-transform: translateX( calc( 100% + 30px ) );
    transform: translateX( calc( 100% + 30px ) );
    -webkit-transition: -webkit-transform 0.5s cubic-bezier( 0.68, -0.55, 0.265, 1.35 ) !important;
    transition: -webkit-transform 0.5s cubic-bezier( 0.68, -0.55, 0.265, 1.35 ) !important;
    transition: transform 0.5s cubic-bezier( 0.68, -0.55, 0.265, 1.35 ) !important;
    transition: transform 0.5s cubic-bezier( 0.68, -0.55, 0.265, 1.35 ), -webkit-transform 0.5s cubic-bezier( 0.68, -0.55, 0.265, 1.35 ) !important;
}

.sochm-toast.sochm-toast-visible {
    -webkit-transform: translateX( 0% );
    transform: translateX( 0% );
}

.sochm-toast .sochm-toast-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.sochm-toast .sochm-toast-content .sochm-toast-message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 20px;
}

.sochm-toast .sochm-toast-content .sochm-toast-message .sochm-toast-text {
    font-weight: 400;
    color: #666;
    text-align: center;
}

.sochm-toast .sochm-toast-content .sochm-toast-message .sochm-toast-text.sochm-toast-text-2 {
    font-size: 18px;
}

/*=========== TOAST ERROR  ===============*/
.sochm-toast.sochm-toast-type-error {
    border-left: 5px solid #FF5252 !important;
}

/*=========== TOAST SUCCESS  ===============*/
.sochm-toast.sochm-toast-type-success {
    border-left: 5px solid #4CAF50 !important;
}

/*=========== TOAST Warning  ===============*/
.sochm-toast.sochm-toast-type-warning {
    border-left: 5px solid #FFC107 !important;
}