
.product-page-flex-container {
    display: flex;
}

.product-page-description-flex-container {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.product-page__colors-flex-container {
    display: flex;
    flex-wrap: wrap;
}

.description-flex-item {
    margin-top: 25px;
}

.colors-flex-item {
    margin-top: 25px;
}

.size-flex-item {
    margin-top: 25px;
}

.color-box {
    padding: 2px;
}

.product-size-container {
    display: flex;
    flex-direction: column;
}

.hex-color-box {
    flex-grow:1
}

.hex-color-flex-box {
    display: flex;
    width: 30px;
    height: 30px;
    margin: 2px;
    border-style: solid;
    border-width: 1px;
    border-color: black;
}

.firsthalf-hex-color-box {
    width: 14px;
    height: 30px;
}

@media only screen and (max-width: 830px) {
    .product-page-flex-container {
        display: flex;
        flex-direction: column;
    }

    .product-page-description-flex-container {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .color-box {
        height: auto;
        width: 100%;
        padding: 2px;
    }
}

/*temporary place for button, need to move out*/
.btn {
    display:inline-block;
    color:#444;
    border:1px solid #CCC;
    background:#DDD;
    box-shadow: 0 0 5px -1px rgba(0,0,0,0.2);
    cursor:pointer;
    vertical-align:middle;
    padding: 5px;
    text-align: center;
}

.btn-primary {
    display:inline-block;
    color:#444;
    border:1px solid #CCC;
    background:#5cb85c;
    box-shadow: 0 0 5px -1px rgba(0,0,0,0.2);
    cursor:pointer;
    vertical-align:middle;
    padding: 5px;
    text-align: center;
}