@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200;400;700&display=swap");
:root {
  --primary-color: #084186;
  --light-shadow: 0 0 .15em rgba(0,0,0,.25);
  --dark-shadow: 0 0 .5em rgba(0,0,0,.5);
  --background: #fff;
  --text-color: #000;
  --light-grey:rgba(255, 255, 255, .45);
  --dark-grey:rgba(0, 0, 0, .45);
  --slim-radius:.25em;
  --round-radius:5em;
  --padding:.75em;
  --light-padding:.5em;
  --tab-padding: .5em 2em;
  --transition: .25s ease-in-out;
}

html, body, div, input, select, button, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  font-family: 'Cairo', sans-serif;
  line-height: 1.45em;
  padding-bottom: 3.5em;
}

button {
  background: #fff;
}

.drugs-search {
  height: 4.5em;
  border-bottom: 0.05em solid var(--dark-grey);
}

#form-search, #input-search {
  height: 100%;
  width: 100%;
}

input[type=text] {
  margin-left: .5em;
}

.seller, .autorisation {
  display: block;
  font-size: .65em;
  color: var(--dark-grey);
  font-weight: 700;
  line-height: 1em;
}

ul {
  list-style-type: none;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--background);
  color: var(--text-color);
  cursor: pointer;
  padding: .5em .35em;
  border-bottom: 0.05em solid var(--dark-grey);
}

img {
  width: 100%;
  margin: .5em 0;
  -webkit-box-shadow: var(--light-shadow);
          box-shadow: var(--light-shadow);
}

svg {
  width: 50px;
  height: 50px;
  margin: 0;
  padding: 0;
}

.drug-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.drug-price .price-tag {
  padding: .15em .3em;
  border: 0.1em solid var(--primary-color);
  color: var(--primary-color);
  border-radius: .2em;
  cursor: pointer;
}

.drug-price .price-tag:focus, .drug-price .price-tag:hover {
  background: var(--primary-color);
  color: #fff;
}

.drug-price .tax-tag {
  color: var(--dark-grey);
  font-weight: 100;
  padding: .15em 0;
}

.drugs-result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.drugs-result .drugs-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.5em .5em;
}

.drugs-result .drugs-header .drug-name span {
  font-weight: lighter;
}

.drug-infos .tab ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  background: var(--primary-color);
  padding: var(--light-padding);
}

.drug-infos .tab ul li {
  padding: var(--tab-padding);
  color: #fff;
  background: var(--dark-grey);
  border-radius: var(--slim-radius);
  border: none;
}

.drug-infos .tab-contents {
  padding: var(--padding);
}

.drug-infos .tab-contents .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}

.drug-infos .tab-contents .list label {
  font-weight: 700;
  color: var(--dark-grey);
}

.drug-infos .tab-contents .list .list-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: rgba(0, 0, 0, 0.15);
  font-size: .65em;
  padding: .15em .5em;
  border-radius: var(--slim-radius);
  margin-bottom: .25em;
}

.drug-infos .tab-contents .smr-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: .65em;
  font-weight: 700;
}

.drug-infos .tab-contents .smr-status div {
  padding: var(--light-padding);
}

.somaire .somaire-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: #fff;
  margin: .5em 0;
  padding: .5em .25em;
  border-bottom: 0.15em solid var(--primary-color);
  text-transform: uppercase;
}

.somaire .somaire-content {
  padding: 0 2em;
}

.somaire li, .somaire li a {
  color: var(--primary-color);
}

.somaire li a, .somaire .expand-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.somaire .sous-menu {
  display: none;
  -webkit-box-shadow: 0 0 0.15em rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 0.15em rgba(0, 0, 0, 0.5);
  border-radius: var(--slim-radius);
  margin: .25em 0;
  padding: 0 2em;
}

.somaire .expand {
  font-size: 1.75em;
  float: right;
}

#rcp-content {
  position: relative;
}

#rcp-content iframe {
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
  height: 720px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.disabled {
  display: none;
  opacity: 0;
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: .25em 0;
  background: var(--background);
  -webkit-box-shadow: var(--light-shadow);
          box-shadow: var(--light-shadow);
  bottom: 0;
  position: absolute;
}

footer .copyright {
  text-align: center;
  -webkit-filter: drop-shadow(var(--light-shadow));
          filter: drop-shadow(var(--light-shadow));
  opacity: .75;
}

footer .copyright .ansm {
  width: 80px;
  margin: .5em 0 0 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

footer .copyright a {
  color: var(--primary-color);
  text-decoration: none;
}

/*  ------- DEBUT ------- */
#contentDocument {
  overflow-x: scroll;
}

