/*
This CSS file is used to apply styles to the product display output. 
Used by the [asp_product] shortcode. Also used by the individual custom post type (CPT) page of the product.
CSS class names should use dashes. Example: asp-product-description
*/
.asp_product_item {
    display: block;
    border: 1px solid #E7E9EB;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 15px;
}
.asp_product_item_thumbnail img {
    width: 75px;
    height: 75px;
    float: left;
    margin-right: 10px;
    object-fit: cover;
}

.asp_product_name {
    float: left;
    font-size: 24px;
    font-weight: bold;
    line-height: 75px;
}

.asp_product_description {
    margin: 15px 0 15px 0;
    border-bottom: 1px solid #EEEEEE;
}

.asp_price_container {
    font-weight: bold;
    margin: 5px 0px;
}

.asp_price_container .asp_under_price_line {

}

.asp_product_item_amount_input_container, .asp_product_custom_field_input_container, .asp_product_currency_input_container{
    margin: 5px 0 10px 0;
}

.asp_product_item_qty_input_container{
    margin: 10px 0;
}
.asp_product_item_qty_input{
    max-width: 50px;
}

/* Post Item */
.asp_post_item {
    width: 90%;
}
.asp_post_item_top {
    display: block;
}

.asp_post_thumbnail img {
    width: 100%;
    border: 1px solid #e8e4e3;
    padding: 5px;
}

.asp_post_title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Buttons */

.asp_product_buy_button input {
    display: inline-block;
    line-height: 1;
    padding: 8px 10px;
    transition: all .31s ease-in-out;
}

.asp_product_buy_button input::placeholder {
    font-style: italic;
    color: #bbb;
    transition: all .31s ease-in-out;
}

.asp_product_buy_button {
    display: block;
    transition: all .31s ease-in-out;
}

.asp_product_buy_btn{
    text-decoration: none;
    font: inherit;
    padding: 8px 15px;
    text-transform: none;
    height: 48px;
    width: 190px;
    border-radius: 0px;
    vertical-align: middle;
    border: 0;
    font-size: 14px;
    margin-top: -2px;
    transition: all .31s ease-in-out;
}
.asp_product_buy_btn:hover{
    transition: all .31s ease-in-out;
    text-transform: none;
}

.asp_product_buy_btn span {
    vertical-align: middle;
    transition: all .31s ease-in-out;
}

@media (max-width: 500px) {
    .asp_product_buy_btn {
	min-width: 130px;
    }
    .asp-stripe-form {
	text-align: center;
    }
    .asp_price_container {
	text-align: center;
    }
}

.asp_product_buy_btn.blue {
    background: #205461;
    transition: all .31s ease-in-out;
    color: #ffffff !important;
}
.asp_product_buy_btn.blue:hover {
    background: #6ec1e4;
    scale: 1.1;
    transition: all .31s ease-in-out;
}
.asp_product_buy_btn.green {
    background: #b7d770;
    filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#cae285', endColorstr='#9fcb57'); /*  IE */
    background: -webkit-gradient(linear, left top, left bottom, from(#cae285), to(#9fcb57)); /*  WebKit */
    background: -moz-linear-gradient(top,  #cae285, #9fcb57);
    border-color: #adc671 #98b65b #87aa4a;
    color: #2F4014 !important;

    -webkit-box-shadow: 0 1px 1px #d3d3d3, inset 0 1px 0 #d7e9a4;
    -moz-box-shadow: 0 1px 1px #d3d3d3, inset 0 1px 0 #d7e9a4;
    box-shadow: 0 1px 1px #d3d3d3, inset 0 1px 0 #d7e9a4;
    transition: all .31s ease-in-out;
}
.asp_product_buy_btn.green:hover {
    background: #b9d972;
    filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#b8d872', endColorstr='#b9d972'); /*  IE */
    background: -webkit-gradient(linear, left top, left bottom, from(#b8d872), to(#b9d972)); /*  WebKit */
    background: -moz-linear-gradient(top,  #b8d872, #b9d972);
    border-color: #8bb14d #83a648 #7d9e45;

    -webkit-box-shadow: 0 1px 1px #d5d5d5, inset 0 1px 0 #cae295;
    -moz-box-shadow: 0 1px 1px #d5d5d5, inset 0 1px 0 #cae295;
    box-shadow: 0 1px 1px #d5d5d5, inset 0 1px 0 #cae295;
    transition: all .31s ease-in-out;
}