@charset "UTF-8";
/* CSS: SSP */

@font-face {
  font-family: 'bebas-neue-regular';
  src: url('../fonts/bebasneue_regular-webfont.woff2') format('woff2'),
       url('../fonts/bebasneue_regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'bebas-neue-book';
  src: url('../fonts/bebasneue_book-webfont.woff2') format('woff2'),
       url('../fonts/bebasneue_book-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'bebas-neue-bold';
  src: url('../fonts/bebasneue_bold-webfont.woff2') format('woff2'),
       url('../fonts/bebasneue_bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'rubik-regular';
  src: url('../fonts/rubik-regular-webfont.woff2') format('woff2'),
       url('../fonts/rubik-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'rubik-light';
  src: url('../fonts/rubik-light-webfont.woff2') format('woff2'),
       url('../fonts/rubik-light-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "icon-font";
  src: url('../fonts/icon-font.eot');
  src: url('../fonts/icon-font.eot?#iefix') format('eot'), 
       url('../fonts/icon-font.woff') format('woff'), 
       url('../fonts/icon-font.ttf') format('truetype'), 
       url('../fonts/icon-font.svg#icon-font') format('svg');
}

@font-face {
   font-family: 'roboto';
   src: url('../fonts/Roboto-Thin-webfont.woff');
   font-style: normal;
   font-weight: 100;
}

@font-face {
   font-family: 'roboto';
   src: url('../fonts/Roboto-Light-webfont.woff');
   font-style: normal;
   font-weight: 300;
}

@font-face {
   font-family: 'roboto';
   src: url('../fonts/Roboto-Regular-webfont.woff');
   font-style: normal;
   font-weight: 400;
}

@font-face {
   font-family: 'raleway';
   src: url('../fonts/raleway-light-webfont.woff');
   font-style: normal;
   font-weight: 300;
}

@font-face {
   font-family: 'montserrat';
   src: url('../fonts/montserrat-light-webfont.woff');
   font-style: normal;
   font-weight: 400;
}
/* -------------------- */

*, *:after, *:before {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html {
  height: 100%;
  box-sizing: border-box;
}

body {
  position: relative;
  margin: 0;
  padding-bottom: 4rem;
  min-height: 100%;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6em;
  background-color: hsl(0, 0%, 96%);
  color: hsla(0, 0%, 0%, 0.87);
  height: auto !important;
  height: 100%;
}

h1, h2, h3, h4 {
  font-family: rubik-regular;
  text-align: center;
}

h1, h2 {
  margin: 1rem 0;
  color: #444444;
}

h1 {
  font-size: 2rem;
  font-weight: bold;
}

h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: hsl(205, 35%, 52%);
}

h2[id]:before {
  content: "";
  display: block;
  height: 30px;
  margin: -50px 0 0;
}

h3 {
  font-size: 1.2rem;
}

h4 {
  font-size: 0.8em;
  font-weight: 200;
}

hr {}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: hsl(30,100%,50%);
}

a:visited {
  color: #007bff;
}

code {
  font-size: 1rem;
  font-family: 'monospace';
  word-break: keep-all;
}

code.format {
  font-family: 'monospace';
  background-color: #ffe8c6;
  padding: 2px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  word-break: keep-all;
}

code.url {
  font-size: 1rem;
}

h2 > code {
  font-size: 1.5rem;
}

pre > code {
  font-size: 0.85rem;
}

ul, ol {
  list-style: none;
}

figure { 
  text-align: center; 
}

figcaption {
  line-height: 2rem;
  font-weight: bold;
}

figure.alignright { 
  float: right;
  margin: 1rem;
}

figure.alignright figcaption { 
  font-weight: normal;
  margin-bottom: 1rem;
}

mark {
  background-color: #e8e8e6;
  padding: 0 3px;
}

a > img.ic-link {
  content: url('/webservices/share/img/ic_external-link.svg');
}

a > img.ic-link:hover {
  content: url('/webservices/share/img/ic_external-link-hover.svg');
}

a > div.internal-link {
  display: inline-block;
  background-image: url('/webservices/share/img/internal-link.svg');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 75%;
  width: 32px;
  height: 32px;
}

a> div.internal-link:hover {
  background-image: url('/webservices/share/img/internal-link-hover.svg');
}

object {
  display: block;
  margin: 0 auto;
  margin-top: 1.5em;
}

.indent, .center {
  text-align: center;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

strong {
  font-weight: 600;
}

.smaller {
  font-size: smaller;
}

.bolder {
  font-weight: 600;
}

.TBD {
  color: #ff0000;
  font-weight: bolder;
}

/* --- Wrapper general de la page --- */

.wrapper {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

/* --- Entete des pages --- */

header {
  height: 8rem;
}

header.ws {
  height: 5rem;
  padding-top: 1rem;
}

.header {
  width: 100%;
  height: 14rem;
  padding: 1rem 1rem 0 1rem;
  background: hsl(23,16%,16%);
  overflow: hidden;
  font-weight: 200;
  transition: height .5s ease;
}

.header h1, .header h2, .header h3 {
  font-weight: 200;
  text-align: center;
  color: hsl(10,20%,98%);
  font-size: 2rem;
  margin-top: 1.5rem;
  transition: transform .5s ease, opacity .25s ease;
}

.header h2 {
  font-size: 4rem;
  margin-top: 3rem;
}

.header h3 {
  font-size: 1rem;
  margin-top: 3rem;
}

.header a.ws-icon-apps {
  position: fixed;
  top: 0.5rem;
  right: 0.5rem;
  height: 24px;
  width: 24px;
  background: url(../share/img/ic_apps_white_48px.svg) no-repeat center / 24px;
}

div.logo-bando {
  float: left;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
}

img.logo-institution-obspm {
  display: block;
  margin: 0 auto;
  height: 3rem;
  padding-bottom: 0.5rem;
}

img.logo-institution-oca {
  display: block;
  margin: 0 auto;
  height: 4.5rem;
  padding-bottom: 0.5rem;
}

img.logo-ws {
  height: 6rem;
}

p.logo-sub-ws {
  color: whitesmoke;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 500;
  text-align: center;
  position: relative;
  top: -8px;
  font-variant-caps: small-caps;
}

/* --- Pied de page --- */

.footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  font-size: 0.7em;
  padding: 0.5rem 1.0rem;
  background-color: #ffffff;
  border-top: thin solid hsl(215,10%,85%);
  color: hsl(215,10%,25%);
  text-align: center;
  display: block;
}

/* --- ToC --- */

nav.table-of-contents {
  z-index: 900;
  position: fixed;
  left: -40px;
  top: 19rem;
  color: #fff;
  background-color: #000;
  font-size: 0.9em;
  padding: 1rem 0 1rem 2.5rem;
  border-radius: 0 8px 8px 0;
  -webkit-border-radius: 0 8px 8px 0;
  -moz-border-radius: 0 8px 8px 0;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  transition: 0.3s;
}

nav.table-of-contents .hidde {
  left: -90px;
}

nav.table-of-contents:hover {
  left: 0;
}

nav.table-of-contents > h3 {
  -ms-writing-mode: tb-rl; /* old syntax. IE */
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl; /* new syntax */
  -webkit-text-orientation: upright;
  -moz-text-orientation: upright;
  -ms-text-orientation: upright;
  text-orientation: upright;
  background-color: #000;
  padding: 1rem 0;
  border-radius: 0 8px 8px 0;
  -webkit-border-radius: 0 8px 8px 0;
  -moz-border-radius: 0 8px 8px 0;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  transition: 0.3s;
}

nav.table-of-contents:hover > h3 {
  text-align: right;
  -ms-writing-mode: lr-tb; /* old syntax. IE */
  -webkit-writing-mode: horizontal-tb;
  -moz-writing-mode: horizontal-tb;
  -ms-writing-mode: horizontal-tb;
  writing-mode: horizontal-tb;
  -webkit-text-orientation: upright;
  -moz-text-orientation: upright;
  -ms-text-orientation: upright;
  text-orientation: upright;
}

nav.table-of-contents:hover {
  padding: 1rem 1rem 1rem 2rem;
}

nav.table-of-contents ul {
  padding: 0;
  text-align: left;
  list-style-type: circle;
  display: none;
}

nav.table-of-contents li {
  margin: 0 0 0.25rem 0;
}

nav.table-of-contents a {
  color: #f3f3f3;
}

nav.table-of-contents a:hover {
  color: hsl(30,100%,50%);
}

nav.table-of-contents a:active {
  text-decoration: underline;
}

nav.table-of-contents:hover > ul {
  display: block;
}

nav.table-of-contents:hover > ul ul {
  list-style-type: none;
  margin: 0 0 0.5rem 0.25rem;
  display: block;
}

nav.table-of-contents:hover > ul ul > li:before {
  content: "-";
  padding-right: 0.5rem;
}

/* --- Partie principale --- */

.main {
  width: 100%;
  padding-top: 1rem;
  text-align: center;
}

.main img.logo {
  margin: 1rem 0 0 0;
}

/* --- Contenus --- */

.content {
  text-align: left;
  margin: 25px 0;
}

.content h2.service,
.content h3.service,
.content h3.client,
.content h2.howto, 
.content h3.api {
  text-align: left;
  font-weight: 300;
  color: hsl(23,16%,16%);
  margin: 3rem 1rem 1.5rem 2rem;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}

section.content h3 > span.regle {
  float: right;
  color: #eb7703;
  font-size: 1rem;
}

section.content article > h3 {
  text-decoration: underline;
  margin: 0;
}

section.content article > h3.heading {
  text-decoration: none;
  text-align: left;
  font-weight: 600;
  color: hsl(30,100%,47%);
  margin: 1rem 0;
  padding: 0.4rem;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border: 1px solid #f5f5f5;
  border-bottom: 1px solid #ccd;
}

section.content article > h3.parameter {
  text-decoration: none;
  text-align: left;
  font-weight: 600;
  color: hsl(30,100%,47%);
  margin: 1rem 0;
  padding: 0.4rem;
  border-bottom: 1px solid #ccd;
}

section.content article > p > span.parameter {
  text-decoration: none;
  font-weight: 600;
  color: hsl(30,100%,47%);
  padding: 0.4rem;
}

section.content h4.example {
  z-index: 1100;
  position: absolute;
  right: 1rem;
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem 0 0.5rem;
  background-color: hsl(160, 65%, 45%);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  transition: 0.3s;
}

section.content h4.example > a {
  color: #ffffff;
  font-family: 'bebas-neue-regular';
  font-size: 1.25rem;
  font-weight: 600;
}

section.content h4.example:hover {
  background-color: hsl(100, 65%, 45%);
}

section.content div.resource {
  width: 100%;
  text-align: left;
  color: #eb7703;
  font-size: 1.5rem;
  /*background: #c6e3ff80;*/
  border-bottom: 1px solid #eb7703;
  margin: 0.5rem 0;
  padding: 0.6rem 1rem;
}

.content-text {
  text-align: justify;
  background: #fcfcfc;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  -webkit-column-rule: 1px solid #cccccc;
  -moz-column-rule: 1px solid #dddddd;
  column-rule: 1px solid #cccccc;
  padding: 1.5rem;
  margin: 0 .5rem 2rem .5rem;
/*  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.14), 0 4px 10px 0 rgba(0, 0, 0, 0.14);*/
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.content-text-1col {
  text-align: justify;
  background: #fcfcfc;
  -webkit-column-count: 1;
  -moz-column-count: 1;
  column-count: 1;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  -webkit-column-rule: 1px solid #cccccc;
  -moz-column-rule: 1px solid #dddddd;
  column-rule: 1px solid #cccccc;
  padding: 1rem;
  margin: 0 .5rem 2rem .5rem;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.14), 0 4px 10px 0 rgba(0, 0, 0, 0.14);
}

.content-text-1col p.buttons {
  text-align: center;
  margin: 1.5rem 1rem 1rem 1rem;
}

.content-text-1col p.buttons > button {
  margin: 0 2rem;
  cursor: pointer;
}

.content-text-1col p.buttons > button > img {
  height: 8rem;
}

.content-text p, .content-text-1col p {
  margin: 1em 0;
}

.content-text-1col p.note {
  font-size: smaller;
  font-weight: 400;
  margin: 3em 2em 0 2em;
}

.content-text div.institution {
  display: block;
}

.content-text div > span.institution {
  display: block;
  text-align: center;
  text-decoration: underline;
  font-size: 1.2em;
  font-weight: 600;
  color: #574e49;
  margin: 0 auto 2rem auto;
/*  background-color: #574e49;*/
  border-radius: 0 3px 3px 0;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
}

.content-text ul, .content-text-1col ul {
  list-style: disc;
  margin: 1rem 2rem;
}

.content-text ul.three-columns, .content-text-1col ul.three-columns {
  columns: 3;
  -webkit-columns: 3;
  -moz-columns: 3;
}

.content-text ol, .content-text-1col ol {
  list-style: decimal;
  margin: 1rem 2rem;
}

.content-text-1col ol.deuxcols {
  -moz-column-count: 3;
  -moz-column-gap: 3rem;
  -webkit-column-count: 3;
  -webkit-column-gap: 3rem;
  column-count: 3;
  column-gap: 3rem;
  margin: 1rem 4rem;
}

.content-text ul.three-columns > li, .content-text-1col ul.three-columns > li {
  margin: 0;
}

.content-text ul > li, .content-text-1col ul > li {
  margin: 0.5rem 0;
}

.content-text dl {
  margin: 1rem 2rem;
}

.content-text-1col dl {
  margin: 1rem 4rem;
}

.content-text dt, .content-text-1col dt {
  font-weight: bold;
}

.content-text dd {
  margin-bottom: 2px;
  padding-left: 1rem;
}

.content-text-1col dd {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.content-text table,
.content-text-1col table {
  width: 90%;
  text-align: center;
  border-collapse: collapse;
  caption-side: bottom;
  margin: 1rem auto;
}

.content-text caption,
.content-text-1col caption {
  color: #ce5c00;
  font-size: 1.0em;
  margin-top: 5px;
}

.content-text caption.top,
.content-text-1col caption.top {
  caption-side: top;
  background-color: transparent;
  margin: 1rem auto;
}

.content-text caption.top-text,
.content-text-1col caption.top-text {
  caption-side: top;
  text-align: left;
  color: #444444;
  background-color: transparent;
  margin: 1rem auto;
  margin-top: 0.5rem;
}

.content-text-1col table th, .content-text-1col table td {
  padding: 0.5rem 0.8rem;
  border: 1px solid #ccd;
  border-collapse: collapse;
}

.content-text-1col table tr.smaller {
  font-size: 0.8em;
  line-height: 0.5rem;
}

.content-text-1col table th.empty, .content-text-1col table td.empty {
  background-color: #ffffff;
}

.content-text table td,
.content-text-1col table td {
  text-align: center;
}

.content-text td.right-border {
  padding-right: 1rem;
  border-right: 1px solid #ccd;
}

.content-text-1col table.no-border td {
  border: none;
}

.content-text table td.no-wrap,
.content-text-1col table td.no-wrap {
  white-space: nowrap;
}

.content-text table td.left-text, .content-text table th.left-text,
.content-text-1col table td.left-text, .content-text-1col table th.left-text {
  text-align: left;
}

.content-text-1col table td.span5 {
  background-color: #f8ffea;
}

.content-text-1col table tr.sauteligne {
  height: 0.2rem;
  border: none;
}

.sauteligne td {
  background-color: #5b5b5b;
}

.content-text-1col table th {
  padding: 0.8rem;
  background-color: black;
  color: white;
  text-align: center;
}

.content-text-1col table th.light {
  font-weight: normal;
  background-color: #ffffff;
  color: black;
}

.content-text-1col table th.grey {
  font-weight: normal;
  background-color: #777;
  color: white;
}

.content-text-1col table.release-note td {
  text-align: left;
  padding: 1rem;
  border: none;
}

.content-text-1col table.release-note td.release-year {
  background-color: #333;
  color: white;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2), 0 4px 16px 0 rgba(0, 0, 0, 0.19);
}

.content-text-1col table.release-note ul {
  margin: 0.5rem 1rem;
}

.content-text p.no-margin, .content-text-1col p.no-margin {
  margin: 0;
}

.content-text pre, .content-text-1col pre {
  display: inline-block;
  width: 100%;
  border: 1px solid #000;
  margin: 1rem auto;
  padding: 0.5rem;
  line-height: 14pt;
  background-color: #333;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2), 0 4px 16px 0 rgba(0, 0, 0, 0.19);
  overflow-x: auto;
}

.content-text pre > code, .content-text-1col pre > code,
.content-text pre > samp, .content-text-1col pre > samp {
  color: #dddddd;
}

.content-text-1col table tr:nth-child(even) {
  background-color: #eeeeee;
}

.content-text-1col table tr:nth-child(odd) {
  background-color:#ffffff;
}

.content-text-1col table.no-bg tr {
  background-color: transparent;
}

.content-text-1col a.emphase {
  font-size: 120%;
  padding: 2px 4px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
}

/* blockquote */
/* for two levels of nested quotations */
q {
  quotes: '“' '”' '‘' '’';
}
/* extra content definitions for pre-2011 WebKit */
q:before {
  content: '“'; 
  content: open-quote;
}
q:after {
  content: '”'; 
  content: close-quote;
}
q q:before {
  content: '‘'; 
  content: open-quote;
}
q q:after {
  content: '’'; 
  content: close-quote;
}
/* q in blockquote */
/*blockquote q:before {
  content: '‘'; 
  content: open-quote;
}
blockquote q:after {
  content: '’'; 
  content: close-quote;
}
blockquote q q:before {
  content: '“'; 
  content: open-quote;
}
blockquote q q:after {
  content: '”'; 
  content: close-quote;
}
*//* blockquote hanging opening quote */
/*blockquote:before {
  display: block; 
  height: 0; 
  content: "“"; 
  margin-left: -.95em; 
  font: italic 400%/1 Cochin,Georgia,"Times New Roman",serif; 
  color: #999;
}
*/
blockquote {
  width: 98%;
  margin: 1rem auto;
  border-left: 4px solid rgba(0,130,186,0.5);
  padding: 1rem;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,130,186,0.4) inset;
  transition:500ms all ease;
  overflow-x: auto;
}

blockquote.parameter {
  width: 95%;
  margin: 1.5rem auto;
  border-left: 3px solid rgba(0,30,186,0.5);
  border-radius: 0;
  box-shadow: none;
  padding: 1rem;
  overflow-x: auto;
}

blockquote > h2,
blockquote > h3 {
  text-align: left;
}

/* surcharge des elements de presentation de l'autocomplete */
div.autocomplete {
  border: 1px solid lightblue;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.autocomplete ul {
  list-style-type: none;
  margin: 0.5rem;
}

.autocomplete ul > li {
  margin: 0;
  text-align: left;
  font-size: smaller;
}

/* --- Flex box --- */

.flex-container {
  display: flex;
  margin: 1.5rem;
  flex-wrap: wrap;
}

.novmargin {
  margin-top: 0;
  margin-bottom: 0;
}

.content-flex {
  flex-grow: 1;
  width: 40%;
  text-align: justify;
  background: #f1f1f1;
  -webkit-column-count: 1;
  -moz-column-count: 1;
  column-count: 1;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  -webkit-column-rule: 1px solid #cccccc;
  -moz-column-rule: 1px solid #dddddd;
  column-rule: 1px solid #cccccc;
  padding: 1rem;
  margin: 0.8rem;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.content-flex:hover {
  /*background: #f1f1f1;*/
  background: hsla(205, 35%, 52%, 0.13);
}

section.content article.content-flex > h3 {
  text-decoration: none;
}

div.flex-container > article.onebox {
  flex-grow: 0;
}

div.flex-container > article.invisible {
  background: transparent;
  box-shadow: none;
}

/* --- Bouton particuliers --- */

div.center-button {
  display: flex;
  margin: 1rem auto 0 auto;
}

div.sso-table > table {
  margin: 0 auto 1rem auto;
}

#btnShowPopulation {
  display:table;
  box-shadow:inset 0px 1px 0px 0px #a6827e;
  background-color:#7d5d3b;
  border-radius:3px;
  border:1px solid #54381e;
  display:inline-block;
  cursor:pointer;
  color:#ffffff;
  padding:0.5rem !important;
  text-decoration:none;
  text-shadow:0px 1px 0px #4d3534;
  margin: .5rem auto;
}

#btnShowPopulation:hover {
  background-color:#634b30;
}

#btnShowPopulation:active {
  position:relative;
  top:1px;
}

div.toggle-table {
  margin: .5rem auto;
}

#btnshowSphericalOutputTable,
#btnshowRectangularOutputTable,
#btnshowXmlOutputTable {
  display:table;
  box-shadow:inset 0px 1px 0px 0px #bda190;
  background-color:#523e32;
  border-radius:3px;
  border:1px solid #3b312b;
  display:inline-block;
  cursor:pointer;
  color:#ffffff;
  width: 15rem;
  text-align: left;
  padding:0.25rem !important;
  text-decoration:none;
}

#btnshowSphericalOutputTable:hover,
#btnshowRectangularOutputTable:hover,
#btnshowXmlOutputTable:hover {
  background-color:#382921;
}

/* --- Bouton acces direct services --- */

#direct {
  max-width: 52rem;
  margin: 0 auto;
  padding: 2rem 0;
}

