/* inter-300 - latin */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local(''),
         url('./fonts/inter-v12-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('./fonts/inter-v12-latin-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  
  @font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local(''),
         url('./fonts/inter-v12-latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('./fonts/inter-v12-latin-500.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  @font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local(''),
         url('./fonts/inter-v12-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('./fonts/inter-v12-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }


.headhead {
    color:antiquewhite;
    text-shadow: 2px 2px 4px #000000;
}

.leadlead {
    color:antiquewhite;
    text-shadow: 2px 2px 2px #000000;
}

.dispbut {
    visibility:hidden
}

.im-style{
    width:100%;
    height:auto;
}

.im-style1 {
    width:75%;
    height:auto;
    padding-top: 30px;
    
}

.im-style2{
    width:50%;
    height:auto;
    padding-bottom:20px;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.h5size {
    font-size: 24pt;
}

/* Compounder Table */

.table-comp {
    border: none;
    height: 40%;
    left: 10%;
    position: static;
    width: 100%;
    font-size: 16px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  
  /* 100% Image Width on Smaller Screens */
  
  @media only screen and (max-width: 700px) {
    .table-comp {
      font-size: 12px;
      width:100%;
    }
  }
  
  .table-comp tr {
    background: #f4f7f8;
    font-family: sans-serif, bold;
    margin-bottom: 5px;
  }
  
  .table-comp tr:nth-child(even) {
    background-color: #e3e3e3;
  }
  
  .table-comp tr:nth-child(odd) {
    background-color: white;
  }
  
  .table-comp th {
    font-weight: 700;
    font-size: 18px;
    padding: 5px;
    text-align: center;
    width: 30%;
    background: black;
    color: white;
  }
  
  /* 100% Image Width on Smaller Screens */
  
  @media only screen and (max-width: 700px) {
    .table-comp th {
      font-size: 12px;
    }
  }
  
  .table-comp td {
    font-weight: 400;
    padding: 5px;
    text-align: center;
    width: 30%;
  }
  
  .table-comp td button{
    background-color: rgb(53, 53, 53);
    border: none;
    border-radius: 5px;
    width: 100%;
    height: 50px;
    font-size:larger;
  }
  
  .table-comp td button:hover{
    background-color: rgb(0, 0, 0, .5);
    transition: 0.3s
  }
  
  .table-comp td a {
    text-decoration: none;
    color: rgba(253, 253, 253, 0.95);
  }
  
  .caption-comp {
    text-align: center;
    font-weight: bolder;
    font-size: 20px;
    border: none;
    color: black
  }
  
  /* 100% Image Width on Smaller Screens */
  
  @media only screen and (max-width: 700px) {
    .caption-comp {
      font-size: 16px;
    }
  }

.tabloici {
    color: red;
}

.tabloustu {
    float:left;
}

.linklink {
    padding-top: 5px;
    text-align: center;
}

/*CAROUSEL*/

#carousel {
    position: relative;
    height: 400px;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
  }
  #carousel div {
    position: absolute;
    transition: transform 400ms, left 400ms, opacity 400ms, z-index 0s;
    opacity: 1;
  }
  #carousel div img {
    width: 400px;
    transition: width 400ms;
     -webkit-user-drag: none;
     box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
     border-radius: 10px;
  }
  #carousel div.hideLeft {
    left: 0%;
    opacity: 0;
    transform: translateY(50%) translateX(-50%);
  }
  #carousel div.hideLeft img {
    width: 200px;
  }
  #carousel div.hideRight {
    left: 100%;
    opacity: 0;
    transform: translateY(50%) translateX(-50%);
  }
  #carousel div.hideRight img {
    width: 200px;
  }
  #carousel div.prev {
    z-index: 5;
    left: 30%;
    transform: translateY(50px) translateX(-50%);
  }
  #carousel img:hover {
    cursor: pointer;
  }
  #carousel div.prev img {
    width: 300px;
  }
  #carousel div.prevLeftSecond {
    z-index: 4;
    left: 15%;
    transform: translateY(50%) translateX(-50%);
    opacity: 0.7;
  }
  #carousel div.prevLeftSecond img {
    width: 200px;
  }
  #carousel div.selected {
    z-index: 10;
    left: 50%;
    transform: translateY(0px) translateX(-50%);
  }
  #carousel div.next {
    z-index: 5;
    left: 70%;
    transform: translateY(50px) translateX(-50%);
  }
  #carousel div.next img {
    width: 300px;
  }
  #carousel div.nextRightSecond {
    z-index: 4;
    left: 85%;
    transform: translateY(50%) translateX(-50%);
    opacity: 0.7;
  }
  #carousel div.nextRightSecond img {
    width: 200px;
  }
  
  /*previous or next buttons css*/
  
  .buttons {
    left: 50%;
    transform: translateX(-50%);
    bottom: 100px;
  }
  
  .button-82-pushable {
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    transition: filter 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }
  
  .button-82-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: hsl(0deg 0% 0% / 0.25);
    will-change: transform;
    transform: translateY(2px);
    transition:
      transform
      600ms
      cubic-bezier(.3, .7, .4, 1);
  }
  
  .button-82-edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(
      to left,
      hsl(340deg 100% 16%) 0%,
      hsl(340deg 100% 32%) 8%,
      hsl(340deg 100% 32%) 92%,
      hsl(340deg 100% 16%) 100%
    );
  }
  
  .button-82-front {
    display: block;
    position: relative;
    padding: 12px 27px;
    border-radius: 12px;
    font-size: 1.1rem;
    color: white;
    background: hsl(345deg 100% 47%);
    will-change: transform;
    transform: translateY(-4px);
    transition:
      transform
      600ms
      cubic-bezier(.3, .7, .4, 1);
  }
  
  @media (min-width: 768px) {
    .button-82-front {
      font-size: 1.25rem;
      padding: 12px 42px;
    }
  }
  
  .button-82-pushable:hover {
    filter: brightness(110%);
    -webkit-filter: brightness(110%);
  }
  
  .button-82-pushable:hover .button-82-front {
    transform: translateY(-6px);
    transition:
      transform
      250ms
      cubic-bezier(.3, .7, .4, 1.5);
  }
  
  .button-82-pushable:active .button-82-front {
    transform: translateY(-2px);
    transition: transform 34ms;
  }
  
  .button-82-pushable:hover .button-82-shadow {
    transform: translateY(4px);
    transition:
      transform
      250ms
      cubic-bezier(.3, .7, .4, 1.5);
  }
  
  .button-82-pushable:active .button-82-shadow {
    transform: translateY(1px);
    transition: transform 34ms;
  }
  
  .button-82-pushable:focus:not(:focus-visible) {
    outline: none;
  }


/* Back to Top Button */

#bt-button {
  display: inline-block;
  background-color: rgb(53, 53, 53);
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 8px;
  position: fixed;
  bottom: 30px;
  right: 10px;
  transition: background-color .3s, opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

#bt-button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}

#bt-button:hover {
  cursor: pointer;
  background-color: rgb(0, 0, 0, .5);
}

#bt-button:active {
  background-color: rgb(53, 53, 53);
}

#bt-button.show {
  opacity: 0.5;
  visibility: visible;
}

/* Styles for the content section */

@media (min-width: 500px) {
  #bt-button {
    margin: 30px;
  }
}

/* END Back to Top Button */
