@import url(../lib/font/Merck/merck-regular.css);

/*********************************************
 * GLOBAL STYLES
 *********************************************/
body {
  background: #222;
  background-color: #222; }

.reveal {
  font-family: "Merck", sans-serif;
  font-size: 42px;
  font-weight: normal;
  color: #fff; }

::selection {
  color: #fff;
  background: #bee4fd;
  text-shadow: none; }

::-moz-selection {
  color: #fff;
  background: #bee4fd;
  text-shadow: none; }

.reveal .slides section,
.reveal .slides section > section {
  line-height: 1.3;
  font-weight: inherit; }

/*********************************************
 * HEADERS
 *********************************************/
.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4,
.reveal h5,
.reveal h6 {
  margin: 0 0 20px 0;
  color: #503291;
  font-family: "Merck", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: normal;
  text-transform: uppercase;
  text-shadow: none;
  word-wrap: break-word; }

.reveal h1.merck-green,
.reveal h2.merck-green,
.reveal h3.merck-green,
.reveal h4.merck-green,
.reveal h5.merck-green ,
.reveal h6.merck-green,
.reveal p.merck-green {
    color: #0d99a5;
  }

.reveal h1 {
  font-size: 2.5em; }

.reveal h2 {
  font-family: "Merck", sans-serif;
  font-size: 1.6em; }

.reveal h3 {
  font-family: Verdana, sans-serif;
  font-size: 1.3em; }

.mavenclad .reveal h3 {
  color: black;
}

.reveal h4 {
  font-family: Verdana, sans-serif;
  font-size: 1em; }

.reveal h1 {
  text-shadow: none; }

/*********************************************
 * OTHER
 *********************************************/
.reveal p {
  margin: 20px 0;
  line-height: 1.3; }

/* Ensure certain elements are never larger than the slide itself */
.reveal img,
.reveal video,
.reveal iframe {
  max-width: 95%;
  max-height: 95%; }

.reveal strong,
.reveal b {
  font-weight: bold; }

.reveal em {
  font-style: italic; }

.reveal ol,
.reveal dl,
.reveal ul {
  display: inline-block;
  text-align: left;
  margin: 0 0 0 1em; }

.reveal ol {
  list-style-type: decimal; }

.reveal ul {
  list-style-type: disc; }

.reveal ul ul {
  list-style-type: square; }

.reveal ul ul ul {
  list-style-type: circle; }

.reveal ul ul,
.reveal ul ol,
.reveal ol ol,
.reveal ol ul {
  display: block;
  margin-left: 40px; }

.reveal dt {
  font-weight: bold; }

.reveal dd {
  margin-left: 40px; }

.reveal blockquote {
  display: block;
  position: relative;
  width: 70%;
  margin: 20px auto;
  padding: 5px;
  font-style: italic;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }

.reveal blockquote p:first-child,
.reveal blockquote p:last-child {
  display: inline-block; }

.reveal q {
  font-style: italic; }

.reveal pre {
  display: block;
  position: relative;
  width: 90%;
  margin: 20px auto;
  text-align: left;
  font-size: 0.55em;
  font-family: monospace;
  line-height: 1.2em;
  word-wrap: break-word;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }

.reveal code {
  font-family: monospace;
  text-transform: none; }

.reveal pre code {
  display: block;
  padding: 5px;
  overflow: auto;
  max-height: 400px;
  word-wrap: normal; }

.reveal table {
  margin: auto;
  border-collapse: collapse;
  border-spacing: 0; }

.reveal table th {
  font-weight: bold; }

.reveal table th,
.reveal table td {
  text-align: left;
  padding: 0.2em 0.5em 0.2em 0.5em;
  border-bottom: 1px solid; }

.reveal table th[align="center"],
.reveal table td[align="center"] {
  text-align: center; }

.reveal table th[align="right"],
.reveal table td[align="right"] {
  text-align: right; }

.reveal table tbody tr:last-child th,
.reveal table tbody tr:last-child td {
  border-bottom: none; }

.reveal sup {
  vertical-align: super;
  font-size: smaller; }

.reveal sub {
  vertical-align: sub;
  font-size: smaller; }

.reveal small {
  display: inline-block;
  font-size: 0.6em;
  line-height: 1.2em;
  vertical-align: top; }

.reveal small * {
  vertical-align: top; }

/*********************************************
 * LINKS
 *********************************************/
.reveal a {
  color: #42affa;
  text-decoration: none;
  -webkit-transition: color .15s ease;
  -moz-transition: color .15s ease;
  transition: color .15s ease; }

.reveal a:hover {
  color: #8dcffc;
  text-shadow: none;
  border: none; }

.reveal .roll span:after {
  color: #fff;
  background: #068de9; }


/*********************************************
 * CUSTOM CSS
 *********************************************/

/*********************************************
 * RESPONSIVE GRID
 *********************************************/
.grid-container {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
}

/*-- our cleafix hack -- */
.row:before,
.row:after {
  content:"";
  display: table ;
  clear:both;
}

[class*='col-'] {
  float: left;
  min-height: 1px;
  width: 16.66%;
  /*-- our gutter --*/
  padding: 12px;
  margin: 5px;

}

@media all and (min-width:400px){
  .col-1{ width: 33.33%;  }
  .col-2{ width: 50%;     }
  .col-3{ width: 83.33%;  }
  .col-4{ width: 100%;    }
  .col-5{ width: 100%;    }
  .col-6{ width: 100%;    }

  /*.row .col-2:last-of-type{*/
    /*width: 100%;*/
  /*}*/

  .row .col-5 ~ .col-1{
    width: 100%;
  }
}

@media all and (max-width:650px){
  .col-1{ width: 50%;     }
  .col-2{ width: 86%;    }
  .col-3{ width: 86%;    }
  .col-4{ width: 86%;    }
  .col-5{ width: 86%;    }
  .col-6{ width: 86%;    }
}



.flex-grid {
  display: flex;
  justify-content: space-between;

}

.col {
  max-width: 32%;
  object-fit: contain;
}

[class*='col-'] > img{
  max-width: 100%;
}

/*********************************************
 * END: RESPONSIVE GRID
 *********************************************/

div.card {
  /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
  text-align: center;
  background-color: white;
}

#rebif_why div.card {
  padding: 5%;
  margin: 1%;
}

.neugier-header {
  position: absolute;
  top: -230px;
  width: inherit;
}

.reveal .slides #hiddenLink {
  display: inline-block;
  position: absolute;
  bottom: 58%;
  left: 36%;
  width: 66px;
  height:66px;
  opacity: 0;
}

 #neugierig {
   text-align: left;
   position: fixed;
   top: 0px;
   left: -120px;
   font-size: 2.6em;
 }

 .info {
   position: fixed;
   left: -120px;
   bottom: 30px;
   z-index: 30;
   font-size: 24px;
   height: 25px;
   width: 30px;
 }

 #merck {
   font-size: 2em;
   position: fixed;
   bottom: 17%;
   left: 35%;
 }

 #rebif {
   font-size: 2em;
    position: fixed;
    bottom: 30%;
    right: 11%;
 }
