/* TOP MENU */
#top-menu {
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 8001;
}
#top-menu .top-menu-left {
    display: flex;
    align-items: center;
}
#top-menu .top-menu-left-block {
    margin-right: 10px;
}
.top-menu-notification-block {
    position: absolute;
    top: 70px;
    right: -400px;
    width: 300px;
    min-height: 100px;
    z-index: 1;
    border: 1px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    transition: all .3s ease-in;
}
.top-menu-notification-block.active {
    right: 20px;
}
.close-notification-block-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 3px;
}
.close-notification-block-btn svg {
    width: 100%;
    height: 100%;
}
.top-menu-notification-block .notification-section-title {
    padding: 10px;
    display: block;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;  
}
.top-menu-notification-block .notification-section-block-date {

}
.top-menu-notification-block .notification-section-block-date p {
    font-size: 10px;
}
.notification-sections .notifications {
    display: flex;
    flex-direction: column;
    padding: 10px;
}
.notification-section-block {
    margin-bottom: 5px;
    background: #20283d;
    padding: 8px;
    padding-right: 10px;
    border-radius: 5px;
    position: relative;
}
.notification-section-block .notification-section-block-message {
    font-size: 12px;
    margin-top: 2px;
}
#top-menu .top-menu-right-block .top-menu-btn, 
.mode-button {
    margin-left: 10px;
    overflow: hidden;
}
#top-menu .top-menu-left-block,
#top-menu .top-menu-left-block .top-menu-btn a,
#top-menu .top-menu-left-block .top-menu-btn span,
#top-menu .top-menu-right-block,
#top-menu .top-menu-right-block .top-menu-btn a,
#top-menu .top-menu-right-block .top-menu-btn .mode-button {
    display: flex;
    justify-content: center;
    align-items: center;
}
#top-menu .top-menu-left-block .top-menu-btn a,
#top-menu .top-menu-left-block .top-menu-btn span,
#top-menu .top-menu-right-block .top-menu-btn a,
#top-menu .top-menu-right-block .top-menu-btn .mode-button,
#top-menu .top-menu-right-block .profile-btn,
#top-menu .top-menu-right-block .notification-btn {
    width: 36px;
    height: 36px;
    overflow: hidden;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
}
#top-menu .top-menu-right-block .profile-btn,
#top-menu .top-menu-right-block .notification-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}
#top-menu .top-menu-right-block .notification-btn {
    overflow: visible;
}

@keyframes noticicationAnimation {
    0% {
        box-shadow: 0px 0px 0px rgb(219 36 36);
    }
    25% {
        box-shadow: 0px 0px 10px rgb(219 36 36);
    }
    50% {
        box-shadow: 0px 0px 0px rgb(219 36 36);
    }
    75% {
        box-shadow: 0px 0px 10px rgb(219 36 36);
    }
    100% {
        box-shadow: 0px 0px 0px rgb(219 36 36);
    }
}
.notification-detector {
    position: absolute;
    top: 0;
    right: 0;
    background: #db2424;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transition: all .3s ease-in;
    box-shadow: 0px 0px 10px rgb(219 36 36);
    animation: noticicationAnimation 2s infinite ease-in-out;
}
.delete-notification {
    position: absolute;
    top: 5px;
    right: 5px;
}
.delete-notification a {
    width: 15px;
    height: 15px;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#top-menu .top-menu-right-block .profile-btn p {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
}
#top-menu .top-menu-profile-block-wrapper {
    display: flex;
    justify-content: start;
    align-items: center;
}
#top-menu .top-menu-profile-block-icon {
    width: 25%;
    margin-right: 10px;
}
#top-menu .top-menu-profile-block-icon p {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    overflow: hidden;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
}
#top-menu .top-menu-profile-block-name p {
    font-weight: bold;
}
#top-menu .top-menu-profile-block-email {
    margin-top: 10px;
    
}
#top-menu .top-menu-profile-block-email p {
    font-size: 13px;
}
#top-menu .top-menu-profile-block {
    position: fixed;
    top: 70px;
    right: -200px;
    width: 200px;
    height: 185px;
    border-radius: 10px;
    border: 1px solid transparent;
    padding: 10px;
    z-index: 100;
    transition: all .3s ease-in;
}
#top-menu .top-menu-profile-block.active {
    right: 20px;
}
#top-menu .top-menu-profile-block-navigation {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
}
#top-menu .top-menu-profile-block-navigation a {
    display: flex;
    align-items: center;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 5px;
}
#top-menu .top-menu-profile-block-navigation a svg {
    width: 16px;
}
#top-menu .top-menu-profile-block-navigation a p {
    margin-left: 5px;
    font-size: 12px;
}
#top-menu .top-menu-left-block .top-menu-btn a svg,
#top-menu .top-menu-right-block .top-menu-btn a svg,
#top-menu .top-menu-right-block .top-menu-btn .mode-button img {
    width: 18px;
}
#top-menu .top-menu-right-block .top-menu-btn img {
    width: 100%;
}
#top-menu .top-menu-left-block:first-child {
    width: 240px;
    height: 100%;
    margin-right: 20px;
}
/* LEFT MENU */
#left-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100%;
    border-right: 1px solid transparent;
    flex-direction: column;
    z-index: 8000;
}
body.left-menu-hidden #left-menu {
    left: 0px;
    width: 50px;
}
body.left-menu-hidden #left-menu .left-menu-navigation {
    padding: 5px;
}
body.left-menu-hidden #left-menu .left-menu-navigation a {
    justify-content: center;
    height: 40px;
    width: 40px;
    padding: 5px;
}
body.left-menu-hidden #left-menu .left-menu-navigation a svg {
    width: 20px;
    height: 20px;
    margin: 0;
}
body.left-menu-hidden #left-menu .left-menu-navigation a p,
body.left-menu-hidden #left-menu .left-menu-title span {
    display: none;
}
body.left-menu-hidden #left-menu .left-menu-block {
    padding: 0;
}
#left-menu .left-menu-block {
    border-bottom: 1px solid #f1f1f1;
}

