/*
@media (max-width:767px) {}
@media (min-width:768px) and (max-width:991px) {}
@media (min-width:992px) and (max-width:1199px) {}
@media (min-width:1200px) {}
*/

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/themes/fonts/Inter-3.12/Inter-Regular.woff2?v=3.12") format("woff2"),
    url("/themes/fonts/Inter-3.12/Inter-Regular.woff?v=3.12") format("woff");
}

@font-face {
    font-family: 'Inter';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url("/themes/fonts/Inter-3.12/Inter-Italic.woff2?v=3.12") format("woff2"),
    url("/themes/fonts/Inter-3.12/Inter-Italic.woff?v=3.12") format("woff");
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("/themes/fonts/Inter-3.12/Inter-SemiBold.woff2?v=3.12") format("woff2"),
    url("/themes/fonts/Inter-3.12/Inter-SemiBold.woff?v=3.12") format("woff");
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("/themes/fonts/Inter-3.12/Inter-Medium.woff2?v=3.12") format("woff2"),
    url("/themes/fonts/Inter-3.12/Inter-Medium.woff?v=3.12") format("woff");
}

@font-face {
    font-family: 'Inter';
    font-style: italic;
    font-weight: 600;
    font-display: swap;
    src: url("/themes/fonts/Inter-3.12/Inter-SemiBoldItalic.woff2?v=3.12") format("woff2"),
    url("/themes/fonts/Inter-3.12/Inter-SemiBoldItalic.woff?v=3.12") format("woff");
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/themes/fonts/Inter-3.12/Inter-Bold.woff2?v=3.12") format("woff2"),
    url("/themes/fonts/Inter-3.12/Inter-Bold.woff?v=3.12") format("woff");
}

@font-face {
    font-family: 'Inter';
    font-style: italic;
    font-weight: 700;
    font-display: swap;
    src: url("/themes/fonts/Inter-3.12/Inter-BoldItalic.woff2?v=3.12") format("woff2"),
    url("/themes/fonts/Inter-3.12/Inter-BoldItalic.woff?v=3.12") format("woff");
}


/*
------------------------------
UX 2022
 */

body {
    font-family: 'Inter', sans-serif;
    background-color: #F3F3F6;
    font-size: 14px;
    line-height: 1.25em;
    color: #13141D;
    font-weight: 400;
}

body.site-vader {
    background-image: url(/themes/pactumize/images/pactumize-pattern.svg);
    background-repeat: repeat-x; /* Repeat horizontally only */
    background-position-y: 60px; /* Offset 60px from the top */
}

header {
    position: fixed;
    z-index: 1030;
    top: 0;
    left: 200px;
    width: calc(100% - 200px);
    height: 60px;
    background: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

header .left {
    display: none;
}

header .right {
    float: right;
}

header .right a {
    float: left;
    margin-right: 20px;
    line-height: 60px;
    font-size: 23px;
    color: #393F73;
}

header .logo {
    float: left;
    height: 60px;
    margin-right: 20px;
    padding: 10px 0;
}

header .logo span {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

header .logo img {
    vertical-align: middle;
    max-width: 140px;
    max-height: 40px;
}

.header-server-text {
    float: left;
    height: 60px;
    padding: 0 0;
    margin-right: 10px;
    font-weight: bold;
    line-height: 60px;
}

aside {
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    height: 100vh;
    background-color: #2C2E43;
}

aside a {
    color: #B3AA77;
}

aside a:hover, aside a:active, aside a:focus {
    color: #A29759;
}

aside .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 200px;
    height: 60px;
}

aside .logo img {
    max-width: calc(100% - 40px);
    max-height: calc(100% - 20px);
}

aside nav {
    margin-top: 35px;
    font-size: 15px;
}

aside nav a {
    display: block;
    height: 50px;
    line-height: 50px;
    padding-left: 20px;
    border-left: 3px solid transparent;
    cursor: pointer;
    color: #BEBEBE;
    overflow: hidden;
}

aside nav a.active, aside nav a:hover {
    border-left: 3px solid #B3AA77;
    background-color: #202238;
    color: white;
    text-decoration: none;
}

aside nav a:focus {
    color: white;
    text-decoration: none;
}

aside nav a i {
    width: 20px;
    margin-right: 8px;
}

aside .bottom {
    position: absolute;
    width: 100%;
    bottom: 20px;
    padding: 0 20px;
}

aside .bottom > div {
    margin-top: 10px;
}

aside .bottom a {
    position: relative;
}

aside .flag-system {
    cursor: pointer;
    max-height: 22px;
    border: 3px solid transparent;
}

aside .flag-system.active,
aside .flag-system:hover {
    border-color: #B3AA77;
}

main {
    margin: 60px 0 0 200px;
}

main .background-white {
    background-color: #FFFFFF;
    border: 1px solid #E8E8E8;
    box-shadow: 0 3px 11px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    margin: 0 -15px;
}

main .background-white:not(:last-of-type) {
    margin-bottom: 20px;
}

/* Special until UX 2022 released for all. */
main .background-white.background-white-no-margin {
    margin: 0;
}

main .background-white > .part {
    border-bottom: 1px solid #E8E8E8;
    padding: 20px;
}

main .background-white > .part:last-child {
    border-bottom: none;
}

main .container-fluid {
    padding: 35px 65px 0;
}

main .container-fluid > h1 {
    margin: 0 -15px 20px;
}

main .container-fluid > .back {
    display: block;
    margin: -10px -15px 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.25em;
    color: #696B78;
    text-decoration: none;
}

main .container-fluid > .back:before {
    font-family: 'Font Awesome 6 Pro';
    font-weight: 400;
    content: '\f060';
    margin-right: 10px;
}

@media (max-width: 767px) {
    header {
        left: 0;
        width: 100%;
    }

    header .left {
        display: block;
    }

    header .left > div {
        float: left;
        margin-left: 20px;
        line-height: 60px;
        font-size: 23px;
        color: #393F73;
        cursor: pointer;
    }

    .aside_active .toggle_aside i:before {
        content: '\f00d';
    }

    aside {
        display: none;
    }

    .aside_active aside {
        display: block;
        z-index: 1;
        top: 60px;
        height: calc(100vh - 60px);
    }

    main {
        margin-left: 0;
    }

    main .container-fluid {
        padding-left: 30px;
        padding-right: 30px;
    }
}


/*
------------------------------
General
 */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

body.no-scroll {
    overflow: hidden;
    overflow-y: scroll;
}

a {
    color: #393F73;
    cursor: pointer;
}

a:hover, a:focus, a:active {
    color: #727ABE;
    text-decoration: none;
}

a.highlight {
    color: #727ABE;
}

a.highlight:hover {
    color: #393F73;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 18px;
}

h1, .heading1 {
    font-size: 30px;
    line-height: 30px;
}

h1 i {
    float: left;
    color: #B3AA77;
    margin-right: 10px;
}

.heading1 {
    margin-bottom: 10px;
}


h2, .heading2 {
    font-size: 28px;
    line-height: 28px;
}

h3, .heading3 {
    font-size: 24px;
    line-height: 24px;
}

h4, .heading4 {
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 12px;
}

h5 {
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 0;
}

.h1 .small, .h1 small, .h2 .small, .h2 small, .h3 .small, .h3 small, .h4 .small, .h4 small, .h5 .small, .h5 small, .h6 .small, .h6 small, h1 .small, h1 small, h2 .small, h2 small, h3 .small, h3 small, h4 .small, h4 small, h5 .small, h5 small, h6 .small, h6 small {
    color: #4a4a4a;
}

hr {
    margin: 10px 0 30px 0;
    border: none;
    height: 1px;
    background-color: #4a4a4a;
}

.col-centered {
    float: none;
    margin: 0 auto;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute !important;
}

.d-inline-block {
    display: inline-block !important;
}

.row.display-flex {
    display: flex;
    flex-wrap: wrap;
}

.row.display-flex > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

.cursor-default {
    cursor: default !important;
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-help {
    cursor: help;
}

.badge {
    font-weight: normal;
}

.overflow-hidden {
    display: block;
    width: 100%;
    overflow: hidden;
}


/*
------------------------------
Buttons
 */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 38px;
    line-height: 38px;
    border: 1px solid;
    padding: 0 12px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.1s ease-in;
}

.btn i {
    float: left;
    margin-right: 10px;
}

.btn.btn-xs {
    font-size: 12px;
    padding: 0 10px;
    height: 22px;
    line-height: 20px;
    min-width: auto;
    border-width: 2px;
    font-weight: normal;
}

.btn.btn-xs.btn-ghost {
    border-width: 1px;
}

.btn-group-sm > .btn, .btn-sm {
    height: 30px;
    min-width: auto;
    padding: 0 25px;
    line-height: 26px;
    margin-right: 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
}

/**
When new layout active remove .btn-temp-class
 */

.btn.btn-temp-class {
    border-radius: 4px;
    border: 1px solid #b3aa77; /* ligthen 5% = #C5BC8B */
    background-color: #b3aa77;
    color: white;
    font-weight: bold;
    font-size: 14px;
    text-transform: none;
    min-width: auto;
    text-align: center;
    height: 38px;
    line-height: 36px;
    padding: 0 15px;
}

.btn.btn-fill {
    width: 100%;
}

.btn.btn-temp-class.btn-primary:hover, .btn.btn-temp-class.btn-primary:focus {
    border-color: #C5BC8B;
    background-color: #C5BC8B;
    color: white;
}

.btn.btn-temp-class.btn-default {
    border-color: #393F73; /* ligthen 5% = #686EA6 */
    background-color: transparent;
    color: #393F73;
    font-weight: normal;
}

.btn.btn-temp-class.btn-default:hover, .btn.btn-temp-class.btn-default:focus {
    border-color: #686EA6;
    background-color: #686EA6;
    color: white;
}

.btn.btn-ghost {
    font-weight: normal;
    border-color: #393F73;
    color: #393F73;
    background-color: white;
}

.btn.btn-ghost:hover, .btn.btn-ghost:focus {
    border-color: #8892E9;
    color: #727ABE;
}

.btn.btn-temp-class i {
    margin-right: 7px;
}

@media (max-width: 767px) {
    .modal-dialog {
        width: calc(100% - 20px);
    }

    .btn.btn-temp-class {
        border-radius: 4px;
        font-weight: normal;
        font-size: 12px;
        height: 22px;
        line-height: 20px;
        padding: 0 10px;
    }
}

.modal.modal-ux-2022 {
    max-height: 100%;
    left: 15px;
    right: 15px;
}

.modal-ux-2022 .modal-dialog {
    display: flex;
    align-items: center;
    height: calc(100% - 40px);
    margin: 20px auto;
    pointer-events: none;
    width: 500px;
    max-width: 100%;
}

.modal-ux-2022 .modal-content {
    width: 100%;
    margin: 0 auto;
    max-height: 100%;
    pointer-events: auto;
    overflow-y: auto;
}

.modal-ux-2022 .modal-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.25;
}