#direct .directlink {
  display: inline-block;
  width: 10.75rem;
  text-align: center;
  vertical-align: top;
}

#direct .directlink:not(:last-of-type) {
  margin-right: 3rem;
}

.directlink span.btn-lnk {
  display: block;
  margin: 0 auto;
  height: 10rem;
  width: 10rem;
  text-align: center;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 5rem;
  transition: all .3s;
}

.directlink span.btn-title {
  display: block;
  margin-top: 2rem;
  font-family: 'rubik-regular';
  font-size: 1.5rem;
  font-weight: 500;
}

.directlink span.btn-txt {
  display: block;
  margin-top: .75rem;
  line-height: 1.25;
}

span.btn-txt + span.btn-txt {
  margin-top: 0;
}

#direct .directlink span.btn-lnk.one {
  background-image: url('/webservices/share/img/ic_ssodnet.svg');
}
#direct .directlink span.btn-lnk.two {
  background-image: url('/webservices/share/img/ic_miriade.svg');
}
#direct .directlink span.btn-lnk.three {
  background-image: url('/webservices/share/img/ic_skybot.svg');
}
#direct .directlink span.btn-lnk.four {
  background-image: url('/webservices/share/img/ic_m4ast.svg');
}

/* colors */
.directlink span.btn-title, .directlink span.btn-txt {
  color: hsl(23, 16%, 20%);
}

