/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.0
 Text Domain:  bricks
*/


.ts-card {
  width: 100%;
  background: #222;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, .55);
  border: 1px solid #2e2e2e;
  position: relative;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.ts-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, .07),
    transparent
  );
}

.ts-tabs {
  display: flex;
  border-bottom: 1px solid #2e2e2e;
  padding: 0 6px;
}

.ts-tab {
  flex: 1;
  padding: 15px 4px 13px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: #666;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  cursor: pointer;
  transition: color .2s, border-color .2s;
  margin-bottom: -1px;
  font-family: inherit;
  text-align: center;
}

.ts-tab:hover {
  color: #aaa;
}

.ts-tab.ts-active {
  color: #e8e8e8;
  border-bottom-color: #9CCB3B;
}

.ts-panel {
  display: none;
  position: relative;
  padding: 10px 14px 14px;
}

.ts-panel.ts-active {
  display: block;
}

.ts-track {
  position: absolute;
  right: 5px;
  top: 12px;
  bottom: 12px;
  width: 4px;
  background: #2e2e2e;
  border-radius: 2px;
  overflow: hidden;
}

.ts-thumb {
  width: 100%;
  height: 50%;
  background: #9CCB3B;
  border-radius: 2px;
  transition: margin-top .3s ease;
}

.ts-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-right: 10px;
}

.ts-item {
  background: #2a2a2a;
  border-radius: 12px;
  border: 1px solid #333;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s;
}

.ts-item:hover {
  border-color: #444;
}

.ts-item.ts-open {
  border-color: rgba(156, 203, 59, .3);
}

.ts-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  user-select: none;
}

.ts-label {
  flex: 1;
  color: #e0e0e0;
  font-size: 14px;
  font-weight: 500;
}

.ts-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.ts-icon-t {
  background: rgba(156, 203, 59, .1);
  color: #9CCB3B;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.ts-chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform .25s ease;
}

.ts-item.ts-open .ts-chevron {
  transform: rotate(90deg);
}

.ts-body {
  display: none;
  padding: 0 15px 15px;
}

.ts-item.ts-open .ts-body {
  display: block;
  animation: tsIn .2s ease;
}

@keyframes tsIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ts-body p {
  color: #888;
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 13px;
  font-weight: 300;
}

.ts-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #9CCB3B;
  color: #111;
  font-size: 12.5px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, transform .1s;
  font-family: inherit;
}

.ts-cta:hover {
  background: #aedd45;
  transform: translateY(-1px);
}