.modal-ux-2022 .modal-title i {
    display: inline-block;
    margin-right: 10px;
    font-weight: 400;
    color: #B3AA77;
    line-height: 1.25;
}

.modal-ux-2022 .modal-title span {
    display: inline-block;

}

.modal-ux-2022 .close {
    font-weight: 400;
}

.modal-ux-2022 b {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    line-height: 125%;
    color: #696B78;
    text-transform: uppercase;
}

.modal-ux-2022 small {
    display: block;
    font-size: 12px;
    color: #696B78;
    margin-bottom: 15px;
}

.modal-ux-2022 .tab-pane {
    padding: 10px 0;
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 650px;
    }
}

.modal-content {
    border-radius: 4px;
    border: none;
}

.modal-body.full-width {
    padding: 15px 0;
}

.modal-body.full-width .modal-padding {
    padding: 0 20px;
}

.modal-header .modal-title {
    font-weight: bold;
    font-size: 16px;
}

.dialog-class-info-2020 .modal-header {
    border-bottom: 0;
}

.dialog-class-info-2020 .modal-header .modal-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
}

.dialog-class-info-2020 .modal-header .modal-title i {
    float: left;
    font-size: 26px;
    line-height: 26px;
    color: #b3aa77;
    margin-right: 20px;
}

.dialog-class-info-2020 .modal-header .close {
    margin-top: 0;
    font-size: 26px;
    line-height: 26px;
    color: #BEBEBE;
    opacity: 1;
}

.dialog-class-info-2020 .modal-body {
    padding-top: 0;
}

.dialog-class-info-2020 .modal-body b {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.dialog-class-info-2020 .modal-body:not(:last-child) {
    border-bottom: 1px solid #bebebe;
    margin-bottom: 15px;
}

.dialog-class-info-2020 .modal-header .close:hover {
    color: black;
}

.modal-tagline {
    margin-bottom: 20px;
    color: #696B78;
}

.modal .btn-sm {
    margin-right: 0;
}

.pull-right .btn:not(:last-of-type) {
    margin-right: 10px;
}

.btn:focus {
    outline: 0 !important;
}

.btn-default {
    color: #009327;
    background-color: white;
    border: solid 3px #009327;
}

.btn-primary {
    background-color: #B3AA77;
    border-color: #B3AA77;
    color: white;
}

.btn-primary:focus, .btn-primary:hover, .btn-primary:active, .btn-primary:active:hover, .btn-primary:active:focus,
.btn-default:focus, .btn-default:hover, .btn-default:active, .btn-default:active:hover, .btn-default:active:focus {
    background: #A29759;
    border-color: #A29759;
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: #009327;
    border-color: #009327;
}

.btn-secondary:focus, .btn-secondary:hover {
    background-color: #009327;
    color: white;
}

/*
------------------------------
Panels
 */
.panel {
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 20px 75px 0 rgba(221, 221, 221, 0.55);
}

.panel:last-of-type {
    margin-bottom: 40px;
}

.panel-body {
    padding: 40px 20px 45px 20px;
}

@media (min-width: 992px) {
    .panel-body {
        padding: 40px 90px 45px 90px;
    }
}


/*
------------------------------
Blocks
 */
.block {
    margin: 0 0 10px 0;
    padding: 10px;
}

.block-title {
    margin: -20px 0 20px 0;
}

.block-section {
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .block {
        margin-bottom: 20px;
        padding: 30px;
    }
}

.block:last-of-type {
    margin-bottom: 0;
}

.block-section:last-of-type {
    margin-bottom: 0;
}

/*
------------------------------
Boostrap standards
 */
.form-control {
    height: 38px;
    padding: 3px 12px;
    border-radius: 3px;
    border: 1px solid #939393;
    font-size: 16px;
}

.form-control-xs {
    font-size: 12px;
    padding: 0 0 0 4px;
    height: 24px;
}

textarea.form-control-xs {
    font-size: 12px;
    padding: 4px;
}

.tooltip-inner {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 1.25em;
    max-width: 350px;
    min-width: 70px;
}

@media screen and (max-width: 768px) {
    .visible-xs-inline {
        display: inline-block;
    !important
    }
}

@media screen and (min-width: 768px) {
    .visible-xs-inline {
        display: none;
    !important
    }
}


/*
------------------------------
Main navication menu
 */

header .navbar-toggler {
    float: left;
    height: 100%;
    width: 64px;
    background-color: #b3aa77;
    text-align: center;
    cursor: pointer;
}

header .navbar-toggler i {
    font-size: 32px;
    line-height: 56px;
    color: white;
}

header .navbar-toggler:hover i {
    color: #13141D;
}

.navbar-left {
    position: fixed;
    top: 56px;
    right: 0;
    bottom: 0;
    left: 64px;
    z-index: 1030;
    background-color: #fff;
    padding: 0;
    opacity: 0;
    transition: opacity 250ms ease-in-out;
    pointer-events: none;
    border: none;
}

.navbar-left.navbar-left-show {
    opacity: 1;
    pointer-events: all;
    overflow-y: auto;
    overflow-x: hidden;
}


.navbar-hidden {
    pointer-events: none;
}

.navbar-hidden .nav-pactumize {
    visibility: hidden;
}

.navbar-left.navbar-hidden:not(.navbar-hiding) .nav-pactumize {
    visibility: visible;
    pointer-events: all;
}

.navbar-left-container .domain-logo {
    display: none;
}

.navbar-left .navbar-left-container .domain-logo {
    display: block;
    text-align: center;
    margin: 0 15px 10px 15px;
    max-width: 300px;
}

.navbar-left .navbar-left-container {
    position: relative;
    display: inline-block;
    background-color: #b3aa77;
    padding: 20px 0 20px 0;
}

.nav-pactumize {
    display: flex;
    flex-flow: row wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-pactumize.nav-pactumize-loading {
    visibility: hidden;
}

.navbar-left .nav-pactumize {
    display: block;
    height: auto;
}

.nav-pactumize .nav-pactumize-item {
    position: relative;
    height: 56px;
    padding: 0 15px;
}

.navbar-left .nav-pactumize .nav-pactumize-item {
    position: static;
    height: 50px;
}

.navbar-left .nav-pactumize .nav-pactumize-item .nav-pactumize-link {
    font-weight: 600;
    color: #13141d;
    padding-right: 30px;
    line-height: 50px;
}

.nav-pactumize .nav-pactumize-item .nav-pactumize-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    line-height: 56px;
    border-bottom: 1px solid #13141d;
    color: white;
    text-decoration: none;
    transition: color 250ms ease-in-out;
    font-weight: 600;
}

.nav-pactumize .nav-pactumize-item .nav-pactumize-link i {
    display: none;
}

.navbar-left .nav-pactumize .nav-pactumize-item .nav-pactumize-link i {
    display: inline-block;
    position: absolute;
    height: 100%;
    width: 30px;
    right: 0;
    text-align: right;
    line-height: 50px;
    transition: background-color 250ms ease-in-out;
}

.navbar-left .nav-pactumize .nav-pactumize-item:hover,
.navbar-left .nav-pactumize .nav-pactumize-item.nav-pactumize-dropdown-show {
    background-color: #13141d;
    margin-top: -1px;
    margin-bottom: 1px;
    padding-top: 1px;
}

.nav-pactumize .nav-pactumize-item .nav-pactumize-link:hover,
.nav-pactumize .nav-pactumize-item.nav-pactumize-dropdown-show .nav-pactumize-link {
    color: #b3aa77;
}

.navbar-left .nav-pactumize .nav-pactumize-item:hover .nav-pactumize-link,
.navbar-left .nav-pactumize .nav-pactumize-item.nav-pactumize-dropdown-show .nav-pactumize-link {
    color: white;
}

.nav-pactumize .nav-pactumize-dropdown-menu {
    z-index: 1040;
    position: absolute;
    top: 56px;
    left: 0;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.25s ease-in-out;
    pointer-events: none;
    background-color: #b3aa77;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .nav-pactumize .nav-pactumize-dropdown-menu.nav-pactumize-dropdown-right-md {
        right: 0;
        left: auto;
    }
}

