@import url('vendor/bootstrap.min.css');
@import url('vendor/bootstrap-icons.css');
@import url('newsletter.css');

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    height: 100%;
  }

  body {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  main a {
    color: #17a2b8 !important;
    text-decoration: none;
  }
  
  /* width */
   ::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  
  .not-found-page main i {
    font-size: 6rem;
    color: red;
    opacity: 0.5;
  }

  .not-found-page main .font-dark {
    font-size: 6rem;
  }

  .not-found-page main .btn-secondary {
    border: 0 !important;
    box-shadow: none !important;
    color: #fff !important;
  }

  header.bg-dark {
    background-color: #343a40 !important;
    position: fixed;
    width: 100%;
    z-index: 100;
  }

  header.bg-dark .container-lg {
    display: block;
  }

  header.bg-dark a {
    font-size: 1.8rem;
    padding: 0;
  }

  header a i.bi {
    margin-right: 0.5rem;
  }

  header .search-bar {
    position: relative;
  }

  header #search-input {
    margin-top: 2px;
    padding-right: 45px;
  }

  header .search-bar i.bi {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.4rem;
    opacity: 0.3;
    padding: 3px 10px;
    cursor: pointer;
    display: none;
  }

  header .search-bar i.bi:hover {
    opacity: 0.6;
  }

  main {
    padding-top: 3.7rem;
  }
  
  main section h1 {
    padding-top: 1rem;
    font-weight: 100;
  }

  main #search-no-result {
    font-size: 2rem;
    padding: 2rem 0;
    opacity: 0.2;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  main a.card {
    margin-bottom: 1.5rem;
    text-decoration: none;
    color: #312F2F !important;
    border-radius: 15px;
  }

  main a.card:hover {
    box-shadow: 0 0 10px 1px #dadada;
    cursor: pointer;
  }
  
  main a.card .image {
    height: 150px;
    display: flex;
    align-items: center;
    padding: 1rem 1rem 0.5rem 1rem;
    justify-content: center;
  }
  
  main a.card .image img {
    height: 100%;
  }
  
  main a.card .card-text {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 400;
    padding: 0.5rem 0.5rem 1rem 0.5rem;
    white-space: nowrap;
  }

  .faq .description-title > div:first-child {
    width: 100%;
  }
  
  .faq .description-title > div.icon {
    display: flex;
    align-items: center;
    height: 24px;
  }
  
  .faq .description-title .bi {
    font-size: 1.5rem;
    font-weight: 400;
    color: #565656;
    line-height: 52px;
    }
  
  .faq .description-title:hover,
  .faq .description-title.active {
    border: 2px solid rgba(23, 162, 184, 0.6);
    cursor: pointer;
  }
  
  .faq .description {
    display: none;
    padding: 0 1rem 1rem 1rem;
  }

  .footer-light {
    text-align: center;
    padding: 2rem 0;
  }

  .footer-light ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }

  .footer-light ul li {
    display: inline-block;
    margin-right: 0.5rem;
  }

  .footer-light ul li:last-child {
    margin: 0;
  }

  .footer-light a {
      color: #6c757d !important;
      text-decoration: none;
  }

  .footer-light .social-links {
    margin-bottom: 0.8rem;
  }

  .footer-light .social-links li {
      padding: 0 0.6rem;
      cursor: pointer;
  }

  .footer-light .social-links li a {
      display: inline-block;
      font-size: 1.2rem !important;
      opacity: 0.5;
  }

  .footer-light .social-links li a:hover {
      opacity: 0.8;
  }

  .footer-light .highlight a {
    color: #000 !important;
    font-weight: 400;
  }

  .footer-light a:hover {
    color: #454545 !important;
  }

  pre code {
    background-color: #fff;
    border: 1px solid #e7e7e7;
    display: block;
    padding: 1rem;
    border-radius: 5px;
  }

  ::-moz-selection { /* Code for Firefox */
    color: #000;
    background: #ffc107;
  }
  
  ::selection {
    color: #000;
    background: #ffc107;
  }

  .faq .description-title {
    font-size: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem 1rem;
    border: 2px solid rgba(23, 162, 184, 0.4);
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    font-weight: 400; 
    display: flex;
    justify-content: space-between;
    align-items: center;
}
