/* New release PREVIEW */
/* Main background colors colors */
/* Main font colors */
/* Wizard navigation menu colors */
/* Other colors */
/* Font */
/* Buttons */
.btn- {
  height: 60px;
  background-color: #000000;
  color: #FFFFFF !important;
  border: 0;
  border-radius: 0;
}
.btn-wizard-submit-button {
  height: 60px;
  background-color: #000000;
  color: #FFFFFF !important;
  border: 0;
  border-radius: 0;
}
.btn-wizard-back-button {
  width: 140px;
  height: 60px;
  background-color: #EDEDED;
  color: #000000;
  border: 0;
  border-radius: 0;
}
.btn-modal-action {
  background-color: #EDEDED;
  color: #505050 !important;
  border: 0;
  border-radius: 4px;
}
.btn-modal-action[disabled] {
  color: #828282 !important;
}
.btn-modal-action:not([disabled]):hover {
  color: #000000 !important;
}
.btn-black-button {
  width: 340px;
  height: 60px;
  background-color: #000000;
  color: #FFFFFF !important;
  border-radius: 0;
}
.btn-edit-button {
  background-color: #828282;
  color: #FFFFFF !important;
  border: none;
  width: 200px;
  height: 35px;
  font-weight: bold;
  border-radius: 0;
}
.btn-wizard-nav-enabled {
  width: 100%;
  height: 60px;
  color: #FFFFFF !important;
  border: none;
  border-radius: 0;
  background-color: #95C000;
}
.btn-wizard-nav-disabled {
  width: 100%;
  height: 60px;
  color: #FFFFFF;
  border: none;
  border-radius: 0;
  background-color: #CCCCCC;
}
.btn-wizard-nav-active {
  width: 100%;
  height: 60px;
  color: #FFFFFF !important;
  border: none;
  border-radius: 0;
  background-color: #000000;
}
.wizard-nav a {
  display: block;
}
.wizard-nav .btn {
  white-space: normal;
}
.btn:hover {
  color: #FFFFFF;
}
.btn-wizard-back-button:hover {
  color: #000000;
}
.modal-btn-size {
  width: 250px;
  height: 40px;
}
/* Inputs */
.box-input {
  border-radius: 0;
  background-color: #F7F7F7;
}
.box-input-with-right-button {
  width: calc(100% - 48px);
  display: inline-block;
  margin-right: 8px;
}
.small-info-button {
  width: 40px;
  height: 34px;
  vertical-align: top;
  padding: 4px 12px;
  text-align: center;
}
.box-select-input {
  background-color: #FAFAFA;
  color: #505050;
  font-weight: bold;
  max-width: 200px;
  border-radius: 4px;
  min-width: 144px;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background: #DCDCDC;
  color: #828282;
}
.select-with-left-label {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.select-with-left-label .select-left-label {
  padding-left: 8px;
  order: 2;
}
.select-with-left-label .select-input {
  order: 1;
}
@media (min-width: 768px) {
  .select-with-left-label {
    justify-content: flex-end;
  }
  .select-with-left-label .select-input {
    order: 2;
  }
  .select-with-left-label .select-left-label {
    padding-right: 16px;
    order: 1;
  }
}
.display-flex {
  display: flex;
}
.display-flex.responsive {
  flex-direction: column;
}
.display-flex.responsive > *:not(:last-child) {
  padding-bottom: 16px;
}
@media (min-width: 768px) {
  .display-flex.responsive {
    flex-direction: row;
  }
  .display-flex.responsive > *:not(:last-child) {
    padding-bottom: 0;
  }
}
.align-items-center {
  align-items: center;
}
/* Customize the label (the container) */
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* On mouse-over, add a grey background color */
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
}
.checkbox-container:hover input ~ .checkmark {
  background-color: #F2F2F2;
}
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  /* When the checkbox is checked, add a blue background */
  /* Show the checkmark when checked */
}
.checkbox-container input:checked ~ .checkmark {
  background-color: #31AFE1;
  border-color: #31AFE1;
}
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}
.checkbox-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #FFFFFF;
  border: 2px solid #DCDCDC;
  border-radius: 4px;
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Style the checkmark/indicator */
}
.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* Tags */
html,
body {
  height: 100%;
  padding: 0;
  margin: 0;
  color: #787878;
  font-family: Arial, Sans-serif;
}
header {
  width: 100%;
  background-color: #31AFE1;
}
h2 {
  font-weight: normal;
  padding: 0 10px;
}
h4 {
  font-weight: normal;
  padding: 0 4px;
}
label {
  margin-left: 6px;
  margin-right: 16px;
}
main {
  height: calc(100% - 80px);
  padding: 0;
}
#root {
  margin: 0;
  height: 100%;
}
/* Paddings And Margins */
.s-top-padding {
  padding-top: 4px;
}
.s-bottom-padding {
  padding-bottom: 4px;
}
.m-top-padding {
  padding-top: 10px;
}
.m-bottom-padding {
  padding-bottom: 10px;
}
.s-right-padding {
  padding-right: 8px;
}
.xs-padding {
  padding: 4px;
}
.s-padding {
  padding: 8px;
}
.m-padding {
  padding: 12px;
}
.l-padding {
  padding: 12px 16px;
}
.l-padding-full {
  padding: 16px;
}
.xl-padding {
  padding: 24px;
}
.xxl-padding {
  padding: 32px;
}
.no-padding {
  padding: 0;
}
.no-side-padding {
  padding-left: 0;
  padding-right: 0;
}
.s-side-padding {
  padding-left: 4px;
  padding-right: 4px;
}
.s-side-margin {
  margin: 0 4px;
}
.s-margin {
  margin: 4px;
}
.m-margin {
  margin: 10px;
}
.m-top-margin {
  margin-top: 10px;
}
.l-top-margin {
  margin-top: 20px;
}
.xl-top-margin {
  margin-top: 30px;
}
.xxxl-top-margin {
  margin-top: 50px;
}
.m-bottom-margin {
  margin-bottom: 10px;
}
.xxxl-bottom-margin {
  margin-bottom: 50px;
}
.no-margin {
  margin: 0;
}
.no-border {
  border: none;
}
.border-bottom {
  border-bottom: 1px solid #E2E2E2;
}
/* Font Properties */
.bold {
  font-weight: bold;
}
.m-font-size {
  font-size: 1.2em;
}
.l-font-size {
  font-size: 1.5em;
}
.xl-font-size {
  font-size: 2em;
}
.xxl-font-size {
  font-size: 3.5em;
}
.xxxl-font-size {
  font-size: 5em;
}
.xxxxxl-font-size {
  font-size: 15em;
}
.font-size-14 {
  font-size: 14px;
}
.font-size-16 {
  font-size: 16px;
}
.font-size-18 {
  font-size: 18px;
}
.font-size-20 {
  font-size: 20px;
}
.font-size-24 {
  font-size: 24px;
}
/* Layout */
.right {
  float: right;
}
.left {
  float: left;
}
.center-vertical {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.center-horizontal {
  margin: auto;
  width: 80%;
  padding: 10px;
}
.center {
  display: flex;
  align-items: center;
}
.text-align-center {
  text-align: center;
}
.text-align-right {
  text-align: right;
}
.height-100 {
  height: 100%;
  padding: 0;
}
.no-wrap {
  white-space: nowrap;
}
.display-inline {
  display: inline;
}
.position-relative {
  position: relative;
}
/* Colors */
.xlight-background {
  background-color: #FAFAFA;
}
.light-background {
  background-color: #F2F2F2;
}
.medium-background {
  background-color: #DCDCDC;
}
.dark-background {
  background-color: #828282;
}
.xdark-background {
  background-color: #000000;
}
.light-color {
  color: #FFFFFF;
}
.medium-color {
  color: #787878;
}
.dark-color {
  color: #000000;
}
.danger-color {
  color: #FC5453;
}
/* Other */
.link-unstyled {
  text-decoration: none;
  color: inherit;
}
.link-unstyled:hover {
  text-decoration: none;
  color: inherit;
}
.modal-lg {
  width: 90%!important;
}
.submit-button-width {
  width: 340px;
}
/* Document download */
.download-file {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 48px;
}
.download-file.download-file--row {
  flex-direction: row;
}
.download-file.download-file--row span {
  margin-right: 10px;
}
.property-content-wrapper.display {
  display: flex;
  border-left: 1px solid #BBBBBB;
  border-right: 1px solid #BBBBBB;
}
.property-content-wrapper.display > div:first-child {
  border-right: 1px solid #BBBBBB;
}
.property-content-wrapper.display .property-content {
  border-top: 1px solid #BBBBBB;
}
.rotate {
  -webkit-animation: rotate 2s infinite linear;
  animation: rotate 2s infinite linear;
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.react-datepicker {
  font-size: 1.3rem !important;
}
.react-datepicker__current-month,
.react-datepicker-time__header {
  font-size: 1.5rem !important;
}
.react-datepicker__header {
  padding-top: 6px !important;
}
.react-datepicker__navigation {
  top: 13px !important;
}
.react-datepicker__day-name,
.react-datepicker__day {
  margin: 0.5rem !important;
}
.react-datepicker__time-box {
  margin: 0 !important;
}
.react-datepicker__time-list {
  padding: 0 !important;
}
.react-datepicker-wrapper {
  width: 100%;
}
.react-datepicker__input-container {
  width: 100%;
}
.wizard-nav-enabled {
  background-color: #95C000;
}
.wizard-nav-disabled {
  background-color: #CCCCCC;
}
.wizard-nav-active {
  background-color: #000000;
}
.submit-section {
  margin-top: 50px;
  margin-bottom: 50px;
}
.custom-gliph-ok {
  color: #97BF0D;
}
.custom-alert-danger {
  color: #FFFFFF;
  background-color: #FF0000;
  padding: 30px;
}
.cancellation-date {
  background-color: #D5D5D5;
}
.tenant-header {
  border-bottom: 1px solid #BBBBBB;
  border-top: 1px solid #BBBBBB;
}
.header-slogan {
  margin-left: 120px;
}
.header-logo {
  margin-right: 30px;
}
.section {
  margin-top: 30px;
  border-bottom: 2px solid #BBBBBB;
}
.section-header {
  background-color: #31AFE1;
  margin-bottom: 2px;
}
.section-header-text {
  font-size: 1.5em;
  font-weight: bold;
  padding: 16px;
}
.validation-error {
  color: lightcoral;
  font-weight: bold;
}
.circle {
  height: 200px;
  width: 200px;
  background-color: #31AFE1;
  border-radius: 50%;
  display: inline-block;
}
.link-clear {
  color: white;
}
.link-clear:hover {
  color: inherit;
  cursor: pointer;
}
.language-item {
  height: 80px;
  border-right: 1px solid #5ABFE7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}
.language-item:last-child {
  border-left: 1px solid #5ABFE7;
}
.contract-missing {
  background-color: #31AFE1;
  color: #FFFFFF;
  height: 100%;
  padding: 0;
}
.top-right {
  position: absolute;
  top: 0;
  right: 0;
}
.header {
  height: 80px;
}
.validation-error-wrapper {
  width: 480px;
  float: right;
  padding: 5px;
}
.form-group.has-feedback {
  margin-bottom: 0;
}
.company-logo {
  width: 313px;
  height: 60px;
}
.release-version {
  color: #E2E2E2;
  float: right;
  margin: 5px;
}
