@charset "UTF-8";
/* Import of global structure */
/* The order of import is important because of variables and mixins! */
/* *************************************** */
/*										   */
/* Global configuration of core folder:    */
/* Contain variables and mixins: ;		   */
/*										   */
/* *************************************** */
/* ==reset */
/* Following variables are in core/_reset.scss */
/* ------------------------------------------- */
/* ==breakpoints */
/* Following variables are in the end of this file  */
/* ------------------------------------------------ */
/* ==table */
/* Following variables are in core/_table.scss */
/* ------------------------------------------- */
/* ==grid */
/* Following variables are in core/_grid.scss  */
/* ------------------------------------------- */
/* ==form */
/* Following variables are in core/_form.scss */
/* ------------------------------------------ */
/* ==flash */
/* Following variables are in core/_helpers.scss */
/* --------------------------------------------- */
/* ------------------------------------------ */
/* Your others variables: 		 		      */
/* ------------------------------------------ */
/* ------------------------------------------ */
/* ==mixins */
/* ------------------------------------------- */
/* Defines the breakpoints for each display */
/**
 * Mixin handling REM with PX fallback
 * Takes either PX or REM as input
 * Outputs both in appropriate order
 */
/* ----------------------------- */
/* ==helpers */
/* ----------------------------- */
/**
 * Flash message
 */
.flash-bag {
  margin: 10px 0;
  padding: 5px;
  border-radius: 5px;
}
.flash-bag.error {
  background: #fbe1e1;
  color: #444444;
}
.flash-bag.success {
  background: #cae7c4;
  color: #444444;
}
.flash-bag.warning {
  background: #F9CC1C;
  color: #000;
}
.flash-bag.info {
  background: #01B0F0;
  color: #fff;
}

/**
 * Clearfix
 */
.clearfix:after, .line:after, .mod:after {
  content: "";
  clear: both;
  display: table;
}

/**
 * Hidden yet accessible content
 */
.visuallyhidden {
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  border: 0;
  position: absolute;
}

/**
 * Spacing helpers
 * p, m = padding,margin
 * a, t, r, b, l = all, top, right, bottom, left
 * s, m, l, n, 0 = small(10px), medium(20px), large(30px), zero or none(0)
 */
.m-auto {
  margin: auto;
}

.m-reset, .ma0 {
  margin: 0 !important;
}

.p-reset, .pa0 {
  padding: 0 !important;
}

.ma1, .mas {
  margin: 10px !important;
}

.ma2, .mam {
  margin: 20px !important;
}

.ma3, .mal {
  margin: 30px !important;
}

.pa1, .pas {
  padding: 10px;
}

.pa2, .pam {
  padding: 20px;
}

.pa3, .pal {
  padding: 30px;
}

.mt0, .mtn {
  margin-top: 0 !important;
}

.mt1, .mts {
  margin-top: 10px !important;
}

.mt2, .mtm {
  margin-top: 20px !important;
}

.mt3, .mtl {
  margin-top: 30px !important;
}

.mr0, .mrn {
  margin-right: 0;
}

.mr1, .mrs {
  margin-right: 10px;
}

.mr2, .mrm {
  margin-right: 20px;
}

.mr3, .mrl {
  margin-right: 30px;
}

.mb0, .mbn {
  margin-bottom: 0 !important;
}

.mb1, .mbs {
  margin-bottom: 10px !important;
}

.mb2, .mbm {
  margin-bottom: 20px !important;
}

.mb3, .mbl {
  margin-bottom: 30px !important;
}

.ml0, .mln {
  margin-left: 0;
}

.ml1, .mls {
  margin-left: 10px;
}

.ml2, .mlm {
  margin-left: 20px;
}

.ml3, .mll {
  margin-left: 30px;
}

.pt0, .ptn {
  padding-top: 0;
}

.pt1, .pts {
  padding-top: 10px;
}

.pt2, .ptm {
  padding-top: 20px;
}

.pt3, .ptl {
  padding-top: 30px;
}

.pr0, .prn {
  padding-right: 0;
}

.pr1, .prs {
  padding-right: 10px;
}

.pr2, .prm {
  padding-right: 20px;
}

.pr3, .prl {
  padding-right: 30px;
}

.pb0, .pbn {
  padding-bottom: 0;
}

.pb1, .pbs {
  padding-bottom: 10px;
}

.pb2, .pbm {
  padding-bottom: 20px;
}

.pb3, .pbl {
  padding-bottom: 30px;
}

.pl0, .pln {
  padding-left: 0;
}

.pl1, .pls {
  padding-left: 10px;
}

.pl2, .plm {
  padding-left: 20px;
}

.pl3, .pll {
  padding-left: 30px;
}

.br5 {
  border-radius: 5px;
}

.br10 {
  border-radius: 10px;
}

.desktop-hidden {
  display: none;
} /* hidden on desktop */
/* ----------------------------- */
/* ==reset */
/* ----------------------------- */
/**
 * 1. Base font-size (corresponds to 10px) adapted to REM unit
 * 2. Orientation iOS font-size fix
 */
html {
  font-size: 62.5%; /* 1 */
}
@media (orientation: landscape) and (max-device-width: 768px) {
  html {
    -webkit-text-size-adjust: 100%; /* 2 */
  }
}

body {
  color: #444444;
  font-family: helvetica, arial, sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
}

/**
 * Font-sizing for content
 * Preserves vertical-rythm
 * Source: http://soqr.fr/vertical-rhythm/
 */
p, ul, ol, dl,
blockquote, pre,
td, th,
label, textarea,
caption, details, figure, hgroup {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 0.75em 0 0;
}

h1, .h1-like,
h2, .h2-like,
h3, .h3-like,
h4, .h4-like,
h5, .h5-like,
h6, .h6-like {
  font-weight: normal;
  margin: 0 0 0.3em 0;
}

h1, .h1-like,
h2, .h2-like,
h3, .h3-like {
  line-height: 42px 0 0 0;
  line-height: 4.2rem 0 0 0;
}

h4, .h4-like,
h5, .h5-like,
h6, .h6-like {
  line-height: 21px 0 0 0;
  line-height: 2.1rem 0 0 0;
}

h1, .h1-like {
  font-size: 26px;
  font-size: 2.6rem;
}

h2, .h2-like {
  font-size: 24px;
  font-size: 2.4rem;
}

h3, .h3-like {
  font-size: 22px;
  font-size: 2.2rem;
}

h4, .h4-like {
  font-size: 20px;
  font-size: 2rem;
}

h5, .h5-like {
  font-size: 18px;
  font-size: 1.8rem;
}

h6, .h6-like {
  font-size: 16px;
  font-size: 1.6rem;
}

/* alternate font-sizing */
.smaller {
  font-size: 10px;
  font-size: 1rem;
}

.small {
  font-size: 12px;
  font-size: 1.2rem;
}

.medium {
  font-size: 14px;
  font-size: 1.4rem;
}

.big {
  font-size: 16px;
  font-size: 1.6rem;
}

.bigger {
  font-size: 18px;
  font-size: 1.8rem;
}

.biggest {
  font-size: 20px;
  font-size: 2rem;
}

/**
 * Soft reset
 */
html, body,
textarea,
figure, label {
  margin: 0;
  padding: 0;
}

ul, ol {
  padding-left: 1em;
}
ul.unstyled, ol.unstyled {
  list-style: none;
}

code, pre,
samp, kbd {
  white-space: pre-wrap;
  font-family: consolas, "DejaVu Sans Mono", courier, monospace;
  line-height: 1em;
}

code, kbd, mark {
  border-radius: 2px;
}

em {
  font-style: italic;
}

strong {
  font-weight: bold;
}

kbd {
  padding: 0 2px;
  border: 1px solid #999;
}

code {
  padding: 2px 4px;
  background: rgba(0, 0, 0, 0.04);
  color: #b11;
}

mark {
  padding: 2px 4px;
  background: #ff0;
}

table {
  margin-bottom: 1.5em;
}

/**
 * Avoid top margins on first content element
 */
p:first-child, ul:first-child, ol dl:first-child,
blockquote:first-child, pre:first-child,
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}

/**
 * Avoid margins on nested elements
 */
li p, li ul, li ol {
  margin-top: 0;
  margin-bottom: 0;
}

/**
 * Prevents those to break out of their container
 */
img, table, td,
blockquote, code, pre,
textarea, input, video {
  max-width: 100%;
}

/**
 * Exception: Jquery-File-Upload require this for an invisible input.
 */
.fileinput-button input {
  max-width: none;
}

/**
 * You shall not pass
 */
div, textarea,
table, td, th,
code, pre, samp {
  word-wrap: break-word;
  hyphens: auto;
}

/**
 * Pictures
 */
img {
  height: auto;
  vertical-align: middle;
  /* Gmap3 max-width bug fix on images */
}
#map_canvas img, .gmnoprint img {
  max-width: none;
}
a img {
  border: 0;
}

/* scripts */
body > script {
  display: none !important;
}

/* skip-links */
.skip-links {
  position: absolute;
}
.skip-links a {
  position: absolute;
  left: -7000px;
  padding: 0.5em;
  background: #000;
  color: #fff;
  text-decoration: none;
}
.skip-links a:focus {
  position: static;
}