@media (min-width: 1200px) {
    .nav-pactumize .nav-pactumize-dropdown-menu.nav-pactumize-dropdown-right-lg {
        right: 0;
        left: auto;
    }
}

.navbar-left .nav-pactumize .nav-pactumize-dropdown-menu {
    left: 100% !important;
    right: auto !important;
    top: 0;
    padding: 50px 0 0 50px;
    background-color: transparent;
}

.nav-pactumize .nav-pactumize-dropdown-show .nav-pactumize-dropdown-menu {
    opacity: 1;
    pointer-events: all;
}

.nav-pactumize .nav-pactumize-dropdown-title {
    display: none;
}

.navbar-left .nav-pactumize .nav-pactumize-dropdown-title {
    display: block;
    white-space: nowrap;
}

.nav-pactumize .nav-pactumize-dropdown-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 20px;
}

.nav-pactumize .nav-pactumize-dropdown-menu ul li {
    padding: 5px 0;
    white-space: nowrap;
}

.nav-pactumize .nav-pactumize-dropdown-menu a {
    color: #13141d;
    word-wrap: break-word;
}

.nav-pactumize .nav-pactumize-dropdown-menu a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    header .navbar-toggler {
        width: 40px;
    }

    header .navbar-toggler i {
        font-size: 20px;
        line-height: 40px;
    }

    .navbar-left {
        left: 0;
        top: 40px;
    }

    .navbar-left .navbar-left-container {
        width: 100%;
    }

    .navbar-left .nav-pactumize .nav-pactumize-item {
        height: 40px;
    }

    .navbar-left .nav-pactumize .nav-pactumize-item .nav-pactumize-link {
        padding-right: 30px;
        line-height: 40px;
    }

    .navbar-left .nav-pactumize .nav-pactumize-item .nav-pactumize-link i {
        line-height: 40px;
    }

}

/*
------------------------------
Breadcrumbs
 */
.pactumize-breadcrumbs {
    float: left;
    line-height: 60px;
    font-weight: 600;
    font-size: 16px;
}

.pactumize-breadcrumbs > div {
    float: left;
}

.pactumize-breadcrumbs a {
    color: white;
}

.pactumize-breadcrumbs .active {
    font-weight: normal;
}

.pactumize-breadcrumbs > div:not(:last-of-type):after {
    float: right;
    content: '/';
    color: #696B78;
    font-size: 16px;
    margin-left: 10px;
    margin-right: 10px;
}

.header-divider {
    float: left;
    width: 1px;
    height: 32px;
    margin: 12px 25px 0 25px;
    background-color: #393F73;
}

.header-link {
    float: left;
    line-height: 56px;
    color: white;
}

.header-link:hover {
    text-decoration: none;
}

/*
------------------------------
Progress bar
 */
.view-contract .pactumize-progress-bar {
    height: 8px;
    border-radius: 0;
    background-color: #d8d8d8;
    margin: 5px 0 0 0;
}

.view-contract .pactumize-progress-bar > div {
    background-color: #393F73;
    border-radius: 0;
    height: 8px;
    line-height: 8px;
}

.pactumize-progress-bar {
    width: 100%;
    margin: 0 0 30px;
    background-color: #c4c4c4;
    height: 24px;
    border-radius: 12px;
}

.pactumize-progress-bar > div {
    background-color: #393F73;
    border-radius: 12px;
    text-align: center;
    width: 0;
    height: 24px;
    line-height: 24px;
    font-size: 14px;
    color: white;
    font-weight: 600;
    transition: width 500ms ease-in-out;
}

.pactumize-progress-bar > div > span.animate {
    animation-name: fade;
    animation-duration: 500ms;
}

@keyframes fade {
    0%, 50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.tagline {
    margin-top: -10px;
}

#site_popup {
    display: none;
    position: fixed;
    z-index: 20000;
    top: 100px;
    left: 50%;
    margin-left: -300px;
    padding: 35px;
    width: 600px;
    max-width: 100%;
    background-color: #ff6565;
    color: white;
    vertical-align: top;
}

#site_popup.is-info {
    background-color: #6565ff;
}

#site_popup > div {
    display: inline-block;
    margin-left: 60px;
    min-height: 35px;
}

#site_popup h4 {
    margin-bottom: 0;
    margin-top: 0;
}

#site_popup .close {
    position: absolute;
    vertical-align: top;
    display: inline-block;
    margin-right: 35px;
    font-size: 35px;
    line-height: 35px;
    color: white;
    text-shadow: none;
    filter: alpha(opacity=100);
    opacity: 1;
}

#site_fader {
    display: none;
    position: fixed;
    z-index: 19999;
    top: 0;
    left: 0;
    width: 100%;
    height: 507px;
    background-color: black;
    opacity: 0.5;
    filter: alpha(opacity=50);
}


/*
------------------------------
Start page / dashboard
 */
.start-image {
    margin: -35px -65px 20px;
    background: url(/themes/pactumize/images/header.jpg) no-repeat center;
    background-size: cover;
    transition: all 0.5s ease-out;
    height: 150px;
    position: relative;
}

.start-image.start-image-small {
    height: 100px;
}

.start-image .start-image-overlay {
    height: 100%;
    background-color: rgba(4, 30, 66, 0.6);
}

.start-image.start-image-small .start-image-buttons,
.start-image.start-image-small .start-image-text {
    display: none;
}

.start-image .start-image-buttons {
    position: absolute;
    bottom: 0;
    right: 50px;
    text-align: right;
}

.start-image .start-image-buttons > div {
    margin-bottom: 10px;
}

.start-image .start-image-buttons > div .btn {
    margin-right: 0;
    margin-left: 10px;
    background-color: #2C2E43;
    border-color: #2C2E43;
    font-weight: normal;
}

.start-image .start-image-buttons > div .btn:hover {
    background-color: #202238;
    border-color: #202238;
}

@media (max-width: 767px) {
    .start-image .start-image-buttons {
        display: none;
    }
}

