/* sfdc === screen-free digital cameras */

body {
    background-color: white;
}

/* PROD CON */
/* PROD CON */
.sfdc-prodCon {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100vw;
    /* background-color: white; */
    margin-bottom: 50px;
}

.sfdc-imgsCon {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    width: 50%;
    padding: 24px 10px;
    /* border: 1px solid blue; */
}

.sfdc-imgsCon > .whiteCon {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    /* border: 1px solid green; */
    width: fit-content;
    max-width: 500px;
}

.prodSlider-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* border: 1px solid black; */
    border-radius: 24px;
    aspect-ratio: 1 / 1;
    /* max-width: 588px; */
    width: 100%;
    /* overflow: visible; */
    overflow: hidden;
    background-color: var(--flamingo-pink);
}

.prodSlider {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    transition: all .25s ease-out;
}
/* transform: translateX() SET WITH JS BECUASE WIDTH OF IMGS ARE DYNAMIC */

.prodSlider-imgCon {
    aspect-ratio: 1 / 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid blue; */

}

.prodSlider-imgCon > img {
    display: block;
    aspect-ratio: 1 / 1;
    width: 100%;
    height: 100%;
    /* border-radius: 15px; */
}

.prodSlider-imgCon > video {
    display: block;
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    /* border-radius: 15px; */
}
.prodSlider-imgCon > video[poster] {
    object-fit: cover; 
}



.leftArrowCon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    aspect-ratio: 1 / 1;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid black;
    background-color: rgb(45, 45, 44);
    cursor: pointer;
}

.leftArrowCon > svg {
    width: 100%;
    height: 100%;
    user-select: none;
}

.rightArrowCon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    aspect-ratio: 1 / 1;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid black;
    background-color: rgb(45, 45, 44);
    cursor: pointer;
}

.rightArrowCon > svg {
    width: 100%;
    height: 100%;
    user-select: none;
}



.prodSlider-imgBtns-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.prodSlider-imgBtns-mainCon {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid black; */
}

