.bg-blue,
.blue {
  background-color: rgba(13, 153, 255, 0.12);
}
.txt-blue,
.blue {
  color: #0D99FF !important;
}
.bg-orange,
.orange {
  background-color: rgba(241, 152, 19, 0.1);
}
.txt-orange,
.orange {
  color: #F19813 !important;
}
.bg-green,
.green {
  background-color: rgba(145, 215, 84, 0.12);
}
.txt-green,
.green {
  color: #91D754 !important;
}
.bg-khaki,
.khaki {
  background-color: rgba(178, 178, 18, 0.1);
}
.txt-khaki,
.khaki {
  color: #B2B212 !important;
}
.bg-red,
.red {
  background-color: rgba(229, 23, 92, 0.1);
}
.txt-red,
.red {
  color: #E5175C !important;
}
.bg-purple,
.purple {
  background-color: rgba(79, 31, 198, 0.12);
}
.txt-purple,
.purple {
  color: #4F1FC6 !important;
}
.bg-grey,
.grey {
  background-color: rgba(102, 102, 102, 0.08);
}
.txt-grey,
.grey {
  color: #666666 !important;
}
:root {
  --main: var(--color-primary);
  --main-gray: #636363;
  --light-gray: #F2F2F2;
  --dark-grey: #3D3935;
  --main-red: #C40F11;
  --dark-red: #620708;
  --color-nego: #4A90E2;
  --color-insignature: #FFB81C;
  --color-signed: #91D754;
  --leftpanel-white: #FBFBFB;
  --word-blue: #1D5290;
  --calendar-blue: #0071B9;
  --color-orange: #FFB81C;
}
.tag {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 6px 8px;
  font-size: 11px;
  line-height: 16px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.tag[data-icon]::before {
  content: attr(data-icon);
  font-family: "Material Icons Round";
  font-size: 16px;
  vertical-align: text-bottom;
  margin-right: 4px;
}
.tag span {
  margin-top: 1px;
}
.tag.alert {
  font-weight: normal;
  padding: 10px 16px;
}
.tag.alert p:last-child {
  margin-top: 8px;
}
.tag.initial {
  padding: 4px;
}
.tag .initials {
  background-color: var(--color-primary-faded);
  color: #666666;
  min-width: 24px;
  height: 24px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tag.small {
  font-size: 10px;
  padding: 3px 6px;
}
.tag.small[data-icon]::before {
  font-size: 12px;
}
.avatar,
.initials {
  min-width: 48px;
  height: 48px;
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.15px;
  display: flex;
  text-transform: uppercase;
  border-radius: 50%;
}
.avatar :first-child,
.initials :first-child {
  margin: auto;
}
.avatar {
  position: relative;
  background-color: #ffffff;
  background-color: var(--color-primary-faded);
  border: 0px solid transparent;
  transition: border 0.2s ease-in-out;
}
.avatar span {
  color: #1F1F1F;
}
.avatar.red-avatar:after {
  background-color: #E5175C;
}
.avatar.orange-avatar:after {
  background-color: #F19813;
}
.avatar:after {
  position: absolute;
  content: "";
  color: #91D754;
  border: 1px solid #FFFFFF;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  height: 11px;
  width: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: -1px;
  right: 1px;
  background-color: #91D754;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-property: background-color;
  -moz-transition-property: background-color;
  -o-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.initials {
  background-color: var(--color-primary);
  color: #ffffff;
}
@media (max-width: 991px) {
  .avatar {
    background-color: var(--color-primary);
    color: #FFFFFF;
  }
  .avatar:after {
    border-color: #FFFFFF;
  }
}
/********** TOGGLE SWITCH  **********/
/*
<label class="switch">
    <input type="checkbox">
    <span class="slider round"></span>
</label>
*/
.switch {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 14px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary-faded);
  transition: 0.4s;
}
.slider:before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: -1px;
  bottom: calc(50% - 20 / 2*1px);
  background-color: var(--color-primary);
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.14), 0px 2px 2px rgba(0, 0, 0, 0.12), 0px 1px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.14), 0px 2px 2px rgba(0, 0, 0, 0.12), 0px 1px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.14), 0px 2px 2px rgba(0, 0, 0, 0.12), 0px 1px 3px rgba(0, 0, 0, 0.2);
}
input:checked + .slider {
  background-color: #6f42c1 !important;
}
input:checked + .slider:before {
  -webkit-transform: translateX(16px);
  -moz-transform: translateX(16px);
  -ms-transform: translateX(16px);
  -o-transform: translateX(16px);
  transform: translateX(16px);
}
.slider.round {
  -webkit-border-radius: 34px;
  -moz-border-radius: 34px;
  border-radius: 34px;
}
.slider.round:before {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.switch2 .slider.round {
  background-color: #CCCCCC;
}
.switch2 .slider.round:before {
  background-color: #FFFFFF;
}
.switch2 input:checked + .slider:before {
  background-color: #4F1FC6;
}
/**
 * Transform
 *
 * @example
 * .transform(translate(50px, 50px) scale(1.2) rotate(45deg));
 */
/**
 * <Transform 2D Function>
 *
 * @example
 * .translate(50px, 50px;);
 * .scale(1.2);
 * .rotate(45deg);
 * .skew(20deg);
 */
/**
 * Transition
 *
 * @example
 * .transition(background-color @transition);
 * .transition(transform @transition, @transition-fade;);
 */
/**
 * Transition <Property>
 * {@link https://webref.ru/css/transition-timing-function Web Reference}
 *
 * @example
 * .transition-delay(1s);
 * .transition-duration(100ms);
 * .transition-property(width, height;);
 * .transition-timing-function(ease-in-out);
 */
.space-up {
  margin-top: 30px;
}
.space-up-s {
  margin-top: 10px;
}
.space-up-l {
  margin-top: 50px;
}
.space-down {
  margin-bottom: 30px;
}
.space-down-s {
  margin-bottom: 10px;
}
.space-left {
  margin-left: 30px;
}
.space-left-s {
  margin-left: 10px;
}
.space-right {
  margin-right: 30px;
}
.space-right-s {
  margin-right: 10px;
}
.big-square-button {
  border: 3px solid var(--color-primary);
  width: 200px;
  border-radius: 5px;
  text-align: center;
  color: var(--color-primary);
  cursor: pointer;
}
.big-square-button + .big-square-button {
  margin-left: 30px;
}
.big-square-button .far {
  font-size: 3.5rem;
}
.pagination-area,
#pagination-area {
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-area i,
#pagination-area i {
  color: #c8c8c8;
  font-size: 17px;
  cursor: pointer;
  padding: 6px;
}
.pagination-area i:hover,
#pagination-area i:hover {
  color: var(--color-primary);
}
.pagination-area .pagination-item,
#pagination-area .pagination-item {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 6px;
  cursor: pointer;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  background-color: #CCCCCC;
  color: #fff;
  transition-duration: 0.1s;
}
.pagination-area .pagination-item:hover,
#pagination-area .pagination-item:hover {
  background-color: var(--color-primary);
}
.pagination-area .pagination-item-selected,
#pagination-area .pagination-item-selected {
  background-color: var(--color-primary);
}
.pagination-area .pagination-item-unselected,
#pagination-area .pagination-item-unselected {
  padding: 0.2rem 0.5rem;
}
.pagination-area input::-webkit-outer-spin-button,
#pagination-area input::-webkit-outer-spin-button,
.pagination-area input::-webkit-inner-spin-button,
#pagination-area input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.pagination-area input[type=number],
#pagination-area input[type=number] {
  -moz-appearance: textfield;
}
.pagination-area .pagination-input,
#pagination-area .pagination-input {
  border: none;
  padding: 4px;
  width: 50px;
}
.pagination-area .pagination-button,
#pagination-area .pagination-button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 6px !important;
  border-bottom-right-radius: 6px !important;
  margin-left: -6px;
  padding: 4px;
}
.card-component .card {
  border: 0;
  -webkit-box-shadow: 0px 12px 17px rgba(225, 225, 225, 0.25);
  -moz-box-shadow: 0px 12px 17px rgba(225, 225, 225, 0.25);
  box-shadow: 0px 12px 17px rgba(225, 225, 225, 0.25);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
.card-component .card .card-body .card-title {
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 0.25px;
  color: #666666;
}
.card-component .card .card-body .card-title--color-main {
  color: var(--color-primary);
}
.card-component .card .card-body .card-title--color-danger {
  color: #C40F11;
}
.card-component .card .card-body .card-subtitle {
  margin: 0;
}
.card-component .card .card-body h2 {
  font-size: 30px;
}
.card-component .card .card-body > :last-child {
  margin-bottom: 0;
}
.card-component .card--title-last .card-body {
  display: flex;
  flex-direction: column;
}
.card-component .card--title-last .card-body .card-title {
  order: 1;
  margin-bottom: 0;
}
.card-component .card--compressed .card-title {
  margin-bottom: 0;
}
.toggle__text {
  color: #666666;
}
.toggle__text.active {
  color: #1f1f1f;
}
.toggle__input {
  display: none;
}
.toggle__icon {
  display: inline-block;
  width: 25px;
  height: 14px;
  background-color: var(--color-primary);
  border-radius: 999px;
  position: relative;
}
.toggle__icon:before {
  content: " ";
  position: absolute;
  background: white;
  width: calc(14px - 2px * 2);
  height: calc(14px - 2px * 2);
  top: 2px;
  left: 2px;
  border-radius: 999px;
  transition: left 300ms;
}
.toggle__input:checked + .toggle__icon:before {
  left: calc(25px - calc(14px - 2px * 2) - 2px);
}
.custom-popover {
  position: absolute;
  top: calc(100% + 1px);
  right: 16px;
  z-index: 999;
  display: block;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  font-size: 11px;
  word-wrap: break-word;
  background-color: #f5f5f5;
  background-clip: padding-box;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.14), 0px 3px 14px rgba(0, 0, 0, 0.12), 0px 5px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.14), 0px 3px 14px rgba(0, 0, 0, 0.12), 0px 5px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.14), 0px 3px 14px rgba(0, 0, 0, 0.12), 0px 5px 5px rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 0px 0px 8px 8px;
  -moz-border-radius: 0px 0px 8px 8px;
  border-radius: 0px 0px 8px 8px;
  padding: 10px 16px;
}
.custom-popover .custom-popover__close {
  position: absolute;
  top: 2px;
  right: 4px;
  font-size: 16px;
  cursor: pointer;
  color: #666666;
}
.custom-popover .custom-popover__close:hover {
  color: #333333;
}
.combobox-container > .input-group > .dropdown-menu > li > .dropdown-item.active,
.combobox-container > .input-group > .dropdown-menu > li > .dropdown-item:active {
  background-color: var(--color-primary);
}
.compact-search-list {
  margin-top: 0.5rem;
}
.compact-search-list__item {
  padding: 0.5rem;
  margin-top: 0.25rem;
  cursor: pointer;
  align-items: center;
}
.compact-search-list__item:hover,
.compact-search-list__item.selected {
  background-color: #f3f3f3;
}
.compact-search-list__item > i:first-child {
  font-size: 1.2em;
}
.compact-search-list__item > i:first-child.fa-file-pdf {
  color: #d4483e;
}
.flag-dropdown > .selected-flag > .flag.corporate {
  background-color: grey;
  box-shadow: unset;
  height: 20px;
}
.nav--custom {
  border-bottom: 1px solid #CCCCCC;
  width: 100%;
  margin-top: 27px;
}
.nav--custom .nav-item a {
  text-align: center;
  color: var(--color-primary);
  padding: 12px;
  -webkit-border-radius: 6px 6px 0 0;
  -moz-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
}
.nav--custom .nav-item a:hover {
  border-bottom: 2px solid var(--color-primary);
}
.nav--custom .nav-item a.active {
  color: var(--color-primary);
  background-color: var(--color-primary-faded);
  border-bottom: 2px solid var(--color-primary);
}
.nav--custom .nav-item a.disabled {
  color: #738699;
}
.nav--alternate {
  padding: 1.6rem 2.4rem;
}
.nav--alternate > .nav-item {
  margin-right: 1.2rem;
}
.nav--alternate > .nav-item > .nav-link {
  padding: 0.2rem 0;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 19px;
  text-transform: uppercase;
  color: #999999;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav--alternate > .nav-item > .nav-link.active {
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.flex {
  display: flex;
}
.red-bubble {
  display: inline-block;
  padding: 4px 3px;
  min-width: 14px;
  height: 14px;
  background: #e6175c;
  border-radius: 100px;
  margin: 0px 4px;
  font-family: Poppins;
  font-style: normal;
  font-weight: bold;
  font-size: 10px;
  line-height: 6px;
  letter-spacing: 0.4px;
  color: #f9f8f9;
  vertical-align: middle;
}
#home header {
  background-color: transparent;
  max-height: initial;
  height: 130px;
  position: relative;
  border-bottom: none;
  z-index: 3;
}
#home header .logo {
  align-items: center;
  display: flex;
  font-style: italic;
  font-weight: 500;
  font-size: 11px;
  line-height: 24px;
  letter-spacing: 0.15px;
  color: #000000;
}
#home header .logo > img {
  width: 140px;
  padding: 5px;
}
header {
  background-color: #FFFFFF;
  height: 72px;
  display: flex;
  border-bottom: 1px solid #E8E8E8;
}
header .username {
  color: var(--color-primary);
  font-size: 11px;
}
header ul.nav li {
  padding: 0 15px;
  font-size: 11px;
  line-height: 17px;
}
header ul.nav li a {
  position: relative;
  color: var(--color-primary);
}
header ul.nav li a.active,
header ul.nav li a:hover {
  opacity: 1;
  color: var(--color-primary);
}
header ul.nav li:not(.li-logout,.li-languages) a.active:after,
header ul.nav li:not(.li-logout,.li-languages) a:hover:after {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
header .flag {
  height: 25px;
  width: 33px;
}
header > .logo {
  align-items: center;
  display: flex;
  width: 30%;
  font-style: italic;
  font-weight: 500;
  font-size: 11px;
  line-height: 24px;
  letter-spacing: 0.15px;
  color: #000000;
}
header > .logo img {
  width: 100px;
  padding: 5px;
  margin-left: 16px;
}
header > .logo:hover {
  color: #000000;
}
header .bell {
  position: relative;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .bell:before {
  color: #666666;
  margin-right: 0;
  font-size: 26px;
}
header .bell:hover {
  background-color: var(--color-primary-faded);
}
header .bell p {
  background-color: #E5175C;
  position: absolute;
  border: 1px solid #FFFFFF;
  border-radius: 50px;
  font-size: 8px;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 3px;
  top: 0;
  right: -4px;
  font-family: Poppins;
  font-style: normal;
  font-weight: bold;
  line-height: 4px;
  letter-spacing: 0.4px;
  min-width: 13px;
}
header .custom-popover > div {
  -webkit-border-radius: 0px 0px 8px 8px;
  -moz-border-radius: 0px 0px 8px 8px;
  border-radius: 0px 0px 8px 8px;
  background-color: #F5F5F5;
}
header .custom-popover--header-notifications {
  background-color: #F5F5F5;
  width: 390px;
  max-width: 100vw;
}
header .custom-popover--header-absence {
  background-color: #F5F5F5;
  width: 320px;
  max-width: 100vw;
}
header .custom-popover:after {
  content: "";
  background: rgba(0, 0, 0, 0.08);
  width: 100vw;
  height: calc(100vh - 72px);
  position: absolute;
  top: 0;
  right: -16px;
  z-index: -1;
}
header #delegation-popover {
  /*        .switch {
            width: 44px;
            height: 22px;
            margin-right: 18px;
        }

        .slider:before {
            height: 19px;
            width: 19px;
            left: 1.5px;
            bottom: 1.3px;
        }

        input:checked + .slider:before {
            transform: translateX(22px);
        }*/
}
header #delegation-popover h3,
header #delegation-popover h4,
header #delegation-popover p {
  font-size: 11px;
}
header .notifications-container {
  max-height: calc(100vh - 200px);
}
header .notifications-container .notification:last-child {
  margin-bottom: 1rem;
}
header .logo_div {
  background-color: white;
  width: 74px;
  height: 74px;
  margin-top: -2px;
  margin-left: 20px;
  border-radius: 100px;
}
header .links-elements {
  color: white !important;
  margin-left: 30px;
  margin-top: 20px;
}
#header-info {
  float: right;
  margin-right: 40px;
}
#header-home p {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -1.3px;
}
.header {
  width: 100%;
  height: 150px;
  object-fit: contain;
}
.header img {
  height: 150px;
}
@media (max-width: 1200px) {
  header ul.nav {
    width: 100%;
  }
  header ul.nav li {
    padding: 0px;
  }
  header ul.nav li a {
    margin: 0 8px;
    display: block;
  }
}
@media (max-width: 1050px) {
  header > .logo {
    width: initial;
  }
}
@media (max-width: 991px) {
  main {
    padding-top: 72px;
  }
  #home main {
    min-height: calc(100vh - 140px) !important;
    padding-top: 0;
  }
  header {
    background-color: #FFFFFF;
    position: fixed;
    width: 100%;
    z-index: 100;
  }
  header nav.navbar {
    justify-content: flex-end;
  }
  header nav.navbar button {
    outline: none;
  }
  header .left-content {
    position: absolute;
  }
  header .navbar-collapse {
    height: 100%;
  }
  header .navbar-collapse.show {
    background: #505050;
    position: fixed;
    width: 100%;
    left: 0px;
    top: 72px;
    z-index: 99;
  }
  header ul.nav {
    padding: 30px 0;
  }
  header ul.nav .li-logout,
  header ul.nav .li-languages {
    margin-top: 15px;
    margin-left: 34px;
  }
  header ul.nav .li-logout a,
  header ul.nav .li-languages a {
    opacity: 1;
  }
  header ul.nav .li-logout a img,
  header ul.nav .li-languages a img {
    width: 18px;
  }
  header ul.nav li {
    margin-left: 60px;
    font-size: 14px;
  }
  header ul.nav li a {
    padding: 10px;
    opacity: 0.6;
    color: #FFFFFF;
  }
  header ul.nav li a.active,
  header ul.nav li a:hover {
    color: #FFFFFF;
  }
  header ul.nav li:not(.li-logout,.li-languages) a.active:after,
  header ul.nav li:not(.li-logout,.li-languages) a:hover:after {
    left: -9px !important;
    top: 10px;
    position: absolute;
    content: "\f111" !important;
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    font-size: 6px;
    left: calc(50% - 3px);
    background: initial !important;
  }
  header .custom-popover {
    top: calc(100% + 12px);
    right: 0;
  }
  header .avatar {
    background-color: var(--color-primary);
    color: #ffffff;
  }
  header .avatar:after {
    border-color: #fff;
  }
}
@media (max-width: 435px) {
  header .custom-popover {
    right: -19px;
    width: 100vw;
  }
  header .notifications {
    max-height: calc(100vh - 72px);
  }
  header .notifications-container {
    max-height: calc(100vh - 168px);
  }
}
/* FOOTER */
#footer {
  background-color: #FFFFFF;
  width: 100%;
  height: 140px;
  box-shadow: 0px 2px 40px rgba(0, 0, 0, 0.0843531);
  overflow: hidden;
  z-index: 98;
  position: relative;
  display: flex;
  align-items: center;
  padding: 25px 45px;
}
.footer-title {
  height: 20px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  margin: 0 15px;
  /* identical to box height */
  align-items: center;
  letter-spacing: -1px;
  color: var(--color-primary);
  display: inline-block;
}
.footer-link {
  height: 14px;
  display: inline-block;
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 14px;
  align-items: center;
  color: var(--color-primary);
  text-decoration: none;
  padding: 10px 0;
}
@media (max-width: 560px) {
  #footer {
    flex-direction: column;
    height: auto;
    padding: 25px  0;
  }
  #footer .footer-title {
    margin: 20px 0;
  }
}
.bel .form-control.focus,
.form-control.bel.focus,
.bel .form-control:focus,
.form-control.bel:focus {
  box-shadow: 0 0 0 0.2rem rgba(var(--color-primary-rgb-values), 25%) !important;
}
.bel .form-control.focus,
.form-control.bel.focus,
.bel .form-control:focus,
.form-control.bel:focus {
  border-color: var(--color-primary);
}
.typeahead {
  width: 100%;
}
#searchcontainer .searchInput,
.searchcontainer .searchInput {
  width: calc(100% - 72px);
  outline: none;
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
  transform: translateX(5px);
  background-color: #E8E8E8 !important;
  padding-left: 32px;
}
#searchcontainer .searchInput + .input-group-append,
.searchcontainer .searchInput + .input-group-append {
  background-color: #E8E8E8 !important;
  border-bottom-right-radius: 8px;
  border-top-right-radius: 8px;
  border: 1px solid transparent;
}
#searchcontainer .searchInput:focus + .input-group-append,
.searchcontainer .searchInput:focus + .input-group-append {
  border-color: var(--color-primary);
}
#searchcontainer .btn-action,
.searchcontainer .btn-action {
  padding: 10px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  background-color: #E8E8E8;
  cursor: pointer;
}
#searchcontainer .btn-action > span,
.searchcontainer .btn-action > span {
  font-size: 16px;
  color: #666666;
}
#searchcontainer .btn-action:hover,
.searchcontainer .btn-action:hover {
  background-color: #E8E8E8 !important;
}
#searchcontainer .btn-action:hover > span,
.searchcontainer .btn-action:hover > span {
  color: var(--color-primary) !important;
}
#searchcontainer .btn-action[aria-expanded=true] > span,
.searchcontainer .btn-action[aria-expanded=true] > span {
  color: var(--color-primary);
}
#searchcontainer .btn-action[aria-expanded=false] > span,
.searchcontainer .btn-action[aria-expanded=false] > span {
  color: #666666;
}
#searchcontainer .btn-action:focus,
.searchcontainer .btn-action:focus {
  box-shadow: none !important;
  color: var(--color-primary);
}
#searchcontainer .combobox-wrapper::before,
.searchcontainer .combobox-wrapper::before,
#searchcontainer #combobox-wrapper::before,
.searchcontainer #combobox-wrapper::before {
  position: absolute;
  top: calc(50% - 8px);
  z-index: 1;
  left: 13px;
  color: #666666;
}
.multi-input {
  display: block;
  width: 100%;
  background-color: white;
}
.multi-input.readonly {
  background-color: #E9ECEF;
}
.multi-input,
.multi-input.input {
  padding: 8px 5px;
}
.multi-input .multi-input__pill {
  display: inline-block;
  background-color: var(--color-primary-faded);
  border: 0.9px solid var(--color-primary);
  box-sizing: border-box;
  border-radius: 1em;
  padding: 0.2em 0.2em 0.2em 0.5em;
  line-height: 1;
  margin: 4px;
  font-size: 11px;
}
.multi-input .multi-input__pill .multi-input__pill__text {
  color: var(--color-primary);
  vertical-align: text-top;
}
.multi-input .multi-input__pill .multi-input__pill__icon {
  color: var(--color-primary);
  cursor: pointer;
  font-size: 1.2em;
}
.multi-input .multi-input__pill .multi-input__pill__icon:hover {
  color: brightness(var(--color-primary), 90%);
}
.multi-input .multi-input__input {
  border: 0;
  outline: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  width: 100%;
  margin: 5px;
  min-width: 16ch;
  background-color: initial !important;
}
.multi-input .multi-input__input:focus {
  border: initial;
}
.multi-input .multi-input__input ~ .input-group-append {
  display: none;
}
.multi-input.readonly .multi-input__input {
  background-color: #E9ECEF;
}
.multi-input.readonly .multi-input__input::placeholder {
  color: #E9ECEF;
}
.multi-input.readonly .multi-input__pill__text {
  margin-right: 4px;
}
.multi-input.readonly .multi-input__pill__icon {
  display: none;
}
.multi-input .multi-input__list {
  list-style: none;
  position: absolute;
  z-index: 1;
  display: block;
  font-size: 11px;
}
.multi-input .combobox-container {
  min-width: 12rem;
}
.resize-none {
  resize: none;
}
.resize-vertical {
  resize: vertical;
}
input[type=text]:focus ~ .input-group-append > .dropdown-toggle {
  border: 1px solid var(--color-primary);
  border-left: 0px;
}
#internalViewModelContext {
  background: white;
}
#internalViewModelContext .header-main {
  position: sticky;
  top: 0;
  z-index: 10;
}
@media (min-width: 992px) {
  #internalViewModelContext .search-bar {
    background: white;
    border-top: 1.5rem solid;
    border-bottom: 1.5rem solid;
    border-right: 10rem solid;
    border-left: 20rem solid;
    border-color: white;
    position: sticky;
    top: 3.5rem;
    z-index: 2;
  }
  #internalViewModelContext .explorer-header {
    position: sticky;
    top: 9.5rem;
    z-index: 9;
    background: white;
  }
}
@media (max-width: 992px) {
  #internalUserViewModelContext .explorer-table {
    overflow-x: auto;
  }
  #internalUserViewModelContext .container-fluid {
    width: 1000px;
  }
}
#externalViewModelContext {
  background: white;
}
#externalViewModelContext .header-main {
  position: sticky;
  top: 0;
  z-index: 10;
}
@media (min-width: 992px) {
  #externalViewModelContext {
    /*.search-bar {
            background: white;
            position: sticky;
            top: 4.5rem;
            z-index: 2;
        }*/
  }
  #externalViewModelContext .explorer-header {
    position: sticky;
    top: 72px;
    z-index: 9;
    background: white;
  }
}
@media (max-width: 992px) {
  #externalViewModelContext .explorer-table {
    overflow-x: auto;
  }
  #externalViewModelContext .container-fluid {
    width: 1000px;
  }
}
@media (max-width: 992px) {
  #termSheetElements table.table-borderless,
  #referentials table.table-borderless {
    width: 1000px;
  }
  #termSheetElements .container-fluid,
  #referentials .container-fluid {
    overflow-x: auto;
  }
  #termSheetElements .more,
  #referentials .more {
    opacity: 1;
  }
}
#referentials {
  background-color: #FFFFFF;
  /*   .header-main {
        position: sticky;
        top: 0;
        z-index: 10;
        background: white;
    }

  .search-bar {
        border-top: 1.5rem solid;
        border-bottom: 1.5rem solid;
        border-color: white;
        position: sticky;
        top: 4.6rem;
        z-index: 2;
        background: white;
    }*/
}
#referentials .containerTable {
  overflow: scroll;
  width: 100vw;
  height: calc(100vh - 228px);
}
#referentials thead {
  border-bottom: none;
  position: sticky;
  z-index: 9;
  top: 0;
  background-color: #FFFFFF;
}
#referentials thead th {
  font-weight: 700 !important;
}
#referentials thead th:before {
  content: "";
  width: 100%;
  border-bottom: 1px solid #E8E8E8;
  position: absolute;
  left: 0;
  bottom: 0;
}
#referentials tbody tr td:first-child,
#referentials thead tr td:first-child,
#referentials tbody tr th:first-child,
#referentials thead tr th:first-child {
  padding-left: 24px;
}
#referentials tbody tr td:nth-last-child(1),
#referentials thead tr td:nth-last-child(1),
#referentials tbody tr th:nth-last-child(1),
#referentials thead tr th:nth-last-child(1) {
  padding-right: 24px;
}
#referential {
  background: white;
}
#referential .header-main {
  position: sticky;
  top: 0;
  z-index: 10;
}
#referential .table-header {
  position: sticky;
  z-index: 11;
}
#referential .containerTable {
  overflow: scroll;
  width: 100vw;
  height: calc(100vh - 150px);
}
#referential table td {
  background-color: #FFFFFF;
  border: none;
}
#referential table .tdSticky {
  position: sticky;
  right: 0;
}
#referential table thead {
  border-bottom: none;
}
#referential table thead th {
  font-weight: 700 !important;
}
#referential table thead th:before {
  content: "";
  width: 100%;
  border-bottom: 1px solid #E8E8E8;
  position: absolute;
  left: 0;
  bottom: 0;
}
#referential table tr:hover td {
  color: #212529;
  background-color: #ECECEC;
}
#referential table tbody tr td:first-child,
#referential table thead tr td:first-child,
#referential table tbody tr th:first-child,
#referential table thead tr th:first-child {
  padding-left: 24px;
}
#referential table tbody tr td:nth-last-child(1),
#referential table thead tr td:nth-last-child(1),
#referential table tbody tr th:nth-last-child(1),
#referential table thead tr th:nth-last-child(1) {
  padding-right: 24px;
}
#referential table tbody tr td:nth-last-child(1):before,
#referential table thead tr td:nth-last-child(1):before,
#referential table tbody tr th:nth-last-child(1):before,
#referential table thead tr th:nth-last-child(1):before {
  content: "";
  height: 100%;
  border-left: 1px solid #E8E8E8;
  position: absolute;
  left: 0;
  top: 0;
}
#drive {
  justify-content: center;
  min-height: calc(100vh - 72px);
  /*.search-bar {
        position: sticky;
        top: 72px;
        z-index: 2;
        background-color: @white;
    }*/
}
#drive .header-main {
  position: sticky;
  top: 0;
  z-index: 10;
}
#drive .left-panel {
  width: calc(100% - 400px);
  min-height: calc(100vh - 72px);
}
#drive .left-panel .explorer-header {
  position: sticky;
  top: 72px;
  z-index: 1;
  background-color: #FFFFFF;
}
#drive .left-panel .explorer-header.isExtern {
  top: 72px;
}
#drive .left-panel #drivearea {
  margin-bottom: 50px;
}
#drive .right-panel {
  min-width: 338px;
  width: 20vw;
  background-color: #F5F5F5;
  padding: 25px;
  border-left: 1px solid #CCCCCC;
  overflow-y: auto;
}
#drive .right-panel .country-select.inside {
  width: 100%;
}
#drive .right-panel .country-select.inside .country-list {
  width: 170px;
}
#drive #table-name {
  margin-bottom: 10px;
}
#drive .sortable {
  cursor: pointer;
}
#drive .nego,
#drive .insignature,
#drive .signed,
#drive .rejected {
  margin-left: 25px;
}
#drive .drive__contract-title {
  color: #666666;
}
#drive .drive__contract-title > .material-icons-round {
  font-size: 16px !important;
  margin-left: 5px;
}
#drive .drive__contract-title p {
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  letter-spacing: 0.15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#drive .drive__nav {
  border-bottom: 1px solid #CCCCCC;
  width: 100%;
  margin-top: 27px;
}
#drive .drive__nav .nav-item a {
  text-align: center;
  color: var(--color-primary);
  padding: 12px;
  -webkit-border-radius: 6px 6px 0 0;
  -moz-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
}
#drive .drive__nav .nav-item a:hover {
  border-bottom: 2px solid var(--color-primary);
}
#drive .drive__nav .nav-item a.active {
  color: var(--color-primary);
  background-color: var(--color-primary-faded);
  border-bottom: 2px solid var(--color-primary);
}
#drive .drive__nav .nav-item a.disabled {
  color: #738699;
}
#drive div.drive__information-tab table {
  border-collapse: separate;
  border-spacing: 0 15px;
}
#drive div.drive__information-tab .info-header {
  color: #666666;
  font-weight: 600;
}
#drive .drive__activities-tab__box > .row {
  margin: 4px 0;
}
#drive .drive__activities-tab__box > .row:first-of-type {
  margin-top: 0;
}
#drive .drive__activities-tab__box > .row:last-of-type {
  margin-bottom: 0;
}
#drive div.drive__information-tab__row,
#drive div.drive__activities-tab__row,
#drive div.drive__workflow-tab__row,
#drive div.drive__information-tab__row--input,
#drive div.drive__activities-tab__row--input,
#drive div.drive__workflow-tab__row--input {
  vertical-align: baseline;
  align-items: center;
  margin-top: 4px;
  margin-bottom: 4px;
}
#drive div.drive__information-tab__row--input,
#drive div.drive__activities-tab__row--input,
#drive div.drive__workflow-tab__row--input,
#drive div.drive__information-tab__row--input--input,
#drive div.drive__activities-tab__row--input--input,
#drive div.drive__workflow-tab__row--input--input {
  vertical-align: middle;
  align-items: center;
}
#drive div.drive__information-tab__row--input .combobox-container .input-group,
#drive div.drive__activities-tab__row--input .combobox-container .input-group,
#drive div.drive__workflow-tab__row--input .combobox-container .input-group,
#drive div.drive__information-tab__row--input--input .combobox-container .input-group,
#drive div.drive__activities-tab__row--input--input .combobox-container .input-group,
#drive div.drive__workflow-tab__row--input--input .combobox-container .input-group {
  flex-wrap: initial;
}
#drive div.drive__information-tab__row--input .combobox-container input,
#drive div.drive__activities-tab__row--input .combobox-container input,
#drive div.drive__workflow-tab__row--input .combobox-container input,
#drive div.drive__information-tab__row--input--input .combobox-container input,
#drive div.drive__activities-tab__row--input--input .combobox-container input,
#drive div.drive__workflow-tab__row--input--input .combobox-container input {
  width: inherit;
}
#drive div.drive__information-tab__row--input input,
#drive div.drive__activities-tab__row--input input,
#drive div.drive__workflow-tab__row--input input,
#drive div.drive__information-tab__row--input--input input,
#drive div.drive__activities-tab__row--input--input input,
#drive div.drive__workflow-tab__row--input--input input {
  background-color: #E8E8E8;
}
#drive div.drive__information-tab__row--input input[type=text]:not(#infopanel-countryselector),
#drive div.drive__activities-tab__row--input input[type=text]:not(#infopanel-countryselector),
#drive div.drive__workflow-tab__row--input input[type=text]:not(#infopanel-countryselector),
#drive div.drive__information-tab__row--input--input input[type=text]:not(#infopanel-countryselector),
#drive div.drive__activities-tab__row--input--input input[type=text]:not(#infopanel-countryselector),
#drive div.drive__workflow-tab__row--input--input input[type=text]:not(#infopanel-countryselector) {
  padding: 0px 10px;
  height: 32px;
}
#drive div.drive__information-tab__row--input .input-group-append,
#drive div.drive__activities-tab__row--input .input-group-append,
#drive div.drive__workflow-tab__row--input .input-group-append,
#drive div.drive__information-tab__row--input--input .input-group-append,
#drive div.drive__activities-tab__row--input--input .input-group-append,
#drive div.drive__workflow-tab__row--input--input .input-group-append {
  height: 32px;
}
#drive div.drive__information-tab__box,
#drive div.drive__activities-tab__box,
#drive div.drive__workflow-tab__box {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background-color: #FFFFFF;
  padding: 4px 8px;
}
#drive div.drive__information-tab__Label,
#drive div.drive__activities-tab__Label,
#drive div.drive__workflow-tab__Label {
  font-size: 11px;
  color: #666666;
  font-weight: 400;
}
#drive div.drive__information-tab__path,
#drive div.drive__activities-tab__path,
#drive div.drive__workflow-tab__path {
  margin-bottom: 0.6rem;
}
#drive div.drive__information-tab__path > :not(:first-child),
#drive div.drive__activities-tab__path > :not(:first-child),
#drive div.drive__workflow-tab__path > :not(:first-child) {
  margin-left: 4px;
}
#drive div.drive__information-tab__path > *,
#drive div.drive__activities-tab__path > *,
#drive div.drive__workflow-tab__path > * {
  vertical-align: middle;
  line-height: 1;
}
#drive div.drive__information-tab__user__name,
#drive div.drive__activities-tab__user__name,
#drive div.drive__workflow-tab__user__name {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
}
#drive .drive__workflow-tab__box {
  padding: 16px !important;
}
#drive .grey-link {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  text-decoration-line: underline;
  color: black;
}
#drive .avatar {
  background-color: var(--color-primary);
  color: white;
}
#drive .avatar::after {
  content: none;
}
#drive .close-panel {
  color: #A2A2A2;
}
.dropdown-menu.dropdown-menu-right.rightclick-menu .dropdown-item {
  padding: 10px;
}
.rightclick-menu {
  background-color: #FFFFFF;
  color: #666666;
  width: 216px;
  font-size: 11px;
  font-weight: 400;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.14), 0px 3px 14px rgba(0, 0, 0, 0.12), 0px 5px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.14), 0px 3px 14px rgba(0, 0, 0, 0.12), 0px 5px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.14), 0px 3px 14px rgba(0, 0, 0, 0.12), 0px 5px 5px rgba(0, 0, 0, 0.2);
  z-index: 199;
  padding: 8px 0;
  border: none;
}
.rightclick-menu .item,
.rightclick-menu .dropdown-item {
  color: #666666;
  padding: 9px 0px 9px 13px;
  cursor: pointer;
}
.rightclick-menu .item:hover,
.rightclick-menu .dropdown-item:hover {
  background-color: #E8E8E8;
}
.rightclick-menu .item > .item {
  color: unset;
  background-color: transparent;
}
.rightclick-menu .delete:hover {
  background-color: rgba(229, 23, 92, 0.1) !important;
  color: #E5175C !important;
}
.rightclick-menu .divider {
  margin: 8px;
  border-bottom: 1px solid #CCCCCC;
}
.container-tree {
  width: 90%;
  height: 286px;
  border: 1px solid #DFDFDF;
  border-radius: 2px;
  padding: 8px;
  padding-left: 0px;
  box-sizing: content-box;
  -moz-user-select: none;
  /* Firefox */
  -webkit-user-select: none;
  /* Chrome, Safari, Opéra depuis la version 15 */
  -ms-user-select: none;
  /* Internet explorer depuis la version 10 et Edge */
  user-select: none;
  /* Propriété standard */
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0px;
  color: #000000;
}
.container-tree .tree {
  height: inherit;
  overflow: auto;
  padding-left: 10px;
}
.container-tree .tree .tree-chevron {
  width: 37px;
}
.container-tree .tree .tree-chevron .fa-folder {
  font-size: 14px;
}
.container-tree .tree .tree-folderName {
  width: calc(100% - 37px);
}
.container-tree .tree ul,
.container-tree .tree #myUL,
.container-tree .tree #myRootUL {
  list-style-type: none;
}
.container-tree .tree #myUL,
.container-tree .tree #myRootUL {
  margin: 0;
  padding: 0;
}
.container-tree .tree li {
  margin: 4px 8px 4px 0;
  padding: 2px 7px;
}
.container-tree .tree .nested {
  display: none;
  padding-left: 9px;
}
.folders-tree {
  height: 15rem;
  border: 1px solid #DFDFDF;
  box-sizing: border-box;
  border-radius: 2px;
  padding: 1rem;
  overflow: auto;
  font-size: 12px;
}
.small-folders-tree-wrapper .folders-tree {
  max-height: 20rem;
}
.folders-tree .folders-tree__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.folders-tree .folders-tree__list .folders-tree__list {
  padding-left: 0.8rem;
}
.folders-tree .folders-tree__list .folder-tree__folder {
  margin-bottom: 0.3rem;
  border-radius: 3px;
}
.folders-tree .folders-tree__list .folder-tree__folder.selected {
  background: #F3F3F3;
}
.folders-tree .folders-tree__list .folder-tree__folder .folder-tree__angle-icon {
  font-size: 1.4em;
  width: 1.2em;
  height: 1.2em;
  line-height: 1;
  text-align: center;
  border-radius: 3px;
  border: 2px solid transparent;
}
.folders-tree .folders-tree__list .folder-tree__folder .folder-tree__angle-icon.disabled {
  color: #6c757d;
}
.folders-tree .folders-tree__list .folder-tree__folder .folder-tree__angle-icon:hover:not(.disabled) {
  color: var(--color-primary);
}
.folders-tree .folders-tree__list .folder-tree__folder .folder-tree__folder-icon {
  font-size: 1.2em;
  width: 1.2em;
}
.folders-tree .folders-tree__list .folder-tree__folder .folder-tree__folder-img {
  font-size: 1.2em;
  width: 1.1em;
  margin-top: -2px;
}
.folders-tree .folders-tree__list .folder-tree__folder .folder-tree__text-wrapper:hover .folder-tree__folder-icon {
  color: var(--color-primary);
}
.folders-tree .folders-tree__list .folder-tree__folder .folder-tree__text-wrapper:hover .folder-tree__folder-img {
  filter: invert(23%) sepia(54%) saturate(1131%) hue-rotate(125deg) brightness(93%) contrast(101%);
}
.item-selected {
  background-color: #F3F3F3 !important;
}
#drive-drop-file {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: visibility 175ms, opacity 175ms;
  display: table;
  text-shadow: 1px 1px 2px #000;
  color: #fff;
  font-size: 24px;
}
#drive-drop-file-text {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  transition: font-size 175ms;
}
/* EXPLORER TABLE */
.explorer-header > div > div {
  cursor: pointer;
}
.multiselect-container li:hover {
  background-color: #CDDFEA;
}
.explorer-row {
  text-decoration: none;
  cursor: pointer;
  color: #2f373d;
}
@media (max-width: 850px) {
  .explorer-header > div,
  .explorer-row > div {
    padding-left: 10px;
  }
}
.context-menu {
  min-width: 175px;
  border-radius: 3px;
  border: 1px solid #d5dce0;
  background-color: #fff;
  display: none;
  z-index: 1000;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  top: 18px;
}
#statusSelect {
  padding: 9px 0;
}
#statusSelect .checkmark {
  top: initial;
  left: initial;
}
#statusSelect > * {
  display: flex;
  padding: 10px;
}
.folder-frozen-img {
  font-size: 1.2em;
  width: 1.1em;
  margin-top: -2px;
}
.folder-tree__child-img {
  font-size: 1.2em;
  width: 1em;
  margin-top: -2px;
  margin-left: 3px;
  margin-right: 3px;
}
#SearchDropdownHistory > .historyContent {
  max-height: calc(100vh - 300px);
  overflow-y: auto;
}
#SearchDropdownHistory .row:hover {
  background-color: var(--color-primary-faded);
}
#SearchDropdownContent,
#SearchDropdownHistory {
  transform: translateX(5px);
  transition-duration: 0.5s;
  position: absolute;
  background-color: #F5F5F5;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  width: calc(100% - 5px) !important;
  font-size: 11px;
  z-index: 99;
}
#SearchDropdownContent .dropdown-toggle ~ .dropdown-menu,
#SearchDropdownHistory .dropdown-toggle ~ .dropdown-menu {
  min-width: 213px;
  border: none;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.14), 0px 3px 14px rgba(0, 0, 0, 0.12), 0px 5px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.14), 0px 3px 14px rgba(0, 0, 0, 0.12), 0px 5px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.14), 0px 3px 14px rgba(0, 0, 0, 0.12), 0px 5px 5px rgba(0, 0, 0, 0.2);
}
#SearchDropdownContent .dropdown-toggle ~ .dropdown-menu .dropdown-item,
#SearchDropdownHistory .dropdown-toggle ~ .dropdown-menu .dropdown-item {
  font-size: 11px;
  color: #666666;
  display: flex;
  align-items: center;
  padding: 8px 28px 8px 8px;
}
#SearchDropdownContent .dropdown-toggle ~ .dropdown-menu .dropdown-item span,
#SearchDropdownHistory .dropdown-toggle ~ .dropdown-menu .dropdown-item span {
  margin-top: 3px;
}
#SearchDropdownContent .dropdown-toggle ~ .dropdown-menu .dropdown-item .control__indicator,
#SearchDropdownHistory .dropdown-toggle ~ .dropdown-menu .dropdown-item .control__indicator {
  top: 7px;
  right: 10px;
  left: initial;
}
#SearchDropdownContent .dropdown-toggle ~ .dropdown-menu .dropdown-item:hover,
#SearchDropdownHistory .dropdown-toggle ~ .dropdown-menu .dropdown-item:hover {
  background-color: var(--color-primary-faded);
  color: var(--color-primary);
}
#SearchDropdownContent .dropdown-toggle ~ .dropdown-menu .border-bottom,
#SearchDropdownHistory .dropdown-toggle ~ .dropdown-menu .border-bottom {
  border-bottom: solid 1px #CCCCCC !important;
}
#SearchDropdownContent .dropdown-toggle ~ .dropdown-menu .last-dropdown-item,
#SearchDropdownHistory .dropdown-toggle ~ .dropdown-menu .last-dropdown-item,
#SearchDropdownContent .dropdown-toggle ~ .dropdown-menu .dropdown-item-no-hover,
#SearchDropdownHistory .dropdown-toggle ~ .dropdown-menu .dropdown-item-no-hover {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: bold;
}
#SearchDropdownContent .dropdown-toggle ~ .dropdown-menu .last-dropdown-item > p,
#SearchDropdownHistory .dropdown-toggle ~ .dropdown-menu .last-dropdown-item > p,
#SearchDropdownContent .dropdown-toggle ~ .dropdown-menu .dropdown-item-no-hover > p,
#SearchDropdownHistory .dropdown-toggle ~ .dropdown-menu .dropdown-item-no-hover > p {
  cursor: pointer;
  padding: 8px;
}
#SearchDropdownContent .dropdown-toggle ~ .dropdown-menu .last-dropdown-item > p:hover,
#SearchDropdownHistory .dropdown-toggle ~ .dropdown-menu .last-dropdown-item > p:hover,
#SearchDropdownContent .dropdown-toggle ~ .dropdown-menu .dropdown-item-no-hover > p:hover,
#SearchDropdownHistory .dropdown-toggle ~ .dropdown-menu .dropdown-item-no-hover > p:hover {
  text-decoration: underline;
}
#SearchDropdownContent .dropdown-toggle ~ .dropdown-menu .dropdown-item-no-hover,
#SearchDropdownHistory .dropdown-toggle ~ .dropdown-menu .dropdown-item-no-hover {
  padding: 8px;
}
#SearchDropdownContent .dropdown-toggle ~ .dropdown-menu .dropdown-item-no-hover > p:hover,
#SearchDropdownHistory .dropdown-toggle ~ .dropdown-menu .dropdown-item-no-hover > p:hover {
  text-decoration: none;
}
#selectMultipleOptionsList #selectMultipleOptions {
  width: 100%;
  background-color: #F5F5F5;
  border: 1px solid #000000;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.14), 0px 3px 14px rgba(0, 0, 0, 0.12), 0px 5px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.14), 0px 3px 14px rgba(0, 0, 0, 0.12), 0px 5px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.14), 0px 3px 14px rgba(0, 0, 0, 0.12), 0px 5px 5px rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  max-height: 20.7em;
  overflow-y: auto;
}
#selectMultipleOptionsList .control {
  padding-right: 20px;
  padding-left: initial;
}
#selectMultipleOptionsList .control__indicator {
  left: initial;
  right: 0;
  top: 5px;
}
#selectMultipleOptionsList .control input:checked ~ span {
  color: var(--color-primary);
}
.folder-tree__child.selected {
  background-color: rgba(79, 31, 198, 0.3);
}
@media (max-width: 992px) {
  #drive .right-panel {
    width: 100vw;
    position: absolute;
    border-left: none;
    z-index: 98;
    height: 100%;
  }
  #drive .drive-elem > .more {
    opacity: 1;
    color: var(--color-primary);
  }
}
* {
  user-drag: none;
  -webkit-user-drag: none;
}
html {
  position: relative;
  min-height: 100%;
}
body {
  padding: 0 !important;
  margin: 0 !important;
  width: 100%;
  height: initial !important;
  font-style: normal;
  font-size: 11px;
  line-height: 16px;
  font-family: "Poppins", "sans-serif";
}
body main {
  min-height: calc(100vh - 72px);
  background-color: #FFFFFF;
}
body main > * {
  flex-grow: 1;
}
.body-full-height {
  min-height: calc(100vh - 200px);
}
body#home main {
  min-height: calc(100vh - 140px);
}
body#home .custom-popover {
  background-color: initial;
  top: 55px;
}
body#home .custom-popover > div {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
body#home .custom-popover:after {
  display: none;
}
.tooltip {
  font-size: 12px !important;
}
a,
a:hover {
  text-decoration: none;
  color: var(--color-primary);
}
p {
  margin-bottom: initial;
}
li {
  list-style-type: none;
}
.list-type-disc > li {
  list-style-type: disc;
}
[data-icon-before]::before {
  content: attr(data-icon-before);
  font-family: "Material Icons Round";
  font-size: 16px;
  vertical-align: text-bottom;
  margin-right: 4px;
}
[data-icon-after]::after {
  content: attr(data-icon-after);
  font-family: "Material Icons Round";
  font-size: 16px;
  vertical-align: text-bottom;
  margin-right: 4px;
}
[aria-label="Close"] {
  position: absolute;
  right: 10px;
}
.header-main {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 21px;
  background-color: #F5F5F5;
  border-bottom: 1px solid #CCCCCC;
}
.path {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.path a {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 11px;
  line-height: 16px;
  color: #666666;
}
.path a:first-child {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.15px;
  color: #666666 !important;
}
.path a:last-child {
  color: #1F1F1F;
}
.path a::before {
  color: #666666;
  margin: 0 8px 0 4px;
  font-size: 24px;
}
.powered-logo {
  width: 90px;
  height: 30px;
  margin: 30px 0px 0 20px;
}
.modal {
  z-index: 99999;
}
.font-weight-500 {
  font-weight: 500;
}
.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: 0.25rem !important;
}
.pointer {
  cursor: pointer;
}
.fs-11 {
  font-size: 11px !important;
}
.fs-12 {
  font-size: 12px !important;
}
.fs-13 {
  font-size: 13px !important;
}
.fs-14 {
  font-size: 14px !important;
}
.fs-15 {
  font-size: 15px !important;
}
.fs-16 {
  font-size: 16px !important;
}
.fs-18 {
  font-size: 18px;
}
.fs-20 {
  font-size: 20px;
}
.no-select {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
.hide-important {
  display: none !important;
}
.text-underline {
  text-decoration: underline;
}
.text-underline-hoverable:hover {
  text-decoration: underline !important;
}
#left-workflow-panel.menu.active .add_margin {
  margin-bottom: 0 !important;
}
.rotate-45 {
  transform: rotate(45deg);
}
.rotate-90 {
  transform: rotate(90deg);
}
.rotate-180 {
  transform: rotate(180deg);
}
.rotate-270 {
  transform: rotate(270deg);
}
.daterangepicker {
  z-index: 5 !important;
}
.daterangepicker td.in-range:not(.off, .active) {
  background-color: var(--color-primary-faded);
}
.modal-backdrop + .modal-backdrop {
  opacity: 0;
}
p[required]:after,
label[required]:after {
  content: " *";
  color: #E5175C;
  font-size: 13px;
}
.btn.purple {
  color: var(--color-primary) !important;
}
.btn.purple:hover {
  color: #FFF !important;
}
.avatar span {
  color: white !important;
}
.ui-front {
  z-index: 10000 !important;
}
/********** INPUT FILE **********/
.input-file-label {
  height: 2.4rem;
}
.input-file-label .file {
  display: none;
}
.input-file-label .file-name {
  flex-grow: 1;
  overflow: hidden;
  border: 1px solid #dadada;
  border-radius: 2px 0 0 2px;
  padding: 0.8em 0 0 0.8em;
  border-right: none;
  color: #495057;
}
.input-file-label .btn-file {
  transform: translateX(-1px);
  border: none;
  padding: 11px 35px 14px 35px;
  box-sizing: border-box;
  background-color: var(--color-primary);
  transition: all 0.6s;
  color: #FFF;
  font-weight: 700;
  border-radius: 2px;
}
.input-file-label .btn-file.focus,
.input-file-label .btn-file:focus {
  box-shadow: 0 0 0 0.2rem rgba(var(--color-primary-rgb-values), 25%) !important;
}
/********** INPUT **********/
input[type=text],
input[type=password],
input[type=number],
input[type=email],
input[type=number],
input[type=tel],
textarea[type=textarea],
select,
.input {
  outline: none;
  font-size: 11px;
  box-shadow: initial;
  background-color: rgba(102, 102, 102, 0.08);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  padding: 8px;
  color: #1F1F1F !important;
  border: 1px solid transparent;
}
input[type=text].reset-padding,
input[type=password].reset-padding,
input[type=number].reset-padding,
input[type=email].reset-padding,
input[type=number].reset-padding,
input[type=tel].reset-padding,
textarea[type=textarea].reset-padding,
select.reset-padding,
.input.reset-padding {
  padding: 0.375rem 0.75rem;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=tel]:focus,
