﻿#single-container {
    width: 100%;
    text-align: center;
}

#single-box {
    margin: auto;
    width: 700px;
    background-color: #fff;
    border: 2px solid black;
    border-radius: 30px;
    padding: 0;
}

#single-header {
    width: 100%;
    height: 50px;
    
    text-align: center;
    padding-top: 20px;
    border-radius: 27px 27px 0 0;
}

    #single-header h6 {
        
        margin: 0;
        font-size: 1.3rem;
    }

#single-content {
    width: 100%;
    
}

#single-text {
    float: right;
    
    width: 65%;
    height: 100%;
}

#single-img {
    float: left;
    width: 35%;
    height: 100%;
}

#single-footer {
    width: 100%;
    height: 60px;
    background-color: #3ebb4a;
    text-align: center;
    padding-top: 5px;
    border-radius: 0 0 27px 27px;
}

#shopping-btn {
    color: black;
    text-decoration: none;
}

    #shopping-btn:hover {
        color: rgb(245, 244, 244);
        text-decoration: none;
    }

#old-price {
    text-decoration: line-through;
}





/*.......................pick color....................*/

.colbutton {
    background: #cfe7fa;
    border: 1px solid #6393c1;
    border-radius: 40px;
    box-shadow: inset 1px 1px 0 rgba(255, 255, 255, .5), inset -1px -1px 0 rgba(0, 0, 0, .5);
    cursor: pointer;
    display: inline-block;
    margin-bottom: 10px;
    font: 15px Arial, Verdana, Geneva, sans-serif;
    line-height: 41px;
    width: 42px;
    height: 42px;
    text-align: center;
}

    .colbutton:hover .colinner {
        opacity: .5;
    }

    .colbutton input {
        display: none;
    }

        .colbutton input:checked + .colouter .colinner {
            opacity: 1;
        }

    .colbutton .colouter {
        border: 1px solid black;
        border-radius: 20px;
        display: block;
        float: left;
        height: 22px;
        margin: 10px;
        width: 21px;
    }

    .colbutton .colinner {
        background: #e4f5fc;
        border-radius: 20px;
        display: block;
        height: 19px;
        margin: 1px;
        opacity: 0;
        transition: opacity .5s;
        width: 19px;
    }

@media only screen and (max-width: 700px) {
    #single-box {
        margin: auto;
        width: 400px;
        background-color: #fff;
        border: 2px solid black;
        padding: 0;
    }

    #single-content {
        width: 100%;
        height: fit-content;
    }

    #single-text {
        float: none;
        margin: auto;
        background-color: #ffffff;
        width: 100;
    }

    #single-img {
        margin: auto;
        float: none;
        width: 100%;
        height: 150px;
    }
}

@media only screen and (max-width: 400px) {
    #single-box {
        margin: auto;
        width: 310px;
        background-color: #fff;
        border: 2px solid black;
        padding: 0;
    }

    #single-content {
        width: 100%;
        height: fit-content;
    }

    #single-text {
        float: none;
        margin: auto;
        background-color: #ffffff;
        width: 100;
    }

    #single-img {
        margin: auto;
        float: none;
        width: 100%;
        height: 150px;
    }
}
