.custom-alert {
    padding: 32px 50px 36px 32px;
    border-radius: 10px;
    color: #40444F !important;
    font-family: "Plus Jakarta Sans", Sans-serif;
    color: #272A33;
    font-weight: 400 !important;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    display: flex !important; position: relative; margin-bottom: 5px;
}
.custom-alert.green-icon, .custom-alert.orange-icon, .custom-alert.yellow-icon {
    padding-left: 93px !important;
}
.custom-alert .custom-alert-title { font-weight: 700; color: #40444F; margin-right: 3px; }

.custom-alert.green, .custom-alert.green-icon { background-color: #5ab8551a; border-color: #5ab8551a;; }
.custom-alert.orange, .custom-alert.orange-icon {     background-color: #FF91401a; border-color: #FF91401a; }
.custom-alert.yellow, .custom-alert.yellow-icon { background-color: #FFDA401a; border-color: #FFDA401a; }

.alert-icon { margin-right: 15px; font-size: 24px; }
.alert-content { display: flex; flex-direction: column; }
.alert-title { font-weight: bold; margin-bottom: 5px; }
.alert-text { margin: 0; }
.custom-alert .custom-alert-icon svg { width: 38px; height: 38px; }

.custom-alert.green-icon:before, .custom-alert.orange-icon:before, .custom-alert.yellow-icon:before {
    position: absolute;
    content: "!";
    left: 32px;
    top: 32px;
    display: inline-block;
    font-size: 24px;
    font-family: "Plus Jakarta Sans", Sans-serif;
    color: #ffffff;
    font-weight: 700;
    width: 38px;
    height: 38px;
    border-radius: 50px;
    background-color: #ccc;
    text-align: center;
    line-height: 38px;
}
.custom-alert.green-icon:before { background-color: #44A13F; }
.custom-alert.orange-icon:before { background-color: #FF9140; }
.custom-alert.yellow-icon:before { background-color: #FCCD0B; }

@media (max-width: 767px) {
    .custom-alert {
        padding: 20px 22px;
    }
    .custom-alert.green-icon, .custom-alert.orange-icon, .custom-alert.yellow-icon {
    padding-left: 84px !important; }
}