.directlink span.btn-lnk {
  background-color: hsla(23, 16%, 20%, .85);
}

.directlink:hover span.btn-lnk {
  background-color: hsla(23, 16%, 15%, .95);
}

/* shadows */
.directlink span.btn-lnk {
  box-shadow: 0 0 4px hsla(0,0%,0%,.14), 0 4px 8px hsla(0,0%,0%,.28);
}

.directlink:hover span.btn-lnk {
  box-shadow: 0 0px 8px hsla(0,0%,0%,.35), 0 8px 12px hsla(0,0%,0%,.35);
  transform: translateY(-.25rem);
}

/* --- Classes decoratives --- */

div.panel {
  padding: 0 2rem;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

table.center-box {
  text-align: center;
  width: 100%;
  margin: 1em auto;
  margin-bottom: 2em;
}

table.center-box tr {
  height: 3.5em;
}

table.center-box tr:hover {
   background-color: inherit;
}

table.center-box td {
  text-align: center;
  padding-left: 0;
}

#quaero-nb-sso, #quaero-nb-names {
  font-size: 1.8rem;
  text-align: center;
  width: 10em;
  margin: 1rem;
  padding: 1rem !important;
  background-color: hsl(200,100%,78%);
  border: 1px solid #ddd;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
}

/* --- Accordeon --- */

