.bam-convert a, .bam-convert p, .bam-convert span, .bam-convert li {
    font-size: 1.8rem;
}

.bam-convert p {
    margin-bottom: 0.75em;
    line-height: 1.4;
}



.bam-convert h1 {
    font-size: 4rem;
    font-weight: bold;
    padding-bottom: 0.5em;
}
@media (max-width: 65em) {
    .bam-convert h1 {
        font-size: 3.4rem;
    }
}
@media (max-width: 50em) {
    .bam-convert h1 {
        font-size: 2.6rem;
    }
}

.bam-convert h2 {
    font-size: 6rem;
    padding-bottom: 0.5em;
    font-weight: 300;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
}

.bam-convert h2 strong{
    font-weight: 700;
    font-family: 'Roboto Condensed', sans-serif;
    display: block;
}

@media (max-width: 65em) {
    .bam-convert h2 {
        font-size: 3.4rem;
    }
}
@media (max-width: 50em) {
    .bam-convert h2 {
        font-size: 2.6rem;
    }
}

.bam-convert h3 {
    font-size: 30px;
    font-weight: 700;
    padding-bottom: 0.75em;
    font-family: 'Playfair Display', serif;
}
@media (max-width: 50em) {
    .bam-convert h3 {
        font-size: 2.2rem;
    }
}

.bam-convert h4 {
    font-size: 3rem;
    font-weight: bold;
    padding-bottom: 0.75em;
    font-family: 'Playfair Display', serif;
}
@media (max-width: 50em) {
    .bam-convert h4 {
        font-size: 2.2rem;
    }
}

