@import url(https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700);
@import url(https://fonts.googleapis.com/css?family=Rubik:300,300i,400,400i,500,500i,700,700i,900,900i);
@import url(https://fonts.googleapis.com/css?family=Muli:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i);
body {
    font-family: Poppins;
    font-style: normal;
    line-height: 1.5;
}

.mbr-section-title {
    font-style: normal;
    line-height: 1.2;
}

.mbr-section-subtitle {
    line-height: 1.3;
}

.mbr-text {
    font-style: normal;
    line-height: 1.6;
}

.display-1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
}

.display-2 {
    font-family: 'Rubik', sans-serif;
    font-size: 2rem;
}

.display-4 {
    font-family: 'Muli', sans-serif;
    font-size: 0.85rem;
}

.display-5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.display-7 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}


/* ---- Fluid typography for mobile devices ---- */


/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */


/* 100vw - current viewport width */


/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */


/* 0.65 - min scale variable, may vary */

@media (max-width: 768px) {
    .display-1 {
        font-size: 1.3rem;
        line-height: 2rem;
    }
    .display-2 {
        font-size: 1.6rem;
        font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
    }
    .display-4 {
        font-size: 0.68rem;
        font-size: calc( 0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20))));
    }
    .display-5 {
        font-size: 0.8rem;
        font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
    }
}


/* Buttons */

.btn {
    position: relative;
    font-weight: 500;
    border-width: 1px;
    font-style: normal;
    letter-spacing: normal;
    margin: .4rem .8rem;
    white-space: normal;
    transition-property: background-color, color, border-color, box-shadow;
    transition-duration: .3s, .3s, .3s, 2s;
    transition-timing-function: ease-in-out;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    word-break: break-word;
    padding: 0.719rem 1.5rem;
    border-radius: 3px;
}

.btn .mbr-iconfont {
    font-size: 1.6rem;
}

.btn:hover:after,
.btn:focus:after,
.btn.active:after {
    content: '';
    border: 1px solid;
    border-color: inherit;
    width: 100%;
    height: 100%;
    transition: border-radius 0.3s;
    position: absolute;
    left: 0%;
    top: 0%;
    opacity: 1;
}

.btn:hover:after,
.btn:focus:after,
.btn.active:after {
    -webkit-animation: 1s btn-animation linear infinite;
    animation: 1s btn-animation linear infinite;
}

.note-popover .btn:after {
    display: none;
}

@keyframes btn-animation {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
        opacity: 0;
    }
}

.btn-sm {
    border: 1px solid;
    font-weight: 500;
    letter-spacing: normal;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 0.5rem 1rem;
    border-radius: 3px;
}

.btn-md {
    font-weight: 500;
    letter-spacing: normal;
    margin: .4rem .8rem !important;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 0.719rem 1.5rem;
    border-radius: 3px;
}

.btn-lg {
    font-weight: 500;
    letter-spacing: normal;
    margin: .4rem .8rem !important;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 0.875rem 1.875rem;
    border-radius: 3px;
}

.bg-primary {
    background-color: #17c4b1 !important;
}

.bg-success {
    background-color: #365c9a !important;
}

.bg-info {
    background-color: #17c4b1 !important;
}

.bg-warning {
    background-color: #fac769 !important;
}

.bg-danger {
    background-color: #b2ccd2 !important;
}

.btn-primary,
.btn-primary:active,
.btn-primary.active {
    background-color: #17c4b1 !important;
    border-color: #17c4b1 !important;
    color: #ffffff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
    color: #ffffff !important;
    background-color: #0f8073 !important;
    border-color: #0f8073 !important;
}

.btn-primary.disabled,
.btn-primary:disabled {
    color: #ffffff !important;
    background-color: #0f8073 !important;
    border-color: #0f8073 !important;
}

.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
    background-color: #b45656 !important;
    border-color: #b45656 !important;
    color: #ffffff !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
    color: #ffffff !important;
    background-color: #833a3a !important;
    border-color: #833a3a !important;
}

.btn-secondary.disabled,
.btn-secondary:disabled {
    color: #ffffff !important;
    background-color: #833a3a !important;
    border-color: #833a3a !important;
}

.btn-info,
.btn-info:active,
.btn-info.active {
    background-color: #17c4b1 !important;
    border-color: #17c4b1 !important;
    color: #ffffff !important;
}

.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
    color: #ffffff !important;
    background-color: #0f8073 !important;
    border-color: #0f8073 !important;
}

.btn-info.disabled,
.btn-info:disabled {
    color: #ffffff !important;
    background-color: #0f8073 !important;
    border-color: #0f8073 !important;
}

.btn-success,
.btn-success:active,
.btn-success.active {
    background-color: #365c9a !important;
    border-color: #365c9a !important;
    color: #ffffff !important;
}

.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
    color: #ffffff !important;
    background-color: #223a61 !important;
    border-color: #223a61 !important;
}

.btn-success.disabled,
.btn-success:disabled {
    color: #ffffff !important;
    background-color: #223a61 !important;
    border-color: #223a61 !important;
}

.btn-warning,
.btn-warning:active,
.btn-warning.active {
    background-color: #fac769 !important;
    border-color: #fac769 !important;
    color: #614003 !important;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
    color: #614003 !important;
    background-color: #f8ab1f !important;
    border-color: #f8ab1f !important;
}

.btn-warning.disabled,
.btn-warning:disabled {
    color: #614003 !important;
    background-color: #f8ab1f !important;
    border-color: #f8ab1f !important;
}

.btn-danger,
.btn-danger:active,
.btn-danger.active {
    background-color: #b2ccd2 !important;
    border-color: #b2ccd2 !important;
    color: #ffffff !important;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
    color: #ffffff !important;
    background-color: #82acb6 !important;
    border-color: #82acb6 !important;
}

.btn-danger.disabled,
.btn-danger:disabled {
    color: #ffffff !important;
    background-color: #82acb6 !important;
    border-color: #82acb6 !important;
}

.btn-black,
.btn-black:active,
.btn-black.active {
    background-color: #333333 !important;
    border-color: #333333 !important;
    color: #ffffff !important;
}

.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
    color: #ffffff !important;
    background-color: #0d0d0d !important;
    border-color: #0d0d0d !important;
}

