/*
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.
*/
.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;
    text-align: center;
}
.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_content_only {
    width: 100%;
}
.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;
}

.asp_product_buy_button input::placeholder {
    font-style: italic;
    color: #bbb;
}

.asp_product_buy_button {
    display: block;
}
.asp_post_item_content_only .asp_product_buy_button {
	margin-top: 21px;
	margin-bottom: 32px;
}
.asp_product_buy_btn{
    text-decoration: none;
    font-size: 18px;
    line-height: 1;
    font-family: HelveticaNeue, Arial, sans-serif;
    font-weight: 600;
    padding: 10px 15px;
    min-width: 130px;
    min-height: 32px;
    background: #304269;
    color: #fff !important;
    box-shadow: 0 2px 6px rgba(0,0,0,.18);
    text-transform: none;
    border-radius: 75px;
    border: 0;
}
.asp_product_buy_btn:hover{
    background-color: #1E1E26;
    transform: translateY(-1px);
}
.asp_product_buy_btn:active{
    transform: translateY(0);
}

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