.bs01 {
  list-style-type: disc;
  color: #FF0000;
}

.AmmAnnexeTitre3 {
  font-style: normal;
  font-weight: bold;
  font-variant: normal;
  color: #000000;
  text-decoration: underline;
}

.AmmAnnexeTitre4 {
  font-style: italic;
  font-weight: normal;
  font-variant: normal;
  color: #000000;
  text-decoration: underline;
}

.AmmCorpsTexteGras {
  font-style: normal;
  line-height: normal;
  font-weight: bold;
  font-variant: normal;
  text-transform: none;
  margin-top: 0px;
  padding-top: 0.25em;
  margin-bottom: 0px;
  padding-bottom: 0px;
  padding-left: 1em;
  color: #000000;
}

.AmmIAM {
  font-style: normal;
  line-height: normal;
  font-weight: bold;
  font-variant: normal;
  text-transform: none;
  margin-top: 0px;
  padding-top: 0.25em;
  margin-bottom: 0px;
  padding-bottom: 0px;
  padding-left: 38px;
  color: #000000;
  list-style-image: url("../images/plus02.gif");
  list-style-position: outside;
}

.AmmListePuces1 {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 1cm;
}

.AmmListePuces2 {
  list-style-type: circle;
  list-style-position: outside;
  padding-left: 2cm;
}

.AmmListePuces3 {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 3cm;
}

.AmmListePuces4 {
  list-style-type: circle;
  list-style-position: outside;
  padding-left: 4cm;
}

.AmmListePuces5 {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 5cm;
}

.AmmTableauCorpsTexte {
  font-style: normal;
  line-height: normal;
  font-weight: normal;
  font-style: italic;
}

.AmmTableauTitre1 {
  font-style: normal;
  line-height: normal;
  font-weight: bold;
}

.AmmTableauTitre2 {
  font-style: normal;
  line-height: normal;
  font-weight: bold;
  text-decoration: underline;
}

.AmmTableauTitre3 {
  padding-top: 0.25em;
  font-style: normal;
  line-height: normal;
  font-weight: bold;
}

#textDocument > h2, .AmmNoticeTitre1 {
  font-size: 13px;
  /* plo */
  line-height: normal;
  font-weight: bold;
  font-variant: normal;
  text-transform: none;
  text-align: left;
}

/* -------- FIN -------- */
/* ------ DEBUT -------- */
.AmmNoticeCorpsdeTexte {
  font-style: normal;
  line-height: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  margin-top: 0px;
  padding-top: 0.25em;
  margin-bottom: 0px;
  padding-bottom: 0px;
  padding-left: 1em;
  color: #000000;
}

.AmmNoticeListePuces {
  list-style-type: square;
  list-style-position: outside;
  padding-left: 1cm;
}

/* -------  FIN --------- */
.TableResultat {
  border-style: solid;
  border-width: 1px;
}

.EnTeteTableau {
  font-size: 13px;
  font-style: normal;
  line-height: normal;
  font-weight: bold;
  font-variant: normal;
  text-transform: none;
  color: #FFFFFF;
  background-attachment: fixed;
  background-color: #000066;
  background-image: none;
  background-repeat: no-repeat;
  background-position: center center;
  text-align: center;
  vertical-align: middle;
}

.TableRow01 {
  font-size: 13px;
  font-style: normal;
  line-height: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  background-color: #CACDDB;
}

.TableRow02 {
  font-size: 13px;
  font-style: normal;
  line-height: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  background-attachment: fixed;
  background-color: #E1E1E1;
  background-image: none;
  background-repeat: no-repeat;
  background-position: left center;
}

.Normal {
  font-size: 11px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  color: #330066;
}

.Navigation {
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  color: #330066;
}

A.navig:LINK {
  color: #0000FF;
  text-decoration: underline;
}

A.navig:VISITED {
  color: #0000FF;
  text-decoration: underline;
}

.TitrePage {
  font-size: 19px;
  font-style: normal;
  line-height: normal;
  font-weight: bold;
  font-variant: normal;
  text-transform: none;
  color: #000066;
  vertical-align: middle;
  text-align: center;
  background-position: center center;
}

.BS {
  font-size: 11px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  color: #00FF00;
}

.RcpTitre1 {
  font-style: normal;
  line-height: normal;
  font-weight: bold;
  font-variant: normal;
  text-transform: none;
  border: 1px solid #000000;
  padding-bottom: 0.5em;
  padding-top: 1em;
  margin-top: 0em;
  margin-bottom: 0em;
}

