:root{
    --success:#00C853;
    --error:#E53935;
    --warning:#FFA000;
    --default:#174189;
    --white:#fff;
}

.custom_Alert{
    background-color: var(--white) !important;
    max-width: 400px;
    min-width: 256px;
    height: 60px !important;
    border: 2px solid var(--default) !important;
    border-left:6px solid var(--default) !important;
    border-radius: 6px !important;
    display: flex;
    align-items: center;
    height: fit-content !important;
}

.custom_Alert div{
    padding:0px !important;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}

.custom_Alert div::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}

.custom_Alert_success{
    border-color: var(--success) !important;
    color: var(--success) !important;
}

.custom_Alert_error{
    border-color: var(--error) !important;
    color: var(--error) !important;
}
.custom_Alert_warning{
    border-color: var(--warning) !important;
    color: var(--warning) !important;
}
.custom_Alert_default{
    border-color: var(--default) !important;
    color: var(--default) !important;
}
.custom_Alert .custom_Alert_body{
    display: flex;
    align-items: center;
   
}

.custom_Alert .custom_Alert_body .custom_Alert_message{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 0 13px !important;
}

.custom_Alert .custom_toast_icon{
    min-width: 24px;
    min-height: 24px;
}