.bam-convert .btn {
    margin: 1rem 0;
}
@media (max-width: 50em) {
    .bam-convert .btn {
        text-align: center;
    }
}
.bam-convert .btn a {
    display: inline-block;
    background-color: #fff;
    color: #292828;
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 1.25rem 5rem 1.25rem 3rem;
    border-radius: 0.25rem;
    position: relative;
    line-height: 1;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.bam-convert .btn a::after {
    content: "";
    display: block;
    padding-left: 0.5rem;
    width: 2.5rem;
    height: 1.3rem;
    position: absolute;
    border-left: 1px solid #292828;
    background-image: url(../images/arrow.svg);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    right: 0.5rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.bam-convert .btn a:hover {
    background-color: #d1e5a1;
}
.bam-convert .btn a:hover::after {
    -webkit-transform: translate(0.25rem, -50%);
    transform: translate(0.25rem, -50%);
    border-left: 1px solid transparent;
}
.bam-convert .btn-primary a {
    background-color: #CAB180;
}



::selection {
    color: #fff;
    background: #CAB180;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 62.5%;
}
@media (max-width: 87.5em) {
    html {
        font-size: 55%;
    }
}

body {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    line-height: 1.2;
    color: #292828;
    background-color: #F5F5F5;
}

a:link,
a:visited {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}


.mobile-only {
    display: none;
}
@media (max-width: 50em) {
    .mobile-only {
        display: block;
    }
}

@media (max-width: 50em) {
    .desktop-only {
        display: none !important;
    }
}
/*
.content-before {
    height: 10rem;
}*/

.bc-container {
    max-width: 138rem;
    margin: 0 auto;
    padding-left: 4rem;
    padding-right: 4rem;
}
@media (max-width: 50em) {
    .bc-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.bc-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3rem;
}
@media (max-width: 50em) {
    .bc-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.bc-row.bc-row-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media (max-width: 50em) {
    .bc-row .bc-mobile-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
}
.bc-row .bc-col-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    width: 50%;
}
.bc-row .bc-col-4 {
    -ms-flex-preferred-size: 33.33%;
    flex-basis: 33.33%;
    width: 33.33%;
}
.bc-row .bc-col-8 {
    -ms-flex-preferred-size: 66.666%;
    flex-basis: 66.666%;
    width: 66.666%;
}
@media (max-width: 50em) {
    .bc-row .bc-col-6, .bc-row .bc-col-4, .bc-row .bc-col-8 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        width: 100%;
    }
}

.a-center {
    text-align: center;
}

.bc-margin {
    margin-top: 3rem;
}

.bc-hero {
    background-color: #292828;
    padding: 3rem 0;
}
.bc-hero h1, .bc-hero p {
    color: #fff;
}
.bc-hero .bc-text {
    padding: 4rem 0;
}
.bc-hero .bc-text p {
    font-size: 2.2rem;
    font-weight: 300;
}

.bc-hero .bc-text strong{
    font-weight: 700;
}

@media (max-width: 50em) {
    .bc-hero .bc-text p {
        font-size: 1.8rem;
    }
}

.bc-section {
    padding: 6rem 0;
}
.bc-section .bc-row {
    padding: 3rem 0;
}
@media (max-width: 50em) {
    .bc-section .bc-text-banner {
        text-align: center;
        background-color: #e8e8e8;
        margin-bottom: 3rem;
    }
}
.bc-section .bc-text-banner p {
    font-size: 2rem;
}
.bc-section .bc-text-banner a {
    color: #CAB180;
}
.bc-section .bc-text-banner a:hover {
    text-decoration: underline;
}

.bc-coverter {
    padding: 6rem 0;
}
@media (max-width: 50em) {
    .bc-coverter {
        padding: 3rem 0 6rem 0;
    }
}
.bc-coverter .bc-coverter-left,
.bc-coverter .bc-coverter-right {
    background-color: #fff;
    padding: 5rem;
}
@media (max-width: 50em) {
    .bc-coverter .bc-coverter-left,
    .bc-coverter .bc-coverter-right {
        padding: 3rem 2rem;
    }
}
.bc-coverter .ingredient-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
}
.bc-coverter .ingredient-name, .bc-coverter .ingredient-quantity, .bc-coverter .ingredient-unit {
    margin-right: 10px;
    padding: 1.5rem;
    border: 1px solid #D8D8D8;
    border-radius: 8px;
}
@media (max-width: 50em) {
    .bc-coverter .ingredient-name, .bc-coverter .ingredient-quantity, .bc-coverter .ingredient-unit {
        font-size: 1.3rem;
    }
}
.bc-coverter .ingredient-name::-webkit-input-placeholder, .bc-coverter .ingredient-quantity::-webkit-input-placeholder, .bc-coverter .ingredient-unit::-webkit-input-placeholder {
    color: #D8D8D8;
    opacity: 1; /* Firefox */
}
.bc-coverter .ingredient-name::-moz-placeholder, .bc-coverter .ingredient-quantity::-moz-placeholder, .bc-coverter .ingredient-unit::-moz-placeholder {
    color: #D8D8D8;
    opacity: 1; /* Firefox */
}
.bc-coverter .ingredient-name:-ms-input-placeholder, .bc-coverter .ingredient-quantity:-ms-input-placeholder, .bc-coverter .ingredient-unit:-ms-input-placeholder {
    color: #D8D8D8;
    opacity: 1; /* Firefox */
}
.bc-coverter .ingredient-name::-ms-input-placeholder, .bc-coverter .ingredient-quantity::-ms-input-placeholder, .bc-coverter .ingredient-unit::-ms-input-placeholder {
    color: #D8D8D8;
    opacity: 1; /* Firefox */
}
.bc-coverter .ingredient-name::placeholder, .bc-coverter .ingredient-quantity::placeholder, .bc-coverter .ingredient-unit::placeholder {
    color: #D8D8D8;
    opacity: 1; /* Firefox */
}
.bc-coverter .ingredient-name {
    width: 50%;
}
.bc-coverter .ingredient-quantity {
    width: 25%;
}
.bc-coverter .ingredient-unit {
    width: 25%;
}
.bc-coverter .remove-ingredient {
    position: absolute;
    top: 1.25rem;
    right: -2rem;
    color: #292828;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #D8D8D8;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 2rem;
    line-height: 1.5rem;
    cursor: pointer;
    opacity: 1;
}
@media (max-width: 50em) {
    .bc-coverter .remove-ingredient {
        right: -1.5rem;
        width: 2rem;
        height: 2rem;
        line-height: 2rem;
    }
}
.bc-coverter .remove-ingredient:hover {
    opacity: 1;
}
.bc-coverter .bc-calculate-button {
    margin-top: 1.5rem;
    display: block;
    width: auto;
    font-weight: bold;
    text-transform: uppercase;
    padding: 1.5rem 6rem 1.5rem 6rem;
    background-color: #CAB180;
    border-radius: 0.5rem;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    position: relative;
    margin: 5rem auto 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.bc-coverter .bc-calculate-button:hover {
    background-color: #b09064;
}
.bc-coverter .bc-calculate-button img {
    margin-right: 2rem;
}
.bc-coverter .bc-calculate-button span {
    font-size: 1.8rem;
    font-weight: bold;
    color: #000;
}
.bc-coverter .add-button {
    margin-top: 1.5rem;
    display: block;
    width: auto;
    font-weight: bold;
    text-transform: uppercase;
    padding: 1.25rem 4rem 1.25rem 2rem;
    background-color: #CAB180;
    color: #292828;
    border-radius: 0.5rem;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    position: relative;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.bc-coverter .add-button::after {
    content: "";
    display: block;
    padding-left: 0.5rem;
    width: 2.5rem;
    height: 1.3rem;
    position: absolute;
    border-left: 1px solid #292828;
    background-image: url(../images/icons/right-arrow.svg);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    right: 0.5rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.bc-coverter .add-button:hover {
    background-color: #b09064;
}
.bc-coverter .bc-form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.bc-coverter .bc-form-group label {
    font-size: 1.5rem;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.bc-coverter .bc-form-group label {
    margin-right: 10px;
}
.bc-coverter input[type=radio] {
    margin-right: 5px;
}
.bc-coverter .bc-dimension-input {
    width: 80px;
    padding: 8px;
    margin: 0 5px;
    border: 1px solid #D8D8D8;
    border-radius: 4px;
}
.bc-coverter .bc-dimension-input::-webkit-input-placeholder {
    color: #D8D8D8;
    opacity: 1; /* Firefox */
}
.bc-coverter .bc-dimension-input::-moz-placeholder {
    color: #D8D8D8;
    opacity: 1; /* Firefox */
}
.bc-coverter .bc-dimension-input:-ms-input-placeholder {
    color: #D8D8D8;
    opacity: 1; /* Firefox */
}
.bc-coverter .bc-dimension-input::-ms-input-placeholder {
    color: #D8D8D8;
    opacity: 1; /* Firefox */
}
.bc-coverter .bc-dimension-input::placeholder {
    color: #D8D8D8;
    opacity: 1; /* Firefox */
}
.bc-coverter .bc-units, .bc-coverter span {
    font-size: 1.4rem;
    color: #555;
}
@media (max-width: 50em) {
    .bc-coverter .bc-units, .bc-coverter span {
        font-size: 1.3rem;
    }
}
.bc-coverter input[type=number]:focus {
    outline: none;
    border-color: #c5a471;
}
.bc-coverter input[aria-label=dolžina], .bc-coverter input[aria-label=širina] {
    margin-right: 5px;
}
.bc-coverter input[type=radio] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; /* Remove the default radio button */
    width: 20px;
    height: 20px;
    border: 1px solid #a7a7a7;
    border-radius: 50%; /* Make it a circle */
    position: relative;
    cursor: pointer;
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
    margin-right: 1rem;
}
.bc-coverter input[type=radio]:checked {
    background-color: #fff; /* Your custom color */
}
.bc-coverter input[type=radio]:checked::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 10px;
    height: 10px;
    background-color: #292828; /* Color of the "dot" inside */
    border-radius: 50%;
}

.bc-result {
    display: none;
}
.bc-result .bc-result-text {
    background-color: #292828;
    padding: 4rem;
    height: 100%;
}
.bc-result .bc-result-text h3, .bc-result .bc-result-text p, .bc-result .bc-result-text span {
    color: #fff;
}
.bc-result .bc-result-text .bc-result-table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #E6E6E6;
}
.bc-result .bc-result-text .bc-result-table:last-of-type {
    margin-bottom: 3rem;
}
.bc-result .bc-result-text .bc-result-table span {
    padding: 1rem;
    color: #E6E6E6;
    font-size: 1.6rem;
}
.bc-result .bc-result-text .bc-result-table span:first-of-type {
    width: 33.3333%;
    border-right: 1px solid #E6E6E6;
    text-align: right;
}
.bc-result .bc-result-text .bc-result-table span:last-of-type {
    width: 66.6666%;
}
.bc-result .bc-result-standard {
    background-color: #fff;
    padding: 4rem;
}
.bc-result .bc-result-standard h3 span {
    font-weight: normal;
}
.bc-result .bc-result-standard .table-container {
    padding: 2rem;
}
@media (max-width: 50em) {
    .bc-result .bc-result-standard .table-container {
        padding: 0;
    }
}
.bc-result .bc-result-standard .table-container table {
    margin: 0 auto;
}
.bc-result .bc-result-standard .table-container table td {
    padding: 1rem;
    font-size: 1.6rem;
    border-bottom: 1px solid #E6E6E6;
}
.bc-result .bc-result-standard .table-container table td:first-of-type {
    border-right: 1px solid #E6E6E6;
}
.bc-result .bc-result-extra {
    font-size: 1.4rem;
    text-align: center;
    font-style: italic;
    margin-top: 3rem;
}
.bc-result .bc-btn-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.bc-result .bc-btn-white {
    background-color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 2rem;
    cursor: pointer;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.bc-result .bc-btn-white:hover {
    background-color: #eeeeee;
}
.bc-result .bc-btn-white span {
    color: #000;
    font-size: 1.4rem;
    font-weight: bold;
}
.bc-result .bc-btn-white img {
    margin-left: 1rem;
}

.bc-products {
    padding: 5rem 0;
}
@media (max-width: 50em) {
    .bc-products {
        padding-top: 0;
    }
}
.bc-products .bc-products-title-main {
    text-align: center;
    padding-bottom: 8rem;
}
@media (max-width: 50em) {
    .bc-products .bc-products-title-main {
        padding-bottom: 5rem;
        text-align: left;
    }
}
.bc-products .bc-products-item {
    background-color: #292828;
    padding: 3rem 3rem 4rem 3rem;
    color: #fff;
    position: relative;
    display: block;
}
.bc-products .bc-products-item .bc-products-item-top {
    text-align: center;
    padding-bottom: 2rem;
}
.bc-products .bc-products-item .bc-products-item-top .bc-products-img {
    margin-bottom: 3rem;
    height: 200px;
    display: block;
    margin: 0 auto;
}
.bc-products .bc-products-item .bc-products-item-top .bc-products-reviws {
    font-size: 1.2rem;
    margin-top: 1rem;
}
.bc-products .bc-products-item p, .bc-products .bc-products-item h3, .bc-products .bc-products-item h4 {
    color: #fff;
}
.bc-products .bc-products-item .bc-products-author {
    font-weight: 300;
    font-size: 1.4rem;
}
.bc-products .bc-products-item .bc-products-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}
.bc-products .bc-products-item .bc-products-price {
    font-size: 1.6rem;
}
.bc-products .bc-products-item .bc-products-price .bc-products-price-old {
    opacity: 0.5;
    text-decoration: line-through;
    font-weight: 300;
    margin-bottom: 0.5rem;
}
.bc-products .bc-products-item .bc-add-to-cart {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.bc-products .bc-products-item .bc-add-to-cart:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}


.single_section h2.section-title{
    background: none;
}


.single_section h2.section-title span{
    display: block;
}


.data_error{
    display: none;
    color: red;
    /* text-align: center; */
    text-decoration: underline;
    margin-top: 20px;
}


.single_section h2.section-title{
    margin-bottom: 40px;
    font-size: 60px;
}



.single_section h2.section-title b, .single_section h2.section-title strong{
    font-weight: 800;
    font-family: 'Roboto Condensed', sans-serif;
    display: block;

}

.products{
    padding-top: 0px;
}






@media screen and (max-width: 768px){
    .bc-coverter .bc-calculate-button{
        width: 100%;
    }


    .bc-coverter .ingredient-row{
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .bc-coverter .ingredient-name {
        width: 80%;
        margin-bottom: 5px;
    }
    
    .bc-coverter .ingredient-quantity{
        width: 30%;
    }
    
    .bc-coverter .ingredient-unit{
        width: 30%;
    }
    
    .bc-coverter .remove-ingredient{
        position: relative;
        height: 44px;
        width: 44px;
        margin: 0px;
        padding: 0px;
        right: 0;
        margin-top: -22px;
        font-size: 36px;
        border: 1px solid #D8D8D8;
        color: #292828;
        opacity: 1;
    }
}