/* ----------------------------- */
/* ==layout and modules */
/* ----------------------------- */
/**
 * Switching box-model for all elements
 * 1. ...and pseudo-elements
 */
*,
*:after,
*:before {
  box-sizing: border-box;
}

/**
 * Float layout
 * module, contains floats (.item is the same)
 */
.mod, .item {
  overflow: hidden;
}

/**
 * Blocks that needs to be placed under floats
 */
.clear, .line, .row {
  clear: both;
}

/**
 * Blocks that must contain floats
 */
/**
 * Inline-blocks
 */
.inbl {
  display: inline-block;
  vertical-align: top;
  margin-right: -0.25em;
}

.dtable {
  display: table;
}

/**
 * Flexbox layout
 */
.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.flex-h {
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-v {
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-fluid {
  -webkit-box-flox: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flex-start {
  -webkit-box-ordinal-group: -1;
  -moz-box-ordinal-group: 0;
  -ms-flex-order: -1;
  -webkit-order: -1;
  -moz-order: -1;
  order: -1;
}

.flex-mid {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  -moz-order: 1;
  order: 1;
}

.flex-end {
  -webkit-box-ordinal-group: 42;
  -moz-box-ordinal-group: 42;
  -ms-flex-order: 42;
  -webkit-order: 42;
  -moz-order: 42;
  order: 42;
}

/* Alignments (blocks and inline) */
/* ------------------------------ */
.left {
  float: left;
}

.right {
  float: right;
}

img.left {
  margin-right: 1em;
}

img.right {
  margin-left: 1em;
}

img.left,
img.right {
  margin-bottom: 5px;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

.txtleft {
  text-align: left;
}

.txtright {
  text-align: right;
}

.txtcenter {
  text-align: center;
}

/**
 * Blocks widths
 * (percentages and pixels)
 */
.w10 {
  width: 10%;
}

.w15 {
  width: 15%;
}

.w20 {
  width: 20%;
}

.w25 {
  width: 25%;
}

.w30 {
  width: 30%;
}

.w33 {
  width: 33.333%;
}

.w40 {
  width: 40%;
}

.w50 {
  width: 50%;
}

.w60 {
  width: 60%;
}

.w66 {
  width: 66.666%;
}

.w70 {
  width: 70%;
}

.w75 {
  width: 75%;
}

.w80 {
  width: 80%;
}

.w90 {
  width: 90%;
}

.w100 {
  width: 100%;
}

.mw75 {
  max-width: 73%;
}

.w50p {
  width: 50px;
}

.w100p {
  width: 100px;
}

.w150p {
  width: 150px;
}

.w200p {
  width: 200px;
}

.w250p {
  width: 250px;
}

.w300p {
  width: 300px;
}

.w400p {
  width: 400px;
}

.w500p {
  width: 500px;
}

.w600p {
  width: 600px;
}

.w700p {
  width: 700px;
}

.w800p {
  width: 800px;
}

.w960p {
  width: 960px;
}

.mw960p {
  max-width: 960px;
}

/* ----------------------------- */
/* ==tables                      */
/* ----------------------------- */
table,
.table {
  max-width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  vertical-align: top;
}

.table {
  display: table;
}

caption {
  padding: 10px;
  color: #555;
  font-style: italic;
}

table {
  border: 1px solid #ccc;
}

tr > * + * {
  border-left: 1px solid #ccc;
}

th,
td {
  padding: 0.1em 0.3em;
  text-align: left;
  border-bottom: 1px solid #ccc;
}

td {
  color: #333;
}

/**
 * Alternate tables
 */
.alternate {
  border: 0;
}
.alternate tbody {
  border: 1px solid #ccc;
}
.alternate thead tr > * + * {
  border-left: 0;
}
.alternate tbody tr > * + * {
  border-left: 1px solid #ccc;
}

/**
 * Alternate-vert tables
 */
.alternate-vert {
  border: 0;
  border-right: 1px solid #ccc;
}
.alternate-vert tr > :first-child {
  border-bottom: 0;
}
.alternate-vert tr > * + * {
  border-top: 1px solid #ccc;
}

.no-border {
  border: none !important;
}
.no-border * {
  border: none !important;
}

/**
 * Striped tables
 */
/*.striped tbody tr:nth-child(odd) {
	background: #eee;
	background: rgba(0, 0, 0, .05);
}

/**
 * Striped-vert tables
 */
/*.striped-vert tr > :first-child {
	background: #eee;
	background: rgba(0, 0, 0, .05);
}*/
/* ---------------------------------- */
/* ==Grids                            */
/* ---------------------------------- */
[class*=grid-] {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: -2%;
}

[class*=grid-] > * {
  flex: 0 0 auto;
  display: block; /* IE fix */
  width: 23%;
  margin-left: 2%;
}

.grid-2 > * {
  width: 48%;
}
.grid-2 > .flex-item-double {
  width: 98%;
}
@media (min-width: 481px) and (max-width: 768px) {
  .grid-2 > * {
    width: 48%;
  }
  .grid-2 > .flex-item-double {
    width: 98%;
  }
}
@media (max-width: 480px) {
  .grid-2 > * {
    width: 98%;
  }
  .grid-2 > .flex-item-double {
    width: 98%;
  }
}

.grid-3 > * {
  width: 31.3333333333%;
}
.grid-3 > .flex-item-double {
  width: 64.6666666667%;
}
@media (min-width: 481px) and (max-width: 768px) {
  .grid-3 > * {
    width: 48%;
  }
  .grid-3 > .flex-item-double {
    width: 98%;
  }
}
@media (max-width: 480px) {
  .grid-3 > * {
    width: 98%;
  }
  .grid-3 > .flex-item-double {
    width: 98%;
  }
}

.grid-4 > * {
  width: 23%;
}
.grid-4 > .flex-item-double {
  width: 48%;
}
@media (min-width: 481px) and (max-width: 768px) {
  .grid-4 > * {
    width: 48%;
  }
  .grid-4 > .flex-item-double {
    width: 98%;
  }
}
@media (max-width: 480px) {
  .grid-4 > * {
    width: 98%;
  }
  .grid-4 > .flex-item-double {
    width: 98%;
  }
}

.grid-5 > * {
  width: 18%;
}
.grid-5 > .flex-item-double {
  width: 38%;
}
@media (min-width: 481px) and (max-width: 768px) {
  .grid-5 > * {
    width: 48%;
  }
  .grid-5 > .flex-item-double {
    width: 98%;
  }
}
@media (max-width: 480px) {
  .grid-5 > * {
    width: 98%;
  }
  .grid-5 > .flex-item-double {
    width: 98%;
  }
}

.grid-6 > * {
  width: 14.6666666667%;
}
.grid-6 > .flex-item-double {
  width: 31.3333333333%;
}
@media (min-width: 481px) and (max-width: 768px) {
  .grid-6 > * {
    width: 48%;
  }
  .grid-6 > .flex-item-double {
    width: 98%;
  }
}
@media (max-width: 480px) {
  .grid-6 > * {
    width: 98%;
  }
  .grid-6 > .flex-item-double {
    width: 98%;
  }
}

.grid-7 > * {
  width: 12.2857142857%;
}
.grid-7 > .flex-item-double {
  width: 26.5714285714%;
}
@media (min-width: 481px) and (max-width: 768px) {
  .grid-7 > * {
    width: 48%;
  }
  .grid-7 > .flex-item-double {
    width: 98%;
  }
}
@media (max-width: 480px) {
  .grid-7 > * {
    width: 98%;
  }
  .grid-7 > .flex-item-double {
    width: 98%;
  }
}

.grid-8 > * {
  width: 10.5%;
}
.grid-8 > .flex-item-double {
  width: 23%;
}
@media (min-width: 481px) and (max-width: 768px) {
  .grid-8 > * {
    width: 48%;
  }
  .grid-8 > .flex-item-double {
    width: 98%;
  }
}
@media (max-width: 480px) {
  .grid-8 > * {
    width: 98%;
  }
  .grid-8 > .flex-item-double {
    width: 98%;
  }
}

.grid-10 > * {
  width: 8%;
}
.grid-10 > .flex-item-double {
  width: 18%;
}
@media (min-width: 481px) and (max-width: 768px) {
  .grid-10 > * {
    width: 48%;
  }
  .grid-10 > .flex-item-double {
    width: 98%;
  }
}
@media (max-width: 480px) {
  .grid-10 > * {
    width: 98%;
  }
  .grid-10 > .flex-item-double {
    width: 98%;
  }
}

.grid-12 > * {
  width: 6.3333333333%;
}
.grid-12 > .flex-item-double {
  width: 14.6666666667%;
}
@media (min-width: 481px) and (max-width: 768px) {
  .grid-12 > * {
    width: 48%;
  }
  .grid-12 > .flex-item-double {
    width: 98%;
  }
}
@media (max-width: 480px) {
  .grid-12 > * {
    width: 98%;
  }
  .grid-12 > .flex-item-double {
    width: 98%;
  }
}

.grid-2-1 > *:nth-child(odd) {
  width: 64.6666666667%;
}
.grid-2-1 > *:nth-child(even) {
  width: 31.3333333333%;
}
@media (max-width: 480px) {
  .grid-2-1 > *:nth-child(n) {
    width: 98%;
  }
}

.grid-1-2 > *:nth-child(odd) {
  width: 31.3333333333%;
}
.grid-1-2 > *:nth-child(even) {
  width: 64.6666666667%;
}
@media (max-width: 480px) {
  .grid-1-2 > *:nth-child(n) {
    width: 98%;
  }
}

.grid-3-1 > *:nth-child(odd) {
  width: 73%;
}
.grid-3-1 > *:nth-child(even) {
  width: 23%;
}
@media (max-width: 480px) {
  .grid-3-1 > *:nth-child(n) {
    width: 98%;
  }
}

.grid-1-3 > *:nth-child(odd) {
  width: 23%;
}
.grid-1-3 > *:nth-child(even) {
  width: 73%;
}
@media (max-width: 480px) {
  .grid-1-3 > *:nth-child(n) {
    width: 98%;
  }
}

.grid-3-2 > *:nth-child(odd) {
  width: 58%;
}
.grid-3-2 > *:nth-child(even) {
  width: 38%;
}
@media (max-width: 480px) {
  .grid-3-2 > *:nth-child(n) {
    width: 98%;
  }
}

.grid-2-3 > *:nth-child(odd) {
  width: 38%;
}
.grid-2-3 > *:nth-child(even) {
  width: 58%;
}
@media (max-width: 480px) {
  .grid-2-3 > *:nth-child(n) {
    width: 98%;
  }
}

.grid-4-1 > *:nth-child(odd) {
  width: 78%;
}
.grid-4-1 > *:nth-child(even) {
  width: 18%;
}
@media (max-width: 480px) {
  .grid-4-1 > *:nth-child(n) {
    width: 98%;
  }
}

.grid-1-4 > *:nth-child(odd) {
  width: 18%;
}
.grid-1-4 > *:nth-child(even) {
  width: 78%;
}
@media (max-width: 480px) {
  .grid-1-4 > *:nth-child(n) {
    width: 98%;
  }
}

/* ----------------------------- */
/* ==forms */
/* ----------------------------- */
form,
fieldset {
  border: none;
}

fieldset {
  margin-bottom: 2%;
}
fieldset legend {
  margin-bottom: 2%;
}

/**
 * 1. Bugfix alignment
 */
input,
button, select,
label, .btn {
  vertical-align: middle; /* 1 */
  font-family: inherit;
}

/**
 * 1. Prevents horizontal resizing
 */
textarea {
  resize: vertical; /* 1 */
  font-family: inherit;
  font-size: 1em !important;
}

.form-align * > label {
  margin-right: 20px;
  width: 120px;
  display: inline-block;
  vertical-align: inherit;
}
.form-align textarea {
  display: block;
}

/**
 * Buttons
 */
a.btn {
  text-decoration: none;
}

.btn {
  padding: 5px 10px;
  cursor: pointer;
  border: none;
  color: #444444 !important;
  background-color: #f2f2f2;
  display: inline-block;
  vertical-align: inherit;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.3) 0 2px 1px;
  transition-property: all;
  transition-duration: 200ms;
  transition-delay: 50ms;
}
.btn:hover {
  text-decoration: none;
  background-color: #d9d9d9;
}
.btn.btn-small {
  padding: 2px 10px !important;
}
.btn.btn-large {
  padding: 10px 15px;
  font-size: 1.2em;
}
.btn.btn-disable {
  cursor: not-allowed;
  color: black !important;
  background-color: #bfbfbf;
}
.btn.btn-stream {
  color: #fff !important;
  background-color: #01B0F0;
  padding: 7px 10px;
  font-size: 1.1em;
}
.btn.btn-primary {
  color: #fff !important;
  background-color: #01B0F0;
  box-shadow: #018bbd 0 2px 1px;
}
.btn.btn-primary:hover {
  background-color: #018bbd;
}
.btn.btn-warning {
  color: #fff !important;
  background-color: #F89B00;
  box-shadow: #c57b00 0 2px 1px;
}
.btn.btn-warning:hover {
  background-color: #c57b00;
}
.btn.btn-error {
  color: #fff !important;
  background-color: #e84242;
}
.btn.btn-error:hover {
  background-color: #dc1b1b;
}
.btn.btn-success {
  color: #fff !important;
  background-color: #5BA452;
  box-shadow: #488241 0 2px 1px;
}
.btn.btn-success:hover {
  background-color: #488241;
}

/**
 * Form elements
 */
label {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}

legend {
  border: 0;
  white-space: normal;
}

button,
input,
select {
  font-family: "Century Gothic", helvetica, arial, sans-serif;
  font-size: 100%;
  margin: 0;
  vertical-align: middle;
}

/**
 * 1. Removes default vertical scrollbar on empty textarea in IE6/7/8/9
 * 2. Prevents horizontal resizing
 */
textarea {
  overflow: auto; /* 1 */
  min-height: 5em;
  font-size: 1.75em;
  vertical-align: top;
  resize: vertical; /* 2 */
}

/**
 * 1. Clickable input types in iOS
 * 2. Corrects inner spacing displayed oddly in IE7
 */
button,
input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer;
  -webkit-appearance: button; /* 1 */
  *overflow: visible; /* 2 */
}

/**
 * 1. Corrects excess space around these inputs in IE8/9
 * 2. Corrects excess space around these inputs in IE7
 */
input[type=checkbox],
input[type=radio] {
  padding: 0; /* 1 */
  *width: 13px; /* 2 */
  *height: 13px; /* 2 */
}

input[type=search] {
  -webkit-appearance: textfield;
}

/**
 * Add a slash at the end of this comment
 * if select styling bugs on WebKit *
 select { -webkit-appearance: none; } /**/
/**
 * Removes 'x' on right of search input when text is entered
 */
input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-results-button, input[type=search]::-webkit-search-results-decoration {
  display: none;
}

::-webkit-input-placeholder {
  color: #777;
}

input:-moz-placeholder, textarea:-moz-placeholder {
  color: #777;
}

/**
 * Removes inner padding and border in FF3+
 */
button::-moz-focus-inner,
input[type=button]::-moz-focus-inner,
input[type=reset]::-moz-focus-inner,
input[type=submit]::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* ----------------------------- */
/* ==print */
/* ----------------------------- */
/* Quick print reset */
@media print {
  p, blockquote {
    orphans: 2;
    widows: 2;
  }
  blockquote,
  ul, ol {
    page-break-inside: avoid;
  }
  h1, h2, h3,
  caption {
    page-break-after: avoid;
  }
}
/* ----------------------------- */
/* ==iefix */
/* Fix the core styles
/* ----------------------------- */
/* HasLayout for IE6/IE7 */
.ie67 {
  /* Warning: .col needs a width on IE6/IE7 */
}
.ie67 .clearfix, .ie67 .line, .ie67 .mod, .ie67 .row, .ie67 .col {
  zoom: 1;
}
.ie67 .col {
  display: inline;
  zoom: 1;
}

/**
 * 1. Bugfixes for IE8
 */
.ie8 img {
  width: auto; /* 1 */
}

/* **** End of config import **** */
/*
 * Below you have the fixs imports for each breakpoints
 * They may contain the specifics styles for responsive
 */
/* *************************************** */
/*										   */
/* Global configuration of core folder:    */
/* Contain variables and mixins: ;		   */
/*										   */
/* *************************************** */
/* ==reset */
/* Following variables are in core/_reset.scss */
/* ------------------------------------------- */
/* ==breakpoints */
/* Following variables are in the end of this file  */
/* ------------------------------------------------ */
/* ==table */
/* Following variables are in core/_table.scss */
/* ------------------------------------------- */
/* ==grid */
/* Following variables are in core/_grid.scss  */
/* ------------------------------------------- */
/* ==form */
/* Following variables are in core/_form.scss */
/* ------------------------------------------ */
/* ==flash */
/* Following variables are in core/_helpers.scss */
/* --------------------------------------------- */
/* ------------------------------------------ */
/* Your others variables: 		 		      */
/* ------------------------------------------ */
/* ------------------------------------------ */
/* ==mixins */
/* ------------------------------------------- */
/* Defines the breakpoints for each display */
/**
 * Mixin handling REM with PX fallback
 * Takes either PX or REM as input
 * Outputs both in appropriate order
 */
@media (max-width: 1023px) {
  /* Quick smartphone reset */
  .mod,
  .item,
  .col,
  fieldset {
    display: block !important;
    float: none !important;
    clear: none !important;
    width: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border: 0;
  }
  [class*=pull] > * {
    margin-left: 0 !important;
  }
  .w30,
  .w33,
  .w40,
  .w50,
  .w70,
  .w80,
  .w300p,
  .w400p,
  .w500p {
    width: auto !important;
  }
  .mw75 {
    max-width: 100%;
  }
  /* Layouts for tiny (t) screens */
  .tiny-hidden,
  .phone-hidden {
    display: none !important;
  }
  .tiny-visible {
    display: block !important;
  }
  .tiny-no-float {
    float: none;
  }
  .tiny-inbl {
    display: inline-block;
    vertical-align: top;
    float: none;
  }
  .tiny-row {
    display: table !important;
    table-layout: fixed !important;
    width: 100% !important;
  }
  .tiny-col {
    display: table-cell !important;
    vertical-align: top !important;
  }
  th,
  td {
    width: 100% !important;
    text-align: left !important;
  }
  thead {
    display: none;
  }
  /* widths for tiny (t) screens */
  .tiny-w25 {
    width: 25% !important;
  }
  .tiny-w33 {
    width: 33.3333% !important;
  }
  .tiny-w50 {
    width: 50% !important;
  }
  .tiny-w66 {
    width: 66.6666% !important;
  }
  .tiny-w75 {
    width: 75% !important;
  }
  .tiny-w100 {
    display: block !important;
    float: none !important;
    clear: none !important;
    width: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border: 0;
  }
  /* Margins for tiny (t) screens */
  .tiny-ma0,
  .tiny-man {
    margin: 0 !important;
  }
  [class*=grid] > * {
    float: left;
  }
  [class*=grid] > * + * {
    margin-top: 2%;
    margin-left: 2%;
  }
  /* -------------------------------------------------- */
}
/* *************************************** */
/*										   */
/* Global configuration of core folder:    */
/* Contain variables and mixins: ;		   */
/*										   */
/* *************************************** */
/* ==reset */
/* Following variables are in core/_reset.scss */
/* ------------------------------------------- */
/* ==breakpoints */
/* Following variables are in the end of this file  */
/* ------------------------------------------------ */
/* ==table */
/* Following variables are in core/_table.scss */
/* ------------------------------------------- */
/* ==grid */
/* Following variables are in core/_grid.scss  */
/* ------------------------------------------- */
/* ==form */
/* Following variables are in core/_form.scss */
/* ------------------------------------------ */
/* ==flash */
/* Following variables are in core/_helpers.scss */
/* --------------------------------------------- */
/* ------------------------------------------ */
/* Your others variables: 		 		      */
/* ------------------------------------------ */
/* ------------------------------------------ */
/* ==mixins */
/* ------------------------------------------- */
/* Defines the breakpoints for each display */
/**
 * Mixin handling REM with PX fallback
 * Takes either PX or REM as input
 * Outputs both in appropriate order
 */
@media (min-width: 641px) and (max-width: 1023px) {
  /* quick tablet reset */
  .w60,
  .w66,
  .w70,
  .w75,
  .w80,
  .w90,
  .w100,
  .w600p,
  .w700p,
  .w800p,
  .w960p,
  .mw960p,
  .medium-wauto {
    width: auto;
  }
  /* layouts for medium (m) screens */
  .medium-hidden,
  .tablet-hidden {
    display: none !important;
  }
  .medium-visible {
    display: block !important;
  }
  .medium-no-float {
    float: none;
  }
  .medium-inbl {
    display: inline-block;
    vertical-align: top;
    float: none;
  }
  .medium-row {
    display: table !important;
    table-layout: fixed !important;
    width: 100% !important;
  }
  .medium-col {
    display: table-cell !important;
    vertical-align: top !important;
  }
  /* widths for medium (m) screens */
  .medium-w25 {
    width: 25% !important;
  }
  .medium-w33 {
    width: 33.3333% !important;
  }
  .medium-w50 {
    width: 50% !important;
  }
  .medium-w66 {
    width: 66.6666% !important;
  }
  .medium-w75 {
    width: 75% !important;
  }
  .medium-w100 {
    display: block !important;
    float: none !important;
    clear: none !important;
    width: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border: 0;
  }
  /* margins for medium (m) screens */
  .medium-ma0,
  .medium-man {
    margin: 0 !important;
  }
  .form-align * > label {
    margin-right: 0px;
    text-align: left;
    display: block;
  }
  /* -------------------------------------------------- */
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* Retina-specific stuff here */
}
/* *************************************** */
/*										   */
/* Global configuration of core folder:    */
/* Contain variables and mixins: ;		   */
/*										   */
/* *************************************** */
/* ==reset */
/* Following variables are in core/_reset.scss */
/* ------------------------------------------- */
/* ==breakpoints */
/* Following variables are in the end of this file  */
/* ------------------------------------------------ */
/* ==table */
/* Following variables are in core/_table.scss */
/* ------------------------------------------- */
/* ==grid */
/* Following variables are in core/_grid.scss  */
/* ------------------------------------------- */
/* ==form */
/* Following variables are in core/_form.scss */
/* ------------------------------------------ */
/* ==flash */
/* Following variables are in core/_helpers.scss */
/* --------------------------------------------- */
/* ------------------------------------------ */
/* Your others variables: 		 		      */
/* ------------------------------------------ */
/* ------------------------------------------ */
/* ==mixins */
/* ------------------------------------------- */
/* Defines the breakpoints for each display */
/**
 * Mixin handling REM with PX fallback
 * Takes either PX or REM as input
 * Outputs both in appropriate order
 */
@media (min-width: 1024px) {
  /* Layouts for large (l) screens */
  .large-hidden,
  .tablet-hidden {
    display: none !important;
  }
  .large-visible {
    display: block !important;
  }
  .large-no-float {
    float: none;
  }
  .large-inbl {
    display: inline-block;
    vertical-align: top;
    float: none;
  }
  .large-row {
    display: table;
    table-layout: fixed;
    width: 100% !important;
  }
  .large-col {
    display: table-cell;
    vertical-align: top;
  }
  /* Widths for large (l) screens */
  .large-w25 {
    width: 25% !important;
  }
  .large-w33 {
    width: 33.3333% !important;
  }
  .large-w50 {
    width: 50% !important;
  }
  .large-w66 {
    width: 66.6666% !important;
  }
  .large-w75 {
    width: 75% !important;
  }
  .large-w100 {
    display: block !important;
    float: none !important;
    clear: none !important;
    width: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border: 0;
  }
  /* Margins for large (l) screens */
  .large-ma0,
  .large-man {
    margin: 0 !important;
  }
  /* -------------------------------------------------- */
  nav {
    display: inline;
  }
  nav ul {
    margin: 0;
    padding: 0;
  }
  nav li {
    margin: 0 5px 0 0;
    padding: 0;
    float: left;
  }
  nav a {
    padding: 5px 5px;
    display: block;
    font-size: 1.2em;
  }
  .bglight .mod {
    margin: 0;
    height: 20em;
    border-right: 1px solid #7d7d7d;
  }
  .bglight .mod:last-child {
    border-right: 0;
  }
}
nav {
  display: block;
}

.overlay, #overlay {
  background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0;
  bottom: 0;
  display: none;
  left: 0;
  position: fixed;
  right: 0;
  top: 0 !important;
  z-index: 18;
}

#popup_container .dims_popup, #popup_container #dims_popup {
  top: 20px;
}

