@charset "utf-8";
/* CSS Document */

.scrtabs-tab-container * {
  box-sizing: border-box;
}
.scrtabs-tab-container {
  width: 100%;
  display: inline-block;
}
.scrtabs-tab-container .tab-content {
  clear: left;
}
.scrtabs-tabs-fixed-container {
  float: left;
  overflow: hidden;
  width: 100%;
}
.scrtabs-tabs-movable-container {
  position: relative;
}
.scrtabs-tabs-movable-container .tab-content {
  display: none;
}
.nav-tabs-home-page {
  display: grid;
  grid-gap: 0.5rem;
  justify-content: center;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  padding: 0px;
}

.scrtabs-tab-scroll-arrow {
  color: var(--dark-blue);
  cursor: pointer;
  float: left;
  margin-bottom: 0;
  padding: 0.75rem 1rem;
  width: auto;
  background-color: #e8e9ee;
}
.scrtabs-tab-scroll-arrow:hover {
  color: var(--light-blue);
}

.scrtabs-tabs-fixed-container ul.nav-tabs {
}
.scrtabs-tabs-fixed-container ul.nav-tabs > li {
  white-space: nowrap;
}
.scrtabs-tab-content-outside-movable-container .nav-tabs {
  display: none;
}

.scrtabs-tabs-fixed-container .nav-item {
}

.scrtabs-tabs-fixed-container .nav-link {
  color: var(--dark-blue);
  font-weight: 600;
}

.scrtabs-tabs-fixed-container .nav-tabs {
  border-bottom: none;
}

.scrtabs-tabs-fixed-container .nav-tabs .nav-link {
  margin-bottom: 0;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  padding: 0.75rem 1rem;
  background-color: #f8fbfb;
  border: 1px solid #ccc;
  text-transform: uppercase;
  text-align: center;
  font-weight: 400;
}

.scrtabs-tabs-fixed-container .nav-tabs .nav-item.show .nav-link,
.scrtabs-tabs-fixed-container .nav-tabs .nav-link.active {
  color: #fff;
  background-color: #1b8fc9;
  border-color: #1b8fc9;
  text-transform: uppercase;
}
