/* Specification */

body {
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
    font-style: normal;
    background: #FFFFFF;
    border-radius: 35px;
    margin: 0;
    padding: 0;
    color: #09101C;
    position: relative;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

*,
::after,
::before {
    box-sizing: border-box;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.container {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
}

:focus-visible {
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
    margin: 0;
    padding: 0;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.title-3 {
    font-size: 17px;
    line-height: 25px;
    text-transform: uppercase;
    text-align: center;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

a {
    text-decoration: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

span {
    display: inline-block;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

div {
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

img {
    max-width: 100%;
    max-height: 100%;
}

.btn {
    background-color: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
}

main {
    padding-top: 82px;
    padding-bottom: 100px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-8 {
    margin-bottom: 8px;
}

.mr-5 {
    margin-right: 5px;
}

.mr-8 {
    margin-right: 8px;
}

.mr-10 {
    margin-right: 10px;
}

.mb-32 {
    margin-bottom: 32px;
}

/* End Specification */

/* Header */

.text-name-file {
    font-size: 14px;
    line-height: 21px;
    overflow: hidden;
    text-overflow: clip;
    max-width: 240px;
    white-space: nowrap;
}

.text-name-folder {
    text-transform: uppercase;
    margin-bottom: 11px;
    margin: 0;
  }

.header {
    background: rgba(9, 16, 28, 0.8);
    padding-top: 16px;
    padding-bottom: 16px;
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 71px;
    display: flex;
    align-items: center;
}

.customer-wrapper,
.customer-wrapper-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.customer-select-btn {
    font-weight: 500;
    font-size: 17px;
    line-height: 25px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
}

.customer-select-btn span {
    margin-right: 5px;
}

.customer-select-btn_active .customer-select-img {
    transform: rotate(180deg);
}

.search-btn {
    margin-right: 16px;
}

.customer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.customer-avatar-img {
    border-radius: 50%;
    object-fit: cover;
    max-width: 100%;
}

.add-back-link {
    display: flex;
    align-items: center;
}

.add-back-link span {
    font-weight: 500;
    font-size: 17px;
    line-height: 22px;
    color: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 280px;
}

.add-back-link_icon {
    transform: rotate(90deg);
    margin-right: 8px;
    cursor: pointer;
}

.main-menu-records span {
    font-weight: 300;
    font-size: 17px;
    line-height: 25px;
    color: #fff;
}

.main-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-menu-icon_wrap {
    width: 24px;
    height: 24px;
}

.main-menu-name {
    font-weight: 400;
    font-size: 10px;
    line-height: 15px;
    color: #fff;
}

.main-menu-records_title {
    font-weight: 300;
}

.main-menu-records_number {
    font-weight: 500;
}

/* End Header */

/* Popup */

.popup {
    width: 100%;
    background: rgba(9, 16, 28, 0.6);
    position: fixed;
    z-index: 1000;
    top: 71px;
    left: 0;
    bottom: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity 200ms linear;
}

.popup-active {
    visibility: visible;
    opacity: 1;
    transition: opacity 200ms linear;
}

.popup-body {
    background: #FFFFFF;
    width: 100%;
    padding-top: 24px;
    padding-bottom: 20px;
}

.popup-scrollbar::-webkit-scrollbar {
    width: 4px;
    background: #FFFFFF;
    border-radius: 10px;
}

.popup-scrollbar::-webkit-scrollbar-thumb {
    width: 4px;
    background: #5C6573;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}

.popup-scrollbar::-webkit-scrollbar-track {
    box-shadow: none;
    border-radius: 10px;
    background-color: #FFFFFF;
}

.popup #overlay {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.6);
}

.popup .cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup .spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}

/* End Popup */

/* Customer Select */

.customer-select-wrapper {
    top: 71px;
}

.customer-select {
    padding-top: 16px;
    padding-bottom: 16px;
}

.customer-abc-wrapper {
    border: 1px solid rgba(92, 101, 115, 0.5);
    border-radius: 12px;
    padding: 8px;
    margin-bottom: 24px;
}

.customer-abc-letter {
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    color: #5C6573;
    text-transform: uppercase;
    width: 32px;
    height: 20px;
    text-align: center;
}

.customer-abc-letter_disable {
    opacity: 0.25;
}

.customer-select-list_wrapper {
    height: 350px;
    overflow-y: scroll;
    overflow-x: hidden;
    background: transparent;
    padding-right: 15px;
}

.customer-select-list_item {
    display: flex;
    flex-direction: column;
    margin-bottom: 6px;
}

.customer-select-list_title {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.customer-select-list_title span {
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
    margin-right: 10px;
}

.customer-select-list_title::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #5C6573;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}

.customer-select-list_title::after {
    content: '';
    display: inline-block;
    width: 100%;
    height: 1px;
    background: rgba(92, 101, 115, 0.5);
}

.customer-select-list_name {
    font-size: 10px;
    line-height: 15px;
    color: #5C6573;
    padding: 8px 0px;
}

/* End Customer Select */

/* Edit Profile */

.edit-profile {
    height: 566px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.edit-profile-header {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 24px;
}

.edit-profile-title {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.edit-profile-title .user-icon {
    margin-right: 8px;
}

.edit-profile-close {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

/* End Edit Profile */

/* Tab Bar */

.tab-bar-wrapper {
    background: rgba(9, 16, 28, 0.8);
    border-radius: 30px;
    padding: 5px 10px;
    padding-top: 11px;
    max-width: 500px;
    width: 92%;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.tab-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tab-bar-item_icon__wrap {
    width: 24px;
    height: 24px;
}

.tab-bar-item_text {
    font-size: 10px;
    line-height: 15px;
    color: #FFFFFF;
}

.tab-bar-add_wrap {
    position: relative;
}

.tab-bar-add {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #34C759;
    box-shadow: 0px 10px 15px rgba(127, 198, 79, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}

.tab-bar-add_active {
    transform: translateX(-50%) rotate(45deg);
    background: #FF3B30;
}

.tab-bar-add_disable {
    background: #5C6573;
}

.add-content {
    display: none;
    width: 149px;
    height: 191px;
    padding: 18px 16px;
    background: #FFFFFF;
    box-shadow: 0px 10px 20px rgba(92, 101, 115, 0.5);
    border-radius: 12px;
    position: absolute;
    top: -250px;
    left: 50%;
    transform: translateX(-50%);
}

.add-content-active {
    display: block;
}

.add-list-item {
    border-bottom: 1px solid rgba(92, 101, 115, 0.5);
    padding-top: 10px;
    padding-bottom: 10px;
}

.add-list-item:first-child {
    padding-top: 0;
}

.add-list-item:last-child {
    border: none;
    padding-bottom: 0;
}

.add-list-link {
    display: flex;
    align-items: center;
}

.add-list-link_icon {
    margin-right: 8px;
}

.add-list-link_text {
    font-size: 12px;
    line-height: 18px;
    color: #09101C;
}

/* End Tab Bar */

/* Add Recipients */

.add-recipients-header {
    display: flex;
    margin: 0 auto;
    margin-bottom: 24px;
}

.add-recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    border: 1px solid #5C6573;
    border-radius: 50%;
    flex-shrink: 0;
    align-self: center;
    margin-right: 8px;
}

.add-recipient-sender_wrapper {
    margin-right: 16px;
}

.add-recipient-checkbox {
    margin-left: auto;
}

.add-recipient-sender_title {
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.add-recipient-sender_name {
    font-size: 10px;
    line-height: 15px;
    margin-bottom: 5px;
    width: 140px;
    overflow: hidden;
    text-overflow: clip;
    white-space: nowrap;
}

.add-recipient-sender_name__bold {
    font-weight: 600;
}

.add-recipient-sender_email {
    font-size: 10px;
    line-height: 15px;
    width: 140px;
    overflow: hidden;
    text-overflow: clip;
    white-space: nowrap;
}

.add-recipient-sender_email__bold {
    font-weight: 600;
}

.add-recipients-documents__wrapper {
    display: flex;
    margin: 0 auto;
    margin-bottom: 8px;
}

.add-recipients-documents__image {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.add-recipients-documents__image img{
    display: block;
    max-width: 150px;
}

.add-recipients-documents__name {
    display: flex;
    margin-right: 8px;
    max-width: 299px;
}

.add-recipients-documents__icon {
    margin-right: 8px;
    flex-shrink: 0;
}

.add-recipients-documents__icon img {
    width: 30px;
    height: 36px;
}

.add-recipients-documents__text {
    font-size: 12px;
    line-height: 14px;
    overflow: hidden;
    text-overflow: clip;
}

.add-recipients-documents__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: #34C759;
    box-shadow: 0px 10px 15px rgba(127, 198, 79, 0.15);
    border-radius: 50%;
    margin-left: auto;
    flex-shrink: 0;
}

.add-recipients-documents__btn img {
    width: 16px;
    height: 16px;
}

.add-recipients-order_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.add-recipients-order_icon__wrapper {
    display: flex;
    align-items: center;
}

.add-recipients-order_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #5C6573;
    border-radius: 50%;
    flex-shrink: 0;
    align-self: center;
    margin-right: 8px;
}

.add-recipients-order_title {
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;
}

.add-recipient-form_sorting {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 8px;
}

.add-recipient-form_sorting__item-disable {
    display: none;
}

/* End Add Recipients */

/* Document Signed */

.document-signed-section .add-recipient-avatar {
    border: none;
}

.add-recipient-avatar_icon {
    border-radius: 50%;
    object-fit: cover;
}

.creation-date-wrapper {
    margin-left: auto;
}

.creation-date-title {
    font-size: 12px;
    line-height: 18px;
    color: #5C6573;
    margin-bottom: 14px;
}

.creation-date {
    font-size: 12px;
    line-height: 18px;
}

.creation-date-calendar {
    margin-right: 11px;
}

.document-signed-section .add-recipients-documents__name {
    margin-right: 0;
    max-width: 100%;
}

.expirtation-wrapper {
    background: rgba(9, 16, 28, 0.05);
    border-radius: 12px;
    padding: 16px 8px;
    margin-bottom: 24px;
}

.expirtation-title {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 10px;
}

.expirtation-content {
    display: flex;
    align-items: center;
}

.expirtation-content .form-group {
    margin-bottom: 0;
}

.expirtation-content .form-group-date {
    width: 145px;
    margin-right: 18px;
}

.expirtation-content .form-group-date .calendar-icon {
    right: 5px;
}

.expirtation-days-from_wrapper {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.expirtation-days-from_wrapper .form-input {
    width: 60px;
    margin-right: 8px;
}

.expirtation-days-from_text {
    font-size: 12px;
    line-height: 18px;
}

.signed-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 11px;
    border-bottom: 1px solid rgba(92, 101, 115, 0.5);
}

.signed-name {
    font-size: 12px;
    line-height: 18px;
    margin-right: 4px;
}

.signed-email {
    font-size: 14px;
    line-height: 17px;
    color: #5C6573;
    margin-right: 4px;
}

.signed-status {
    flex-shrink: 0;
}

.signed-steps {
    padding-top: 10px;
    display: flex;
    align-items: center;
}

.signed-step-item {
    background: rgba(92, 101, 115, 0.75);
    border-radius: 12px;
    padding: 4px 10px;
    font-size: 10px;
    line-height: 15px;
    color: #fff;
}

.signed-step-arrow {
    width: 4px;
    height: 8px;
    display: flex;
    margin: 0px 8px;
}

.signed-step-item.done{
    background: #34C759;
}

.signed-step-item.declined{
    background: #af1414;
}

.signed-step-item.reason {
    background: none;
    color: #000;
    font-size: 14px;
    padding-top: 4px;
    overflow: hidden;
    height: 15px;
}

.message-recipients-title {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 24px;
}

.message-recipients-text {
    font-size: 12px;
    line-height: 18px;
    color: #5C6573;
}

/* End Document Signed */

/* Access Document */

.access-document-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.access-document-title {
    margin-bottom: 32px;
}

.access-document-text {
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 32px;
}

/* End Access Document */

/* Document Details */

.document-details__tab-bar-wrapper {
    justify-content: space-between;
    padding: 13px 30px;
}

.document-details__tab-bar-add {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 24px;
    height: 24px;
}

.document-details-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
}

.document-details__tab-bar-add_active .document-details-dot {
    background: #34C759;
}

.document-details__tab-bar-wrapper .add-content {
    width: 182px;
    height: auto;
    top: auto;
    left: auto;
    transform: translateX(0);
    right: -32px;
    bottom: 190%;
}

/* End Document Details */

.sp-popup-close {
    display: none;
}

.sp-popup-content {
    margin-top: 0px;
}

.sp-popup-content {
    height: 100%;
    overflow-y: scroll;
}

.sp-popup .sp-popup-box {
    width: 100%;
}

.form_status.fs_red {
    margin-bottom: 20px;
}

/* Open Menu */
.menu-section-wrap {
    top: 0;
    left: -100vw;
    position: fixed;
    z-index: 10000;
    display: flex;
    width: 100%;
}

.menu-section {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
}

.menu-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.menu-header {
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 37px;
}

.menu-logo {
    width: 82px;
    height: 24px;
}

.menu-title {
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    text-transform: uppercase;
}

.menu-close-btn {
    width: 82px;
    height: 24px;
    background-image: url(../img/menu-close.svg);
    background-repeat: no-repeat;
    background-position: center right;
}

.menu-list-wrapper {
    margin-bottom: 68px;
}

.menu-list-item {
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
}

.menu-list-item:first-child {
    padding-top: 0;
}

.menu-list-item:last-child {
    padding-bottom: 0;
}

.menu-list-link {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #09101C;
}

.menu-list-link::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #09101C;
    margin-right: 13px;
    margin-left: 2px;
}

.menu-list-link_active::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #7FC64F;
    margin-right: 10px;
    margin-left: 0;
}

.menu-info-title {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    text-align: center;
    text-transform: uppercase;
    color: #09101C;
    margin-bottom: 16px;
}

.menu-info-content_item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.menu-info-content_item:last-child {
    margin-bottom: 0;
}

.menu-info-content_title {
    display: flex;
    justify-content: flex-end;
    width: 90px;
    margin-right: 8px;
}

.menu-info-content_title span {
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    text-align: right;
}

.menu-info-content_text {
    display: flex;
    align-items: center;
}

.menu-info-content_text span {
    font-weight: 500;
    font-size: 10px;
    line-height: 15px;
    color: #5C6573;
}

.menu-footer {
    margin-top: auto;
    padding-bottom: 20px;
}

.menu-copyright {
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    color: #09101C;
}

.menu-evo-link {
    display: block;
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
}

/* End Open Menu */

/* Profile Menu */

.profile-menu {
    display: none;
    /* width: 196px; */
    width: auto;
    height: 146px;
    padding: 18px 16px;
    background: #FFFFFF;
    box-shadow: 0px 10px 20px rgb(92 101 115 / 50%);
    border-radius: 12px;
    position: absolute;
    top: -180px;
    right: 0;
}

.profile-menu-active {
    display: block;
}

.profile-menu-list_item {
    border-bottom: 1px solid rgba(92, 101, 115, 0.5);
    padding-top: 10px;
    padding-bottom: 10px;
}

.profile-menu-list_item__customer {
    background-image: url(../img/arrow-right-customer.svg);
    background-repeat: no-repeat;
    background-position: right 5px;
    padding-right: 15px;
}

.profile-menu-list_item .add-list-link_text {
    width: 100%;
    height: 24px;
    display: flex;
    align-items: center;
    padding-left: 32px;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 24px 24px;
}

.profile-menu-list_item__edit .add-list-link_text {
    background-image: url(../img/pencil-black-icon.svg);
}

.profile-menu-list_item__customer .add-list-link_text {
    background-image: url(../img/user-check.svg);
}

.profile-menu-list_item__logout .add-list-link_text {
    background-image: url(../img/logout.svg);
}

.profile-menu-list_item:first-child {
    padding-top: 0;
}

.profile-menu-list_item:last-child {
    border: none;
    padding-bottom: 0;
}

/* End Profile Menu */

/* Filters */

.filters-wrapper .edit-profile {
    height: 720px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.filters-header {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 24px;
}

.filters-title {
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    text-transform: uppercase;
    text-align: center;
    padding-left: 26px;
    background-image: url(../img/filter-icon-black.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 22px 22px;
}

.filters-close {
    width: 14px;
    height: 14px;
    background-image: url(../img/clear.svg);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.filters-clear {
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.filters-clear-text {
    font-weight: 400;
    font-size: 12px;
    line-height: 26px;
    text-decoration: underline;
    color: #007AFF;
}

.filters-docs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 21px;
    padding-right: 21px;
    margin-bottom: 16px;
}

.filter-doc-item {
    width: 58px;
    height: 58px;
    margin: 8px;
}

.filter-check-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.filter-check-input+.filter-check-label {
    display: inline-flex;
    user-select: none;
}

.filter-check-input+.filter-check-label::before {
    content: '';
    display: inline-block;
    flex-shrink: 0;
    flex-grow: 0;
    width: 58px;
    height: 58px;
    box-sizing: border-box;
    background-color: #F9F9F9;
    border-radius: 12px;
    border: 1px solid transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 26px 30px;
}

.filter-check-input+.filter-check-label_txt::before {
    background-image: url(../img/txt-26x30.svg);
}

.filter-check-input+.filter-check-label_jpg::before {
    background-image: url(../img/jpg-26x30.svg);
}

.filter-check-input+.filter-check-label_avi::before {
    background-image: url(../img/avi-26x30.svg);
}

.filter-check-input+.filter-check-label_xls::before {
    background-image: url(../img/xls-26x30.svg);
}

.filter-check-input+.filter-check-label_doc::before {
    background-image: url(../img/doc-26x30.svg);
}

.filter-check-input+.filter-check-label_ppt::before {
    background-image: url(../img/ppt-26x30.svg);
}

.filter-check-input+.filter-check-label_pdf::before {
    background-image: url(../img/pdf-26x30.svg);
}

.filter-check-input+.filter-check-label_zip::before {
    background-image: url(../img/zip-26x30.svg);
}

.filter-check-input:checked+.filter-check-label::before {
    border-color: rgba(0, 122, 255, 0.5);
    background-color: rgba(0, 122, 255, 0.1);
}

.filters-form .form-group {
    margin-bottom: 16px;
}

.amount-documents {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.amount-documents span {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #09101C;
}

.amount-documents-number {
    margin-right: 6px;
}

/* End Filters */

/* Log Out */

.logout-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
}

.logout-wrapper .edit-profile {
    width: auto;
    height: auto;
    padding: 24px;
    border: 1px solid rgba(92, 101, 115, 0.5);
    box-shadow: 0px 10px 15px rgba(92, 101, 115, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.logout-title {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #09101C;
    margin-bottom: 32px;
}

/* End Log Out */

/* Add File */

.add-file-container {
    padding-right: 8px;
}

.add-file-wrapper {
    top: 72px;
}

.add-file-list_wrapper {
    height: calc(100vh - 220px);
    overflow-y: scroll;
    overflow-x: hidden;
    background: transparent;
    padding-right: 10px;
    margin-bottom: 40px;
}

.add-file-header {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 24px;
}

.add-file-title {
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    text-transform: uppercase;
    text-align: center;
    padding-left: 26px;
    background-image: url(../img/add-file.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 24px 24px;
}

.add-file-close {
    width: 14px;
    height: 14px;
    background-image: url(../img/clear.svg);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.add-file-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    height: 40px;
}

.add-file-check {
    width: 25px !important;
    flex-shrink: 0;
    margin-right: 16px;
    margin-bottom: 0 !important;
}

.add-file-name_wrapper {
    display: flex;
    align-items: center;
}

.add-file-icon {
    width: 21px;
    height: 24px;
    margin-right: 8px;
}

.add-file-name {
    font-size: 12px;
    line-height: 16px;
    overflow: hidden;
    text-overflow: clip;
    white-space: nowrap;
    width: 70vw;
}

/* End Add File */

/* Search Account */
.search-account-title {
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    text-transform: uppercase;
    text-align: center;
}

.search-account-list_wrapper {
    height: 350px;
    overflow-y: scroll;
    overflow-x: hidden;
    background: transparent;
    padding-right: 10px;
}

.search-account-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    height: 40px;
    border-radius: 10px;
    background-color: #fff;
    padding: 0px 8px;
}

.search-account-item_active {
    background-color: #34C759;
}

.search-account-text {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #09101C;
    width: 140px;
    overflow: hidden;
    text-overflow: clip;
    white-space: nowrap;
}

.search-account-item_active .search-account-text {
    color: #fff;
}

.search-account-name {
    margin-right: 16px;
}

.search-account-mail {
    width: 172px;
    padding-left: 32px;
    background-color: transparent;
    background-image: url(../img/email-grey.svg);
    background-repeat: no-repeat;
    background-position: left center;
    color: #5C6573;
}

.search-account-item_active .search-account-mail {
    background-image: url(../img/email-white.svg);
}

/* End Search Account */

/* Sharing Implementation */

.sharing-list-item .customer-select-list_title {
    margin-bottom: 16px;
}

.form-group-check_sharing {
    margin-bottom: 10px;
    width: auto;
    height: 25px;
}

.form-group-check_sharing__all {
    margin-bottom: 22px;
}

.form-group-check_sharing__all .form-check-label {
    font-weight: 600;
}

.sharing-list-item_disable {
    opacity: 0.25;
}

/* End Sharing Implementation */

.search-block {
    display: none;
    align-items: center;
    padding: 5px 10px;
    background: #09101C;
    opacity: 0.3;
    border-radius: 12px;
    margin-bottom: 10px;
    margin-left: 15px;
    max-width: 93%;
}

.search-block.active {
    display: inline-flex;
}

.search-text-in-block {
    color: white;
    font-size: 14px;
    font-weight: 200;
}

.close-block-search {
    margin-left: 10px;
    width: 12px;
    height: 12px;
    background: url("../img/close-block-search.svg") no-repeat;
    background-size: cover;
}

.hide-letter, .customer-select-list_name.hide {
    display: none;
}

.customer-abc-letter.active {
    background: #3E6AAB;
    color: #fff;
    border-radius: 8px;
}

.customer-select-list_name.active {
    background: #C8DCFB;
    padding-left: 10px;
    border-radius: 5px;
}

.no_documents_message {
    text-align: center;
}

.sp-popup main {
    padding-bottom: 10px;
}
