.alternatives-items{
    color: #555558;
}

.alternatives-items h3{
    margin-bottom: clamp(var(--g8-mobile), 3vw, var(--g8-desktop)) !important;
}

.alternatives-items .include__text{
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #333338;
}

.alternative-items-list{
    border: 1px solid #E6E9F2;
    border-radius: 12px;
}

.alternative-items-list>*:not(:last-child){
    border-bottom: 1px solid #E6E9F2;
}

.alternative-item{
    padding: clamp(1.25rem, 2vw, 2rem);
}


.alternative-container--flex{
    display: flex;
    justify-content: space-between;
    gap: clamp(1rem, 2vw, 1.25rem);
}

.alternative-container--logo{
    display: flex;
    align-items: center;
    gap: clamp(0.85rem, 2vw, 1rem);
}

.alternative-container--icon img{
    width: 48px;
    height: 48px;
    border-radius: 8px;
}

.alternative-container--icon svg{
    border-radius: 8px;
}

.alternative--preview{
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
}

.alternative--title{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2px;
}

.alternative--title--text{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: var(--heading-color);
}

.alternative--subtitle--text{
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
}

.arrow__link{
    transition: all 0.5s easy-out;
    padding: 0.4375rem 0.9375rem;
    border: 1px solid #3761E9;
    padding: 0.4375rem 0.9375rem;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 500;
    border-radius: 8px;
    min-height: 36px;
}

.arrow__link:hover{
    background-color: #EFF3FE;
}


.tooltip--alternative{
	position: relative;
}

.tooltip--alternative:hover span svg path, .tooltip--alternative:hover span svg circle{
	stroke: #303030;
}
.tooltip--alternative .tooltip-text {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 0.5rem;
    background-color: #303030;
    color: white;
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.375rem;
    padding: 0.75rem;
    border-radius: 4px;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(100% + 10px);
    z-index: 1;
	white-space: nowrap;
    text-decoration: none !important;
}

.tooltip--alternative .tooltip-text::before {
  content: "";
  width: 8px;
  margin-top: -4px;
  margin-left: -4px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: rotate(45deg);
  background-color: inherit;
  display: block;
  height: 8px;
}

.tooltip--alternative:hover .tooltip-text,
.tooltip--alternative:focus .tooltip-text {
  visibility: visible;
}

.tooltip-text:hover{
	color: #3761E9;
}

.tooltip-text:hover svg path{
	stroke: #3761E9;
}

@media (max-width: 575px) {
    .alternative-container--logo{
        display: flex;
        align-items: start;
        flex-direction: column;
    }
  }