:root {
    --dk-aspect-ratio: 100%;
    --dk-transition-duration: .25s;
    --dk-accent-color: #40bce9;
    --dk-dark-color: #2b2d33;
}

.dk_shopwindow {
    color: #fff;
    overflow: hidden;
}
.dk_shopwindow .container {
    max-width: 1170px;
}
.dk_shopwindow__title {
    margin-top: 0;
}
.dk_shopwindow__subtitle {
    font-family: "Days One", sans-serif;
    text-transform: uppercase;
    line-height: 1.33;
}
.dk_shopwindow__ratio {
    position: relative;
    width: 100%;
}
.dk_shopwindow__ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.dk_shopwindow__ratio:before {
    display: block;
    padding-top: var(--dk-aspect-ratio);
    content: "";
}
.dk_shopwindow__list {
    padding: 20px 0;
}
.dk_shopwindow__list .row {
    margin-right: -35px;
    margin-left: -35px;
}

.dk_shopwindow__list [class^='col'] {
    padding-right: 35px;
    padding-left: 35px;
    margin-top: 35px;
}

.dk_shopwindow__product {
    --dk-aspect-ratio: 70%;
}
.dk_shopwindow__product.is-without-space-image .dk_shopwindow__product-image {
    padding: 24px 0;
}

.dk_shopwindow__product .dk_shopwindow__ratio {
    transition: background-color var(--dk-transition-duration);
    background-color: var(--dk-dark-color);
    clip-path: polygon(0 0,100% 0,100% 88%,90% 100%,0 100%);
}
.dk_shopwindow__product:hover .dk_shopwindow__ratio {
    background-color: var(--dk-accent-color);
}
.dk_shopwindow__product-image {
    text-align: center;
}
.dk_shopwindow__product-image img{
    max-height: 100%;
}
.dk_shopwindow__product-description {
    padding: 20px 0;
}
.dk_shopwindow__product-name {
    font-family: "Days One", sans-serif;
    font-weight: 400;
    font-size: 1.875rem;
    padding-bottom: 10px;
}
.dk_shopwindow__product-price {
    font-size: 1.5rem;
    font-family: "Days One", sans-serif;
}
.dk_shopwindow__note {
    padding: 30px 0 50px;
    font-family: "Days One", sans-serif;
}
