/*------------------ 
Frontend related CSS
------------------*/

.custom_product_price.loading {
    font-style: italic !important;
    font-size: 30px !important;
    color:dimgrey !important;
    line-height: 135px;
}

.custom_product_price_container label {
    margin-right: 20px;
    margin-top: 15px;
}

button.add_to_cart_button {
    background: #F69A00;
    border: none;
    color: white;
    text-align: center;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 16pt;
    margin-top: 20px;
}

.custom_product_price {
    text-align: center;
    font-size: 90px;
    font-weight: bold;
    color: #1d3c21;
}

@keyframes loading {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.loader {
    background-color: #f3f3f3;
    border: 1px solid #1d3c21;
    border-radius: 5px;
    width: 100%;
    height: 5px;
    overflow: hidden;
    position: relative;
    margin-top: 70px;
    margin-bottom: 70px;
}

    .loader::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #1d3c21;
        animation-name: loading;
        animation-duration: 2s;
        animation-iteration-count: infinite;
    }