.RcpTitre2 {
  font-style: normal;
  line-height: normal;
  font-weight: bold;
  font-variant: normal;
  text-transform: none;
  padding-top: 0.5em;
  background-color: #FFFFFF;
  margin-top: 0em;
  margin-bottom: 0em;
  padding-bottom: 0.5em;
  padding-left: 1em;
}

.AmmAnnexeTitre {
  color: var(--primary-color);
  font-size: 24px;
  text-decoration: underline;
  line-height: normal;
  font-weight: bold;
  font-variant: normal;
  text-transform: none;
  text-align: center;
  display: inline;
}

.AmmAnnexeTitre1 {
  color: var(--primary-color);
  font-size: 13px;
  text-decoration: underline;
  line-height: normal;
  font-weight: bold;
  font-variant: normal;
  text-transform: none;
  text-align: left;
}

.AmmAnnexeTitre2 {
  color: var(--primary-color);
  font-style: normal;
  text-decoration: underline;
  line-height: normal;
  font-weight: bold;
  font-variant: normal;
  text-transform: none;
  text-align: left;
}

/* BS-CM AFSSAPS 14-02-2007 */
.AmmAnnexeTitre2Bis {
  font-style: italic;
  line-height: normal;
  font-weight: bold;
  font-variant: normal;
  text-transform: none;
  text-align: left;
}

.RcpTitre {
  font-style: normal;
  line-height: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-align: center;
}

.AmmCorpsTexte {
  font-style: normal;
  line-height: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  margin-top: 0px;
  padding-top: 0.25em;
  margin-bottom: 0px;
  padding-bottom: 0px;
  padding-left: 1em;
  color: #000000;
}

.AmmDenomination {
  font-style: normal;
  line-height: normal;
  font-weight: bold;
  font-variant: normal;
  text-transform: none;
  margin-top: 0px;
  padding-top: 0.25em;
  margin-bottom: 0px;
  padding-bottom: 0px;
  padding-left: 1em;
  color: #000000;
}

.AmmComposition {
  font-style: normal;
  line-height: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  margin-top: 0px;
  padding-top: 0.25em;
  margin-bottom: 0px;
  padding-bottom: 0px;
  padding-left: 1em;
  color: #000000;
}

.AmmTitulaireNom {
  font-style: normal;
  line-height: normal;
  font-weight: bold;
  font-variant: normal;
  text-transform: none;
  margin-top: 0px;
  padding-top: 0.25em;
  margin-bottom: 0px;
  padding-bottom: 0em;
  padding-left: 1em;
  color: #000000;
}

.AmmTitulaireAdresse {
  font-style: normal;
  line-height: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  margin-top: 0px;
  padding-top: 0em;
  margin-bottom: 0px;
  padding-bottom: 0em;
  padding-left: 1em;
  color: #000000;
}

.AmmTitulaireCpVillePays {
  font-style: normal;
  line-height: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  margin-top: 0px;
  padding-top: 0em;
  margin-bottom: 0px;
  padding-bottom: 0em;
  padding-left: 1em;
  color: #000000;
}

.DateNotif {
  font-style: normal;
  line-height: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-align: right;
  margin-top: 0px;
  padding-top: 0.25em;
  margin-bottom: 0px;
  padding-bottom: 2em;
  padding-left: 1em;
  color: #900000;
  /*#df4646;*/
}

.AmmNoticeTitre1 {
  line-height: normal;
  font-weight: bold;
  font-variant: normal;
  text-transform: none;
  text-align: left;
}

.AmmNoticeCorpsdeTexte {
  font-style: normal;
  line-height: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-align: justify;
  margin-top: 0px;
  padding-top: 0.25em;
  margin-bottom: 0px;
  padding-bottom: 0px;
  padding-left: 1em;
  color: #000000;
}

.RcpNormalRetr1 {
  font-style: normal;
  line-height: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-align: justify;
  margin-top: 0px;
  padding-top: 0.25em;
  margin-bottom: 0px;
  padding-bottom: 0px;
  padding-left: 1em;
  color: #000000;
}

.RcpNormalRetr2 {
  font-style: normal;
  line-height: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-align: justify;
  background-color: #FFFFFF;
  margin-top: 0px;
  padding-top: 0.25em;
  margin-bottom: 0px;
  padding-bottom: 0em;
  padding-left: 2em;
}

.RcpTitre3 {
  font-style: normal;
  line-height: normal;
  font-weight: bold;
  font-variant: normal;
  text-transform: none;
  background-color: #FFFFFF;
  margin-top: 0px;
  padding-top: 0.5em;
  margin-bottom: 0px;
  padding-bottom: 0px;
  padding-left: 2em;
}