textarea[type=textarea]:focus,
select:focus,
.input:focus,
input[type=text].focus,
input[type=password].focus,
input[type=number].focus,
input[type=email].focus,
input[type=number].focus,
input[type=tel].focus,
textarea[type=textarea].focus,
select.focus,
.input.focus {
  box-shadow: none;
  border: 1px solid var(--color-primary);
  border-color: var(--color-primary);
}
.danger input[type=text]:focus,
.danger input[type=password]:focus,
.danger input[type=number]:focus,
.danger input[type=email]:focus,
.danger input[type=number]:focus,
.danger input[type=tel]:focus,
.danger textarea[type=textarea]:focus,
.danger select:focus,
.danger .input:focus,
.danger input[type=text].focus,
.danger input[type=password].focus,
.danger input[type=number].focus,
.danger input[type=email].focus,
.danger input[type=number].focus,
.danger input[type=tel].focus,
.danger textarea[type=textarea].focus,
.danger select.focus,
.danger .input.focus {
  border-color: #C40F11;
}
input[type=text].disabled,
input[type=password].disabled,
input[type=number].disabled,
input[type=email].disabled,
input[type=number].disabled,
input[type=tel].disabled,
textarea[type=textarea].disabled,
select.disabled,
.input.disabled,
input[type=text]:disabled,
input[type=password]:disabled,
input[type=number]:disabled,
input[type=email]:disabled,
input[type=number]:disabled,
input[type=tel]:disabled,
textarea[type=textarea]:disabled,
select:disabled,
.input:disabled,
input[type=text].disabled:hover,
input[type=password].disabled:hover,
input[type=number].disabled:hover,
input[type=email].disabled:hover,
input[type=number].disabled:hover,
input[type=tel].disabled:hover,
textarea[type=textarea].disabled:hover,
select.disabled:hover,
.input.disabled:hover,
input[type=text]:disabled:hover,
input[type=password]:disabled:hover,
input[type=number]:disabled:hover,
input[type=email]:disabled:hover,
input[type=number]:disabled:hover,
input[type=tel]:disabled:hover,
textarea[type=textarea]:disabled:hover,
select:disabled:hover,
.input:disabled:hover {
  color: #666666 !important;
  opacity: 1;
}
.no-resize {
  resize: none;
}
.input-group-text {
  font-size: 12px;
}
.combobox-container {
  width: 100%;
}
.combobox-container .dropdown-item {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  padding: 5px 10px;
}
.combobox-container .input-group input {
  flex-grow: 1;
}
.input-group-append {
  margin-left: -6px;
}
.input-group-append .input-group-text,
.input-group-append .btn {
  border-top-right-radius: 6px !important;
  border-bottom-right-radius: 6px !important;
}
::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {
  color: #959595;
}
select {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background-color: #E8E8E8 !important;
  color: #666666 !important;
  appearance: none;
  position: relative;
  cursor: pointer;
  padding: 8px 30px 8px 8px;
  line-height: initial;
}
select[disabled] {
  background-color: #E9ECEF;
  cursor: unset;
}
.custom-inputSelect {
  position: relative;
  line-height: initial;
}
.custom-inputSelect.customBgGrey select,
.custom-inputSelect.customBgGrey a {
  background-color: rgba(102, 102, 102, 0.08) !important;
}
.custom-inputSelect.customBgDarkGrey::before {
  background-color: #E8E8E8 !important;
}
.custom-inputSelect.customBgDarkGrey select,
.custom-inputSelect.customBgDarkGrey a {
  background-color: transparent !important;
}
.custom-inputSelect select,
.custom-inputSelect a {
  background-color: transparent !important;
  z-index: 2;
}
.custom-inputSelect::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #FFFFFF;
  border-radius: 6px;
}
.custom-inputSelect::after {
  content: "\e5c5";
  border: none;
  font-family: "Material Icons Round";
  font-size: 24px;
  width: 16px;
  margin: 0;
  display: block;
  color: #666666;
  position: absolute;
  top: calc(50% - 12px);
  right: 11px;
  z-index: 1;
}
/********** BUTTON **********/
.btn {
  display: flex;
  justify-content: center;
}
.btn.focus,
.btn:focus {
  box-shadow: 0 0 0 0.2rem rgba(var(--color-primary-rgb-values), 25%) !important;
}
.btn,
.btn input[type=submit] {
  background-color: var(--color-primary);
  color: #FFFFFF;
  border: none;
  border-radius: 100px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  padding: 8px 16px;
  cursor: pointer;
}
.btn:hover,
.btn input[type=submit]:hover {
  color: #FFFFFF;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12)), var(--color-primary);
}
.btn.btn-sm {
  padding: 0.25rem 0.5rem;
  line-height: 1.5;
  min-width: unset;
}
.btn.cancel {
  background-color: #E2E2E2 !important;
  color: #636363 !important;
}
.btn.red {
  background-color: #E5175C !important;
  color: #fff !important;
}
.btn.disabled,
.btn:disabled,
.btn.disabled:hover,
.btn:disabled:hover {
  background: #9E9E9E !important;
  color: #E3E2E3 !important;
  opacity: 1;
  box-shadow: none !important;
}
.btn.disabled[data-toggle="tooltip"] {
  cursor: default;
  pointer-events: initial !important;
}
.warning .btn,
.btn.warning {
  background-color: #FFB81C !important;
}
.modal .btn:not(.btn-sm) {
  padding-left: 1rem;
  padding-right: 1rem;
  min-width: 6rem;
}
.danger .btn,
.btn.danger {
  box-shadow: 0 0 0 0.2rem face(#E5175C, 25%) !important;
  background-color: #E5175C;
}
.danger .btn.only-text,
.btn.danger.only-text {
  color: #C40F11;
  background-color: transparent;
}
.btn.btn-success {
  background-color: #91D754 !important;
}
.btn.btn-modal {
  width: 100%;
  min-width: 320px !important;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  font-weight: 500;
  text-transform: uppercase;
  border: solid 1px transparent;
}
.btn.btn-modal:hover {
  border: solid 1px;
}
.btn-outline {
  background-color: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary) !important;
}
.btn-outline:hover {
  color: inherit;
  background: inherit;
}
.copyToClipboardBtn {
  position: relative;
}
.copyToClipboardBtn.active:before {
  content: "\e876";
  font-family: "Material Icons Round";
  position: absolute;
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background-color: #FFFFFF;
  border-radius: 50px;
}
.btn-close {
  font-size: 16px !important;
  cursor: pointer;
  margin-left: 6px;
}
.input-group-text.dropdown-toggle::after {
  content: "\e5c5";
  font-size: 16px;
}
.dropdown-toggle {
  display: flex;
  align-items: center;
}
.dropdown-toggle::after {
  border: none;
  font-family: "Material Icons Round";
  font-size: 24px;
  width: 16px;
  margin: 0;
}
.dropdown-toggle[aria-expanded=false]::after {
  content: "\e5c5";
}
.dropdown-toggle[aria-expanded=true]::after {
  content: "\e5c7";
}
.dropdown-toggle ~ .dropdown-menu .dropdown-item {
  font-size: 11px;
  color: #666666;
  display: flex;
  align-items: center;
  padding: 4px 10px;
}
.dropdown-toggle ~ .dropdown-menu .dropdown-item span {
  margin-top: 3px;
}
.dropdown-toggle ~ .dropdown-menu .dropdown-item:hover {
  background-color: #E8E8E8;
  color: #666666;
}
.dropdown-toggle ~ .dropdown-menu .dropdown-item[data-icon]::before {
  content: attr(data-icon);
  font-family: "Material Icons Round";
  font-size: 16px;
  vertical-align: text-bottom;
  margin-right: 6px;
}
@media (max-width: 576px) {
  .btn.btn-modal {
    min-width: initial !important;
  }
}
/********** CHECKBOXES AND RADIO  **********/
/*
<div class="control-group">

    <label class="control control--checkbox">     First checkbox
      <input type="checkbox" checked="checked"/>
      <div class="control__indicator"></div>
    </label>

    <label class="control control--checkbox">     Second checkbox
      <input type="checkbox"/>
      <div class="control__indicator"></div>
    </label>

    <label class="control control--checkbox">     Disabled
      <input type="checkbox" disabled="disabled"/>
      <div class="control__indicator"></div>
    </label>

    <label class="control control--checkbox">     Disabled & checked
      <input type="checkbox" disabled="disabled" checked="checked"/>
      <div class="control__indicator"></div>
    </label>

 </div>
*/
.control,
.control-label {
  display: block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
  cursor: pointer;
  vertical-align: middle;
}
.control input,
.control-label input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.control__indicator,
.checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 13px;
  width: 13px;
  background-color: #FFFFFF;
  border: 1px solid;
  border-radius: 3px;
  border-color: #666666;
}
.control--radio .control__indicator {
  border-radius: 50%;
}
.control input:checked ~ .control__indicator,
.control-label input:checked ~ .control__indicator {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.control input:checked ~ span,
.control-label input:checked ~ span {
  color: var(--color-primary);
}
.control.faded {
  opacity: 0.4;
}
/*
.control input:checked ~ .control__indicator,
.control-label input:checked ~ .control__indicator.faded {
    background: var(--color-primary-faded);
    border-color: var(--color-primary-faded);
}*/
.control input:disabled ~ .control__indicator,
.control-label input:disabled ~ .control__indicator {
  background: #fff;
  opacity: 0.6;
  pointer-events: none;
  border-color: #dadada;
}
.control__indicator:after,
.checkmark:after {
  content: '';
  position: absolute;
  display: none;
}
.control input:checked ~ .control__indicator:after,
.control-label input:checked ~ .control__indicator:after,
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}
.control--checkbox .control__indicator:after,
.checkbox-container .checkmark:after {
  font-family: "Material Icons Round";
  left: 0.5px;
  top: -2.5px;
  content: "\e5ca";
  font-size: 9px;
  color: #FFFFFF;
  font-weight: 100;
}
.control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b;
}
.control input[type=radio]:checked ~ .control__indicator,
.control-label input[type=radio]:checked ~ .control__indicator {
  background: #ffffff;
}
.control--radio .control__indicator:after {
  left: calc(50% - 3.5px);
  top: calc(50% - 3.5px);
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background: var(--color-primary);
}
.control--radio input:disabled ~ .control__indicator:after {
  background: #7b7b7b;
}
/*Custom CHeckBox
---------------------------------------------------------------*/
/* The container */
.checkbox-container {
  display: block;
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark-nego {
  border: 1.5px solid #F19813;
  border-radius: 3px;
  background-color: white;
}
.checkmark-rejected {
  border: 1.5px solid #E5175C;
  border-radius: 3px;
  background-color: white;
}
.checkmark-insignature {
  border: 1.5px solid #0D99FF;
  border-radius: 3px;
  background-color: white;
}
.checkmark-signed {
  border: 1.5px solid #91D754;
  border-radius: 3px;
  background-color: white;
}
/* When the checkbox is checked, add a background color */
.checkbox-container input:checked ~ .checkmark {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.checkbox-container input:checked ~ .checkmark-nego {
  background-color: #F19813;
  border-color: #F19813;
}
.checkbox-container input:checked ~ .checkmark-rejected {
  background-color: #E5175C;
  border-color: #E5175C;
}
.checkbox-container input:checked ~ .checkmark-insignature {
  background-color: #0D99FF;
  border-color: #0D99FF;
}
.checkbox-container input:checked ~ .checkmark-signed {
  background-color: #91D754;
  border-color: #91D754;
}
.checkbox-container input:checked ~ .checkmark-disabled {
  background-color: #666666;
  border-color: #666666;
}
/********** SCROLL BAR  **********/
::-webkit-scrollbar,
::-webkit-scrollbar-track {
  width: 9px;
  height: 9px;
  background-color: #EEEEEE;
  border-radius: 40px;
}
::-webkit-scrollbar-thumb {
  border-radius: 40px;
  background-color: #9E9E9E;
  border: 1px solid #EEEEEE;
}
* {
  scrollbar-color: #9E9E9E;
  scrollbar-width: thin;
}
/********** FORM  **********/
.form-group {
  display: flex;
  flex-direction: column;
}
/********** Border  **********/
.border {
  border: 1px solid #DADADA;
  border-radius: 2px;
}
/********** Full screen card container **********/
.card-container {
  background: #FFFFFF;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.0976016);
  border-radius: 3px;
  margin: auto;
  margin-top: auto;
  height: calc(100vh - 300px);
}
.bottom-px-0 {
  bottom: 0px;
}
.bottom-px-1 {
  bottom: 5px;
}
.bottom-0 {
  bottom: 0 !important;
}
.bottom-50 {
  bottom: 50% !important;
}
.bottom-100 {
  bottom: 100% !important;
}
.start-0 {
  left: 0 !important;
}
.start-50 {
  left: 50% !important;
}
.start-100 {
  left: 100% !important;
}
.end-0 {
  right: 0 !important;
}
.end-50 {
  right: 50% !important;
}
.end-100 {
  right: 100% !important;
}
.validation-summary-errors ul {
  background-color: rgba(229, 23, 92, 0.1);
  color: #E5175C;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 10px 16px;
  font-size: 11px;
  line-height: 16px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  margin: 0;
}
.validation-summary-errors ul li {
  margin-bottom: 3px;
  list-style-type: disc;
  margin-left: 10px;
}
.validation-summary-errors ul li:last-child {
  margin-bottom: 0px;
}
.field-validation-error {
  background-color: rgba(229, 23, 92, 0.1);
  color: #E5175C;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 10px 16px;
  font-size: 11px;
  line-height: 16px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  margin: 0;
  margin-bottom: 10px;
}
.ui-state-active {
  border: 0px !important;
  background: #e0dbee !important;
  color: #333333 !important;
}
.ui-state-active span[data-bind*="displayName"] {
  font-weight: bold;
}
#templatedrive .header-main {
  position: sticky;
  top: 0;
  z-index: 10;
}
@media (max-width: 992px) {
  #templatedrive .header-main {
    top: 72px;
  }
  #templatedrive .explorer-header {
    top: 144px !important;
  }
}
@media (max-width: 767px) {
  #templatedrive .explorer-header {
    position: initial !important;
  }
}
#templatedrive .explorer-header {
  position: sticky;
  top: 72px;
  z-index: 9;
  background: white;
}
#templatedrive .last-modification {
  color: #636363;
}
#templatedrive .divider {
  margin: 8px;
  border-bottom: 1px solid #CCCCCC;
}
#templatedrive .dropdown-item {
  padding: 10px;
}
/* EXPLORER TABLE */
.multiselect-container li:hover {
  background-color: #CDDFEA;
}
@media (max-width: 850px) {
  .explorer-header > div,
  .explorer-row > div {
    padding-left: 10px;
  }
}
.explorer-header {
  width: initial;
  margin: 0 auto;
  padding: 13px 24px;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  color: #666666;
  border-bottom: 1px solid #E8E8E8;
}
.explorer-header .arrow_downward,
.explorer-header .arrow_upward {
  font-size: 16px;
}
.drive-elem {
  padding: 10px 24px;
  cursor: pointer;
  margin: 0;
}
.drive-elem :first-child p {
  font-size: 11px;
}
.drive-elem :first-child p:not(.txt-red) {
  color: #666666;
}
.drive-elem > .pl-0 .material-icons-round,
.drive-elem > .pl-0 .material-icons-outlined {
  font-size: 16px;
  margin-right: 7px;
}
.drive-elem > .pl-0 .material-icons-round:not(.txt-red),
.drive-elem > .pl-0 .material-icons-outlined:not(.txt-red) {
  color: #666666;
}
.drive-elem > * {
  display: flex;
  align-items: center;
}
.drive-elem > .more {
  align-items: center;
  display: flex;
  color: #FFFFFF;
  opacity: 0;
}
@media (max-width: 992px) {
  .drive-elem > .more {
    opacity: 1;
    color: var(--color-primary);
  }
}
.drive-elem:hover,
.drive-elem-hovered:not(span) {
  background-color: rgba(0, 0, 0, 0.075);
}
.drive-elem:hover > .more,
.drive-elem-hovered:not(span) > .more {
  opacity: 1;
  color: #666666;
}
.drive-elem.selected {
  background-color: var(--color-primary-faded);
  color: var(--color-primary) !important;
}
.drive-elem.selected > .more {
  opacity: 1;
  color: var(--color-primary);
}
.more:focus {
  opacity: 1;
}
#admin .admin-card {
  background-color: rgba(var(--color-primary-rgb-values), 6%);
  padding: 34px;
  border-radius: 12px;
  width: 367px;
  height: 223px;
  max-height: 223px;
  border: none;
  margin: 15px 0;
}
#admin .admin-card-title {
  color: var(--color-primary);
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 17px;
}
@media (max-width: 576px) {
  #admin .admin-card {
    width: 100%;
    height: 223px;
  }
}
#EditWorkflow .left-panel-workflow,
#EditContractTermSheet .left-panel-workflow {
  background-color: #F5F5F5;
  border-right: 1px solid #CCCCCC;
}
@media (min-width: 992px) {
  #EditWorkflow .left-panel-workflow,
  #EditContractTermSheet .left-panel-workflow {
    min-height: calc(100vh - 146px);
    overflow: auto;
    max-height: calc(100vh - 146px);
  }
  #EditWorkflow .left-panel-workflow ~ section,
  #EditContractTermSheet .left-panel-workflow ~ section {
    overflow: auto;
    max-height: calc(100vh - 146px);
  }
}
#EditWorkflow .selectContributorRights,
#EditContractTermSheet .selectContributorRights {
  height: 37px;
}
@media (max-width: 992px) {
  #EditWorkflow,
  #EditContractTermSheet {
    padding: 0;
  }
  #EditWorkflow .content-subtitle.col-12,
  #EditContractTermSheet .content-subtitle.col-12 {
    position: sticky;
    top: 78px;
    background-color: #FFFFFF;
    z-index: 9;
  }
  #EditWorkflow .btnexpandmore[aria-expanded="false"] > .ariatrue,
  #EditContractTermSheet .btnexpandmore[aria-expanded="false"] > .ariatrue {
    display: none;
  }
  #EditWorkflow .btnexpandmore[aria-expanded="false"] > .ariafalse,
  #EditContractTermSheet .btnexpandmore[aria-expanded="false"] > .ariafalse {
    display: block;
  }
  #EditWorkflow .btnexpandmore[aria-expanded="true"] > .ariatrue,
  #EditContractTermSheet .btnexpandmore[aria-expanded="true"] > .ariatrue {
    display: block;
  }
  #EditWorkflow .btnexpandmore[aria-expanded="true"] > .ariafalse,
  #EditContractTermSheet .btnexpandmore[aria-expanded="true"] > .ariafalse {
    display: none;
  }
}
@media (min-width: 992px) {
  .nav-tabs:not(.bootstrap-nav-tabs) {
    display: block;
  }
}
.nav-tabs:not(.bootstrap-nav-tabs) #sortable {
  overflow-x: hidden;
}
.nav-tabs:not(.bootstrap-nav-tabs) li {
  width: inherit;
  padding: 4px 0;
  position: relative;
}
.nav-tabs:not(.bootstrap-nav-tabs) li .dragndrop {
  cursor: grab;
}
.nav-tabs:not(.bootstrap-nav-tabs) li a {
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  padding: 16px;
  min-height: 92px;
  position: relative;
  margin: 0 24px;
}
.nav-tabs:not(.bootstrap-nav-tabs) li a .header-card {
  padding-right: 16px;
}
.nav-tabs:not(.bootstrap-nav-tabs) li a .header-card .tab-title {
  letter-spacing: 0.25px;
  font-weight: 600;
  color: #666666;
}
.nav-tabs:not(.bootstrap-nav-tabs) li a .header-card .control--radio {
  position: absolute;
  right: 10px;
  top: 16px;
}
.nav-tabs:not(.bootstrap-nav-tabs) li a.active {
  border-color: var(--color-primary);
}
.nav-tabs:not(.bootstrap-nav-tabs) li a .tag {
  margin-top: 8px;
}
#EditContractTermSheet .dragndrop {
  margin-left: 10px;
}
#EditContractTermSheet .nav-tabs:not(.bootstrap-nav-tabs) li a {
  margin: 0 24px 0 10px;
}
#EditContractTermSheet .nav-tabs:not(.bootstrap-nav-tabs) li a .tag {
  margin-right: 8px;
  display: block;
}
#EditContractTermSheet .nav-tabs:not(.bootstrap-nav-tabs) li a .iconTab {
  width: 15px;
  height: 15px;
}
.template-tab-pane .all_icon label {
  margin: 5px;
  width: 30px;
  height: 30px;
  background-color: var(--color-primary-faded);
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.template-tab-pane .all_icon [type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.template-tab-pane .all_icon .addBorder {
  border: 1px solid var(--color-primary);
}
.template-tab-pane .content-title {
  font-weight: bold;
  font-size: 15px;
  line-height: 18px;
  color: var(--color-primary);
}
.template-tab-pane .content-subtitle {
  font-weight: bold;
  font-size: 13px;
  line-height: 16px;
  color: #3D3935;
}
.template-tab-pane .content-subtitle .label-title {
  width: 150px;
}
.template-tab-pane .tab-delete {
  letter-spacing: 0.75px;
  text-transform: uppercase;
  color: #E5175C;
}
.tab-pane:not(.bootstrap-tab-pane) {
  min-height: 650px;
  height: 100%;
}
.tab-pane:not(.bootstrap-tab-pane).minHeightInitial {
  min-height: initial;
}
.tab-pane:not(.bootstrap-tab-pane) .all_icon {
  flex-wrap: wrap;
  transform: translateX(-5px);
}
.tab-pane:not(.bootstrap-tab-pane) .all_icon label {
  margin: 5px;
  width: 30px;
  height: 30px;
  background-color: var(--color-primary-faded);
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.tab-pane:not(.bootstrap-tab-pane) .all_icon [type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.tab-pane:not(.bootstrap-tab-pane) .all_icon .addBorder {
  border: 1px solid var(--color-primary);
}
.tab-pane:not(.bootstrap-tab-pane) .content-title {
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.25px;
}
.tab-pane:not(.bootstrap-tab-pane) .content-subtitle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 64px;
  border: 1px solid #E8E8E8;
  padding: 16px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.tab-pane:not(.bootstrap-tab-pane) .content-subtitle span {
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.25px;
}
.tab-pane:not(.bootstrap-tab-pane) .content-subtitle span.subtitle {
  min-width: 100px;
}
.tab-pane:not(.bootstrap-tab-pane) .isMandatory {
  letter-spacing: 0.75px;
  text-transform: uppercase;
}
.tab-pane:not(.bootstrap-tab-pane) .tab-delete {
  letter-spacing: 0.75px;
  text-transform: uppercase;
  color: #E5175C;
}
.tab-pane:not(.bootstrap-tab-pane) .border-right {
  border-right: 1px solid #E8E8E8 !important;
}
@media (max-width: 576px) {
  .tab-pane:not(.bootstrap-tab-pane) .border-right {
    border-right: none !important;
  }
}
.tab-pane:not(.bootstrap-tab-pane) .border-top {
  border-top: 1px solid #E8E8E8 !important;
}
.select__icon {
  color: var(--color-primary);
  right: 13px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 15px;
}
.ui-autocomplete-input {
  padding: 5px !important;
}
#add-workflow-contributor-modal .ui-autocomplete-input {
  padding: 8px !important;
}
#templateAutoCompletionViewModelContext .header-main {
  position: sticky;
  top: 0;
  z-index: 10;
}
.template-auto-completion__card {
  border: 1px solid #DEDEDE;
  border-left: 7px solid var(--color-primary);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.template-auto-completion__card__wrapper {
  width: 100%;
  padding: 24px;
}
.template-auto-completion__card__overlay {
  display: none;
  position: absolute;
}
.template-auto-completion__card__title {
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 18px;
  color: var(--color-primary);
}
.template-auto-completion__card__body {
  padding: 0 20px;
  margin-top: 30px;
  display: flex;
  flex-direction: column-reverse;
  max-height: calc(100vh - 300px);
}
.template-auto-completion__card__body .combobox-container > .input-group > input {
  line-height: normal;
}
.template-auto-completion__card__subbody {
  overflow-y: auto;
  overflow-x: hidden;
  min-height: calc(100vh - 300px);
}
.template-auto-completion__card.saving .template-auto-completion__card__wrapper {
  opacity: 0.2;
}
.template-auto-completion__card.saving .template-auto-completion__card__overlay {
  display: block;
}
.template-auto-completion .completion-header {
  font-size: 13px;
}
.template-auto-completion .completion__col--icons {
  width: 6em;
  font-size: 0.8rem;
}
.template-auto-completion .firstcompletion .combobox-container .input-group {
  flex-wrap: nowrap;
}
.table {
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  color: #666666 !important;
}
thead {
  border-bottom: 1px solid #E8E8E8;
}
th {
  font-weight: 400;
}
.froala-editor li {
  list-style-type: unset;
}
.new-content__card {
  background: #FFFFFF;
  border-radius: 8px;
  filter: drop-shadow(0px 2px 9px rgba(0, 0, 0, 0.12));
  min-width: 256px;
  padding: 16px 24px 24px;
}
.new-content__card__title {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #666666;
  text-align: center;
  margin-bottom: 16px;
}
.new-content__card__label {
  display: block;
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 11px;
  line-height: 16px;
  color: #666666;
  padding-left: 4px;
  margin-top: 8px;
  margin-bottom: 0;
}
.new-content__card__input {
  width: 100%;
}
.new-content__card__article {
  padding: 4px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-size: 10px;
  line-height: 24px;
  letter-spacing: 0.15px;
  color: #000000;
}
.new-content__middle {
  background: var(--color-primary);
  padding: 1px;
  border-radius: 10px 10px;
}
.new-content__banner {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  line-height: 15px;
  text-align: center;
  color: #FFFFFF;
}
#searchCriterion-UserGroup #SearchCriterionUserGroup {
  width: 100%;
  background-color: #F5F5F5;
  border: 1px solid #000000;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.14), 0px 3px 14px rgba(0, 0, 0, 0.12), 0px 5px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.14), 0px 3px 14px rgba(0, 0, 0, 0.12), 0px 5px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.14), 0px 3px 14px rgba(0, 0, 0, 0.12), 0px 5px 5px rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  max-height: 20.7em;
  overflow-y: auto;
}
#searchCriterion-UserGroup .control {
  padding-right: 20px;
  padding-left: initial;
}
#searchCriterion-UserGroup .control__indicator {
  left: initial;
  right: 0;
  top: 5px;
}
#searchCriterion-UserGroup .control input:checked ~ span {
  color: var(--color-primary);
}
.grid-UserGroup {
  background-color: #FFFFFF;
  border: 1px solid #CCCCCC;
  border-radius: 6px;
  height: 200px;
  overflow-y: auto;
}
.grid-UserGroup div:hover {
  background-color: var(--color-primary-faded);
  color: var(--color-primary);
}
.fs-1 {
  font-size: 2.5rem !important;
}
.fs-2 {
  font-size: 2rem !important;
}
.fs-3 {
  font-size: 1.75rem !important;
}
.fs-4 {
  font-size: 1.5rem !important;
}
.fs-5 {
  font-size: 1.25rem !important;
}
.fs-6 {
  font-size: 1rem !important;
}
#integrations .integrationCard {
  background-color: #F5F5F5;
  padding: 16px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
