.tsi-form {
    display: flex;
    flex-flow: column nowrap;
    gap: 1rem;
    justify-content: stretch;
    align-items: stretch;
    padding: 0 1rem;
}

.tsi-title {
    background: #ab1b23;
    color: white;
    font-size: 1.4rem;
    margin: 1rem auto;
    padding: 5px 10px;
    text-align: center;
}

.tsi-form select {
    box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.3);
    font-weight: bold;
    height: auto;
    margin: 0 4px 10px 0;
    padding: 8px 12px;
    width: 100%;
    max-width: 225px;
}

.tsi-filters {
    position: relative;
    clear: both;
}

.tsi-filter-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 2.5rem;
}

.tsi-filter-btn {
    background-color: unset;
    border: 1px solid grey;
    margin: 2px 4px;
}

.tsi-filter-btn.is-active {
    background-color: #ab1b23;
    color: white;
    border: 1px solid #ab1b23;
}

.tsi-filter-clear {
    max-width: 110px !important;
    padding: 4px !important;
    margin-top: 1rem !important;
}

.tsi-card {
    background-color: white;
    border: 1px solid #3675b6;
    border-radius: 15px;
	width: 100%;
    padding-bottom: 1rem;
}

.tsi-card .top-title {
    border-bottom: 1px solid #DE1F27;
    padding: 2px 0 2px 20px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: start;
    align-items: center;
    gap: 1rem;
}

.tsi-card .top-title .card-title {
    font-size: 1.25rem;
}

.tsi-card .tsi-card-content {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
    margin: 1rem 0;
}

.tsi-card-inner {
    display: flex;
    flex-flow: column nowrap;
    justify-content: start;
    align-items: start;
    width: 100%;
    max-width: 380px;
    padding: 0 4px;
}

.included-with-purchase {
    margin-top: 1rem;
}
.included-with-purchase ul {
    list-style: none;
}

.included-with-purchase ul li {
    color: #3675b6;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.tsi-specs {
    display: block;
	font-size: .85rem;
	margin: 0;
	width: 100%;
}

.tsi-specs .label {
    color: white;
    font-weight: 700;
    max-width: 100px;
    border: 1px solid #3675b6;
    background: #3675b6;
}

.tsi-specs .data {
    border: 1px solid #3675b6;
    padding: 5px 10px;
    width: 100%;
}

.tsi-features .features-title {
    color: #88191d;
    margin: .8rem 0;

}
.tsi-features ul {
    list-style: none;
    padding-left: .5rem;
}

.tsi-features ul li {
    margin-bottom: .25rem;
    color: grey;
}

.tsi-tire-price {
    color: #C50A25;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4rem;
    margin: 1rem .4rem;
}

.tsi-tire-image {
    width: 100%;
    height: auto;
    max-width: 150px;
    margin-bottom: 2rem;
}

.tsi-call-text {
    color: #3675b6;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 2rem;
}

.tsi-call-text a {
    color: #C50A25;
    text-decoration: none;
}

.base-button {
    background-image: none;
    background-color: #C50A25;
    border-radius: 4px 4px 4px 4px;
    color: white;
	cursor: pointer;
    font-size: .9rem;
    font-weight: 700;
    padding: 8px 20px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
    max-width: 320px;
    margin-bottom: 2rem;
}

.teal {
    background-image: none;
    background-color: #729b93;
}

.white {
    background-image: none;
    background-color: white;
    color: black;
}


/** Responsive */
@media screen and (max-width: 768px) {
    #search_container {
        flex-flow: column;
    }
    #search_container .search_block_border {
        display: none;
        visibility: hidden;
    }

    .tsi-form {
        align-items: center;
    }
}

@media screen and (max-width: 600px) {
    .tsi-card .top-title {
        flex-flow: column;
        align-items: start;
        gap: 0;
        padding-bottom: 1rem;
    }

    .tsi-card .tsi-card-content {
        flex-flow: column;
    }
}