.modal__notification{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 12px 16px 16px 12px;
    gap: 16px;
    width: 400px;
    background: #FFFFFF;
    box-shadow: 0px 8px 8px -4px rgba(16, 24, 40, 0.03), 0px 20px 24px -4px rgba(16, 24, 40, 0.08);
    border-radius: 12px;
    position: fixed;
    right: 36px;
    top: 36px;
    z-index: 1000;
    padding: 16px;
    box-sizing: border-box;
}

.circle__shadow{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle{
    width: 40px;
    height: 40px;
    
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle i:before{
    font-size: 20px;
}

.modal__notification.green .circle__shadow{
    background: #ECFDF3;
}

.modal__notification.green .circle{
    background: #D1FADF;
}

.modal__notification.green .circle i:before{
    color: #039855;
}

.modal__notification.blue .circle__shadow{
    background: #EFF8FF;
}

.modal__notification.blue .circle{
    background: #D1E9FF;
}

.modal__notification.blue .circle i:before{
    color: #1570EF;
}

.modal__notification.red .circle__shadow{
    background: #FEF3F2;
}

.modal__notification.red .circle{
    background: #FEE4E2;
}

.modal__notification.red .circle i:before{
    color: #D92D20;
}

.modal__notification.orange .circle__shadow{
    background: #FFFAEB;
}

.modal__notification.orange .circle{
    background: #FEF0C7;
}

.modal__notification.orange .circle i:before{
    color: #DC6803;
}

.modal__note_content{
    width: 272px;
}

.modal__note_title{
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #101828;
}

.modal__note_text{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #475467;
    margin-top: 4px;
}

.modal__note_btns{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.modal__note_btns button{
    cursor: pointer;
    transition: 0.3s;
}

.modal__note_btns button:hover{
    opacity: 0.8;
    transition: 0.3s;
}

.modal__note_btns .close{
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #475467;
    border: none;
    background: none;
    padding: 0;
}

.modal__note_btns .check{
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #6941C6;
    border: none;
    background: none;
    padding: 0;
}

.modal__cross{
    cursor: pointer;
}

.modal__cross i:before{
    font-size: 20px;
}

.modal.green .circle__shadow{
    background: #ECFDF3;
}

.modal.green .circle{
    background: #D1FADF;
}

.modal.green .circle i:before{
    color: #039855;
}

.modal.blue .circle__shadow{
    background: #EFF8FF;
}

.modal.blue .circle{
    background: #D1E9FF;
}

.modal.blue .circle i:before{
    color: #1570EF;
}

.modal.red .circle__shadow{
    background: #FEF3F2;
}

.modal.red .circle{
    background: #FEE4E2;
}

.modal.red .circle i:before{
    color: #D92D20;
}

.modal.orange .circle__shadow{
    background: #FFFAEB;
}

.modal.orange .circle{
    background: #FEF0C7;
}

.modal.orange .circle i:before{
    color: #DC6803;
}

.modal__wrapper{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1111;
    background-color: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 16px;
    isolation: isolate;
    width: 400px;
    background: #FFFFFF;
    box-shadow: 0px 8px 8px -4px rgba(16, 24, 40, 0.03), 0px 20px 24px -4px rgba(16, 24, 40, 0.08);
    border-radius: 12px;
    box-sizing: border-box;
}

.modal__top{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.modal__content_title{
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #101828;
}

.modal__content_text{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #475467;
}

.modal__card_item{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

.card__item_name{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #475467;
}

.card__item_text{
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: right;
    color: #101828;
}

.modal__card{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 12px;
    background: #F9FAFB;
    border: 1px solid #EAECF0;
    border-radius: 8px;
    margin-top: 16px;
}

.modal__buttons{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.modal__button{
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    width: 170px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.modal__button.cancel{
    color: #344054;
    background: #FFFFFF;
    border: 1px solid #D0D5DD;
}

.modal__button.cancel:hover{
    background: #F9FAFB;
    transition: 0.3s;
}

.modal__button.accept{
    color: #FFFFFF;
    background: #7F56D9;
    border: 1px solid #7F56D9;
}

.modal__button.accept:hover{
    background: #6941C6;
    transition: 0.3s;
}

.modal.red .modal__button.accept{
    color: #FFFFFF;
    background: #D92D20;
    border: 1px solid #D92D20;
}

.modal.red .modal__button.accept:hover{
    background: #B42318;
}