.btn-black.disabled,
.btn-black:disabled {
    color: #ffffff !important;
    background-color: #0d0d0d !important;
    border-color: #0d0d0d !important;
}

.btn-white,
.btn-white:active,
.btn-white.active {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    color: #808080 !important;
}

.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
    color: #808080 !important;
    background-color: #d9d9d9 !important;
    border-color: #d9d9d9 !important;
}

.btn-white.disabled,
.btn-white:disabled {
    color: #808080 !important;
    background-color: #d9d9d9 !important;
    border-color: #d9d9d9 !important;
}

.btn-white,
.btn-white:active,
.btn-white.active {
    color: #333333 !important;
}

.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
    color: #333333 !important;
}

.btn-white.disabled,
.btn-white:disabled {
    color: #333333 !important;
}

.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
    background: none;
    border-color: #0c695f;
    color: #0c695f !important;
}

.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
    color: #ffffff !important;
    background-color: #17c4b1;
    border-color: #17c4b1;
}

.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
    color: #ffffff !important;
    background-color: #17c4b1 !important;
    border-color: #17c4b1 !important;
}

.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
    background: none;
    border-color: #723232;
    color: #723232 !important;
}

.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
    color: #ffffff !important;
    background-color: #b45656;
    border-color: #b45656;
}

.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
    color: #ffffff !important;
    background-color: #b45656 !important;
    border-color: #b45656 !important;
}

.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
    background: none;
    border-color: #0c695f;
    color: #0c695f !important;
}

.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
    color: #ffffff !important;
    background-color: #17c4b1;
    border-color: #17c4b1;
}

.btn-info-outline.disabled,
.btn-info-outline:disabled {
    color: #ffffff !important;
    background-color: #17c4b1 !important;
    border-color: #17c4b1 !important;
}

.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
    background: none;
    border-color: #1c2f4e;
    color: #1c2f4e !important;
}

.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
    color: #ffffff !important;
    background-color: #365c9a;
    border-color: #365c9a;
}

.btn-success-outline.disabled,
.btn-success-outline:disabled {
    color: #ffffff !important;
    background-color: #365c9a !important;
    border-color: #365c9a !important;
}

.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
    background: none;
    border-color: #f5a208;
    color: #f5a208 !important;
}

.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
    color: #614003 !important;
    background-color: #fac769;
    border-color: #fac769;
}

.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
    color: #614003 !important;
    background-color: #fac769 !important;
    border-color: #fac769 !important;
}

.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
    background: none;
    border-color: #72a1ac;
    color: #72a1ac !important;
}

.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
    color: #ffffff !important;
    background-color: #b2ccd2;
    border-color: #b2ccd2;
}

.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
    color: #ffffff !important;
    background-color: #b2ccd2 !important;
    border-color: #b2ccd2 !important;
}

.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
    background: none;
    border-color: #000000;
    color: #000000 !important;
}

.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
    color: #ffffff !important;
    background-color: #333333;
    border-color: #333333;
}

.btn-black-outline.disabled,
.btn-black-outline:disabled {
    color: #ffffff !important;
    background-color: #333333 !important;
    border-color: #333333 !important;
}

.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
    background: none;
    border-color: #ffffff;
    color: #ffffff !important;
}

.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
    color: #333333 !important;
    background-color: #ffffff;
    border-color: #ffffff;
}

.text-primary {
    color: #17c4b1 !important;
}

.text-secondary {
    color: #b45656 !important;
}

.text-success {
    color: #365c9a !important;
}

.text-info {
    color: #17c4b1 !important;
}

.text-warning {
    color: #fac769 !important;
}

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

.text-white {
    color: #ffffff !important;
}

.text-black {
    color: #000000 !important;
}

a.text-primary:hover,
a.text-primary:focus {
    color: #0c695f !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
    color: #723232 !important;
}

a.text-success:hover,
a.text-success:focus {
    color: #1c2f4e !important;
}

a.text-info:hover,
a.text-info:focus {
    color: #0c695f !important;
}

a.text-warning:hover,
a.text-warning:focus {
    color: #f5a208 !important;
}

a.text-danger:hover,
a.text-danger:focus {
    color: #72a1ac !important;
}

a.text-white:hover,
a.text-white:focus {
    color: #b3b3b3 !important;
}

a.text-black:hover,
a.text-black:focus {
    color: #4d4d4d !important;
}

.alert-success {
    background-color: #365c9a;
}

.alert-info {
    background-color: #17c4b1;
}

.alert-warning {
    background-color: #fac769;
}

.alert-danger {
    background-color: #b2ccd2;
}

.mbr-gallery-filter li.active .btn {
    background-color: #17c4b1;
    border-color: #17c4b1;
    color: #ffffff;
}

.mbr-gallery-filter li.active .btn:focus {
    box-shadow: none;
}

.btn-form {
    border-radius: 0;
}

.btn-form:hover {
    cursor: pointer;
}

a,
a:hover {
    color: #17c4b1;
}

.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
    color: #6deee0;
}

.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
    color: #7e9ed2;
}

.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
    color: #6deee0;
}

.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
    color: #ffffff;
}

.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
    color: #ffffff;
}


/* Scroll to top button*/

.scrollToTop_wraper {
    display: none;
}

#scrollToTop a i:before {
    content: '';
    position: absolute;
    height: 40%;
    top: 25%;
    background: #fff;
    width: 2px;
    left: calc(50% - 1px);
}

#scrollToTop a i:after {
    content: '';
    position: absolute;
    display: block;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    width: 40%;
    height: 40%;
    left: 30%;
    bottom: 30%;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}


/* Others*/

.note-check a[data-value=Rubik] {
    font-style: normal;
}

.mbr-arrow a {
    color: #ffffff;
}

@media (max-width: 767px) {
    .mbr-arrow {
        display: none;
    }
}

.form-control-label {
    position: relative;
    cursor: pointer;
    margin-bottom: .357em;
    padding: 0;
}

.alert {
    color: #ffffff;
    border-radius: 0;
    border: 0;
    font-size: .875rem;
    line-height: 1.5;
    margin-bottom: 1.875rem;
    padding: 1.25rem;
    position: relative;
}

