/**
Include icons in scss/css.
Usage: 
 @include icon(close);
*/
/*
Media query mixin.
Usage: 
@include media($bp-l, min)
*/
/*
Mixin to add loading spinner to button/element.
Usage: 
@include loading()
*/
.csw {
  margin: 1rem 0;
  max-width: 100%;
}

.csw__option {
  border: 1px solid #a6a6a6;
  border-radius: var(--csw-card-radius, 16px);
  padding: 1.25rem 1rem;
  cursor: pointer;
  transition: border-color 0.2s ease;
  position: relative;
}
.csw__option:not(:last-child) {
  margin-bottom: 0.5rem;
}
.csw__option--selected {
  border-color: var(--csw-brand-color, #054040);
}

.csw__option-selector {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--csw-brand-color, #054040);
  padding: 0;
  cursor: pointer;
}

.csw__option-selector-title {
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--csw-brand-color, #054040);
}

.csw__savings {
  flex-basis: 100%;
  padding-left: 1.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--csw-brand-color, #054040);
}
.csw__savings[hidden] {
  display: none;
}

.csw__radio-icon {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.csw__radio-icon svg {
  display: block;
}

.csw__price {
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: auto;
  color: var(--csw-brand-color, #054040);
}

.csw__price-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 0.375rem;
  margin-left: auto;
}

.csw__compare-price {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--csw-brand-color, #054040);
  text-decoration: line-through;
  opacity: 0.5;
}
.csw__compare-price[hidden] {
  display: none;
}

.csw__sub-container {
  padding: 0 0 0 1.5rem;
  color: var(--csw-brand-color, #054040);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.csw__option--selected .csw__sub-container {
  max-height: 1000px;
}

.csw__plans-label {
  display: block;
  font-weight: 400;
  font-size: 0.875rem;
  margin: 0.75rem 0 0.5rem;
  color: var(--csw-brand-color, #054040);
}

.csw__plans-dropdown {
  position: relative;
  width: 100%;
}

.csw__dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.8125rem 1rem;
  border-radius: 2.0625rem;
  border: 1px solid var(--csw-brand-color, #054040);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--csw-brand-color, #054040);
  background-color: transparent;
  cursor: pointer;
  text-align: left;
  appearance: none;
  transition: border-radius 0.2s ease;
}
.csw__plans-dropdown--open .csw__dropdown-toggle {
  border-radius: 1.25rem 1.25rem 0 0;
  border-bottom-color: var(--csw-brand-color, #054040);
}

.csw__dropdown-chevron {
  flex-shrink: 0;
  width: 0.875rem;
  height: 0.5rem;
  color: var(--csw-brand-color, #054040);
  transition: transform 0.2s ease;
}
.csw__plans-dropdown--open .csw__dropdown-chevron {
  transform: rotate(180deg);
}

.csw__dropdown-list {
  display: none;
  border: 1px solid var(--csw-brand-color, #054040);
  border-top: none;
  border-radius: 0 0 1.25rem 1.25rem;
  overflow: hidden;
}
.csw__plans-dropdown--open .csw__dropdown-list {
  display: block;
}

.csw__dropdown-option {
  padding: 0.8125rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--csw-brand-color, #054040);
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.csw__dropdown-option:not(:last-child) {
  border-bottom: 1px solid var(--csw-brand-color, #054040);
}
.csw__dropdown-option:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
.csw__dropdown-option--selected {
  display: none;
}

.csw__benefits {
  color: var(--csw-brand-color, #054040);
  margin: 0.75rem 0 0.25rem;
}
.csw__benefits ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.csw__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6;
  padding: 0;
  color: var(--csw-brand-color, #054040);
}
.csw__benefits li::before {
  display: none !important;
}
.csw__benefits li[hidden] {
  display: none;
}
.csw__benefits li > span {
  flex: 1 1 auto;
}

.csw__hiw-icon {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
}

.csw__benefits-title {
  margin: 0.875rem 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--csw-brand-color, #054040);
}

.csw__badge {
  position: absolute;
  right: 0.75rem;
  top: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 6.25rem;
  background-color: var(--csw-accent-color, #50fcce);
  color: var(--csw-brand-color, #054040);
  font-family: Poppins, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2px;
  text-align: right;
}
.csw__badge[hidden] {
  display: none;
}
