@font-face {
  font-family: "Lato";
  src: url("../../font/Lato-Regular.ttf");
  font-style: normal;
}
:root {
  /* Color */
  --main-green: #B4C616;
  --main-gray: #4F5965;
  --light-gray: #F2F2F2;
  --second-gray: #C3C6CE;
  --main-orange: #FFA948;
  --main-red: #D40000;
  --folder-light-gray: #979797;
  --main-SCM: #584afc;
}
/*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;
}
/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  height: 18px;
  width: 18px;
  border: 1px solid white;
  background-color: var(--folder-light-gray);
}
/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
  background-color: var(--main-green);
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}
/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
  left: 4px;
  top: 1px;
  width: 7px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.readonly-customcheckbox {
  background-color: var(--main-green) !important;
}
.readonly-customcheckbox:after {
  display: block;
}
.lock-customcheckbox:after {
  border: solid rgba(1, 1, 1, 0.4) !important;
  border-width: 0 3px 3px 0 !important;
  display: block;
}
.lock-customcheckbox {
  border: 1px solid rgba(1, 1, 1, 0.5) !important;
  background-color: white !important;
}
.lock-customcheckbox-label {
  color: rgba(1, 1, 1, 0.5) !important;
}
.backgroud-white {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: #F2F2F2;
}
.background-green {
  position: absolute;
  width: 100%;
  height: 40%;
  left: 0px;
  top: 0px;
  background: var(--main-green);
}
.choosing-box {
  position: absolute;
  width: 700px;
  height: 500px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  top: 20%;
  background-color: white;
}
.welcome-title {
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  margin-top: 30px;
  color: #5B5B5B;
  margin-left: 10px;
  margin-right: 10px;
}
.dealer-box {
  position: absolute;
  width: 250px;
  height: 250px;
  left: 10%;
  top: 30%;
  background-color: white;
  border-radius: 6px;
}
.collaborator-box {
  position: absolute;
  width: 250px;
  height: 250px;
  right: 10%;
  top: 30%;
  background-color: white;
  border-radius: 6px;
}
#logo-class {
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
  height: 45px;
  margin-bottom: 40px;
  display: block;
}
#logo-login {
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  height: 50px;
  margin-bottom: 10px;
  display: block;
}
.box-title {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: var(--main-gray);
  width: 98%;
}
.btn-green {
  background: var(--main-green);
  color: white;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid var(--main-green);
}
.btn-green:hover {
  background: white;
  color: var(--main-green);
  border: solid 2px var(--main-green);
}
.remember {
  margin-top: 20px;
}
#logo-header {
  height: 50px;
}
header {
  overflow: hidden;
}
.initials {
  background-color: var(--main-green);
  color: white;
  height: 45px;
  width: 45px;
  border-radius: 23px;
}
.initials-text {
  margin: 10px 13px;
}
.separator {
  height: 50px;
  width: 2px;
  background-color: var(--main-gray);
}
.logout-btn {
  color: var(--main-gray);
}
.space-up {
  margin-top: 30px;
}
.space-down {
  margin-bottom: 30px;
}
.space-left {
  margin-left: 30px;
}
.space-right {
  margin-right: 30px;
}
.border-none {
  border: none;
}
.btn-white-dealer {
  background-color: #F5F6FA;
  width: 10%;
  color: #979797;
}
.space-up-s {
  margin-top: 10px;
}
.space-down-s {
  margin-bottom: 10px;
}
.space-left-s {
  margin-left: 10px;
}
.space-right-s {
  margin-right: 10px;
}
.space-up-l {
  margin-top: 50px;
}
.space-down-l {
  margin-bottom: 50px;
}
.space-left-l {
  margin-left: 50px;
}
.space-right-l {
  margin-right: 50px;
}
.float-right {
  float: right;
}
.btn-gray {
  background-color: var(--main-gray);
  color: white;
}
.btn-gray:hover {
  background-color: white;
  color: var(--main-gray);
  border: solid 1px var(--main-gray);
}
.btn-light-gray {
  background-color: #979797;
  color: white;
  border: none;
}
.little-text {
  font-size: 12px;
  font-family: Lato;
}
.btn-red {
  background-color: var(--main-red);
  color: white;
}
.btn-white-green {
  background-color: white;
  color: var(--main-green);
  border: 2px solid var(--main-green);
}
.btn-white-orange {
  background-color: white;
  color: var(--main-orange);
  border: 2px solid var(--main-orange);
}
.btn-orange {
  background-color: var(--main-orange);
  color: white;
  border: 2px solid var(--main-orange);
}
.drive-item {
  cursor: pointer;
}
.drive-item-name {
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 18px;
  color: var(--main-gray);
}
.green-div {
  border-radius: 4px;
  background-color: var(--main-green);
  color: white;
}
.drive-organisation {
  flex-flow: row wrap;
}
.background-gray {
  background-color: #F2F2F2;
}
.padding-up {
  padding-top: 30px;
}
.padding-down {
  padding-bottom: 30px;
}
.padding-left {
  padding-left: 30px;
}
.padding-right {
  padding-right: 30px;
}
.padding-up-s {
  padding-top: 10px;
}
.padding-down-s {
  padding-bottom: 10px;
}
.padding-left-s {
  padding-left: 10px;
}
.padding-right-s {
  padding-right: 10px;
}
.padding-up-l {
  padding-top: 50px;
}
.padding-down-l {
  padding-bottom: 50px;
}
.padding-left-l {
  padding-left: 50px;
}
.padding-right-l {
  padding-right: 50px;
}
.btn-white {
  background-color: #F5F6FA;
  width: 50%;
  color: #979797;
}
.btn-clear {
  background: none;
  border: none;
}
.btn-waiting-sign {
  background-color: white;
  color: var(--main-gray);
  display: block;
}
.btn-valid-folder {
  background-color: white;
  color: var(--main-green);
  display: block;
}
.input-reset {
  width: 80%;
  height: 130px;
  resize: none;
}
.navbar-collaborator {
  background-color: var(--light-gray);
  padding-top: 30px;
}
.selected-tab {
  padding-top: 18px;
  height: 50px;
  width: 160px;
  color: white;
  background-color: var(--main-gray);
}
.unselected-tab,
.unselected-tab:hover {
  color: var(--main-gray);
  padding-top: 10px;
  margin-top: 10px;
  height: 40px;
  width: 160px;
  background-color: var(--second-gray);
  text-decoration: none;
}
.tab {
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 18px;
  text-align: center;
  text-transform: uppercase;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.navbar-core {
  background-color: var(--main-gray);
  height: 100px;
  width: 100%;
  overflow: hidden;
}
.text-navbarcore {
  font-family: Lato;
  color: white;
  font-size: 17px;
  margin-top: 37px;
}
.number-navbar {
  font-family: Lato;
  color: var(--main-green);
  font-size: 17px;
  margin-top: 32px;
}
.filler {
  flex-grow: 1;
  text-align: center;
}
.search-drive {
  width: calc(100% - 50px);
  margin-top: 8px;
  margin-bottom: 8px;
  margin-left: 8px;
  outline: none;
}
.search-icon {
  background-color: white;
  margin-right: 3px;
  margin-top: 8px;
  cursor: pointer;
}
.label-checkbox {
  margin-left: 5px;
}
.input-checkbox-filter {
  margin-left: 20px;
  margin-right: 5px;
}
#send-filter {
  color: var(--main-gray);
  font-weight: bold;
  font-family: Lato;
}
#sign-filter {
  color: #979797;
  font-weight: bold;
  font-family: Lato;
}
#valid-filter {
  color: #B4C616;
  font-weight: bold;
  font-family: Lato;
}
#waiting-filter {
  color: #D75B2B;
  font-weight: bold;
  font-family: Lato;
}
#reset-filter {
  color: #FFA948;
  font-weight: bold;
  font-family: Lato;
}
.filter-checkbox {
  color: var(--main-gray);
  font-weight: bold;
  font-family: Lato;
  padding-top: 30px;
  padding-left: 30px;
}
.text-driveList {
  color: var(--main-gray);
  font-weight: bold;
  font-family: Lato;
}
.status-listContracts {
  min-width: 130px;
  width: 130px;
}
.status-listContracts-valid {
  background-color: var(--main-green);
  color: white;
  height: 30px;
  width: 150px;
  border-radius: 23px;
  margin-top: 4px;
}
.status-listContracts-sign {
  background-color: var(--folder-light-gray);
  color: white;
  height: 30px;
  width: 150px;
  border-radius: 23px;
  margin-top: 4px;
}
.status-listContracts-reset {
  background-color: var(--main-orange);
  color: white;
  height: 30px;
  width: 150px;
  border-radius: 23px;
  margin-top: 4px;
}
.status-listContracts-waiting {
  background-color: var(--main-red);
  color: white;
  height: 30px;
  width: 150px;
  border-radius: 23px;
  margin-top: 4px;
}
.status-listContracts-send {
  background-color: var(--main-gray);
  color: white;
  height: 30px;
  width: 150px;
  border-radius: 23px;
}
.status-text {
  text-align: center;
  margin-top: 2px;
}
.date-text {
  color: var(--main-gray);
  font-family: Lato;
  margin-top: 5px;
}
.valid-folder {
  color: var(--main-green);
  margin-bottom: 3px;
}
.sign-folder {
  color: var(--folder-light-gray);
  margin-bottom: 3px;
}
.reset-folder {
  color: var(--main-orange);
  margin-bottom: 3px;
}
.waiting-folder {
  color: var(--main-red);
  margin-bottom: 3px;
}
.send-folder {
  color: var(--main-gray);
  margin-bottom: 3px;
}
.folder-name {
  margin-top: 5px;
  width: 30%;
  margin-right: 10px;
  min-width: 75px;
  overflow: hidden;
  height: 25px;
}
.comment-table {
  width: 1000px;
}
.table-listContracts {
  overflow-y: auto;
  overflow-x: auto;
  padding-left: 30px;
  padding-right: 30px;
}
.list-element {
  border-radius: 3px;
  margin-bottom: 10px;
  background-color: white;
  padding: 10px;
  width: 100%;
  height: 55px;
  overflow: hidden;
}
.valid-element {
  border-left: 5px solid var(--main-green);
}
.sign-element {
  border-left: 5px solid var(--folder-light-gray);
}
.waiting-element {
  border-left: 5px solid var(--main-red);
}
.reset-element {
  border-left: 5px solid var(--main-orange);
}
.send-element {
  border-left: 5px solid var(--main-gray);
}
.templateTitle {
  font-size: 15px;
  font-weight: bold;
}
.template {
  height: 195px !important;
  width: 230px !important;
  border: 1px solid var(--main-gray);
  border-left: 10px solid var(--main-gray);
  border-radius: 8px;
  background-image: url('https://localhost:44359/img/cog.png');
  background-repeat: no-repeat;
  background-size: 35%;
  background-position-x: right;
}
.template-title-div {
  height: 90px !important;
  width: 100%;
  position: relative;
}
.template-title {
  font-weight: bold;
  width: 160px;
  overflow: hidden;
}
.template-menu {
  position: absolute;
  right: 15px;
  top: 10px;
}
.template-date-div {
  background-color: var(--main-green);
  height: 45px;
  font-size: 13px;
  padding-top: 10px;
}
.template-date {
  font-size: 11px;
  font-weight: bold;
}
.template-btn {
  padding-left: 25px;
  padding-right: 25px;
}
.modal-header-gray {
  background-color: var(--main-gray);
  width: 500px;
  height: 30px;
}
.modal-header-gray-l {
  background-color: var(--main-gray);
  width: 100%;
  height: 30px;
}
.modal-header-title {
  color: white;
  margin-top: 5px;
}
.border-modal {
  border-top: 1px solid var(--main-gray);
  width: 80%;
}
.modal-input {
  border: none;
  outline: none;
  border-bottom: 1px solid var(--second-gray);
  width: 400px;
  padding-bottom: 5px;
}
.modal-bold-text {
  font-weight: bold;
  font-size: 13px;
}
.modal-text {
  font-size: 13px;
}
.modal-btn {
  padding-left: 25px;
  padding-right: 25px;
}
.center-modal {
  margin-left: auto;
  margin-right: auto;
}
.btn-delete-modal {
  margin-left: 140px;
  margin-right: 140px;
}
.custom-select {
  border: none;
  width: 50%;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--second-gray);
}
.red {
  color: var(--main-red);
}
.green {
  color: var(--main-green);
}
#importXlsModal .input-content {
  background-color: #F5F6FA;
  border: 1px solid #979797;
}
#importXlsModal .input-name {
  width: 25rem;
  padding-top: 6px;
  overflow: hidden;
  height: 36px;
}
.modal-500 {
  max-width: 500px;
}
.modal-content {
  overflow: hidden;
}
#groupgenerationmodal .title-groupgenerationmodal {
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 18px;
}
#groupgenerationmodal .border-groupgenerationmodal {
  border-top: 1px solid var(--main-gray);
  width: 80%;
}
#groupgenerationmodal .element-groupgenerationmodal {
  border-radius: 3px;
  margin-bottom: 18px;
  background-color: var(--light-gray);
  padding: 15px;
  width: 76%;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.12), 0px 2px 2px rgba(0, 0, 0, 0.24);
}
#groupgenerationmodal input {
  margin-top: 15px;
}
#groupgenerationmodal .btn-generate-modal {
  margin-left: 37%;
  margin-right: 37%;
}
#groupgenerationmodal .list-dealer-groupgenerationmodal {
  height: 410px;
  overflow-y: auto;
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
  color: #4F5965;
}
#groupgenerationmodal .list-element-groupgenerationmodal {
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
  color: #4F5965;
}
#groupgenerationmodal .name {
  padding-top: 5px;
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
  color: #979797;
}
.title-folder {
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: var(--main-gray);
}
.second-title {
  background: #4F5965;
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 18px;
  /* identical to box height */
  color: #FFFFFF;
  padding: 7px;
}
.content-folder {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 10px;
}
.element-folder {
  width: 100%;
  height: 58px;
}
.list-element-folder {
  border-radius: 3px;
  background-color: #F5F6FA;
  padding: 10px;
  width: 75%;
  margin-right: auto;
  margin-left: auto;
}
.list-element-folder-optional {
  border: 1px dashed #979797;
  border-radius: 3px;
  padding: 10px;
  width: 75%;
  margin-right: auto;
  margin-left: auto;
}
.text-folder {
  font-family: Lato;
  font-style: normal;
  font-weight: 900;
  font-size: 15px;
  line-height: 16px;
  /* identical to box height */
  text-transform: uppercase;
  color: #4F5965;
  margin-top: auto;
  margin-bottom: auto;
}
.text-folder-gray {
  font-family: Lato;
  font-style: normal;
  font-weight: 900;
  font-size: 15px;
  line-height: 16px;
  /* identical to box height */
  text-transform: uppercase;
  color: #BCBCBC;
  margin-top: auto;
  margin-bottom: auto;
}
.btn-right {
  margin-right: 0;
  margin-left: auto;
}
.consulted-element {
  color: var(--main-green) !important;
}
.resetInfo {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}
.resetBox {
  border: 1px dashed #8A8A8A;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
}
.resetText {
  color: #4F5965;
}
.reseted-element {
  color: #FFA948;
}
.signatoryModal .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);
}
.signatoryModal .input-text {
  width: 90%;
}
.signatoryModal .border-signatory {
  border-top: 1px solid var(--main-gray);
  width: 90%;
}
.signatoryModal .border-input-none {
  border: none;
  outline: none;
}
.signatoryModal .position-text {
  font-size: 12px;
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  line-height: 12px;
  /* identical to box height */
  color: #B9B9B9;
}
.signatoryModal .name-text {
  font-family: Lato;
  font-style: normal;
  font-weight: 900;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  color: #4A4A4A;
}