@media (min-width: 768px) {
    .start-image {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .start-image {
        margin-left: -30px;
        margin-right: -30px;
    }
}

/*
------------------------------
Other...
 */


.table > thead > tr > th {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.25em;
    color: #696B78;
    border-bottom: none;
}

.table > tbody > tr > td {
    border-top: none;
}

.table-dashboard td {
    height: 40px;
    padding: 10px 5px !important;
    line-height: 1.25em !important;
}

.table-dashboard .table-icon {
    float: left;
    height: 19px;
    width: 14px;
    margin-left: 8px;
    text-align: center;
}

.widget {
    background-color: #ffffff;
    margin-bottom: 10px;
}

.widget .widget-extra-full,
.widget .widget-extra {
    position: relative;
    padding: 15px;
}

.widget .widget-extra {
    padding-top: 1px;
    padding-bottom: 1px;
}

.widget .widget-content-light {
    color: #ffffff;
}

.widget .widget-content-light small {
    color: #eeeeee;
}

.widget .widget-image,
.widget .widget-icon {

    background-color: #B3AA77;
    width: 64px;
    height: 64px;
}

.widget .widget-icon {
    display: inline-block;
    line-height: 64px;
    text-align: center;
    font-size: 20px;
    border-radius: 32px;
    color: white;
}

.widget .widget-icon .gi,
.widget .widget-icon .si,
.widget .widget-icon .hi,
.widget .widget-icon .fi {
    margin-top: -3px;
}

.widget .widget-options,
.widget .widget-options-left {
    position: absolute;
    top: 5px;
    opacity: 0.5;
    filter: alpha(opacity=50);
}

.widget .widget-options {
    right: 5px;
}

.widget .widget-options-left {
    left: 5px;
}

.widget .widget-options:hover,
.widget .widget-options-left:hover {
    opacity: 1;
    filter: alpha(opacity=100);
}

.widget-simple {
    padding: 15px;
}

.widget-simple:before,
.widget-simple:after {
    content: " ";
    display: table;
}

.widget-simple:after {
    clear: both;
}

.widget-simple .widget-image,
.widget-simple .widget-icon {
    margin: 0 15px;
}

.widget-simple .widget-image.pull-left,
.widget-simple .widget-icon.pull-left {
    margin-left: 0;
}

.widget-simple .widget-image.pull-right,
.widget-simple .widget-icon.pull-right {
    margin-right: 0;
}

.widget-simple .widget-content {
    font-size: 18px;
    margin: 12px 0 0 0;
}

.widget-simple h3.widget-content {
    font-weight: normal;
    line-height: 20px;
}

.widget-simple h3.widget-content strong {
    font-weight: normal;
}

.widget-simple .widget-content small {
    display: block;
    margin-top: 7px;
    font-size: 13px;
    font-weight: 400;
}

/* Link Widgets */
a.widget {
    display: block;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

a.widget:hover,
a.widget:active {
    text-decoration: none;
}

.widget.widget-hover-effect1:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/*
------------------------------
Contract flows
 */
.agreement-header {
    margin-bottom: 15px;
}

.agreement-header h1 {
    margin: 0;
    font-size: 31px;
    line-height: 34px;
}

.agreement-header h1 small {
    margin-left: 10px;
    font-size: 10px;
    color: #222222;
}

.agreement-header .tag_line {
    color: #42434b;
}

.row.agreement-steps {
    margin: 0;
}

.agreement-sub-steps {
    margin: 0;
}

.breadcrumbs-a24 {
    overflow: hidden;
    height: 49px;
    padding: 0;
    margin: 0;
}

.breadcrumbs-a24 li {
    height: 49px;
    float: left;
    position: relative;
}

.breadcrumbs-a24 li a {
    display: inline-block;
    height: 49px;
    line-height: 49px;
    padding: 0 10px 0 50px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    color: #42434b;
    background-color: #c4c4c4;
}

.breadcrumbs-a24 li:first-child a {
    padding-left: 32px;
}

.breadcrumbs-a24 li:nth-last-child(2) a {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.breadcrumbs-a24 span {
    width: 29px;
    height: 29px;
    vertical-align: middle;
    line-height: 25px;
    margin-right: 10px;
    text-align: center;
    display: inline-block;
    border-radius: 100%;
    border: 3px solid #b3aa77;
    position: relative;
}

.breadcrumbs-a24 li.current a {
    color: #ffffff;
    background: #42434b;
    position: relative;
}

.breadcrumbs-a24 li.current a span {
    color: white;
    background: #42434b;
}

.breadcrumbs-a24 li.complete a {
    color: white;
    background: #393F73;
}

.breadcrumbs-a24 li:not(:last-child):not(:nth-last-child(2)) a:after {
    content: ' ';
    display: block;
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 30px solid #c4c4c4;
    position: absolute;
    top: 50%;
    margin-top: -50px;
    left: 100%;
    z-index: 2;
}

.breadcrumbs-a24 li:not(:last-child):not(:nth-last-child(2)) a:before {
    content: ' ';
    display: block;
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 30px solid white;
    position: absolute;
    top: 50%;
    margin-top: -50px;
    margin-left: 3px;
    left: 100%;
    z-index: 1;
}

.breadcrumbs-a24 li.current a:after {
    border-left-color: #42434b !important;
}

.breadcrumbs-a24 li.complete a:after {
    border-left-color: #393F73 !important;
}

/* This is the check icon */
.breadcrumbs-a24 li.complete a span:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: 1px;
    margin-top: -6px;
    width: 2px;
    height: 12px;
    background: white;
    transform: rotate(35deg);
}

.breadcrumbs-a24 li.complete a span:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -1px;
    margin-left: -4px;
    width: 2px;
    height: 6px;
    background: white;
    transform: rotate(-45deg);
}

.breadcrumbs-a24 li.docFile a {
    height: 49px;
    line-height: 49px;
    margin-left: 5px;
    padding: 0 20px 0 20px;
    background-color: #727ABE;
    color: white;
    border-radius: 8px;
}

.breadcrumbs-a24 li.docFile a span {
    width: 30px;
    height: 39px;
    line-height: 39px;
    margin-right: 0;
    border-radius: 0;
    border: none;
    text-align: center;
}

.breadcrumbs-a24 li.docFile a span:before {
    /*noinspection CssNoGenericFontName*/
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    content: "\f11e";
}

.breadcrumbs-a24-sub {
    margin: 0;
    padding: 0;
}

.breadcrumbs-a24-sub li {
    display: inline-block;
}

.breadcrumbs-a24-sub li a {
    padding: 6px 25px 6px 17px;
    display: block;
    background: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    color: #42434b;
}

.breadcrumbs-a24-sub li a img {
    vertical-align: middle
}

.breadcrumbs-a24-sub li.current a {
    color: #ffffff;
    background: #42434b;
}

.breadcrumbs-a24-sub li.complete a {
    color: white;
    background: #393F73;
}

form {
    display: inline;
}

label {
    font-weight: 400 !important;
}

ul {
    margin-left: 0 !important;
    padding: 0;
    list-style: none;
}

a {
    cursor: pointer;
}

select {
    color: #13141D;
}

textarea {
    resize: vertical;
}

.small {
    font-size: 100%;
}

.ui-widget-header {
    color: #13141D;
}

.text-bold {
    font-weight: bold;
}

.text-green {
    color: #393F73 !important;
}

.text-success {
    color: #009327 !important;
}

.text-gray {
    color: #696B78 !important;
}

.text-danger {
    color: #F35B1C !important;
}

a.text-danger:hover {
    color: #862A0D !important;
}

.text-default {
    color: #393F73 !important;
}

.text-default:hover {
    color: #686EA6 !important;
}

.text-italic {
    font-style: italic;
}

.font-small, .fontSmall, .text-small {
    font-size: 12px;
}

.font-medium, .fontMedium {
    font-size: 14px;
    font-weight: 600;
}

.font-large, .fontLarge {
    font-size: 18px;
    font-weight: 600;
}

.agreement-preview-inner {
    margin-top: 20px;
}

.agreement-preview-block {
    margin-bottom: 20px;
    font-weight: normal;
}

.agreement-preview-block-title {
    margin: 20px 0 5px 0;
    border-bottom: 1px solid #e5e5e5;
}

.agreement-preview-block-title .block-title {
    margin-bottom: 5px;
}

.agreement-preview-block-title a {
    float: right;
}


.element-set-container {
    position: relative;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 20px 75px 0 rgba(221, 221, 221, 0.55);
    background-color: white;
}

.element-set-container:first-of-type {
    margin-top: 30px;
}

.element-set-container img {
    max-width: 100%;
}

.element-set-fader {
    position: absolute;
    z-index: 900;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    padding: 0 50px;
    cursor: pointer;
    border-radius: 8px;
}

.element-set-fader > div {
    display: table;
    height: 100%;
    width: 100%;
}

.element-set-fader span {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    height: 100%;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.element-set-container:last-of-type .element-set-fader {
    display: none;
}

.element-set-row {
    width: 100%;
}

.element-set {
    position: relative;
    padding: 15px 63px 15px 35px;
}

@media (min-width: 768px) {
    .element-set.validator-left {
        padding-left: 63px;
    }
}

.element-set-validator {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 48px;
    background-image: url(/themes/agreement/images/validator-bar-bg.png);
    background-color: #42434b;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.subrow-first .element-set-validator {
    border-top-right-radius: 8px;
}

.subrow-last .element-set-validator {
    border-bottom-right-radius: 8px;
}

.element-set-validator.validator-left {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
}

.element {
    position: relative;
    float: left;
    margin: 0 20px 5px 0;
    max-width: 100%;
}

.element.text-right-after {
    margin-right: 5px;
}

.element input, .element select, .element textarea {
    max-width: 100%;
}

.element-group {
    margin-bottom: 10px;
}

.element-group-inline {
    display: inline-block;
    width: 230px;
    max-width: 100%;
}

.element-type-name .element-group-inline {
    width: 180px;
}

.element-type-name .element-group-inline.first_name {
    width: 110px;
    margin-right: 10px;
}

.element-type-name .element-group-inline input {
    width: 100%;
    max-width: 100%;
}

.element-size-xsmall {
    margin-right: 10px;
}

.element-type-label {
    margin-right: 0;
}

.element-label-bold label {
    font-weight: 600 !important;
}

.control-label {
    margin: 5px 20px 0 0;
}

.text-left-right .control-label {
    margin-right: 5px;
}

.control-date, .control-select {
    height: 29px;
    font-size: 14px;
    margin-right: 0 !important;
}

.radio-option, .checkbox-option {
    cursor: pointer;
}

.element-slider {
    max-width: 100%;
    width: 250px;
    margin-top: 5px;
}

.ui-slider .ui-slider-handle {
    /*touch-action:pan-x;*/
}

.element-date {
    cursor: pointer !important;
    background-color: white !important;
    opacity: 1;
}

.element-clock {
    cursor: pointer !important;
    background-color: white !important;
    opacity: 1;
}

.slider-text {
    width: 200px;
    max-width: 100%;
    text-align: center;
}

.slider-text.medium {
    width: 300px;
}

.slider-text.large {
    width: 500px;
}

.popover-a24 {
    position: relative;
    cursor: pointer;
}

.popover-a24:hover i {
    color: #009327;
}

.popover-a24 i {
    position: relative;
    top: -5px;
    left: -2px;
}

.popover {
    cursor: default;
    font-size: 16px;
    max-width: 500px;
    background-image: url(/themes/agreement/images/close.png);
    -webkit-background-size: 8px 8px;
    -moz-background-size: 8px;
    -o-background-size: 8px;
    background-size: 8px;
    background-repeat: no-repeat;
    background-position: right 5px top 5px;
}

.popover:hover {
    background-image: url(/themes/agreement/images/close-hover.png);
}

.popover.no-close {
    background-image: none;
    cursor: default;
}

.modal-a24 {
    cursor: pointer;
    color: #393F73;
}

.modal-a24:hover {
    color: #727ABE;
}

.popover {
    min-width: 250px;
}

/* =========================================================================
Must be fixed */

.manual .element-set-validator {
    background-color: #42434b;
    border-color: #42434b;
}

.manual .element-set-validator:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -11px;
    margin-top: -7px;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
}

.manual .element-set-validator:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -2px;
    margin-left: -9px;
    width: 20px;
    height: 4px;
}

