@font-face {
    font-family: 'Effra Light';
    src: url('../../fonts/effra_std_lt-webfont.woff2') format('woff2'),
    url('../../fonts/effra_std_lt-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'Effra';
    src: url('../../fonts/effra_std_rg-webfont.woff2') format('woff2'),
    url('../../fonts/effra_std_rg-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'Effra Bold';
    src: url('../../fonts/effra_std_bd-webfont.woff2') format('woff2'),
    url('../../fonts/effra_std_bd-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body {
    font-family: 'Effra', sans-serif;
    font-size: 20px;
    color: #606161;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Effra Bold', sans-serif;
}

.light-font {
    font-family: 'Effra Light', sans-serif;
}

.regular-font, .font-weight-normal {
    font-family: 'Effra', sans-serif;
}

.text-extra-small {
    font-size: 14px;
}

b, strong {
    font-family: 'Effra Bold', sans-serif;
}

hr {
    border-color: #a5a7aa;
}

.opacity-80 {
    opacity: .8;
}

.cursor {
    cursor: pointer;
}

/* Background */

.bg-orange {
    background-color: #f08b1e;
}

.bg-purple {
    background-color: #b02271;
}

.bg-pink-pastel {
    background-color: #f7c0b2;
}

.bg-gray {
    background-color: #ebe8e0;
}

.bg-medium-gray {
    background-color: #C0C2C4;
}

.bg-medium-gray-2 {
    background-color: #606161;
}

.bg-dark-gray {
    background-color: #3A3A39;
}

.bg-light {
    background-color: #e8e8e8 !important;
}

.bg-success {
    background-color: #00A551 !important;
}

.bg-gradient-1 {
    background-image: linear-gradient(75deg, rgb(175, 031, 142), rgb(084, 039, 133));
}

.bg-gradient-2 {
    background-image: linear-gradient(75deg, rgb(239, 065, 061), rgb(175, 031, 142), rgb(084, 039, 133));
}

.bg-gradient-3 {
    background-image: linear-gradient(75deg, rgb(084, 039, 133), rgb(175, 031, 142), rgb(239, 065, 061));
}

.bg-vital {
    background-image: linear-gradient(75deg, rgb(084, 039, 133), rgb(175, 031, 142), rgb(239, 065, 061));
}

.bg-cta-dreams {
    background-image: linear-gradient(75deg, #272662, #522872, #772883);
}

.bg-cta-arterium {
    background-image: linear-gradient(75deg, #f19b20, #e96527, #dc2426);
}

.bg-cta-map {
    background-image: linear-gradient(75deg, #00acee, #0873b9, #663092);
}

.bg-cta-aaox {
    background-image: linear-gradient(75deg, #ca171d, #da4c36, #ee765d);
}

.bg-cta-liver {
    background-image: linear-gradient(75deg, #901556, #a53771, #ce74a3);
}
.bg-cta-osteo {
    background-image: linear-gradient(75deg, #C75837, #d96846, #f7815e);
}
.bg-cta-prosta {
    background-image: linear-gradient(75deg, #102E6E, #102E6E, #517EE3);
}
.bg-cta-olive {
    background-image: linear-gradient(75deg, #025173, #026373, #01905E);
}
.bg-cta-omega {
    background-image: linear-gradient(75deg,#FF6C72,#FF906B,#FF914B);
}
.bg-cta-glicoz {
    background-image: linear-gradient(75deg,#15726f,#1c9894,#2ae4de);
}
.bg-cta-ocux {
    background-image: linear-gradient(75deg,#d3d4d5,#444543,#444543);
}

.bg-cta-h50 {
    background-image: linear-gradient(75deg,#c7aa8e,#704500,#3c2009);
}

.bg-cta-grow {
    background-image: url("../../img/bg-grow.gif");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.bg-cta-grow-mobile {
    background-image: url("../../img/bg-grow-mobile.gif");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

/* Utilities */

.bottom-radius {
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

ul.img-list {
    padding: 0;
    list-style: none;
}

ul.img-list li {
    font-size: 16px;
    margin-bottom: 13px;
    color: #888;
}

ul.img-list img {
    margin-right: 5px;
    width: 16px;
    margin-top: -3px;
    height: auto;
}

.py-6 {
    padding: 3rem 0 7rem 0;
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.25)!important;
}

/* Text colors */

.text-purple {
    color: #4f002b;
}

.text-burgundy {
    color: #620000;
}

.text-gray {
    color: #606060;
}

.text-success {
    color: #22ab4a !important;
}

.text-danger {
    color: #d71920 !important;
}

/* Btns */

.btn {
    border-radius: 2rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.15);
}

.btn:hover {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.btn-md {
    padding: 7px 30px;
    font-size: 18px;
}

.btn-primary {
    background-color: #F99D39;
    border-color: #F99D39;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: #e28b2c !important;
    border-color: #e28b2c !important;
}

.btn-success {
    background-color: #00A551 !important;
    border-color: #00A551 !important;
}

.badge-success {
    background-color: #00A551 !important;
}

.badge-secondary {
    background-color: #babcbe !important;
}

/* Inputs */

.form-check-input {
    margin-top: .15rem;
    margin-left: -1.25rem;
    width: 20px;
    height: 20px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

/* Sections */

.nav-pills .nav-item {
    background: #E6E7E7;
    border-radius: .25rem;
    margin: 0 .25rem;
    padding: .5rem;
}

.nav-pills .nav-item.active {
    background: #22AC4B;
    color: #fff;
}

.nav-pills a:hover {
    text-decoration: none;
}

.nav-pills a:hover * {
    opacity: .9;
}

.nav-pills a * {
    color: #666;
    opacity: .5;
    transition: opacity .4s;
}

.nav-pills a.active * {
    color: #fff;
    opacity: 1;
}

#badge-discount {
    position: absolute;
    width: 85px;
    top: 55px;
    right: -5px;
}

#pills-optionsContent .lead {
    font-size: 22px;
    line-height: 1.1;
}

#pills-optionsContent .lead small {
    font-size: 16px;
}

/* Warranty */

#warranty img {
    max-width: 133px;
    height: auto;
}

#warranty p {
    font-size: 12px;
    line-height: 1.3;
    opacity: .8;
}

/* General */

#dr-rafael, #dr-fausto {
    border-radius: 100%;
    margin-top: -5rem;
}

#cards {
    margin-top: -2.5rem;
}

/* FAQ */

#faq {
    padding-bottom: 7rem;
}

.accordion .card {
    border: none;
    background: transparent;
    margin-bottom: 0;
    border-radius: 0;
}

.accordion .card-header {
    background: transparent;
    border-top: 1px solid #444;
    border-bottom: none;
    border-left-color: transparent;
    border-right-color: transparent;
    border-radius: 0;
    padding: 1.4rem 1rem;
}

.accordion .card-header.border-bottom {
    border-bottom: 1px solid #444 !important;
}

.accordion .card-header .toogle {
    cursor: pointer;
    transition: all .4s;
}

.accordion .card-header .toogle:hover {
    color: #F99D39;
}

.accordion .card-header .icon {
    width: 15px;
    height: 15px;
    background-size: contain;
    background-repeat: no-repeat;
}

.accordion .card-header .icon-plus {
    background-image: url("../../img/icon-plus.png");
}

.accordion .card-header .icon-minus {
    background-image: url("../../img/icon-minus.png");
}

.accordion .card-body {
    font-family: 'Effra Light', sans-serif;
    border-top: 1px solid #444;
}

.headerTitle {
    width: 190px;
}

/* Checkbox */

.drnature-check {
    cursor: pointer;
    font-size: 17px;
    line-height: 1;
}

.drnature-check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Footer */

footer small {
    font-size: 14px;
}

/* Responsive */

@media (max-width: 768px) {

    #cards {
        margin-top: 0;
    }

    .accordion .card-header.border-bottom-mobile-0 {
        border-bottom: none !important;
    }
}