#integrations #timelineIntegration > div {
  display: flex;
  position: relative;
}
#integrations #timelineIntegration > div:before {
  content: "";
  background-color: #4F1FC6;
  width: 5px;
  height: calc(100% - 20px);
  bottom: -18px;
  position: absolute;
  left: 23px;
  z-index: 0;
}
#integrations #timelineIntegration > div:last-child:before {
  content: "";
  display: none;
}
#integrations #timelineIntegration .number {
  background-color: #4F1FC6;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  min-width: 50px;
  min-height: 50px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  z-index: 1;
}
#integrations #timelineIntegration .cardTimeline {
  background-color: #F5F5F5;
  padding: 16px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  margin-left: 16px;
  width: 100%;
}
#integrations .ContainerTableProviderSamples {
  height: 300px;
  overflow: auto;
  padding: 0;
}
#integrations .ContainerTableProviderSamples thead {
  position: sticky;
  top: 0;
  background: #F5F5F5;
}
.modal {
  overflow: hidden;
}
.modal .modal-title {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.15px;
  color: #1F1F1F;
}
.modal.danger .modal .modal-title {
  color: #E5175C;
}
.modal .modal-dialog {
  margin-top: 8em;
  max-width: max-content;
}
.modal .modal-dialog--lg {
  max-width: 1000px;
}
.modal .modal-header {
  padding: 24px 40px;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.15px;
  color: #1F1F1F;
  border-bottom: 0;
}
.modal .modal-header i {
  font-size: 1rem;
}
.modal .modal-header i.fa-times {
  color: #A2A2A2;
}
.modal .modal-header__link {
  color: #0384C6;
}
.modal .modal-header__link > span {
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 0;
  text-decoration-line: underline;
}
.modal .modal-header__link > i {
  font-size: 10px;
}
.modal .modal-body {
  padding: 0 40px 24px;
  font-size: 12px;
  color: #666666;
}
.modal .modal-content {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  border: none;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.14), 0px 3px 14px rgba(0, 0, 0, 0.12),0px 5px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.14), 0px 3px 14px rgba(0, 0, 0, 0.12),0px 5px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.14), 0px 3px 14px rgba(0, 0, 0, 0.12),0px 5px 5px rgba(0, 0, 0, 0.2);
}
.modal .modal-card,
.modal .big-square-button {
  border: 3px solid var(--color-primary);
  max-width: 200px;
  border-radius: 5px;
  width: 100%;
  padding: 0px 31px;
}
.modal.danger .modal-header {
  color: #E5175C;
}
.modal-title-border {
  border-top: 1px solid var(--color-primary);
  width: 100%;
}
.modal-signatory {
  border-radius: 3px;
  padding: 15px;
  width: 100%;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.12), 0px 2px 2px rgba(0, 0, 0, 0.24);
}
.modal .dropdown-toggle,
.language-select-wrapper .dropdown-toggle {
  background-color: #F3F3F3;
  border-color: transparent;
  border-left: 0px;
  width: 35px;
  cursor: pointer;
}
.modal .dropdown-toggle::after,
.language-select-wrapper .dropdown-toggle::after {
  content: "\e5c5";
  color: #666666;
  position: absolute;
  right: 12px;
}
.modal .dropdown-toggle:hover,
.language-select-wrapper .dropdown-toggle:hover {
  background-color: #F5F5F5;
}
.combobox-container .utf-remove::after {
  content: "\f00d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
#externalshared-modal .title {
  font-weight: bold;
  color: #636363;
}
#externalshared-modal a {
  color: black;
  text-decoration: underline;
}
#externalshared-modal .sharedItem {
  border-bottom: 2px solid #F2F2F2;
}
.modal-backdrop.show {
  opacity: 0.2;
}
@media (max-width: 576px) {
  .modal {
    padding: 0;
  }
  .modal .modal-dialog {
    margin: 15px auto;
    width: 95% !important;
    max-width: initial;
  }
  #login-modal input.w-50,
  #login-modal label.w-50 {
    width: 90% !important;
  }
}
.term-sheet-wrapper .term-sheet {
  --term-sheet-primary-color: var(--color-primary);
  --term-sheet-danger-color: #E5175C;
  --term-sheet-text-color: #6E6E6E;
  font-size: 12px;
  margin: auto;
}
#termSheetId {
  width: initial;
}
#termSheetId .term-sheet__button {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 12px;
}
/*.term-sheet {
    font-size: 12px;
    width: 23em;
    min-width: 23em;
    --term-sheet-primary-color: black;
    --term-sheet-danger-color: black;
    --term-sheet-text-color: black;
}*/
.term-sheet {
  color: #666666;
}
.term-sheet__card {
  position: relative;
  background: #FFFFFF;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 8px;
}
.term-sheet__card > .row {
  flex-wrap: nowrap;
}
.term-sheet__card .dragitem-icon {
  width: 11px;
  height: 40px;
}
.term-sheet__title {
  font-weight: bold;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 1.5rem !important;
}
.term-sheet__main-icon {
  font-size: 16px;
  text-align: right;
}
.term-sheet__edit-icons {
  position: absolute;
  top: 6px;
  right: 6px;
}
.term-sheet__edit-icon {
  font-size: 12px !important;
  margin-left: 4px;
  cursor: pointer;
  color: var(--term-sheet-primary-color);
}
.term-sheet__edit-icon--danger {
  color: var(--term-sheet-danger-color);
}
.term-sheet__left {
  text-align: center;
  margin-right: 4px;
  width: 24px;
}
.term-sheet__data + .term-sheet__data {
  margin-top: 0.4em;
}
.term-sheet__buttons {
  padding: 1em 4px;
}
.term-sheet__button {
  color: var(--term-sheet-primary-color);
  font-weight: bold;
  cursor: pointer;
}
.term-sheet__button i {
  font-size: 1.3em;
  margin-right: 4px;
}
.term-sheet__button > * {
  vertical-align: middle;
}
.term-sheet__reminder-wrapper {
  margin-left: -1em;
}
.term-sheet__reminder {
  margin-top: 1em;
  font-size: 0.9em;
  cursor: pointer;
}
.term-sheet__reminder__left {
  white-space: nowrap;
}
.term-sheet__reminder__left > * {
  vertical-align: middle;
}
.term-sheet__reminder__input {
  background: #FFFFFF;
  border: 1px solid #DADADA;
  box-sizing: border-box;
  border-radius: 2px;
  padding: 0.4em 0.6em;
}
.term-sheet__reminder__input--number {
  text-align: center;
  margin: 0 0.2em;
  width: 3em;
}
.term-sheet__reminder__input--select {
  width: auto;
  margin-right: 0.2em;
}
.term-sheet__reminder__add {
  margin-top: 1em;
  font-size: 12px;
  color: var(--term-sheet-primary-color);
}
.term-sheet__reminder__add__text {
  cursor: pointer;
}
.term-sheet__modal__icons {
  background: #FFFFFF;
  box-sizing: border-box;
  border-radius: 2px;
  font-size: 16px;
  display: flex;
}
.term-sheet__modal__icons > * {
  width: 30px;
  height: 30px;
  background-color: var(--color-primary-faded);
  color: var(--color-primary);
  margin: 5px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.term-sheet__modal__icons.readonly > * {
  border-color: #9E9E9E !important;
  background-color: #E3E2E3 !important;
  color: #9E9E9E;
}
.term-sheet__modal__icons > .active {
  border: 1px solid var(--color-primary);
  cursor: pointer;
}
.term-sheet__element-text {
  max-height: 82px;
  overflow: hidden;
}
.term-sheet__element-text.expanded {
  max-height: unset;
  overflow: unset;
}
.term-sheet__element-text-expand {
  display: none;
  cursor: pointer;
}
.term-sheet__element-text-overflow .term-sheet__element-text-expand {
  display: inline-block;
}
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ellipsis-wrapper--no-height .lds-ellipsis {
  height: unset;
  transform: translate(0, -40px);
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--color-primary);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.danger .lds-ellipsis div {
  background: #C40F11;
}
.lds-ellipsis--white .lds-ellipsis div {
  background: white;
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
#modal-search-termsheets .search-option,
#search .search-option {
  display: inline-flex;
  border-radius: 6px;
  padding: 6px 8px;
  border: 1px solid #CCCCCC;
  color: #666666;
}
#modal-search-termsheets .search-option:hover,
#search .search-option:hover,
#modal-search-termsheets .search-option:focus,
#search .search-option:focus {
  border: 1px solid var(--color-primary);
  color: var(--color-primary) !important;
}
#modal-search-termsheets .search-option.InUse,
#search .search-option.InUse {
  border: solid 1px var(--color-primary);
  color: var(--color-primary);
}
#modal-search-termsheets .dropdown-toggle ~ .dropdown-menu,
#search .dropdown-toggle ~ .dropdown-menu,
#modal-search-termsheets .search-option ~ .dropdown-menu,
#search .search-option ~ .dropdown-menu,
#modal-search-termsheets .dropdown-toggle ~ .collapse,
#search .dropdown-toggle ~ .collapse,
#modal-search-termsheets .search-option ~ .collapse,
#search .search-option ~ .collapse,
#modal-search-termsheets .dropdown-toggle ~ .collapsing,
#search .dropdown-toggle ~ .collapsing,
#modal-search-termsheets .search-option ~ .collapsing,
#search .search-option ~ .collapsing {
  min-width: 300px;
  border: none;
  border-radius: 2px;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.14), 0px 3px 14px rgba(0, 0, 0, 0.12), 0px 5px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.14), 0px 3px 14px rgba(0, 0, 0, 0.12), 0px 5px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.14), 0px 3px 14px rgba(0, 0, 0, 0.12), 0px 5px 5px rgba(0, 0, 0, 0.2);
  background-color: white;
  z-index: 1;
}
#modal-search-termsheets .dropdown-toggle ~ .dropdown-menu .dropdown-item,
#search .dropdown-toggle ~ .dropdown-menu .dropdown-item,
#modal-search-termsheets .search-option ~ .dropdown-menu .dropdown-item,
#search .search-option ~ .dropdown-menu .dropdown-item,
#modal-search-termsheets .dropdown-toggle ~ .collapse .dropdown-item,
#search .dropdown-toggle ~ .collapse .dropdown-item,
#modal-search-termsheets .search-option ~ .collapse .dropdown-item,
#search .search-option ~ .collapse .dropdown-item,
#modal-search-termsheets .dropdown-toggle ~ .collapsing .dropdown-item,
#search .dropdown-toggle ~ .collapsing .dropdown-item,
#modal-search-termsheets .search-option ~ .collapsing .dropdown-item,
#search .search-option ~ .collapsing .dropdown-item {
  font-size: 11px;
  color: #666666;
  display: flex;
  align-items: center;
  padding: 8px 28px 8px 8px;
}
#modal-search-termsheets .dropdown-toggle ~ .dropdown-menu .dropdown-item span,
#search .dropdown-toggle ~ .dropdown-menu .dropdown-item span,
#modal-search-termsheets .search-option ~ .dropdown-menu .dropdown-item span,
#search .search-option ~ .dropdown-menu .dropdown-item span,
#modal-search-termsheets .dropdown-toggle ~ .collapse .dropdown-item span,
#search .dropdown-toggle ~ .collapse .dropdown-item span,
#modal-search-termsheets .search-option ~ .collapse .dropdown-item span,
#search .search-option ~ .collapse .dropdown-item span,
#modal-search-termsheets .dropdown-toggle ~ .collapsing .dropdown-item span,
#search .dropdown-toggle ~ .collapsing .dropdown-item span,
#modal-search-termsheets .search-option ~ .collapsing .dropdown-item span,
#search .search-option ~ .collapsing .dropdown-item span {
  margin-top: 3px;
}
#modal-search-termsheets .dropdown-toggle ~ .dropdown-menu .dropdown-item .control__indicator,
#search .dropdown-toggle ~ .dropdown-menu .dropdown-item .control__indicator,
#modal-search-termsheets .search-option ~ .dropdown-menu .dropdown-item .control__indicator,
#search .search-option ~ .dropdown-menu .dropdown-item .control__indicator,
#modal-search-termsheets .dropdown-toggle ~ .collapse .dropdown-item .control__indicator,
#search .dropdown-toggle ~ .collapse .dropdown-item .control__indicator,
#modal-search-termsheets .search-option ~ .collapse .dropdown-item .control__indicator,
#search .search-option ~ .collapse .dropdown-item .control__indicator,
#modal-search-termsheets .dropdown-toggle ~ .collapsing .dropdown-item .control__indicator,
#search .dropdown-toggle ~ .collapsing .dropdown-item .control__indicator,
#modal-search-termsheets .search-option ~ .collapsing .dropdown-item .control__indicator,
#search .search-option ~ .collapsing .dropdown-item .control__indicator {
  top: 7px;
  right: 10px;
  left: initial;
}
#modal-search-termsheets .dropdown-toggle ~ .dropdown-menu .dropdown-item:hover,
#search .dropdown-toggle ~ .dropdown-menu .dropdown-item:hover,
#modal-search-termsheets .search-option ~ .dropdown-menu .dropdown-item:hover,
#search .search-option ~ .dropdown-menu .dropdown-item:hover,
#modal-search-termsheets .dropdown-toggle ~ .collapse .dropdown-item:hover,
#search .dropdown-toggle ~ .collapse .dropdown-item:hover,
#modal-search-termsheets .search-option ~ .collapse .dropdown-item:hover,
#search .search-option ~ .collapse .dropdown-item:hover,
#modal-search-termsheets .dropdown-toggle ~ .collapsing .dropdown-item:hover,
#search .dropdown-toggle ~ .collapsing .dropdown-item:hover,
#modal-search-termsheets .search-option ~ .collapsing .dropdown-item:hover,
#search .search-option ~ .collapsing .dropdown-item:hover {
  background-color: var(--color-primary-faded);
  color: var(--color-primary);
}
#modal-search-termsheets .dropdown-toggle ~ .dropdown-menu .border-bottom,
#search .dropdown-toggle ~ .dropdown-menu .border-bottom,
#modal-search-termsheets .search-option ~ .dropdown-menu .border-bottom,
#search .search-option ~ .dropdown-menu .border-bottom,
#modal-search-termsheets .dropdown-toggle ~ .collapse .border-bottom,
#search .dropdown-toggle ~ .collapse .border-bottom,
#modal-search-termsheets .search-option ~ .collapse .border-bottom,
#search .search-option ~ .collapse .border-bottom,
#modal-search-termsheets .dropdown-toggle ~ .collapsing .border-bottom,
#search .dropdown-toggle ~ .collapsing .border-bottom,
#modal-search-termsheets .search-option ~ .collapsing .border-bottom,
#search .search-option ~ .collapsing .border-bottom {
  border-bottom: solid 1px #CCCCCC !important;
}
#modal-search-termsheets .dropdown-toggle ~ .dropdown-menu .last-dropdown-item,
#search .dropdown-toggle ~ .dropdown-menu .last-dropdown-item,
#modal-search-termsheets .search-option ~ .dropdown-menu .last-dropdown-item,
#search .search-option ~ .dropdown-menu .last-dropdown-item,
#modal-search-termsheets .dropdown-toggle ~ .collapse .last-dropdown-item,
#search .dropdown-toggle ~ .collapse .last-dropdown-item,
#modal-search-termsheets .search-option ~ .collapse .last-dropdown-item,
#search .search-option ~ .collapse .last-dropdown-item,
#modal-search-termsheets .dropdown-toggle ~ .collapsing .last-dropdown-item,
#search .dropdown-toggle ~ .collapsing .last-dropdown-item,
#modal-search-termsheets .search-option ~ .collapsing .last-dropdown-item,
#search .search-option ~ .collapsing .last-dropdown-item,
#modal-search-termsheets .dropdown-toggle ~ .dropdown-menu .dropdown-item-no-hover,
#search .dropdown-toggle ~ .dropdown-menu .dropdown-item-no-hover,
#modal-search-termsheets .search-option ~ .dropdown-menu .dropdown-item-no-hover,
#search .search-option ~ .dropdown-menu .dropdown-item-no-hover,
#modal-search-termsheets .dropdown-toggle ~ .collapse .dropdown-item-no-hover,
#search .dropdown-toggle ~ .collapse .dropdown-item-no-hover,
#modal-search-termsheets .search-option ~ .collapse .dropdown-item-no-hover,
#search .search-option ~ .collapse .dropdown-item-no-hover,
#modal-search-termsheets .dropdown-toggle ~ .collapsing .dropdown-item-no-hover,
#search .dropdown-toggle ~ .collapsing .dropdown-item-no-hover,
#modal-search-termsheets .search-option ~ .collapsing .dropdown-item-no-hover,
#search .search-option ~ .collapsing .dropdown-item-no-hover {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: bold;
}
#modal-search-termsheets .dropdown-toggle ~ .dropdown-menu .last-dropdown-item > p,
#search .dropdown-toggle ~ .dropdown-menu .last-dropdown-item > p,
#modal-search-termsheets .search-option ~ .dropdown-menu .last-dropdown-item > p,
#search .search-option ~ .dropdown-menu .last-dropdown-item > p,
#modal-search-termsheets .dropdown-toggle ~ .collapse .last-dropdown-item > p,
#search .dropdown-toggle ~ .collapse .last-dropdown-item > p,
#modal-search-termsheets .search-option ~ .collapse .last-dropdown-item > p,
#search .search-option ~ .collapse .last-dropdown-item > p,
#modal-search-termsheets .dropdown-toggle ~ .collapsing .last-dropdown-item > p,
#search .dropdown-toggle ~ .collapsing .last-dropdown-item > p,
#modal-search-termsheets .search-option ~ .collapsing .last-dropdown-item > p,
#search .search-option ~ .collapsing .last-dropdown-item > p,
#modal-search-termsheets .dropdown-toggle ~ .dropdown-menu .dropdown-item-no-hover > p,
#search .dropdown-toggle ~ .dropdown-menu .dropdown-item-no-hover > p,
#modal-search-termsheets .search-option ~ .dropdown-menu .dropdown-item-no-hover > p,
#search .search-option ~ .dropdown-menu .dropdown-item-no-hover > p,
#modal-search-termsheets .dropdown-toggle ~ .collapse .dropdown-item-no-hover > p,
#search .dropdown-toggle ~ .collapse .dropdown-item-no-hover > p,
#modal-search-termsheets .search-option ~ .collapse .dropdown-item-no-hover > p,
#search .search-option ~ .collapse .dropdown-item-no-hover > p,
#modal-search-termsheets .dropdown-toggle ~ .collapsing .dropdown-item-no-hover > p,
#search .dropdown-toggle ~ .collapsing .dropdown-item-no-hover > p,
#modal-search-termsheets .search-option ~ .collapsing .dropdown-item-no-hover > p,
#search .search-option ~ .collapsing .dropdown-item-no-hover > p {
  cursor: pointer;
  padding: 8px;
}
#modal-search-termsheets .dropdown-toggle ~ .dropdown-menu .last-dropdown-item > p:hover,
#search .dropdown-toggle ~ .dropdown-menu .last-dropdown-item > p:hover,
#modal-search-termsheets .search-option ~ .dropdown-menu .last-dropdown-item > p:hover,
#search .search-option ~ .dropdown-menu .last-dropdown-item > p:hover,
#modal-search-termsheets .dropdown-toggle ~ .collapse .last-dropdown-item > p:hover,
#search .dropdown-toggle ~ .collapse .last-dropdown-item > p:hover,
#modal-search-termsheets .search-option ~ .collapse .last-dropdown-item > p:hover,
#search .search-option ~ .collapse .last-dropdown-item > p:hover,
#modal-search-termsheets .dropdown-toggle ~ .collapsing .last-dropdown-item > p:hover,
#search .dropdown-toggle ~ .collapsing .last-dropdown-item > p:hover,
#modal-search-termsheets .search-option ~ .collapsing .last-dropdown-item > p:hover,
#search .search-option ~ .collapsing .last-dropdown-item > p:hover,
#modal-search-termsheets .dropdown-toggle ~ .dropdown-menu .dropdown-item-no-hover > p:hover,
#search .dropdown-toggle ~ .dropdown-menu .dropdown-item-no-hover > p:hover,
#modal-search-termsheets .search-option ~ .dropdown-menu .dropdown-item-no-hover > p:hover,
#search .search-option ~ .dropdown-menu .dropdown-item-no-hover > p:hover,
#modal-search-termsheets .dropdown-toggle ~ .collapse .dropdown-item-no-hover > p:hover,
#search .dropdown-toggle ~ .collapse .dropdown-item-no-hover > p:hover,
#modal-search-termsheets .search-option ~ .collapse .dropdown-item-no-hover > p:hover,
#search .search-option ~ .collapse .dropdown-item-no-hover > p:hover,
#modal-search-termsheets .dropdown-toggle ~ .collapsing .dropdown-item-no-hover > p:hover,
#search .dropdown-toggle ~ .collapsing .dropdown-item-no-hover > p:hover,
#modal-search-termsheets .search-option ~ .collapsing .dropdown-item-no-hover > p:hover,
#search .search-option ~ .collapsing .dropdown-item-no-hover > p:hover {
  text-decoration: underline;
}
#modal-search-termsheets .dropdown-toggle ~ .dropdown-menu .dropdown-item-no-hover > p:hover,
#search .dropdown-toggle ~ .dropdown-menu .dropdown-item-no-hover > p:hover,
#modal-search-termsheets .search-option ~ .dropdown-menu .dropdown-item-no-hover > p:hover,
#search .search-option ~ .dropdown-menu .dropdown-item-no-hover > p:hover,
#modal-search-termsheets .dropdown-toggle ~ .collapse .dropdown-item-no-hover > p:hover,
#search .dropdown-toggle ~ .collapse .dropdown-item-no-hover > p:hover,
#modal-search-termsheets .search-option ~ .collapse .dropdown-item-no-hover > p:hover,
#search .search-option ~ .collapse .dropdown-item-no-hover > p:hover,
#modal-search-termsheets .dropdown-toggle ~ .collapsing .dropdown-item-no-hover > p:hover,
#search .dropdown-toggle ~ .collapsing .dropdown-item-no-hover > p:hover,
#modal-search-termsheets .search-option ~ .collapsing .dropdown-item-no-hover > p:hover,
#search .search-option ~ .collapsing .dropdown-item-no-hover > p:hover {
  text-decoration: none;
}
#modal-search-termsheets select,
#search select {
  z-index: unset;
}
#modal-search-termsheets select.select--unit,
#search select.select--unit {
  width: 11ch;
}
#modal-search-termsheets .nav-tabs-search,
#search .nav-tabs-search {
  display: inline-flex;
  font-family: Lato;
  font-size: 12px;
}
#modal-search-termsheets .nav-tabs-search li:first-child,
#search .nav-tabs-search li:first-child {
  margin-left: 16px;
}
#modal-search-termsheets .nav-tabs-search li,
#search .nav-tabs-search li {
  margin: 0 10px;
}
#modal-search-termsheets .nav-tabs-search li a,
#search .nav-tabs-search li a {
  font-weight: bold;
  line-height: 14px;
  border-radius: 2px 2px 0 0;
  min-width: 150px;
  height: 37px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  background-color: #F0F5F4;
  color: var(--color-primary);
}
#modal-search-termsheets .nav-tabs-search li a.active,
#search .nav-tabs-search li a.active {
  color: white;
  background-color: var(--color-primary);
}
#modal-search-termsheets .tab-content .tab-pane,
#search .tab-content .tab-pane {
  border-top: 4px solid var(--color-primary);
  border-left: 1px solid #DEDEDE;
}
#modal-search-termsheets .tab-content .tab-pane .ContainerScroll,
#search .tab-content .tab-pane .ContainerScroll {
  max-height: 745px;
  overflow-y: auto;
}
#modal-search-termsheets .tab-content .searchInput,
#search .tab-content .searchInput {
  height: 38px;
  margin-bottom: 12px;
}
#modal-search-termsheets .tab-content .btn-search,
#search .tab-content .btn-search {
  width: 85px;
  height: 38px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