hr {
  height: 1px;
  border: none;
  background-color: #cccccc;
}

.main-color {
  color: #00afdb;
}

.pbo-content {
  padding: 2px;
  background-color: #FFF;
}

a {
  color: #444444;
  outline: none;
}
a:hover {
  color: #00afdb;
}

li.nav-item {
  list-style-type: none;
}

/* current links */
#menu .menu .current-menu-item > a,
#menu .menu .current-menu-ancestor > a {
  position: relative;
  z-index: 12;
  background: #42d9ff;
  border-radius: 2px;
  border-bottom: 1px solid transparent;
}
#menu .menu .current-menu-item > a:hover,
#menu .menu .current-menu-ancestor > a:hover {
  background: #444;
}
#menu .menu .current-menu-item > a:hover:after,
#menu .menu .current-menu-ancestor > a:hover:after {
  border-top-color: #444;
}

.wrap a:hover {
  color: #00afdb;
}

.menu-wrapper {
  position: relative;
  z-index: 50;
  padding-top: 2px;
  padding-bottom: 2px;
  font-size: 1.857em;
  background: #444;
  /* the hidden link for RWD nav */
  /* the rest of the menu lvl 1 */
  /* submenu ! */
  /* unhide the 2nd level */
}
.menu-wrapper .menu {
  margin: 0;
  padding-left: 0;
  list-style: none;
  text-align: center;
}
.menu-wrapper .menu > li {
  position: relative;
  padding: 0.2em 0;
  display: inline-block;
}
.menu-wrapper li.has-subnav {
  max-height: 30px;
}
.menu-wrapper a.menu-link {
  display: none;
  padding: 0.2em 0;
  background: #00afdb;
}
.menu-wrapper a {
  display: block;
  position: relative;
  padding: 0.5em;
  margin: 0 0.2em;
  line-height: 1.3em;
  color: #444444;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.menu-wrapper a:hover {
  color: #00afdb;
  transition: all 0.5s;
}
.menu-wrapper .sub-menu {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin: -0.7em 0 0 -0.7em;
  padding: 3px 0 0 0;
  position: absolute;
  max-height: 0em;
  overflow: hidden;
  list-style: none outside none;
  text-align: left;
}
.menu-wrapper .sub-menu li {
  margin-left: 0.7em;
  margin-right: 0.7em;
  display: block;
  background-color: #d9d9d9;
}
.menu-wrapper .sub-menu a {
  margin: 0;
  padding: 5px 10px;
  white-space: nowrap;
  line-height: 1.8em;
  border: none;
}
.menu-wrapper .sub-menu a:hover {
  color: #FFF !important;
  background: #00afdb;
}
.menu-wrapper .sub-menu li:last-child a {
  border-bottom: 1px silver #f2f2f2;
}
.menu-wrapper li:hover .sub-menu {
  max-height: 100em;
  transition: max-height 0.5s;
}

