/**
 * @author Thomas Lenoel <thomas.lenoel@ssi-soft.fr>
 */
body {
  font-family: 'Inter', sans-serif; }
  body main {
    min-height: 78vh; }
  body .error {
    background-color: red;
    color: white; }
  body .success {
    background-color: green;
    color: white; }

#form-instruction div#delete_button {
  margin-right: 32px; }

input[type=radio].alarm ~ label::after {
  content: url("/images/fire.svg");
  width: 30px;
  padding-right: 10px;
  margin-left: 3px;
  display: inline-block;
  float: right; }

input[type=radio].derangement ~ label::after {
  content: url("/images/exclamation-triangle.svg");
  width: 30px;
  padding-right: 10px;
  margin-left: 3px;
  display: inline-block;
  float: right; }

input[type=radio].alarm.derangement ~ label::after {
  content: url("/images/fire.svg") url("/images/exclamation-triangle.svg");
  width: 50px;
  margin-left: 3px;
  display: inline-block;
  float: right; }

#instruction_form_point input[type=radio] {
  opacity: 0;
  position: fixed;
  width: 0; }

#instruction_form_point .form-check {
  padding-left: 0; }

#instruction_form_point label {
  width: calc(100% - 15px);
  display: inline-block;
  background-color: #EFF0EF;
  padding-left: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-family: sans-serif, Arial;
  font-size: 16px;
  border-radius: 5px; }
  #instruction_form_point label:hover {
    background-color: lightgrey;
    cursor: pointer; }

#instruction_form_point input[type=radio]:checked + label {
  background-color: #0d6efd;
  color: white;
  border-radius: 5px; }

.exclamation-icon {
  width: 30px;
  padding-right: 10px;
  margin-left: 3px;
  display: inline-block; }

#instruction_address_scroll {
  overflow: auto;
  height: 700px;
  margin-bottom: 10px; }

#instruction_form_type option {
  font-size: 16px;
  padding-left: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 5px; }

.option-alarm {
  color: #CC0000; }

.icone-alarm ~ label::after {
  background: url("/images/fire.svg") no-repeat;
  width: 20px;
  padding-right: 10px;
  margin-left: 3px;
  float: left; }

.option-derangement {
  color: #FFB43C; }

.select-alarm {
  color: #CC0000; }

.select-derangement {
  color: #FFB43C; }

.custom-select-container {
  position: relative;
  display: inline-block;
  width: 100%; }

.selected-option {
  padding: 10px;
  cursor: pointer; }

.custom-options {
  display: none;
  position: absolute;
  background-color: white;
  z-index: 1;
  width: 100%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); }

.custom-option {
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center; }
  .custom-option:hover {
    background-color: #f1f1f1; }

.option-image {
  display: inline-block;
  vertical-align: middle; }

.show {
  display: block; }

.limited-height {
  max-height: 450px;
  overflow-y: auto; }

.tooltip {
  position: relative;
  display: inline-block; }
  .tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    /* Position the tooltip above the text */
    top: 25%;
    left: 50%;
    margin-left: -5%;
    opacity: 0;
    transition: opacity 0.3s; }
  .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1; }

.compte-titre {
  color: #055AFF;
  font-size: 24px; }

.tox .tox-promotion,
.tox .tox-menubar {
  display: none !important; }
