section {
    width: 90%;
    border-radius: 5px;
    margin: 0 auto;
}

.content {
    display: flex;
    border: 1px solid #0003;
    margin-bottom: 15px;
    border-radius: 5px;
}

/* Left Side:Start */
.left {
    display: block;
    height: fit-content;
    min-width: 250px;
    background: #f7f7f7;
    position: relative;
}

.left .product_img {
    height: 100%;
    width: 100%;
    margin: 10px;
    border-radius: 5px;
}

.product_details {
    text-align: left;
    margin: 0 10px 10px;
    padding: 5px;
}

.product_details .title {
    font-size: 1.3em;
    color: rgb(99, 99, 99);
    font-weight: 900;
}

.product_details .discription {
    margin-top: 2px;
    font-size: 1em;
    color: #222;
    font-family: "Josefin+Sans", system-ui;
}

/* Left Side:End */

/* Right Side:Start */
.right {
    display: block;
}

.right .product_description {
    text-align: left;
    margin: 30px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.right h4 {
    font-size: 0.9em;
    font-weight: 900;
    margin: 20px 20px;
    text-align: center;
}

.product_description .discription {
    margin-top: 2px;
    font-size: 1em;
    color: #222;
    font-family: "Josefin+Sans", system-ui;
    padding: 0px 10px;
}

.advanced-modal .product_description {
    display: inline;
}

.advanced-modal {
    width: 100%;
}

.advanced-modal .product_description .title {
    width: 100%;
    font-size: 2em;
    color: #222;
    font-family: "Josefin+Sans", system-ui;
    font-weight: 600;
    text-align: center;
}

/* Right Side:End */


.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

.slide-wrap {
    height: 200px;
    text-align: center;
}

.slide-wrap img {
    height: 100%;
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #000;
    font-size: 12px;
    padding: 8px 0px;
    position: absolute;
    top: 0;
    font-weight: 600;
}

/* The dots/bullets/indicators */
.dot {
    height: 8px;
    width: 8px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 5px;
    width: 30px;
    height: 30px;
    padding-left: 10px;
    top: 65%;
}

.prev {
    left: 5px;
    width: 30px;
    height: 30px;
    padding-left: 10px;
    top: 65%;
}

.merlin .next {
    top: 60%;
}

.merlin .prev {
    top: 60%;
}

.product-slides .next {
    right: 5px;
    width: 30px;
    height: 30px;
    padding-left: 10px;
    top: 95%;
}

.product-slides .prev {
    left: 5px;
    width: 30px;
    height: 30px;
    padding-left: 10px;
    top: 95%;
}

/* On hover, add a #222 background color */
.prev:hover,
.next:hover {
    color: #db381c;
    background: #dc79794f;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding-left: 10px;
}

.dot.active {
    background-color: #717171;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .text {
        font-size: 11px
    }
}

/* Responsiveness:Start */
@media screen and (min-width: 320px) and (max-width: 480px) {
    .content {
        display: flex;
        flex-direction: column;
        width: 100vw;
        border-radius: 0px;
    }

    .right .product_description {
        grid-template-columns: repeat(3, 1fr);
    }

    section {
        width: 100% !important;
    }

    .product_img {
        width: calc(100vw - 6%) !important;
        height: 350px !important;
    }

    h4.title {
        font-size: 1em !important;
    }

    p {
        width: 90%;
    }

    p.discription {
        font-size: 1em !important;
    }

    p.other {
        font-size: 0.7em !important;
    }

    /* Position the "next button" to the right */
    .next {
        right: 30px;
        top: 30%;
    }

    .prev {
        left: 30px;
        top: 30%;
    }

    .merlin .prev {
        top: 30%;
    }

    .merlin .next {
        top: 30%;
    }

    .product-slides .next {
        top: 40%;
        right: 20px;
    }

    .product-slides .prev {
        top: 40%;
        left: 20px;
    }
}