#product-popup {
    clear: both;
    height: 0;
    overflow: hidden;
    width: 100%;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    position: relative;
    visibility: hidden;
    margin: 0 0 40px 0;
}
#product-popup.active {
    height: 580px;
    visibility: visible;
}
#product-popup .images {
    float: left;
    width: 45%;
    display: block;
    text-align: center;
}
#product-popup .product-description {
    width: 40%;
    float: left;
    padding: 0 20px;
    margin: 120px 0 0 0;
}
#product-popup .store_name {
    font-size: 1.8em;
    font-weight: 300;
    font-family: 'Roboto';
}
#product-popup .view-price {
    display: block;
    font-size: 1.8em;
    margin: 0 0 20px 0;
}
#product-popup .view-price p {
    display: inline-block;
}
#product-popup .dash-price {
    text-decoration: line-through;
    font-weight: 300;
    margin: 0 20px 0 0;
}
#product-popup .price {
    font-weight: 700;
    margin: 0 10px 0 0;
}
#product-popup.promo-price .price {
    background: #F9FF00;
    padding: 2px;
}
#product-popup .off-value {
    font-weight: 700;
}
#product-popup h3 {
    font-weight: 300;
    display: block;
    margin: 10px 0 20px 0;
}
#product-popup .brand_name {
    font-weight: 700;
    display: block;
    margin: 0 0 10px 0;
}
#product-popup .images img {
    max-height: 500px;
}
#product-popup .cta_store {
    display: inline-block;
    color: #fff;
    font-weight: 300;
    font-size: 1.3em;
    padding: .75em 4em .75em 4em;
    background: #000;
    text-align: center;
    margin: 10px 0 20px 0;
    background: #090909 url(../img/store-arrow.svg) no-repeat 85% center;
    background-size: 27px;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}
#product-popup .cta_store:hover {
    background-position: 90%;
    color: #333!important;
    background-color: #F9FF00;
    background-image: url(../img/store-arrow-black.svg);
}
#product-popup .cta_close {
    position: absolute;
    top: 0;
    right: 0;
    margin: 15px 20px;
    border: 1px solid #000;
    width: 70px;
    height: 70px;
    background: transparent;
    border-radius: 70px;
    text-indent: -9999px;
}
#product-popup .cta_close:after {
    position: absolute;
    content: ' ';
    width: 50px;
    height: 1px;
    border-bottom: 1px solid #000;
    display: block;
    left: 10px;
    top: 35px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
#product-popup .cta_close:before {
    position: absolute;
    content: ' ';
    width: 50px;
    height: 1px;
    border-bottom: 1px solid #000;
    display: block;
    left: 10px;
    top: 35px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
#product-popup .cta_close:hover:after {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}
#product-popup .cta_close:hover:before {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}
#product-popup .product-description a:hover {
    color: inherit;
}

#product-popup .price-shipping {
  display: none;
}

#product-popup .extra-description {
    display: block;
    margin: 5px 0 0 0;
    font-size: .79rem;
}

#product-popup .extra-description.sizes {
    text-transform: uppercase;
 }

 #product-popup .extra-description.sizes strong {
 text-transform: capitalize!important;
}