button.accordion {
  background-color: hsl(0,0%,94%);
  color: #0404ee;
  cursor: pointer;
  padding: 0.5rem !important;
  margin: 0.25rem 0;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
}

button.accordion.active, button.accordion:hover {
  background-color: hsl(205,100%,94%);
}

button.accordion:before {
  content: '\2022';
  margin: 0 0.5rem;
}

button.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-right: 10px;
}

button.accordion.active:after {
  content: "\2212";
}

button.opendiv {
  margin: 0 0.5rem;
  padding: 0.5rem;
  cursor: pointer;
}

button.www {
  width: 12rem;
  height: 2rem;
  margin: 0 0.5rem;
  padding: 0.5rem;
  cursor: pointer;
  border: none;
  color: white;
  display: inline-block;
  background-color: rgba(59, 49, 43, 0.75);
  box-shadow: 0 3px 10px 0 rgba(0,0,0,0.6);
}

button.www:hover {
  color: white;
  color: hsl(30,100%,50%);
  text-decoration: underline;
}

/* --- Bouton retour top --- */

#floatable-button {
  display: none;
  position: fixed;
  bottom: 0;
  right: 1rem;
  width: 2rem;
  z-index: 800;
  border: none;
  outline: none;
  background-color: hsl(23,16%,20%);
  color: hsl(20,20%,80%);
  font-size: 1.5rem;
  cursor: pointer;
  border-top-left-radius: 12px;
  -webkit-border-top-left-radius: 12px;
  -moz-border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  -webkit-border-top-right-radius: 12px;
  -moz-border-top-right-radius: 12px;
}