.prodSlider-imgBtnCon {
    aspect-ratio: 1 / 1;
    width: calc(100% / 6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.prodSlider-imgBtnCon > img {
    display: block;
    aspect-ratio: 1 / 1;
    width: 80%;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.prodSlider-imgBtnCon[data-selected="true"] > img {
    border: 1px solid black;
}

.prodSlider-imgBtnCon > video {
    display: block;
    aspect-ratio: 1 / 1;
    width: 80%;
    border-radius: 5px;
    border: none;
}



/* COMMENT BOX */
/* COMMENT BOX */

.commentSlider-wrapper-overflow-vis {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: fit-content;
}

.commentSlider-wrapper-overflow-vis:hover .commentBox-leftArrowCon,
.commentSlider-wrapper-overflow-vis:hover .commentBox-rightArrowCon {
        opacity: 1;
}

.commentBox-leftArrowCon,
.commentBox-rightArrowCon {
    --cb-arrowCon-w: 25px;
    --cv-arrowSVG-w: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    border: 1px solid black;
    background-color: var(--cs-yellow);
    aspect-ratio: 1 / 1;
    width: var(--cb-arrowCon-w);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all .2s ease;
    cursor: pointer;
    user-select: none;
}

.commentBox-leftArrowCon:hover,
.commentBox-rightArrowCon:hover {
    width: calc(var(--cb-arrowCon-w) + 2px);
}

.commentBox-leftArrowCon > svg,
.commentBox-rightArrowCon > svg {
    aspect-ratio: 1 / 1;
    /* width: 80%; */
    width: var(--cv-arrowSVG-w);
    transition: all .2s ease;

}
.commentBox-leftArrowCon:hover svg,
.commentBox-rightArrowCon:hover svg {
    width: calc(var(--cv-arrowSVG-w) + 2px);
}

.commentBox-leftArrowCon {
    left: calc(var(--cb-arrowCon-w) * -.5);
    /* left: -15px; */
}
.commentBox-rightArrowCon {
    right: calc(var(--cb-arrowCon-w) * -.5);
    /* right: -15px; */
}


.commentSlider-wrapper {
    position: relative;
    width: 100%;
    height: fit-content;
    /* border: 1px solid blue; */
    margin-top: 20px;
    /* overflow: visible; */
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.commentSlider {
    position: absolute;
    left: 0;
    top: 0;
    width: fit-content;
    height: fit-content;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    /* border: 1px solid red; */
    transition: all .25s ease-out;

}

.commentBoxCon {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: var(--cs-gray);
    /* border: 1px solid blue; */
    border-radius: 5px;
    padding: 10px 20px;
    /* height: 0;
    width: 0; */
    /* width: var(--width, auto);
    height: var(--height, auto); */
}

.commentBox-nameCon {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0 10px;
    margin: 0 0 10px 0;
}

.commentBox-nameCircle {
    aspect-ratio: 1 / 1;
    width: 25px;
    background-color: rgb(31, 61, 85);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.commentBox-nameCircle > p {
    color: white;
}

.commentBox-commentCon > p {
    line-height: 1.25;
}






/* INFO CON */
/* INFO CON */
.sfdc-infoCon {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 50%;
    padding: 25px 10px;
    /* border: 1px solid blue; */
}

.sfdc-infoCon > .grayCon {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 500px;
    background-color: var(--cs-gray);
    padding: 24px;
    border-radius: 25px;
}

.sfdc-s-reviews-banner {
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.sfdc-s-reviews-banner > div > a {
    text-decoration: none;
    color: black;
}
.sfdc-s-reviews-banner > div > a:hover {
    text-decoration: underline;
}

.stars-flexCon {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-right: 10px;
}

.starCon {
    aspect-ratio: 1 / 1;
    width: 15px;
}

.starCon > svg {
    aspect-ratio: 1 / 1;
    width: 100%;
    margin-right: 4px;
}

.prodTitle {
    font-size: 32px;
    margin: 0 0 10px 0;
}

.prodSubtitle {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 20px 0;
}

.sfdc-price-p {
    font-size: 25px;
     margin: 0 0 20px 0;
}

.sfdc-noScreenCon,
.sfdc-pointShootCon,
.sfdc-fiveHundredPhotosCon,
.sfdc-reusableRechargeableCon {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 0 15px 0;
}

.sfdc-noScreenCon > svg,
.sfdc-pointShootCon > svg,
.sfdc-fiveHundredPhotosCon > svg,
.sfdc-reusableRechargeableCon > svg {
    aspect-ratio: 1 / 1;
    width: 25px;
    margin: 0 15px 0 0;
}

.sfdc-selectColor-mainCon {
    margin: 20px 0 20px 0;
}

.sfdc-selectColor-mainCon > p > .span2 {
    color: gray;
}


.colorCircs-flexCon {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0 10px;
    margin: 10px 0;
}

.colorCirc {
    aspect-ratio: 1 / 1;
    width: 30px;
    border-radius: 50%;
    cursor: pointer;
}
.colorCirc.selected {
    border: 2px solid black;
}

.colorCirc.chestnut-brown {
    background-color: var(--chestnut-brown);
}
.colorCirc.stealth-black {
    background-color: var(--stealth-black);
}
.colorCirc.forest-green {
    background-color: var(--forest-green);
}
.colorCirc.sunbeam-yellow {
    background-color: var(--sunbeam-yellow);
}
.colorCirc.flamingo-pink {
    background-color: var(--flamingo-pink);
}
.colorCirc.crimson-red {
    background-color: var(--crimson-red);
}
.colorCirc.midnight-blue {
    background-color: var(--midnight-blue);
}
.colorCirc.denim {
    background-color: var(--denim);
}

.sfdc-quantCart-mainCon {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    margin-bottom: 20px;
}

.sfdc-quant-input {
    display: block;
    height: 40px;
    width: 80px;
    border-radius: 0;
    border: none;
    background-color: white;
    text-align: center;
}

.sfdc-quant-minusBtn {
    border-radius: 10px 0 0 10px;
    cursor: pointer;

}
.sfdc-quant-plusBtn {
    border-radius: 0 10px 10px 0;
    cursor: pointer;
}

.sfdc-quant-minusBtn,
.sfdc-quant-plusBtn {
    display: block;
    width: 30px;
    background-color: white;
    border: none;
}

.sfdc-quant-minusBtn > svg,
.sfdc-quant-plusBtn > svg {
    aspect-ratio: 1 / 1;
    width: 80%;
}

.sfdc-addToCartBtn {
    --totalQuantWidth: 140px;
    --marginLeft: 10px;
    /* --gapRight: 20px; */
    --gapRight: 0px;
    margin-left: var(--marginLeft);
    display: block;
    /* margin-left: 10px; */
    width: calc(100% - var(--totalQuantWidth) - var(--marginLeft) - var(--gapRight));
    /* max-width: 300px; */
    border-radius: 10px;
    border: none;
    /* border: 1px solid black; */
    background-color: var(--sunbeam-yellow);

    cursor: pointer;
    transition: all .2s ease;

    /* temp unavailable */
    background-color: rgba(254, 206, 17, .2);
    color: rgba(0, 0, 0, .2);
    cursor: not-allowed;
    min-width: 135px;
    height: 40px;
    min-height: 40px;
}

/* temp unavailable */
/* .sfdc-addToCartBtn:hover {
    background-color: black;
    color: var(--sunbeam-yellow);
} */



.sfdc-prodInfo-dropDownBox {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    /* border-top: 1px solid gray; */
    border-bottom: 1px solid gray;
    padding: 15px 0;
    position: relative;
}
.sfdc-prodInfo-dropDownBox.one {
    border-top: 1px solid gray;
}

.sfdc-prodInfo-dropDownBox > .titleCon {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 15px; */
}

.sfdc-prodInfo-dropDownBox > .titleCon > p {
    font-size: 18px;
}

.sfdc-prodInfo-dropDownBox > .titleCon > .dropDownBtn {
    aspect-ratio: 1 / 1;
    width: 18px;
    cursor: pointer;
}

.sfdc-prodInfo-dropDownBox > .titleCon > .dropDownBtn > svg {
    aspect-ratio: 1 / 1;
    width: 100%;
}

.sfdc-prodInfo-collapsibleCon {
    overflow: hidden;
    max-height: 0px;
    transition: all .5s ease;
}

.sfdc-prodInfo-collapsibleCon.vis {
    max-height: 500px; 
}

.pseudo-topMargin {
    height: 20px;
}

.sfdc-prodInfo-collapsibleCon > ul {
    padding-left: 20px;
    line-height: 1.5;
}


.sfdc-prodInfo-collapsibleCon > p {
    font-size: 12px;
    line-height: 1.5;
}



.dc-sec {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: white;
}

.dc-sec > h1 {
    margin: 0 0 20px 0;
    text-align: center;
}

.dc-imgCon {
    /* aspect-ratio: 205 / 104; */
    aspect-ratio: 2344 / 1275;
    width: 80%;
    /* border: 1px solid black; */
    border-radius: 15px;
    overflow: hidden;
    margin: 40px;
}

.dc-imgCon > img {
    display: block;
    width: 100%;
    height: 100%;
}


footer {
    background-color: var(--cs-gray);
}

@media only screen and (max-width: 835px) {

    .commentSlider-wrapper-overflow-vis > .commentBox-leftArrowCon,
    .commentSlider-wrapper-overflow-vis > .commentBox-rightArrowCon {
            opacity: 1;
    }

    .sfdc-prodCon {
        /* display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100vw;
        margin-bottom: 50px; */
        flex-direction: column;
    }

    .sfdc-imgsCon {
        /* display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-end;
        width: 50%;
        padding: 24px 10px; */
        width: 100%;
        align-items: center;
    }
    .sfdc-imgsCon > .whiteCon {
        /* display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        width: fit-content;
        max-width: 500px; */
        width: 90%;
        max-width: 90%;
    }
    .commentSlider-wrapper-overflow-vis {
        /* position: relative;
        width: 100%;
        max-width: 400px;
        height: fit-content; */
        max-width: 90%;
    }


    .sfdc-infoCon {
        /* display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: 50%;
        padding: 25px 10px; */
        width: 100%;
        align-items: center;
    }
    
    .sfdc-infoCon > .grayCon {
        /* display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        max-width: 500px;
        background-color: var(--cs-gray);
        padding: 24px;
        border-radius: 25px; */
        max-width: 90%;
    }

    .colorCircs-flexCon {
        /* display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: nowrap;
        gap: 0 10px;
        margin: 10px 0; */
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    /* form */
    .d-flex {
        width: 100%;
    }

    .sfdc-quantCart-mainCon {
        /* display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: stretch;
        width: 100%;
        margin-bottom: 20px; */
        flex-wrap: wrap;
        gap: 10px 0;
        justify-content: center;
    }



    /* WHY CHOOSE CAMP SNAP SEC */
    .dc-imgCon {
        margin: 40px 0 0 0;
        width: 100%;
    }


}

@media only screen and (max-width: 390px) {
    .sfdc-addToCartBtn {
        margin: 0;
    }
}