.round-pic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.path {
  position: relative;
  top: -5px;
  color: #777777 !important;
}

.flash-bag .icon {
  font-size: 1.8em;
  margin-top: 4px;
}
.flash-bag .content-flash {
  padding-left: 2.7em;
}

.white-box {
  background-color: #FFF;
}

.logbox {
  margin-top: 10%;
  border-top: 2px solid #00afdb;
  box-shadow: rgba(0, 0, 0, 0.2) 0 10px 15px;
}
.logbox hr {
  max-width: 80%;
  height: 1px;
  border: none;
  background-color: #00afdb;
}

.pbo-tabs-horizontal ul {
  margin-left: -13px !important;
  clear: both;
}
.pbo-tabs-horizontal ul li {
  float: left;
  margin-top: 10px;
  margin-right: 5px;
  margin-bottom: 10px;
  text-align: center;
}
.pbo-tabs-horizontal ul span {
  position: relative;
  z-index: 0;
}
.pbo-tabs-horizontal ul a {
  display: inline-block;
  padding: 5px;
  text-decoration: none;
  background-color: #e6e6e6;
  border-radius: 5px 5px 0 0;
}
.pbo-tabs-horizontal ul a:hover {
  color: inherit;
  background-color: #d9d9d9;
}
.pbo-tabs-horizontal ul a.active {
  color: #fff;
  background-color: #00afdb;
}
.pbo-tabs-horizontal ul a.active:hover {
  cursor: default;
}

