/* For black buttons */
.lextenso-black-button {
  padding: 0.3em 1em;
  border: none;
  background: #292929;
  color: #fff;
  text-decoration: none;
}

/* For grey links */
.lextenso-grey-link {
  color: #495258;
  font-size: 14px;
}

/* For red links */
.lextenso-red-link {
  border: none;
  background-color: #fff;
  color: #cd0027;
  text-decoration: underline;
}
.lextenso-red-link:hover {
  text-decoration: none;
}

/* For red buttons */
.lextenso-red-button {
  padding: 13px 15px;
  border: #cd0027 1px solid !important;
  border-radius: 3px;
  background-color: #fff;
  color: #cd0027;
  text-decoration: none;
  font-size: 14px;
  line-height: 14px;
}
.lextenso-red-button:hover {
  text-decoration: underline;
  outline: 0;
}

.lextenso-red-button:focus {
  outline: 0;
}

.lextenso-select {
  /*height: 40px;*/
  padding: 11px 30px 11px 13px;
  border: #bbbdbf 1px solid;
  border-radius: 3px;
  background: url('../images/select.png') no-repeat right 10px center;

  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.lextenso-textfield {
  padding: 11px 13px;
  max-width: 100%;
  border: #bbbdbf 1px solid;
  border-radius: 3px;
}

/* LEXTENSO HINTS */
.lextenso-hint {
  display: block;
}
.lextenso-hint .lextenso-hint-content {
  position: absolute;
  z-index: 10;
  display: none;
  visibility: hidden;
  padding: 1em;
  width: 90%;
  height: auto;
  border: 3px solid #ececec;
  border-radius: 6px;
  background: #fff;
  color: black;
  text-align: center;
  font-weight: normal;
}
.lextenso-hint:hover .lextenso-hint-content {
  display: block;
  visibility: visible;
}

.lextenso-hint .lextenso-hint-content:after {
  position: absolute;
  border-style: solid;
  content: ' ';
}
.lextenso-hint-left .lextenso-hint-content:after {
  top: 50%;
  left: 100%;
  margin-top: -10px;
  border-width: 10px;
  border-color: transparent;
  border-left-color: #ececec;
}
.lextenso-hint-top .lextenso-hint-content:after {
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border-width: 10px;
  border-color: transparent;
  border-top-color: #ececec;
}
.lextenso-hint-right .lextenso-hint-content:after {
  top: 50%;
  right: 100%;
  margin-top: -10px;
  border-width: 10px;
  border-color: transparent;
  border-right-color: #ececec;
}
.lextenso-hint-bottom .lextenso-hint-content:after {
  bottom: 100%;
  left: 50%;
  margin-left: -10px;
  border-width: 10px;
  border-color: transparent;
  border-bottom-color: #ececec;
}

.lextenso-loading {
  position: relative;
}

.lextenso-loading:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999999999;
  visibility: visible;
  width: 100%;
  height: 100%;
  background-color: #e3e1d8;
  content: '';
  opacity: 0.8;
}

.lextenso-loading:after {
  position: fixed;
  top: 50%;
  left: calc(50% - 45px);
  z-index: 9999999999;
  visibility: visible;
  height: 45px;
  background: transparent url("/sites/lextenso/themes/lextenso/images/bigLoader.gif") no-repeat center center;
  content: 'Veuillez patienter';
  line-height: 100px;
}
.lextenso-modal {
  position: relative;
}

.lextenso-modal:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 12;
  visibility: visible;
  width: 100%;
  height: 100%;
  background-color: #2e2e2e;
  content: '';
  opacity: 0.6;
}

.lextenso-radios-columns-container label, .lextenso-radios-columns-container input {
  display: inline;
  float: none !important;
}
.lextenso-radios-columns-container {
  text-align: left;
}
.lextenso-radios-columns-container > div {
  margin: 5px;
}

.lextenso-flex {
  display: flex;
}

/* LEXTENSO HIDDEN CONTAINERS*/
.lextenso-hidden-container {
  z-index: 14;
  width: 0;
  height: 0;
}

.lextenso-hidden-content {
  position: relative;
  z-index: 14;
  margin: 2rem auto;
  padding: 12px;
  min-height: 1px;
  width: 352px;
  border-radius: 3px;
  background-color: #fff;
  cursor: auto;
}

.lextenso-hidden-content:before {
  position: absolute;
  top: -15px;
  left: 25px;
  z-index: -1;
  width: 30px;
  height: 30px;
  background: white;
  content: ' ';
  transform: rotate(45deg);
}

.lextenso-hidden-content > .container-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.lextenso-hidden-content form {
  margin: 12px;
}



