.container {

}

.rangeLabel {
    width: 150px;
}
.rangeControl {
    width: 350px;
}
.rangeLock {
    opacity: .2;
}
.rangeNote {
    text-align: center;
    height: 50px;
}
.strategyNote {
    margin-left: 10px;
}
input {
    width: 200px;
    font-size: 12px;
}
select {
    width: 200px;
    font-size: 12px;
}
.checkbox {
    width: unset;
}
.checkboxCell {
    text-align: right;
}

/* Columns */
.left-column {
    width: 50%;
    position: relative;
    height: 300px;
}

.right-column {
    background-color: aliceblue;
    padding: 10px;
    width: 50%;
}

.left-column-record {
    background-color: aliceblue;
    padding: 10px;
    width: 50%;
}

.right-column-record  {
    background-color: aliceblue;
    padding: 10px;
    width: 50%;
}

.two-columns {
    width: 100%;
}

/* Left Column */
.left-column img {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 5px;
}

.left-column img.active {
    opacity: 1;
}

/* Right Column */

/* Product Description */
.product-description {
    border-bottom: 1px solid #E1E8EE;
    margin-bottom: 20px;
}

.product-description span {
    font-size: 12px;
    color: #358ED7;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
}

.product-description h1 {
    font-weight: 300;
    font-size: 52px;
    color: #43484D;
    letter-spacing: -2px;
}

.product-description p {
    font-size: 16px;
    font-weight: 300;
    color: #86939E;
    line-height: 24px;
}

/* Product Configuration */
.product-color span,
.cable-config span {
    font-size: 12px;
    font-weight: 400;
    color: #86939E;
    margin-bottom: 20px;
    display: inline-block;
}

.cable-config p {
    font-size: 12px;
    font-weight: 400;
    color: #86939E;
    margin-bottom: 5px;
}

/* Product Color */
.product-color {
    margin-bottom: 30px;
}

.color-choose div {
    display: inline-block;
}

.color-choose input[type="radio"] {
    display: none;
}

.color-choose input[type="radio"] + label span {
    display: inline-block;
    width: 50px;
    height: 50px;
    margin: -1px 4px 0 0;
    vertical-align: middle;
    cursor: pointer;
}

.color-choose input[type="radio"] + label span {
    border: 2px solid #FFFFFF;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.33);
}

.color-choose input[type="radio"]:checked + label span {
    border: 2px solid #000000;
}

/* Cable Configuration */
.cable-choose {
    margin-bottom: 20px;
}

.cable-choose button {
    border: 2px solid #E1E8EE;
    border-radius: 6px;
    padding: 13px 20px;
    font-size: 14px;
    color: #5E6977;
    background-color: #fff;
    cursor: pointer;
    transition: all .5s;
}

.cable-choose button:hover,
.cable-choose button:active,
.cable-choose button:focus {
    border: 2px solid #86939E;
    outline: none;
}

.cable-config {
    border-bottom: 1px solid #E1E8EE;
    margin-bottom: 20px;
}

.cable-config span {
    font-size: 12px;
    color: #358ED7;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
}

.cable-config a {
    color: #358ED7;
    text-decoration: none;
    font-size: 12px;
    position: relative;
    margin: 10px 0;
    display: inline-block;
}

.rangeTotal{
    color: #358ED7;
    font-size: 12px;
    float: right;
    margin-right: 10px;
}

/* Product Price */
.product-price {
    display: flex;
    height: 250px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.product-price span {
    font-size: 26px;
    font-weight: 300;
    color: #43474D;
    margin-right: 20px;
}

table#stable-table {
    border-collapse: collapse;
    font-weight: 100;
    background: #333;
    color: #fff;
    text-rendering: optimizeLegibility;
    border-radius: 5px;
    width: 100%;
}

table#stable-table thead th {
    font-weight: 600;
}

table#stable-table thead th,
table#stable-table tbody td {
    padding: .8rem;
    font-size: 12px;
    text-align: left;
}

table#stable-table tbody td {
    padding: .8rem;
    font-size: 12px;
    color: #444;
    background: #eee;
}

table#stable-table tbody tr:not(:last-child) {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.stable-table-image {
    width: 100px;
    background-color: aliceblue;
    padding: 5px;
}

.profile-history-extra-row {
    display:none;
}

/* Responsive */
@media (max-width: 940px) {
    .container {
        flex-direction: column;
        margin-top: 60px;
    }

    .left-column,
    .right-column {
        width: 100%;
    }

    .left-column img {
        width: 200px;
        right: 0;
        top: -65px;
        left: initial;
    }
}

@media screen and (max-width: 600px) {
    table#stable-table caption {
        background-image: none;
    }

    table#stable-table thead {
        display: none;
    }

    table#stable-table tbody td {
        display: block;
        padding: .6rem;
    }

    table#stable-table tbody tr td:first-child {
        background: #333;
        color: #fff;
    }

    table#stable-table tbody td:before {
        content: attr(data-th);
        font-weight: bold;
        display: inline-block;
        width: 6rem;
    }
}

@media (max-width: 535px) {
    .left-column img {
        width: 100px;
        top: -65px;
    }
}