.warum-rebif p{
    font-size: 16pt;
}

 #mavenclad {
   font-size: 2em;
    position: fixed;
    top: 9%;
    right: 6%;
 }

 .stoerer-langzeitsicherheit{
   top: -365px;
   right: -780px;
   width: 100px;
   position: relative;
 }
 .grid-container .langzeitsicherheit{
   margin-bottom: 100px;
   color: black;
   font-family:none;
   font-size:33px;
   text-align:left;
 }
.grid-container p{
  font-family: Verdana;
  color: #0d99a5;
}

div.patientenbilder {
  width: 100%;
  min-height: 50px;
  background-color: #0d99a5 !important;
  border-radius: 15px;
  margin-top: 15px;
}

.patientenbilder a{
  font-family: Verdana;
  color: white;
}

 .row .mavenclad-box {
   margin: 5px !important;
   padding: 50px 10px;
   font-family: Verdana, sans-serif;
   color: black;
   max-width: 40%;
   min-height: 200px;
 }

 .mavenclad-box a {
  color: black;
  font-weight: bold;
 }

 .mavenclad-box .box-body{
   width: 100%;
   vertical-align: top;
   font-size: 28px;
   text-align: center;
 }

 .mavenclad-home {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
 }

 .mavenclad-intro {
   background: rgba(255,255,255,.5);
 }

 .reveal .slides .mavenclad-links {
   width: 280px;
   height: 150px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 10px;
 }

 .mavenclad-links a {
   color: black;
   font-size: 24px;
   font-family: Verdana, sans-serif;
 }

 .aerzte {
   background: url("../assets/Mavenclad/aerzte.png") top center no-repeat;
   background-size: cover;
   width: 100%;
   height: 800px;
   text-align: center;
 }

 div .container {
    width: 240px;
    border: 1px solid black;
    display: inline-block;
    border-radius: 15px;
    background: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding: 10px;
}
div .block {
    display: inline-block;
    width: 50px;
    height: 50px;
    margin: 5px;
    padding: 4px;
    background: #503291;
    border-radius: 15px;
    cursor: pointer;
}

#pwsubmit {
  font-size: 24px;
  background-color: #503291;
  border-radius: 5px;
  padding: 5px 10px;
  cursor: pointer;
  color: white;
  font-weight: bold;
}

div .slide7 {
  width: 400px;
  position: absolute;
  right: -12%;
  font-size: 22px;
  font-family: Verdana;
  text-align: left;
  top: 0px;
}

div .slide7 b {
  font-family: 'Merck';
  color: #a5cd50;
}

.reveal section img { background:none; border:none; box-shadow:none; }

.cell1 {
  background: url(../assets/Mavenclad/cell1.svg) top center no-repeat transparent;
  background-size: contain;
}

.cell2 {
  background: url(../assets/Mavenclad/cell2.svg) top center no-repeat transparent;
  background-size: contain;
}

i {
  font-style: normal;
}

.rebismart-videolink {
  bottom: 150px;
  position: relative;
  width: 25%;
  left: 650px;
}