#floatable-button:hover {
  background-color: hsl(23,20%,30%);
  color: hsl(30,100%,50%);
}

/* --- Overlay Legal Notice --- */

.overlay-legalnotice {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1000; 
  left: 0;
  top: 0;
  background-color: rgba(230,230,230, 0.95);
  overflow-x: hidden; 
  transition: 0.3s;
}

.overlay-legalnotice-content {
  position: relative;
  top: 25%;
  width: 60%;
  margin: 0 auto;
  margin-top: 30px;
}

.overlay-legalnotice .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  padding: 8px;
  text-decoration: none;
  color: hsl(195,10%,20%);
  display: block;
  transition: 0.3s;
}

.overlay-legalnotice .closebtn:hover {
  color: hsl(0,100%,40%);
}

/* --- Logos dans les tables --- */

table.logo-tab {
  margin: 1rem auto;
}

table.logo-tab td {
  padding: 1rem;
  border: none;
}

table.logo-tab img {
  height: 4rem;
}

table.logo-tab img.size-3rem {
  height: 3rem;
}

/* --- Misc --- */

span.deprecated {
  color: red;
}

/* --- Formulaire --- */

#feedback-form {
  max-width: 90%;
  margin: 0 auto;
  margin-top: 1.5em;
}

.oneline {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.demi {
  width: 49%;
}

.input-box {
  position: relative;
  margin: 10px 0;
  text-align: center;
}

.input-box > textarea { 
   resize:vertical;
   min-height: 3em;
   font-size: inherit;
}

.input-label {
  position: absolute;
  color: #80868b;
  font-weight: 400;
  max-width: calc(100% - (2 * 8px));
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  left: 8px;
  top: 13px;
  padding: 0 8px;
  user-select: none;
  pointer-events: none;
}

.input-1 {
  box-sizing: border-box;
  height: 50px;
  width: 100%;
  border-radius: 4px;
  color: #202124;
  border: 1px solid #dadce0;
  padding: 13px 15px;
}

.input-1:focus {
  outline: none;
  border: 2px solid #1a73e8;
}

.input-box.focus > .input-label {
  color: #1a73e8;
  top: -15px;
  background: #fff;
  font-size: 11px;
  transition: 250ms;
}

input[type="radio"] + label {
  padding: 0 2rem 0 0.7rem;
}

input[type="radio"]:checked + label {
  color: #1a73e8;
}

button {
  margin: auto;
}

.btn {
  display: block;
  background: #fff;
  color: #333;
  cursor: pointer;
  border: none;
  white-space: normal;
  letter-spacing: 0.25px;
  font-weight: 400;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 4px;
  line-height: 20px;
  min-width: 88px;
  height: 2.5em;
  transition: 250ms;
}

.btn:hover {
  background: #ddd;
  transition: 250ms;
}

.btn:focus {
  outline: none;
}

.btn-primary {
  background: #6199e4;
  color: #fff;
  transition: 250ms;
}

.btn-primary:hover {
  background: #287ae6;
  box-shadow: 0 1px 1px 0 rgba(66, 133, 244, 0.45),  0 1px 3px 1px rgba(66, 133, 244, 0.3);
  transition: 250ms;
}

.btn-close {
  position: absolute;
  display: inline;
  right: 7%;
  height: 1.8em;
  background: #6199e4;
  color: #fff;
  transition: 250ms;
  margin: 5px;
  min-width: 50px;
}

.btn-close:hover {
  background: #287ae6;
  box-shadow: 0 1px 1px 0 rgba(66, 133, 244, 0.45),  0 1px 3px 1px rgba(66, 133, 244, 0.3);
  transition: 250ms;
}

.btn-hidden {
  display: none;
}

.clear {
  clear: both;
}

#feedback-form-output {
  display: none;
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
  border: thin solid lightblue;
}