.manual .element-set-validator.validator-left {
    transform: rotate(180deg);
}

.valid .element-set-validator {
    background-color: #393F73;
}

.valid .element-set-validator:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 2px;
    margin-left: -11px;
    height: 4px;
    width: 10px;
    background: #393F73;
    transform: rotate(35deg);
}

.valid .element-set-validator:after {
    content: '';
    position: absolute;
    width: 4px;
    height: 20px;
    background: #393F73;
    margin-top: -10px;
    top: 50%;
    left: 50%;
    transform: rotate(35deg);
}

.element-set-validator.no-validation {
    background-image: none;
    background-color: #393F73;
}

.form .element-set-row .subrow {
    margin-right: 48px;
}

.buttons li > .radio-button, .buttons li > .checkbox-button {
    position: relative;
    outline: none;
    display: inline-block;
    padding: 3px 20px;
    background: transparent;
    border: 2px solid #42434b;
    text-decoration: none;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.buttons .selected > .radio-button > span, .buttons li.selected > .checkbox-button {
    color: white;
}

.buttons li > .radio-button:hover {
    text-decoration: none;
}

.radio-button .selected {
    background-color: #ffffff;
    border-bottom: none;
}


.buttons .selected > .radio-button {
    color: white;
    background-color: #393F73;
}

.checkbox-group .checkbox-option {
    margin-right: 8px;
}

.buttons li > .checkbox-button {
    padding: 0;
}

.checkbox-group .checkbox-value {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 5px 10px 5px 30px;
    display: inline-block;
    background-position: 10px 10px;
    background-repeat: no-repeat;
}

.checkbox-group .checkbox-option .checkbox-value:before {
    content: '\f0c8';
    /*noinspection CssNoGenericFontName*/
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    position: absolute;
    font-size: 16px;
    left: 10px;
    top: 5px;
}

.checkbox-group .checkbox-option.selected .checkbox-value:before {
    content: '\f14a';
}

.buttons .selected > .radio-button,
.radio-style-list li.selected,
.buttons .selected .checkbox-button.checkbox-checked,
.checkField label.chkd {
    color: white;
    background-color: #393F73;
}


@media (max-width: 767px) {
    .checkbox-group .checkbox-option {
        display: block;
    }

    .checkbox-group .checkbox-option, .checkbox-button {
        display: block !important;
    }
}


.form .form-row-navi {
    padding: 20px 0;
}

.form .form-row-navi ul {
    clear: both;
    padding: 0 20px;
}

button.back {
    float: left;
}

.button-agreement-save {
    float: left;
    margin-top: 12px;
    margin-left: 20px;
    text-decoration: underline;
}

.button-agreement-save:hover {
    text-decoration: none;
}

.header-1 > div {
    display: inline-block;
    margin-right: 40px;
}

.header-1 > div:last-of-type {
    margin-right: 0;
}

.header-1 > div > span {
    margin-right: 40px;
}

.header-1 > div > span:last-of-type {
    margin-right: 0;
}

.header-1 .contract-name {
    font-weight: bold;
    font-size: 31px;
    line-height: 34px;
}

@media (max-width: 767px) {
    .header-1 .contract-name {
        font-size: 24px;
    }
}

.header-2 {
    margin-bottom: -5px;
    font-weight: 700;
    font-size: 16px;
}


@media (max-width: 500px) {
    .button-agreement-save {
        position: absolute;
        margin: 0;
        width: 100%;
        text-align: center;
        /*left:-webkit-calc(50% - 123px);
        left:calc(50% - 123px);
        left:-moz-calc(50% - 123px);*/
        top: 65px;
    }
}

.element-set-row .subrow.subrow-first {
    padding-top: 35px;
}

.element-set-row .subrow.subrow-last {
    padding-bottom: 35px;
}

.element-set-row .element-set.element-margin-0 {
    padding-bottom: 0;
}

.element-set-row .element-set.element-margin-2 {
    padding-bottom: 35px;
}

.element-set-row .element-set.element-margin-3 {
    padding-bottom: 45px;
}

.element-set-row .element-set.element-margin-4 {
    padding-bottom: 60px;
}

.form-navigation .error-message {
    line-height: 18px;
    float: right;
}

#post_error {
    float: right;
    font-size: 14px;
    line-height: 18px;
    margin: 15px 10px 0 0;
    color: #c13729;
}

.inline-fields input[type="text"], .inline-fields select, .inline-fields textarea, .inline-fields input[type="password"], .inline-fields .input-w200 {
    font-style: normal;
    padding: 4px 6px 0 6px;
    margin: 0 10px 0 0;
    border: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    display: inline-block;
    background: #fafafa;
    border-bottom: 1px solid #333;
}

.inline-fields .input-group input[type="text"], .inline-fields .input-group select, .inline-fields .input-group textarea, .inline-fields .input-group .input-w200 {
    margin-right: 0;
}

.inline-fields .input-group-flow input[type="text"], .inline-fields .input-group-flow select, .inline-fields .input-group-flow textarea, .inline-fields .input-group-flow .input-w200 {
    margin-right: 0;
}

.inline-fields .input-group, .inline-fields .input-group-flow {
    margin-right: 0;
    min-height: 23px;
}

.control-text, .control-textarea.small, .control-select, input.input-w200, .input-group-flow, .element-slider[type=range] {
    width: 200px;
    max-width: 100%;
}

.control-text.size-tiny, .input-group-flow.size-tiny {
    width: 50px;
    margin-right: 0 !important;
}

.control-text.xsmall, .control-select.xsmall, input.xsmall, .input-group-flow.xsmall {
    width: 105px;
    margin-right: 0 !important;
}

.control-text.medium, .control-textarea.medium, .control-select.medium, input.medium, .input-group-flow.medium, .element-slider[type=range].medium {
    width: 300px;
}

.control-text.large, .control-textarea.large, .control-select.large, input.large, .input-group-flow.large, .element-slider[type=range].large {
    width: 500px;
}

.control-text.xlarge, .control-textarea.xlarge, .control-select.xlarge, input.xlarge, .input-group-flow.xlarge {
    width: 1920px;
}

.input-group-flow.medium input,.input-group-flow.large input{
    width: 100%;
}

.control-select.auto-size {
    width: auto;
}

.control-textarea.small {
    height: 120px;
}

.control-textarea.medium {
    height: 150px;
}

.control-textarea.large {
    height: 200px;
}

.control-textarea.xlarge {
    height: 200px;
}


select.input-w200 {
    width: 215px;
}

select.input-w150 {
    width: 165px;
}

.heading {
    color: #13141D;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.checkField {
    display: inline-block;
    float: left;
    margin-right: 8px;
    font-weight: 600;
    margin-bottom: 5px
}

.checkField label {
    cursor: pointer;
}

.checkField .checkBox {
    display: none !important;
}

.checkField label.chkd {
    color: white !important;
    text-decoration: none;
    margin-right: 0;
    float: none;
    margin-top: 0;
    display: inline-block;
    border: 2px solid #42434b;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.checkField label strong {
    position: relative;
    font-weight: 400;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 5px 10px 5px 30px;
    display: inline-block;
}

.checkField label strong:before {
    content: '\f0c8';
    /*noinspection CssNoGenericFontName*/
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    position: absolute;
    font-size: 16px;
    left: 10px;
    top: 5px;
}

.checkField label.chkd strong:before {
    content: '\f14a';
}

