*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html,
body,
p {
	font-family: "Open Sans", sans-serif;
}
a{
    text-decoration: none;
    color: inherit;
}
img{
    display: block;
}
.d-flex{
    display: flex;
}
.d-flex-column{
    display: flex;
    flex-direction: column;
}
#page{
    max-width: 490px;
    width: 100%;
    margin: 0 auto;
}
.banner{
    height: 175px;
    overflow: hidden;
}
.banner img{
    object-fit: cover;
    object-position: center;
}
#collections{
    padding: 16px;
}
.collections-coin-img{
    position: relative;
    width: 101px;
    height: 101px;
    margin: 0 auto;
    margin-top: -50px;
    border: solid 1px #fff;
    border-radius: 50%;
    overflow: hidden;
    z-index: 10;
}
.collections-coin-img img{
    object-fit: cover;
    object-position: top;
}
.collections-divider{
    display: block;
    width: 100%;
    height: 1px;
    margin: 16px auto;
    background-color: #E6E6E6;
}
/* box shadow for the cards  */
/* box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15); */
.collections-wrap{
    width: 100%;
    margin-top: 28px;
}
.collections-wrap .collection-top{
    justify-content: space-between;
}
.collection-name{
    font-size: 20px;
    font-weight: bold;
}
.collection-track{
    display: inline-flex;
    width: 100%;
    padding-top: 18px;
    padding-bottom: 18px;
    column-gap: 12px;
}
.collection-card{
    max-width: 135px;
    min-width: 135px;
    border-radius: 8px;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}
.whisky-details{
    padding: 8px;
    row-gap: 8px;
}
.whisky-details .whisky-name{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.whisky-details .whisky-brand{
    color: #8A8A8A;
    font-size: 10px;
}
section.splide{
    overflow: hidden;
}
.splide .splide__track{
    padding-top: 12px;
    padding-bottom: 12px;
}
.collection-more{
    display: grid;
    place-items: center;
    width: 135px;
    background: #333;
    border-radius: 8px;
}
.more-items p{
    color: #fff;
    font-weight: bold;
    font-size: 28px;

}