.alert.alert-form::after {
    background-color: inherit;
    bottom: -7px;
    content: "";
    display: block;
    height: 14px;
    left: 50%;
    margin-left: -7px;
    position: absolute;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 14px;
}

.form-control {
    background-color: #f5f5f5;
    box-shadow: none;
    color: #565656;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.43;
    min-height: 3.5em;
    padding: 1.07em .5em;
}

.form-control,
.form-control:focus {
    border: 1px solid #e8e8e8;
}

.form-active .form-control:invalid {
    border-color: red;
}

.mbr-overlay {
    background-color: #000;
    bottom: 0;
    left: 0;
    opacity: .2;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}

blockquote {
    font-style: italic;
    padding: 10px 0 10px 20px;
    font-size: 1.09rem;
    position: relative;
    border-color: #17c4b1;
    border-width: 3px;
}

ul,
ol,
pre,
blockquote {
    margin-bottom: 2.3125rem;
}

pre {
    background: #f4f4f4;
    padding: 10px 24px;
    white-space: pre-wrap;
}

.inactive {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
    user-drag: none;
}

.mbr-section__comments .row {
    -webkit-justify-content: center;
    justify-content: center;
}


/* Forms */

.mbr-form .btn {
    margin: .4rem 0;
}

@media (max-width: 767px) {
    .btn {
        font-size: .75rem !important;
    }
    .btn .mbr-iconfont {
        font-size: 1rem !important;
    }
}


/* Social block */

.btn-social {
    font-size: 20px;
    padding: 0;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    position: relative;
    border: 2px solid #c0a375;
    border-color: #17c4b1;
    color: #232323;
    cursor: pointer;
}

.btn-social i {
    top: 0;
    line-height: 44px;
    width: 44px;
}

.btn-social:hover {
    color: #fff;
    background: #17c4b1;
}

.btn-social+.btn {
    margin-left: .1rem;
}


/* Footer */

.note-air-layout .dropup .dropdown-menu,
.note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu {
    bottom: initial !important;
}

html,
body {
    height: auto;
    min-height: 100vh;
}

.dropup .dropdown-toggle::after {
    display: none;
}

.navega .dropdown-item:before {
    font-family: MobiriseIcons !important;
    content: '\e966';
    display: inline-block;
    width: 0;
    position: absolute;
    left: 1rem;
    color: #17c4b1;
    top: 0.5rem;
    margin-right: 0.5rem;
    line-height: 1;
    font-size: inherit;
    vertical-align: middle;
    text-align: center;
    overflow: hidden;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.navega .nav-item,
.navega .nav-link,
.navega .navbar-caption {
    font-weight: normal;
}

.navega .nav-item:focus,
.navega .nav-link:focus {
    outline: none;
}

@media (min-width: 992px) {
    .navega .dropdown-item:hover:before {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        width: 16px;
    }
    .navega .nav-item .nav-link {
        position: relative;
    }
    .navega .nav-item .nav-link:before {
        content: "";
        position: absolute;
        z-index: -2;
        left: 0;
        right: 100%;
        bottom: -0.2em;
        background: #17c4b1;
        height: 3px;
        -webkit-transition-property: right;
        transition-property: right;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
    }
    .navega .nav-item .nav-link:hover::before {
        right: 0;
    }
    .navega .nav-item.open .nav-link::before {
        right: 1.667em;
    }
}

.navega .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.navega .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
}

.navega .dropdown .dropdown-menu .dropdown-item:hover {
    padding-right: 2.5385em;
    padding-left: 3.5385em;
}

.navega .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
}

.navega .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
    margin-left: -1.8rem;
    padding-right: 1rem;
    font-size: inherit;
}

.navega .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
    display: inline-block;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.navega .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}

.navega .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}

.navega .navbar {
    min-height: 77px;
    transition: all .3s;
    background: #ffffff;
}

.navega .navbar.opened {
    transition: all .3s;
    background: #ffffff !important;
}

.navega .navbar .dropdown-item {
    padding: .235rem 1.5rem;
}

.navega .navbar .navbar-collapse {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    z-index: 1;
}

.navega .navbar.collapsed .nav-item .nav-link::before {
    display: none;
}

.navega .navbar.collapsed.opened .dropdown-menu {
    top: 0;
}

.navega .navbar.collapsed .dropdown-menu {
    background: transparent !important;
}

.navega .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.navega .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.navega .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
}

.navega .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.navega .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
}

.navega .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
}

@media (max-width: 991px) {
    .navega .navbar .nav-item .nav-link::before {
        display: none;
    }
    .navega .navbar.opened .dropdown-menu {
        top: 0;
    }
    .navega .navbar .dropdown-menu {
        background: transparent !important;
    }
    .navega .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }
    .navega .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }
    .navega .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
        margin-left: .25rem;
        border-top: 0.35em solid;
        border-right: 0.35em solid transparent;
        border-left: 0.35em solid transparent;
        border-bottom: 0;
        top: 55%;
    }
    .navega .navbar .navbar-logo img {
        height: 3.8rem !important;
    }
    .navega .navbar ul.navbar-nav li {
        margin: auto;
    }
    .navega .navbar .dropdown-menu .dropdown-item {
        padding: .25rem 1.5rem !important;
        text-align: center;
    }
    .navega .navbar .navbar-brand {
        -webkit-flex-shrink: initial;
        flex-shrink: initial;
        -webkit-flex-basis: auto;
        flex-basis: auto;
        word-break: break-word;
    }
    .navega .navbar .navbar-toggler {
        -webkit-flex-basis: auto;
        flex-basis: auto;
    }
    .navega .navbar .icons-menu {
        padding-left: 0;
        padding-top: .5rem;
        padding-bottom: .5rem;
    }
}

.navega .navbar.navbar-short {
    background: #ffffff !important;
    min-height: 60px;
}

.navega .navbar.navbar-short .navbar-logo img {
    height: 3rem !important;
}

.navega .navbar.navbar-short .navbar-brand {
    padding: 0;
}

.navega .navbar-brand {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-align-items: center;
    align-items: center;
    margin-right: 0;
    padding: 0;
    transition: all .3s;
    word-break: break-word;
    z-index: 1;
}

.navega .navbar-brand .navbar-caption {
    line-height: inherit !important;
}

