/*
################################################################
 INTERNET Studio-Isser Projekt website Apotheke Zum Guten Hirten
 Components: Website-Applikations
 Copyright (c) 2023, INTERNET Studio-Isser, Austria
 http://www.studio-isser.com/legal/version1_0.html
 This disclaimer must not be removed or changed!
 Use or modification even of parts of the program needs the
 permission of the generator. Contact: service@studio-isser.com
 Last Modification: 31.12.2023
################################################################

Copyright (c) 2023 Muhammad Fadzrin Madu (https://codepen.io/fadzrinmadu/pen/bGqrJjB)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.


*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Calibri,Verdana,Arial,sans-serif', sans-serif;
}
top{
  position: fixed;
  z-index: 99;
  width: 800;
}
top .headimg{
  position: sticky;
  z-index: 99;
  top: 0px;
  width: 800;
    padding-bottom: 2px;
}
top .headimg1{
  position: sticky;
  z-index: 99;
  top: 120px;
  width: 800;
}
nav{
  position: fixed;
  z-index: 99;
  top: 122px;
  width: 800;
  background: #9A2211;
}
nav .wrapper{
  position: relative;
  max-width: 800px;
  padding: 0px 0px;
  height: 35px;
  line-height: 35px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .logo a{
  color: #C3786D;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}
.wrapper .nav-links{
  display: inline-flex;
}
.nav-links li{
  list-style: none;
}
.nav-links li a{
  color: #f2f2f2;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 0px;
  transition: all 0.3s ease;
}
.nav-links li a:hover{
  background: #C3786D;
}
.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu{
  position: absolute;
  background: #9A2111;
  width: 180px;
  line-height: 35px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 35px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}
.mega-box .content{
  background: #242526;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.mega-box .content .row{
  width: calc(25% - 30px);
  line-height: 45px;
}
.content .row img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header{
  color: #f2f2f2;
  font-size: 15px;
  font-weight: 500;
}
.content .row .mega-links{
  margin-left: -40px;
  border-left: 1px solid rgba(255,255,255,0.09);
}
.row .mega-links li{
  padding: 0 20px;
}
.row .mega-links li a{
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 15px;
  display: block;
}
.row .mega-links li a:hover{
  color: #f2f2f2;
}
.wrapper .btn{
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 800px) {
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 240px;
    top: 0;
    left: -100%;
    background: #9A2211;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #C3786D;
  }
  ::-webkit-scrollbar-thumb {
    background: #C3786D;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 15px;
  }
  .nav-links .drop-menu .drop-menu01 .drop-menu02 .drop-menu03{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showDrop01:checked ~ .drop-menu01,
  #showDrop02:checked ~ .drop-menu02,
  #showDrop03:checked ~ .drop-menu03,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #f2f2f2;
    font-size: 15px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 0px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: #C3786D;
  }
  .drop-menu .drop-menu01 .drop-menu02 .drop-menu03 li{
    margin: 0;
  }
  .drop-menu .drop-menu01 .drop-menu02 .drop-menu03 li a{
    border-radius: 5px;
    font-size: 15px;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content .row header{
    font-size: 15px;
  }
}
nav input{
  display: none;
}

.body-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}
.body-text div{
  font-size: 15px;
  font-weight: 600;
}

BODY
{
  scrollbar-3dlight-color:#FFFFFF;
  scrollbar-arrow-color:#992211;
  scrollbar-base-color:#FFFFFF;
  scrollbar-darkshadow-color:#992211;
  scrollbar-face-color:#ffffff;
  scrollbar-highlight-color:#ffffff;
  scrollbar-shadow-color:#992211;
  background-color: #ffffff;
  background-repeat: repeat;
  background-image: url(../graphics/bg_apo1.jpg);
}

p, dd, dt, td, dl, ul
{
  font-family:Calibri,Verdana,Arial,sans-serif;
  font-size:15px;
  color:#000000;
}

.head
{
  font-size: 24px;
  color: #992211;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  padding-top:5px;
  padding-bottom:15px;
}

.small
{
  font-size: 12px;
  padding:0px;
  margin:0px;
}

.navi
{
  font-size: 22px;
  color:#ffffff;
  font-weight:bold;
  padding-bottom:20px;
  list-style:none;
  list-style-position:outside;
  margin-left:-28px;
}

.navismall
{
  font-size: 12px;
  color:#ffffff;
  font-weight:bold;
  padding:5px;
}

.mid
{
  font-size: 18px;
  color: #992211;
  font-weight: bold;
  letter-spacing: 1px;
  padding-bottom:5px;
}

.left
{
  padding-left: 30px
}

li.list
{
  list-style:circle;
  list-style-position:inside;
  padding-bottom:10px;
}

/* ------------------------------------------------------------
   hyperlinks
   ------------------------------------------------------------ */

a.but:link
{
    color:#ffffff;
    font-weight: bold;
    text-decoration:none;
}
a.but:active
{
    color:#ffffff;
    font-weight: bold;
    text-decoration:underline;
}
a.but:visited
{
    color:#ffffff;
    font-weight: bold;
    text-decoration:none;
}
a.but:hover
{
    color:#fffff;
    font-weight: bold;
    text-decoration:underline;
}

a.text:link
{
    color:#992211;
    text-decoration:underline;
}
a.text:active
{
    color:#992211;
    text-decoration:none;
}
a.text:visited
{
    color:#992211;
    text-decoration:underline;
}
a.text:hover
{
    color:#992211;
    text-decoration:none;
}

a.isi:link
{
    color:#888888;
    text-decoration:none;
}
a.isi:active
{
    color:#999999;
    text-decoration:underline;
}
a.isi:visited
{
    color:#888888;
    text-decoration:none;
}
a.isi:hover
{
    color:#999999;
    text-decoration:underline;
}