body{
    font-family: 'Inter';
    font-style: normal;
}

main{
    margin-left: 280px;
    padding: 32px;
    box-sizing: border-box;
}

tbody tr{
    cursor: pointer;
}

button, input, textarea{
    font-family: 'Inter';
    -webkit-border-radius: 0px;
}

input[type=submit] {
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
}

.main__content{
    width: 100%;
}

.page__name{
    margin-bottom: 20px;
}

.page__name.filter{
    display: flex;
    align-items: center;
}

.page__title{
    font-weight: 600;
    font-size: 30px;
    line-height: 38px;
    color: #101828;
    width: fit-content;
}

.notification{
    content: attr(data-note);
    display: flex;
    width: fit-content;
    flex-direction: row;
    align-items: flex-start;
    padding: 2px 8px;
    gap: 10px;
    background: #FEF3F2;
    border-radius: 16px;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #D92D20;
    margin-left: 16px;
}

.page__subtitle{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #475467;
    margin-top: 4px;
}

.dashboard__wrapper{
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.dashboard__card{
    padding: 16px;
    width: 33%;
    box-sizing: border-box;
    background: #FFFFFF;
    border: 1px solid #EAECF0;
    box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px rgba(16, 24, 40, 0.06);
    border-radius: 8px;
}

.dashboard__title{
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #101828;
}

.dashboard__top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.dashboard__icon{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 8px;
}

.dashboard__icon.doc{
    background: #F4EBFF;
}

.dashboard__icon.doc i:before{
    color: #7F56D9;
}

.dashboard__icon.usdt{
    background: #D1FADF;
}

.dashboard__icon.usdt i:before{
    color: #039855;
}

.dashboard__icon.rub{
    background: #FEF0C7;
}

.dashboard__icon.rub i:before{
    color: #DC6803;
}

.dashboard__item{
    display: flex;
    flex-direction: column;
    padding-bottom: 16px;
    border-bottom: 1px solid #EAECF0;
    margin-bottom: 16px;
}

.dashboard__item:first-child{
    padding-top: 0;
}

.dashboard__item:last-child{
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.dashboard__item_content{
    display: flex;
    justify-content: space-between;
}

.dashboard__item_title{
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #475467;
    margin-bottom: 4px;
}

.item__block_stat{
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #101828;
}

.item__block_stat.up{
    color: #12B76A;
}

.item__block_stat.disable{
    color: #475467;
}

.item__block_stat span{
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #475467;
}

.item__block_status{   
    padding: 2px 8px 2px 8px;
    border-radius: 16px;
    width: fit-content;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    margin-top: 4px;
}

.item__block_status.red{
    color: #D92D20;
    background: #FEF3F2;
}

.item__block_status.green{
    color: #12B76A;
    background: #ECFDF3;
}

.table__title{
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #101828;
}

.table__subtitle{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #475467;
}

.table__top{
    padding-bottom: 16px;
    border-bottom: 1px solid #EAECF0;
}

.table__info{
    padding: 16px 16px 0 16px;
    border: 1px solid #EAECF0;
    border-radius: 12px 12px 0 0;
}

.table__bot{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 23px;
    padding-bottom: 23px;
}

.table__bot_count{
    color: #747474;
    font-size: 12px;
}

.table__bot_sum{
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #475467;
}

.table__bot_sum span{
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #101828;
}

.table__wrapper{
    box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px rgba(16, 24, 40, 0.06);
    border-radius: 12px;
    position: relative;
}

.dt-buttons{
    margin-top: 16px;
}

.dt-buttons button{
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    background: #FFFFFF;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.dt-buttons button:hover{
    background: #F9FAFB;
    transition: 0.3s;
}

.dt-buttons button:active{
    background: #F9FAFB;
    opacity: 0.7;
    transition: 0.3s;
}

.dt-buttons span{
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #344054;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dt-button span i:before{
    font-size: 20px;
    color: #344054;
}

.dataTables_paginate{
    padding: 16px;
}

.pagination{
    display: flex;
    justify-content: space-between !important;
    width: 100%;
}

.paginate_button{
    margin-left: auto;
    margin-right: auto;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paginate_button a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    font-weight: 500;
    font-size: 14px;
}

ul.pagination li a:hover:not(.active){
    background-color: #F9FAFB !important;
    transition: 0.3s;
}

.page-item.active .page-link{
    color: #1D2939;
    background-color: #F9FAFB !important;
    transition: 0.3s;
    
}

.paginate_button:first-child{
    margin-left: 0;
}

.paginate_button:nth-child(n+2){
    margin-right: 2px;
    margin-left: 2px;
}

.paginate_button:last-child{
    margin-right: 0;
    margin-left: auto;
}

.previous a{
    background: #FFFFFF;
    border: 1px solid #D0D5DD;
    border-radius: 8px !important;
    min-height: 40px;
    display: flex;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    gap: 8px;
    font-weight: 600;
    color: #344054 !important;
}

.previous a i:before{
    font-weight: 600;
    color: #344054 !important;
}

.next a{
    background: #FFFFFF;
    border: 1px solid #D0D5DD;
    border-radius: 8px !important;
    min-height: 40px;
    display: flex;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    gap: 8px;
    font-weight: 600;
    color: #344054 !important;
}

.next a i:before{
    font-weight: 600;
    color: #344054 !important;
}

.action__button{
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.action__button i:before{
    font-size: 20px;
}

.breadcrump__item{
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #475467;
    padding: 8px 4px;
    height: 28px;
    transition: 0.3s;
}

.breadcrump__item:hover{
    color: #344054;
    font-weight: 600;
    transition: 0.3s;
    
}

.breadcrump__item.active{
    color: #344054;
    border-radius: 6px;
    font-weight: 600;
}

.breadcrump__item p{
    line-height: 12px;
}

.breadcrump__wrapper{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.tabs__wrapper{
    display: flex;
    border-bottom: 1px solid #EAECF0;
    margin-bottom: 20px;
    gap: 12px;
}

.tabs__wrapper a{
    display: block;
    padding: 0px 8px 12px 8px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #667085;
}

.tabs__wrapper a:hover{
    color: #6941C6;
    border-bottom: 2px solid #6941C6;
}

.tabs__wrapper a.active{
    display: block;
    color: #6941C6;
    padding: 0px 8px 12px 8px;
    border-bottom: 2px solid #6941C6;
}

.info__title{
    color: #101828;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 12px;
    
}

.information__wrapper{
    margin-bottom: 32px;
}

.info__item_status{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 2px 10px 2px 8px;
    gap: 4px;
}

.info__item_title{
    margin-bottom: 4px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #475467;
}

.info__item p{
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #101828;
}

.info__item strong{
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #101828;
}

.info__border_wrapper{
    background: #FFFFFF;
    border: 1px solid #EAECF0;
    box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px rgba(16, 24, 40, 0.06);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    gap: 40px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.info__wrapper{
    display: flex;
    gap: 30px;
    margin-top: 20px;
    border-bottom: 1px solid #EAECF0;
    padding-bottom: 20px;

    flex-wrap: wrap;
}

.info__wrapper.non_border{
    border: none;
    padding-bottom: 0;
}

.message__item_title{
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #344054;
    margin-bottom: 6px;
}

.message__item_text{
    padding: 10px 12px;
    resize: none;
    background: #FFFFFF;
    border: 1px solid #D0D5DD;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #344054;
    width: 536px;
    height: 116px;
    box-sizing: border-box;
}

.message__item_text::placeholder{
    color: #667085;
}

.dropzone{
    width: 536px;
    height: 126px; 
    background: #FFFFFF !important;
    border: 1px solid #EAECF0 !important;
    border-radius: 12px !important;
    padding: 16px !important;
    display: flex;
    justify-content: space-around;
    transition: 0.3s;
}

.dropzone:hover{
    border: 1px solid #7F56D9 !important;
    transition: 0.3s;
}


.dropzone .dz-message{
    margin: 0 !important;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.dz-message p{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #475467;
}

.dz-message p span{
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #6941C6;
}

.dz-message p.rule{
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    color: #475467;
}

.dropzone .dz-preview{
    margin: 0 !important;
}

.dz-preview:nth-child(n+6){
    display: none !important;
}

.dropzone .dz-preview .dz-image {
    width: 100px !important;
    height: 100px !important;
}

.message__left_side input{
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    padding: 10px 16px;
    gap: 8px;
    width: 108px;
    height: 40px;
    background: #7F56D9;
    border: 1px solid #7F56D9;
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    margin-left: auto;
    cursor: pointer;
}

.message__left_side input:hover{
    background: #6941C6;
    transition: 0.3s;
}

.message__left_side input:active{
    background: #6941C6;
    opacity: 0.7;
    transition: 0.3s;
}

.message__item{
    margin-bottom: 20px;
}

.message__right_side{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
    padding: 16px;
    gap: 20px;
    height: 638px;
    background: #FFFFFF;
    border: 1px solid #EAECF0;
    box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px rgba(16, 24, 40, 0.06);
    border-radius: 8px;
    overflow-y: scroll;
}



.message__right_side::-webkit-scrollbar {
    width: 12px;
}

.message__right_side::-webkit-scrollbar-track {
    background: #fff;
}

.message__right_side::-webkit-scrollbar-thumb {
    background: #EAECF0;
    /* color of the scroll thumb */
    border-radius: 20px;
    /* roundness of the scroll thumb */
    border: 3px solid #fff;
    /* creates padding around scroll thumb */
}

.message__wrapper{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.dialog__info{
    display: flex;
    align-items: center;
}

.dialog__name{
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #101828;
}

.dialog__role{
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    padding: 2px 8px;
    border-radius: 16px;
    margin-left: 8px;
    margin-right: 8px;
}

.dialog__role.purp{
    color: #6941C6;
    background: #F9F5FF;
}

.dialog__role.blue{
    color: #2E90FA;
    background: #EFF8FF;
}

.dialog__role.orange{
    color: #F79009;
    background: #FFFAEB;
}

.dialog__role.gray{
    color: #667085;
    background: #F2F4F7;
}

.dialog__role.green{
    color: #12B76A;
    background: #ECFDF3;
}

.dialog__role.red{
    color: #D92D20;
    background: #FEF3F2;
}


.dialog__date{
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #667085;
}

.dialog__content{
    margin-top: 8px;
}

.dialog__text{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #101828;
}

.dialog__image{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.dialog__image a{
    width: 60px;
    height: 60px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    border-radius: 8px;
}

.dialog__image img{
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.open__arg{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    gap: 8px;
    background: #7F56D9;
    border: 1px solid #7F56D9;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    cursor: pointer;
}

.open__arg:hover{
    background: #6941C6;
    transition: 0.3s;
}

.open__arg:active{
    background: #6941C6;
    opacity: 0.7;
    transition: 0.3s;
}

.open__arg i:before{
    color: #FFFFFF;
    font-size: 20px;
}

.open__arg.red{
    background: #FEF3F2;
    border: 1px solid #FEF3F2;
    color: #B42318;
    transition: 0.3s;
}

.open__arg.red i:before{
    color: #B42318;
}

.open__arg.red:hover{
    background: #FEE4E2;
    border: 1px solid #FEE4E2;
    transition: 0.3s;
    color: #B42318;
}

.page__name.arg{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.litepicker .container__days>div, .litepicker .container__days>a {
    padding: 10px 8px;
    box-sizing: border-box;
    width: var(--litepicker-day-width);
    border-radius: 20px !important; 
    width: 38px;
    height: 38px;
    line-height: 18px;
}

.litepicker .container__days .day-item{
    font-family: 'Inter';
}

.litepicker .container__months .month-item-weekdays-row>div {
    padding: 5px 0;
    font-size: 85%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: var(--litepicker-day-width);
    text-align: center;
    font-size: 14px;
    color: #344054;
    padding: 10px 8px;
}

.litepicker .container__days .day-item.is-today{
    background: #F2F4F7;
    color: #344054;
}

.litepicker .container__days .day-item.is-start-date{
    background: #7F56D9;
}

.litepicker .container__days .day-item.is-in-range{
    background: #F9FAFB;
}

.litepicker .container__days .day-item.is-end-date{
    background: #7F56D9;
}

.litepicker .container__days .day-item:hover {
    background: #F2F4F7;
    border: none;
    color: #344054 !important;
    box-shadow: none;
}

.litepicker .container__days .day-item.is-start-date{
    background: #6941C6;
    color: #FFFFFF !important;
}

.litepicker .container__days .day-item.is-end-date:hover{
    background: #6941C6;
    color: #FFFFFF !important;
}

.litepicker .container__months .month-item-header .button-next-month:hover svg{
    fill: #7F56D9 ;
}

.litepicker .container__months .month-item-header .button-previous-month:hover svg{
    fill: #7F56D9 ;
}

.alert__wrapper{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 12px;
    background: #FFFCF5;
    border: 2px solid #FEC84B;
    border-radius: 12px;
    margin-bottom: 32px;
}

.alert__title{
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #B54708;
    margin-bottom: 8px;
}

.alert__code{
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #B54708;
    padding: 2px 8px;
    background: #FEC84B;
    border-radius: 4px;
    width: fit-content;
    margin-bottom: 8px;
}

.alert__text p{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #B54708;
}

.password__input{
    position: relative;
}

.password__input_view{
    position: absolute;
    top: 12px;
    right: 12px;
    cursor: pointer;
}

.password__info_title{
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #101828;
}

.password__info_text{
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #98A2B3;
    margin-top: 4px;
}

.password__info{
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}


.button{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    gap: 8px;
    box-sizing: border-box;
    background: #7F56D9;
    border: 1px solid #7F56D9;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    height: 40px;
    color: #FFFFFF;
    cursor: pointer;
    transition: 0.3s;
}

.button{
    margin-right: 12px;
}

.button:hover{
    background: #6941C6;
    transition: 0.3s;
}

.button:active{
    opacity: 0.7;
    transition: 0.3s;
}

.button i:before{
    color: #fff;
    font-size: 20px;
}

.button.delete{
    background: #FEF3F2;
    border: 1px solid #FEF3F2;
    color: #B42318;
}

.button.delete:hover{
    background: #FEE4E2;
    transition: 0.3s;
}

.button.cancel{
    color: #6941C6;
    border: none;
    background: none;
}

.req__card{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 16px;
    gap: 16px;
    background: #FFFFFF;
    border: 1px solid #EAECF0;
    box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px rgba(16, 24, 40, 0.06);
    border-radius: 12px;
    margin-bottom: 20px;
}

.req__card:last-child{
    margin-bottom: 0;
}

.req__val{
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #344054;
}

.req__item_name{
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #475467;
}

.req__item_info{
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #344054;
}

.req__item{
    margin-top: 12px;
}

.req__item:first-child{
    margin-top: 0;
}

.req__buttons{
    display: flex;
    align-items: center;
    margin-top: 12px;
}

.req__buttons button{
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: 0.3s;
}

.req__buttons button:hover{
    opacity: 0.7;
    transition: 0.3s;
}

.req__buttons .delete{
    color: #D92D20;
}

.req__buttons .edit{
    color: #6941C6;
    margin-left: 12px;
}

.buttons{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.add__item__text_block{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    background: #F9FAFB;
    border: 1px solid #D0D5DD;
    border-radius: 12px;
    max-width: 824px;
}

.add__item__text_block .text__block_title{
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #344054;
    margin-bottom: 12px;
}

.add__item__text_block p{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #475467;
    margin-bottom: 20px;
}

.add__item__text_block span{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #475467;
}

.add__item__text_block ul, .add__item__text_block ol{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #475467;
    margin-bottom: 20px;
}

.add__item__text_block ol li{
    color: #6941C6;
    font-weight: bold;
    position: relative;
    padding-left: 20px;
}

.add__item__text_block ol li:before{
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: absolute;
    background: #6941C6;
    top: 7px;
    left: 7px;
}

.notification__item{
    border-bottom: 1px solid #EAECF0;
    padding-left: 19px;
    padding-bottom: 20px;
    padding-top: 20px;
    position: relative;
}

.notification__item:first-child{
    padding-top: 0;
}

.notification__item:before{
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #6941C6;
    position: absolute;
    top: 25px;
    left: 0;
}

.notification__item:first-child:before{
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #6941C6;
    position: absolute;
    top: 5px;
    left: 0;
}

.note__item_top{
    display: flex;
    align-items: center;
}

.note__item_title{
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #344054;
}

.note__item_date{
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #98A2B3;
    margin-left: 8px;
}

.note__item_text{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #101828;
    margin-top: 4px;
    margin-bottom: 8px;
}

.note__item_btn{
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #6941C6;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    transition: 0.3s;
}

.note__item_btn:hover{
    opacity: 0.7;
    transition: 0.3s;
}

.pagination__wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.pag__btn{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    gap: 8px;
    background: #FFFFFF;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #344054;
    cursor: pointer;
    transition: 0.3s;
}

.pag__btn:hover{
    background: #F9FAFB;
    transition: 0.3s;
}

.pag__btn i:before{
    font-size: 20px;
    color: #344054;
}

.pagination__pages{
    display: flex;
    align-items: center;
    gap: 2px;
}

.pagination__page_item{
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #1D2939;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.pagination__page_item.active{
    background: #F9FAFB;
}

.pagination__page_item:hover{
    background: #F9FAFB;
    transition: 0.3s;
}

.left__button_wrapper{
    margin-left: auto;
    justify-content: right;
    display: flex;
}

.page__name .left__button, .button{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    gap: 8px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    cursor: pointer;
    transition: 0.3s;
    margin-right: 12px;
}

.page__name .left__button:last-child{
    margin-right: 0;
}

.page__name .left__button.purp, .button_purp_primary{
    background: #7F56D9;
    border: 1px solid #7F56D9;
}

.page__name .left__button.red, .button_red_secondary{
    background: #FEF3F2;
    border: 1px solid #FEF3F2;
    color: #B42318;
}

.page__name .left__button.red, .button_yellow_secondary{
    background: #FEF3F2;
    border: 1px solid #FEF3F2;
    color: #344054;
}

.page__name .left__button.red:hover, .button_red_secondary:hover{
    background: #FEE4E2;
    transition: 0.3s;
}

.page__name .left__button.purp:hover, .button_purp_primary:hover{
    background: #6941C6;
    transition: 0.3s;
}

.page__name .left__button.purp i:before{
    color: #FFFFFF;
    font-size: 20px;
}

.page__name .left__button.red i:before{
    color: #B42318;
    font-size: 20px;
}

.table__top_btns{
    display: flex;
    align-items: center;
}

.table__btn{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    gap: 8px;
    background: #FFFFFF;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #344054;
    cursor: pointer;
    transition: 0.3s;
    margin-left: 12px;
}

.table__btn i:before{
    font-size: 20px;
    color: #344054;
}

.table__btn:hover{
    background: #F9FAFB;
    transition: 0.3s;
}

.table__top_content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media(max-width:1200px){
    .table__top_content{
        flex-direction: column;
        align-items: flex-start;
    }

    .table__top_btns{
        flex-direction: column;
        margin-top: 16px;
    }

    .table__btn{
        width: 100%;
        margin-bottom: 16px;
    }

    .table__btn:last-child{
        margin-bottom: 0;
    }

    .info__item{
        width: 176px;
    }

    .page__name .left__button{
        margin-right: 0;
    }

    .left__button_wrapper{
        gap: 12px;
    }

    .message__wrapper{
        flex-direction: column;
    }

    .message__left_side{
        width: 100%;
    }

    .message__left_side form{
        width: 100%;
    }

    .message__item_text{
        width: 100%;
    }

    .message__left_side .dropzone{
        width: 100%;
    }

    .message__right_side{
        height: 480px;
    }
}

@media(max-width: 1090px){
    .dashboard__wrapper{
        flex-direction: column;
    }

    .dashboard__card{
        width: 100%;
    }

    .breadcrump__wrapper {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        white-space: nowrap;
        overflow-x: scroll;
    }

    .breadcrump__wrapper::-webkit-scrollbar {
        display: none;
    }
       
    .breadcrump__wrapper {
        -ms-overflow-style: none;  
        scrollbar-width: none;  
    }

    .paginate_button span{
        display: none;
    }

    .pag__btn span{
        display: none;
    }

    .page__name.filter{
        flex-wrap: wrap;
        gap: 12px;
    }

    .left__button_wrapper{
        flex-wrap: wrap;
        margin-right: auto;
        margin-left: 0;
    }

    .filter__button{
        margin-left: 0 !important;
    }

    .notification{
        margin-left: 0;
    }

    .tabs__wrapper{
        overflow-x: scroll;
        white-space: nowrap;
    }

    .tabs__wrapper::-webkit-scrollbar {
        display: none;
    }
       
    .tabs__wrapper {
        -ms-overflow-style: none;  
        scrollbar-width: none;  
    }
}

@media(max-width:690px){
    .alert__code{
        font-size: 12px;
    }
}

@media(max-width:630px){
    main{
        margin-left: 0;
        padding: 32px 16px;
        margin-top: 64px;
    }

    .page__title{
        font-size: 24px;
        line-height: 32px;
    }

    .page__subtitle{
        font-size: 14px;
        line-height: 20px;
    }

    .table__bot_count{
        font-size: 12px;
    }
}

.dataTables_paginate{
    display: flex;
}

.previous{
    background: #FFFFFF;
    border: 1px solid #D0D5DD;
    border-radius: 8px !important;
    min-height: 40px;
    display: flex;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #344054 !important;
    cursor: pointer;
}

.previous .icon-arrow-left:before{
    font-weight: 600;
    color: #344054 !important;
}

.next{
    background: #FFFFFF;
    border: 1px solid #D0D5DD;
    border-radius: 8px !important;
    min-height: 40px;
    display: flex;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #344054 !important;
    cursor: pointer;
}

.next .icon-arrow-right:before{
    font-weight: 600;
    color: #344054 !important;
}

.next:hover:not(.active), .previous:hover:not(.active){
    background-color: #F9FAFB !important;
    transition: 0.3s;
}

.dataTables_paginate>span>a{
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
}

.dataTables_paginate>span:nth-child(n+2){
    display: flex;
    margin-left: 4px;
}

.dataTables_paginate .current{
    color: #1D2939;
    background-color: #F9FAFB !important;
    transition: 0.3s;
}

.dataTables_paginate>span>a:hover:not(.active){
    background-color: #F9FAFB !important;
    transition: 0.3s;
}

.custom_input {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 12px;
    gap: 8px;
    /*width: 100%;*/
    height: 44px;
    box-sizing: border-box;
    background: #FFFFFF;
    border: 1px solid #D0D5DD;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #475467;
}