#modal-search-termsheets .no-result,
#search .no-result {
  margin: 60px auto auto;
}
#modal-search-termsheets .no-result p,
#search .no-result p {
  margin-top: 30px;
  font-weight: bold;
  font-size: 15px;
  line-height: 18px;
  color: #979797;
}
#modal-search-termsheets .left-search .SearchCard,
#search .left-search .SearchCard {
  min-height: 86px;
  margin: 5px 0;
  background-color: rgba(0, 86, 64, 0.06);
  border-radius: 12px;
}
#modal-search-termsheets .left-search .SearchCard .fa-search,
#search .left-search .SearchCard .fa-search {
  font-size: 36px;
  color: var(--color-primary);
}
#modal-search-termsheets .left-search .SearchCard h4,
#search .left-search .SearchCard h4 {
  color: var(--color-primary);
  margin-bottom: 4px;
}
#modal-search-termsheets .left-search .SearchCard .btn-outline-bel,
#search .left-search .SearchCard .btn-outline-bel {
  font-weight: bold;
  font-size: 9px;
  line-height: 11px;
  padding: 6px 10px 8px 9px;
  margin-right: 8px;
}
#modal-search-termsheets .right-search .btn.yellow,
#search .right-search .btn.yellow {
  background-color: #FFB81C;
  color: white !important;
}
#modal-search-termsheets .right-search .SearchCard,
#search .right-search .SearchCard {
  min-height: 107px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.0976016);
  border-radius: 3px;
  margin: 10px 0;
  padding: 15px 0;
}
#modal-search-termsheets .right-search .SearchCard .far,
#search .right-search .SearchCard .far {
  font-size: 29px;
}
#modal-search-termsheets .right-search .SearchCard h4,
#search .right-search .SearchCard h4 {
  color: #303030;
  margin-bottom: 8px;
}
#modal-search-termsheets .left-search .SearchCard,
#search .left-search .SearchCard,
#modal-search-termsheets .right-search .SearchCard,
#search .right-search .SearchCard {
  padding: 15px 0;
}
#modal-search-termsheets .left-search .SearchCard__icon,
#search .left-search .SearchCard__icon,
#modal-search-termsheets .right-search .SearchCard__icon,
#search .right-search .SearchCard__icon {
  color: var(--color-primary);
}
#modal-search-termsheets .left-search .SearchCard h4,
#search .left-search .SearchCard h4,
#modal-search-termsheets .right-search .SearchCard h4,
#search .right-search .SearchCard h4 {
  font-family: Montserrat;
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: -1px;
}
#modal-search-termsheets .left-search .SearchCard p,
#search .left-search .SearchCard p,
#modal-search-termsheets .right-search .SearchCard p,
#search .right-search .SearchCard p {
  color: #636363;
  line-height: 14px;
  font-weight: 400;
}
#modal-search-termsheets .criteria__select,
#search .criteria__select {
  width: 26ch;
}
#modal-search-termsheets .date-wrapper,
#search .date-wrapper {
  width: max(40%, 80px);
  min-width: 140px;
}
#modal-search-termsheets .country-select.inside,
#search .country-select.inside {
  width: 100%;
}
.select-wrapper {
  position: relative;
}
.select-wrapper .select__icon {
  color: var(--color-primary);
  right: 4px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
#statistics .tab-pane {
  border: 0;
  min-height: initial;
}
#statistics .search-card {
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  padding: 16px 24px;
}
#statistics .search-card h6 {
  height: 38px;
  letter-spacing: 0.25px;
  color: #1F1F1F;
  font-size: 12px;
}
#statistics select {
  background: #FFFFFF;
}
#statistics .dropdown-menu {
  font-size: unset;
}
#statistics.statistics-v2 .statistic-section .statistic-section-title {
  text-align: center;
  background-color: #F5F5F5;
  font-weight: bold;
  border-radius: 5px;
  font-size: 16px;
}
#statistics.statistics-v2 .sub-statistic-section {
  text-align: center;
}
#statistics.statistics-v2 .sub-statistic-section .sub-statistic-section-title {
  font-weight: bold;
  font-size: 16px;
}
#statistics.statistics-v2 .sub-statistic-section .sub-statistic-section-title hr {
  height: 0px;
  border: 1px solid #FFFFFF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