#dims_popup .ui-widget-header.ui-corner-top + .ui-helper-clearfix {
  min-height: 265px;
}

.menu-wrapper {
  z-index: 1000;
}

.d-none {
  display: none;
}

div#constantizer {
  top: 40px;
}

div#constantizer label {
  color: #FFFFFF;
}

/* Adaptation DIMSV6 */
div.title_h2 div.actions > table,
div.sub_bloc_form table td > table {
  margin-bottom: 0px !important;
}

div.sub_bloc_form td.label_field label,
div.sub_bloc_form table td,
div.totaux label {
  font-size: 1.1rem !important;
}

div.sub_bloc_form table td.label_field {
  width: 15% !important;
}

div.fields_gauche td.label {
  width: auto !important;
}

li.search-field input {
  padding: 0px !important;
}

div.container_zone_droite div.title_shortcuts {
  overflow: hidden;
}

div.arborescence h3,
#lateral h3 {
  font-size: 1.5rem !important;
  padding: 10px !important;
}

span.cke_wrapper table.cke_editor {
  left: 0px !important;
}

div.content_arbo .form_object_block form .sub_bloc table,
#filters table,
div.price_stock table {
  left: 0px !important;
}

select#article_shipping_costs,
table.tableau select {
  width: 100%;
}

#families_chzn,
#client_chzn {
  width: 100% !important;
}

div.sub_bloc_form td {
  padding: 0.5em !important;
}

table.table_referencement td.actions {
  text-align: right !important;
}

#recurs_fam ul {
  padding-left: 0px;
}

#recurs_fam table {
  margin-bottom: 0px;
}

.external-content h3 {
  font-size: 1.6rem;
}

div.search_block > div.input_container,
form#filtre div.input_container {
  line-height: 25px !important;
}

#description > h3 > select {
  font-size: 1.2rem !important;
}

#main_content h3 {
  color: #00afdb !important;
  margin-top: 12px;
  margin-bottom: 12px;
  font-weight: bold;
}

#main_content h1 {
  font-size: 1.7em !important;
  font-weight: bold;
}

div.menu_principal > a:hover,
#lateral a:hover {
  color: rgb(66, 66, 66) !important;
}

.sub_bloc_form table {
  table-layout: auto !important;
}

.menu-wrapper .sub-menu a:hover {
  background-color: #00afdb !important;
}

.menu-wrapper a:hover,
#params_sidebar a:hover {
  color: #00afdb !important;
}

div#params_sidebar {
  width: auto !important;
}

div.sub_bloc_form table td.label_field {
  text-align: right !important;
  width: auto !important;
}

/* Dims calendar popup */
#calendar {
  padding: 4px;
}
#calendar .calendar_row {
  clear: both;
  overflow: auto;
}
#calendar .calendar_row .calendar_day {
  float: left;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
}
#calendar .calendar_row .calendar_day div {
  width: 21px;
  height: 21px;
  line-height: 21px;
  border: 1px solid #d8d8d8;
}
#calendar .calendar_row .calendar_day a {
  display: block;
  text-decoration: none;
  width: 21px;
  height: 21px;
  line-height: 21px;
  border: 1px solid #c0c0c0;
}
#calendar .calendar_row .calendar_day a:hover {
  text-decoration: none;
}
#calendar .calendar_row .calendar_day_selected {
  text-decoration: none;
}
#calendar .calendar_row .calendar_arrow {
  float: left;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
}
#calendar .calendar_row .calendar_month {
  float: left;
  width: 140px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  font-weight: bold;
}

.group-spec {
  padding: 0;
  margin: 0;
  background-color: white;
  border-radius: 5px;
  border: 1px solid #d9d9d9;
  overflow: hidden;
}
.group-spec input[type=text],
.group-spec input[type=search] {
  width: 85%;
  padding: 6px 5px 5px 5px;
  background-color: none;
  border: none;
}
.group-spec input[type=image] {
  margin: 0;
  padding: 5px;
  float: right;
  width: 30px;
  height: 30px;
  border: none;
  background-color: #f2f2f2;
  transition-property: all;
  transition-duration: 300ms;
  transition-delay: 100ms;
}
.group-spec input[type=image]:hover {
  background-color: #0fcfff;
}

.form-align {
  margin-bottom: 10px;
}
.form-align label {
  margin-right: 15px;
  width: 15%;
}
.form-align textarea,
.form-align select,
.form-align input {
  padding: 5px;
  height: 40px;
  width: 70% !important;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  transition-property: all;
  transition-duration: 200ms;
  transition-delay: 50ms;
}
.form-align textarea:focus,
.form-align select:focus,
.form-align input:focus {
  box-shadow: rgba(0, 0, 0, 0.3) 0 0 3px;
}
.form-align select[required].required,
.form-align input[required].required {
  padding-right: 15px;
  background-image: image-url("backoffice/pureBO/icon/required.png");
  background-repeat: no-repeat;
  background-position: 99.5%;
  -webkit-background-size: 10px;
  -o-background-size: 10px;
  background-size: 10px;
}
.form-align select {
  padding-top: 10px;
}
.form-align textarea {
  height: 100px;
  display: inline-block;
}

fieldset {
  background-color: #f2f2f2;
}

/* ----------------------------------------  FORMS DE CREATION / EDITION : DESKTOPV2*/
form.form_object_block,
div.form_object_block {
  width: 99%;
  margin: auto;
}
form.form_object_block div.sub_bloc_form,
div.form_object_block div.sub_bloc_form {
  background-color: #FAFAFA;
  border: 1px solid #DEDEDE;
  padding: 5px;
}
form.form_object_block div.hidden div.sub_bloc_form table,
div.form_object_block div.hidden div.sub_bloc_form table {
  display: none;
}
form.form_object_block td.label_field,
div.form_object_block td.label_field {
  text-align: right;
  width: auto;
}
form.form_object_block td.label_field label,
div.form_object_block td.label_field label {
  font-weight: bold;
  color: #666;
}
form.form_object_block td.label_field span.required,
div.form_object_block td.label_field span.required {
  color: #E83137;
  margin-left: 3px;
  line-height: 16px;
  vertical-align: top;
}
form.form_object_block td.label_field label.label_disabled,
div.form_object_block td.label_field label.label_disabled {
  color: #999 !important;
}
form.form_object_block td.w30,
div.form_object_block td.w30 {
  width: 30% !important;
}
form.form_object_block td.label_left,
div.form_object_block td.label_left {
  text-align: left !important;
}
form.form_object_block td.label_top,
div.form_object_block td.label_top {
  vertical-align: top !important;
}
form.form_object_block td.label_chz_top,
div.form_object_block td.label_chz_top {
  vertical-align: top !important;
  padding-top: 7px;
}
form.form_object_block div.sub_bloc,
div.form_object_block div.sub_bloc {
  height: auto;
  width: 100%;
}
form.form_object_block div.sub_bloc h3,
div.form_object_block div.sub_bloc h3 {
  color: #DF1D31;
}
form.form_object_block div.sub_bloc h3 input,
div.form_object_block div.sub_bloc h3 input {
  vertical-align: middle;
}
form.form_object_block div.sub_bloc table,
div.form_object_block div.sub_bloc table {
  width: 99%;
}
form.form_object_block div.sub_bloc table td.legend span,
div.form_object_block div.sub_bloc table td.legend span {
  font-size: 0.9em;
  color: #999;
}
form.form_object_block div.sub_bloc table td input,
div.form_object_block div.sub_bloc table td input {
  width: 100%;
}
form.form_object_block div.sub_bloc table td input.fixe200,
div.form_object_block div.sub_bloc table td input.fixe200 {
  width: 200px;
}
form.form_object_block div.sub_bloc table td input[type=checkbox],
div.form_object_block div.sub_bloc table td input[type=checkbox] {
  width: auto;
}
form.form_object_block div.sub_bloc table td input[type=radio],
div.form_object_block div.sub_bloc table td input[type=radio] {
  width: auto;
}
form.form_object_block div.sub_bloc table td input[type=file],
div.form_object_block div.sub_bloc table td input[type=file] {
  width: auto;
  float: left;
}
form.form_object_block div.sub_bloc table td select[multiple=multiple],
div.form_object_block div.sub_bloc table td select[multiple=multiple] {
  width: 100%;
  overflow: auto;
}
form.form_object_block div.sub_bloc table td textarea,
div.form_object_block div.sub_bloc table td textarea {
  width: 60%;
  min-height: 80px;
}
form.form_object_block div.sub_bloc table td img.existing_img,
div.form_object_block div.sub_bloc table td img.existing_img {
  float: left;
  margin-left: 10px;
}
form.form_object_block div.skip,
div.form_object_block div.skip {
  margin-bottom: 15px;
}