#feedback-form-response > span.good {
  color: seagreen;
}

#feedback-form-response > span.warning {
  color: red;
}

/* --- The Modal --- */

a.modal-link {
  color: blue;
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

#modal-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

.modal-content, #modal-caption { 
  animation-name: zoom;
  animation-duration: 0.4s;
}

/* --- Conteneur d'affichage des images en surimpression ------------------- */
#lightbox {
  background-color: #eee;
  padding: 0.5rem;
}

#lightboxDetails {
  font-size: 0.8em;
  padding-top: 0.4em;
}

#lightboxCaption {
  float: left;
}

#keyboardMsg {
  text-align: center;
  font-weight: 700;
  color: #444;
}

#lightbox img {
  border: none;
}

#overlay img {
  border: none;
}

#overlay {
  z-index: 1200;
  background-image: url("/webservices/share/img/overlay.png");
}

* html #overlay {
  z-index: 1200;
  background-color: #333;
  background-color: transparent;
  background-image: url(blank.gif);
  filter: progid : DXImageTransform.Microsoft.AlphaImageLoader(src="/webservices/share/img/overlay.png", sizingMethod="scale");
}

/* --- */

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.modal-close:hover,
.modal-close:focus {
  color: #f00;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */

@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}

/* --- Animations to fade the snackbar in and out --- */