.AmmAnnexe {
  font-style: normal;
  line-height: normal;
  font-weight: bold;
  font-variant: normal;
  margin-bottom: 0px;
  padding-bottom: 0.5em;
  background-color: #FFFFFF;
  margin-top: 0px;
  padding-top: 1em;
  text-align: center;
}

.RcpNormalCentre {
  font-style: normal;
  line-height: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-align: justify;
  background-color: #FFFFFF;
  margin-top: 0px;
  padding-top: 0.25em;
  margin-bottom: 0px;
  padding-bottom: 0px;
  padding-left: 1em;
  text-align: center;
}

.RcpNormal {
  font-style: normal;
  line-height: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  background-color: #FFFFFF;
  margin-top: 0px;
  padding-top: 0.25em;
  margin-bottom: 0px;
  padding-bottom: 0px;
  padding-left: 0em;
  color: #000000;
}

.NotDenomination {
  font-weight: bold;
}

.NotListeRetr2 {
  font-style: normal;
  line-height: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  background-color: #FFFFFF;
  margin-top: 0px;
  padding-top: 0.25em;
  margin-bottom: 0px;
  padding-bottom: 0em;
  padding-left: 2em;
  list-style-type: disc;
}

.NotTitre {
  font-style: normal;
  line-height: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-align: center;
}

.NotTitre2 {
  font-style: normal;
  line-height: normal;
  font-weight: bold;
  font-variant: normal;
  text-transform: none;
  color: #006633;
  padding-top: 0.5em;
  background-color: #FFFFFF;
  margin-top: 0em;
  margin-bottom: 0em;
  padding-bottom: 0.5em;
  padding-left: 1em;
}

.AmmListePuces {
  font-style: normal;
  line-height: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  margin-top: 0px;
  padding-top: 0.25em;
  margin-bottom: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  color: #000000;
}

.BasDePage {
  font-size: 11px;
  font-style: normal;
  line-height: normal;
  font-weight: bold;
  font-variant: normal;
  text-transform: none;
  color: #FFFFFF;
  background-attachment: fixed;
  background-color: #000066;
  background-image: none;
  background-repeat: no-repeat;
  background-position: center center;
  vertical-align: middle;
}

.TabMinigraphie1 {
  font-size: 11px;
  font-weight: bold;
  color: #000080;
  text-decoration: none;
  background-color: #DBDBF7;
  vertical-align: middle;
}

.TabMinigraphie2 {
  font-size: 11px;
  background-color: #F3F3FC;
}

/*vertical-align: middle*/
.TabMinigraphie3 {
  font-size: 11px;
  background-color: #FFFFFF;
}

/*        vertical-align: middle}*/
.TabComposition {
  line-height: 15px;
}

.TabMinigraphie4 {
  font-size: 11px;
  font-weight: bold;
  color: #000080;
  text-decoration: none;
  background-color: #FFFFFF;
  vertical-align: middle;
}

.Tabwhite {
  background-color: #FFFFFF;
}

.Italic {
  font-size: 11px;
  font-style: italic;
  background-color: #FFFFFF;
  vertical-align: middle;
}

.bold {
  font-size: 11px;
  font-weight: bold;
  background-color: #FFFFFF;
  vertical-align: middle;
}

.Denomination {
  font-size: 13px;
  background-color: #FFFFFF;
  vertical-align: middle;
  font-weight: bold;
}

.EnTeteTabGlossaire {
  font-size: 13px;
  font-style: normal;
  line-height: normal;
  font-weight: bold;
  font-variant: normal;
  text-transform: none;
  color: #FFFFFF;
  background-attachment: fixed;
  background-color: #df4646;
  background-image: none;
  background-repeat: no-repeat;
  background-position: center center;
  text-align: center;
  vertical-align: middle;
}

.TabwhiteGlossaire {
  background-color: #FFFFFF;
  line-height: normal;
  border-right-width: thin;
  border-color: #000000;
}

.TableRowGlossaire01 {
  font-size: 15px;
  font-style: normal;
  line-height: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  background-color: #CACDDB;
}

.TableRowGlossaire02 {
  font-size: 15px;
  font-style: normal;
  line-height: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  background-attachment: fixed;
  background-color: #E1E1E1;
  background-image: none;
  background-repeat: no-repeat;
  background-position: left center;
}

.boldAide {
  font-size: 13px;
  font-weight: bold;
  text-transform: none;
  background-attachment: fixed;
  background-color: #E1E1E1;
  background-image: none;
  background-repeat: no-repeat;
  background-position: left center;
}

.textAide {
  font-size: 13px;
  font-weight: normal;
}

.BleuAide {
  font-size: 13px;
  font-weight: bold;
  color: #df4646;
}
/*# sourceMappingURL=style.css.map */