.color-box {
    margin: 5px 0;
    padding-left: 20px;
    margin-top:-5px;
}
.shadow {
    background: #F7F8F9;
    padding: 3px;
    margin: 10px 0;
    border-radius: 8px;
}
.note-icon, .danger-icon, .warning-icon, .success-icon {
    -webkit-border-radius: 5px;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius: 5px;
    -moz-border-radius-bottomleft: 0;
    border-radius: 5px;
    border-bottom-left-radius: 0;
    text-shadow: rgba(0,0,0,0.25) 1px 1px 0px;
}
.note-icon {
    background: #47ADE0;
    min-width: 40px;
    min-height: 40px;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-weight:normal;
    font-size: 20px;
}
.danger-icon {
    background-color: #721c24;
    min-width: 40px;
    min-height: 40px;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-weight:normal;
    font-size: 20px;
}
.warning-icon {
    background-color: #f0d069;
    min-width: 40px;
    min-height: 40px;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-weight:normal;
    font-size: 20px;
}
.success-icon {
    background-color: #46992d;
    min-width: 40px;
    min-height: 40px;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-weight:normal;
    font-size: 20px;
}

.info-tab {
    display: inline-block;
    position: relative;
    top: 8px;
}
.info-tab {
    float: left;
    margin-left: -23px;
    width: 25px;
    height: 25px;
}

.note-icon::before, .danger-icon::before, .warning-icon::before, .success-icon::before {
    font-size: 20px;
    top: 10px;
    left: 10px;
}

.info-tab::before, .info-tab::after {
    display: inline-block;
    color: #fff;
    line-height: normal;
    font-family: "Font Awesome 5 Brands";
    position: absolute;
}
.note-icon i::before {
    background: #1d7ead;
}
.danger-icon i::before {
    background: #3a0c10;
}
.warning-icon i::before {
    background: #ac8c25;
}
.success-icon i::before {
    background: rgb(34, 83, 30);
}
.info-tab i::before {
    width: 20px;
    height: 20px;
    box-shadow: inset 12px 0 13px rgba(0,0,0,0.5);
}
.info-tab i::before, .info-tab i::after {

    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: -15px;
    transform: rotateX(60deg);

}
.info-tab i::after {
    width: 0;
    height: 0;
    border: 10px solid transparent;
        border-bottom-color: transparent;
        border-left-color: transparent;
    border-bottom-color: #fff;
    border-left-color: #fff;
    bottom: -18px;

}
.info-tab i::before, .info-tab i::after {
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: -15px;
    transform: rotateX(60deg);
}

.note-icon::after, .danger-icon::after, .warning-icon::after, .success-icon::after {
    font-size: 17px;
    top: 9px;
    left: 19px;
}

.info-tab::before, .info-tab::after {
    display: inline-block;
    color: #fff;
    line-height: normal;
    font-family: "Font Awesome 5 Brands";
    position: absolute;

}
.note-box {
    color: #144261;
    background: #d5e9f6;
    border-radius: 5px;
}

.danger-box {
    color: #721c24;
    background-color: #f8d7da;
    border-radius: 5px;
}

.warning-box {
    color: #856404;
    background-color: #fff3cd;
    border-radius: 5px;
}

.success-box {
    color: #155724;
    background-color: #d4edda;
    border-radius: 5px;
}

.note-box, .danger-box, .warning-box, .success-box, .tip-box {
    padding: 8px 8px 3px 26px;
}
.note-box p {
    margin: 0 0 12px;
}    