.bb-stores {
width: 100%;
}
.bb-stores__filters {
width: 100%;
margin-bottom: clamp(15px, 3vw, 50px);
}
.bb-filter-wrapper {
display: flex;
}
.filter-sep {
margin-left: 10px;
margin-right: 20px;
color: #DFBD93;
}
.bb-stores__brands {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.bb-stores__brand-btn,
.bb-stores__location-btn,
.bb-stores__reset-btn,
.bb-stores__more-btn,
.bb-filter__burger-btn {
appearance: none;
border: 1px solid #DFBD93;
background: transparent;
padding: 6px 10px;
color: #DFBD93;
border-radius: 999px;
cursor: pointer;
line-height: 1.2;
text-transform: uppercase;
font-size: clamp(16px, 1.302vw, 25px);
transition: 0.25s ease-in-out;
}
.bb-stores__brand-btn.is-active,
.bb-stores__reset-btn.is-active,
.bb-filter__burger-btn.is-active,
.bb-stores__brand-btn:hover,
.bb-stores__location-btn:hover,
.bb-stores__reset-btn:hover,
.bb-stores__more-btn:hover {
background: #DFBD93;
color: #FFFFFF;
}
.bb-stores__details-btn {
padding: 0;
appearance: none;
color: #DFBD93;
border: none;
background-color: transparent;
text-decoration: underline;
cursor: pointer;
line-height: 1.2;
text-transform: uppercase;
font-size: clamp(14px, 0.833vw, 16px);
}
.bb-stores__location {
display: flex;
gap: 8px;
align-items: center;
}
.bb-stores__location-input {
min-width: 240px;
padding: 6px 10px;
border: 1px solid #ccc;
border-radius: 8px;
font-size: clamp(16px, 1.302vw, 25px);
}
.bb-stores__body {
display: grid;
grid-template-columns: 0.5fr 1fr;
gap: 16px;
min-height: 520px;
}
.bb-stores__list {
border-radius: 12px;
overflow: hidden;
display: flex;
flex-direction: column;
}
.bb-stores__status {
padding: 6px 0;
opacity: .8;
}
.bb-stores__items {
display: flex;
flex-direction: column;
gap: 10px;
overflow: auto;
max-height: 640px;
padding-right: 4px;
}
.bb-stores__card {
border: 1px solid rgba(0, 0, 0, .08);
border-radius: 12px;
padding: 12px;
color: #202A3B;
}
.bb-stores__card-title {
font-weight: 700;
}
.bb-stores__card h3 {
margin: 0 0 6px;
font-size: 16px;
}
.bb-stores__card p {
margin: 0 0 6px;
}
.bb-stores__meta {
font-size: 13px;
opacity: .85;
}
.bb-stores__contacts {
font-size: 13px;
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: 8px;
}
.bb-stores__contacts a {
text-decoration: underline;
}
.bb-stores__more {
margin-top: 10px;
display: flex;
justify-content: center;
}
.bb-stores__map {
border: 1px solid rgba(0, 0, 0, .08);
border-radius: 12px;
overflow: hidden;
min-height: 520px;
}
.bb-stores__map-canvas {
width: 100%;
height: 100%;
min-height: 520px;
}
.bb-stores__card-actions {
margin-top: 8px;
display: flex;
gap: 8px;
align-items: center;
}
.bb-stores__details-panel {
padding-left: 0.8em;
margin-top: 8px;
opacity: .9;
display: flex;
flex-direction: column;
gap: 6px;
font-size: clamp(14px, 0.833vw, 16px);
}
.bb-stores__details-panel strong {
font-weight: 500;
}
.bb-stores__details-panel a {
text-decoration: underline;
}
.bb-stores__details-panel[hidden] {
display: none !important;
}
@media screen and (max-width:800px) {
.bb-filter-wrapper {
display: none;
}
.bb-filter-wrapper.filters-opened {
display: flex;
}
.bb-filter-burger {
margin-bottom: 30px;
}
}
@media (max-width: 900px) {
.bb-stores__body {
grid-template-columns: 1fr;
}
.bb-stores__items {
max-height: 420px;
}
}