.checkField label.unchkd {
    color: #13141D !important;
    text-decoration: none;
    margin-right: 0;
    float: none;
    margin-top: 0;
    display: inline-block;

    border: 2px solid #42434b;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.ui-datepicker {
    z-index: 1000 !important;
}

button.ui-datepicker-current {
    display: none;
}

.datepicker {
    z-index: 9999 !important
}

.radio_preffix {
    margin: 12px 10px 22px 0;
    background: none !important;
    border: 0 !important;
    display: inline !important
}

.radio_suffix {
    margin: 12px 5px 22px 10px;
    background: none !important;
    border: 0 !important;
    display: inline !important
}

.radio_suffix:last-of-type {
    margin-right: 0;
}

.radio_preffix .form,
.radio_suffix .form {
    width: auto !important;
    float: none !important;
    background: none !important;
    clear: none !important
}

.chkBoxControl {
    display: inline-block;
    padding-top: 8px;
    float: left
}

.buttons-singleselect li {
    margin-bottom: 5px;
}

.singleField {
    margin: 0
}

.buttons {
    float: left;
    margin-bottom: 0;
}

.buttons li {
    display: inline-block;
    /*background-color:#f7f7f7;*/
    /*list-style-type:none;
    border-collapse:collapse;
    border:0;*/
}

.buttons li.radio-option {
    margin-right: 2px;
}

.buttons li.radio-option.single {
    margin-right: 10px;
}

.radio-style-list li {
    position: relative;
    display: block;
    margin-right: 0;
    margin-bottom: 10px;
    background-color: transparent;

    border: 2px solid #42434b;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.radio-style-list li:last-of-type {
    margin-bottom: 0;
}

.radio-style-list li.selected {
    color: white;
    margin-right: 0;
}

.radio-style-list li .radio-button {
    background-color: transparent;
    border: none;
    display: block;
}

.radio-style-list li.selected .radio-button {
    color: white;
    background-color: #393F73;
}

.radio-style-list .radio-check-container {
    position: absolute;
    top: 0;
    left: -40px;
}

.radio-style-list.buttons li > .checkbox-button {
    border: none;
    width: 100%;
}

.radio-style-list.checkbox-group .checkbox-option {
    margin-right: 0;
}


.button-navigation {
    float: left;
}

.agreement-help-container {
    margin: 20px 0;
    outline: 2px solid #bfe1ec;
    background-color: #f7fbfd;
    padding: 20px 10px;
    text-align: center;
    color: #f7972a;
}

.agreement-help-container .row {
    margin-bottom: 15px;
}

.agreement-help-container b {
    font-size: 18px;
    line-height: 26px;
}

.agreement-help-container .btn {
    margin: 20px 0;
}

.error-tooltip {
    display: none;
    position: absolute;
    bottom: 100%;
    padding: 10px 10px 0;
    box-shadow: 0 0 10px #CCC;
    z-index: 2;
    max-width: 300px;
    min-height: 32px;
    font-size: 12px;
    line-height: 100%;
    background: #c13729;
}

.error-tooltip .arrow {
    display: inline-block;
    position: absolute;
    bottom: -5px;
    left: 50%;
    margin-left: -5px;
    width: 10px;
    height: 10px;
    z-index: 2;
    transform: rotate(45deg);
    background: #c13729;
}

.error-tooltip p {
    color: white;
}

.ajax-loader {
    height: 15px;
    margin-left: 10px;
}

@media (max-width: 767px) {
    .radio_preffix {
        display: block !important;
    }

    .radio_suffix {
        display: block !important;
        margin-top: 0 !important;
        margin-left: 0 !important;
    }
}

.agreement-vertical-section ::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: white;
}

.agreement-vertical-section :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: white;
    opacity: 1;
}

.agreement-vertical-section ::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: white;
    opacity: 1;
}

.agreement-vertical-section :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #999;
}

.agreement-vertical-section:last-of-type ::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #999;
}

.agreement-vertical-section:last-of-type :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #999;
    opacity: 1;
}

.agreement-vertical-section:last-of-type ::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #999;
    opacity: 1;
}

.agreement-vertical-section:last-of-type :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #999;
}

table.flow-table > tbody > tr > td {
    border: none;
}

/* ////////////////////// */

.file-progress {
    position: relative;
    width: 100%;
    height: 20px;
    margin: 10px 0;
    display: none;
}

.file-progress .bar {
    position: absolute;
    background-color: #393F73;
    height: 20px;
    width: 0;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.file-progress .text {
    position: absolute;
    width: 100%;
    line-height: 20px;
    text-align: center;
    color: white;
}

/* ////////////////////// */

.agreement-image {
    margin-top: 20px;
    max-width: 90%;
}

.input-group-flow {
    position: relative;
}

.input-group-flow-addon {
    position: absolute;
    right: 3px;
    padding: 5px 0 3px 0;
    font-size: 11px;
    font-weight: 400;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.5);
    user-select: none;
    pointer-events: none;
}


.password-toggle {
    position: absolute;
    z-index: 3;
    top: 0;
    right: 10px;
    height: 100%;
    cursor: pointer;
    font-size: 12px;
    line-height: 44px;
    color: #a0a0a0;
}

.password-toggle:hover {
    color: #42434b;
}

.element-section.flow-repeat {
    border-top: 2px solid #393F73;
}

/*
------------------------------
Manage contract
 */
main .contract-bar {
    min-height: 56px;
    margin-bottom: 30px;
    padding: 10px 0 0 30px;
}

.contract-bar:empty {
    display: none;
}

.contract-bar i {
    display: block;
    float: left;
    height: 36px;
    line-height: 36px;
    margin-bottom: 10px;
    font-size: 32px;
    color: #393F73;
    margin-right: 30px;
}

.contract-bar i:hover {
    color: #727ABE;
}

.contract-bar .btn {
    float: left;
    margin-top: 3px;
    height: 30px;
    min-width: auto;
    line-height: 26px;
    margin-right: 30px;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
}

.contract-bar .btn:last-of-type {
    margin-right: 0;
}

.contract-bar .vl {
    display: block;
    float: left;
    width: 3px;
    height: 36px;
    margin-right: 30px;
    background-color: #c4c4c4;
}

.contract-bar .vl:last-child {
    display: none;
}

.contract-bar-attachments {
    position: relative;
    float: left;
    background-color: white;
    margin-right: 30px;
    border-radius: 4px;
}

.contract-bar-attachments i {
    margin: 0 30px 0 0;
}

.contract-bar-attachments a:last-of-type i {
    margin-right: 0;
}

.contract-manage-content {
    display: table;
    width: calc(100% + 30px);
    margin: 0 -15px 0 -15px;
}

.contract-manage-content .contract-manage-content-left {
    display: table-cell;
}

.contract-manage-content .contract-manage-content-right {
    display: table-cell;
    width: 350px;
    padding-left: 20px;
    vertical-align: top;
}

.contract-manage-content .contract-manage-content-right > div {
    width: 330px;
}

@media (min-width: 992px) {
    .contract-manage-content .contract-manage-content-right {
        width: 450px;
        padding-left: 30px;
    }

    .contract-manage-content .contract-manage-content-right > div {
        width: 420px;
    }
}

.contract-actions {
    font-size: 12px;
    line-height: 18px;
}

.contract-action-icons {
    display: flex;
    justify-content: space-around;
    height: 46px;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: #eaeaea;
}

.contract-action-icons i {
    height: 26px;
    line-height: 26px;
    font-size: 26px;
    color: #727ABE;
    cursor: pointer;
}

.contract-action-icons i.active, .contract-action-icons i:hover {
    color: #393F73;
}

.contract-action-title {
    font-size: 14px;
    font-weight: bold;
    padding-bottom: 5px;
    border-bottom: 1px solid #979797;
    margin-bottom: 15px;
}

.contract-action-item {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #E8E8E8;
}

.contract-action-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.contract-action {
    display: none;
}

.contract-action.active {
    display: block;
}

.contract-action .form-control {
    font-size: 12px;
    border-radius: 8px;
}

.contract-action .btn {
    height: 30px;
    min-width: auto;
    line-height: 26px;
    margin-top: 5px;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
}

.contract-action .img-circle {
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-weight: bold;
}

#content_left {
    background-color: white;
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    #content_left {
        margin-bottom: 15px;
    }
}

.contract-versions .contract-selector {
    line-height: 26px;
    margin-right: 5px;
}

.contract-selector.active {
    color: #598428;
    font-weight: 700;
}

.contract-versions .badge {
    float: left;
    margin-top: 4px;
    margin-right: 5px;
    line-height: 12px;
}

.current-version span {
    display: inline-block;
    margin-right: 10px;
}

#contract_approval_container .contract-approval:first-of-type {
    margin-top: 20px;
}

.contract-content .pdf-part {
    position: relative;
}

.contract-content .pdf-part:hover {
    color: #b3aa77;
    cursor: pointer;
}

