/*
Fichier commun au desktop et mobile
*/
/* Remet tout les élements avec la même marge */
* {
  margin: 0;
  padding: 0;
}
*,
*:focus {
  outline: none;
}
body,
td {
  font-size: 13px;
}
body,
td,
th,
kbd,
select,
input,
textarea {
  font-family: 'Open Sans', Arial, Tahoma, Verdana, Helvetica, sans-serif;
}
.left {
  float: left !important;
}
.hidden {
  display: none !important;
}
.right {
  float: right !important;
}
.clear {
  clear: both;
}
a img {
  border: none;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.no-border {
  border: none !important;
}
.no-vertical-border {
  border-left: none !important;
  border-right: none !important;
}
.no-horizontal-border {
  border-top: none !important;
  border-bottom: none !important;
}
.table {
  display: table;
}
.table-cell {
  display: table-cell;
}
input[type=text],
input[type=password],
input[type=tel],
input[type=email],
input[type=submit],
input[type=reset],
input[type=url],
input[type=number],
textarea {
  border-radius: 2px;
  border-style: solid;
  border-width: 1px;
  padding: 0 7px;
  vertical-align: middle;
  -webkit-appearance: none;
}
input[type=text]:not(.xsmall):not(.small):not(.large):not(.xlarge),
input[type=password]:not(.xsmall):not(.small):not(.large):not(.xlarge),
input[type=tel]:not(.xsmall):not(.small):not(.large):not(.xlarge),
input[type=email]:not(.xsmall):not(.small):not(.large):not(.xlarge),
input[type=submit]:not(.xsmall):not(.small):not(.large):not(.xlarge),
input[type=reset]:not(.xsmall):not(.small):not(.large):not(.xlarge),
input[type=url]:not(.xsmall):not(.small):not(.large):not(.xlarge),
textarea:not(.xsmall):not(.small):not(.large):not(.xlarge) {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding-top: 6px;
  padding-bottom: 6px;
  line-height: 17px;
  font-size: 14px;
  min-height: 31px;
}
input[type=text]:not(.xsmall):not(.small):not(.large):not(.xlarge) .ss-icon,
input[type=password]:not(.xsmall):not(.small):not(.large):not(.xlarge) .ss-icon,
input[type=tel]:not(.xsmall):not(.small):not(.large):not(.xlarge) .ss-icon,
input[type=email]:not(.xsmall):not(.small):not(.large):not(.xlarge) .ss-icon,
input[type=submit]:not(.xsmall):not(.small):not(.large):not(.xlarge) .ss-icon,
input[type=reset]:not(.xsmall):not(.small):not(.large):not(.xlarge) .ss-icon,
input[type=url]:not(.xsmall):not(.small):not(.large):not(.xlarge) .ss-icon,
textarea:not(.xsmall):not(.small):not(.large):not(.xlarge) .ss-icon {
  display: inline-block;
  position: relative;
  top: 2px;
  vertical-align: baseline;
}
input[type=text]:not(.xsmall):not(.small):not(.large):not(.xlarge) .ss-icon,
input[type=password]:not(.xsmall):not(.small):not(.large):not(.xlarge) .ss-icon,
input[type=tel]:not(.xsmall):not(.small):not(.large):not(.xlarge) .ss-icon,
input[type=email]:not(.xsmall):not(.small):not(.large):not(.xlarge) .ss-icon,
input[type=submit]:not(.xsmall):not(.small):not(.large):not(.xlarge) .ss-icon,
input[type=reset]:not(.xsmall):not(.small):not(.large):not(.xlarge) .ss-icon,
input[type=url]:not(.xsmall):not(.small):not(.large):not(.xlarge) .ss-icon,
textarea:not(.xsmall):not(.small):not(.large):not(.xlarge) .ss-icon {
  font-size: 16px;
  height: 17px;
  line-height: 17px;
}
input[type=text]:hover,
input[type=password]:hover,
input[type=tel]:hover,
input[type=email]:hover,
input[type=submit]:hover,
input[type=reset]:hover,
input[type=url]:hover,
textarea:hover {
  text-decoration: none;
}
.separator,
hr {
  height: 1px;
  border: none;
  margin: 0;
  display: block;
}
.counter {
  height: 16px;
  line-height: 16px;
  min-width: 16px;
  text-align: center;
  display: inline-block;
  font-weight: 600;
  padding: 0 5px;
  box-sizing: border-box;
  vertical-align: middle;
  font-size: 11px;
}
@media (max-width: 480px) {
  .counter {
    font-size: 0.7em;
    border-radius: 8px;
  }
}
.counter:empty {
  display: none;
}
small.ss-clock::before,
small.ss-clock::after {
  position: relative;
  top: 1px;
}
ul {
  list-style-type: none;
}
.online-dot {
  background-color: #45DD34;
  color: white;
  display: inline-block;
  border-radius: 2px;
  font-size: 10px;
  line-height: 15px;
  height: 15px;
  padding: 0 3px 0 4px;
  text-align: center;
  overflow: hidden;
  -webkit-animation-name: blinker;
          animation-name: blinker;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.online-dot:before {
  content: 'online';
}
@-webkit-keyframes blinker {
  0% {
    opacity: 1.0;
  }
  40% {
    opacity: 1.0;
  }
  50% {
    opacity: 0.0;
  }
  60% {
    opacity: 1.0;
  }
  100% {
    opacity: 1.0;
  }
}
@keyframes blinker {
  0% {
    opacity: 1.0;
  }
  40% {
    opacity: 1.0;
  }
  50% {
    opacity: 0.0;
  }
  60% {
    opacity: 1.0;
  }
  100% {
    opacity: 1.0;
  }
}
h1 {
  font-size: 20px;
  font-weight: 700;
}
h2 {
  font-size: 15px;
}
a {
  font-weight: 700;
}
textarea {
  resize: none;
  width: 100%;
  display: block;
  padding: 7px;
}
.site-wrapper {
  width: 980px;
  margin: 0 auto;
}
.bg-img {
  background-position: top;
  background-repeat: none;
}
.ss-icon {
  vertical-align: middle;
  font-size: 16px;
}
.padding {
  padding: 20px;
}
.separator + .separator,
hr + hr {
  display: none;
}
span.status-message {
  border-radius: 4px;
  -moz-box-sizing: border-box;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 12px;
  line-height: 13px;
  min-height: 23px;
  padding-left: 10px;
  padding-right: 10px;
  display: inline-block;
  box-sizing: border-box;
}
span.status-message .ss-icon {
  display: inline-block;
  position: relative;
  top: 2px;
  vertical-align: baseline;
}
span.status-message .ss-icon {
  font-size: 12px;
  height: 13px;
  line-height: 13px;
}
.bloc {
  border-style: solid;
  border-width: 1px;
  margin-bottom: 20px;
  padding: 20px;
  background-position: top left;
  background-repeat: no-repeat;
}
.bloc h1 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}
.bloc h2 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}
.bloc a:hover {
  border-radius: 2px;
  text-decoration: none;
}
.bloc > .separator,
.bloc > hr {
  margin: 20px 0;
  height: 1px;
  clear: both;
  border: none;
}
.bloc ul.links {
  list-style-type: none;
}
.bloc ul.links li {
  line-height: 30px;
}
.bloc ul.links.account li {
  height: 30px;
}
.bloc ul.links li a {
  font-weight: 400;
  line-height: 13px !important;
  display: inline-block;
}
.bloc ul.links li a:hover {
  background: none !important;
}
.bloc ul.links li.selected a {
  font-weight: 700;
}
.bloc .AKForm {
  display: block;
  margin-bottom: 10px;
}
.sizing-element {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.sizing-element .ss-icon {
  display: inline-block;
  position: relative;
  top: 2px;
  vertical-align: baseline;
}
.xsmall,
.small,
.large,
.xlarge {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.xsmall .ss-icon,
.small .ss-icon,
.large .ss-icon,
.xlarge .ss-icon {
  display: inline-block;
  position: relative;
  top: 2px;
  vertical-align: baseline;
}
.xsmall {
  padding-top: 3px;
  padding-bottom: 3px;
  line-height: 12px;
  font-size: 11px;
  min-height: 20px;
}
.xsmall .ss-icon {
  font-size: 8px;
  height: 12px;
  line-height: 12px;
  top: 0;
}
.small {
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 12px;
  line-height: 13px;
  min-height: 23px;
}
.small .ss-icon {
  font-size: 12px;
  height: 13px;
  line-height: 13px;
}
.default-height {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding-top: 6px;
  padding-bottom: 6px;
  line-height: 17px;
  font-size: 14px;
  min-height: 31px;
}
.default-height .ss-icon {
  display: inline-block;
  position: relative;
  top: 2px;
  vertical-align: baseline;
}
.default-height .ss-icon {
  font-size: 16px;
  height: 17px;
  line-height: 17px;
}
.large {
  padding-top: 7px;
  padding-bottom: 7px;
  line-height: 20px;
  font-size: 14px;
  min-height: 36px;
  min-height: 20px\9;
}
.large .ss-icon {
  font-size: 16px;
  height: 20px;
  line-height: 20px;
}
.xlarge {
  padding-top: 8px;
  padding-bottom: 8px;
  line-height: 22px;
  font-size: 16px;
  min-height: 40px;
  min-height: 22px\9;
}
.xlarge .ss-icon {
  font-size: 16px;
  height: 22px;
  line-height: 22px;
}
#control-bar,
.control-bar {
  border-style: solid;
  border-width: 1px;
  border-left: none;
  border-right: none;
}
#control-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50px;
  line-height: 50px;
}
#control-bar.fixed {
  position: fixed;
  top: 80px;
}
#control-bar h1 {
  font-weight: 300;
  font-size: 20px;
}
#control-bar h1 .ss-icon {
  font-size: 21px;
  margin-right: 5px;
}
#control-bar .control-bar-wrapper {
  position: relative;
  margin: 0 auto;
  padding: 0;
  width: 980px;
  height: 50px;
}
#control-bar .control-bar-wrapper img {
  float: left;
}
#control-bar .control-bar-wrapper > * {
  display: inline-block;
  float: left;
}
#control-bar .control-bar-wrapper h1 {
  width: 250px;
  white-space: nowrap;
  height: 50px;
  line-height: 50px;
  margin-right: 20px;
}
#control-bar .control-bar-wrapper p#checkbox-control {
  position: absolute;
  left: 297px;
  margin-top: 0;
}
#control-bar .control-bar-wrapper p#checkbox-control input.checkall {
  margin-right: 20px;
  vertical-align: middle;
}
#control-bar .control-bar-wrapper p#checkbox-control a.delete-button {
  visibility: hidden;
}
#control-bar .control-bar-wrapper p#checkbox-control a.delete-button img {
  vertical-align: middle;
}
#control-bar .control-bar-wrapper div.navigation {
  margin: 3px 0 0 10px;
}
#control-bar .control-bar-wrapper div.navigation span.pagination {
  margin-right: 10px;
}
#control-bar .control-bar-wrapper div.clear {
  float: none;
}
#control-bar .control-bar-wrapper h1 a {
  text-decoration: none;
}
#control-bar .control-bar-wrapper .paginator {
  float: right;
  line-height: 0;
}
#control-bar .vertical-align-large {
  margin-top: 6px;
}
#control-bar .vertical-align-small {
  margin-top: 13px;
}
#control-bar div#edit-check-all input {
  line-height: 50px;
  height: 50px;
  margin: 0 10px;
}
#control-bar #list-delete-items {
  display: none;
  margin-right: 10px;
}
#substitutionControlBar {
  margin-bottom: -55px;
}
#spam {
  text-align: center;
  padding: 20px 10px;
}
#spam h3 {
  font-size: 1.5em;
  font-weight: normal;
}
#spam .ghost {
  font-size: 80px;
  margin: 0px;
}
.AKForm {
  position: relative;
  display: inline-block;
}
.AKForm .dropdown-list {
  left: -1px;
}
.AKForm .dropdown-list li {
  padding: 0 12px;
  line-height: 30px;
  padding-right: 20px;
}
.AKForm .dropdown-list.right {
  left: initial;
  right: -1px;
}
.AKForm.select {
  padding-right: 25px;
  text-indent: 7px;
  font-weight: 400;
  border-style: solid;
  border-width: 1px;
  border-radius: 2px;
  vertical-align: middle;
}
.AKForm.select .hotzone {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}
.AKForm.select.disabled .hotzone {
  cursor: default;
}
.AKForm.select .label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.AKForm.select.notext {
  text-indent: 0;
}
.AKForm.select.notext .label {
  display: none;
}
.AKForm.select .arrow {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top-style: solid;
  border-top-width: 6px;
  margin: 9px 0 0 9px;
  position: absolute;
  right: 7px;
  top: 0;
  z-index: 1;
}
.AKForm.select .reset {
  position: absolute;
  right: 0px;
  top: 2px;
  width: 20px;
  height: 25px;
  text-align: center;
  line-height: 25px;
  font-size: 20px;
  z-index: 2;
  text-indent: 0;
}
.AKForm.select:not(.xsmall):not(.small):not(.large):not(.xlarge) {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding-top: 6px;
  padding-bottom: 6px;
  line-height: 17px;
  font-size: 14px;
  min-height: 31px;
}
.AKForm.select:not(.xsmall):not(.small):not(.large):not(.xlarge) .ss-icon {
  display: inline-block;
  position: relative;
  top: 2px;
  vertical-align: baseline;
}
.AKForm.select:not(.xsmall):not(.small):not(.large):not(.xlarge) .ss-icon {
  font-size: 16px;
  height: 17px;
  line-height: 17px;
}
.AKForm.select:not(.xsmall):not(.small):not(.large):not(.xlarge) .arrow {
  margin-top: 12px !important;
}
.AKForm.select:not(.xsmall):not(.small):not(.large):not(.xlarge) .dropdown-list {
  top: 29px;
}
.AKForm.select.xsmall .arrow {
  margin-top: 7px !important;
}
.AKForm.select.xsmall .dropdown-list {
  top: 20px;
}
.AKForm.select.small .arrow {
  margin-top: 8px !important;
}
.AKForm.select.small .dropdown-list {
  top: 23px;
}
.AKForm.select.large .arrow {
  margin-top: 15px !important;
}
.AKForm.select.large .dropdown-list {
  top: 36px;
}
.AKForm.select.xlarge .arrow {
  margin-top: 17px !important;
}
.AKForm.select.xlarge .dropdown-list {
  top: 40px;
}
.AKForm.multiple .hotzone {
  position: relative;
  margin-bottom: 5px;
  display: inline-block;
  vertical-align: middle;
}
.AKForm.multiple .hotzone .dropdown-list {
  top: 23px;
  left: -1px;
}
.AKForm.multiple .tag {
  box-sizing: border-box;
  border-style: solid;
  border-width: 1px;
  border-radius: 2px;
  padding-right: 20px;
  padding-left: 7px;
  margin-right: 5px;
  margin-bottom: 5px;
  vertical-align: middle;
  position: relative;
  display: inline-block;
}
.AKForm.multiple .tag .remove {
  position: absolute;
  top: 4px;
  right: 0;
  display: block;
  width: 20px;
  text-align: center;
  font-size: 15px;
}
.AKForm.multiple .tag .remove:hover {
  background: none;
  text-decoration: none;
}
.AKForm.multiple.xsmall .tag {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding-top: 3px;
  padding-bottom: 3px;
  line-height: 12px;
  font-size: 11px;
  min-height: 20px;
}
.AKForm.multiple.xsmall .tag .ss-icon {
  display: inline-block;
  position: relative;
  top: 2px;
  vertical-align: baseline;
}
.AKForm.multiple.xsmall .tag .ss-icon {
  font-size: 8px;
  height: 12px;
  line-height: 12px;
  top: 0;
}
.AKForm.multiple.small .tag {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 12px;
  line-height: 13px;
  min-height: 23px;
}
.AKForm.multiple.small .tag .ss-icon {
  display: inline-block;
  position: relative;
  top: 2px;
  vertical-align: baseline;
}
.AKForm.multiple.small .tag .ss-icon {
  font-size: 12px;
  height: 13px;
  line-height: 13px;
}
.AKForm.range {
  display: block;
  margin-top: 25px;
}
.AKForm.range.single .noUi-horizontal .noUi-handle-lower {
  left: -25px !important;
}
.AKForm.range.single .noUi-horizontal .noUi-handle-lower:before {
  left: 50%;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid red;
  border-bottom: none;
  margin-left: -6px;
  border-right-color: transparent !important;
}
.AKForm.range.multiple .noUi-horizontal .noUi-handle-lower {
  left: -50px !important;
}
.AKForm.range.multiple .noUi-horizontal .noUi-handle-lower:before {
  left: initial;
  right: 0 !important;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid red;
}
.AKForm.range.multiple .noUi-horizontal .noUi-handle-upper:before {
  right: initial;
  left: 0 !important;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid red;
}
.AKForm.switch {
  position: relative;
  margin: auto;
  height: 25px;
  width: 54px;
  overflow: hidden;
}
.AKForm.switch input[type=checkbox],
.AKForm.switch .checkbox-interface {
  position: absolute;
  top: 0;
  left: 0;
}
.AKForm.switch input[type=checkbox] {
  width: 54px;
  height: 25px;
  display: block;
  z-index: 1;
  margin: auto;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.AKForm.switch .checkbox-interface,
.AKForm.switch .checkbox-interface .switch {
  width: 50px;
  height: 21px;
  text-align: center;
}
.AKForm.switch input[type=checkbox]:checked + .checkbox-interface {
  border-width: 2px;
  border-style: solid;
}
.AKForm.switch .checkbox-interface {
  display: inline-block;
  border-width: 2px;
  border-style: solid;
  border-radius: 2px;
  -webkit-transition: border-color 0.5s ease-out;
          transition: border-color 0.5s ease-out;
}
.AKForm.switch .checkbox-interface .switch {
  width: 27px;
  background-repeat: no-repeat;
  background-position: center center;
}
.AKForm.switch .checkbox-interface .switch .ss-check,
.AKForm.switch .checkbox-interface .switch .ss-delete {
  font-size: 18px;
}
.AKForm.switch input[type=checkbox] + .checkbox-interface .switch {
  margin-left: 0;
  -webkit-transition-property: background-color, margin-left;
          transition-property: background-color, margin-left;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.AKForm.switch input[type=checkbox] + .checkbox-interface .switch .ss-check {
  display: none;
}
.AKForm.switch input[type=checkbox] + .checkbox-interface .switch .ss-delete {
  display: inline;
}
.AKForm.switch input[type=checkbox]:checked + .checkbox-interface .switch {
  margin-left: 50%;
}
.AKForm.switch input[type=checkbox]:checked + .checkbox-interface .switch .ss-check {
  display: inline;
}
.AKForm.switch input[type=checkbox]:checked + .checkbox-interface .switch .ss-delete {
  display: none;
}
.AKForm.checkbox {
  display: inline-block;
  background-color: blue;
  border-style: solid;
  border-width: 1px;
  cursor: pointer;
  padding-left: 7px;
  padding-right: 7px;
  border-radius: 2px;
  vertical-align: middle;
}
.AKForm.checkbox:not(.xsmall):not(.small):not(.large):not(.xlarge) {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding-top: 6px;
  padding-bottom: 6px;
  line-height: 17px;
  font-size: 14px;
  min-height: 31px;
}
.AKForm.checkbox:not(.xsmall):not(.small):not(.large):not(.xlarge) .ss-icon {
  display: inline-block;
  position: relative;
  top: 2px;
  vertical-align: baseline;
}
.AKForm.checkbox:not(.xsmall):not(.small):not(.large):not(.xlarge) .ss-icon {
  font-size: 16px;
  height: 17px;
  line-height: 17px;
}
.AKForm.checkbox .ss-check {
  display: none;
}
.AKForm.checkbox.selected .ss-check {
  display: initial;
}
.AKForm.checkbox + .AKForm.checkbox {
  margin-left: 5px;
}
.AKForm .noUi-target,
.AKForm .noUi-origin,
.AKForm .noUi-handle,
.AKForm .noUi-target.noUi-connect {
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.AKForm .noUi-active {
  box-shadow: none;
}
.AKForm .noUi-horizontal .noUi-handle {
  display: inline-block;
  height: 19px;
  line-height: 19px;
  position: absolute;
  top: -25px;
  left: 0px !important;
  width: 50px;
}
.AKForm .noUi-horizontal .noUi-handle span {
  display: block;
  text-align: center;
  margin: 0 5px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 10px;
}
.AKForm .noUi-horizontal .noUi-handle:before,
.AKForm .noUi-horizontal .noUi-handle:after {
  content: ' ';
  position: absolute;
  top: initial;
  bottom: -6px !important;
  background: none;
  width: 0;
  height: 0;
}
.button,
button {
  padding-left: 12px;
  padding-right: 12px;
  text-decoration: none;
  cursor: pointer;
  border-style: solid;
  border-width: 1px;
  border-radius: 3px;
  text-align: center;
  font-weight: 400;
  vertical-align: middle;
}
.button:disabled,
button:disabled,
.button.disabled,
button.disabled {
  cursor: default;
  opacity: 0.5;
}
.button .ss-kiss,
button .ss-kiss {
  width: 19px;
  height: 11px;
  display: inline-block;
}
.button:not(.xsmall):not(.small):not(.large):not(.xlarge),
button:not(.xsmall):not(.small):not(.large):not(.xlarge) {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding-top: 6px;
  padding-bottom: 6px;
  line-height: 17px;
  font-size: 14px;
  min-height: 31px;
}
.button:not(.xsmall):not(.small):not(.large):not(.xlarge) .ss-icon,
button:not(.xsmall):not(.small):not(.large):not(.xlarge) .ss-icon {
  display: inline-block;
  position: relative;
  top: 2px;
  vertical-align: baseline;
}
.button:not(.xsmall):not(.small):not(.large):not(.xlarge) .ss-icon,
button:not(.xsmall):not(.small):not(.large):not(.xlarge) .ss-icon {
  font-size: 16px;
  height: 17px;
  line-height: 17px;
}
.button:hover,
button:hover {
  text-decoration: none;
}
.button.icon,
button.icon {
  background-repeat: no-repeat;
  background-position: left center;
}
a.button,
span.button,
button {
  display: inline-block;
}
.button + .AKForm.select.dropdown,
button + .AKForm.select.dropdown {
  margin-left: -6px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.default-box {
  border-style: solid;
  border-width: 1px;
  border-radius: 2px;
}
.default-box .header {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  position: relative;
  line-height: 19px;
  padding: 10px 0;
}
.default-box .header h1 {
  font-weight: 700;
  font-size: 14px;
  padding: 0 15px;
  display: inline-block;
}
.default-box .header h1 .ss-icon {
  margin-right: 8px;
  font-size: 18px;
}
.default-box .header:after,
.default-box .header:before {
  bottom: -20px;
  left: 40px;
  border-style: solid;
  border-color: transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  z-index: 10;
}
.default-box .header:after {
  border-width: 9px;
  margin-left: -9px;
  bottom: -18px;
}
.default-box .header:before {
  border-width: 10px;
  margin-left: -10px;
}
.default-box .default h1 {
  font-size: 16px;
}
.default-box .default h2 {
  font-size: 14px;
}
.default-box .default h3 {
  font-size: 14px;
}
.default-box .default .separator:last-child {
  display: none;
}
.default-box li.default {
  position: relative;
  display: block;
  border-top-width: 1px;
  border-top-style: solid;
  padding: 10px;
}
.default-box li.default:first-child {
  border-top: none;
}
.default-box li.default.promo {
  margin-bottom: 0;
}
.default-box li.default.promo:hover {
  background-color: none;
}
.default-box li.default .thumb,
.default-box li.default input[type="checkbox"] {
  float: left;
  line-height: 55px;
  height: 55px;
  margin-right: 10px;
}
.default-box li.default .thumb {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 55px;
}
.default-box li.default .thumb .online-dot {
  opacity: 0.8;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  margin-top: -6px;
}
.default-box li.default .thumb img {
  max-width: 55px;
  max-height: 55px;
}
.default-box li.default .left-part {
  float: left;
  margin-right: 10px;
  line-height: 17px;
}
.default-box li.default .left-part .age,
.default-box li.default .left-part .time-since {
  display: inline-block;
}
.default-box li.default .left-part .location {
  margin-top: 4px;
}
.default-box li.default .left-part .counter {
  border-radius: 2px;
  margin: 0 5px;
}
.default-box li.default .left-part h3 {
  font-size: 13px;
  display: inline-block;
  font-weight: 400;
}
.default-box tbody.default td,
.default-box tbody.default th {
  padding: 5px 20px;
}
.default-box tbody.default tr:first-child td {
  padding-top: 20px;
}
.default-box tbody.default tr:last-child td {
  padding-bottom: 20px;
}
.default-box.focus .header:before,
.default-box.focus .header:after {
  display: none;
}
.default-box .separator,
.default-box hr {
  margin: 20px 0;
}
table.default-box .header th,
table.default-box .header td {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  text-align: left;
}
table.default-box .header th {
  padding: 10px 0;
}
ul.default-box {
  list-style-type: none;
}
.list-container .item-list > li .picture-like {
  float: right;
  margin-right: 20px;
}
.list-container .item-list > li .list-pretender-status {
  position: absolute;
  top: 30px;
  right: 10px;
}
.list-container .item-list > li > * {
  display: inline-block;
  vertical-align: middle;
}
.list-container .item-list img {
  margin-right: 10px;
}

.list-container .safe-mode {
  position: absolute;
  top: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
}
ul .list-action {
  float: right;
  line-height: 55px;
}
ul .list-action .picture-like {
  vertical-align: middle;
  margin-right: 15px;
}
.item-list span.newmessages {
  padding: 2px 10px;
  border-radius: 3px;
  margin-left: 10px;
}
.event-pic-bg {
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
  height: 26px;
  width: 26px;
  border-radius: 13px;
  line-height: 28px;
  text-align: center;
}
.icon.fanbox-reverse,
.icon.fanlist-reverse {
  width: 25px;
  height: 25px;
  position: absolute;
  margin-top: -2px;
}
.icon.fanbox-reverse {
  margin-left: -1px;
}
.list-item-header {
  height: 22px;
  margin-bottom: 8px;
}
.dropdown-list {
  position: absolute;
  top: 25px;
  list-style: none;
  display: none;
  z-index: 97;
  max-height: 330px;
  overflow-y: auto;
  margin-top: -2px;
  border-style: solid;
  border-width: 1px;
  border-bottom-width: 2px;
  font-size: 13px !important;
}
.dropdown-list li {
  white-space: nowrap;
  border: none;
  text-align: left;
  line-height: 30px;
  position: relative;
  cursor: pointer;
}
.dropdown-list li[class^="ss-"]:before,
.dropdown-list li[class*=" ss-"]:before,
.dropdown-list li[class^="ss-"]:after,
.dropdown-list li[class*=" ss-"]:after {
  margin-right: 5px;
}
.dropdown-list li a {
  display: block;
  padding: 5px 20px;
  text-decoration: none;
  cursor: pointer;
  font-weight: inherit;
}
.dropdown-list li a .counter {
  marghin-top: 2px;
  margin-left: 20px;
}
.dropdown-list li.separator {
  height: 1px;
}
.dropdown-list li > .button,
.dropdown-list li > button {
  margin: 5px 20px;
}
.dropdown-list.right {
  right: 0;
}
.dropdown-container.active .dropdown-list {
  display: block;
}
.dropdown-container p img {
  margin: 3px 0 0 28px;
}
.dropdown-container.active .dropdown-list {
  display: block;
}
.info-box {
  position: relative;
  padding: 15px;
  margin-bottom: 20px;
}
.info-box a {
  text-decoration: underline;
}
.info-box a:hover,
.info-box a.button {
  text-decoration: none;
}
.info-box.tips {
  padding-left: 55px;
  min-height: 25px;
}
.info-box.tips .ss-pointright {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 35px;
}
.info-box.main-icon {
  padding-left: 50px;
}
.info-box.main-icon > .ss-icon {
  position: absolute;
  top: 20px;
  left: 10px;
  font-size: 30px;
  line-height: 30px;
}
.dd-caret {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top-style: solid;
  border-top-width: 6px;
  position: absolute;
  top: 50%;
  right: 5px;
  margin-top: -3px;
}
/* --------------------- */
/*       MENU            */
/* --------------------- */
#nav-container {
  float: left;
  width: 250px;
  margin-top: 20px;
}
#nav-container div.bloc select {
  max-width: 150px;
}
#nav-container .bloc .AKForm.multiple .tag {
  max-width: 203px;
}
#nav-container select {
  margin-top: 10px;
}
#nav-container div.search-criteria .disable-criteria {
  display: none;
  position: absolute;
  top: 18px;
  right: 5px;
  font-size: 16px;
  text-decoration: none;
}
#nav-container [type=submit] {
  width: 100%;
}
#nav-container .list-filter a {
  cursor: pointer;
}
#display-container {
  float: right;
  width: 710px;
}
div.notifications-list {
  display: none;
  padding: 0;
  width: 384px;
  text-align: left;
}
div.notifications-list ul.default-box,
div.notifications-list .default-box.scrollable {
  max-height: 395px;
  overflow-x: hidden;
  overflow-y: auto;
}
div.notifications-list ul.default-box ul.default-box,
div.notifications-list .default-box.scrollable ul.default-box {
  max-height: none;
  border: none;
  border-radius: 0;
}
div.notifications-list ul.default-box li .user-infos a,
div.notifications-list .default-box.scrollable li .user-infos a {
  font-size: 16px;
  font-weight: 700;
}
div.notifications-list a.see-all {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
div.notifications-list .icon.profile {
  background: url('/img/sprites/icon-activites.png') no-repeat -32px -32px;
}
div.notifications-list .icon.selection {
  background: url('/img/sprites/icon-activites.png') no-repeat -92px -32px;
}
div.notifications-list .icon.speedflirt {
  background: url('/img/sprites/icon-activites.png') no-repeat -152px -32px;
}
div.notifications-list .icon.kiss {
  background: url('/img/sprites/icon-activites.png') no-repeat -212px -32px;
}
div.notifications-list .icon.update-profile {
  background: url('/img/sprites/icon-activites.png') no-repeat -32px -92px;
}
div.notifications-list .icon.picture-autorisation {
  background: url('/img/sprites/icon-activites.png') no-repeat -92px -92px;
}
div.notifications-list .icon.like-picture {
  background: url('/img/sprites/icon-activites.png') no-repeat -152px -92px;
}
div.notifications-list.activites div.items li.support img {
  margin: 5px 20px;
  vertical-align: middle;
}
div.notifications-list.activites div.items li a {
  position: relative;
  left: 0;
}
div.notifications-list.activites div.items p.user-infos {
  line-height: 17px;
}
.xtag {
  display: inline-block;
  padding: 0 10px;
  margin-right: 8px;
  margin-left: 0;
  margin-bottom: 5px;
  line-height: 23px;
  font-size: 12px;
  border: none;
  border-radius: 5px;
}
.close-feedback,
.close-modal {
  position: absolute;
  cursor: pointer;
  top: 0px;
  right: 0px;
  font-size: 25px;
  width: 40px;
  text-align: center;
  height: 40px;
  line-height: 40px;
}
.close-feedback:hover,
.close-modal:hover {
  text-decoration: none;
}
#feedback {
  border: none;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1100;
  width: 500px;
  border-radius: 2px;
}
#feedback > .default {
  height: 100%;
  background-repeat: no-repeat;
  background-position: top left;
  padding: 40px;
}
#feedback a {
  text-decoration: underline;
}
#feedback h4 {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 15px;
}
#feedback .button-layer button,
#feedback .button-layer .button {
  margin-right: 10px;
}
#feedback.pictures-authorization .default,
#feedback.pictures-authorization-confirmation .default {
  background-image: url(/light/icons/?i=/biglocks.png&h=afb0b4);
}
#feedback.pictures-authorization-confirmation .content {
  margin-bottom: 15px;
}
#feedback.blacklist-confirmation {
  background-image: url(/light/icons/?i=/bigstop.png&h=afb0b4);
  background-repeat: no-repeat;
}
#feedback.blacklist-confirmation ul li button{
  margin-bottom: 10px;
}
#feedback-layer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: #000;
  /* ne pas virer */
  opacity: 0.5;
}
#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
}
#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: black;
}
#colorbox.borderless {
  border: none;
  border-radius: 0;
  background: none;
}
#colorbox.borderless #cboxContent {
  border-radius: 0;
  border: none;
}
#colorbox.headless #cboxTitle {
  display: none !important;
}
#colorbox,
#cboxLoadedContent {
  overflow: visible !important;
}
#cboxLoadedContent > .default-box > .default {
  padding: 40px;
}
.f_tooltip {
  z-index: 100;
  padding: 10px;
  display: none;
  color: #ffffff;
  background-color: #000000;
  line-height: 20px;
  border-radius: 2px;
}
.f_tooltip:before,
.f_tooltip:after {
  top: -19px;
  left: 50%;
  border-style: solid;
  border-color: transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  z-index: 10;
  border-width: 10px;
  margin-left: -10px;
  border-bottom-color: black;
}
.f_tooltip:after {
  border-width: 9px;
  margin-left: -9px;
  top: -17px;
  border-bottom-color: black;
}
#tooltipNotificationsAccess {
  min-width: 360px;
}
#notification-access {
  position: relative;
  padding: 10px;
  background-color: #f2f2f2;
}
#notification-access .pub {
  position: absolute;
  width: 300px;
  height: 250px;
  border: 1px solid #000;
  background-color: #fff;
}
#notification-access .access .img {
  float: left;
}
#notification-access .access .detail {
  margin-left: 140px;
  margin-top: 5px;
}
#notification-access .access .detail .title {
  font-weight: bold;
}
#notification-access .access .detail .message-info {
  margin-top: 5px;
}
#notification-access .access .detail .message-info .number {
  background-color: #f00;
  color: #fff;
  font-weight: bold;
  padding: 0px 5px;
  border-radius: 5px;
  display: inline;
}
#notification-access .access .img,
#notification-access .access .img img {
  width: 130px;
  height: 80px;
}
#notification-access .access .detail .connect,
#notification-access .access .detail .register {
  margin-top: 15px;
}
#notification-access .access .detail .connect a,
#notification-access .access .detail .register a {
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid #000;
}
ul li .menu-item .counter-container {
  margin-left: 17px;
  margin-top: 5px;
}
ul li .menu-item .counter-container .unread-counter {
  position: initial;
  margin-right: 8px;
}
ul li .info-box.promo .icon.market {
  float: left;
  height: 55px;
  width: 55px;
  margin-right: 6px;
  margin-top: 5px;
}
ul li .info-box {
  padding: 0 5px;
}
.support-counter {
  position: absolute;
  right: 0px;
  top: 6px;
}
@-webkit-keyframes loadingpulse {
  to {
    opacity: 0;
    -webkit-transform: scale(2, 2);
    transform: scale(2, 2);
  }
}
@keyframes loadingpulse {
  to {
    opacity: 0;
    -webkit-transform: scale(2, 2);
    transform: scale(2, 2);
  }
}

.status-message a {
  font-weight: bold;
  text-decoration: underline;
}