@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

/* --- Responsive overlay --- */

@media screen and (max-height: 450px) {
  .overlay-legalnotice a {
    font-size: 20px
  }
  .overlay-legalnotice .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}

/* --- Responsive header --- */

@media screen and (max-width: 829px) {
  .header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 6rem;
    z-index: 900;
  }
  nav.table-of-contents {
    top: 7rem;
  }
  .wrapper {
    top: 5rem;
  }
  .header h1 {
    font-size: 1.5rem;
    margin: 1rem 0 0 0;
  }
  .header h2 {
    font-size: 1.5rem;
    margin: 0.5rem 0 0 0;
  }
  .header h3 {
    font-size: 0.7rem;
    margin: 0;
  }
  .header a.ws-icon-apps {
    display: none;
  }
  img.logo-ic {
    width: 4rem;
  }
  .content-text ul.three-columns, .content-text-1col ul.three-columns {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
  }
}

@media screen and (min-width: 830px) and (max-width: 1030px) {
  .header h1 {
    font-size: 2rem;
  }
  img.logo-ic {
    width: 5rem;
  }
}


/* --- Responsive instructions for mid devices --- */

@media screen and (min-width: 380px) and (max-width: 939px) {
  .content-text {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}

/* --- Responsive instructions for small devices --- */

@media screen and (max-width: 650px) {
  .content-text ul.three-columns, .content-text-1col ul.three-columns {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
}

@media screen and (max-width: 480px) {
  .header h1 {
    font-size: 1rem;
  }
  .header h1 > span.institut {
    font-size: 0.5rem;
    top: -0.5rem;
  }
}

@media screen and (max-width: 380px) {
  .header h1 {
    visibility: hidden;
  }
  img.logo-ic {
    width: 3rem;
  }
  .content-text {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}