.navega .navbar-brand .navbar-logo a {
    outline: none;
}

.navega .dropdown-item.active,
.navega .dropdown-item:active {
    background-color: transparent;
}

.navega .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.navega .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

.navega .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.667em;
}

.navega .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
    left: 1.667em;
    bottom: 0.467em;
}

.navega .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
    right: 1.667em;
}

.navega .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

.navega .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
    left: 100%;
}

.navega .navbar .dropdown.open>.dropdown-menu {
    display: block;
}

.navega ul.navbar-nav {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.navega .navbar-buttons {
    text-align: center;
}

.navega button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all .2s;
    position: relative;
    -webkit-align-self: center;
    align-self: center;
}

.navega button.navbar-toggler .hamburger span {
    position: absolute;
    right: 0;
    width: 30px;
    height: 2px;
    border-right: 5px;
    background-color: #232323;
}

.navega button.navbar-toggler .hamburger span:nth-child(1) {
    top: 0;
    transition: all .2s;
}

.navega button.navbar-toggler .hamburger span:nth-child(2) {
    top: 8px;
    transition: all .15s;
}

.navega button.navbar-toggler .hamburger span:nth-child(3) {
    top: 8px;
    transition: all .15s;
}

.navega button.navbar-toggler .hamburger span:nth-child(4) {
    top: 16px;
    transition: all .2s;
}

.navega nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.navega nav.opened .hamburger span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all .25s;
}

.navega nav.opened .hamburger span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: all .25s;
}

.navega nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.navega .navbar-dropdown {
    padding: .5rem 1rem;
    position: fixed;
}

