p {
    line-height: var(--line-height-lg);
    margin: 0;
}
#product {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
#p-images {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    align-content: unset;
    justify-content: flex-start;
    position: relative;
}
.pi-default {
    flex: 1 1 100%;
    position: relative;
    height: 100%;
}
.pi-secondary {
    flex: 0 1 50%;
}
.pi-secondary:nth-child(odd):last-child {
    flex: 0 1 100%;
}
.pi-image img {
    width: 100%;
    cursor: zoom-in;
}
.slick-slider .pi-image img {
    cursor: auto;
}
#pi-slider {
    width: 100%;
}
#p-images img {
    display: block;
    min-height: 100%;
    object-fit: cover;
    min-width: 100%;
}
#p-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 60rem;
    padding: 1.5rem 2rem 1rem;
    border-left: 1px solid rgb(216, 216, 216);
    border-bottom: 1px solid rgb(216, 216, 216);
    min-height: 68rem;
}
#p-info .alert {
    margin-bottom: 0;
}
.p-title h2 {
    white-space: nowrap;
    font-size: var(--font-size-3xl);
}
.p-details {
    margin-top: 2rem;
    line-height: var(--line-height-lg);
}
#btn-add-to-bag {
    margin-top: 1.4rem;
}
.p-description {
    margin-top: 2rem;
}
.p-sizes {
    margin-top: 2rem;
    white-space: nowrap;
}
.p-tailoring {
    margin-top: 1.4rem;
}
#p-more {
    margin-top: 1rem;
}
.p-more-item {
    margin: 1rem 0;
}
.p-more-title {
    position: relative;
    cursor: pointer;
    width: 14rem;
    text-decoration: underline;
    background: url(/images/icons/plus-small.svg) no-repeat right/1.6rem;
}
.p-more-title.expanded {
    background-image: url(/images/icons/dash.svg);
}
.p-more-content {
    display: none;
    padding: 1.6rem 1rem 1rem;
}
.p-more-content ul {
    margin: 0;
    padding: 0;
}
.p-more-content li {
    padding: 0.4rem 0 0;
}
.p-size-chart {
    width: 100%;
}
.p-size-chart td,
.p-size-chart th {
    padding: 6px;
}
.sl-overlay {
    opacity: 0.8;
}
#txt_customization {
    margin-top: 0.4rem;
    min-width: 100px;
    width: 100%;
    box-shadow: none;
    outline: none;
    border: 1px solid #000;
}
label[for="txt_customization"] {
    opacity: 0.6;
    font-size: var(--font-size-sm);
}
select {
    margin: 0 1rem;
    width: 25%;
    min-width: 150px;
    border: 1px solid #000000;
    position: absolute;
    background-color: #FFFFFF;
}
select option {
    font-size: var(--font-size-lg);
    font-family: var(--font-family-lg);
}
h2,
.p-prices {
    font-size: var(--font-size-2xl);
}

#secondary-images {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

#category-products-cont {
    width: 100%;
    border-top: 1px solid rgb(216, 216, 216);
}
#category-products-header {
    font-size: 1.25rem;
    padding: 0 2rem;
    text-align: center;
    margin: 1.5rem 0;
}
.category-products {
    border-top: 1px solid rgb(216, 216, 216);
}

#product .p-wishlist {
    width: 3rem;
    height: 3rem;
    left: 1rem;
    right: auto;
}

.slick-initialized .slick-slide {
    max-width: 100vw;
}

#gallery-wrapper {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: var(--header-height);
    left: 0;
    background-color: #FFFFFF;
    z-index: 1;
}
#gallery-wrapper .close {
    top: var(--header-height);
    right: 1rem;
    width: 2.4rem;
    height: 2.4rem;
    position: fixed;
    background-image: url('/images/icons/close.svg');
    background-repeat: no-repeat;
    background-size: 70%;
    display: block;
    margin-top: 1rem;
    background-color: rgba(255,255,255,0.5);
    background-position: center;
    cursor: pointer;
}
#gallery-wrapper img {
    cursor: zoom-out;
}

@media only screen and (max-width: 768px) {
    #product {
        flex-direction: column;
        width: 100%;
        overflow: hidden;
        padding-bottom: 0;
    }
    .sl-wrapper .sl-close {
        font-size: 5rem;
    }
    #p-info {
        width: auto;
        min-height: auto;
    }
    .p-more-title {
        width: 18rem;
    }

    .p-more-content li,
    .p-more-content p {
        font-size: 1rem !important;
    }

    #p-images.slick-slider {
        margin-bottom: 1rem;
    }

    .additional-info {
        margin-top: 0.1rem;
    }

    #category-products-cont {
        border-top: none;
    }
}