.box{
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 50px;
}

.image-wrapper{
    min-height: 450px;
    height: 100%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.fat{
    max-width: 70% !important;
}

#photoCarousel .slick-list .slick-track .image-wrapper{
    min-height: 500px;
}

#productModal .modal-content{
    background-color: ghostwhite;
}
#productModal .product-title{
    font-size: 28px;
    margin-top: 15px;
    /*font-family: 'Caveat', sans-serif;*/
}
#productModal .product-made-to-order{
    font-style: italic;
}
#productModal .product-price{
    font-size: 20px;
    font-weight: bold;
}
#productModal .product-ogprice{
    text-decoration: line-through;
}
#productModal .product-delivery{
    color: grey;
}
#productModal select{
    cursor: pointer;
}
#productModal select:not(:focus):hover{
    box-shadow: rgba(0, 200, 0, 0.16) 0px 1px 4px;
}

.notables{
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin-bottom: 0;
}
.notables .note{
    margin-bottom: 5px;
    font-size: 14px;
}
.notables .note .icon{
    float: left;
    width: 30px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
}
.notables .note .text{
    padding-left: 35px;
}

.close:focus{
    outline: none;
}

.slick-dots li{
    width: 10px !important;
    transition: 0.5s ease;
}

#addToCartBtn{
    cursor: pointer;
}

#imageModal .close{
    font-size: 32px;
    padding-bottom: 10px;
}
#imageModal .modal-dialog{
    margin: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    max-width: unset;
}
#imageModal .modal-content{
    margin: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
#imageModal #image-viewer{
    height: 100%;
}

.image-wrapper{
    cursor: zoom-in;
}

.slick-arrow{
    background-color: rgba(0, 0, 0, 0.05);
    color: white;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    z-index: 100;
    transition: 0.5s ease;
}
.slick-arrow::before{
    content: ""
}
.slick-arrow:hover{
    background-color: rgba(0, 0, 0, 0.05);
    color: white;
}

.next-arrow{
    right: 0;
}
.prev-arrow{
    left: 0;
}

.enlarge-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 35px;
    right: 20px;
    width: 50px;
    height: 50px;
    z-index: 1000;
    font-size: 25px;
    pointer-events: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.75);
    animation: pulse-animation 1s linear infinite;
}

.info-subheading{
    /* background-color: #e5dccf; */
    /* border-radius: 50px; */
    /* padding: 5px 15px; */
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* margin-left: -20px; */
    /* margin-right: -20px; */
    /* display: inline-block; */
    margin-top: 50px;
    /* font-size: 14px; */
    position: relative;
}
.info-subheading::after{
    content: "";
    background-color: #e5dccf;
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.product-description{
    font-size: 14px;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}

@media only screen and (max-width: 1000px) {
    .box{
        padding: 10px !important;
    }
    #productModal .product-title{
        font-size: 26px;
    }
    .mobile-center{
        text-align: center !important;
        display: flex;
        justify-content: center !important;
        align-items: center !important;

    }
    .fat{
        max-width: 95% !important;
    }
    .modal-body{
        padding: 10px;
    }
}