.navega a.nav-link {
    -webkit-justify-content: center;
    justify-content: center;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.navega .mbr-iconfont {
    font-size: 1rem;
    color: #e96188;
    display: inline-flex;
}

.navega .mbr-iconfont:before {
    padding: .5rem;
    border: 1px solid;
    border-radius: 100px;
}

.navega .soc-item {
    margin: .5rem .3rem;
}

.navega .icons-menu {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 1rem;
    text-align: center;
    -webkit-align-items: center;
    align-items: center;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .navega .navbar {
        height: 77px;
    }
    .navega .navbar.opened {
        height: auto;
    }
    .navega .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.hero .modal-body .close {
    background: #1b1b1b;
}

.hero .modal-body .close span {
    font-style: normal;
}

.hero .carousel-inner>.active,
.hero .carousel-inner>.next,
.hero .carousel-inner>.prev {
    display: table;
}

.hero .carousel-control .icon-next,
.hero .carousel-control .icon-prev {
    margin-top: -18px;
    font-size: 40px;
    line-height: 27px;
}

.hero .carousel-control:hover {
    background: #1b1b1b;
    color: #fff;
    opacity: 1;
}

@media (max-width: 767px) {
    .hero .container .carousel-control {
        margin-bottom: 0;
    }
}

.hero .boxed-slider {
    position: relative;
    padding: 93px 0;
}

.hero .boxed-slider>div {
    position: relative;
}

.hero .container img {
    width: 100%;
}

.hero .container img+.row {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
}

.hero .mbr-section {
    padding: 0;
    background-attachment: scroll;
}

.hero .mbr-table-cell {
    padding: 0;
}

.hero .container .carousel-indicators {
    margin-bottom: 3px;
}

.hero .carousel-caption {
    top: 50%;
    right: 0;
    bottom: auto;
    left: 0;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.hero .mbr-overlay {
    z-index: 1;
}

.hero .container-slide.container {
    width: 100%;
    min-height: 100vh;
    padding: 0;
}

.hero .carousel-item {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    -o-transition: -o-transform 0.6s ease-in-out;
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

@media (max-width: 576px) {
    .hero .carousel-item .container {
        width: 100%;
    }
}

.hero .carousel-item-next.carousel-item-left,
.hero .carousel-item-prev.carousel-item-right {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.hero .active.carousel-item-right,
.hero .carousel-item-next {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}

.hero .active.carousel-item-left,
.hero .carousel-item-prev {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.hero .mbr-slider .carousel-control {
    top: 50%;
    width: 70px;
    height: 70px;
    margin-top: -1.5rem;
    font-size: 35px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid #fff;
    border-radius: 50%;
    transition: all .3s;
}

.hero .mbr-slider .carousel-control.carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
    z-index: 2;
}

.hero .mbr-slider .carousel-control.carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
    z-index: 2;
}

.hero .mbr-slider .carousel-control .mbr-iconfont {
    font-size: 1.5rem;
}

@media (max-width: 767px) {
    .hero .mbr-slider .carousel-control {
        top: auto;
        bottom: 1rem;
    }
}

.hero .mbr-slider .carousel-indicators {
    position: absolute;
    bottom: 0;
    margin-bottom: 1.5rem !important;
}

.hero .mbr-slider .carousel-indicators li {
    max-width: 20px;
    width: 20px;
    height: 20px;
    max-height: 20px;
    margin: 3px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid #fff;
    border-radius: 50%;
    opacity: .5;
    transition: all .3s;
}

.hero .mbr-slider .carousel-indicators li.active,
.hero .mbr-slider .carousel-indicators li:hover {
    opacity: .9;
}

.hero .mbr-slider .carousel-indicators li::after,
.hero .mbr-slider .carousel-indicators li::before {
    content: none;
}

.hero .mbr-slider .carousel-indicators.ie-fix {
    left: 50%;
    display: block;
    width: 60%;
    margin-left: -30%;
    text-align: center;
}

@media (max-width: 576px) {
    .hero .mbr-slider .carousel-indicators {
        display: none !important;
    }
}

.hero .mbr-slider>.container img {
    width: 100%;
}

.hero .mbr-slider>.container img+.row {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    z-index: 2;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.hero .mbr-slider>.container .carousel-indicators {
    margin-bottom: 3px;
}

@media (max-width: 576px) {
    .hero .mbr-slider>.container .carousel-control {
        margin-bottom: 0;
    }
}

.hero .mbr-slider .mbr-section {
    padding: 0;
    background-attachment: scroll;
}

.hero .mbr-slider .mbr-table-cell {
    padding: 0;
}

.hero .carousel-item .container.container-slide {
    position: initial;
    width: auto;
    min-height: 0;
}

.hero .full-screen .slider-fullscreen-image {
    min-height: 100vh;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.hero .full-screen .slider-fullscreen-image.active {
    display: -o-flex;
}

.hero .full-screen .container {
    width: auto;
    padding-right: 0;
    padding-left: 0;
}

.hero .full-screen .carousel-item .container.container-slide {
    min-width: 100%;
    min-height: 100vh;
    padding: 0;
}

.hero .full-screen .carousel-item .container.container-slide img {
    display: none;
}

.hero .mbr-background-video-preview {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.hero .mbr-overlay~.container-slide {
    z-index: auto;
}

.hero B {
    color: #ffffff;
}

.cid-foot {
    padding-top: 105px;
    padding-bottom: 105px;
    background-image: url("/assets/images/barra-2000x429.png");
}

.cid-foot .mbr-section-subtitle {
    color: #767676;
}

.rodape {
    padding-top: 30px;
    padding-bottom: 0px;
    background-color: #ffffff;
}

.rodape *:focus {
    outline: none;
}

.rodape .input-wrap {
    padding-bottom: 1rem;
}

.rodape .form-control,
.rodape .field {
    width: 100%;
    min-height: auto;
    color: #232323 !important;
    border: none;
    border-radius: 0 !important;
    background-color: transparent;
    padding: .5rem 0rem;
    border-bottom: 1px solid #232323;
}

.rodape .form-control:focus,
.rodape .field:focus {
    outline: none;
}

.rodape input::-webkit-input-placeholder {
    color: #232323;
}

.rodape input::-moz-placeholder {
    color: #232323;
}

.rodape textarea::-webkit-input-placeholder {
    color: #232323;
}

.rodape textarea::-moz-placeholder {
    color: #232323;
}

.rodape .soc-item {
    display: inline-block;
    margin: 0 .1rem .2rem .1rem;
    padding: 10px 11px 0 11px;
    border: 1px solid #66458e;
    border-radius: 50%;
}

.rodape .soc-item:hover {
    opacity: .5;
}

.rodape .soc-item .socicon {
    font-size: 1.5rem;
    color: #66458e;
}

.rodape .days-column,
.rodape .hours-column {
    display: inline-block;
}

.rodape .days-column span,
.rodape .hours-column span {
    display: block;
}

.rodape .input-group-btn {
    display: block;
}

@media (max-width: 767px) {
    .rodape .days-column {
        padding-right: 0 !important;
    }
    .rodape .hours-column {
        max-width: 50% !important;
    }
    .rodape .opening-hours {
        padding-bottom: 48px !important;
    }
}

.rodape .follow-title,
.rodape .social-list {
    text-align: center;
}

.cid-topshop {
    padding-top: 150px;
    padding-bottom: 200px;
    background-position: bottom;
    background-image: url("/assets/images/img-3771-cpia-1-800x532.jpg");
}

.cid-topshop .mbr-section-subtitle {
    color: #767676;
}

.cid-topshop .mbr-section-title {
    color: #5b686b;
    text-align: center;
}

.cid-topshop .mbr-section-title SPAN {
    color: #ffffff;
}

.cid-topshop .mbr-section-subtitle B {
    color: #ffffff;
}

.shops {
    padding-top: 0px;
    padding-bottom: 30px;
    background-color: #ffffff;
}

.shops .mbr-shop {
    display: table;
    width: 100%;
}

.shops .mbr-shop .row {
    margin: 0;
}

.shops .mbr-shop .btn-sm {
    margin: 0.2rem 0.2rem;
}

.shops .mbr-shop .shoppingcart-icons {
    z-index: 105 !important;
}

.shops .mbr-shop .shop-title {
    margin-bottom: 18px;
    padding-left: 25px;
    padding-right: 25px;
    display: inline-block;
    max-width: 80%;
}

.shops .mbr-shop .sidebar-title {
    line-height: 25px;
    margin-bottom: 1.8rem;
}

.shops .mbr-shop .shopItemsModal_wraper {
    position: fixed;
    display: none;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(87, 87, 87, 0.4);
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 1040;
}

.shops .mbr-shop .card-description {
    cursor: text;
    display: none;
}

.shops .mbr-shop .image-modal {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.shops .mbr-shop .image-modal img {
    max-width: 100%;
    max-height: 75vh;
}

.shops .mbr-shop .hide-modal {
    display: none;
}

.shops .mbr-shop .shopItemsModal {
    cursor: default;
    padding: 50px;
    width: 1000px;
    max-width: 100%;
    background-color: #ffffff;
    z-index: 2000;
    overflow: auto;
    position: fixed;
}

.shops .mbr-shop .shopItemsModal p {
    margin-bottom: 0;
}

.shops .mbr-shop .shopItemsModal ul {
    margin-bottom: 0;
}

.shops .mbr-shop .shopItemsModal .card-description {
    display: block;
    width: 100%;
}

.shops .mbr-shop .shopItemsModal .close-modal {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 4px;
    background-color: red;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.shops .mbr-shop .shopItemsModal .close-modal:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 4px;
    background-color: red;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.shops .mbr-shop .test-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.shops .mbr-shop .filter-by-pu,
.shops .mbr-shop .filter-by-pd,
.shops .mbr-shop .filter-by-d {
    display: inline-block;
    margin-right: 3px;
}

.shops .mbr-shop .sort-buttons {
    padding-bottom: 1rem;
    margin-right: 13px;
    text-align: right;
}

.shops .mbr-shop .galleryItem:before {
    width: 0 !important;
    height: 0 !important;
}

.shops .mbr-shop .modal-dialog {
    max-width: 700px;
}

.shops .mbr-shop .mbr-gallery-item {
    left: 0 !important;
    top: 0 !important;
    vertical-align: top;
    position: relative !important;
    -webkit-transform: none !important;
    transform: none !important;
    padding: 15px;
    width: 33%;
}

.shops .mbr-shop .galleryItem h4,
.shops .mbr-shop .carousel-item h4 {
    font-style: normal;
    line-height: 1;
    text-transform: none;
    letter-spacing: -1px;
    word-spacing: 0;
    margin-bottom: 0.3rem;
    padding-top: 15px;
    transition: color 0.5s;
}

.shops .mbr-shop .galleryItem h5,
.shops .mbr-shop .carousel-item h5 {
    font-style: italic;
    font-weight: 400;
    line-height: 22.36px;
    text-transform: none;
    letter-spacing: 0px;
    word-spacing: 0;
}

.shops .mbr-shop .galleryItem p,
.shops .mbr-shop .carousel-item p {
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0px;
    word-spacing: 0px;
    text-align: center;
    display: inline;
}

.shops .mbr-shop .item-button {
    text-align: center;
}

.shops .mbr-shop .modalButton {
    display: inline-block;
    float: right;
    margin-right: 10px;
}

.shops .mbr-shop .modalButton.btn-success {
    right: 15%;
}

.shops .mbr-shop .sidebar {
    margin-top: 30px;
    position: relative;
}

.shops .mbr-shop .sidebar-block {
    position: relative;
}

.shops .mbr-shop .sidebar-background:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 102%;
    background-color: #f7f7f7;
    top: -20px;
    right: 3px;
}

.shops .mbr-shop .bestsellers {
    padding-left: 0;
    padding-right: 0;
    position: relative;
    margin-bottom: 20px;
}

.shops .mbr-shop .bestsellers .onsale {
    top: -15px;
}

.shops .mbr-shop .bestsellers .price-block {
    padding-top: 5px;
    text-align: left;
    line-height: 1;
}

.shops .mbr-shop .bestsellers .mbr-gallery-item {
    width: 100%;
}

.shops .mbr-shop .bestsellers .mbr-gallery-item img {
    width: 80px;
    float: left;
    margin-right: 20px;
}

.shops .mbr-shop .bestsellers .mbr-gallery-item h4 {
    text-align: left;
    padding-bottom: 5px;
    line-height: 1;
}

.shops .mbr-shop .bestsellers .mbr-gallery-item h5 {
    text-align: left;
    display: none;
}

.shops .mbr-shop .bestsellers .mbr-gallery-item p {
    text-align: left;
}

.shops .mbr-shop .bestsellers .btn {
    display: none;
}

.shops .mbr-shop .bestsellers-img {
    display: inline-block;
    width: 80px;
    height: 80px;
    overflow: hidden;
}

.shops .mbr-shop .bestsellers-title {
    display: inline-block;
}

.shops .mbr-shop .onsale {
    position: absolute;
    display: block;
    transition: color .3s ease;
    text-align: center;
    z-index: 95;
    top: 30px;
    left: 30px;
    line-height: 17px;
    padding: 5px 15px 5px;
    background: #17c4b1;
    border-radius: 30px;
    font-weight: 400;
    font-style: normal;
    text-transform: none;
    letter-spacing: 0px;
    color: #ffffff;
}

.shops .mbr-shop .mbr-gallery-item__hided {
    display: none;
}

.shops .mbr-shop .mbr-gallery-item__hided h4,
.shops .mbr-shop .mbr-gallery-item__hided h5,
.shops .mbr-shop .mbr-gallery-item__hided p {
    display: none;
}

.shops .mbr-shop .mbr-gallery-item__hided .btn {
    display: none;
}

.shops .mbr-shop .galleryItem .price-block {
    display: block;
}

.shops .mbr-shop .galleryItem .price-block span {
    font-style: normal;
    line-height: 1;
    text-transform: none;
    letter-spacing: -1px;
    word-spacing: 0;
}

.shops .mbr-shop .mbr-gallery-filter {
    padding-left: 0;
    text-align: left;
    padding-top: 0;
}

.shops .mbr-shop .mbr-gallery-filter ul li.active {
    background-color: transparent;
    font-weight: bold;
}

.shops .mbr-shop .mbr-gallery-filter ul li:hover {
    background-color: transparent;
}

.shops .mbr-shop .range-slider {
    padding-bottom: 25px;
}

.shops .mbr-shop .filter-cost {
    display: block;
    vertical-align: middle;
    max-width: 250px;
    text-align: left;
    position: relative;
    margin-bottom: 30px;
}

.shops .mbr-shop .filter-cost p {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 21px;
    color: #666666;
    font-weight: bold;
}

.shops .mbr-shop .price-controls {
    position: relative;
    height: 36px;
    margin-bottom: 10px;
    border-radius: 2px;
    font-size: 0;
}

.shops .mbr-shop .price-controls label {
    display: inline-block;
    width: 50%;
    font-size: 14px;
    line-height: 32px;
    color: #666666;
    font-weight: normal;
    cursor: pointer;
    margin-bottom: 0;
}

.shops .mbr-shop .price-controls input {
    width: 100%;
    background-color: transparent;
    border: none;
    line-height: 31px;
    height: 31px;
    text-align: center;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.shops .mbr-shop .range-controls {
    position: relative;
}

.shops .mbr-shop .range-controls .scale {
    width: 100%;
    height: 5px;
    background-color: rgba(190, 190, 190, 0.3);
}

.shops .mbr-shop .range-controls .bar {
    margin-left: 0;
    width: 100%;
    height: 5px;
    background-color: #66458e;
}

.shops .mbr-shop .toggle {
    -webkit-box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
    position: absolute;
    top: -9px;
    width: 7px;
    height: 7px;
    border: 8px solid #ffffff;
    border-radius: 100%;
    box-sizing: content-box;
    background-color: #66458e;
    cursor: pointer;
}

.shops .mbr-shop .toggle:hover,
.shops .mbr-shop .toggle:active {
    background-color: #c0a375;
}

.shops .mbr-shop .min-toggle {
    left: 0;
}

.shops .mbr-shop .max-toggle {
    right: 0;
}

.shops .mbr-shop .hided-by-price {
    display: none;
}

.shops .mbr-shop .text-modal {
    padding-right: 30px;
    padding-left: 30px;
}

.shops .mbr-shop .text-modal .item-button {
    text-align: left !important;
}

.shops .mbr-shop .text-modal .price-block {
    line-height: 1;
    border-bottom: 1px dotted #d6d6d6;
}

.shops .mbr-shop .text-modal .price-block p {
    display: inline;
}

.shops .mbr-shop .text-modal .price-block span {
    display: inline;
    font-weight: 700;
    padding: 10px 0 20px 0;
}

.shops .mbr-shop .text-modal .card-description {
    padding-top: 20px;
    display: block;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 50px;
}

.shops .mbr-shop .modal-control-panel {
    padding-right: 0;
}

.shops .mbr-shop .modal-cb {
    display: inline-block;
    float: right;
    margin-right: 10px;
    margin-left: 10px;
}

.shops .mbr-shop .shopItemsModalBg {
    width: 100%;
    height: 100%;
}

.shops .mbr-shop .close-modal-wrapper {
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    right: 0;
}

.shops .mbr-shop .close-modal-wrapper:after {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: #cccccc;
    top: 50%;
    right: 5%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.shops .mbr-shop .close-modal-wrapper:before {
    content: "";
    position: absolute;
    width: 3px;
    height: 40px;
    background-color: #cccccc;
    right: 50%;
    top: 5%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.shops .mbr-shop .closeModal {
    position: absolute;
    top: 0;
    right: 0;
}

.shops .mbr-shop .galleryItem .sidebar_wraper {
    text-align: center;
    padding-bottom: 15px;
}

.shops .mbr-shop .shopItemsModal .sidebar_wraper {
    text-align: left;
}

.shops .mbr-shop .item_overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 99;
    background: transparent;
}

.shops .mbr-shop .style_overlay {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shops .mbr-shop .price-range {
    display: none;
}

.shops .mbr-shop .price-range-reset {
    display: none;
}

.shops .mbr-shop .bestsellers .item-button {
    display: none !important;
}

.shops .mbr-shop .range-slider h4 {
    margin-bottom: 1.8rem;
}

.shops .mbr-shop .mbr-gallery-filter ul {
    padding-left: 0px;
    display: inline-block;
    list-style: none;
    margin-bottom: 0px;
}

.shops .mbr-shop .categories:after {
    content: "";
    display: table;
    clear: both;
}

@media (min-width: 767px) and (max-width: 1100px) {
    .shops .mbr-shop .col-md-9 {
        width: 100%;
    }
    .shops .mbr-shop .col-md-3 {
        width: 100%;
    }
    .shops .mbr-shop .sidebar-background:after {
        top: 0;
    }
    .shops .mbr-shop .bestseller-block {
        width: 100%;
        margin: 0;
        display: inline-block;
        float: left;
        padding-top: 15px;
    }
    .shops .mbr-shop .range-slider {
        width: 49%;
        margin: 0;
        display: inline-block;
        float: right;
        padding-top: 15px;
    }
    .shops .mbr-shop .bestsellers {
        width: 100%;
    }
    .shops .mbr-shop .bestsellers .mbr-gallery-item {
        width: 49%;
        display: inline-block;
    }
    .shops .mbr-shop .sidebar-categories {
        width: 49%;
        margin: 0;
        display: inline-block;
        padding-top: 15px;
    }
    .shops .mbr-shop .price-range {
        max-width: 250px;
        text-align: center;
    }
    .shops .clearfix:after {
        content: "";
        display: table;
        clear: both;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .shops .mbr-shop .mbr-gallery-item {
        width: 33%;
    }
}

@media (max-width: 500px) {
    .shops .mbr-shop .shopItemsModal {
        padding: 50px 10px 10px 10px;
    }
    .shops .mbr-shop .shop-title {
        max-width: 100%;
    }
    .shops .mbr-shop .mbr-gallery-item {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .shops .mbr-shop .sort-buttons {
        text-align: center;
        margin-right: 0 !important;
    }
}

@media (max-width: 767px) {
    .shops .mbr-shop .image-modal {
        text-align: center;
    }
    .shops .mbr-shop .image-modal img {
        max-height: 50vh;
        width: auto;
        max-width: 100%;
    }
    .shops .mbr-shop .shopItemsModal {
        top: 15%;
        bottom: 70px;
        left: 10%;
        width: 80%;
    }
    .shops .mbr-shop .shopItemsModal .image-modal {
        padding-right: 0;
    }
    .shops .mbr-shop .sidebar-background:after {
        top: -1%;
    }
}

@media (max-width: 1100px) {
    .shops .mbr-shop .shopItemsModal {
        max-height: 85vh;
        width: 90%;
        left: 5%;
        margin-left: 0;
    }
    .shops .mbr-shop .sort-buttons {
        margin-right: 21px;
    }
    .shops .mbr-shop .sidebar-background:after {
        right: 0;
        width: 100%;
    }
    .shops .mbr-shop .text-modal .card-description {
        width: 100%;
    }
    .shops .mbr-shop .text-modal .price-block {
        width: 100%;
    }
    .shops .mbr-shop .text-modal h4 {
        padding-top: 30px;
    }
}

.shops .shopItemsModal_wraper .mbr-section-btn {
    display: block !important;
}

.shops .range-slider .mbr-section-btn {
    margin: 0;
}

.shops .oldprice {
    color: #767676;
    padding-left: .8rem !important;
    text-decoration: line-through;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .shops .shopItemsModal.row {
        position: absolute !important;
        top: calc(50% - 300px) !important;
        left: calc(50% - 500px) !important;
    }
}

.shops .mbr-gallery-item .sidebar_wraper {
    background-color: #ffffff;
    padding-left: 15px;
    padding-right: 15px;
}

.shops .sidebar .sidebar_wraper {
    background-color: #f7f7f7;
}

.shops .mbr-gallery-item .price-block {
    text-align: left;
}

.shops .big-container {
    max-width: 1326px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.shops .mbr-shop .mbr-gallery-filter ul li {
    padding: 7px 16px 5px;
    margin: 4px 8px 4px 0;
    border: 1px solid;
    border-radius: 100px;
}

.shops .mbr-gallery-item .sidebar_wraper .item-title {
    text-align: left;
    font-weight: 700;
}

.shops .sidebar {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.shops .range-slider {
    -webkit-order: 1;
    order: 1;
}

.shops .sidebar-categories {
    -webkit-order: 2;
    order: 2;
}

.shops .bestseller-block {
    -webkit-order: 3;
    order: 3;
}

.shops .categories {
    padding: 0;
}

.shops .sidebar-title {
    font-weight: bold;
}

.shops .shop-item-price,
.shops .price-block {
    text-align: center;
}

.shops .item-title {
    text-align: center;
}

.shops .mbr-slider .carousel-indicators {
    position: relative;
    bottom: 0;
    margin-bottom: 1.5rem !important;
}

.botao-loja {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #ffffff;
}

.cid-rgPe1w2Fxk {
    padding-top: 105px;
    padding-bottom: 105px;
    background-image: url("/assets/images/barra-2000x429.png");
}

.cid-rgPe1w2Fxk .mbr-section-subtitle {
    color: #767676;
}

.cid-rh6qoBqsKB {
    padding-top: 120px;
    padding-bottom: 15px;
    background-color: #ffffff;
}

.cid-rh6rJHjBSu {
    background: #ffffff;
    padding-top: 0px;
    padding-bottom: 0px;
}

.cid-rh6rJHjBSu .container-fluid {
    padding: 0 3rem;
}

.cid-rh6rJHjBSu .image-block {
    margin: auto;
}

.cid-rh6rJHjBSu .image-block img {
    width: 100%;
}

@media (max-width: 767px) {
    .cid-rh6rJHjBSu .container-fluid {
        padding: 0 1rem;
    }
    .cid-rh6rJHjBSu .image-block {
        width: 100% !important;
    }
}

.cid-rhYaOCqd3B {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #ffffff;
}

.cid-rhYaO1ChOR {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #ffffff;
}

.cid-rh6x4w11Or {
    padding-top: 105px;
    padding-bottom: 0px;
    background-color: #ffffff;
}

.cid-rh6x4w11Or .mbr-section-subtitle {
    color: #767676;
}

.cid-rh6x4w11Or .mbr-section-title {
    color: #465052;
}

.cid-rgKEFKz0S1 {
    background: #ffffff;
    padding-top: 30px;
    padding-bottom: 60px;
}

.cid-rgKEFKz0S1 .container-fluid {
    padding: 0 3rem;
}

.cid-rgKEFKz0S1 .video-block {
    margin: auto;
}

@media (max-width: 767px) {
    .cid-rgKEFKz0S1 .container-fluid {
        padding: 0 1rem;
    }
    .cid-rgKEFKz0S1 .video-block {
        width: 100% !important;
    }
}

.cid-rgK6tjsYmo {
    padding-top: 0px;
    padding-bottom: 90px;
    background-color: #ffffff;
}

.cid-rgK6tjsYmo .mbr-section-subtitle {
    color: #767676;
}

.cid-rgK6tjsYmo .mbr-slider .carousel-control {
    background: #1b1b1b;
}

.cid-rgK6tjsYmo .mbr-slider .carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}

.cid-rgK6tjsYmo .mbr-slider .carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}

.cid-rgK6tjsYmo .mbr-slider .modal-body .close {
    background: #1b1b1b;
}

.cid-rgK6tjsYmo .mbr-gallery-item>div::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0;
    -webkit-transition: 0.2s opacity ease-in-out;
    transition: 0.2s opacity ease-in-out;
}

.cid-rgK6tjsYmo .icon-focus {
    font-size: 2rem !important;
    width: 50px;
    height: 50px;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
}

.cid-rgK6tjsYmo .icon-focus:before {
    content: '+';
    border-radius: 100px;
    background: #444444;
    width: 100%;
    height: 100%;
    padding-bottom: 6px;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.cid-rgK6tjsYmo .icon-video {
    font-size: 1.5rem !important;
    width: 50px;
    height: 50px;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
}

.cid-rgK6tjsYmo .icon-video:before {
    border-radius: 100px;
    background: #444444;
    width: 100%;
    height: 100%;
    padding-left: 6px;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.cid-rgK6tjsYmo .mbr-gallery-title {
    transition: all 0.5s ease;
    position: absolute;
    text-align: left;
    display: none;
    width: 100%;
    bottom: 0;
    right: 0;
    padding: 1rem;
    color: #ffffff;
    font-weight: bold;
    background: transparent;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
}

.cid-rgK6tjsYmo ul {
    font-size: 0;
}

.cid-rgK6tjsYmo .mbr-gallery-filter ul {
    text-align: left;
}

.cid-rgK6tjsYmo .mbr-gallery-filter ul li .btn {
    border: none !important;
    background-color: transparent;
    color: #59585d !important;
    padding: 0.5rem 1rem 0.6rem;
    border-radius: 0;
    margin: 0!important;
    transition: padding, border 0s, transform .2s;
}

.cid-rgK6tjsYmo .mbr-gallery-filter ul li .btn.active {
    padding: 0.5rem 1rem 0.5rem;
    border-radius: 0 !important;
}

.cid-rgK6tjsYmo .mbr-gallery-filter ul li {
    padding: 0;
    margin: 0 .2rem;
}

.cid-rgK6tjsYmo .mbr-gallery-filter ul li:first-child,
.cid-rgK6tjsYmo .mbr-gallery-filter ul li:last-child {
    margin: 0;
}

.cid-rgK6tjsYmo .mbr-gallery-item>div:hover .mbr-gallery-title {
    display: block;
}

.cid-rgK6tjsYmo .mbr-gallery-item>div:hover:before {
    opacity: 0.5 !important;
}

.cid-rgK6tjsYmo .btn {
    background: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.cid-rgK6tjsYmo .btn.active:after {
    animation: none;
}

.cid-rgK6tjsYmo .btn:active {
    box-shadow: none !important;
}

.cid-rgK6tjsYmo .btn:hover {
    background: transparent !important;
}

.cid-rgK6tjsYmo .btn:hover:before {
    background: transparent !important;
}

.cid-rgK6tjsYmo .btn:before {
    background-color: transparent !important;
}

.cid-rgK6tjsYmo .btn:focus {
    box-shadow: none !important;
}

.policy {
    color: #ae6267;
    font-family: 'Poppins';
    font-size: 2.5rem;
    font-weight: bold;
    background-color: white;
    margin-top: 3px;
}

.shopItemsModal .carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2370cac8' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.shopItemsModal .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2370cac8' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.check .container {
    background-color: #f2f2f2;
    padding: 5px 20px 15px 20px;
    border: 1px solid lightgrey;
    border-radius: 3px;
}