@keyframes highlight {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes highlight-background {
    0% {
        background-color: transparent;
        color: #3D6657;
    }
    50% {
        background-color: #BFD9BA;
        color: white;
    }
    100% {
        background-color: transparent;
        color: #3D6657;
    }
}

.blink {
    animation-name: highlight-background;
    animation-duration: 1s;
}

/*
------------------------------
Responsive
 */
@media (max-width: 767px) {
    body {
        font-size: 12px;
        line-height: 18px;
    }

    h1, .heading1 {
        font-size: 31px;
        line-height: 34px;
    }

    h2, .heading2 {
        font-size: 25px;
        line-height: 28px;
    }

    h3, .heading3 {
        font-size: 20px;
        line-height: 23px;
    }

    h4, .heading4 {
        font-size: 16px;
        line-height: 18px;
        margin-bottom: 5px;
    }

    h5 {
        font-size: 14px;
        line-height: 16px;
    }

    .font-medium, .fontMedium {
        font-size: 12px;
    }

    .btn {
        min-width: 150px;
        padding: 0 20px;
        font-size: 12px;
        height: 36px;
        line-height: 32px;
    }

    .btn.btn-xs {
        font-size: 10px;
        padding: 0 8px;
        height: 16px;
        line-height: 13px;
    }

    .btn-group-sm > .btn, .btn-sm {
        height: 25px;
        padding: 0 15px;
        line-height: 21px;
        font-size: 11px;
    }

    .form-control {
        height: 28px;
        padding: 3px 6px;
        font-size: 12px;
        line-height: 18px;
    }

    .nav-pactumize .nav-pactumize-item.nav-pactumize-dropdown-show {
        height: auto;
    }

    .nav-pactumize .nav-pactumize-dropdown-menu {
        display: none;
        height: 0;
        position: static;
        background-color: #b3aa77;
        padding-left: 20px;
    }

    .nav-pactumize .nav-pactumize-dropdown-show .nav-pactumize-dropdown-menu {
        display: block;
        height: auto;
        margin-right: -15px;
        margin-left: -15px;
        padding-top: 10px;
        background-color: #b3aa77;
    }

    .navbar-left .nav-pactumize .nav-pactumize-dropdown-title {
        display: none;
    }

    .nav-pactumize .nav-pactumize-dropdown-menu > b {
        display: none;
    }

    .nav-pactumize .nav-pactumize-dropdown-menu ul {
        line-height: 15px;
    }

    .nav-pactumize .nav-pactumize-item {
        height: 40px;
    }

    .nav-pactumize .nav-pactumize-item .nav-pactumize-link {
        line-height: 40px;
    }

    .container-fluid {
        padding-bottom: 56px;
    }

    .background-white {
        margin-bottom: 15px;
    }

    .vert-offset-top-2 {
        margin-top: 15px;
    }

    .contract-bar {
        min-height: 46px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding-left: 10px;
        padding-right: 10px;
    }

    .contract-bar i {
        height: 26px;
        line-height: 26px;
        font-size: 24px;
        margin-right: 10px;
        margin-left: 10px;
    }

    .contract-bar .btn {
        height: 26px;
        line-height: 22px;
        margin-right: 10px;
        margin-left: 10px;
        font-size: 12px;
    }

    .contract-bar .vl {
        height: 26px;
        margin-right: 10px;
        margin-left: 10px;
        width: 2px;
    }

    .contract-bar-attachments {
        position: relative;
        float: left;
        background-color: white;
        margin-right: 0;
        border-radius: 4px;
        height: 26px;
    }

    .contract-bar-attachments i {
        margin: 0 10px;
    }

    .contract-bar-attachments a:last-of-type i {
        margin: 0 10px;
    }

    #site_popup {
        width: 350px;
        margin-left: -175px;
        padding: 10px;
    }

    #site_popup > div {
        display: inline-block;
        margin-left: 45px;
    }
}

@media (max-width: 991px) {
    .contract-manage-content {
        display: flex;
        flex-direction: column;
    }

    .contract-manage-content .contract-manage-content-left {
        display: block;
        order: 2;
    }

    .contract-manage-content .contract-manage-content-right {
        display: block;
        order: 1;
        width: 100%;
        padding-left: 0;
    }

    .contract-manage-content .contract-manage-content-right > div {
        width: 100%;
    }
}

.ff-tnum {
    font-feature-settings: 'kern' 1, 'tnum' 1;
}

.reminder-items > div {
    background: #E8E8E8;
    border: 1px solid #E8E8E8;
    border-radius: 4px;
    padding: 15px;
}

.reminder-items#reminder_items_current > div {
    border: 1px solid #862A0D;
    background-color: #FEF3EF;
}

.reminder-items > div:not(:last-child) {
    margin-bottom: 10px;
}

.reminder-items > div .reminder-item-actions {
    float: right;
    line-height: 40px;
}

.reminder-items > div.open .reminder-item-collapsed {
    display: none;
}

.reminder-items > div .reminder-item-opened,
.reminder-items > div .reminder-item-options {
    display: none;
}

.reminder-items > div.open .reminder-item-opened {
    display: block;
}

.reminder-items > div.open .reminder-item-options {
    display: block;
    margin: 15px -15px 0;
    border-top: 1px solid #BEBEBE;
    padding: 15px 15px 0;
}

.reminder-items > div .reminder-item-footer {
    display: none;
}

.reminder-items > div.open .reminder-item-footer {
    display: block;
    margin: 15px -15px 0;
    border-top: 1px solid #BEBEBE;
    padding: 15px 15px 0;
    text-align: right;
}

.onboarding-modal {
    position: absolute;
    z-index: 20000;
    width: 260px;
    background-color: white;
    border-radius: 4px;
    padding: 10px;
}

.onboarding-modal:after {
    content: '';
    position: absolute;
    left: calc(260px / 2 - 8px);
    top: -8px;
    width: 0;
    height: 0;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-bottom: 8px solid white;
}

.onboarding-modal b {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
}

.onboarding-modal .btn {
    text-transform: none;
    margin-top: 20px;
    margin-bottom: 0;
    float: right;
}

mark, .mark {
    background-color: transparent;
    padding: 0;
    color: #009327;
}

.contract-message {
    text-align: center;
    border: 1px solid #862A0D;
    background-color: #FEF3EF;
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.contract-message b {
    display: block;
    color: #862A0D;
    margin-bottom: 5px;
}

.container-cookie-advicer {
    display: none;
    background-color: #2C2E43;
    padding: 5px 0;
    font-size: 12px;
    line-height: 19px;
    color: white;
}

.container-cookie-advicer a {
    color: white;
    text-decoration: underline;
}

.container-cookie-advicer a:hover {
    text-decoration: none;
}

.container-cookie-advicer i {
    color: white;
}


/*
------------------------------
M&A Room 2024
 */
main > .pmar {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 15px;
}

.pmar h1 {
    font-size: 32px;
    line-height: 1em;
}

.pmar h1 > div {
    float: right;
}

.pmar h1 > div > a > i {
    color: #393F73;
}

.pmar h1 > div > a:hover > i {
    color: #727ABE;
}

.pmar h2 {
    font-size: 20px;
    line-height: 1em;
}

.pmar h2 i {
    float: left;
    color: #B3AA77;
    margin-right: 10px;
}

.pmar .btn-secondary {
    background-color: transparent;
    color: #393F73;
    border-color: #393F73;
}

.pmar .btn-secondary:focus, .pmar .btn-secondary:hover {
    background-color: #393F73;
    color: white;
}

.pmar b {
    display: block;
    color: #696B78;
    margin-bottom: 10px;
}

.pmar .breadcrumbs {
    margin-top: -15px;
    margin-bottom: 15px;
}

.pmar .breadcrumbs a {
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.25em;
}

.pmar .breadcrumbs a:first-child:before {
    font-family: 'Font Awesome 6 Pro';
    font-weight: 400;
    content: '\f060';
    margin-right: 10px;
}

.pmar .breadcrumbs a:last-child {
    color: #696B78;
    font-weight: normal;
}

.pmar .breadcrumbs a::after {
    content: '/';
    margin: 0 5px;
}

.pmar .breadcrumbs a:last-child::after {
    display: none;
}

.pmar .page-tagline {
    font-size: 16px;
    line-height: 1.25em;
    color: #696B78;
    margin-top: -13px;
    margin-bottom: 18px;
}

.pmar-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 10px;
    margin-bottom: 30px;
}

.pmar-status-bar .flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pmar-status-bar > div {
    color: #696B78;
}

.pmar-status-bar > div b {
    line-height: 1.25em;
    margin-bottom: 2px;
}

.pmar-status-bar .avatar {
    margin-right: 10px;
}

.pmar-list {
    display: flex;
    flex-direction: column; /* Align items vertically */
    gap: 18px;
    margin-top: 18px;
}

.pmar-list > a {
    color: #13141D;
}

.pmar-list > a:hover {
    color: #13141D;
}