div.sub_form {
  margin-top: 5px;
  overflow: hidden;
  width: 100%;
}
div.sub_form > div {
  float: right;
  line-height: 20px;
  color: #424242;
}
div.sub_form > div.form_buttons > div {
  float: left;
  margin-right: 7px;
}
div.sub_form span.mandatory_fields {
  color: #E83137;
}

.btn-danger {
  color: white !important;
}

.btn:hover {
  color: white !important;
}

@media (max-width: 1023px) {
  .wrap {
    padding: 1em;
  }
  .js .menu-wrapper nav[role=navigation] {
    overflow: hidden;
    max-height: 0em;
  }
  .js .menu-wrapper nav[role=navigation].active {
    max-height: 30em;
    transition: max-height 0.5s ease-out;
  }
  .menu-wrapper {
    /* unhide the 2nd level */
    /* styling the toggle menu */
    /* arrow to indicate that we have subnav*/
  }
  .menu-wrapper a.menu-link {
    display: block;
    width: auto;
    padding-right: 15px;
    padding-left: 10px;
    border: none;
    margin: 0;
    color: white;
    background-color: #2b2b2b;
  }
  .menu-wrapper a.menu-link.active .ico-caret-down:before {
    content: "\f0d8";
  }
  .menu-wrapper .menu .menu {
    padding-bottom: 5px;
  }
  .menu-wrapper .menu li {
    display: block;
    border: 1px solid navy;
    border: none;
  }
  .menu-wrapper .menu > li {
    padding: 0px;
    border: none;
  }
  .menu-wrapper .menu > li + li {
    border-top: 1px dashed #f2f2f2;
  }
  .menu-wrapper .menu a {
    padding: 15px 0;
    margin: 0px;
    border: none;
    font-size: 1.4em;
    color: white;
    border-bottom: 1px dashed gray;
  }
  .menu-wrapper .menu a:hover {
    background: #00afdb;
  }
  .menu-wrapper .menu .rightalign {
    float: none;
  }
  .menu-wrapper li + li a:before {
    content: "";
  }
  .menu-wrapper li:hover .sub-menu {
    max-height: 0em;
    transition: none;
  }
  .menu-wrapper .sub-menu {
    background: none;
    margin-left: 0px;
    margin-top: 1px;
    display: block;
    width: 100%;
  }
  .menu-wrapper .sub-menu li,
  .menu-wrapper .sub-menu li a {
    margin: 0;
    display: block;
    width: 100%;
    background-color: #2b2b2b;
  }
  .menu-wrapper .sub-menu a {
    padding-left: 0.8em;
  }
  .menu-wrapper .sub-menu a:hover {
    background: #00afdb;
  }
  .menu-wrapper .sub-menu li {
    border-bottom: 1px dashed #d9d9d9;
  }
  .menu-wrapper .sub-menu li:last-child {
    padding: 0;
  }
  .menu-wrapper .sub-menu li:last-child a {
    border: none;
  }
  .menu-wrapper .menu .has-subnav {
    position: relative;
  }
  .menu-wrapper li .sub-menu.active {
    max-height: 30em;
    overflow: visible;
    position: relative;
    z-index: 9;
    transition: max-height 0.5s ease-out;
  }
  .menu-wrapper .toggle-link {
    height: 53px;
    width: 60px;
    display: block;
    position: absolute;
    right: 0px;
    z-index: 200;
    font-size: 0em;
    cursor: pointer;
    font-family: "Ico";
    speak: none;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    background-color: #373737;
    border-radius: 5px 0 0 5px;
  }
  .menu-wrapper .toggle-link:hover {
    transition: all 0.2s;
    background: #2b2b2b;
  }
  .menu-wrapper .menu .has-subnav > .toggle-link:after {
    content: "▾";
    position: absolute;
    width: 50px;
    top: 50%;
    margin-top: -15px;
    bottom: 50%;
    right: 4px;
    font-size: 28px;
    color: #fff;
  }
  .menu-wrapper .menu .has-subnav > .toggle-link.active:after {
    content: "▴";
    margin-top: -18px;
  }
  #brodash {
    font-size: 0.7em;
  }
  #dashmenu a {
    font-size: 1.2em;
  }
  #dashmenu .current-menu-item {
    background-color: #0086a8;
  }
  .main {
    border-bottom: 2px solid #d7d7d7;
  }
  .mt2p {
    margin-top: 20px;
  }
  .form-align {
    margin-bottom: 10px;
  }
  .form-align label {
    text-align: center;
    width: auto;
    display: block;
  }
  .form-align select,
  .form-align input {
    width: 100% !important;
  }
  .form-align textarea {
    padding: 5px;
    width: 100% !important;
  }
}
@media (min-width: 1024px) {
  .right-desk {
    margin-top: 0.2em;
    float: right;
  }
  .wrap-main {
    margin-left: 2px;
  }
  #onglets + .wrap-main {
    margin-left: 204px;
  }
  .menu-wrapper {
    margin-left: 20px;
    margin-right: 20px;
    width: auto;
    background: transparent;
  }
  .wrap {
    margin-right: 6px;
    margin-left: 4px;
  }
  .menu-wrapper .menu a {
    font-size: 1em;
  }
  .sub-menu li {
    float: none;
    border-bottom: 1px dashed gray;
  }
  .sub-menu li:last-child {
    border-bottom: none;
  }
  .sub-menu li img {
    margin-right: 5px;
  }
  .sub-menu a {
    min-width: 200px;
    color: #444 !important;
  }
  .has-subnav:after {
    position: relative;
    top: -2.1em;
    left: 0.1em;
    float: right;
    content: "▾";
  }
  .second-nav {
    z-index: 5 !important;
    margin-left: 0 !important;
  }
  #dashmenu {
    text-transform: none;
  }
  #dashmenu .current-menu-item {
    background-color: transparent;
    font-weight: bold;
    border-bottom: 2px solid #00afdb;
  }
  #dashmenu .current-menu-item:after {
    top: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #00afdb;
    border-width: 5px;
    left: 50%;
    margin-left: -5px;
  }
  #dashmenu li {
    padding: 0;
    padding-bottom: 2px !important;
    margin-right: 2.1em;
  }
  #dashmenu a {
    padding: 0;
    margin: 0;
  }
  #dashmenu .has-subnav:after {
    position: relative;
    top: -1.45em;
    left: 0.85em;
    float: right;
    content: "▾";
  }
  #dashmenu .sub-menu {
    margin-top: -1px;
  }
  #dashmenu .sub-menu li {
    margin: 0 !important;
    padding: 0 !important;
    background-color: #e5e5e5;
  }
  #dashmenu .sub-menu a {
    padding: 5px;
    color: #444444 !important;
    text-shadow: none;
  }
  #dashmenu .sub-menu a:hover {
    color: #FFF !important;
    background-color: #00afdb;
  }
  .tabs-pure {
    width: 180px;
    margin-top: 2.3em;
    margin-left: 2em;
  }
  .tabs-pure a {
    font-size: 0.8em;
  }
  .tabs-pure .item {
    margin-bottom: 0.2em;
    background: #eaeaea;
    border-left: 1px solid silver;
    border-top: 1px solid silver;
    border-bottom: 1px solid silver;
    border-radius: 5px 0 0 5px;
    transition-property: all;
    transition-duration: 150ms;
    transition-delay: 50ms;
  }
  .tabs-pure .item:hover {
    background-color: #f2f2f2;
  }
  .tabs-pure .item .close-item-tab {
    float: left;
    margin-top: 1px;
    font-size: 0.9em;
  }
  .tabs-pure .item .close-item-tab a {
    color: #c4c4c4;
    transition-property: all;
    transition-duration: 200ms;
    transition-delay: 50ms;
  }
  .tabs-pure .item .close-item-tab a:hover {
    padding-left: 5px;
    background-color: transparent;
    color: #5e5e5e !important;
  }
  .tabs-pure .item span {
    position: relative;
    top: 4px;
    color: #00afdb;
  }
  .tabs-pure .item a {
    padding: 5px;
    display: block;
    color: #444444;
    text-decoration: none;
    font-size: 0.9em;
    transition-property: all;
    transition-duration: 300ms;
    transition-delay: 50ms;
  }
  .tabs-pure .item a:hover {
    padding-left: 10px;
    background-color: #fff;
  }
  .tabs-pure .item.tab-active {
    position: relative;
    z-index: 10;
    color: #444444;
    background-color: #FFF;
  }
  .tabs-pure .item.tab-active .close-item-tab a {
    color: #444;
  }
  .tabs-pure .item.tab-active .close-item-tab a:hover {
    color: #00afdb !important;
  }
  .tabs-pure .item.tab-active a {
    color: #fff;
    font-weight: bold;
  }
  .sidebar + .main {
    margin-right: 250px;
    border-right: 2px solid #d7d7d7;
  }
  .main {
    padding-right: 20px;
  }
  .sidebar {
    width: 260px;
  }
  a + a[data-tabable=true] {
    margin-left: 10px;
  }
  a[data-tabable=true] {
    position: relative;
    margin-right: 20px;
  }
  a[data-tabable=true]:after {
    display: inline-block;
    position: absolute;
    top: 0;
    right: -14px;
    content: " ";
  }
  a[data-tabable=true]:hover:after {
    font-family: "icomoon";
    content: "\e75a";
    color: #919191;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1100px) {
  #submenu a {
    font-size: 0.9em !important;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1450px) {
  .tabs-pure {
    width: 140px;
  }
  #onglets + .wrap-main {
    margin-left: 164px;
  }
  .group-spec input[type=text],
  .group-spec input[type=search] {
    width: 78%;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1900px) {
  .has-subnav:after {
    top: -25px;
  }
  #dashboard .has-subnav:after {
    top: 0;
  }
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .modal-header {
    display: block !important;
  }
  .tab-content.w100 {
    display: block !important;
  }
}
.ie8 .menu-wrapper {
  margin-left: 40px;
  margin-right: 40px;
  background-color: transparent;
}
.ie8 .menu-wrapper .menu li {
  float: left;
}
.ie8 .menu-wrapper .menu .sub-menu li {
  width: 150px;
  float: none !important;
}
.ie8 .menu-wrapper .sub-menu li a {
  color: white !important;
}
.ie8 .menu-wrapper .right-desk {
  margin-top: 0.8em;
  float: right;
}
.ie8 .wrap {
  margin-top: 60px;
  margin-left: 40px;
  margin-right: 40px;
  width: auto;
}
.ie8 .path {
  margin-left: 0;
}
.ie8 .tabs {
  display: none;
}
.ie8 #dashboard {
  margin-left: 0;
  padding-left: 0;
}
.ie8 .main {
  width: 75%;
  border-right: 2px solid #d9d9d9;
}
.ie8 .sidebar {
  float: left;
  width: 20%;
}
.ie8 [class*=icon-] {
  display: none;
}

