/* Notice style */
.lcg-dashboard-notice {
    background: #fff;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 40px;
    width: calc(100% - 53px);
    border: 1px solid #c3c4c7;
    box-shadow: 0 1px 1px rgb(0 0 0 / 4%);
    padding: 15px 20px;
    position: relative;
}
.lcg-dashboard-notice img {
    max-height: 140px;
}
.lcg-dashboard-notice:before{
    position: absolute;
    content: '';
    width: 3px;
    height: calc(100% + 2px);
    background: #2271b1;
    left: -1px;
    top:-1px;
}
.lcg-dashboard-notice a {
    color: #fff;
    text-decoration: none;
}
.lcg-dashboard-notice__close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 20px;
    height: 18px;
    padding-bottom: 2px;
    font-size: 10px;
    border-radius: 50%;
    background-color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lcg-dashboard-notice__btn {
    font-size: 12px;
    padding: 8px 20px;
    border-radius: 2px;
    display: inline-block;
    background-color: #2271b1;
}
.lcg-dashboard-notice__content h5 {
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
    color: #2271b1;
    margin: 0 0 20px;
}
.lcg-dashboard-notice__content p {
    font-size: 14px;
    margin: 0 0 15px;
}

@media screen and (max-width: 767px) {
    .lcg-dashboard-notice {
        flex-direction: column;
        align-items: flex-start;
    }
}