.pmar-list > a > div {
    width: 100%;
    background-color: white;
    border-radius: 6px;
    border: 1px solid #E8E8E8;
    box-shadow: 0 3px 11px 0 #0000000D;
    padding: 18px;
    cursor: pointer;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.pmar-list > a > div:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.15); /* More pronounced shadow */
    border-color: #CCCCCC; /* Slightly darker border */
}

.pmar-list .room-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 10px;
    margin-bottom: 18px;
}

.pmar-list .room-list-header .name {
    font-size: 18px;
    font-weight: 600;
    margin-right: 10px;
}

.pmar-list .room-list-header .time {
    color: #BEBEBE;
}

.pmar-list .flex-container {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap onto the next line as needed */
}

.pmar-list .flex-item {
    /* This will apply to all flex items by default */
    height: 55px; /* Example height */
}

.pmar-list .static-width {
    width: 150px; /* Static width for the first three columns */
}

.pmar-list .flexible-width {
    flex-grow: 1; /* Allows the fourth column to take up the remaining space */
    min-width: 400px;
}

.pmar-progress-bar {
    height: 28px;
    width: 100%;
    border-radius: 4px;
    background-color: #E8E8E8;
    border: 1px solid #E8E8E8;
    text-align: right;
    line-height: 28px;
}

.pmar-progress-bar > div {
    float: right;
    height: 28px;
    border-radius: 4px;
    overflow: hidden;
}

.pmar-progress-bar > div span {
    margin-right: 10px;
}

.pmar-progress-bar > div.success {
    background-color: #A2D78F;
}

.pmar-progress-bar > div.warning {
    background-color: #ECDB7D;
}

.pmar-progress-bar > div.danger {
    background-color: #FF7D54;
}

.pmar-panel {
    background-color: white;
    border-radius: 6px;
    border: 1px solid #E8E8E8;
    box-shadow: 0 3px 11px 0 #0000000D;
    padding: 18px;
}

.pmar-panel.panel-borderd {
    padding: 0;
}

.pmar-panel.panel-borderd.panel-padding > .panel-row {
    padding: 18px;
}

.pmar-panel.panel-borderd > .panel-row {
    gap: 0;
    border-bottom: 1px solid #DCDCDC;
}

.pmar-panel.panel-borderd > .panel-row:last-of-type {
    border-bottom: none;
}

.pmar-panel.panel-borderd > .panel-row > .panel-col {
    border-right: 1px solid #DCDCDC;
}

.pmar-panel.panel-borderd > .panel-row > .panel-col:last-of-type {
    border-right: none;
}

.pmar-panel.panel-borderd > .panel-row > .panel-col > div {
    padding: 18px;
    border-bottom: 1px solid #DCDCDC;
}

.pmar-panel.panel-borderd > .panel-row > .panel-col > div:last-of-type {
    border-bottom: none;
}

@media (max-width: 991px) {
    .pmar-panel.panel-borderd > .panel-row > .panel-col {
        border-right: none;
        border-bottom: 1px solid #DCDCDC;
    }

    .pmar-panel.panel-borderd > .panel-row > .panel-col:last-of-type {
        border-bottom: none;
    }
}

.pmar-dd-list {
    display: grid;
    grid-template-columns: auto 100px 65px;
    row-gap: 2px;
    width: 100%;
    margin-top: 18px;
}

.pmar-dd-list > *:nth-child(3n+1) {
    font-weight: 600;
    padding-right: 18px;
    margin-top: 5px;
    line-height: 20px;
}

.pmar-dd-list > *:nth-child(3n+1) span {
    display: inline-block;
    width: 25px;
}

.pmar-dd-list > *:nth-child(3n+2) {
    text-align: center;
}

.pmar-dd-list > *:nth-child(3n+3) {
    text-align: center;
}

.pmar-dd-list > *:nth-child(3n+3) span {
    background-color: #EFEFF0;
    color: #696B78;
    padding: 0 8px;
    border-radius: 1em;
    font-size: 12px;
}

.pmar-dd-list b {
    margin-bottom: 0;
}

.pmar-dd-list .sub {
    padding-left: 25px;
}

.pmar-dd-list > *:nth-child(3n+1).sub {
    font-weight: 400;
    margin-top: 0;
}

.weigth-500 {
    font-weight: 500;
}

.flex-responsive-columns {
    display: flex;
    gap: 20px;
    align-items: flex-start; /* Align items to the start, allowing natural height */
}

@media (max-width: 991px) {
    .flex-responsive-columns {
        flex-direction: column;
    }

    .flex-responsive-columns > div {
        width: 100% !important;
        max-width: none !important;
    }
}

.pmar-file-list > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 25px;
}

.pmar-file-list > div > :nth-child(1) {
    text-align: left;
    flex-grow: 1;
}

.pmar-file-list > div > :nth-child(1) i {
    color: #BEBEBE;
    margin-right: 5px;
}

.pmar-file-list > div > :nth-child(2) {
    text-align: right;
    flex-grow: 1;
    color: #BEBEBE;
}

.file-drop {
    border: 2px dashed #ccc;
    height: 50px;
    line-height: 50px;
    margin: 0 0 20px;
    cursor: pointer;
    text-align: center;
    color: #aaa;
}

.file-drop.highlight {
    border-color: #393F73;
    color: #393F73;
}

.room-users-container .room-user {
    position: relative;
    min-height: 45px;
    line-height: 30px;
    padding: 8px 0 7px 3px;
}

.room-users-container .room-user .user-toggle {
    float: right;
    width: 29px;
    height: 29px;
    border-radius: 4px;
    text-align: center;
    line-height: 29px;
    margin-left: 5px;
    color: #BEBEBE;
    cursor: pointer;
}

.room-users-container .room-user .user-toggle.toggle-discreet:not(.toggle-on) {
    display: none;
}

.room-users-container .room-user:hover .user-toggle.toggle-discreet {
    display: block;
}

.room-users-container .room-user .user-toggle.toggle-on {
    background-color: #D6D6E1;
    color: #393F73;
}

.room-users-container .room-user .user-toggle.toggle-danger {
    color: #862A0D;
    cursor: initial;
}

.room-users-container .room-user .user-toggle:hover:not(.toggle-danger) {
    color: #393F73;
}

.room-users-container .room-user .user-toggle.toggle-on:hover:not(.toggle-danger) {
    color: #BEBEBE;
}

.room-users-container .room-user .user-remove {
    display: none;
    position: absolute;
    top: 8px;
    right: 5px;
    width: 10px;
    text-align: center;
    color: #393F73;
}

.room-users-container .room-user:hover .user-remove {
    display: block;
}

.room-users-container .room-user:hover {
    background-color: #EFEFF0;
}

.user-invite-email {
    display: inline-block;
    border: none;
    width: calc(100% - 100px - 20px - 40px);
    box-shadow: none;
    padding: 0 0 0 3px;
    height: 30px;
    font-size: 14px;
}

.user_invite_container {
    height: 45px;
    padding: 8px 0 7px 3px;
}

.user-icon {
    float: left;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 20px;
    background-color: #696B78;
    line-height: 30px;
    text-align: center;
    font-weight: bold;
    font-size: 13px;
    color: white;
    text-transform: uppercase;
}

.user-icon.icon-discreet {
    background-color: #E8E8E8;
}


.btn-container {
    display: none;
}

.btn-container.display {
    display: block;
    margin-top: 5px;
    text-align: right;
}

.btn-container .changes-detected {
    margin-right: 10px;
    transition: opacity 0.5s ease-out;
}

.btn-container .changes-detected.inactive {
    opacity: 0;
}

.btn-container .btn-slide-down {
    visibility: hidden;
    opacity: 0;
}

.btn-container.display .btn-slide-down {
    visibility: visible;
    opacity: 1;
    animation: slideDown 0.5s forwards;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    1% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.width-auto {
    width: auto;
}

.icon-hover {
    color: #BEBEBE;
    cursor: pointer;
}

.icon-hover:hover {
    color: #393F73;
}

.ai-response {
    margin-bottom: 20px;
}

.contract-catalog-container > * {
    border-top: 1px solid #E8E8E8;
    padding-top: 20px;
    margin-top: 20px;
}

.contract-catalog-container > *:first-of-type {
    border:none;
    padding:0;
    margin:0;
}

.contract-catalog {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.contract-catalog > * {
    display: block;
    border-color: #393F73;
    background-color: #393F73;
    color: white;
    padding: 5px;
    border-radius: 4px;
    cursor: pointer;
}

.contract-catalog > *:hover, .contract-catalog > *:active, .contract-catalog > *:focus, .contract-catalog > *.active {
    border-color: #686EA6;
    background-color: #686EA6;
    color: white;
}

.status-dot {
    display: inline-block;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    background-color: #E8E8E8;
}

.status-dot.success {
    background-color: #A2D78F;
}

.status-dot.warning {
    background-color: #ECDB7D;
}

.status-dot.danger {
    background-color: #FF7D54;
}

.comment-editable {
    display: inline-block;
    white-space: pre-wrap;
    height: auto;
    min-height: 61px;
}