.page-title-button {
  background: none;
  margin-bottom: 20px;
  color: #000;
  font-size: 20px;
  font-weight: 600;
  border: none;
  border-left: 7px solid #40ABFC;
  text-align: left;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tabbed_container {
  margin: 0 auto;
  max-width: 1120px;
  padding: 40px 0;
}

.tabbed_container .tabbed_navigation {
  top: 20px;
}

.tabbed_container .item {
  transition: all 0.3s ease;
}

#tabbed_list {
  list-style-type: none;
  margin: 0 0 32px;
  padding: 0;
}

#tabbed_list li {
  display: block;
  margin: 0;
  text-decoration: none;
  padding: 6px 0 6px;
  font-size: 1rem;
}

#tabbed_list li:before {
  display: none;
}

#tabbed_list li a {
  display: -webkit-box;
  align-items: center;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  padding: 0.5em 1.5em 0.5em 1em;
  min-height: 37px;
  border-radius: 5px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
}

#tabbed_list li a.active,
#tabbed_list li a.active:hover {
  background-color: #30344D;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  border-radius: 5px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 400 40'%3E%3Cpath d='M0 5C0 2.23858 2.23858 0 5 0H380C382.11 0 384.136 0.834059 385.634 2.32047L396.706 15.7404C399.072 18.0873 399.072 21.9127 396.706 24.2596L385.634 37.6795C384.136 39.1659 382.11 40 380 40H5C2.23857 40 0 37.7614 0 35V5Z'/%3E%3C/svg%3E") 0 0 / 100% 100%;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 400 40'%3E%3Cpath d='M0 5C0 2.23858 2.23858 0 5 0H380C382.11 0 384.136 0.834059 385.634 2.32047L396.706 15.7404C399.072 18.0873 399.072 21.9127 396.706 24.2596L385.634 37.6795C384.136 39.1659 382.11 40 380 40H5C2.23857 40 0 37.7614 0 35V5Z'/%3E%3C/svg%3E") 0 0 / 100% 100%;
}

#tabbed_list li a:not(.active):hover {
  text-decoration: none;
  color: #000;
  font-weight: 400;
  background-color: #D2D3D6;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 400 40'%3E%3Cpath d='M0 5C0 2.23858 2.23858 0 5 0H380C382.11 0 384.136 0.834059 385.634 2.32047L396.706 15.7404C399.072 18.0873 399.072 21.9127 396.706 24.2596L385.634 37.6795C384.136 39.1659 382.11 40 380 40H5C2.23857 40 0 37.7614 0 35V5Z'/%3E%3C/svg%3E") 0 0 / 100% 100%;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 400 40'%3E%3Cpath d='M0 5C0 2.23858 2.23858 0 5 0H380C382.11 0 384.136 0.834059 385.634 2.32047L396.706 15.7404C399.072 18.0873 399.072 21.9127 396.706 24.2596L385.634 37.6795C384.136 39.1659 382.11 40 380 40H5C2.23857 40 0 37.7614 0 35V5Z'/%3E%3C/svg%3E") 0 0 / 100% 100%;
}

#tabbed_content p {
  font-size: 1rem;
  line-height: 1.75;
  text-transform: none;
  margin-bottom: 1rem;
}

#tabbed_nav .btn-tab-pagination {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  max-width: 320px;
  display: inline-flex;
  padding: 12px 16px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: #40ABFC;
  color: #1E2133;
  text-align: center;
  margin-top: 20px;
}

.btn-tab-pagination .text-truncate {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
}

#tabbed_nav .btn-tab-pagination:hover {
  background: #72c1fd;
  border-color: #72c1fd;
}

@media (max-width: 767px) {
  .page-title-button {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
  }

  .page-title-button:after {
    content: url("../../../images/block/tabbed-content/arrow-tip-down.svg");
    display: block;
    float: right;
    transition: all 0.3s ease;
  }

  .page-title-button[aria-expanded="true"]:after {
    transform: rotate(180deg);
  }

  #tabbed_content {
    padding: 0;
  }

  #tabbed_content .item {
    padding: 48px 25px 32px;
    border-top: 1px solid #BBB;
    border-bottom: 1px solid #BBB;
  }

  #tabbed_nav {
    flex-direction: column;
  }

  #tabbed_nav .prev {
    margin-top: 42px;
  }

  #tabbed_nav .next {
    margin-top: 32px;
  }
}

@media (min-width: 768px) {
  .tabbed_container .tabbed_navigation {
    position: -webkit-sticky;
    position: sticky;
  }

  .page-title-button {
    pointer-events: none;
  }

  .collapse.dont-collapse-sm {
    display: block;
    height: auto !important;
    visibility: visible;
  }

  .tabbed_container .col-8 {
    padding-left: 80px;
  }
}

@media screen and (max-width: 900px) {
  .col-1, .col-2, .col-3 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 560px) {
  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
  .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
  .col, .col-auto {
    padding-left: 25px;
    padding-right: 25px;
  }
}
