/*------------------------------------*\
    #Accotabs
\*------------------------------------*/
.c-tabs {
  position: relative;
}
.c-tabs img {
  max-width: none;
}
.c-tabs .sqs-block {
  box-sizing: border-box;
  min-width: 100%;
}
.c-tabs__wrapper {
  width: 100%;
}
.c-tabs__wrapper::before,
.c-tabs__wrapper::after {
  content: " ";
  display: table;
  clear: both;
}
.c-tabs__tablist {
  position: relative;
  display: -webkit-box;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-tabs__tablist[hidden] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  visibility: hidden;
  pointer-events: none;
}
.c-tabs__tablist::after {
  content: '';
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  border-bottom: 1px solid #ccc;
}
.c-tabs__tablist li {
  display: inline-block;
  margin: 0 0 0 0.625em;
}
.c-tabs__tablist li:first-child {
  margin-left: 0;
}
.c-tabs__tablist:not([hidden]) li {
  flex-shrink: 0;
}
.c-tabs__tab {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  padding: 1em 1.4em;
  background: #f5f5f5;
  border: 1px solid #ccc;
  box-shadow: none;
  font-weight: 400;
  font-size: 1em;
  line-height: 1;
  outline: none;
  text-decoration: none;
  text-align: center;
  color: currentColor;
  white-space: nowrap;
  transition: all 0.3s;
}
.c-tabs__tab::before {
  content: '';
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  border-top: 3px solid #ccc;
  opacity: 0;
  transition: opacity 0.3s;
}
.no-touch .c-tabs__tab:hover,
.c-tabs__tab[aria-selected="true"] {
  background: #fff;
  border: 1px solid #ccc;
  border-bottom-color: transparent;
  box-shadow: none;
  color: currentColor;
  outline: none;
  text-decoration: none;
  z-index: 2;
  /* Show Top border */
}
.no-touch .c-tabs__tab:hover::before,
.c-tabs__tab[aria-selected="true"]::before {
  opacity: 1;
}
.c-tabs__tab-title {
  padding: 0;
}
.c-tabs__accordion-tab {
  display: block;
  margin: 0 0 -1px;
  padding: 0.8em 1em;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  box-shadow: none;
  color: #555;
  font-weight: 400;
  font-size: 1em;
  line-height: 1;
  text-decoration: none;
  transition: all 0.3s;
}
.c-tabs__accordion-tab:last-of-type.c-tabs__accordion-tab[aria-expanded="false"] {
  margin-bottom: 34px;
}
.no-touch .c-tabs__accordion-tab:hover,
.c-tabs__accordion-tab[aria-expanded="true"] {
  background: #f5f5f5;
  border: 1px solid #ddd;
  box-shadow: none;
  color: #555;
}
.c-tabs__accordion-tab .c-tabs__tab-title {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 0;
}
.c-tabs__accordion-tab .c-tabs__tab-title::after {
  content: '';
  display: block;
  width: 1.626em;
  height: 1.626em;
  background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22%23555%22%3E%3Cpath%20d%3D%22M7.406%207.828L12%2012.422l4.594-4.594L18%209.234l-6%206-6-6z%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  transition: transform 0.35s;
}
.c-tabs__accordion-tab[aria-expanded="true"] .c-tabs__tab-title::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22%23555%22%3E%3Cpath%20d%3D%22M7.406%207.828L12%2012.422l4.594-4.594L18%209.234l-6%206-6-6z%22%2F%3E%3C%2Fsvg%3E');
}
.c-tabs__tab-img {
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  margin: 0 0 0.625em;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.c-tabs__tab-img img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: auto;
}
.c-tabs__accordion-tab .c-tabs__tab-img {
  display: block;
  margin: 0 0 0.625em;
  padding-bottom: 56.25%;
}
.c-tabs__content {
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  overflow: hidden;
}
.c-tabs__tabpanel {
  width: 100%;
}
.c-tabs__tabpanel[style*="display: none"] {
  display: block !important;
  position: absolute;
  top: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}
.c-tabs__tabpanel-inner {
  box-sizing: border-box;
  margin: 0;
  padding: 1em;
  background: none;
  border: 0;
  box-shadow: none;
}
.c-tabs {
  /*! Flickity https://flickity.metafizzy.co
---------------------------------------------- */
  /* draggable */
  /* ---- flickity-button ---- */
  /* ---- Previous/Next Buttons ---- */
}
.c-tabs .flickity-enabled {
  position: relative;
}
.c-tabs .flickity-enabled:focus {
  outline: none;
}
.c-tabs .flickity-viewport {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}
.c-tabs .flickity-slider {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.c-tabs .flickity-enabled.is-draggable {
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.c-tabs .flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.c-tabs .flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.c-tabs .flickity-button {
  position: absolute;
  z-index: 3;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  color: #555;
}
.c-tabs .flickity-button:hover {
  cursor: pointer;
}
.c-tabs .flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19f;
}
.c-tabs .flickity-button:active {
  opacity: 0.6;
}
.c-tabs .flickity-button:disabled {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.c-tabs .flickity-button-icon {
  width: 50%;
  height: 50%;
  fill: #555;
}
.c-tabs .flickity-prev-next-button {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  width: 30px;
  background: #fff;
  opacity: 0.9;
  transition: opacity 0.5s;
}
.c-tabs .flickity-prev-next-button.previous {
  left: 0;
}
.c-tabs .flickity-prev-next-button.next {
  right: 0;
}