#left-menu .left-menu-title {
    padding: 15px 20px;
    margin-bottom: 15px; 
}
#left-menu .left-menu-title span {
    font-weight: 800;
    text-transform: uppercase;
}
#left-menu .left-menu-navigation {
    margin-bottom: 10px;
}
#left-menu .left-menu-navigation:last-child {
    margin-bottom: 0    ;
}
#left-menu .left-menu-navigation a {
    position: relative;
    padding: 8px;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    border-radius: 5px;
}
#left-menu .left-menu-navigation a svg {
    margin-right: 10px;
    width: 18px;
}
#left-menu .left-menu-navigation a p {
    font-size: 14px;
    font-weight: 500;
}
/* CONTENT */
#content {
    /* margin-top: 65px; */
    margin-left: 260px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    min-height: 100vh;
}
body.left-menu-hidden #content {
    margin-left: 60px;
}
#content .section-content-top {
    padding-top: 65px;
}
#content .content-top {
    height: 50px;
    margin-bottom: 30px;
    display: flex;
    align-items: end;
    justify-content: space-between;
}
#content .content-top .content-top-action-btns {
    display: flex;
}
#content .content-top .content-top-action-btns .add-button {
    margin-right: 10px;
}
#content .content-top .content-top-action-btns .add-button:last-child {
    margin-right: 0;
}
#content .content-bottom {
    margin-top: 30px;
}
#content .content-top-left {
    width: 50%;
}
#content .content-top-right {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: right;
}
#content .content-top-title {
    display: flex;
    align-items: center;
}
#content .content-top-title h3,
#content .content-top-title span,
#content .content-top-title a,
#content .content-top-title p {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
}
#content .content-top-title span {
    margin-left: 5px;
    margin-right: 5px;
}
#content .content-top-search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 10px;
}
#content .content-top-search input {
    display: flex;
    border: 1px solid transparent;
    padding: 8px 15px;
    width: 200px;
    border-radius: 5px; 
    margin-right: 5px;
}
#content .content-top-search button {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    height: 36px;
    width: 36px;
    color: #fff;
    border-radius: 5px;
    border: 1px solid transparent;
    transition: all .3s ease-in;
}
#content .content-top-search button svg {
    width: 22px;
}
#content .content-form {
    max-width: 100%;
    width: 100%;
    padding: 20px;
    border: 1px solid transparent;
    border-radius: 10px;
}
#content .content-form-wrapper {
    display: flex;
    justify-content: space-between;
}
#content .available-tags,
#content .available-project-tags {
    display: flex;
    flex-wrap: wrap;
}
#content .available-tags .tag-field,
#content .available-project-tags .tag-field {
    margin-right: 20px;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
}
#content .available-tags .tag-field svg {
    width: 100%;
}


