/* Product Size */
.options__item {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.options__item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-right: 10px;
    margin-bottom: 0;
}

.options__item span {
    display: inline-block;
    border: 1px solid #363636;
    color: #363636;
    width: auto;
    padding: 5px 15px;
    border-radius: 3px;
    text-align: center;
    left: 30px;
    margin-right: 5px;
    cursor: pointer;
    font-weight: 500;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    text-transform: uppercase;
}

.options__item span:hover, 
.options__item span.active {
    background: #fff;
    color: #007fa3;
    border-color: #007fa3;
}

.product-cart {
    margin: 0px 0 0;
}

.product-cart .quantity {
    margin: 20px 0 20px;
    position: relative;
    background: #FFF;
    -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.09);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.09);
    width: 90px;
    height: 48px;
    border: 1px solid #363636;
    border-radius: 5px;
    float: left;
    margin-right: 10px;
    text-align: center;
}
.product-cart .quantity img{
    width: 12px;
}
.product-cart .quantity .minus {
    float: left;
    margin-top: 14px;
    margin-left: 6px;
    cursor: pointer;
}

.product-cart .quantity .plus {
    float: right;
    margin-top: 14px;
    margin-right: 6px;
    cursor: pointer;
}

.product-cart .quantity .minus:focus, 
.product-cart .quantity .plus:focus {
    background: transparent;
    color: #363636;
}

.product-cart .quantity input {
    width: 50%;
    margin: 0 auto;
    border: none;
    padding-top: 17%;
    text-align: center;
    font-size: 16px;
    background: #fff;
}

.product-cart .tim-cart-btn {
    margin: 20px 0 20px;
    background: #fff;
    padding: 13px 17px;
    color: #007fa3;
    border-radius: 4px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 18px;
    font-weight: 500;
    border: 1px solid #007fa3;
    font-family: "Changa", sans-serif;
    cursor: pointer;
}

.product-cart .tim-cart-btn i {
    margin-right: 5px;
}

.product-cart .tim-cart-btn:hover {
    background: #007fa3;
    color: #FFF;
}

.product-variation{
    margin-top: 10px;
}
.product-variation a{
    float: left;
    margin-right: 5px;
}