/* General */

html {
    box-sizing: border-box;
    font-family: "Fustat";
  }
  
  body {
    background-color: #f6f6f6;
    margin: 0;
    font-family: "Fustat";
    color: #141414;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: inherit;
    transition: all 0.3s ease;
  }
  .container {
    max-width: 1920px;
    padding: 0px 40px;
    margin: auto;
    position: relative;
    font-family: "Fustat";
  }
  
  a {
    color: #2d5eee;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p {
    margin: 0;
  }
  
  h1 {
    font-weight: 700;
    font-size: 24px;
    color: #363d4d;
  }
  h2 {
    font-weight: 700;
    font-size: 22px;
    color: #363d4d;
  }
  
  h3 {
    font-weight: 700;
    font-size: 20px;
    color: #363d4d;
  }
  h5 {
    font-weight: 700;
    font-size: 15px;
    color: #363d4d;
  }
  
  p {
    font-weight: 400;
    font-size: 14px;
    color: #6f6f73;
  }
  ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .mobile-item {
    display: none !important;
  }
  .text-center {
    text-align: center;
  }
  
  .white-box-shadow {
    border-radius: var(--border-radius-block, 16px);
    border: 1px solid var(--block-border, #eee);
    background: var(--white, #fff);
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
    padding: var(--padding-top-bottom, 40px) var(--padding-left-right, 56px);
    width: 100%;
    margin-top: 32px;
  }
  /* General END*/
  
  /* Header */
  header {
    height: 80px;
    background-color: #363d4d;
    width: 100%;
    margin-bottom: 48px;
  }
  
  .header-wrap {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 68px;
    height: 80px;
  }
  
  header .container {
    max-width: 100%;
  }
  .main-menu {
    display: flex;
    align-items: center;
    gap: 50px;
  }
  .main-menu li a {
    font-weight: 700;
    font-style: Bold;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    position: relative;
  }
  .main-menu li a:before {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    bottom: -6px;
    transition: all 0.3s ease;
    opacity: 0;
  }
  
  .main-menu li:hover a:before,
  .main-menu li.active-menu a:before {
    opacity: 1;
  }
  
  .header-account-wrap {
    margin-left: auto;
    display: flex;
    align-items: center;
    align-content: center;
    gap: 16px;
  }
  
  .header-wrap .account-menu {
    display: none;
    position: absolute;
    z-index: 9999;
    padding-top: 30px;
    top: 40px;
  }
  
  .header-wrap .account-menu .sub-menu-wrap {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 5px 15px 0px #0000000d;
    padding: 20px 24px;
  }
  
  .header-wrap .notication-icon {
    width: 48px;
    height: 48px;
    background-color: #444b5b;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(/assets/icons/bell-white.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    position: relative;
  }
  
  .header-wrap .notification-count {
    font-weight: 800;
    font-size: 11px;
    line-height: 100%;
    text-transform: uppercase;
    background-color: #eb3831;
    color: #fff;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    position: absolute;
    top: -4px;
    right: -4px;
  }
  
  .header-wrap .account-icon {
    width: 48px;
    height: 48px;
    background-color: #444b5b;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(/assets/icons/login.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    position: relative;
  }
  .header-account {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
  }
  .header-account-name {
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .header-account-name:after {
    content: "";
    background-image: url(/assets/icons/arrow.icon.svg);
    width: 10px;
    height: 10px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    position: relative;
    display: block;
  }
  
  .header-account:hover .account-menu {
    display: block;
  }
  
  .account-menu ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .account-menu ul a {
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    vertical-align: middle;
    color: #141414;
    text-decoration: none;
  }
  
  .account-menu ul a:hover {
    color: #2d5eee;
  }
  
  .account-menu .menu-icon {
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    display: block;
  }
  
  .account-menu ul li {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .info-icon {
    background-image: url(/assets/icons/UserCircle.svg);
  }
  .settings-icon {
    background-image: url(/assets/icons/SlidersHorizontal.svg);
  }
  .payments-icon {
    background-image: url(/assets/icons/Files-grey.svg);
  }
  .logout-icon {
    background-image: url(/assets/icons/SignOut.svg);
  }
  
  /* Header END*/
  
  /* Footer */
  .history-back-btn {
    width: 40px;
    height: 40px;
    background-color: #363d4d38;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  footer {
    position: fixed;
    bottom: 40px;
  }
  /* Footer END*/
  
  /* Inputs */
  .agree {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #141414;
    font-size: 14px;
    margin-top: 23px;
    margin-bottom: 16px;
  }
  
  .agree a {
    color: #2d5eee;
    text-decoration: underline;
  }
  .agree label {
    cursor: pointer;
  }
  
  /* checkbox base */
  .agree input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid #e1e1e1;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all 0.2s ease;
    flex: 0 0 auto;
    margin: 0;
  }
  
  .agree input[type="checkbox"]::before {
    content: "";
    width: 100%;
    height: 100%;
    background: url(/assets/icons/checkmark.svg) center / 8px no-repeat;
    opacity: 0;
  }
  .agree input[type="checkbox"]:checked::before {
    opacity: 1;
  }
  
  .agree input[type="checkbox"]:checked {
    background: #2d5eee;
    border-color: #2d5eee;
  }
  
  .agree input[type="checkbox"]:checked::before {
    opacity: 1;
  }
  
  .agree input[type="checkbox"]:focus-visible {
    outline: 4px solid rgba(47, 91, 255, 0.25);
    outline-offset: 4px;
  }
  
  .input-wrap.error input {
    border-color: #eb3831 !important;
  }
  
  .input-wrap.error label {
    color: #eb3831 !important;
  }
  .error-message {
    display: block;
    color: #eb3831;
    margin-top: 5px;
    font-weight: 700;
    font-size: 12px;
    padding-left: 10px;
  }
  
  /* Optional: Add some transition for smooth color change */
  .input-wrap input {
    transition: border-color 0.3s ease;
  }
  
  /* Inputs  END*/
  
  /* Buttons */
  form input[type="submit"] {
    font-family: "Fustat";
    background-color: #2d5eee;
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    line-height: 44px;
    text-transform: uppercase;
    width: 100%;
    padding: 0px 20px;
    border: 2px solid #2d5eee;
    box-shadow: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  form input[type="submit"]:hover {
    background-color: #fff;
    color: #2d5eee;
    border: 2px solid #2d5eee;
  }
  
  .blue-btn {
    font-family: "Fustat";
    background-color: #2d5eee;
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    line-height: 44px;
    text-transform: uppercase;
    width: fit-content;
    padding: 0px 32px;
    border: 1px solid #2d5eee;
    box-shadow: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
  }
  .blue-btn:hover {
    background-color: #fff;
    color: #2d5eee;
    border: 1px solid #2d5eee;
  }
  
  .red-btn {
    font-family: "Fustat";
    background-color: #eb3831;
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    line-height: 44px;
    text-transform: uppercase;
    width: fit-content;
    padding: 0px 32px;
    border: 2px solid #eb3831;
    box-shadow: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
  }
  .red-btn:hover {
    background-color: #fff;
    color: #eb3831;
    border: 2px solid #eb3831;
  }
  
  .black-border-btn {
    font-family: "Fustat";
    background-color: #ffffff00;
    color: #363d4d;
    font-weight: 800;
    font-size: 13px;
    line-height: 44px;
    text-transform: uppercase;
    width: fit-content;
    padding: 0px 32px;
    border: 1px solid #363d4d;
    box-shadow: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
  }
  .black-border-btn:hover {
    background-color: #363d4d;
    color: #fff;
    border: 1px solid #363d4d;
  }
  
  .blue-border-btn {
    font-family: "Fustat";
    background-color: #fff;
    color: #363d4d;
    font-weight: 800;
    font-size: 13px;
    line-height: 44px;
    text-transform: uppercase;
    width: fit-content;
    padding: 0px 32px;
    border: 1px solid #2d5eee;
    box-shadow: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
  }
  .blue-border-btn:hover {
    background-color: #2d5eee;
    color: #fff;
    border: 1px solid #2d5eee;
  }
  
  /* Buttons  END*/
  
  /* Select */
  
  body .select2-container .select2-selection--single {
    height: 48px;
    border: 1px solid #e1e1e1;
    border-radius: 8px 0 0 8px;
    display: flex;
    align-items: center;
  }
  
  body
    .select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    line-height: 48px;
    padding-left: 21px;
    padding-right: 40px;
    font-size: 14px;
    color: #363d4d;
  }
  
  body
    .select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    height: 48px;
  }
  
  body .select2-selection__arrow b {
    display: none;
  }
  
  body .select2-dropdown {
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.12);
    overflow: hidden;
  }
  
  body .select2-results__option {
    padding: 15px 12px;
    font-size: 14px;
    color: #363d4d;
    padding-left: 21px;
  }
  body .select2-results__option:hover {
    background-color: #2d5dee1a;
  }
  
  body .select2-container--default .select2-results__option--selected {
    background-color: #2d5dee1a;
  }
  body .select2-selection__arrow {
    width: 20px;
    height: 100%;
    position: absolute;
    right: 21px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  body
    .select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    right: 15px;
  }
  
  body
    .select2-container--default
    .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #2d5dee1a;
    color: #363d4d;
  }
  body .select2-selection__arrow::after {
    content: "";
    width: 10px;
    height: 10px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.2s ease;
    background-image: url(/assets/icons/select-arrow.svg);
  }
  
  body .select2-container--open .select2-selection__arrow::after {
    transform: rotate(180deg);
  }
  
  body .select2-results__options {
    scrollbar-width: thin;
    scrollbar-color: #c6cbd4 transparent;
  }
  
  body .select2-results__options::-webkit-scrollbar {
    width: 4px;
  }
  
  body .select2-results__options::-webkit-scrollbar-track {
    background: transparent;
  }
  
  body .select2-results__options::-webkit-scrollbar-thumb {
    background-color: #c6cbd4;
    border-radius: 999px;
  }
  
  body .select2-results__options::-webkit-scrollbar-thumb:hover {
    background-color: #aeb4bf;
  }
  
  body .select2-container--focus .select2-selection--single {
    border-color: #2d5eee;
  }
  
  /* Open (clicked) */
  body .select2-container--open .select2-selection--single {
    border-color: #2d5eee;
  }
  body .select2-dropdown {
    border: 1px solid #d0d5dd; /* default */
  }
  
  body .select2-container--open .select2-dropdown {
    border-color: #2d5eee;
  }
  
  /*  Select  END*/
  
  /* HOMAPAGE*/
  
  .home-blocks {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    width: 100%;
    margin-bottom: 48px;
  }
  
  .home-blocks .home-block {
    padding: 24px 40px;
    border-radius: 16px;
    background-color: #fff;
    border: 1px solid #eeeeee;
    box-shadow: 0px 5px 15px 0px #0000000d;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
    text-decoration: none;
  }
  
  .home-blocks .home-block .item-counter {
    width: 64px;
    height: 64px;
    border-radius: 100%;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
  }
  
  .home-blocks .home-block.properties .item-counter {
    color: #2d5eee;
    background-color: #2d5dee28;
  }
  .home-blocks .home-block.invitations .item-counter {
    color: #27c96a;
    background-color: #27c96a21;
  }
  
  .home-blocks .home-block.unpaid .item-counter {
    color: #eb3831;
    background-color: #eb37312d;
  }
  
  .add-property {
    width: 48px;
    height: 48px;
    background-color: rgba(45, 94, 238, 1);
    border-radius: 8px;
    background-image: url(/assets/icons/button-plus.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px 14px;
    border: 2px solid #2d5eee;
    display: block;
  }
  .home-blocks .add-property {
    margin-left: auto;
  }
  .add-property:hover {
    background-color: #ffffff;
    background-image: url(/assets/icons/blue-plus.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px 14px;
  }
  .home-liked-block {
    padding: 24px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #eeeeee;
    box-shadow: 0px 5px 15px 0px #0000000d;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
  }
  
  .liked-block-icon {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    background-color: #2d5dee28;
  }
  
  .home-liked-block .block-name-wrap p {
    display: flex;
    align-items: center;
    margin-top: 5px;
  }
  
  .home-liked-block .block-name-wrap p img {
    margin-right: 10px;
  }
  
  .home-liked-block .block-name-wrap p .notifications-count {
    margin-left: 2px;
    font-weight: 800;
  }
  
  .home-liked-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    margin-top: 32px;
  }
  
  .home-liked-blocks .home-liked-block {
    text-decoration: none;
  }
  
  .warning-block {
    position: absolute;
    top: 16px;
    right: 16px;
  }
  
  .message-count {
    margin-left: 16px;
    font-weight: 800;
    font-size: 12px;
    text-align: center;
    vertical-align: middle;
    color: #fff;
    width: 42px;
    height: 25px;
    border-radius: 10px;
    background-color: #2d5eee;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .messages-section h1 {
    display: flex;
    align-items: center;
  }
  
  .messages-list {
    padding: 40px 56px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #eeeeee;
    box-shadow: 0px 5px 15px 0px #0000000d;
    display: flex;
    margin-top: 16px;
    flex-direction: column;
  }
  
  .messages-list .message-block {
    padding: 16px 0px;
    display: flex;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid #e1e1e1;
  }
  
  .messages-list .message-block .blue-btn {
    width: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
  }
  
  .messages-list .message-block .message-date {
    margin-left: auto;
    margin-right: 56px;
  }
  .messages-list .message-block:last-child {
    border-bottom: none;
  }
  
  body .messages-filter .select2-container .select2-selection--single {
    height: 48px;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    width: 216px;
  }
  
  .messages-filter {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 36px;
  }
  
  .unseen .message-icon img {
    filter: brightness(0) saturate(100%) invert(79%) sepia(46%) saturate(3253%)
      hue-rotate(331deg) brightness(101%) contrast(101%);
  }
  
  /* HOMAPAGE END*/
  
  /* Registraion page  */
  
  .or-seperator {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .or-seperator:before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #e1e1e1;
    position: absolute;
    z-index: 1;
  }
  
  .or-seperator span {
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    vertical-align: middle;
    background-color: #fff;
    color: #6f6f73;
    z-index: 2;
    padding: 0px 10px;
  }
  
  .social-logins-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    justify-content: center;
    width: 100%;
  }
  
  .social-logins-wrapper a.social-login {
    color: #363d4d;
    font-weight: 800;
    font-size: 13px;
    line-height: 46px;
    text-transform: uppercase;
    width: 100%;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    text-decoration: none;
  }
  
  .has-account {
    color: #141414;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    text-align: center;
    width: 100%;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
  }
  .recovery-sended h2 {
    font-weight: 600;
    font-size: 22px;
    line-height: 32px;
    text-align: center;
    color: #363d4d;
    margin-bottom: 10px;
    margin-top: 24px;
  }
  .recovery-sended p {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    text-align: center;
    color: #6f6f73;
    margin: 0;
  }
  
  .login-reg-wrapper.recovery-sended {
    gap: 0;
    display: flex;
    align-items: center;
    padding: 40px 56px;
  }
  /* Registraion page END */
  
  /* VERIFICATION PAGE */
  .verification-section h1 {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #363d4d;
    margin-bottom: 32px;
  }
  
  .verification-section {
    margin-top: 48px;
  }
  
  .verification-section .verification-item {
    box-shadow: 0px 5px 15px 0px #0000000d;
    border: 1px solid #eeeeee;
    padding: 22px 56px;
    background-color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 24px;
  }
  
  .verification-section .verification-item .blue-btn {
    margin-left: auto;
  }
  
  .verification-section .verification-item h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    color: #363d4d;
    margin-bottom: 4px;
  }
  
  .verification-section .verification-item p {
    font-weight: 400;
    font-size: 14px;
    color: #6f6f73;
  }
  
  .verification-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .phone-ver-title {
    width: 100%;
    text-align: center;
  }
  
  .phone-wrap {
    display: flex;
    width: 100%;
  }
  
  .phone-ver .phone-input {
    border-radius: 0px 10px 10px 0px;
    margin-left: -1px;
  }
  
  .phone-ver .phone-input:focus {
    z-index: 10;
  }
  
  .resend-pin-box {
    font-weight: 400;
    font-size: 14px;
    color: #363d4d;
    margin: auto;
    display: block;
  }
  .pin-code {
    gap: 16px;
  }
  
  .pin-code p {
    margin: auto;
    display: flex;
  }
  
  .pin-inputs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
  }
  
  .pin-input {
    width: 48px;
    height: 48px;
    text-align: center;
    border: none;
    border-bottom: 2px solid #e1e1e1;
    background: transparent;
    outline: none;
    padding: 0;
    font-weight: 600;
    font-size: 20px;
    line-height: 48px;
    font-family: "Fustat";
  }
  
  .pin-input:focus {
    border-bottom-color: #2d5eee;
  }
  
  .pin-input.filled {
    border-bottom-color: #2d5eee;
  }
  .identity-ver-options {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .identity-ver-option {
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    padding: 14px;
    border: 1px solid #e1e1e1;
    width: 100%;
    gap: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    cursor: pointer;
  }
  .identity-ver-option:hover {
    border: 1px solid #2d5eee;
  }
  
  .success-btn {
    margin-top: 14px;
  }
  
  /* Verification page END */
  
  /* Objektai */
  .objects-empty.center-wrap {
    position: relative;
  }
  
  .objects-empty.center-wrap h1 {
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .object-top h1 {
    display: flex;
    align-items: center;
  }
  .object-top {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    margin-bottom: 24px;
  }
  
  .object-top .objects-top-left {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 12px;
  }
  
  .table-edz {
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 5px 15px 0px #0000000d;
    border-radius: 10px;
    padding: 16px 40px;
    border: 1px solid #eeeeee;
  }
  
  .table-edz td {
    padding: 10px 0px;
  }
  
  .table-edz td {
    border-bottom: 1px solid #e1e1e1;
  }
  .table-edz tr:last-child td {
    border-bottom: none;
  }
  
  .table-edz th {
    font-weight: 700;
    font-style: Bold;
    font-size: 13px;
    border-bottom: 1px solid #e1e1e1;
    text-align: left;
    padding-bottom: 23px;
    padding-top: 24px;
  }
  
  .table-edz td {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #141414;
  }
  .table-edz .status-inactive,
  .table-edz td.text-muted {
    color: #9f9f9f !important;
  }
  .table-edz a {
    display: block;
    max-width: 92px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
  }
  
  .status-active {
    color: #27c96a !important;
  }
  .status-overdue {
    color: #eb3831 !important;
  }
  
  .tables-bottom-add {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
  }
  
  .button-plus {
    width: 14px;
    height: 14px;
    background-image: url(/assets/icons/button-plus.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px 14px;
    display: block;
  }
  
  .btn-w-plus {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 13px;
  }
  
  .btn-w-plus:hover .button-plus {
    background-image: url(/assets/icons/blue-plus.svg);
  }
  
  .dots-btn {
    width: 24px;
    height: 24px;
    background-image: url(/assets/icons/btn.redaguoti.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    display: block;
  }
  
  .table-btn-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 16px;
  }
  
  .table-star {
    width: 20px;
    height: 20px;
    background-image: url(/assets/icons/Star-grey.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    display: block;
  }
  .filled .table-star {
    width: 20px;
    height: 20px;
    background-image: url(/assets/icons/Star.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    display: block;
  }
  
  .table-star:hover {
    background-image: url(/assets/icons/Star.svg);
  }
  
  .contacts-page .phone-wrap {
    flex-wrap: nowrap;
  }
  
  .contacts-page .error .form-input.phone-input {
    z-index: 9;
  }
  
  .edz-creation .phone-wrap {
    flex-wrap: nowrap;
  }
  
  .edz-creation .error .form-input.phone-input {
    z-index: 9;
  }
  
  .login-reg-wrapper.phone-ver .phone-wrap {
    flex-wrap: nowrap;
  }
  
  .login-reg-wrapper.phone-ver .error .form-input.phone-input {
    z-index: 9;
  }
  
  .login-reg-wrapper.phone-ver .phone-wrap .error-message {
    flex-basis: 100%;
    order: 99;
    position: absolute;
    bottom: -20px;
  }
  
  .login-reg-wrapper.phone-ver .phone-wrap.error {
    margin-bottom: 36px;
  }
  .person-info-section .phone-wrap {
    flex-wrap: nowrap;
  }
  
  .person-info-section .error .form-input.phone-input {
    z-index: 9;
  }
  
  .invitation-section .phone-wrap {
    flex-wrap: nowrap;
  }
  .invitation-section .error .form-input.phone-input {
    z-index: 9;
  }
  
  .f2-add-btn.add-property {
    width: 32px;
    height: 32px;
    background-color: rgba(45, 94, 238, 1);
    border-radius: 8px;
    background-image: url(/assets/icons/button-plus.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px 14px;
    border: 2px solid #2d5eee;
    display: block;
  }
  
  .archive-page .table-edz a {
    display: block;
    max-width: 100%;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    white-space: nowrap;
  }
  
  .objects-sub {
    position: relative;
    cursor: pointer;
  }
  .objects-sub .object-sub-drop {
    display: none;
    position: absolute;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 5px 15px 0px #0000000d;
    border: 1px solid #e1e1e1;
    background: #fff;
    width: fit-content;
    padding: 10px;
    right: 0;
    z-index: 999;
    top: 24px;
    transition: none;
  }
  .mobile-actions {
    display: none !important;
  }
  
  .dots-btn:hover {
    background-image: url(/assets/icons/dots-blue.svg);
  }
  .header-account:hover .account-icon {
    background-color: #2c64e9;
  }
  
  .header-notifications:hover .notication-icon {
    background-color: #2c64e9;
  }
  .object-open {
    display: block !important;
  }
  
  .objects-sub .object-sub-drop a {
    color: #141414;
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    justify-content: flex-start;
    font-weight: 500;
    width: 100%;
    max-width: 100% !important;
    height: 30px;
  }
  .objects-sub .object-sub-drop a:hover {
    color: #2d5eee;
  }
  
  .popup-cancel {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: #00000078;
    display: none;
    justify-content: center;
    align-content: center;
    align-items: center;
    z-index: 99999;
  }
  .popup-cancel.pop-opened {
    display: flex;
  }
  
  .pop-cancel-wrap {
    background: #ffffff;
    border: 1px solid #eeeeee;
    max-width: 443px;
    width: 443px;
    padding: 40px 56px;
    border-radius: 10px;
  }
  .pop-cancel-wrap h2 {
    margin-bottom: 24px;
    text-align: center;
  }
  .popup-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .popup-btns a {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .object-table-mobile {
    display: none;
  }
  /* Objektai END */
  
  /* Archyvas */
  .archive-btn-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  
    gap: 24px;
  }
  
  .archive-action {
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    display: block;
  }
  .trash-icon {
    background-image: url(/assets/icons/cert-trash.svg);
  }
  .trash-icon:hover {
    background-image: url(/assets/icons/cert-trash-blue.svg);
  }
  .pdf-icon {
    background-image: url(/assets/icons/PDF.svg);
  }
  .pdf-icon:hover {
    background-image: url(/assets/icons/PDF-blue.svg);
  }
  
  .archive-table-mobile {
    display: none;
  }
  
  .table-scroll .table-edz {
    min-width: 1000px;
  }
  .table-scroll {
    overflow: auto;
    border-radius: 10px;
  }
  
  .archive-table.table-edz.desktop-item td:last-child {
    text-align: -webkit-right;
    width: 12%;
  }
  /* Archyvas END */
  
  /* Contacts*/
  .contacts-page h1 {
    text-align: center;
    margin-bottom: 32px;
  }
  
  .contacts-form-wrap {
    max-width: 672px;
    padding: 40px 56px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px 0px #0000000d;
    background-color: #fff;
    margin: auto;
  }
  
  .subject-wrap .select2-container {
    width: 100% !important;
  }
  body .subject-wrap .select2-container .select2-selection--single {
    border-radius: 10px;
  }
  
  .input-wrap textarea {
    padding: 12px 18px;
    outline: none;
    width: 100%;
    border-radius: var(--border-radius-btn, 8px);
    border: 1px solid var(--grey-line, #e1e1e1);
    background: #fff;
    font-family: Fustat;
    font-weight: 500;
    font-size: 14px;
    color: rgba(20, 20, 20, 1);
    transition: 0.2s all ease;
    min-height: 144px;
    max-width: 100%;
  }
  .input-wrap textarea:focus {
    border-color: rgba(45, 94, 238, 1);
  }
  /* Contacts END*/
  
  /* Invitations */
  .invitation-wrapper h1 {
    font-weight: 400;
    margin-bottom: 40px;
  }
  .invitation-wrapper h1 b {
    font-weight: 700;
  }
  .invitation-section {
    margin-top: 96px;
    margin-bottom: 60px;
  }
  
  .invitation-section .white-box-shadow {
    margin: auto;
  }
  .hidden {
    display: none;
  }
  .invitation-from .form-buttons {
    width: 100%;
    display: flex;
    gap: 12px;
  }
  .invitation-from .form-buttons button {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .invitation-from .object-name {
    font-weight: 500;
    font-size: 16px;
    color: #2d5eee;
    margin-top: 12px;
  }
  #companySection,
  #personalSection {
    margin-top: 40px;
  }
  #companySection h3,
  #personalSection h3 {
    margin-bottom: 20px;
  }
  
  .invitation-from .form-bottom {
    margin-top: 40px;
  }
  .invitation-from .form-bottom .agree {
    margin-bottom: 40px;
  }
  .mar-top {
    margin-top: 40px;
  }
  
  #certificatesContainer .cert-card {
    padding: 32px;
    border-radius: 10px;
    background-color: #f9f9f9;
  }
  .add-cert-btn {
    font-weight: 700;
    font-size: 13px;
    color: #2d5eee;
    background-color: transparent;
    border: none;
    box-shadow: none;
    cursor: pointer;
    margin-top: 40px;
    display: flex;
    font-family: "Fustat";
    gap: 8px;
    justify-content: center;
    align-items: center;
  }
  
  #certificatesContainer .file-input-container .file-input-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 0px;
    background-color: transparent;
    color: #2d5eee;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    font-family: Fustat;
    font-weight: 700;
    font-size: 13px;
    line-height: 100%;
    padding-bottom: 0;
  }
  
  #certificatesContainer .cert-card:not(:first-child) {
    margin-top: 20px;
  }
  .has-certs #certificatesContainer .cert-card:first-child {
    margin-top: 20px;
  }
  
  #certificatesContainer .cert-dates {
    display: flex;
    gap: 12px;
  }
  
  .certs-table .table-edz {
    width: 100%;
    background-color: #fff;
    box-shadow: none;
    border-radius: 10px;
    padding: 0;
    border: 0;
  }
  .certs-table .table-edz th {
    font-weight: 700;
    font-style: Bold;
    font-size: 13px;
    border-bottom: none;
    text-align: left;
    padding-bottom: 10px;
    padding-top: 0px;
  }
  
  /* Invitations END*/
  
  /* Juornal Ending */
  .completion-section {
    margin-top: 96px;
    margin-bottom: 60px;
  }
  .completion-section .white-box-shadow {
    margin: auto;
  }
  .completion-section .completion-top {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .completion-status .not-signed {
    background-color: #e1e1e1;
  }
  .completion-status .signed {
    background-color: #27c96a;
  }
  
  .completion-status .status-indicator {
    border-radius: 100%;
    width: 12px;
    height: 12px;
    display: flex;
  }
  
  .completion-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  
  .completion-description {
    max-width: 560px;
    margin-bottom: 40px;
  }
  
  .completion-fields {
    display: flex;
    align-items: flex-start;
    gap: 20%;
  }
  
  .completion-fields .completion-field {
    max-width: 288px;
  }
  
  .completion-fields .owner-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
  }
  
  .completion-fields .completion-field label {
    font-weight: 600;
    font-size: 13px;
    line-height: 100%;
    letter-spacing: 0%;
  }
  
  .completion-signers {
    margin-top: 40px;
  }
  
  .signers-list {
    display: flex;
    flex-direction: column;
  }
  
  .signers-list .signer-row {
    border-bottom: #e1e1e1 1px solid;
    display: flex;
    align-items: center;
    align-content: center;
    gap: 24px;
  }
  
  .completion-fields .owner-name {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
  }
  
  .signers-table.table-edz {
    width: 100%;
    background-color: #fff;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    border: none;
    margin-bottom: 16px;
    margin-top: 16px;
  }
  
  .signers-table.table-edz .signer-action {
    font-weight: 700;
    font-style: Bold;
    font-size: 13px;
    line-height: 100%;
    letter-spacing: 0%;
    text-decoration: none;
    max-width: 100%;
    justify-content: flex-end;
    gap: 8px;
  }
  
  .signer-action.invite {
    color: #2d5eee;
  }
  .signer-action.cancel {
    color: #eb3831;
  }
  
  .signed .completion-fields .owner-name {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }
  
  .signed .signer-row td:first-child {
    width: 40px;
  }
  .signer-status {
    color: #9f9f9f !important;
  }
  .signer-status.signed-status {
    color: #27c96a !important;
  }
  .end-juornal-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 24px;
  }
  
  .end-juornal-bottom a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 13px;
    line-height: 100%;
    text-decoration: none;
  }
  
  /* Juornal Ending END*/
  
  .personal-info-box h2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .ver-btn {
    font-family: Fustat;
    font-weight: 700;
    font-style: Bold;
    font-size: 13px;
    color: #141414;
    margin-left: auto;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .ver-btn .ver-icon {
    width: 12px;
    height: 12px;
    background-image: url(/assets/icons/reload.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    margin-bottom: 2px;
  }
  
  .ver-btn:hover {
    color: #2d5eee;
  }
  
  .ver-btn:hover .ver-icon {
    background-image: url(/assets/icons/reload-blue.svg);
    width: 12px;
    height: 12px;
  }
  
  .message-bar {
    padding: 16px 24px;
    border-radius: 25px;
    font-family: Fustat;
    font-weight: 600;
    font-size: 16px;
    display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
  }
  
  .message-bar.success-message {
    color: #fff;
    background-color: #27c96a;
  }
  
  .message-bar.error-message {
    color: #fff;
    background-color: #eb3831;
  }
  
  .notification-text {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  
  .close-notification {
      width: 15px;
      height: 15px;
      background-image: url(/assets/icons/close-noti.svg);
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
      display: block;
  }