/* =====================================================================

BUTTON CSS

===================================================================== */

button {
  align-items: center;
  background-color: #EFF3F6;
  border: none;
  color: white;
  cursor: pointer;
  display: inline-flex;
  display: -ms-inline-flexbox;
  display: -webkit-inline-box;
  font: inherit;
  font-weight: 700;
  justify-content: center;
  outline: none;
  padding: 6px 12px;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -ms-user-select: none;
  -moz-user-select: none;
  text-decoration: none;
  user-select: none;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -webkit-user-select: none;
  white-space: nowrap;
}

/*<div type='button' class='link-button ... */
.link-button {
  align-items: center;
  background-color: #EFF3F6;
  border: none;
  color: white;
  cursor: pointer;
  display: inline-flex;
  display: -ms-inline-flexbox;
  display: -webkit-inline-box;
  font: inherit;
  font-weight: 700;
  justify-content: center;
  outline: none;
  padding: 6px 6px;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -ms-user-select: none;
  -moz-user-select: none;
  text-decoration: none;
  user-select: none;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -webkit-user-select: none;
  white-space: nowrap;
}

.ui-button { 
    margin: 0 20px 0 0;
}
.ui-button--bordered { border-radius: 10px; }

.main-app__overlay-header > .ui-button {
    margin: 0;
}

#popupMsgBox .ui-button { margin: 0; }

.ui-button--r { background-color: #EE5545 !important; color:white; }
.ui-button--r:hover { background-color: #D02C18 !important; }

/*bouton  rouge sur fond bleu gris */
.ui-button--br { background-color: #eff3f6 !important; color:#EE5545; }
.ui-button--br:hover { color: #D02C18 !important; }

/*pour icone remove dans footer rouge fond bleu du footer*/
.ui-button--rb { background-color: #5D7F98 !important; color:#EE5545;font-size: 20px;  }
.ui-button--rb:hover { color: #D02C18; }

/* icone rouge sur fond blanc */
.ui-button--rg { background-color: white !important; color:#EE5545; }
.ui-button--rg:hover { color: #D02C18 !important; }

.ui-button--b { background-color: #5D7F98; }
.ui-button--b:hover { background-color: #4A6578; }

.ui-button--g { color: #537890; }
.ui-button--g:hover { background-color: #CEDBE4; }

/* icone blanche sur fond bleu foncé pour listBox*/
.ui-button--bb {
    background-color: #537890;
    color:white;
}
.ui-button--bb:hover { background-color: #CEDBE4; }

/* icone bleu foncé sur fond en cours + */
.ui-button--w {
    color: #5D7F98;
    font-size: 16px;
    text-transform: uppercase;
}
.ui-button--bw {
    background-color: white;
    color: #5D7F98;
    font-size: 16px;
    text-transform: uppercase;
}

.main-app__language .ui-button--w {
    text-decoration: underline;
    text-underline-position: under;
}

.main-app__language.is-collapsed .ui-button--w {
    text-decoration: none;
}

.ui-button--flex {
  display: inline-flex;
  flex-direction: row;
}

.ui-button--nth {
  background-color: transparent;
  color: #CEDBE4;
  display: inline-flex;
  padding: 0;
}


.ui_button__label {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}

.ui-button__label--down { text-transform: uppercase; }
.ui-button--margin { margin: 0 20px 15px 0; }
.ui-button__label--up { font-weight: 300; }
.ui-button__label--up_small {
    font-weight: 300;
    font-size: x-small;
    color: white !important;
    text-decoration:none;
}
.ui-button__popup { font-size: 30px; }

.ui-button__wrap {
  display: inline-flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.ui-icon__button {
  font-size: 1.3rem;
  margin-right: 10px;
  cursor: pointer;
}
.ui-icon__button-list{
  margin-right: 5px;
}

/*===================================*/
.ui-link_button {
    position: relative;
    margin: 3px;
    padding: 0px;
    height: 30px;
}

.ui-link_button:after {
    content: '';
    position: absolute;
    top: -5px;
    bottom: -5px;
    left: -5px;
    right: -5px;
}

a.ui-link_button:visited 
{
	color:#000;
	font-weight:bold;
}

a.ui-link_button:link
{
	color:#000;
	font-weight:bold;
}
