
body {
    width: 100%;
    color: #888;
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

#body {
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    background-repeat: no-repeat;
    background-position: right center;
    background-attachment: fixed;
    background-size: 200px;
    justify-content: space-between;
    flex-direction: column;
    flex-wrap: wrap;
    display: flex;
}

.scrollBarFix::-webkit-scrollbar-track {
    width: 0;
    height: 0;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    background: none;
}

.scrollBarFix::-webkit-scrollbar {
    width: 0;
    height: 0;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    background: none;
}

.scrollBarFix::-webkit-scrollbar-thumb {
    width: 0;
    height: 0;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    background: none;
}

.wrapper {
    width: 100%;
    margin: 0 auto;
    max-width: 640px;
}

.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #E22244;
    opacity: 1; /* Firefox */
}

.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #E22244;
}

.form-control::-ms-input-placeholder { /* Microsoft Edge */
    color: #E22244;
}

.hide {
    display: none;
}

.f1 {
    padding: 25px;
    background: #fff;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

    .f1 h3 {
        margin-top: 0;
        margin-bottom: 5px;
        text-transform: uppercase;
    }

.f1-steps {
    overflow: hidden;
    position: relative;
    margin-top: 50px;
}

.f1-progress {
    position: absolute;
    top: 24px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ddd;
}

.f1-progress-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    background: #f35b3f;
}

.f1-step {
    position: relative;
    float: left;
    width: 33.333333%;
    padding: 0 5px;
}

.f1-step-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-top: 4px;
    background: #ddd;
    font-size: 16px;
    color: #fff;
    line-height: 40px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.f1-step.activated .f1-step-icon {
    background: #fff;
    border: 1px solid #f35b3f;
    color: #ab1a2d;
    line-height: 38px;
}

.f1-step.active .f1-step-icon {
    width: 48px;
    height: 48px;
    margin-top: 0;
    background: #ab1a2d;
    font-size: 22px;
    line-height: 48px;
}

.f1-step p {
    color: #ccc;
}

.f1-step.activated p {
    color: #f35b3f;
}

.f1-step.active p {
    color: #f35b3f;
}

.f1 fieldset {
    display: none;
    text-align: left;
}

.f1-buttons {
    text-align: right;
}

.f1 .input-error {
    border-color: #f35b3f;
}

ul#productList {
    padding: 0 0;
    margin: 0 -15px;
    list-style: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

    ul#productList li {
        padding: 0 15px;
        margin-bottom: 12px;
        -ms-flex: 0 0 50%;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
        max-width: 50%;
    }

        ul#productList li .card-input {
            width: 100%;
            height: 100%;
            cursor: pointer;
            overflow: hidden;
            border-radius: 4px;
            border: 1px solid #c2c2c2;
            flex-direction: column;
            display: flex;
        }

        ul#productList li.active .card-input {
            border-color: #ab1a2d;
            border-style:groove;
        }

        ul#productList li .card-input .card-media {
            width: 100%;
            height: 300px;
            padding: 5px 5px;
            background-color: #fff;
            justify-content: center;
            align-items: center;
            display: flex;
        }

            ul#productList li .card-input .card-media img {
                width: 100%;
                object-fit: cover;
            }

        ul#productList li .card-input .card-body {
            width: 100%;
            display: block;
            color: #686868;
            font-weight: 500;
            padding: 10px 5px;
            background-color: #fff;
            border-radius: 0 0 4px 4px;
            border-top: 1px solid #dfdfdf;
        }

#btnStep2 {
    margin-bottom: 15px;
    background-color: #ab1a2d;
}

#resultTable {
    background-color: #f4f4f4;
    border: 1px solid #cccdd1;
}

    #resultTable tr {
        border-color: #cccdd1;
        border-width: 0 0 1px 0;
        box-shadow: none;
        outline: none;
    }

    #resultTable .title {
        text-align: left;
        font-weight: 500;
        border-style: solid;
        border-color: #cccdd1;
        border-width: 0 1px 0 0;
        box-shadow: none;
        outline: none;
    }

    #resultTable .desc {
        font-weight: 400;
        text-align: left;
        box-shadow: none;
        outline: none;
        border: 0;
    }

        #resultTable .desc a {
            text-decoration: none;
        }

.footer {
    width: 100%;
    color: #fff;
    display: block;
    font-size: 14px;
    padding: 12px 0;
    font-weight: 400;
    min-height: 100px;
    background: #AC162C;
}

.fTitle {
    font-size: 20px;
    padding: 0 10px;
    font-weight: 500;
    margin-bottom: 20px;
    display: inline-block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

ul.fContact {
    padding: 0 0;
    display: table;
    list-style: none;
    margin: 0 auto 6px;
}

    ul.fContact li {
        float: left;
        line-height: 100%;
        margin-bottom: 6px;
    }

        ul.fContact li + li {
            margin-left: 6px;
            padding-left: 6px;
            border-left: 1px solid rgba(255, 255, 255, 0.6);
        }

        ul.fContact li a, ul.fContact li a:hover, ul.fContact li a:focus {
            color: inherit;
            text-decoration: none;
        }

.fAddress, .coprightText {
    display: block;
}

.whatsappLink {
    right: 0;
    z-index: 99;
    width: 47px;
    height: 43px;
    bottom: 99px;
    display: none;
    position: fixed;
    cursor: pointer;
    background-color: #0dc152;
    border-radius: 20px 0 0 20px;
}

    .whatsappLink img {
        top: 5px;
        left: 3px;
        width: 30px;
        position: relative;
    }

/***** Media queries *****/
@media (max-width: 991px) {
    #body {
        background-position: right calc(100% - 146px);
        background-size: 150px;
    }
}

@media (max-width: 670px) {
    .hide_670 {
        display: none;
    }

    .whatsappLink {
        display: block;
    }

    #body {
        background-position: right calc(100% - 146px);
        background-size: 120px;
    }

    .wrapper {
        padding: 0 15px;
    }

        .wrapper.padding0 {
            padding: 0 0;
        }

    ul#productList {
        margin: 0 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

        ul#productList li {
            padding: 0 0;
            margin-right: 15px;
            -ms-flex: 0 0 calc(290px - 15px);
            flex: 0 0 calc(290px - 15px);
            max-width: calc(290px - 15px);
        }
}

@media (max-width: 480px) {
    #body {
        background-position: right calc(100% - 192px);
        background-size: 90px;
    }
}
