/* TOP MENU */
#top-menu {
    height: 50px;
    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;
}
.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;
}
.menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 100%;
    width: 28px;
    height: 28px;
    cursor: pointer;
}
.menu-btn svg {
    width: 60%;
    height: 60%;
    opacity: .5;
    transition: all .5s ease-in;
}
.menu-btn:hover svg {
    opacity: 1;
}
.delete-notification a {
    width: 15px;
    height: 15px;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#top-menu .top-menu-right-block {
    display: flex;
}
#top-menu .top-menu-right-block .menu-btn {
    margin-right: 5px;
}
#top-menu .profile-btn {
    margin-right: 0 !important;
}
#top-menu .top-menu-left-block:first-child {
    width: 200px;
    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;
    height: 50px;
}

#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;
    padding-top: 50px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    min-height: 100vh;
}
body.left-menu-hidden #content {
    margin-left: 50px;
}
#content .section-content-top {
    padding-top: 15px;
}
.content-top {
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid transparent;
}
#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: 100%;
    display: flex;
    align-items: center;
}
#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: 15px;
    text-transform: uppercase;
    font-weight: 500;
}
#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-middle {
    margin-top: 30px;
}
#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 {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 5px;
}
.content-form .input-field label p,
.content-form .input-field label {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
}
.content-form .input-field-message {
    text-transform: uppercase;
    color: #ee4343;
    font-size: 12px;
    font-weight: bold;
}
.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;
}
.table {
    display: flex;
    border-radius: 10px;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid transparent;
}
.table .table-head,
.table .table-item {
    align-items: center;
    padding: 20px;
}
.table-head {
    border-bottom: 1px solid transparent;
}
.table .actions-head, .table .actions-body {
    display: flex;
    justify-content: end;
}
.actions-body a,
.actions-body button {
    width: 30px;
    height: 30px;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-right: 10px;
    opacity: .5;
    transition: all .4s ease-in;
    cursor: pointer;
}
.actions-body a:hover,
.actions-body button:hover {
    opacity: 1;
    transition: all .4s ease-in;
}
.actions-body a svg,
.actions-body button svg {
    width: 60%;
    height: 60%;
}
.table .table-head p {
    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
}
.table-head {
    display: grid;
    width: 100%;
    padding: 10px;
}
.table-body {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.table-item {
    display: grid;
    padding: 10px;
    border-bottom: 1px solid transparent;
}
.table-item:last-child {
    border-bottom: 0;
}