#content .available-tags .tag-field .tag-field-icon,
#content .available-project-tags .tag-field .tag-field-icon {
    display: none;
    border-radius: 50px;
    background: #fff;
    position: absolute;
    top: -5px;
    width: 18px;
    height: 18px;
    right: -10px;
    justify-content: center;
    align-items: center;
}
#content .available-tags .tag-field input,
#content .available-project-tags .tag-field input {
    display: none;
}
#content .available-tags .tag-field svg path,
#content .available-project-tags .tag-field svg path:last-child {
    fill: rgb(60, 212, 78);
}
#content .available-tags .tag-field.selected .tag-field-icon,
#content .available-project-tags .tag-field.selected .tag-field-icon {
    display: flex;
}
#content .content-form form {
    display: flex;
    flex-direction: column;
    width: 100%;
}
#content .content-form-left {
    width: 50%;
}
#content .content-form-right {
    width: 50%;
    margin-left: 20px;
}
#content .input-field-button {
    margin-top: 40px;
}
#content .content-form .input-field {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}
#content .live-preview {
    padding: 20px 0px;
    display: flex;
    flex-direction: column;
}
#content .live-preview span {
    font-weight: bold;
    text-transform: uppercase;
    margin-right: 10px;
}
#content .live-preview p {
    margin-top: 10px;
}
#content .live-preview #tag {
    color: #fff;
    background: #000;
}
#content .content-form .form-title {
    margin-bottom: 15px;
}
#content .content-form .form-title h3 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
}
#content .content-form .input-wrapper-column {
    display: flex;
    flex-direction: column;
}
#content .content-form .input-field:last-child {
    margin-bottom: 0;
}
.content-form .input-field label {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 5px;
}
.content-form .input-field input,
.content-form .input-field textarea,
.content-form .input-field select,
.content-form .input-field .fake-input {
    padding: 8px 15px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 14px;
}
#content .content-form .input-field textarea {
    max-width: 100%;
    min-width: 100%;
    max-height: 250px;
    min-height: 150px;
}
#content .content-form .input-field .fake-input {
    cursor: no-drop;
}
#content .content-form .input-field input[type=color] {
    height: 40px;
    padding: 2px;
    cursor: pointer;
    width: 100%;
    border-radius: 0;
}
#content .content-form .input-field-wrapper-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
#content .content-form .input-field-wrapper-2 .input-field {
    width: 50%;
    margin-bottom: 0;
    margin-right: 10px;
}
#content .content-form .input-field-wrapper-2 .input-field:last-child {
    margin-right: 0;
}
#content .content-form .input-field button {
    max-width: 200px;
    width: 100%;

    border: none;
    text-transform: uppercase;
    text-align: center;
    justify-content: center;
    cursor: pointer;
}
#content .table {
    display: flex;
    border-radius: 10px;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid transparent;
}
#content .table .table-head,
#content .table .table-item {
    display: flex;
    align-items: center;
    padding: 20px;
}

#content .table .table-head p span {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
}
#content .table-item-actions {
    display: flex;
    justify-content: end;
}
#content .table-item-actions a {
    width: 30px;
    height: 30px;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-right: 10px;
}
#content .table-item-actions a:last-child {
    margin-right: 0;
}
#content .table-item-actions a svg {
    width: 18px;
}
.block-no-content {
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid transparent;
}
.switches-button {
    margin-right: 10px;
    height: 36px;
    width: 36px;
}
.switches-button:last-child {
    margin-right: 0;
}
.switches-button a,
.switches-button span {
    padding: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid transparent;
}
.switches-button .btn-icon {
    margin: 0;
}
.switches-button .btn-icon svg {
    width: 20px;
    height: 20px;
}
/* FORM */
.form-subtitle {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.content-right-popup {
    position: fixed;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0, 0.7);
    z-index: 9000;
}
.content-right-popup-form {
    position: absolute;
    top: 0;
    right: 0px; 
    border-left: 1px solid transparent;
    width: 400px;
    height: 100%;
    padding: 20px;
    overflow-y: scroll;
    
}
.content-right-popup-form-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dashed transparent;
}
.content-right-popup-form-top .form-title h1 {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}
.content-right-popup-close {
    border: 1px solid transparent;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}
.form-close-icon {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content-right-popup-close svg {
    opacity: .5;
}
.inner-input-field-wrapper {
    display: flex;
}

/* Archive agreement-blocks */
.archive {
    display: flex;
    flex-wrap: wrap;
}
.archive .agreement-block,
.archive .member-block {
    min-width: 350px;
    max-width: 350px;
    padding: 20px;
    border-radius: 10px;
    margin-right: 20px;
    margin-bottom: 20px;
    border: 1px solid transparent;
}
.archive .agreement-block .created-date {
    display: flex;
    align-items: center;
}
.archive .agreement-block .created-date svg {
    margin-right: 5px;
}
.archive .agreement-block .created-date p {
    font-size: 12px;
}
.archive .agreement-category {
    margin-top: 10px;
}
.archive .agreement-category p {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
}
.archive .agreement-category p span {
    margin-left: 5px;
}
.archive .tab-content-agreement-block-priority span {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    display: flex;
    align-items: center;
}
.archive .agreement-inner-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.archive .agreement-price {
    display: flex;
    align-items: center;
    margin-top: 3px;
    margin-bottom: 10px;
}
.archive .agreement-price svg {
    margin-right: 5px;
}
.archive .agreement-price p {
    font-size: 12px;
}
.archive .agreement-middle {
    margin-top: 10px;
}
.archive .agreement-comment p {
    font-size: 12px;
}
.archive .agreement-bottom {
    border-top: 1px dashed transparent;
    margin-top: 10px;
    padding-top: 10px;
}
.archive .agreement-client {
    margin-top: 10px;
}
.archive .agreement-client p {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}
.archive .agreement-client a {
    margin-left: 5px;
}
.archive .agreement-client a svg {
    width: 14px;
    height: 14px;
}
/* ARCHIVE MEMBERS */
.archive .member-block-full-name {
    margin-bottom: 10px;
}
.archive .member-block-full-name h3 {
    font-size: 20px;
}
.archive .member-block-full-name p {
    font-size: 12px;
    text-transform: uppercase;
}
.archive .body-block-phone,
.archive .body-block-email {
    display: flex;
    align-items: center;
}
.archive .body-block-phone svg,
.archive .body-block-email svg {
    margin-right: 5px;
}
.archive .member-bottom {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed transparent
}