.ie11 .modal-header {
  display: block !important;
}

#dims_connexion {
  width: auto;
}

table,
td,
th {
  border: none;
}

.pbo-content:after {
  clear: both;
  display: block;
  content: "";
}

#inet_v2_content .content_gauche {
  width: 73%;
  clear: none;
  float: left;
}
#inet_v2_content h2 {
  font-size: 15px !important;
  font-weight: bold;
}
#inet_v2_content .zone_search {
  margin-bottom: 50px;
}
#inet_v2_content #only_me {
  position: relative;
  top: 4px;
  right: 5px;
}
#inet_v2_content #only_me + label {
  padding-top: 10px;
}
#inet_v2_content div.zone_recent_activities div.ro_details a {
  color: #424242 !important;
}
#inet_v2_content div.zone_recent_activities div.ro_details a:hover {
  color: inherit !important;
}
#inet_v2_content div.zone_recent_activities .calendar {
  position: relative;
  display: inline;
  top: -15px;
  width: 15%;
  height: 70px;
}
#inet_v2_content div.zone_recent_activities .calendar_top {
  padding: 1px !important;
  font-size: 10px !important;
}
#inet_v2_content div.zone_recent_activities .calendar_bot {
  text-align: center !important;
}
#inet_v2_content .zone_companies_recently {
  padding: 0;
}
#inet_v2_content .zone_companies_recently table {
  width: auto;
}
#inet_v2_content .zone_companies_recently td,
#inet_v2_content .zone_companies_recently th {
  padding: 1px 5px;
}
#inet_v2_content .classshortcut {
  padding: 2px;
  text-align: center;
  vertical-align: top;
  font-weight: bold;
  width: 100px;
  margin-bottom: 5px;
  display: inline-block;
}
#inet_v2_content .classshortcut a {
  font-size: 11px;
  text-decoration: none;
}
#inet_v2_content .classshortcut img {
  text-align: center;
}
#inet_v2_content #country_chzn,
#inet_v2_content #year_chzn {
  position: relative;
  top: -10px;
}
#inet_v2_content #body_planning {
  max-width: 98%;
}
#inet_v2_content #body_planning #radio_selector_period {
  margin: 0;
}
#inet_v2_content #body_planning #radio_selector_period input[type=radio] {
  position: absolute;
  left: -9999px;
}
#inet_v2_content #body_planning #radio_selector_period input[type=radio]:checked + label {
  background-color: white !important;
}
#inet_v2_content #body_planning #radio_selector_period label {
  padding: 5px;
  background-color: #f2f2f2;
  border: 1px solid #d9d9d9;
}
#inet_v2_content #body_planning #radio_selector_period label:not(first-child) {
  margin-left: -3px;
}
#inet_v2_content #body_planning #radio_selector_period #radio1 + label {
  border-radius: 5px 0 0 5px;
}
#inet_v2_content #body_planning #radio_selector_period #radio3 + label {
  border-radius: 0 5px 5px 0;
}
#inet_v2_content #body_planning #radio_selector_period input:last-child {
  margin-left: -3px;
}

#activity_general .vatop {
  margin-left: -70px;
}
#activity_general .vatop table td {
  max-width: 400px !important;
  display: inline-block;
}
#activity_general label[class=title] {
  display: block;
  width: 150px !important;
}
#activity_general .w20p {
  width: 30px;
}

#activity_localisation .w50p {
  width: 100px;
}
#activity_localisation #activity_city_id {
  max-width: 100%;
}

#activity_email_alert table tr td:first-child {
  width: 30px;
}
#activity_email_alert table tr td {
  width: 70px;
}
#activity_email_alert table tr .w20p {
  width: 30px;
}

.ui-icon,
.ui-icon-searchfield:after {
  background-color: transparent;
}

#colorpicker_crosshairs {
  float: left;
}

#new_company_contact .title_new_contact {
  width: 70px !important;
}

#cadre_new_company {
  margin-top: -92px;
  margin-left: -10px;
  display: block;
  border: none;
}
#cadre_new_company .cadre_add_picture {
  border: none !important;
}
#cadre_new_company + span {
  margin-top: -65px !important;
}

#new_company_city + span,
#new_company_search_country + span {
  display: none !important;
}

.browser_address_book .ligne1_sel {
  padding: 5px 0;
}
.browser_address_book .text_nav_AB {
  margin: 0 !important;
  padding: 0 !important;
}
.browser_address_book .icon_nav_AB {
  margin-top: 0 !important;
  padding-top: 2px !important;
}
.browser_address_book .icon_nav_AB img {
  min-width: 11px !important;
  min-height: 14px !important;
}
.browser_address_book .icon_contacts_AB {
  margin-right: 20px;
}
.browser_address_book .icon_contacts_AB img {
  min-width: 20px !important;
  min-height: 20px !important;
}
.browser_address_book .icon_fiche_contacts_AB img {
  min-width: 40px !important;
  min-height: 40px !important;
}
.browser_address_book .icon_fiche_nav_AB img {
  min-width: 11px !important;
  min-height: 14px !important;
}

.zone_new_lead label[for=keywords],
.zone_new_lead label[for=opportunity],
.zone_new_lead label[for=product],
.zone_new_lead label[for=responsible],
.zone_new_activity label[for=keywords],
.zone_new_activity label[for=opportunity],
.zone_new_activity label[for=product],
.zone_new_activity label[for=responsible] {
  width: 100px;
}
.zone_new_lead .chzn-drop,
.zone_new_lead .chzn-container,
.zone_new_activity .chzn-drop,
.zone_new_activity .chzn-container {
  width: 220px;
}

.ro_calendar {
  float: right !important;
  width: 130px;
}
.ro_calendar .bloc_calendar + td {
  margin: 0;
  padding: 0;
}
.ro_calendar .calendar_top {
  padding: 1px !important;
  font-size: 10px !important;
}
.ro_calendar .calendar_bot {
  text-align: center !important;
}

#activity_title {
  width: auto !important;
}

.frame table td:first-child img {
  display: none;
}
.frame table td:nth-child(3) img {
  min-width: 20px !important;
  min-height: 20px !important;
}