#statistics.statistics-v2 card:not(.chart-row) {
  min-width: 30em;
}
#statistics.statistics-v2 .chart-row .row {
  height: 25em;
}
#statistics.statistics-v2 card .bar-chart {
  max-height: 300px;
}
#statistics.statistics-v2 .card-data-value {
  color: var(--color-primary);
}
#statistics .cut-text {
  padding-right: 2em;
  overflow: hidden;
  text-overflow: ellipsis;
}
.error-card {
  background: #FFFFFF;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.0976016);
  border-radius: 3px;
  margin: auto;
  margin-top: auto;
  height: calc(100vh - 300px);
  font-weight: 900;
  padding: 5% 10%;
  height: initial;
}
.error-card .title {
  font-weight: 900;
  font-size: 50px;
  color: var(--color-primary);
}
.error-card .sub-message {
  font-size: 25px;
  color: var(--dark-grey);
  line-height: 24px;
}
.error-card a {
  font-size: 15px;
  line-height: 18px;
  text-align: center;
  text-decoration-line: underline;
  color: var(--color-primary);
}
#Error404 .title {
  font-size: 100px;
}
#CompatibilityMobile {
  display: flex;
  justify-content: center;
}
#CompatibilityMobile h1 {
  font-weight: 900;
  font-size: 20px;
  line-height: 24px;
  color: var(--color-primary);
}
#CompatibilityMobile p {
  color: #4A4A4A;
  font-size: 13px;
  font-weight: 400;
}
#CompatibilityMobile .devices {
  height: 170px;
  width: 100%;
}
#CompatibilityMobile .bg-green {
  height: 275px;
  width: 100vw;
  background-color: var(--color-primary);
}
#login .blockLogin {
  max-width: 430px;
  margin: auto;
  z-index: 3;
  position: relative;
}
#login h3 {
  color: #584AFC;
  font-weight: 500;
  font-size: 40px;
  z-index: 2;
  position: relative;
}
#login h4 {
  font-size: 22px;
  font-weight: 400;
  color: #584AFC;
}
#login h5 {
  font-weight: 500;
  font-size: 22px;
  z-index: 2;
  position: relative;
}
#login .btnSubmit {
  padding: 12px 24px;
  background: linear-gradient(270deg, #2956FF 0%, #9C60FF 100%);
  border-radius: 12px;
  font-size: 14px;
  text-transform: initial;
  color: #FFFFFF;
}
#login form input[type=submit] {
  padding: 12px 24px;
  background: linear-gradient(270deg, #2956FF 0%, #9C60FF 100%);
  border-radius: 12px;
  font-size: 14px;
  text-transform: initial;
}
#login form input {
  background-color: rgb(243 243 243);
}
#login form .forgotPassword {
  color: #584AFC;
  text-decoration: underline;
}
#containerImgBg {
  position: absolute;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  top: 0;
}
#containerImgBg #imgBgLeft {
  position: absolute;
  left: -290px;
  bottom: -60px;
  z-index: 0;
}
#containerImgBg #imgBgRight {
  position: absolute;
  right: -380px;
  top: -210px;
  transform: rotate(65deg);
  z-index: 0;
}
#left-panel {
  display: inline-block;
  background: #F3F3F3;
  width: 60%;
  height: 100%;
  padding: 11%;
}
#right-panel {
  display: inline-block;
  background: #FFFFFF;
  width: 40%;
}
#home {
  overflow-x: hidden;
}
#logo {
  /* logo-en */
  text-align: center;
  height: 160px;
  margin-top: 20%;
}
#connexion {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -2.66667px;
  color: var(--color-primary);
  white-space: nowrap;
  text-align: center;
  padding-top: 5%;
  margin-bottom: 5%;
  margin-top: 7%;
}
#connexion-interne,
#connexion-externe {
  width: fit-content;
}
@media (max-width: 768px) {
  #left-panel {
    display: none !important;
  }
  #home header {
    justify-content: center !important;
  }
  #external-login .right-panel .form-external-login {
    padding: 30px 15px !important;
  }
}
#external-login .left-panel {
  color: #000000;
}
#external-login .left-panel > div {
  background: url("/image/resine-purple.png") center top no-repeat;
  background-size: contain;
  max-width: 610px;
  margin: 0 auto;
  height: 100%;
}
#external-login .left-panel h3 {
  color: #584AFC;
  font-weight: 500;
  font-size: 40px;
}
#external-login .left-panel h4 {
  font-size: 22px;
}
#external-login .left-panel h4 span {
  color: #584AFC;
}
#external-login .left-panel p,
#external-login .left-panel a {
  font-weight: 400;
  font-size: 16px;
}
#external-login .left-panel a {
  color: #000000;
  text-decoration: underline;
}
#external-login .right-panel .form-external-login {
  padding: 30px;
  max-width: 487px;
  margin: 0 auto;
  border: 1px solid #584AFC;
  -webkit-box-shadow: 4px 6px 4px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 4px 6px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 4px 6px 4px rgba(0, 0, 0, 0.25);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
