
/** _______________ **/
/**      PopUp      **/
.tw_popup {
  display: none;
  position: fixed;

  max-height: 500px;
  box-shadow: 0 0 5px #888888;
}

.tw_popup__content {
  background-color: #fff;
  padding: 5px;
}

.tw_popup__header {
  display: flex;
  justify-content: space-between;

  cursor: pointer;
  height: 25px;

  font-weight: bold;
  background-color: #2a3883;
  color: #fff;
}

.tw_popup__header__title {
  padding: 0 10px;
  line-height: 25px;
  vertical-align: middle;
  /* Empêche de selectionner le header : */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.tw_popup__header__title:first-letter {
  text-transform: capitalize;
}

.tw_popup__header__btns {
  width: 50px;
  display: flex;
  justify-content: space-between;
}

.tw_popup__header__btns__btn {
  width: 25px;
  text-align: center;
}

.tw_popup__header__btns__btn:hover {
  background-color: #fff;
  color: #2a3883;
}

.tw_popup__header__btns__btn .fa {
  line-height: 25px;
  vertical-align: middle;
}

/**    Fin PopUp    **/
/** _______________ **/