#app_offer_general .w50p, #app_offer_search_contact .w50p {
  width: 130px;
}

#app_offer_localisation .w50p {
  width: 100px;
}
#app_offer_localisation select {
  max-width: 100%;
}

#opportunities .w20p,
#activities .w20p {
  width: auto !important;
}
#opportunities th,
#activities th {
  font-size: 10px;
}

#popup_container {
  position: absolute;
  z-index: 120;
}
#popup_container .dims_popup,
#popup_container #dims_popup {
  position: absolute;
  visibility: hidden;
  top: 0px;
  left: 0px;
  z-index: 122;
  background-color: #FFFFFF;
  min-height: 10px !important;
}

#dims_popup.dims_popup.ui-dialog.ui-widget.ui-widget-content.ui-corner-all {
  min-width: 249px !important;
  min-height: 100px !important;
}

#module_ct .ui-tabs.ui-widget.ui-widget-content.ui-corner-all + table {
  float: left;
}
#module_ct .ui-tabs.ui-widget.ui-widget-content.ui-corner-all + table:after {
  display: table;
  content: "";
  clear: both;
}

.form_object_block form .sub_bloc table {
  position: relative;
  /*left: -50px;*/
}

.zone_graphe .cadre_legende {
  margin: 0;
  width: 19%;
}

.lien_stats {
  position: absolute;
  bottom: 0;
  right: 30px;
}

.system_main > .ui-tabs.ui-widget.ui-widget-content.ui-corner-all {
  max-height: 40px;
  overflow: hidden;
}

.small, small {
  font-size: 100% !important;
  vertical-align: middle !important;
}

label {
  font-size: 14px;
}

* .dims_explorer_element {
  display: block;
}

* .dims_explorer_element p {
  padding: 2px 4px;
  margin: 0;
  overflow: hidden;
}

a.dims_explorer_element:hover {
  text-decoration: none;
}

a.dims_explorer_link {
  display: block;
  overflow: hidden;
  text-decoration: none;
  margin-top: 1px;
}

div.dims_explorer_line {
  overflow: hidden;
  border-bottom: 1px solid #d0d0d0;
}

div.dims_explorer_tools {
  overflow: hidden;
}

div.dims_explorer_tools a {
  display: block;
  float: left;
  padding: 1px 2px;
}

div.dims_explorer_main {
  position: relative;
  overflow: hidden;
}

div.dims_explorer_maintitle {
  font-weight: bold;
  padding: 4px;
  overflow: auto;
}

div.dims_explorer_title {
  font-weight: bold;
  border-bottom: 1px solid #d8d8d8;
  overflow: auto;
}

div.dims_explorer_column {
  position: absolute;
  height: 100%;
  border-left: 1px solid #d8d8d8;
  z-index: 10;
}

html {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  min-width: 100%;
  min-height: 100%;
}

body {
  overflow: auto;
  min-height: 100%;
}

@media (min-width: 576px) {
  #modal-detail-creneau .modal-dialog {
    max-width: 90%;
    width: 90%;
  }
}
@media (min-width: 1600px) {
  #modal-detail-creneau .modal-dialog,
  #modal-detail-creneau .modal-content {
    max-width: 90%;
    height: 85%;
  }
}
#modal-detail-creneau .modal-dialog,
#modal-detail-creneau .modal-content {
  /* 80% of window height */
  height: 85%;
  width: 90%;
  max-width: 90%;
  margin: 0 auto;
}
#modal-detail-creneau .modal-body {
  /* 100% = dialog height, 120px = header + footer */
  max-height: calc(100% - 80px);
  max-width: 100%;
  overflow-y: scroll;
}
#modal-detail-creneau .modal-header {
  background-color: #FEFEFE;
  padding: 6px 0px;
  margin-bottom: 5px;
}
#modal-detail-creneau .modal-header h1 {
  font-size: 18px;
  padding-left: 0px;
}

header {
  background-color: #292F47;
}

header .acces-rapide button {
  color: white;
}

header hr.dropdown-divider {
  color: white;
}

header .dropdown-menu {
  background-color: #292F47;
  padding-left: 10px;
}

header .dropdown-menu h5 {
  color: white;
  text-transform: uppercase;
  font-weight: bold;
}

header .dropdown-menu a {
  color: white;
}

ul.navbar-nav li a {
  color: white;
}

.logoutV {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

#userprofilecontent {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

div.envoimaildisabled a {
  color: #ff4b44 !important;
  line-height: normal;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
div.envoimaildisabled a span {
  color: #ff4b44 !important;
}

div.envoimaildisabled a {
  color: #ff4b44 !important;
}

div.envoimail a {
  color: #00E81F !important;
  line-height: normal;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
div.envoimail a span {
  color: #00E81F !important;
}

div.card-header {
  font-size: 18px;
}
div.card-header span.mdi {
  font-size: 18px;
}

div.card-admin div.list-group a {
  font-size: 16px;
}

#dropdownquickaccess {
  margin: 0px;
  border: 0px;
  border-radius: 0px;
}

#dropdownquickaccess a {
  font-size: 12px;
}

.nav-mobile:hover span.mdi {
  color: #ffc107 !important;
}

#dropdownquickaccess a.dropdown-item:hover span.mdi {
  color: black !important;
}

div.user-round {
  background-color: white;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  color: black;
}

@media (min-width: 370px) and (max-width: 602px) {
  content.content-bomobile {
    left: 11% !important;
    width: 88% !important;
  }
  div.actions {
    width: 100% !important;
  }
  div.actions > div.w10 {
    width: 20% !important;
  }
  div.content_arbo {
    width: 94% !important;
  }
  .zone_graphe .cadre_legende {
    width: 100%;
  }
  div.content_gauche {
    width: 100% !important;
  }
}
@media (min-width: 603px) and (max-width: 872px) {
  content.content-bomobile {
    left: 6% !important;
    width: 94% !important;
  }
  div.actions {
    width: 100% !important;
  }
  div.actions > div.w10 {
    width: 20% !important;
  }
  div.content_arbo {
    width: 94% !important;
  }
}
@media (min-width: 873px) and (max-width: 1280px) {
  .content-bolandscape {
    left: 5% !important;
    width: 95% !important;
  }
  div.actions {
    width: 100% !important;
  }
  div.actions > div.w10 {
    width: 20% !important;
  }
  div.content_arbo {
    width: 97% !important;
  }
}
@media (min-width: 370px) and (max-width: 1024px) {
  .navbar-toggler:focus {
    box-shadow: inherit;
  }
  nav.navbar {
    padding: 5px !important;
  }
  #navbarDropdown span.mdi {
    margin-right: 10px;
    margin-left: 10px;
    padding: 0px !important;
  }
  .nav-mobile span.mdi {
    display: initial !important;
    margin-right: 10px;
    margin-left: 10px;
  }
  div.envoimailmobile {
    position: initial;
    top: 0;
    right: 120px;
    height: initial !important;
    padding: 7px !important;
  }
  div.envoimailmobile span {
    display: initial !important;
  }
  div.user-roundmobile {
    position: fixed;
    top: 0;
    right: 50px;
    height: initial !important;
  }
  a.deconnexionmobile {
    position: fixed;
    top: 0;
    right: 10px;
    height: initial !important;
  }
}
.nav-item .mdi {
  font-size: 21px;
}

.nav-item .mdi {
  font-size: 21px;
}

.fs30 {
  font-size: 30px;
}

.bdcolorred {
  border: 1px solid #be6060;
}

.bg-red {
  background-color: #be6060;
}

.bgredlist {
  background-color: #F6EAEA;
}

.bdcolorviolet {
  border: 1px solid #ad77d1;
}

.bg-violet {
  background-color: #ad77d1;
}

.bgvioletlist {
  background-color: #F9F1FE;
}

.bdcolorblue {
  border: 1px solid #2AC5FE;
}

.bg-blue {
  background-color: #2AC5FE;
}

.bgbluelist {
  background-color: #EEFCFF;
}

.bdcoloryellow {
  border: 1px solid #F8B533;
}

.bg-yellow {
  background-color: #f1a713;
}

.bgyellowlist {
  background-color: #FEFAEF;
}

.bgroselist {
  background-color: #FFF3F5;
}

.bdcolorrose {
  border: 1px solid #F96A88;
}

.bg-rose {
  background-color: #F96A88;
}

.bgvertlist {
  background-color: #E3F8E2;
}

.bdcolorvert {
  border: 1px solid #45ce38;
}

.bg-vert {
  background-color: #45ce38;
}

.bgjaunelist {
  background-color: #f0f2f7;
}

.bdcolorjaune {
  border: 1px solid #4c4b52;
}

.bg-jaune {
  background-color: #84857d;
}

.bgblueadminlist {
  background-color: #E7EFFF;
}

.bdcolorblueadmin {
  border: 1px solid #5A90F3;
}

.bg-blueadmin {
  background-color: #5A90F3;
}

.card-admin div {
  width: 100%;
}

.card-admin div a {
  color: black;
  text-decoration: none;
}

div.card-admin-header {
  color: white;
}

.alert-secondary {
  color: #383d41;
  background-color: #f2f3f5;
  border-color: #d6d8db;
}

/*# sourceMappingURL=styles.css.map */