#external-login .right-panel .form-external-login .home-title {
  color: #584AFC;
  font-weight: 500;
  font-size: 25px;
  letter-spacing: 0.75px;
}
#external-login .right-panel .form-external-login form label:not(.control--checkbox) {
  color: #000000;
  font-weight: 700;
  font-size: 12px;
}
#external-login .right-panel .form-external-login form .input[readonly]:focus {
  border: 1px solid transparent;
}
#external-login .right-panel .form-external-login form .input[readonly],
#external-login .right-panel .form-external-login form .input[readonly]:hover {
  background-color: #E9ECEF;
}
#external-login .right-panel .form-external-login form input[type=submit] {
  padding: 12px 24px;
  background: linear-gradient(270deg, #2956FF 0%, #9C60FF 100%);
  border-radius: 12px;
  font-size: 14px;
  text-transform: initial;
}
.toggleShowPassword.dNonePassword,
.toggleHidePassword.dNonePassword {
  display: none;
}
.toggle-password {
  cursor: pointer;
  padding-top: 2px;
}
.toggle-password.fa-eye .toggleShowPassword,
.toggle-password.fa-eye-slash .toggleHidePassword {
  display: flex;
  font-family: "Poppins", "sans-serif";
  cursor: pointer;
}
#profile .profile-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/**
Color and opacity of items
 */
.deadline-item {
  background-color: #FFFFFF;
  border-left: 8px solid #0D99FF !important;
}
.reminder-item {
  background-color: #FFFFFF;
}
.reminder-item-body-true .reminder-item-title {
  color: #666666;
}
.deadline-item,
.reminder-item {
  margin-top: 10px;
}
.info-text {
  color: blueviolet;
  font-size: 10.5px;
}
/*
Items
 */
.deadline-item,
.reminder-item {
  border: 1px solid #CCCCCC;
  box-sizing: border-box;
  border-radius: 8px;
  font-size: 11px;
  color: #666666;
  /*    .reminder-item-text-reminder {
        color: @main-gray;
    }

    .deadline-item-text-deadline {
        color: @leftpanel-white;
    }

    .deadline-item-text {
        color: @leftpanel-white;
    }

    .reminder-item-text {
        color: @main-gray;
    }*/
}
.deadline-item-body,
.reminder-item-body {
  padding: 16px;
}
.deadline-item-body::after,
.reminder-item-body::after {
  content: "";
  width: 100%;
  height: 100%;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
}
.deadline-item-body .icon_priority,
.reminder-item-body .icon_priority {
  width: 14px;
  display: inline-flex;
  justify-content: center;
  margin-top: 0;
}
.deadline-item-date,
.reminder-item-date {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
  font-size: 11px;
  line-height: 16px;
  padding: 3px;
  margin: 8px 0;
}
.deadline-item-date.card-title,
.reminder-item-date.card-title {
  background-color: rgba(102, 102, 102, 0.08);
  color: #666666;
}
.deadline-item-title,
.reminder-item-title {
  color: #1F1F1F;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.25px;
  word-break: break-word;
}
.deadline-item .reminder-item-icons,
.reminder-item .reminder-item-icons {
  color: #636363;
}
.deadline-item-text-deadline,
.reminder-item-text-deadline,
.deadline-item-text-reminder,
.reminder-item-text-reminder {
  font-weight: 800;
}
.deadline-information span,
.reminder-information span {
  margin-bottom: 8px;
}
.deadline-information-isdone,
.reminder-information-isdone {
  font-size: 12px;
  font-weight: 700;
}
.deadline-information-isdone-date,
.reminder-information-isdone-date,
.deadline-information-isdone-user,
.reminder-information-isdone-user {
  font-size: 12px;
  font-weight: 400;
}
.deadline-information-isdone-true,
.reminder-information-isdone-true,
.deadline-information-isdone-false,
.reminder-information-isdone-false {
  font-size: 25px;
  opacity: 0.5;
}
.deadline-information-isdone-true,
.reminder-information-isdone-true {
  color: #0071B9;
  opacity: 1;
  background-color: #FBFBFB;
  border-radius: 999px;
}
.reminder-information i:not(:last-child) {
  margin-right: 2px;
}
.reminder-information-header {
  background-color: rgba(var(--color-primary-rgb-values), 6%);
  border-radius: 12px;
}
.reminder-information-dialog {
  width: 65%;
  max-width: 700px !important;
}
.reminder-information-content {
  min-height: 650px;
}
.reminder-information-priority-btn {
  display: flex;
  align-items: center;
  font-size: 10px;
  cursor: pointer;
  border: 1px solid #DADADA;
  border-radius: 2px;
  margin-right: 8px;
  padding: 4px 12px 4px 12px;
}
.reminder-information-priority-btn-selected {
  border: 1px solid var(--color-primary);
}
.reminder-information-priority-btn.readonly {
  background-color: #E9ECEF;
  cursor: unset;
}
.reminder-information .select-wrapper .select__icon {
  right: 4px;
}
#calendarViewModelContext .custom-popover {
  top: calc(100% + 22px);
  right: 0;
}
.calendar {
  margin: 0 auto;
  display: flex;
  min-height: calc(100vh - 72px);
}
.calendar h2 {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.15px;
  color: #666666 !important;
}
@media (min-width: 1200px) {
  .calendar > .row > :first-child {
    -ms-flex: 0 0 28%;
    flex: 0 0 28%;
    max-width: 28%;
  }
}
.calendar .deadlines-and-reminders {
  height: 100%;
  border-radius: 5px;
}
@media (min-width: 992px) {
  .calendar .deadlines-and-reminders .containerSortClick,
  .calendar .deadlines-and-reminders .containerFilterClick {
    position: relative;
  }
}
@media (max-width: 992px) {
  .calendar .deadlines-and-reminders .containerSortClick,
  .calendar .deadlines-and-reminders .containerFilterClick {
    position: initial;
  }
  .calendar .deadlines-and-reminders .containerSortClick .custom-popover,
  .calendar .deadlines-and-reminders .containerFilterClick .custom-popover {
    width: 100%;
  }
}
.calendar .deadlines-and-reminders .grid-header h2 {
  margin-bottom: 0;
}
.calendar .deadlines-and-reminders .grid-header .select-wrapper {
  display: inline-block;
}
.calendar .deadlines-and-reminders .grid-header .select-wrapper .select__icon {
  right: 8px;
}
.calendar .deadlines-and-reminders .grid-header select,
.calendar .deadlines-and-reminders .grid-header input[type="text"] {
  height: auto;
  padding: 0;
  font-size: 11px;
  line-height: 13px;
  color: #666666;
  padding: 4px 20px 4px 8px;
}
.calendar .deadlines-and-reminders .grid-header .select--year {
  width: 10ch;
}
.calendar .deadlines-and-reminders .grid-header__button {
  background-color: transparent;
  border: 0;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  transition: background-color 100ms;
  display: flex;
}
.calendar .deadlines-and-reminders .grid-header__button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.calendar .deadlines-and-reminders .month-timeline {
  background-color: #FFFFFF;
  margin-top: 7px;
}
.calendar .deadlines-and-reminders .month-timeline ol {
  list-style-type: none;
  padding: 0 4px;
  margin: 0;
  overflow-y: auto;
}
.calendar .deadlines-and-reminders .month-timeline ol::-webkit-scrollbar,
.calendar .deadlines-and-reminders .month-timeline ol::-webkit-scrollbar-track {
  height: 0;
}
.calendar .deadlines-and-reminders .month-timeline__chevron {
  font-size: 16px;
  padding-top: 0.2rem;
  color: #DADADA;
  cursor: pointer;
  transition: color 100ms;
}
.calendar .deadlines-and-reminders .month-timeline__chevron:hover {
  color: var(--color-primary);
}
.calendar .deadlines-and-reminders .month-timeline__month {
  text-align: center;
  color: var(--color-primary);
  padding: 12px;
  -webkit-border-radius: 6px 6px 0 0;
  -moz-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid transparent;
}
.calendar .deadlines-and-reminders .month-timeline__month:hover {
  border-color: var(--color-primary);
}
.calendar .deadlines-and-reminders .month-timeline__month.active {
  color: var(--color-primary);
  background-color: var(--color-primary-faded);
  border-color: var(--color-primary);
}
.calendar .deadlines-and-reminders .grid {
  border-top: 1px solid #CCCCCC;
  position: relative;
}
.calendar .deadlines-and-reminders .grid__week {
  font-style: normal;
  font-weight: normal;
  font-size: 11px;
  line-height: 16px;
  color: #666666;
  text-align: center;
  margin: 16px 0;
}
.calendar .deadlines-and-reminders .grid__items {
  margin: 10px 5px;
}
.calendar .deadlines-and-reminders .grid > div.row {
  overflow: auto;
  height: 100%;
  max-height: calc(100vh - 196px);
}
.calendar .deadlines-and-reminders .grid > div.row::-webkit-scrollbar {
  background: transparent;
}
.calendar .deadlines-and-reminders .grid > div.row::-webkit-scrollbar-track {
  margin-top: 20px;
}
.calendar .custom-popover--sort {
  width: 18em;
}
.calendar .custom-popover--filter {
  width: 37em;
  padding-right: 50px;
}
.calendar .custom-popover .custom-popover__title {
  font-weight: 600;
  font-size: 11px;
  line-height: 15px;
  color: #666666;
  margin-bottom: 11px;
}
.calendar__filter .icon-trash {
  color: #E5175C;
  margin-right: 10px;
  font-size: 16px;
  cursor: pointer;
}
.calendar__filter__criterion {
  margin: 6px 0;
}
.calendar__filter__criterion select,
.calendar__filter__criterion input[type="text"],
.calendar__filter__criterion .select-wrapper {
  width: 100%;
}
.calendar__filter__criterion .lds-ellipsis {
  transform: translate(0, -40px);
}
.calendar__filter__criterion .input-group-append {
  display: none;
}
.calendar__filter__add {
  font-weight: 500;
  font-style: normal;
  font-size: 11px;
  line-height: 13px;
  text-transform: uppercase;
  color: var(--color-primary);
}
.notifications {
  background-color: #F5F5F5;
  padding: 20px;
  max-height: calc(100vh - 108px);
  -webkit-border-radius: 0px 0px 8px 8px;
  -moz-border-radius: 0px 0px 8px 8px;
  border-radius: 0px 0px 8px 8px;
}
.notifications-container {
  height: calc(100% - 39px);
  overflow-y: auto;
  max-height: calc(100vh - 165px);
  padding: 0 8px;
}
.notifications h2 {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.15px;
  color: #666666 !important;
}
.notifications .notification {
  background-color: #FFFFFF;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  padding: 16px;
  position: relative;
  margin-bottom: 8px;
}
.notifications .notification:last-child {
  margin-bottom: 0 !important;
}
.notifications .notification--read {
  opacity: 0.5;
  border-left-color: transparent;
  background-color: rgba(196, 196, 196);
}
.notifications .notification__envelope {
  display: flex;
  align-items: center;
  color: #666666;
  cursor: pointer;
}
.notifications .notification__envelope:hover {
  filter: brightness(var(--color-primary), 90%);
}
.notifications .notification__envelope .material-icons-round {
  font-size: 16px;
}
.notifications .notification__date {
  color: #666666;
}
.notifications .notification__title {
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.25px;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #CCCCCC;
}
.notifications .notification .material-icons-round + ul,
.notifications .notification .icon + ul {
  list-style-type: none;
  padding-left: 0;
}
.notifications .notification ul {
  list-style-type: disc;
}
.notifications .notification ul li {
  list-style-type: inherit;
  color: #666666;
}
.notifications .notification a {
  display: inline-block;
}
.notifications .deadlines-and-reminders {
  height: 100%;
  border-radius: 5px;
}
.notifications .deadlines-and-reminders .grid-header h2 {
  margin-bottom: 0;
}
.notifications .deadlines-and-reminders .grid-header .select-wrapper {
  display: inline-block;
}
.notifications .deadlines-and-reminders .grid-header .select-wrapper .select__icon {
  right: 8px;
}
.notifications .deadlines-and-reminders .grid-header select,
.notifications .deadlines-and-reminders .grid-header input[type="text"] {
  height: auto;
  padding: 0;
  font-size: 11px;
  line-height: 13px;
  color: #666666;
  padding: 4px 20px 4px 8px;
}
.notifications .deadlines-and-reminders .grid-header .select--year {
  width: 10ch;
}
.notifications .deadlines-and-reminders .grid-header__button {
  background-color: transparent;
  border: 0;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  transition: background-color 100ms;
  display: flex;
}
.notifications .deadlines-and-reminders .grid-header__button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.notifications .deadlines-and-reminders .month-timeline {
  background-color: #FFFFFF;
  margin-top: 7px;
}
.notifications .deadlines-and-reminders .month-timeline ol {
  list-style-type: none;
  padding: 0 4px;
  margin: 0;
}
.notifications .deadlines-and-reminders .month-timeline__chevron {
  font-size: 16px;
  padding-top: 0.2rem;
  color: #DADADA;
  cursor: pointer;
  transition: color 100ms;
}
.notifications .deadlines-and-reminders .month-timeline__chevron:hover {
  color: var(--color-primary);
}
.notifications .deadlines-and-reminders .month-timeline__month {
  text-align: center;
  color: var(--color-primary);
  padding: 12px;
  -webkit-border-radius: 6px 6px 0 0;
  -moz-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid transparent;
}
.notifications .deadlines-and-reminders .month-timeline__month:hover {
  border-color: var(--color-primary);
}
.notifications .deadlines-and-reminders .month-timeline__month.active {
  color: var(--color-primary);
  background-color: var(--color-primary-faded);
  border-color: var(--color-primary);
}
.notifications .deadlines-and-reminders .grid {
  border-top: 1px solid #CCCCCC;
  position: relative;
}
.notifications .deadlines-and-reminders .grid__week {
  font-style: normal;
  font-weight: normal;
  font-size: 11px;
  line-height: 16px;
  color: #666666;
  text-align: center;
  margin: 16px 0;
}
.notifications .deadlines-and-reminders .grid__items {
  margin: 10px 5px;
}
.notifications .deadlines-and-reminders .grid > div.row {
  overflow: auto;
  height: 100%;
  max-height: calc(100vh - 274px);
}
.notifications .deadlines-and-reminders .grid > div.row::-webkit-scrollbar {
  background: transparent;
}
.notifications .deadlines-and-reminders .grid > div.row::-webkit-scrollbar-track {
  margin-top: 20px;
}
.notifications .custom-popover--sort {
  width: 18em;
}
.notifications .custom-popover--filter {
  width: 37em;
  padding-right: 50px;
}
.notifications .custom-popover .custom-popover__title {
  font-weight: 600;
  font-size: 11px;
  line-height: 15px;
  color: #666666;
  margin-bottom: 11px;
}
.notifications__filter .icon-trash {
  color: #E5175C;
  margin-right: 10px;
  font-size: 16px;
  cursor: pointer;
}
.notifications__filter__criterion {
  margin: 6px 0;
}
.notifications__filter__criterion select,
.notifications__filter__criterion input[type="text"],
.notifications__filter__criterion .select-wrapper {
  width: 100%;
}
.notifications__filter__criterion .lds-ellipsis {
  transform: translate(0, -40px);
}
.notifications__filter__criterion .input-group-append {
  display: none;
}
.notifications__filter__add {
  font-style: normal;
  font-weight: bold;
  font-size: 11px;
  line-height: 13px;
  color: var(--color-primary);
}
.ongoing-count {
  min-width: 14px;
  height: 14px;
  background-color: #E5175C;
  border-radius: 50px;
  font-size: 8px;
  color: #FFFFFF;
  font-style: normal;
  font-weight: bold;
  line-height: 1px;
  letter-spacing: 0.4px;
  margin-left: 7px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
#Privacy {
  max-width: 1500px;
  /*    tr:nth-of-type(odd) {
        background: #eee;
    }*/
}
#Privacy ul {
  display: flex;
  justify-content: space-around;
  border-bottom: none;
}
#Privacy ul li {
  margin: 10px;
}
#Privacy ul li a {
  font-weight: bold;
  font-size: 15px;
  line-height: 18px;
  color: #999999;
  text-transform: uppercase;
  position: relative;
}
#Privacy ul li a.active,
#Privacy ul li a:hover {
  color: var(--color-primary);
}
#Privacy ul li a.active:after,
#Privacy ul li a:hover:after {
  position: absolute;
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  font-size: 6px;
  bottom: -15px;
  left: calc(50% - 3px);
  color: var(--color-primary);
}
#Privacy .privacy-content {
  background: #FFFFFF;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.0976016);
  border-radius: 3px;
  font-size: 16px;
}
#Privacy .privacy-content h1 {
  font-weight: 900;
  font-size: 25px;
  line-height: 30px;
  text-align: center;
  color: var(--color-primary);
}
#Privacy .privacy-content h3 {
  font-weight: 700;
  font-size: 16px;
  color: #91D754;
}
#Privacy .privacy-content p {
  color: #4A4A4A;
}
#Privacy table {
  width: 750px;
  border-collapse: collapse;
  margin: 50px auto;
}
#Privacy th {
  background: #5d5d5d;
  color: white;
  font-weight: bold;
}
#Privacy td,
#Privacy th {
  padding: 10px;
  border: 1px solid #ccc;
  text-align: left;
}
@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
  #Privacy table {
    width: 100%;
  }
  #Privacy table,
  #Privacy thead,
  #Privacy tbody,
  #Privacy th,
  #Privacy td,
  #Privacy tr {
    display: block;
  }
  #Privacy thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  #Privacy tr {
    border: 1px solid #ccc;
  }
  #Privacy td {
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
  }
  #Privacy td:before {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    content: attr(data-column);
    color: #000;
    font-weight: bold;
  }
}
#dashboard {
  min-height: calc(100vh - 200px);
}
#dashboard .panel-title {
  font-family: Poppins;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.15px;
  color: #666666;
}
#dashboard .dashboard__card.CurrentNegotiations,
#dashboard .dashboard__card.LastFoldersAccess {
  min-height: 100px;
  max-height: calc((100vh - 258px) / 1.3);
}
#dashboard .dashboard__card .drive-items {
  padding: 8px;
  margin: 0;
}
#dashboard .dashboard__card .drive-items:hover {
  background-color: var(--color-primary-faded);
  color: var(--color-primary);
}
#dashboard .left-panel {
  width: calc(100% - 400px);
  min-height: calc(100vh - 72px);
}
#dashboard .right-panel {
  min-width: 338px;
  width: 20vw;
  background-color: #F5F5F5;
  border-left: 1px solid #CCCCCC;
}
#dashboard .notifications-and-reminders {
  height: calc(100% - 72px);
}
#dashboard #searchcontainer {
  border: 8px solid transparent;
  background-color: rgba(var(--color-primary-rgb-values), 20%);
  border-radius: 12.5px;
}
#dashboard .BtnSeeMore {
  font-family: Montserrat;
  font-weight: bold;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: -1px;
  color: var(--color-primary);
}
#dashboard h3 {
  font-weight: bold;
  font-size: 14px;
  line-height: 21px;
  color: #666666;
  margin-bottom: 4px;
  padding-bottom: 4px;
  border-bottom: 1px solid #E8E8E8;
}
#dashboard .separator_bottom {
  border-bottom: 1px solid #E8E8E8;
}
@media (max-width: 991px) {
  #dashboard .right-panel {
    width: 100vw;
    border-left: none;
  }
  #dashboard .left-panel {
    width: 100vw;
  }
  #dashboard .dashboard__card .drive-items {
    padding: 12px;
  }
  #dashboard .dashboard__card.LastFoldersAccess {
    max-height: initial;
  }
  #dashboard h3 {
    margin-top: 24px;
  }
}
.language-selector {
  border-radius: 5px;
  padding: 24px;
}
.language-selector li {
  padding-left: 0;
  padding-right: 0;
}
.language-selector .fa-check-circle {
  color: var(--color-primary);
}
#signedcontract {
  background-color: #F5F5F5;
}
#signedcontract #left-workflow-panel {
  margin-left: 15px;
}
#signedcontract #left-workflow-body {
  position: sticky;
  top: 30px;
}
#signedcontract #left-workflow-body #SidePanelWorkFlow {
  margin-top: 24px;
}
#signedcontract .row-links {
  position: sticky;
  top: 0px;
  z-index: 29;
}
#signedcontract .revBar,
#signedcontract .verBar {
  position: sticky;
  top: 50px;
}
#signedcontract #versions {
  position: sticky;
}
#signedcontract .tab-pane {
  overflow-y: auto;
  overflow-x: hidden;
  height: calc(100vh - 200px);
}
#signedcontract #termSheet .term-sheet__buttons {
  position: sticky;
  top: 0;
  z-index: 9;
  background-color: #F5F5F5;
}
#signedcontract #viewer {
  width: 100%;
  margin-left: 344px !important;
}
#signedcontract #viewer.fullwidth {
  margin-left: 125px !important;
}
#signedcontract #viewer .viewer-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  height: calc(100% - 106px);
  overflow: hidden;
}
#signedcontract #viewer .viewer-embed {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.green-img {
  /*filter: invert(23%) sepia(54%) saturate(1131%) hue-rotate(125deg) brightness(93%) contrast(101%);*/
}
.nav-tabs-reader {
  font-size: 12px;
}
.nav-tabs-reader li:first-child {
  margin-left: 16px;
}
.nav-tabs-reader li {
  margin: 0 10px;
  padding: 0px;
}
.nav-tabs-reader .tab-elem {
  font-weight: bold;
  line-height: 14px;
  border-radius: 2px 2px 0 0;
  height: 37px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  background-color: #F0F5F4;
  color: var(--color-primary);
}
.nav-tabs-reader .tab-elem.active {
  color: white;
  background-color: var(--color-primary);
}
.nav-tabs-separator {
  border: 1px solid var(--main);
}
#AnnexesTab .advice {
  color: #A2A2A2;
}
#AnnexesTab .dragitem-icon {
  width: 11px;
  height: 40px;
}
#AnnexesTab .annex-item {
  min-height: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.0976016);
  border-radius: 3px;
  padding: 5px 0;
  /*        &-name {
            margin-top: 12px;
        }*/
}
#AnnexesTab .annex-item-icon {
  width: 30px;
}
#AnnexesTab .annex-item-btnarea {
  /*margin-top: 10px;*/
}
#AnnexesTab .annex-item-btnarea-show {
  margin-top: -2px;
  color: #A2A2A2 !important;
}
#AnnexesTab #download-icon {
  top: -2px;
  left: -30px;
}
#annexe-drop-file {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: visibility 175ms, opacity 175ms;
  display: table;
  text-shadow: 1px 1px 2px #000;
  color: #fff;
  font-size: 24px;
}
#annexe-drop-file-text {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  transition: font-size 175ms;
}
#panelShared .search-icon {
  right: 6px;
  top: 10px;
  font-size: 16px;
}
#panelShared .clearboth {
  clear: both;
}
#panelShared .sharedremove {
  position: absolute;
  right: 35px;
}
#panelShared h6 {
  font-weight: 600;
  font-size: 11px;
  margin-bottom: initial;
  margin-left: 6px;
}
#shared-modal .search-icon {
  right: 30px;
}
#shared-modal #sharedmodal-users {
  max-height: 210px !important;
  overflow-y: auto;
  overflow-x: hidden;
}
#shared-modal .btn-gray {
  background-color: #ffffff;
  border: 1px solid var(--main-gray);
  border-radius: 2px;
  font-family: "Lato", "sans-serif";
  color: var(--main-gray) !important;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 12px;
  padding: 10px 17px;
}
#shared-modal .canshared-col {
  margin-left: 8px;
}
#sharedjobfamilies-modal .search-icon {
  right: 15px;
}
#sharedjobfamilies-modal #sharedmodal-jobFamilies {
  max-height: 100px !important;
  overflow-y: auto;
  overflow-x: hidden;
}
#sharedcountries-modal .search-icon {
  right: 15px;
}
#sharedcountries-modal #sharedmodal-countries {
  max-height: 100px !important;
  overflow-y: auto;
  overflow-x: hidden;
}
.questions-page {
  min-height: calc(100vh - 72px);
}
.questions-page .tab-pane--full-height {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.questions-page .tab-content .manage-my-tickets {
  height: calc(100vh - 72px - 74px - 78px);
}
.questions-page .manage-my-tickets {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-height: 650px;
  height: calc(100vh - 72px - 74px);
}
.questions-page .manage-my-tickets .information__header {
  text-align: center;
  background: rgba(0, 0, 0, 0.08);
  color: #666666;
  border-radius: 4px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 11px;
  line-height: 16px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.questions-page .manage-my-tickets .information__title {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.questions-page .manage-my-tickets .information__info {
  font-family: Poppins;
  font-style: normal;
  font-size: 10px;
  line-height: 13px;
  text-transform: uppercase;
  color: #4a4a4a;
  margin-bottom: 0.25rem;
}
.questions-page .panel {
  width: 25%;
  display: flex;
  flex-direction: column;
}
.questions-page .panel--left {
  border-right: 1px solid #e8e8e8;
}
.questions-page .panel--center {
  width: 50%;
}
.questions-page .panel--right {
  border-left: 1px solid #e8e8e8;
}
.questions-page .panel--background {
  background: #f5f5f5;
}
.questions-page .panel-title {
  font-family: Poppins;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.15px;
  color: #666666;
  padding: 20px 24px;
}
.questions-page .panel-content {
  padding: 0 20px 24px;
  overflow-y: auto;
}
.questions-page .panel-section + .panel-section {
  margin-top: 36px;
}
.questions-page .question-document > * {
  vertical-align: middle;
}
.questions-page .question-document > i {
  font-size: 1.2em;
  margin-right: 0.4em;
}
.questions-page .message-header {
  padding: 12px 0;
}
.questions-page .message-author {
  color: #484d50;
  font-size: 14px;
}
.questions-page .message-author > * {
  vertical-align: middle;
}
.questions-page .message {
  margin-left: 0;
  margin-right: 8rem;
}
.questions-page .message--mine {
  margin-left: 8rem;
  margin-right: 0;
}
.questions-page .message--mine .message-author {
  color: var(--color-primary);
}
.questions-page .message-date {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 11px;
  color: #484d50;
}
.questions-page .message-content {
  padding: 14px 22px;
  background: #ffffff;
  border: 1px solid #dadada;
  border-radius: 5px;
  overflow-wrap: break-word;
}
.questions-page .message--mine .message-content {
  border-color: transparent;
  background: #f5f5f5;
}
.questions-page .message-input-icons > button {
  color: var(--color-primary);
  font-size: 1.2rem;
  background-color: transparent;
  border: 0;
}
.questions-page .message-input-file {
  padding: 8px;
  background: #ffffff;
  border: 1px solid #dadada;
  border-radius: 5px;
}
.questions-page .message-input-file__name {
  color: var(--color-primary);
}
.questions-page .message-input-file__button {
  background-color: transparent;
  padding: 0;
  border: 0;
}
.questions-page .message-input-file__button i {
  font-size: 0.8rem;
  color: red;
}
.questions-page .all-tickets .question-item-list-checkbox-label {
  padding: 0 1rem;
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 11px;
  line-height: 15px;
  color: #666666;
}
.questions-page .all-tickets .question-item-list-checkbox-label > * {
  vertical-align: middle;
}
.questions-page .all-tickets .question-item-list-checkbox-label > input {
  margin-right: 0.2rem;
}
.questions-page .all-tickets .question-item {
  padding: 12px 24px;
  background: #ffffff;
  border: 1px solid #e2e2e2;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.0825125);
  border-radius: 5px;
  margin-bottom: 1.2rem;
  cursor: pointer;
}
.questions-page .all-tickets .question-item:hover {
  border-color: var(--color-primary);
}
.questions-page .all-tickets .question-item__title {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  color: var(--color-primary);
}
.questions-page .all-tickets .question-item__left {
  border-right: 1px solid #d8d8d8;
}
.questions-page .all-tickets .question-item__right {
  min-width: 32rem;
}
.questions-page .all-tickets .question-item__info {
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-size: 10px;
  line-height: 13px;
  text-transform: uppercase;
  color: #4a4a4a;
}
.questions-page .all-tickets .question-item__info > strong {
  font-weight: 500;
}
.questions-page .all-tickets .question-item__message-count {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 9px;
  line-height: 10px;
  text-align: justify;
  color: var(--color-primary);
  text-transform: uppercase;
}
.questions-page .all-tickets .question-item__date {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 8px;
  line-height: 10px;
  text-transform: uppercase;
  color: #4a4a4a;
}
.questions-page .all-tickets .question-item__date > * {
  vertical-align: middle;
}
.questions-page .all-tickets .question-item__date > input {
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-size: 8px;
  line-height: 10px;
  color: #4a4a4a;
  margin-left: 0.2rem;
  width: 11em;
  background: #ffffff;
  border: 1px solid #d8d8d8;
  border-radius: 3px;
}
.questions-page .all-tickets .question-item .initials {
  display: inline-block;
  text-align: center;
  font-size: 11px;
  min-width: 2.4em;
  width: 2.4em;
  height: 2.4em;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.questions-page .question-success-message {
  background: rgba(145, 215, 84, 0.15);
  border-radius: 4px;
  font-family: Poppins;
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  color: #91d754;
  padding: 0.5rem 0;
}
.mailbox-question {
  padding: 12px 15px;
  background: #ffffff;
  border: 2px solid #d1d1d1;
  border-radius: 8px;
  font-family: Poppins;
  font-style: normal;
  font-size: 11px;
  line-height: 16px;
  color: #666666;
}
.mailbox-question .initials {
  min-width: 24px;
  height: 24px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mailbox-question__title {
  font-weight: bold;
  font-size: 13px;
  color: var(--color-primary);
}
.mailbox-question__description {
  overflow-wrap: break-word;
}
.mailbox-question__infos {
  font-size: 10px;
  text-transform: uppercase;
}
.mailbox-question.active {
  border-color: var(--color-primary);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.faq-page .satisfaction {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #666666;
}
.faq-page .satisfaction__question {
  font-family: Poppins;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  color: var(--color-primary);
}
.faq-page .satisfaction .fas {
  font-size: 1.2rem;
  margin-right: 0.8rem;
  color: var(--color-primary);
}
.faq-page .satisfaction__choice {
  line-height: 1;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  background: transparent;
}
.faq-page .satisfaction__choice:hover,
.faq-page .satisfaction__choice.active {
  background: rgba(var(--color-primary-rgb-values), 0.12);
}
.faq-page .blog h3 {
  font-weight: 500;
  font-size: 13px;
  line-height: 24px;
  color: #666666;
}
.faq-page .blog .separator_bottom {
  border-bottom: 1px solid #E8E8E8;
}
.faq-page .blog .BtnSeeMore {
  font-size: 11px;
  line-height: 16px;
  color: var(--color-primary);
  cursor: pointer;
}
.faq-page .blog figure {
  margin: 17px 27px;
  max-width: 140px;
  text-align: center;
  cursor: pointer;
}
.faq-page .blog figure img {
  width: 140px;
  height: 140px;
  border: 1px solid #D1D1D1;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.faq-page .blog figure figcaption {
  margin-top: 6px;
  font-weight: 300;
  font-size: 12px;
  line-height: 20px;
  color: #000000;
}
.faq-content__content {
  color: #666666;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 1rem;
}
.faq-content__content li {
  list-style: unset;
}
.faq-content__card {
  background: #FFFFFF;
  border-radius: 8px;
  filter: drop-shadow(0px 2px 9px rgba(0, 0, 0, 0.12));
  min-width: 256px;
  padding: 16px 24px 24px;
}
.faq-content__card__title {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #666666;
  text-align: center;
  margin-bottom: 16px;
}
.faq-content__card__label {
  display: block;
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 11px;
  line-height: 16px;
  color: #666666;
  padding-left: 4px;
  margin-top: 8px;
  margin-bottom: 0;
}
.faq-content__card__input {
  width: 100%;
}
.faq-content__card__article {
  padding: 4px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-size: 10px;
  line-height: 24px;
  letter-spacing: 0.15px;
  color: #000000;
}
