@import url(https://fonts.googleapis.com/css?family=Muli:200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap);


body {
    font-family: Muli;
}

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

.display-1 > .mbr-iconfont {
    font-size: 2.2rem;
}

.display-2 {
    font-family: 'Muli', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #130947;
}

.display-2 > .mbr-iconfont {
    font-size: 2.5rem;
}

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

.display-4 > .mbr-iconfont {
    font-size: 0.9rem;
}

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

.display-5 > .mbr-iconfont {
    font-size: 1.15rem;
}

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

.display-7 > .mbr-iconfont {
    font-size: 1.02rem;
}

/* ---- 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.76rem;
        font-size: calc(1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc(1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-2 {
        font-size: 2rem;
        font-size: calc(1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc(1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-4 {
        font-size: 0.72rem;
        font-size: calc(0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc(1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-5 {
        font-size: 0.92rem;
        font-size: calc(1.0525rem + (1.15 - 1.0525) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc(1.4 * (1.0525rem + (1.15 - 1.0525) * ((100vw - 20rem) / (48 - 20))));
    }
}

/* Buttons */
.btn {
    padding: 10px 15px;
    border-radius: 6px;
}

.btn-sm {
    padding: 5px 10px;
    border-radius: 6px;
}

.btn-md {
    padding: 15px 20px;
    border-radius: 6px;
}

.btn-lg {
    padding: 20px 25px;
    border-radius: 6px;
}

.bg-primary {
    background-color: #2e40be !important;
}

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

.bg-info {
    background-color: #6d7a8c !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn-warning,
.btn-warning:active,
.btn-warning.active {
    background-color: #e6ecf2 !important;
    border-color: #e6ecf2 !important;
    color: #4a6d8f !important;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
    color: #4a6d8f !important;
    background-color: #b4c6d8 !important;
    border-color: #b4c6d8 !important;
}

.btn-warning.disabled,
.btn-warning:disabled {
    color: #4a6d8f !important;
    background-color: #b4c6d8 !important;
    border-color: #b4c6d8 !important;
}

.btn-danger,
.btn-danger:active,
.btn-danger.active {
    background-color: #ececec !important;
    border-color: #ececec !important;
    color: #6d6d6d !important;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
    color: #6d6d6d !important;
    background-color: #c6c6c6 !important;
    border-color: #c6c6c6 !important;
}

.btn-danger.disabled,
.btn-danger:disabled {
    color: #6d6d6d !important;
    background-color: #c6c6c6 !important;
    border-color: #c6c6c6 !important;
}

.btn-white {
    color: #333333 !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-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-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
    background: none;
    border-color: #1a246c;
    color: #1a246c;
}

.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
    color: #ffffff;
    background-color: #2e40be;
    border-color: #2e40be;
}

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

.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
    background: none;
    border-color: #0c21b3;
    color: #0c21b3;
}

.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
    color: #ffffff;
    background-color: #344cf1;
    border-color: #344cf1;
}

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

.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
    background: none;
    border-color: #404853;
    color: #404853;
}

.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
    color: #ffffff;
    background-color: #6d7a8c;
    border-color: #6d7a8c;
}

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

.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
    background: none;
    border-color: #cccccc;
    color: #cccccc;
}

.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
    color: #808080;
    background-color: #ffffff;
    border-color: #ffffff;
}

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

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

.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
    color: #4a6d8f;
    background-color: #e6ecf2;
    border-color: #e6ecf2;
}

.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
    color: #4a6d8f !important;
    background-color: #e6ecf2 !important;
    border-color: #e6ecf2 !important;
}

.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
    background: none;
    border-color: #b9b9b9;
    color: #b9b9b9;
}

.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
    color: #6d6d6d;
    background-color: #ececec;
    border-color: #ececec;
}

.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
    color: #6d6d6d !important;
    background-color: #ececec !important;
    border-color: #ececec !important;
}

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

.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
    color: #ffffff;
    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;
}

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

.text-primary {
    color: #2e40be !important;
}

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

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

.text-info {
    color: #6d7a8c !important;
}

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

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

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

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

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

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

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

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

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

a.text-danger:hover,
a.text-danger:focus {
    color: #b9b9b9 !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: #70c770;
}

.alert-info {
    background-color: #6d7a8c;
}

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

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

.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
    box-shadow: none !important;
}

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

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

a,
a:hover {
    color: white;
}

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

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

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

.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;
}

.form-control {
    font-family: 'Muli', sans-serif;
    font-size: 1.02rem;
}

.form-control > .mbr-iconfont {
    font-size: 1.02rem;
}

blockquote {
    border-color: #2e40be;
}

/* Forms */
.mbr-form .btn {
    margin: 0.4rem 0;
}

.btn-primary:hover {
    color: #ffffff !important;
    background: #344cf1 !important;
    border-color: #344cf1 !important;
}

.form-control,
.jq-number__spin {
    background-color: #ffffff;
}

.jq-selectbox li:hover,
.jq-selectbox li.selected {
    background-color: #2e40be;
    color: #ffffff;
}

.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
    transition: 0.4s;
    border-top-color: currentColor;
    border-bottom-color: currentColor;
}

.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
    border-top-color: #2e40be;
    border-bottom-color: #2e40be;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
    color: #ffffff !important;
    background-color: #2e40be !important;
    box-shadow: none !important;
}

.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
    color: #ffffff !important;
    background: #344cf1 !important;
    box-shadow: none !important;
}

.lazy-bg {
    background-image: none !important;
}

.lazy-placeholder:not(section),
.lazy-none {
    display: block;
    position: relative;
    padding-bottom: 56.25%;
}

iframe.lazy-placeholder,
.lazy-placeholder:after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: transparent no-repeat center;
    background-size: contain;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%232e40be' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}

section.lazy-placeholder:after {
    opacity: 0.5;
}

.cid-stMKAVywrn {
    padding-top: 230px;
    padding-bottom: 150px;
    background-image: url("../../images/foto_farmacia.png");
}

.cid-stMKAVywrn .mbr-section-subtitle {
    color: #4f87fb;
    font-weight: 700;
    line-height: 1.43;
    letter-spacing: 2px;
}

.cid-stMKAVywrn .mbr-section-title {
    color: #130947;
    font-weight: 900;
}

.cid-stMKAVywrn .mbr-section-title .accent-word {
    color: #4f87fb;
}

.cid-stMKAVywrn .mbr-text {
    color: #6d7a8c;
}

.cid-stMKAVywrn .content-link {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    color: #130947;
}

.cid-stMKAVywrn .content-link span {
    margin-right: 15px;
    margin-left: 20px;
    padding: 13px;
    border-radius: 100%;
    color: #4f87fb;
    background-color: #ffffff;
    font-size: 2.275rem;
}

.cid-stMKAVywrn .separator {
    margin-top: -15px;
    margin-left: 0;
    margin-right: auto;
    width: 100%;
}

.cid-stMKAVywrn .separator .sep-holder {
    height: 1px;
    position: relative;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    width: 46%;
}

.cid-stMKAVywrn .separator .sep-holder .sep-line {
    border-color: #4f87fb !important;
    border-top-width: 5px;
    height: 1px;
    border-top: 5px solid #4f87fb;
    position: relative;
    top: 1px;
    width: 46%;
}

.cid-stMKAVywrn .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
    margin-top: 47px;
}

.cid-stMKAVywrn .mbr-section-btn .btn {
    border-radius: 4px;
    margin: 0.4rem 0.6rem 0.4rem 0 !important;
    padding: 15px 40px;
}

.cid-stMKAVywrn .mbr-section-btn .btn.display-4 {
    line-height: 2;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 13px;
}

@media (max-width: 991px) {
    .cid-stMKAVywrn .separator,
    .cid-stMKAVywrn .sep-holder,
    .cid-stMKAVywrn .sep-line {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .cid-stMKAVywrn .mbr-section-btn {
        -webkit-box-pack: center;
        justify-content: center;
    }
}

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

.cid-stNfFlHoRC .icon-transition span {
    padding: 0.1rem 0.9rem;
    border-radius: 50%;
    color: #ffffff;
    display: block;
    height: 3em;
    line-height: 3em;
    width: 3em;
    background: #4f87fb none repeat scroll 0 0;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    font-size: 14px;
}

.cid-stNfFlHoRC .photo-split {
    padding: 0;
}

.cid-stNfFlHoRC .photo-split img {
    max-height: 800px;
    width: auto;
}

.cid-stNfFlHoRC .counter-container ul {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    list-style-type: none;
}

.cid-stNfFlHoRC .counter-container ul li {
    margin-bottom: 1rem;
}

.cid-stNfFlHoRC .counter-container ul li:before {
    font-weight: 900;
    color: #4f87fb;
    display: inline-block;
    content: '✓';
    text-align: center;
    line-height: 1.5em;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    width: 25px;
    height: 25px;
}

.cid-stNfFlHoRC .wrap-block {
    padding: 3rem 3rem;
}

.cid-stNfFlHoRC .wrap-block .contents {
    margin-bottom: 40px;
    text-align: justify;
}

.cid-stNfFlHoRC .wrap-block .contents .mbr-subtitle {
    color: #4f87fb;
    margin-bottom: 10px;
    line-height: 1.85;
    letter-spacing: 2px;
    font-weight: 800;
}

.cid-stNfFlHoRC .wrap-block .contents .mbr-subtitle.display-4 {
    font-size: 13px;
}

.cid-stNfFlHoRC .wrap-block .contents .mbr-section-title {
    margin-bottom: 10px;
    color: #130947;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-align: left;
}

.cid-stNfFlHoRC .wrap-block .contents .mbr-section-text {
    margin-top: 10px;
    color: #6d7a8c;
    line-height: 1.5;
    letter-spacing: 0;
}

.cid-stNfFlHoRC .wrap-block .contents .responsive-iframe-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.cid-stNfFlHoRC .wrap-block .contents .responsive-iframe-container iframe,
.cid-stNfFlHoRC .wrap-block .contents .vresponsive-iframe-container object,
.cid-stNfFlHoRC .wrap-block .contents .vresponsive-iframe-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cid-stNfFlHoRC .wrap-block .mbr-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.cid-stNfFlHoRC .wrap-block .mbr-list ul li {
    display: inline-block;
    line-height: 1.5;
    font-size: 1.02rem;
    color: #6d7a8c;
}

.cid-stNfFlHoRC .wrap-block .mbr-list ul li span {
    text-align: center;
}

.cid-stNfFlHoRC .wrap-block .mbr-list.display-4 {
    font-size: 16px;
}

.cid-stNfFlHoRC .mbr-list {
    text-align: left;
}

.cid-stNfFlHoRC .info-widget {
    padding-left: 2rem;
    padding-top: 0.5rem;
    padding-right: 3rem;
    display: flex;
    -webkit-box-pack: start;
    justify-content: flex-start;
}

.cid-stNfFlHoRC .info-widget .widget-icon {
    display: inline-block;
    border-radius: 100%;
    padding: 18px;
    background-color: #4f87fb;
    font-size: 2.45rem;
    color: #ffffff;
    margin-right: 15px;
}

.cid-stNfFlHoRC .info-widget .signature {
    width: 40%;
    height: 75px;
    display: inline-block;
    margin-right: 15px;
    object-fit: contain;
}

.cid-stNfFlHoRC .info-widget .widget-content {
    display: flex;
    vertical-align: baseline;
    text-align: left;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
}

.cid-stNfFlHoRC .info-widget .widget-content .widget-title {
    margin-bottom: 7px;
    color: #130947;
}

.cid-stNfFlHoRC .info-widget .widget-content .widget-title.display-7 {
    font-size: 20px;
}

.cid-stNfFlHoRC .info-widget .widget-content .widget-text {
    margin-bottom: 0;
    color: #6d7a8c;
}

.cid-stNfFlHoRC .menu-content-right {
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.cid-stNfFlHoRC .menu-content-right .info-widget:last-child {
    padding-right: 0;
}

.cid-stNfFlHoRC .menu-content-right .info-widget:first-child {
    padding-left: 0;
}

@media (max-width: 991px) {
    .cid-stNfFlHoRC .contents .mbr-section-subtitle {
        text-align: left;
    }

    .cid-stNfFlHoRC .wrap-block {
        -webkit-box-ordinal-group: 2;
        order: 1;
    }

    .cid-stNfFlHoRC .photo-split img {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .cid-stNfFlHoRC .mbr-section-title,
    .cid-stNfFlHoRC .mbr-section-subtitle,
    .cid-stNfFlHoRC .mbr-text {
        text-align: left !important;
    }

    .cid-stNfFlHoRC .social-list {
        text-align: center !important;
    }

    .cid-stNfFlHoRC .info-widget {
        padding-left: 0;
    }
}

@media (max-width: 500px) {
    .cid-stNfFlHoRC .wrap-block {
        padding: 3rem 1rem;
    }
}

.cid-surWJv4wKn {
    padding-top: 350px;
    padding-bottom: 330px;
    background-image: url("../../images/foto_farmacia2.png");
}

.cid-surWJv4wKn .mbr-section-subtitle {
    color: #4f87fb;
    font-weight: 700;
    line-height: 1.43;
    letter-spacing: 2px;
}

.cid-surWJv4wKn .mbr-section-title {
    color: #130947;
    font-weight: 900;
}

.cid-surWJv4wKn .mbr-section-title .accent-word {
    color: #4f87fb;
}

.cid-surWJv4wKn .mbr-text {
    color: #6d7a8c;
}

.cid-surWJv4wKn .content-link {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    color: #130947;
}

.cid-surWJv4wKn .content-link span {
    margin-right: 15px;
    margin-left: 20px;
    padding: 13px;
    border-radius: 100%;
    color: #4f87fb;
    background-color: #ffffff;
    font-size: 2.275rem;
}

.cid-surWJv4wKn .separator {
    margin-top: -15px;
    margin-left: 0;
    margin-right: auto;
    width: 100%;
}

.cid-surWJv4wKn .separator .sep-holder {
    height: 1px;
    position: relative;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    width: 46%;
}

.cid-surWJv4wKn .separator .sep-holder .sep-line {
    border-color: #4f87fb !important;
    border-top-width: 5px;
    height: 1px;
    border-top: 5px solid #4f87fb;
    position: relative;
    top: 1px;
    width: 46%;
}

.cid-surWJv4wKn .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
    margin-top: 47px;
}

.cid-surWJv4wKn .mbr-section-btn .btn {
    border-radius: 4px;
    margin: 0.4rem 0.6rem 0.4rem 0 !important;
    padding: 15px 40px;
}

.cid-surWJv4wKn .mbr-section-btn .btn.display-4 {
    line-height: 2;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 13px;
}

@media (max-width: 991px) {
    .cid-surWJv4wKn .separator,
    .cid-surWJv4wKn .sep-holder,
    .cid-surWJv4wKn .sep-line {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .cid-surWJv4wKn .mbr-section-btn {
        -webkit-box-pack: center;
        justify-content: center;
    }
}

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

.cid-sus1f6lZcO .icon-transition span {
    padding: 0.1rem 0.9rem;
    border-radius: 50%;
    color: #ffffff;
    display: block;
    height: 3em;
    line-height: 3em;
    width: 3em;
    background: #4f87fb none repeat scroll 0 0;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    font-size: 14px;
}

.cid-sus1f6lZcO .content-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
}

.cid-sus1f6lZcO .photo-split {
    padding: 0;
    text-align: right;
}

.cid-sus1f6lZcO .photo-split img {
    max-height: 800px;
    width: auto;
}

.cid-sus1f6lZcO .counter-container ul {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    list-style-type: none;
}

.cid-sus1f6lZcO .counter-container ul li {
    margin-bottom: 1rem;
}

.cid-sus1f6lZcO .counter-container ul li:before {
    font-weight: 900;
    color: #4f87fb;
    display: inline-block;
    content: '✓';
    text-align: center;
    line-height: 1.5em;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    width: 25px;
    height: 25px;
}

.cid-sus1f6lZcO .wrap-block {
    padding: 3rem 3rem;
}

.cid-sus1f6lZcO .wrap-block .contents {
    margin-bottom: 40px;
}

.cid-sus1f6lZcO .wrap-block .contents .mbr-subtitle {
    color: #4f87fb;
    margin-bottom: 10px;
    line-height: 1.85;
    letter-spacing: 2px;
    font-weight: 800;
}

.cid-sus1f6lZcO .wrap-block .contents .mbr-subtitle.display-4 {
    font-size: 13px;
}

.cid-sus1f6lZcO .wrap-block .contents .mbr-section-title {
    margin-bottom: 10px;
    color: #130947;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.cid-sus1f6lZcO .wrap-block .contents .mbr-section-text {
    margin-top: 10px;
    color: #6d7a8c;
    line-height: 1.5;
    letter-spacing: 0;
}

.cid-sus1f6lZcO .wrap-block .contents .responsive-iframe-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.cid-sus1f6lZcO .wrap-block .contents .responsive-iframe-container iframe,
.cid-sus1f6lZcO .wrap-block .contents .vresponsive-iframe-container object,
.cid-sus1f6lZcO .wrap-block .contents .vresponsive-iframe-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cid-sus1f6lZcO .wrap-block .mbr-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.cid-sus1f6lZcO .wrap-block .mbr-list ul li {
    display: inline-block;
    line-height: 1.5;
    font-size: 1.px;
    color: #6d7a8c;
    font-size: 1.02rem;
}

.cid-sus1f6lZcO .wrap-block .mbr-list ul li span {
    text-align: center;
}

.cid-sus1f6lZcO .wrap-block .mbr-list.display-4 {
    font-size: 16px;
}

.cid-sus1f6lZcO .mbr-list {
    text-align: left;
}

.cid-sus1f6lZcO .info-widget {
    padding-left: 2rem;
    padding-top: 0.5rem;
    padding-right: 3rem;
    display: flex;
    -webkit-box-pack: start;
    justify-content: flex-start;
}

.cid-sus1f6lZcO .info-widget .widget-icon {
    display: inline-block;
    border-radius: 100%;
    padding: 18px;
    background-color: #4f87fb;
    font-size: 2.45rem;
    color: #ffffff;
    margin-right: 15px;
}

.cid-sus1f6lZcO .info-widget .signature {
    width: 40%;
    height: 75px;
    display: inline-block;
    margin-right: 15px;
    object-fit: contain;
}

.cid-sus1f6lZcO .info-widget .widget-content {
    display: flex;
    vertical-align: baseline;
    text-align: left;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
}

.cid-sus1f6lZcO .info-widget .widget-content .widget-title {
    margin-bottom: 7px;
    color: #130947;
}

.cid-sus1f6lZcO .info-widget .widget-content .widget-title.display-7 {
    font-size: 20px;
}

.cid-sus1f6lZcO .info-widget .widget-content .widget-text {
    margin-bottom: 0;
    color: #6d7a8c;
}

.cid-sus1f6lZcO .menu-content-right {
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.cid-sus1f6lZcO .menu-content-right .info-widget:last-child {
    padding-right: 0;
}

.cid-sus1f6lZcO .menu-content-right .info-widget:first-child {
    padding-left: 0;
}

@media (max-width: 991px) {
    .cid-sus1f6lZcO .contents .mbr-section-subtitle {
        text-align: left;
    }

    .cid-sus1f6lZcO .wrap-block {
        -webkit-box-ordinal-group: 2;
        order: 1;
    }

    .cid-sus1f6lZcO .photo-split img {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .cid-sus1f6lZcO .mbr-section-title,
    .cid-sus1f6lZcO .mbr-section-subtitle,
    .cid-sus1f6lZcO .mbr-text {
        text-align: left !important;
    }

    .cid-sus1f6lZcO .social-list {
        text-align: center !important;
    }

    .cid-sus1f6lZcO .info-widget {
        padding-left: 0;
    }
}

@media (max-width: 500px) {
    .cid-sus1f6lZcO .wrap-block {
        padding: 3rem 1rem;
    }
}

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

.cid-sus6hfs7b3 .mbr-subtitle {
    color: #4f87fb;
    margin-bottom: 10px;
    font-weight: 800;
}

.cid-sus6hfs7b3 .mbr-subtitle.display-4 {
    font-size: 13px;
    line-height: 1.85;
    letter-spacing: 2px;
}

.cid-sus6hfs7b3 .mbr-section-title {
    margin: 0;
    color: #130947;
    font-weight: 700;
    margin-bottom: 10px;
}

.cid-sus6hfs7b3 .mbr-section-title.display-2 {
    font-size: 38px;
    line-height: 1.26;
    letter-spacing: -0.5px;
}

.cid-sus6hfs7b3 .mbr-section-text {
    line-height: 1.5;
    color: #6d7a8c;
    font-weight: 400;
}

.cid-sus6hfs7b3 .mbr-section-text.display-7 {
    font-size: 16px;
}

.cid-sus6hfs7b3 .display-2 {
    font-size: 38px;
}

.cid-sus6hfs7b3 .wrapper {
    border-radius: 0.25rem;
    padding: 1rem;
    background: #ffffff;
    margin-bottom: 10px;
}

.cid-sus6hfs7b3 .wrapper .img {
    margin-bottom: 20px;
}

.cid-sus6hfs7b3 .wrapper .img .mbr-iconfont {
    font-size: 50px;
    top: 0;
    color: #4f87fb;
    border-radius: 50%;
}

.cid-sus6hfs7b3 .wrapper .mbr-card-title {
    color: #130947;
    font-weight: 700;
    padding-bottom: 14px;
    margin-bottom: 10px;
}

.cid-sus6hfs7b3 .wrapper .mbr-card-title.display-7 {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.cid-sus6hfs7b3 .wrapper .mbr-text {
    margin-top: 20px;
    margin-bottom: 20px;
    color: #6d7a8c;
    font-weight: 400;
}

.cid-sus6hfs7b3 .wrapper .mbr-text.display-4 {
    font-size: 16px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .cid-sus6hfs7b3 * {
        text-align: left;
    }
}

.cid-suyyfVGewF {
    padding-top: 270px;
    padding-bottom: 90px;
    background-image: url("../../images/foto_farmacia3.png");
}

.cid-suyyfVGewF .mbr-section-subtitle {
    color: #4f87fb;
    font-weight: 700;
    line-height: 1.43;
    letter-spacing: 2px;
}

.cid-suyyfVGewF .mbr-section-title {
    color: #130947;
    font-weight: 900;
}

.cid-suyyfVGewF .mbr-section-title .accent-word {
    color: #4f87fb;
}

.cid-suyyfVGewF .mbr-text {
    color: #6d7a8c;
}

.cid-suyyfVGewF .content-link {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    color: #130947;
}

.cid-suyyfVGewF .content-link span {
    margin-right: 15px;
    margin-left: 20px;
    padding: 13px;
    border-radius: 100%;
    color: #4f87fb;
    background-color: #ffffff;
    font-size: 2.275rem;
}

.cid-suyyfVGewF .separator {
    margin-top: -15px;
    margin-left: 0;
    margin-right: auto;
    width: 100%;
}

.cid-suyyfVGewF .separator .sep-holder {
    height: 1px;
    position: relative;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    width: 46%;
}

.cid-suyyfVGewF .separator .sep-holder .sep-line {
    border-color: #4f87fb !important;
    border-top-width: 5px;
    height: 1px;
    border-top: 5px solid #4f87fb;
    position: relative;
    top: 1px;
    width: 46%;
}

.cid-suyyfVGewF .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
    margin-top: 47px;
}

.cid-suyyfVGewF .mbr-section-btn .btn {
    border-radius: 4px;
    margin: 0.4rem 0.6rem 0.4rem 0 !important;
    padding: 15px 40px;
}

.cid-suyyfVGewF .mbr-section-btn .btn.display-4 {
    line-height: 2;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 13px;
}

@media (max-width: 991px) {
    .cid-suyyfVGewF .separator,
    .cid-suyyfVGewF .sep-holder,
    .cid-suyyfVGewF .sep-line {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .cid-suyyfVGewF .mbr-section-btn {
        -webkit-box-pack: center;
        justify-content: center;
    }
}

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

.cid-sus85jANkH .content-block {
    text-align: center;
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 141px;
    left: 4px;
    right: 0;
    margin: 0 auto;
    width: 80%;
    background-color: #187dec;
    transition: all 0.4s ease-in-out;
}

.cid-sus85jANkH .content-block .mbr-text {
    margin: 0;
}

.cid-sus85jANkH .content-section {
    height: 100%;
    padding: 0 3rem;
    margin-bottom: 2rem;
}

.cid-sus85jANkH .image-wrap:hover img {
    opacity: 1;
    -webkit-transform: translateY(-4%);
    transform: translateY(-4%);
}

.cid-sus85jANkH .image-wrap:hover > .content-block {
    opacity: .6;
}

.cid-sus85jANkH .image-wrap {
    width: 100%;
    height: 100%;
}

.cid-sus85jANkH .image-wrap img {
    transition: all 0.3s ease-in-out;
    width: 100%;
}

.cid-sus85jANkH h4.mbr-text a {
    display: block;
    min-width: 100%;
}

.cid-stNPI12W82 {
    padding-top: 135px;
    padding-bottom: 45px;
    background-image: url("../../images/foto_farmacia3.png");
}

.cid-stNPI12W82 .mbr-section-subtitle {
    color: #4f87fb;
    font-weight: 700;
    line-height: 1.43;
    letter-spacing: 2px;
}

.cid-stNPI12W82 .mbr-section-title {
    color: #130947;
    font-weight: 900;
}

.cid-stNPI12W82 .mbr-section-title .accent-word {
    color: #4f87fb;
}

.cid-stNPI12W82 .mbr-text {
    color: #6d7a8c;
}

.cid-stNPI12W82 .content-link {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    color: #130947;
}

.cid-stNPI12W82 .content-link span {
    margin-right: 15px;
    margin-left: 20px;
    padding: 13px;
    border-radius: 100%;
    color: #4f87fb;
    background-color: #ffffff;
    font-size: 2.275rem;
}

.cid-stNPI12W82 .separator {
    margin-top: -15px;
    margin-left: 0;
    margin-right: auto;
    width: 100%;
}

.cid-stNPI12W82 .separator .sep-holder {
    height: 1px;
    position: relative;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    width: 46%;
}

.cid-stNPI12W82 .separator .sep-holder .sep-line {
    border-color: #4f87fb !important;
    border-top-width: 5px;
    height: 1px;
    border-top: 5px solid #4f87fb;
    position: relative;
    top: 1px;
    width: 46%;
}

.cid-stNPI12W82 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
    margin-top: 47px;
}

.cid-stNPI12W82 .mbr-section-btn .btn {
    border-radius: 4px;
    margin: 0.4rem 0.6rem 0.4rem 0 !important;
    padding: 15px 40px;
}

.cid-stNPI12W82 .mbr-section-btn .btn.display-4 {
    line-height: 2;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 13px;
}

@media (max-width: 991px) {
    .cid-stNPI12W82 .separator,
    .cid-stNPI12W82 .sep-holder,
    .cid-stNPI12W82 .sep-line {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .cid-stNPI12W82 .mbr-section-btn {
        -webkit-box-pack: center;
        justify-content: center;
    }
}

.is-builder .cid-stMKkAQheu .navbar {
    padding-top: 20px !important;
}

.cid-stMKkAQheu .navbar {
    padding: 0.5rem 0;
    background: #ffffff;
    -webkit-transition: none;
    transition: none;
    min-height: 77px;
}

@media (min-width: 1200px) {
    .cid-stMKkAQheu .navbar .dropdown .dropdown-menu .dropdown-item {
        padding: 0.835em 2.5385em 0.835em 3.5385em !important;
        margin: 0 !important;
    }

    .cid-stMKkAQheu .navbar .dropdown .dropdown-menu .dropdown-item:hover {
        padding: 0.835em 2.5385em 0.835em 3.8385em !important;
    }
}

.cid-stMKkAQheu .menu-logo {
    display: flex;
    position: relative;
    -webkit-box-align: center;
    align-items: center;
    margin-right: auto;
}

.cid-stMKkAQheu .menu-logo .navbar-brand {
    display: flex;
    margin-left: 4rem;
    padding: 0.5rem 0;
    -webkit-transition: padding 0.2s;
    transition: padding 0.2s;
    min-height: 3.8rem;
    -webkit-box-align: center;
    align-items: center;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-caption-wrap {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    word-break: break-word;
    min-width: 7rem;
    margin: 0.3rem 0;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
    line-height: 1.2rem !important;
    padding-right: 2rem;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-logo {
    font-size: 4rem;
    -webkit-transition: font-size 0.25s;
    transition: font-size 0.25s;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-logo img {
    display: flex;
    width: auto;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
    -webkit-transition: font-size 0.25s;
    transition: font-size 0.25s;
}

.cid-stMKkAQheu .navbar-dropdown.bg-color.transparent.opened {
    background: #ffffff;
}

.cid-stMKkAQheu a {
    font-style: normal;
}

.cid-stMKkAQheu .nav-item span {
    padding-right: 0.4em;
    line-height: 0.5em;
    vertical-align: middle;
    position: relative;
    text-decoration: none;
}

.cid-stMKkAQheu .nav-item a {
    padding: 0.4rem 20px !important;
}

.cid-stMKkAQheu .dropdown-item:before {
    color: #ffffff;
    font-family: Material-Design-Icons !important;
    content: '\e716';
    display: inline-block;
    width: 0;
    position: absolute;
    left: 1.125rem;
    top: 1.1rem;
    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;
    transition: all 0.25s ease-in-out;
}

.cid-stMKkAQheu .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
}

.cid-stMKkAQheu .content-text {
    margin-bottom: 0;
}

.cid-stMKkAQheu .navbar-nav {
    position: relative;
    min-height: 100px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
}

.cid-stMKkAQheu .navbar-nav li:first-child > a {
    color: #4f87fb;
}

.cid-stMKkAQheu .navbar-nav li:last-child > a::before {
    position: absolute;
    content: '';
    height: 20px;
    width: 1px;
    right: -9px;
    margin-top: -10px;
    top: 50%;
    background-color: rgba(0, 0, 0, 0.46);
    margin-right: 12px;
    width: 0px;
    height: 0px;
}

@media (min-width: 1200px) {
    .cid-stMKkAQheu .navbar-nav .main-menu-animated-line {
        position: absolute;
        left: 0;
        width: 0;
        height: 0;
        z-index: 100;
        border-top: 4px solid #2e40be;
        -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
        transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    }

    .cid-stMKkAQheu .navbar-nav .main-menu-animated-line.bottom {
        bottom: 0;
    }

    .cid-stMKkAQheu .navbar-nav .nav-item a {
        margin: 0 1.1rem !important;
    }
}

@media (max-width: 1200px) {
    .cid-stMKkAQheu .navbar-nav .nav-item a {
        margin: 0 !important;
    }
}

.cid-stMKkAQheu .navbar-nav .nav-item span {
    padding-right: 0.1rem;
}

.cid-stMKkAQheu .display-4 > .mbr-iconfont {
    font-size: 1.23em;
}

.cid-stMKkAQheu .display-4 > .btn > .mbr-iconfont {
    font-size: 1.43em;
}

.cid-stMKkAQheu .nav-dropdown .dropdown-item {
    font-weight: 400;
}

.cid-stMKkAQheu .content-link {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.cid-stMKkAQheu .content-link:first-child {
    padding-left: 1.3rem;
}

@media (max-width: 1200px) {
    .cid-stMKkAQheu .content-link {
        display: none;
    }
}

.cid-stMKkAQheu .navbar-buttons.mbr-section-btn {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.cid-stMKkAQheu .navbar-buttons.mbr-section-btn > .mbr-iconfont {
    font-size: 17px !important;
    margin-right: 13px;
}

.cid-stMKkAQheu .nav-dropdown .link {
    font-weight: 600;
}

.cid-stMKkAQheu .nav-dropdown .link.display-4 {
    font-size: 15px;
}

.cid-stMKkAQheu .menu .navbar-brand .logo-text-part {
    vertical-align: top;
}

.cid-stMKkAQheu .content-left-side {
    text-align: center;
    padding-top: 3px;
}

@media (max-width: 575px) {
    .cid-stMKkAQheu .content-left-side {
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        padding: 0.5rem 0;
    }

    .cid-stMKkAQheu .content-left-side .content-link {
        font-size: 0.8rem;
        margin: 0;
        padding-bottom: 1rem;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
}

.cid-stMKkAQheu .content-right-side {
    text-align: center;
}

@media (max-width: 575px) {
    .cid-stMKkAQheu .content-right-side {
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        padding: 0.5rem 0;
    }

    .cid-stMKkAQheu .content-right-side .content-link {
        font-size: 0.8rem;
        margin: 0;
        padding-bottom: 1rem;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
}

.cid-stMKkAQheu .content-right-side .icons-block {
    padding-bottom: 5px;
    padding-left: 17px;
}

.cid-stMKkAQheu .content-right-side .content-link {
    margin-left: 1rem;
}

.cid-stMKkAQheu .content-right-side .content-link span {
    vertical-align: middle;
    font-weight: bold;
}

.cid-stMKkAQheu .menu-content-top {
    display: none;
    padding: 1rem 4rem 1rem 3.8rem;
    -webkit-transition: height 0.3s ease-in-out;
    transition: height 0.3s ease-in-out;
    padding-top: 15px;
    padding-bottom: 15px;
}

.cid-stMKkAQheu .content-left-side .content-link {
    margin-left: 1rem;
}

.cid-stMKkAQheu .content-left-side .content-link:first-child {
    padding-left: 0;
    margin-left: 0;
}

.cid-stMKkAQheu .content-left-side .content-link span {
    vertical-align: middle;
    font-weight: bold;
}

@media (max-width: 1200px) {
    .cid-stMKkAQheu .content-left-side {
        text-align: center;
        padding-bottom: 1rem;
    }

    .cid-stMKkAQheu .dropdown-item {
        padding: 0.235em 0 !important;
        margin: 0 !important;
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
    }

    .cid-stMKkAQheu .dropdown-item:before {
        display: none;
    }

    .cid-stMKkAQheu .menu-logo {
        width: 100%;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }

    .cid-stMKkAQheu .menu-bottom {
        width: 100%;
        padding: 0 1rem;
        display: block;
    }

    .cid-stMKkAQheu img {
        height: 1.8rem !important;
    }

    .cid-stMKkAQheu .btn {
        display: flex;
    }

    .cid-stMKkAQheu button.navbar-toggler {
        display: block;
        align-self: center;
    }

    .cid-stMKkAQheu .navbar-brand {
        margin-left: 1rem !important;
        margin-top: 0.5rem;
    }

    .cid-stMKkAQheu .navbar-toggleable-sm {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }

    .cid-stMKkAQheu .navbar-collapse {
        display: none !important;
        padding-right: 0 !important;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing,
    .cid-stMKkAQheu .navbar-collapse.show {
        display: block !important;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing .navbar-nav,
    .cid-stMKkAQheu .navbar-collapse.show .navbar-nav {
        display: block;
        text-align: center;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing .navbar-nav .nav-item,
    .cid-stMKkAQheu .navbar-collapse.show .navbar-nav .nav-item {
        clear: both;
        padding: 0.5rem 0;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing .navbar-buttons,
    .cid-stMKkAQheu .navbar-collapse.show .navbar-buttons {
        text-align: center;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing .navbar-buttons:last-child,
    .cid-stMKkAQheu .navbar-collapse.show .navbar-buttons:last-child {
        margin-bottom: 1rem;
    }

    .cid-stMKkAQheu .dropdown .dropdown-menu {
        width: 100%;
        text-align: center;
        position: relative;
        opacity: 0;
        display: block;
        height: 0;
        visibility: hidden;
        padding: 0;
        -webkit-transition-duration: 0.5s;
        transition-duration: 0.5s;
        -webkit-transition-property: opacity, padding, height;
        transition-property: opacity, padding, height;
    }

    .cid-stMKkAQheu .dropdown.open > .dropdown-menu {
        position: relative;
        opacity: 1;
        height: auto;
        padding: 1.4rem 0;
        visibility: visible;
    }

    .cid-stMKkAQheu .dropdown .dropdown-submenu {
        left: 0;
        text-align: center;
        width: 100%;
    }

    .cid-stMKkAQheu .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
        margin-top: 0;
        position: inherit;
        right: 0;
        top: 50%;
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: 0.3em;
        vertical-align: middle;
        content: '';
        border-top: 0.3em solid;
        border-right: 0.3em solid transparent;
        border-left: 0.3em solid transparent;
    }
}

@media (min-width: 1200px) {
    .cid-stMKkAQheu .navbar .menu-content-top {
        display: block;
    }

    .cid-stMKkAQheu .menu-content-top .row {
        -webkit-box-pack: justify;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .cid-stMKkAQheu .content-right-side {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: end;
        justify-content: flex-end;
        flex-basis: 70%;
        flex-shrink: 0;
        flex-wrap: wrap;
        text-align: right;
    }

    .cid-stMKkAQheu .content-left-side {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: start;
        justify-content: flex-start;
        flex-basis: 70%;
        flex-shrink: 0;
        flex-wrap: wrap;
        text-align: right;
    }

    .cid-stMKkAQheu .menu-content-top {
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    }

    .cid-stMKkAQheu .menu-bottom {
        display: flex;
    }

    .cid-stMKkAQheu .navbar {
        display: block;
        padding: 0;
    }

    .cid-stMKkAQheu .navbar .menu-logo {
        margin-right: auto;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
    }

    .cid-stMKkAQheu .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
        -webkit-align-self: initial;
        align-self: auto;
        display: flex !important;
        -webkit-box-align: center;
        align-items: center;
        z-index: 101;
        min-height: 76px;
    }

    .cid-stMKkAQheu .navbar-toggler {
        display: none;
    }
}

.cid-stMKkAQheu .navbar-short .menu-content-top {
    border: none;
    display: none;
}

.cid-stMKkAQheu .btn {
    padding: 15px 30px;
    font-weight: 800;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    border-width: 1px;
    box-shadow: none;
}

.cid-stMKkAQheu .btn .mbr-iconfont {
    font-size: 1.2em;
}

.cid-stMKkAQheu .btn.display-4 {
    letter-spacing: 0.5px;
    font-size: 13px;
    line-height: 1;
}

.cid-stMKkAQheu .navbar-toggleable-sm .navbar-collapse {
    -webkit-box-pack: end;
    justify-content: flex-end;
    padding-right: 4rem;
    width: 100%;
}

.cid-stMKkAQheu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
    flex-wrap: wrap;
    padding-left: 0;
}

.cid-stMKkAQheu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: center;
    align-self: center;
}

.cid-stMKkAQheu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
    padding-left: 0;
    padding-bottom: 0;
}

.cid-stMKkAQheu .dropdown .dropdown-menu {
    background: #ffffff;
    display: none;
    position: absolute;
    border-top: 3px solid #2e40be;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    min-width: 16.875rem;
    text-align: left;
    padding-top: 0;
    padding-bottom: 0;
}

@media (max-width: 1200px) {
    .cid-stMKkAQheu .dropdown .dropdown-menu {
        overflow: hidden;
    }
}

.cid-stMKkAQheu .dropdown .dropdown-menu .dropdown-item {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.cid-stMKkAQheu .dropdown .dropdown-menu .dropdown-item::after {
    right: -1rem;
}

.cid-stMKkAQheu .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #4f87fb;
    color: #ffffff;
}

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

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

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

.cid-stMKkAQheu .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
}

.cid-stMKkAQheu .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-stMKkAQheu .navbar-toggleable-sm.opened:after {
    position: absolute;
    width: 100vw;
    height: 100vh;
    content: '';
    background-color: rgba(0, 0, 0, 0.1);
    left: 0;
    bottom: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    z-index: 1000;
}

.cid-stMKkAQheu .navbar.navbar-short {
    min-height: 60px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-logo a {
    font-size: 2.5rem !important;
    line-height: 2.5rem;
    -webkit-transition: font-size 0.25s;
    transition: font-size 0.25s;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
    font-size: 2.5rem !important;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-logo a img {
    height: 3rem !important;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-brand {
    min-height: 3rem;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-nav {
    min-height: 60px;
}

.cid-stMKkAQheu button.navbar-toggler {
    width: 31px;
    height: 18px;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.cid-stMKkAQheu button.navbar-toggler:focus {
    outline: none;
}

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

.cid-stMKkAQheu button.navbar-toggler .hamburger span:nth-child(1) {
    top: 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.cid-stMKkAQheu button.navbar-toggler .hamburger span:nth-child(2) {
    top: 8px;
    -webkit-transition: all 0.15s;
    transition: all 0.15s;
}

.cid-stMKkAQheu button.navbar-toggler .hamburger span:nth-child(3) {
    top: 8px;
    -webkit-transition: all 0.15s;
    transition: all 0.15s;
}

.cid-stMKkAQheu button.navbar-toggler .hamburger span:nth-child(4) {
    top: 16px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

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

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

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

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

.cid-stMKkAQheu .navbar-fixed-top.opened {
    position: relative;
}

.cid-stMKkAQheu .collapsed.navbar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.cid-stMKkAQheu .collapsed .menu-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.cid-stMKkAQheu .collapsed .menu-logo {
    margin-right: 0;
}

.cid-stMKkAQheu .collapsed .btn {
    display: flex;
}

.cid-stMKkAQheu .collapsed .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing,
.cid-stMKkAQheu .collapsed .navbar-collapse.show {
    display: block !important;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-stMKkAQheu .collapsed .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-stMKkAQheu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-stMKkAQheu .collapsed .navbar-collapse.show .navbar-buttons {
    text-align: center;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-stMKkAQheu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
}

@media (min-width: 1200px) {
    .cid-stMKkAQheu .collapsed:not(.navbar-short) .navbar-collapse {
        max-height: calc(100vh - 3.8rem - 3.5rem);
    }

    .cid-stMKkAQheu .collapsed .dropdown .dropdown-menu {
        overflow: hidden;
    }
}

.cid-stMKkAQheu .collapsed button.navbar-toggler {
    display: block;
    -webkit-align-self: center;
    align-self: center;
}

.cid-stMKkAQheu .collapsed .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
}

.cid-stMKkAQheu .collapsed .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.cid-stMKkAQheu .collapsed .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
}

.cid-stMKkAQheu .collapsed .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
}

.cid-stMKkAQheu .collapsed .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
}

.cid-stMKkAQheu .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
}

.cid-stMKkAQheu .collapsed .dropdown-item:before {
    display: none;
}

.cid-stMKkAQheu .navbar-dropdown {
    flex-wrap: nowrap;
}

.cid-stMKkAQheu .navbar-collapse {
    flex-basis: auto;
    display: flex;
}

.cid-stMKkAQheu .nav-link:focus {
    outline: none;
}

.cid-stMKkAQheu .navbar-toggler {
    position: relative;
}

.cid-stMKkAQheu .dropdown-item.active,
.cid-stMKkAQheu .dropdown-item:active {
    background-color: #ffffff;
    color: #000000;
}

.cid-stMKkAQheu .nav-link:hover,
.cid-stMKkAQheu .dropdown-item:hover {
    color: #4f87fb;
}

.cid-stNL7pmXGR {
    padding-top: 30px;
    padding-bottom: 45px;
    background-color: #25303e;
}

.cid-stNL7pmXGR .links {
    text-align: center;
    color: #ffffff;
}

.cid-stNL7pmXGR p {
    margin: 0;
}

.cid-stNL7pmXGR a {
    color: #ffffff;
}

.cid-stNL7pmXGR a:hover {
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

.is-builder .cid-stMKkAQheu .navbar {
    padding-top: 20px !important;
}

.cid-stMKkAQheu .navbar {
    padding: 0.5rem 0;
    background: #ffffff;
    -webkit-transition: none;
    transition: none;
    min-height: 77px;
}

@media (min-width: 1200px) {
    .cid-stMKkAQheu .navbar .dropdown .dropdown-menu .dropdown-item {
        padding: 0.835em 2.5385em 0.835em 3.5385em !important;
        margin: 0 !important;
    }

    .cid-stMKkAQheu .navbar .dropdown .dropdown-menu .dropdown-item:hover {
        padding: 0.835em 2.5385em 0.835em 3.8385em !important;
    }
}

.cid-stMKkAQheu .menu-logo {
    display: flex;
    position: relative;
    -webkit-box-align: center;
    align-items: center;
    margin-right: auto;
}

.cid-stMKkAQheu .menu-logo .navbar-brand {
    display: flex;
    margin-left: 4rem;
    padding: 0.5rem 0;
    -webkit-transition: padding 0.2s;
    transition: padding 0.2s;
    min-height: 3.8rem;
    -webkit-box-align: center;
    align-items: center;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-caption-wrap {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    word-break: break-word;
    min-width: 7rem;
    margin: 0.3rem 0;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
    line-height: 1.2rem !important;
    padding-right: 2rem;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-logo {
    font-size: 4rem;
    -webkit-transition: font-size 0.25s;
    transition: font-size 0.25s;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-logo img {
    display: flex;
    width: auto;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
    -webkit-transition: font-size 0.25s;
    transition: font-size 0.25s;
}

.cid-stMKkAQheu .navbar-dropdown.bg-color.transparent.opened {
    background: #ffffff;
}

.cid-stMKkAQheu a {
    font-style: normal;
}

.cid-stMKkAQheu .nav-item span {
    padding-right: 0.4em;
    line-height: 0.5em;
    vertical-align: middle;
    position: relative;
    text-decoration: none;
}

.cid-stMKkAQheu .nav-item a {
    padding: 0.4rem 20px !important;
}

.cid-stMKkAQheu .dropdown-item:before {
    color: #ffffff;
    font-family: Material-Design-Icons !important;
    content: '\e716';
    display: inline-block;
    width: 0;
    position: absolute;
    left: 1.125rem;
    top: 1.1rem;
    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;
    transition: all 0.25s ease-in-out;
}

.cid-stMKkAQheu .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
}

.cid-stMKkAQheu .content-text {
    margin-bottom: 0;
}

.cid-stMKkAQheu .navbar-nav {
    position: relative;
    min-height: 100px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
}

.cid-stMKkAQheu .navbar-nav li:first-child > a {
    color: #4f87fb;
}

.cid-stMKkAQheu .navbar-nav li:last-child > a::before {
    position: absolute;
    content: '';
    height: 20px;
    width: 1px;
    right: -9px;
    margin-top: -10px;
    top: 50%;
    background-color: rgba(0, 0, 0, 0.46);
    margin-right: 12px;
    width: 0px;
    height: 0px;
}

@media (min-width: 1200px) {
    .cid-stMKkAQheu .navbar-nav .main-menu-animated-line {
        position: absolute;
        left: 0;
        width: 0;
        height: 0;
        z-index: 100;
        border-top: 4px solid #2e40be;
        -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
        transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    }

    .cid-stMKkAQheu .navbar-nav .main-menu-animated-line.bottom {
        bottom: 0;
    }

    .cid-stMKkAQheu .navbar-nav .nav-item a {
        margin: 0 1.1rem !important;
    }
}

@media (max-width: 1200px) {
    .cid-stMKkAQheu .navbar-nav .nav-item a {
        margin: 0 !important;
    }
}

.cid-stMKkAQheu .navbar-nav .nav-item span {
    padding-right: 0.1rem;
}

.cid-stMKkAQheu .display-4 > .mbr-iconfont {
    font-size: 1.23em;
}

.cid-stMKkAQheu .display-4 > .btn > .mbr-iconfont {
    font-size: 1.43em;
}

.cid-stMKkAQheu .nav-dropdown .dropdown-item {
    font-weight: 400;
}

.cid-stMKkAQheu .content-link {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.cid-stMKkAQheu .content-link:first-child {
    padding-left: 1.3rem;
}

@media (max-width: 1200px) {
    .cid-stMKkAQheu .content-link {
        display: none;
    }
}

.cid-stMKkAQheu .navbar-buttons.mbr-section-btn {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.cid-stMKkAQheu .navbar-buttons.mbr-section-btn > .mbr-iconfont {
    font-size: 17px !important;
    margin-right: 13px;
}

.cid-stMKkAQheu .nav-dropdown .link {
    font-weight: 600;
}

.cid-stMKkAQheu .nav-dropdown .link.display-4 {
    font-size: 15px;
}

.cid-stMKkAQheu .menu .navbar-brand .logo-text-part {
    vertical-align: top;
}

.cid-stMKkAQheu .content-left-side {
    text-align: center;
    padding-top: 3px;
}

@media (max-width: 575px) {
    .cid-stMKkAQheu .content-left-side {
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        padding: 0.5rem 0;
    }

    .cid-stMKkAQheu .content-left-side .content-link {
        font-size: 0.8rem;
        margin: 0;
        padding-bottom: 1rem;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
}

.cid-stMKkAQheu .content-right-side {
    text-align: center;
}

@media (max-width: 575px) {
    .cid-stMKkAQheu .content-right-side {
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        padding: 0.5rem 0;
    }

    .cid-stMKkAQheu .content-right-side .content-link {
        font-size: 0.8rem;
        margin: 0;
        padding-bottom: 1rem;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
}

.cid-stMKkAQheu .content-right-side .icons-block {
    padding-bottom: 5px;
    padding-left: 17px;
}

.cid-stMKkAQheu .content-right-side .content-link {
    margin-left: 1rem;
}

.cid-stMKkAQheu .content-right-side .content-link span {
    vertical-align: middle;
    font-weight: bold;
}

.cid-stMKkAQheu .menu-content-top {
    display: none;
    padding: 1rem 4rem 1rem 3.8rem;
    -webkit-transition: height 0.3s ease-in-out;
    transition: height 0.3s ease-in-out;
    padding-top: 15px;
    padding-bottom: 15px;
}

.cid-stMKkAQheu .content-left-side .content-link {
    margin-left: 1rem;
}

.cid-stMKkAQheu .content-left-side .content-link:first-child {
    padding-left: 0;
    margin-left: 0;
}

.cid-stMKkAQheu .content-left-side .content-link span {
    vertical-align: middle;
    font-weight: bold;
}

@media (max-width: 1200px) {
    .cid-stMKkAQheu .content-left-side {
        text-align: center;
        padding-bottom: 1rem;
    }

    .cid-stMKkAQheu .dropdown-item {
        padding: 0.235em 0 !important;
        margin: 0 !important;
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
    }

    .cid-stMKkAQheu .dropdown-item:before {
        display: none;
    }

    .cid-stMKkAQheu .menu-logo {
        width: 100%;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }

    .cid-stMKkAQheu .menu-bottom {
        width: 100%;
        padding: 0 1rem;
        display: block;
    }

    .cid-stMKkAQheu img {
        height: 1.8rem !important;
    }

    .cid-stMKkAQheu .btn {
        display: flex;
    }

    .cid-stMKkAQheu button.navbar-toggler {
        display: block;
        align-self: center;
    }

    .cid-stMKkAQheu .navbar-brand {
        margin-left: 1rem !important;
        margin-top: 0.5rem;
    }

    .cid-stMKkAQheu .navbar-toggleable-sm {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }

    .cid-stMKkAQheu .navbar-collapse {
        display: none !important;
        padding-right: 0 !important;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing,
    .cid-stMKkAQheu .navbar-collapse.show {
        display: block !important;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing .navbar-nav,
    .cid-stMKkAQheu .navbar-collapse.show .navbar-nav {
        display: block;
        text-align: center;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing .navbar-nav .nav-item,
    .cid-stMKkAQheu .navbar-collapse.show .navbar-nav .nav-item {
        clear: both;
        padding: 0.5rem 0;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing .navbar-buttons,
    .cid-stMKkAQheu .navbar-collapse.show .navbar-buttons {
        text-align: center;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing .navbar-buttons:last-child,
    .cid-stMKkAQheu .navbar-collapse.show .navbar-buttons:last-child {
        margin-bottom: 1rem;
    }

    .cid-stMKkAQheu .dropdown .dropdown-menu {
        width: 100%;
        text-align: center;
        position: relative;
        opacity: 0;
        display: block;
        height: 0;
        visibility: hidden;
        padding: 0;
        -webkit-transition-duration: 0.5s;
        transition-duration: 0.5s;
        -webkit-transition-property: opacity, padding, height;
        transition-property: opacity, padding, height;
    }

    .cid-stMKkAQheu .dropdown.open > .dropdown-menu {
        position: relative;
        opacity: 1;
        height: auto;
        padding: 1.4rem 0;
        visibility: visible;
    }

    .cid-stMKkAQheu .dropdown .dropdown-submenu {
        left: 0;
        text-align: center;
        width: 100%;
    }

    .cid-stMKkAQheu .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
        margin-top: 0;
        position: inherit;
        right: 0;
        top: 50%;
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: 0.3em;
        vertical-align: middle;
        content: '';
        border-top: 0.3em solid;
        border-right: 0.3em solid transparent;
        border-left: 0.3em solid transparent;
    }
}

@media (min-width: 1200px) {
    .cid-stMKkAQheu .navbar .menu-content-top {
        display: block;
    }

    .cid-stMKkAQheu .menu-content-top .row {
        -webkit-box-pack: justify;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .cid-stMKkAQheu .content-right-side {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: end;
        justify-content: flex-end;
        flex-basis: 70%;
        flex-shrink: 0;
        flex-wrap: wrap;
        text-align: right;
    }

    .cid-stMKkAQheu .content-left-side {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: start;
        justify-content: flex-start;
        flex-basis: 70%;
        flex-shrink: 0;
        flex-wrap: wrap;
        text-align: right;
    }

    .cid-stMKkAQheu .menu-content-top {
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    }

    .cid-stMKkAQheu .menu-bottom {
        display: flex;
    }

    .cid-stMKkAQheu .navbar {
        display: block;
        padding: 0;
    }

    .cid-stMKkAQheu .navbar .menu-logo {
        margin-right: auto;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
    }

    .cid-stMKkAQheu .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
        -webkit-align-self: initial;
        align-self: auto;
        display: flex !important;
        -webkit-box-align: center;
        align-items: center;
        z-index: 101;
        min-height: 76px;
    }

    .cid-stMKkAQheu .navbar-toggler {
        display: none;
    }
}

.cid-stMKkAQheu .navbar-short .menu-content-top {
    border: none;
    display: none;
}

.cid-stMKkAQheu .btn {
    padding: 15px 30px;
    font-weight: 800;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    border-width: 1px;
    box-shadow: none;
}

.cid-stMKkAQheu .btn .mbr-iconfont {
    font-size: 1.2em;
}

.cid-stMKkAQheu .btn.display-4 {
    letter-spacing: 0.5px;
    font-size: 13px;
    line-height: 1;
}

.cid-stMKkAQheu .navbar-toggleable-sm .navbar-collapse {
    -webkit-box-pack: end;
    justify-content: flex-end;
    padding-right: 4rem;
    width: 100%;
}

.cid-stMKkAQheu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
    flex-wrap: wrap;
    padding-left: 0;
}

.cid-stMKkAQheu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: center;
    align-self: center;
}

.cid-stMKkAQheu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
    padding-left: 0;
    padding-bottom: 0;
}

.cid-stMKkAQheu .dropdown .dropdown-menu {
    background: #ffffff;
    display: none;
    position: absolute;
    border-top: 3px solid #2e40be;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    min-width: 16.875rem;
    text-align: left;
    padding-top: 0;
    padding-bottom: 0;
}

@media (max-width: 1200px) {
    .cid-stMKkAQheu .dropdown .dropdown-menu {
        overflow: hidden;
    }
}

.cid-stMKkAQheu .dropdown .dropdown-menu .dropdown-item {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.cid-stMKkAQheu .dropdown .dropdown-menu .dropdown-item::after {
    right: -1rem;
}

.cid-stMKkAQheu .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #4f87fb;
    color: #ffffff;
}

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

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

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

.cid-stMKkAQheu .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
}

.cid-stMKkAQheu .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-stMKkAQheu .navbar-toggleable-sm.opened:after {
    position: absolute;
    width: 100vw;
    height: 100vh;
    content: '';
    background-color: rgba(0, 0, 0, 0.1);
    left: 0;
    bottom: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    z-index: 1000;
}

.cid-stMKkAQheu .navbar.navbar-short {
    min-height: 60px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-logo a {
    font-size: 2.5rem !important;
    line-height: 2.5rem;
    -webkit-transition: font-size 0.25s;
    transition: font-size 0.25s;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
    font-size: 2.5rem !important;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-logo a img {
    height: 3rem !important;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-brand {
    min-height: 3rem;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-nav {
    min-height: 60px;
}

.cid-stMKkAQheu button.navbar-toggler {
    width: 31px;
    height: 18px;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.cid-stMKkAQheu button.navbar-toggler:focus {
    outline: none;
}

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

.cid-stMKkAQheu button.navbar-toggler .hamburger span:nth-child(1) {
    top: 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.cid-stMKkAQheu button.navbar-toggler .hamburger span:nth-child(2) {
    top: 8px;
    -webkit-transition: all 0.15s;
    transition: all 0.15s;
}

.cid-stMKkAQheu button.navbar-toggler .hamburger span:nth-child(3) {
    top: 8px;
    -webkit-transition: all 0.15s;
    transition: all 0.15s;
}

.cid-stMKkAQheu button.navbar-toggler .hamburger span:nth-child(4) {
    top: 16px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

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

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

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

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

.cid-stMKkAQheu .navbar-fixed-top.opened {
    position: relative;
}

.cid-stMKkAQheu .collapsed.navbar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.cid-stMKkAQheu .collapsed .menu-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.cid-stMKkAQheu .collapsed .menu-logo {
    margin-right: 0;
}

.cid-stMKkAQheu .collapsed .btn {
    display: flex;
}

.cid-stMKkAQheu .collapsed .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing,
.cid-stMKkAQheu .collapsed .navbar-collapse.show {
    display: block !important;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-stMKkAQheu .collapsed .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-stMKkAQheu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-stMKkAQheu .collapsed .navbar-collapse.show .navbar-buttons {
    text-align: center;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-stMKkAQheu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
}

@media (min-width: 1200px) {
    .cid-stMKkAQheu .collapsed:not(.navbar-short) .navbar-collapse {
        max-height: calc(100vh - 3.8rem - 3.5rem);
    }

    .cid-stMKkAQheu .collapsed .dropdown .dropdown-menu {
        overflow: hidden;
    }
}

.cid-stMKkAQheu .collapsed button.navbar-toggler {
    display: block;
    -webkit-align-self: center;
    align-self: center;
}

.cid-stMKkAQheu .collapsed .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
}

.cid-stMKkAQheu .collapsed .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.cid-stMKkAQheu .collapsed .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
}

.cid-stMKkAQheu .collapsed .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
}

.cid-stMKkAQheu .collapsed .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
}

.cid-stMKkAQheu .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
}

.cid-stMKkAQheu .collapsed .dropdown-item:before {
    display: none;
}

.cid-stMKkAQheu .navbar-dropdown {
    flex-wrap: nowrap;
}

.cid-stMKkAQheu .navbar-collapse {
    flex-basis: auto;
    display: flex;
}

.cid-stMKkAQheu .nav-link:focus {
    outline: none;
}

.cid-stMKkAQheu .navbar-toggler {
    position: relative;
}

.cid-stMKkAQheu .dropdown-item.active,
.cid-stMKkAQheu .dropdown-item:active {
    background-color: #ffffff;
    color: #000000;
}

.cid-stMKkAQheu .nav-link:hover,
.cid-stMKkAQheu .dropdown-item:hover {
    color: #4f87fb;
}

.cid-stNX72KNS8 {
    padding-top: 150px;
    padding-bottom: 150px;
    background-image: url("../../images/foto_farmacia.png");
}

.cid-stNX72KNS8 .mbr-section-subtitle {
    color: #4f87fb;
    font-weight: 700;
    line-height: 1.43;
    letter-spacing: 2px;
}

.cid-stNX72KNS8 .mbr-section-title {
    color: #130947;
    font-weight: 900;
}

.cid-stNX72KNS8 .mbr-section-title .accent-word {
    color: #4f87fb;
}

.cid-stNX72KNS8 .mbr-text {
    color: #6d7a8c;
}

.cid-stNX72KNS8 .content-link {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    color: #130947;
}

.cid-stNX72KNS8 .content-link span {
    margin-right: 15px;
    margin-left: 20px;
    padding: 13px;
    border-radius: 100%;
    color: #4f87fb;
    background-color: #ffffff;
    font-size: 2.275rem;
}

.cid-stNX72KNS8 .separator {
    margin-top: -15px;
    margin-left: 0;
    margin-right: auto;
    width: 100%;
}

.cid-stNX72KNS8 .separator .sep-holder {
    height: 1px;
    position: relative;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    width: 46%;
}

.cid-stNX72KNS8 .separator .sep-holder .sep-line {
    border-color: #4f87fb !important;
    border-top-width: 5px;
    height: 1px;
    border-top: 5px solid #4f87fb;
    position: relative;
    top: 1px;
    width: 46%;
}

.cid-stNX72KNS8 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
    margin-top: 47px;
}

.cid-stNX72KNS8 .mbr-section-btn .btn {
    border-radius: 4px;
    margin: 0.4rem 0.6rem 0.4rem 0 !important;
    padding: 15px 40px;
}

.cid-stNX72KNS8 .mbr-section-btn .btn.display-4 {
    line-height: 2;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 13px;
}

@media (max-width: 991px) {
    .cid-stNX72KNS8 .separator,
    .cid-stNX72KNS8 .sep-holder,
    .cid-stNX72KNS8 .sep-line {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .cid-stNX72KNS8 .mbr-section-btn {
        -webkit-box-pack: center;
        justify-content: center;
    }
}

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

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

.cid-stNcqPR8Ex .container-table {
    margin: 0 auto;
}

.cid-stNcqPR8Ex .scroll {
    overflow-x: auto;
    padding: 0;
}

.cid-stNcqPR8Ex .responsive-iframe-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.cid-stNcqPR8Ex .responsive-iframe-container iframe,
.cid-stNcqPR8Ex .vresponsive-iframe-container object,
.cid-stNcqPR8Ex .vresponsive-iframe-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cid-stNcqPR8Ex .dataTables_wrapper {
    display: block;
}

.cid-stNcqPR8Ex .dataTables_wrapper .search {
    margin-bottom: .5rem;
}

.cid-stNcqPR8Ex .dataTables_wrapper .table {
    overflow-x: auto;
}

.cid-stNcqPR8Ex table {
    width: 100% !important;
    margin-top: 6px;
    border: 1px solid #e9e9e9;
    margin-bottom: 0;
}

.cid-stNcqPR8Ex table th {
    border-top: none;
    font-weight: 500;
    border: 1px solid #e9e9e9;
    transition: all .2s;
}

.cid-stNcqPR8Ex table th:hover {
    background: #e9e9e9;
    color: #000000;
}

.cid-stNcqPR8Ex table td {
    border: 1px solid #e9e9e9;
}

.cid-stNcqPR8Ex table.table {
    background: #ffffff;
}

.cid-stNcqPR8Ex .dataTables_filter {
    text-align: right;
    margin-bottom: .5rem;
}

.cid-stNcqPR8Ex .dataTables_filter label {
    display: inline;
    white-space: normal !important;
}

.cid-stNcqPR8Ex .dataTables_filter input {
    display: inline;
    width: auto;
    margin-left: .5rem;
    border-radius: 100px;
    padding-left: 1rem;
}

.cid-stNcqPR8Ex .dataTables_info {
    padding-bottom: 1rem;
    padding-top: 1rem;
    white-space: normal !important;
}

@media (max-width: 992px) {
    .cid-stNcqPR8Ex .dataTables_filter {
        text-align: center;
    }
}

@media (max-width: 350px) {
    .cid-stNcqPR8Ex .dataTables_filter {
        text-align: center;
    }

    .cid-stNcqPR8Ex .dataTables_filter input {
        width: 100% !important;
        margin-left: 0 !important;
    }
}

.cid-stNcqPR8Ex .head-item,
.cid-stNcqPR8Ex .body-item {
    text-align: center;
}

.cid-stO08JBA7v {
    padding-top: 30px;
    padding-bottom: 45px;
    background-color: #ffffff;
}

.cid-stO08JBA7v .mbr-text {
    color: #767676;
}

.cid-stO08JBA7v .card-wrapper {
    display: flex;
    flex-direction: row;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    transition: all 0.3s;
    padding: 1rem 1rem !important;
    box-shadow: 0 10px 55px 5px rgba(100, 118, 244, 0.35);
}

.cid-stO08JBA7v .card-wrapper:hover {
    transform: translateY(-1rem);
}

.cid-stO08JBA7v .card-wrapper:hover .ico2 {
    color: #2e40be !important;
}

.cid-stO08JBA7v .text-info:hover {
    color: inherit !important;
}

.cid-stO08JBA7v .ico2 {
    color: #e6ecf2 !important;
    transition: all 0.6s;
}

.cid-stO08JBA7v .card-box {
    padding: 0rem 1rem;
}

.cid-stO08JBA7v .card-img {
    width: auto;
}

.cid-stO08JBA7v .ico1 {
    font-size: 3rem !important;
}

.cid-stO08JBA7v h3,
.cid-stO08JBA7v h4 {
    padding: 0;
    margin: 0;
}

.cid-stO08JBA7v .card-title,
.cid-stO08JBA7v .card-img {
    color: #232323;
}

.cid-stO08JBA7v H3 {
    color: #767676;
}

.cid-stO08JBA7v H1 {
    color: #232323;
}

.cid-stNX4Rm69Y {
    padding-top: 150px;
    padding-bottom: 90px;
    background-image: url("../../images/foto_farmacia.png");
}

.cid-stNX4Rm69Y .mbr-section-subtitle {
    color: #4f87fb;
    font-weight: 700;
    line-height: 1.43;
    letter-spacing: 2px;
}

.cid-stNX4Rm69Y .mbr-section-title {
    color: #130947;
    font-weight: 900;
}

.cid-stNX4Rm69Y .mbr-section-title .accent-word {
    color: #4f87fb;
}

.cid-stNX4Rm69Y .mbr-text {
    color: #6d7a8c;
}

.cid-stNX4Rm69Y .content-link {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    color: #130947;
}

.cid-stNX4Rm69Y .content-link span {
    margin-right: 15px;
    margin-left: 20px;
    padding: 13px;
    border-radius: 100%;
    color: #4f87fb;
    background-color: #ffffff;
    font-size: 2.275rem;
}

.cid-stNX4Rm69Y .separator {
    margin-top: -15px;
    margin-left: 0;
    margin-right: auto;
    width: 100%;
}

.cid-stNX4Rm69Y .separator .sep-holder {
    height: 1px;
    position: relative;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    width: 46%;
}

.cid-stNX4Rm69Y .separator .sep-holder .sep-line {
    border-color: #4f87fb !important;
    border-top-width: 5px;
    height: 1px;
    border-top: 5px solid #4f87fb;
    position: relative;
    top: 1px;
    width: 46%;
}

.cid-stNX4Rm69Y .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
    margin-top: 47px;
}

.cid-stNX4Rm69Y .mbr-section-btn .btn {
    border-radius: 4px;
    margin: 0.4rem 0.6rem 0.4rem 0 !important;
    padding: 15px 40px;
}

.cid-stNX4Rm69Y .mbr-section-btn .btn.display-4 {
    line-height: 2;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 13px;
}

@media (max-width: 991px) {
    .cid-stNX4Rm69Y .separator,
    .cid-stNX4Rm69Y .sep-holder,
    .cid-stNX4Rm69Y .sep-line {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .cid-stNX4Rm69Y .mbr-section-btn {
        -webkit-box-pack: center;
        justify-content: center;
    }
}

.cid-stNXlM0syb {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #25303e;
}

.cid-stNXlM0syb .links {
    text-align: center;
    color: #ffffff;
}

.cid-stNXlM0syb p {
    margin: 0;
}

.cid-stNXlM0syb a {
    color: #ffffff;
}

.cid-stNXlM0syb a:hover {
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

.is-builder .cid-stNNelKrXP .navbar {
    padding-top: 20px !important;
}

.cid-stNNelKrXP .navbar {
    padding: 0.5rem 0;
    background: #ffffff;
    -webkit-transition: none;
    transition: none;
    min-height: 77px;
}

@media (min-width: 1200px) {
    .cid-stNNelKrXP .navbar .dropdown .dropdown-menu .dropdown-item {
        padding: 0.835em 2.5385em 0.835em 3.5385em !important;
        margin: 0 !important;
    }

    .cid-stNNelKrXP .navbar .dropdown .dropdown-menu .dropdown-item:hover {
        padding: 0.835em 2.5385em 0.835em 3.8385em !important;
    }
}

.cid-stNNelKrXP .menu-logo {
    display: flex;
    position: relative;
    -webkit-box-align: center;
    align-items: center;
    margin-right: auto;
}

.cid-stNNelKrXP .menu-logo .navbar-brand {
    display: flex;
    margin-left: 4rem;
    padding: 0.5rem 0;
    -webkit-transition: padding 0.2s;
    transition: padding 0.2s;
    min-height: 3.8rem;
    -webkit-box-align: center;
    align-items: center;
}

.cid-stNNelKrXP .menu-logo .navbar-brand .navbar-caption-wrap {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    word-break: break-word;
    min-width: 7rem;
    margin: 0.3rem 0;
}

.cid-stNNelKrXP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
    line-height: 1.2rem !important;
    padding-right: 2rem;
}

.cid-stNNelKrXP .menu-logo .navbar-brand .navbar-logo {
    font-size: 4rem;
    -webkit-transition: font-size 0.25s;
    transition: font-size 0.25s;
}

.cid-stNNelKrXP .menu-logo .navbar-brand .navbar-logo img {
    display: flex;
    width: auto;
}

.cid-stNNelKrXP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
    -webkit-transition: font-size 0.25s;
    transition: font-size 0.25s;
}

.cid-stNNelKrXP .navbar-dropdown.bg-color.transparent.opened {
    background: #ffffff;
}

.cid-stNNelKrXP a {
    font-style: normal;
}

.cid-stNNelKrXP .nav-item span {
    padding-right: 0.4em;
    line-height: 0.5em;
    vertical-align: middle;
    position: relative;
    text-decoration: none;
}

.cid-stNNelKrXP .nav-item a {
    padding: 0.4rem 20px !important;
}

.cid-stNNelKrXP .dropdown-item:before {
    color: #ffffff;
    font-family: Material-Design-Icons !important;
    content: '\e716';
    display: inline-block;
    width: 0;
    position: absolute;
    left: 1.125rem;
    top: 1.1rem;
    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;
    transition: all 0.25s ease-in-out;
}

.cid-stNNelKrXP .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
}

.cid-stNNelKrXP .content-text {
    margin-bottom: 0;
}

.cid-stNNelKrXP .navbar-nav {
    position: relative;
    min-height: 100px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
}

.cid-stNNelKrXP .navbar-nav li:first-child > a {
    color: #4f87fb;
}

.cid-stNNelKrXP .navbar-nav li:last-child > a::before {
    position: absolute;
    content: '';
    height: 20px;
    width: 1px;
    right: -9px;
    margin-top: -10px;
    top: 50%;
    background-color: rgba(0, 0, 0, 0.46);
    margin-right: 12px;
    width: 0px;
    height: 0px;
}

@media (min-width: 1200px) {
    .cid-stNNelKrXP .navbar-nav .main-menu-animated-line {
        position: absolute;
        left: 0;
        width: 0;
        height: 0;
        z-index: 100;
        border-top: 4px solid #2e40be;
        -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
        transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    }

    .cid-stNNelKrXP .navbar-nav .main-menu-animated-line.bottom {
        bottom: 0;
    }

    .cid-stNNelKrXP .navbar-nav .nav-item a {
        margin: 0 1.1rem !important;
    }
}

@media (max-width: 1200px) {
    .cid-stNNelKrXP .navbar-nav .nav-item a {
        margin: 0 !important;
    }
}

.cid-stNNelKrXP .navbar-nav .nav-item span {
    padding-right: 0.1rem;
}

.cid-stNNelKrXP .display-4 > .mbr-iconfont {
    font-size: 1.23em;
}

.cid-stNNelKrXP .display-4 > .btn > .mbr-iconfont {
    font-size: 1.43em;
}

.cid-stNNelKrXP .nav-dropdown .dropdown-item {
    font-weight: 400;
}

.cid-stNNelKrXP .content-link {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.cid-stNNelKrXP .content-link:first-child {
    padding-left: 1.3rem;
}

@media (max-width: 1200px) {
    .cid-stNNelKrXP .content-link {
        display: none;
    }
}

.cid-stNNelKrXP .navbar-buttons.mbr-section-btn {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.cid-stNNelKrXP .navbar-buttons.mbr-section-btn > .mbr-iconfont {
    font-size: 17px !important;
    margin-right: 13px;
}

.cid-stNNelKrXP .nav-dropdown .link {
    font-weight: 600;
}

.cid-stNNelKrXP .nav-dropdown .link.display-4 {
    font-size: 15px;
}

.cid-stNNelKrXP .menu .navbar-brand .logo-text-part {
    vertical-align: top;
}

.cid-stNNelKrXP .content-left-side {
    text-align: center;
    padding-top: 3px;
}

@media (max-width: 575px) {
    .cid-stNNelKrXP .content-left-side {
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        padding: 0.5rem 0;
    }

    .cid-stNNelKrXP .content-left-side .content-link {
        font-size: 0.8rem;
        margin: 0;
        padding-bottom: 1rem;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
}

.cid-stNNelKrXP .content-right-side {
    text-align: center;
}

@media (max-width: 575px) {
    .cid-stNNelKrXP .content-right-side {
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        padding: 0.5rem 0;
    }

    .cid-stNNelKrXP .content-right-side .content-link {
        font-size: 0.8rem;
        margin: 0;
        padding-bottom: 1rem;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
}

.cid-stNNelKrXP .content-right-side .icons-block {
    padding-bottom: 5px;
    padding-left: 17px;
}

.cid-stNNelKrXP .content-right-side .content-link {
    margin-left: 1rem;
}

.cid-stNNelKrXP .content-right-side .content-link span {
    vertical-align: middle;
    font-weight: bold;
}

.cid-stNNelKrXP .menu-content-top {
    display: none;
    padding: 1rem 4rem 1rem 3.8rem;
    -webkit-transition: height 0.3s ease-in-out;
    transition: height 0.3s ease-in-out;
    padding-top: 15px;
    padding-bottom: 15px;
}

.cid-stNNelKrXP .content-left-side .content-link {
    margin-left: 1rem;
}

.cid-stNNelKrXP .content-left-side .content-link:first-child {
    padding-left: 0;
    margin-left: 0;
}

.cid-stNNelKrXP .content-left-side .content-link span {
    vertical-align: middle;
    font-weight: bold;
}

@media (max-width: 1200px) {
    .cid-stNNelKrXP .content-left-side {
        text-align: center;
        padding-bottom: 1rem;
    }

    .cid-stNNelKrXP .dropdown-item {
        padding: 0.235em 0 !important;
        margin: 0 !important;
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
    }

    .cid-stNNelKrXP .dropdown-item:before {
        display: none;
    }

    .cid-stNNelKrXP .menu-logo {
        width: 100%;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }

    .cid-stNNelKrXP .menu-bottom {
        width: 100%;
        padding: 0 1rem;
        display: block;
    }

    .cid-stNNelKrXP img {
        height: 3.8rem !important;
    }

    .cid-stNNelKrXP .btn {
        display: flex;
    }

    .cid-stNNelKrXP button.navbar-toggler {
        display: block;
        align-self: center;
    }

    .cid-stNNelKrXP .navbar-brand {
        margin-left: 1rem !important;
        margin-top: 0.5rem;
    }

    .cid-stNNelKrXP .navbar-toggleable-sm {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }

    .cid-stNNelKrXP .navbar-collapse {
        display: none !important;
        padding-right: 0 !important;
    }

    .cid-stNNelKrXP .navbar-collapse.collapsing,
    .cid-stNNelKrXP .navbar-collapse.show {
        display: block !important;
    }

    .cid-stNNelKrXP .navbar-collapse.collapsing .navbar-nav,
    .cid-stNNelKrXP .navbar-collapse.show .navbar-nav {
        display: block;
        text-align: center;
    }

    .cid-stNNelKrXP .navbar-collapse.collapsing .navbar-nav .nav-item,
    .cid-stNNelKrXP .navbar-collapse.show .navbar-nav .nav-item {
        clear: both;
        padding: 0.5rem 0;
    }

    .cid-stNNelKrXP .navbar-collapse.collapsing .navbar-buttons,
    .cid-stNNelKrXP .navbar-collapse.show .navbar-buttons {
        text-align: center;
    }

    .cid-stNNelKrXP .navbar-collapse.collapsing .navbar-buttons:last-child,
    .cid-stNNelKrXP .navbar-collapse.show .navbar-buttons:last-child {
        margin-bottom: 1rem;
    }

    .cid-stNNelKrXP .dropdown .dropdown-menu {
        width: 100%;
        text-align: center;
        position: relative;
        opacity: 0;
        display: block;
        height: 0;
        visibility: hidden;
        padding: 0;
        -webkit-transition-duration: 0.5s;
        transition-duration: 0.5s;
        -webkit-transition-property: opacity, padding, height;
        transition-property: opacity, padding, height;
    }

    .cid-stNNelKrXP .dropdown.open > .dropdown-menu {
        position: relative;
        opacity: 1;
        height: auto;
        padding: 1.4rem 0;
        visibility: visible;
    }

    .cid-stNNelKrXP .dropdown .dropdown-submenu {
        left: 0;
        text-align: center;
        width: 100%;
    }

    .cid-stNNelKrXP .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
        margin-top: 0;
        position: inherit;
        right: 0;
        top: 50%;
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: 0.3em;
        vertical-align: middle;
        content: '';
        border-top: 0.3em solid;
        border-right: 0.3em solid transparent;
        border-left: 0.3em solid transparent;
    }
}

@media (min-width: 1200px) {
    .cid-stNNelKrXP .navbar .menu-content-top {
        display: block;
    }

    .cid-stNNelKrXP .menu-content-top .row {
        -webkit-box-pack: justify;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .cid-stNNelKrXP .content-right-side {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: end;
        justify-content: flex-end;
        flex-basis: 70%;
        flex-shrink: 0;
        flex-wrap: wrap;
        text-align: right;
    }

    .cid-stNNelKrXP .content-left-side {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: start;
        justify-content: flex-start;
        flex-basis: 70%;
        flex-shrink: 0;
        flex-wrap: wrap;
        text-align: right;
    }

    .cid-stNNelKrXP .menu-content-top {
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    }

    .cid-stNNelKrXP .menu-bottom {
        display: flex;
    }

    .cid-stNNelKrXP .navbar {
        display: block;
        padding: 0;
    }

    .cid-stNNelKrXP .navbar .menu-logo {
        margin-right: auto;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
    }

    .cid-stNNelKrXP .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
        -webkit-align-self: initial;
        align-self: auto;
        display: flex !important;
        -webkit-box-align: center;
        align-items: center;
        z-index: 101;
        min-height: 76px;
    }

    .cid-stNNelKrXP .navbar-toggler {
        display: none;
    }
}

.cid-stNNelKrXP .navbar-short .menu-content-top {
    border: none;
    display: none;
}

.cid-stNNelKrXP .btn {
    padding: 15px 30px;
    font-weight: 800;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    border-width: 1px;
    box-shadow: none;
}

.cid-stNNelKrXP .btn .mbr-iconfont {
    font-size: 1.2em;
}

.cid-stNNelKrXP .btn.display-4 {
    letter-spacing: 0.5px;
    font-size: 13px;
    line-height: 1;
}

.cid-stNNelKrXP .navbar-toggleable-sm .navbar-collapse {
    -webkit-box-pack: end;
    justify-content: flex-end;
    padding-right: 4rem;
    width: 100%;
}

.cid-stNNelKrXP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
    flex-wrap: wrap;
    padding-left: 0;
}

.cid-stNNelKrXP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: center;
    align-self: center;
}

.cid-stNNelKrXP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
    padding-left: 0;
    padding-bottom: 0;
}

.cid-stNNelKrXP .dropdown .dropdown-menu {
    background: #ffffff;
    display: none;
    position: absolute;
    border-top: 3px solid #2e40be;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    min-width: 16.875rem;
    text-align: left;
    padding-top: 0;
    padding-bottom: 0;
}

@media (max-width: 1200px) {
    .cid-stNNelKrXP .dropdown .dropdown-menu {
        overflow: hidden;
    }
}

.cid-stNNelKrXP .dropdown .dropdown-menu .dropdown-item {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.cid-stNNelKrXP .dropdown .dropdown-menu .dropdown-item::after {
    right: -1rem;
}

.cid-stNNelKrXP .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #4f87fb;
    color: #ffffff;
}

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

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

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

.cid-stNNelKrXP .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
}

.cid-stNNelKrXP .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-stNNelKrXP .navbar-toggleable-sm.opened:after {
    position: absolute;
    width: 100vw;
    height: 100vh;
    content: '';
    background-color: rgba(0, 0, 0, 0.1);
    left: 0;
    bottom: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    z-index: 1000;
}

.cid-stNNelKrXP .navbar.navbar-short {
    min-height: 60px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.cid-stNNelKrXP .navbar.navbar-short .navbar-logo a {
    font-size: 2.5rem !important;
    line-height: 2.5rem;
    -webkit-transition: font-size 0.25s;
    transition: font-size 0.25s;
}

.cid-stNNelKrXP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
    font-size: 2.5rem !important;
}

.cid-stNNelKrXP .navbar.navbar-short .navbar-logo a img {
    height: 3rem !important;
}

.cid-stNNelKrXP .navbar.navbar-short .navbar-brand {
    min-height: 3rem;
}

.cid-stNNelKrXP .navbar.navbar-short .navbar-nav {
    min-height: 60px;
}

.cid-stNNelKrXP button.navbar-toggler {
    width: 31px;
    height: 18px;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.cid-stNNelKrXP button.navbar-toggler:focus {
    outline: none;
}

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

.cid-stNNelKrXP button.navbar-toggler .hamburger span:nth-child(1) {
    top: 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.cid-stNNelKrXP button.navbar-toggler .hamburger span:nth-child(2) {
    top: 8px;
    -webkit-transition: all 0.15s;
    transition: all 0.15s;
}

.cid-stNNelKrXP button.navbar-toggler .hamburger span:nth-child(3) {
    top: 8px;
    -webkit-transition: all 0.15s;
    transition: all 0.15s;
}

.cid-stNNelKrXP button.navbar-toggler .hamburger span:nth-child(4) {
    top: 16px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

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

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

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

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

.cid-stNNelKrXP .navbar-fixed-top.opened {
    position: relative;
}

.cid-stNNelKrXP .collapsed.navbar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.cid-stNNelKrXP .collapsed .menu-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.cid-stNNelKrXP .collapsed .menu-logo {
    margin-right: 0;
}

.cid-stNNelKrXP .collapsed .btn {
    display: flex;
}

.cid-stNNelKrXP .collapsed .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
}

.cid-stNNelKrXP .collapsed .navbar-collapse.collapsing,
.cid-stNNelKrXP .collapsed .navbar-collapse.show {
    display: block !important;
}

.cid-stNNelKrXP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-stNNelKrXP .collapsed .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
}

.cid-stNNelKrXP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-stNNelKrXP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
}

.cid-stNNelKrXP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-stNNelKrXP .collapsed .navbar-collapse.show .navbar-buttons {
    text-align: center;
}

.cid-stNNelKrXP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-stNNelKrXP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
}

@media (min-width: 1200px) {
    .cid-stNNelKrXP .collapsed:not(.navbar-short) .navbar-collapse {
        max-height: calc(100vh - 3.8rem - 3.5rem);
    }

    .cid-stNNelKrXP .collapsed .dropdown .dropdown-menu {
        overflow: hidden;
    }
}

.cid-stNNelKrXP .collapsed button.navbar-toggler {
    display: block;
    -webkit-align-self: center;
    align-self: center;
}

.cid-stNNelKrXP .collapsed .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
}

.cid-stNNelKrXP .collapsed .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.cid-stNNelKrXP .collapsed .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
}

.cid-stNNelKrXP .collapsed .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
}

.cid-stNNelKrXP .collapsed .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
}

.cid-stNNelKrXP .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
}

.cid-stNNelKrXP .collapsed .dropdown-item:before {
    display: none;
}

.cid-stNNelKrXP .navbar-dropdown {
    flex-wrap: nowrap;
}

.cid-stNNelKrXP .navbar-collapse {
    flex-basis: auto;
    display: flex;
}

.cid-stNNelKrXP .nav-link:focus {
    outline: none;
}

.cid-stNNelKrXP .navbar-toggler {
    position: relative;
}

.cid-stNNelKrXP .dropdown-item.active,
.cid-stNNelKrXP .dropdown-item:active {
    background-color: #ffffff;
    color: #000000;
}

.cid-stNNelKrXP .nav-link:hover,
.cid-stNNelKrXP .dropdown-item:hover {
    color: #4f87fb;
}

.cid-stNPPh69Np {
    padding-top: 120px;
    padding-bottom: 150px;
    background-image: url("../../images/foto_farmacia.png");
}

.cid-stNPPh69Np .mbr-section-subtitle {
    color: #4f87fb;
    font-weight: 700;
    line-height: 1.43;
    letter-spacing: 2px;
}

.cid-stNPPh69Np .mbr-section-title {
    color: #130947;
    font-weight: 900;
}

.cid-stNPPh69Np .mbr-section-title .accent-word {
    color: #4f87fb;
}

.cid-stNPPh69Np .mbr-text {
    color: #6d7a8c;
}

.cid-stNPPh69Np .content-link {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    color: #130947;
}

.cid-stNPPh69Np .content-link span {
    margin-right: 15px;
    margin-left: 20px;
    padding: 13px;
    border-radius: 100%;
    color: #4f87fb;
    background-color: #ffffff;
    font-size: 2.275rem;
}

.cid-stNPPh69Np .separator {
    margin-top: -15px;
    margin-left: 0;
    margin-right: auto;
    width: 100%;
}

.cid-stNPPh69Np .separator .sep-holder {
    height: 1px;
    position: relative;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    width: 46%;
}

.cid-stNPPh69Np .separator .sep-holder .sep-line {
    border-color: #4f87fb !important;
    border-top-width: 5px;
    height: 1px;
    border-top: 5px solid #4f87fb;
    position: relative;
    top: 1px;
    width: 46%;
}

.cid-stNPPh69Np .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
    margin-top: 47px;
}

.cid-stNPPh69Np .mbr-section-btn .btn {
    border-radius: 4px;
    margin: 0.4rem 0.6rem 0.4rem 0 !important;
    padding: 15px 40px;
}

.cid-stNPPh69Np .mbr-section-btn .btn.display-4 {
    line-height: 2;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 13px;
}

@media (max-width: 991px) {
    .cid-stNPPh69Np .separator,
    .cid-stNPPh69Np .sep-holder,
    .cid-stNPPh69Np .sep-line {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .cid-stNPPh69Np .mbr-section-btn {
        -webkit-box-pack: center;
        justify-content: center;
    }
}

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

.cid-surC2JsAlg .icon-transition span {
    padding: 0.1rem 0.9rem;
    border-radius: 50%;
    color: #ffffff;
    display: block;
    height: 3em;
    line-height: 3em;
    width: 3em;
    background: #ffffff none repeat scroll 0 0;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    font-size: 14px;
}

.cid-surC2JsAlg .photo-split .image-wrap img {
    max-width: 100%;
    max-height: 800px;
    z-index: 9;
    position: relative;
}

.cid-surC2JsAlg .photo-split .element-outer {
    border-radius: 100%;
    padding: 60px;
    border: 3px dashed #e3e3e3;
    position: absolute;
    z-index: 7;
    left: -50px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.cid-surC2JsAlg .photo-split .element-outer2 {
    border-radius: 100%;
    padding: 100px;
    border: 3px dashed #e3e3e3;
    position: absolute;
    z-index: 7;
    left: -80px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.cid-surC2JsAlg .photo-split .element-inner {
    position: absolute;
    z-index: 10;
    left: -22px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.cid-surC2JsAlg .photo-split .element-inner .widget-icon {
    display: inline-block;
    border-radius: 100%;
    padding: 31px;
    background-color: #ffffff;
    font-size: 2.45rem;
    color: #4f87fb;
    margin-right: 15px;
    z-index: 10;
}

.cid-surC2JsAlg .wrap-block {
    padding: 3rem 3rem;
}

.cid-surC2JsAlg .wrap-block .contents {
    margin-bottom: 40px;
    padding-right: 50px;
}

.cid-surC2JsAlg .wrap-block .contents .mbr-subtitle {
    color: #4f87fb;
    margin-bottom: 10px;
    font-weight: 800;
}

.cid-surC2JsAlg .wrap-block .contents .mbr-subtitle.display-4 {
    font-size: 13px;
    line-height: 1.85;
    letter-spacing: 2px;
}

.cid-surC2JsAlg .wrap-block .contents .mbr-section-title {
    margin-bottom: 10px;
    color: #130947;
    line-height: 1.2;
    letter-spacing: -0.5px;
    font-weight: 700;
}

.cid-surC2JsAlg .wrap-block .contents .mbr-section-text {
    line-height: 1.5;
    margin-top: 10px;
}

.cid-surC2JsAlg .wrap-block .contents .mbr-section-text.display-7 {
    font-size: 20px;
}

.cid-surC2JsAlg .wrap-block .contents .mbr-section-text.display-4 {
    font-size: 16px;
}

.cid-surC2JsAlg .wrap-block .contents h3 {
    color: #130947;
    letter-spacing: -0.5px;
}

.cid-surC2JsAlg .wrap-block .contents h4 {
    color: #6d7a8c;
}

.cid-surC2JsAlg .info-widget {
    padding-top: 0.5rem;
    display: flex;
    -webkit-box-pack: start;
    justify-content: flex-start;
}

.cid-surC2JsAlg .info-widget .widget-icon {
    display: inline-block;
    border-radius: 100%;
    padding: 18px;
    background-color: #ffffff;
    font-size: 2.45rem;
    color: #ffffff;
    margin-right: 15px;
}

.cid-surC2JsAlg .info-widget .signature {
    height: 75px;
    display: inline-block;
    margin-right: 15px;
    object-fit: contain;
    width: auto;
}

.cid-surC2JsAlg .info-widget .widget-content {
    display: flex;
    vertical-align: baseline;
    text-align: left;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
}

.cid-surC2JsAlg .info-widget .widget-content .widget-title {
    margin-bottom: 7px;
    color: #130947;
}

.cid-surC2JsAlg .info-widget .widget-content .widget-text {
    margin-bottom: 0;
    color: #7e7e7e;
}

@media (max-width: 991px) {
    .cid-surC2JsAlg .photo-split {
        padding: 3rem 3rem;
    }

    .cid-surC2JsAlg .photo-split .element-outer,
    .cid-surC2JsAlg .photo-split .element-outer2 {
        display: none;
    }

    .cid-surC2JsAlg .photo-split .element-inner {
        left: 0;
    }
}

@media (max-width: 767px) {
    .cid-surC2JsAlg .mbr-section-title,
    .cid-surC2JsAlg .mbr-section-subtitle,
    .cid-surC2JsAlg .mbr-text {
        text-align: left !important;
    }

    .cid-surC2JsAlg .social-list {
        text-align: left !important;
    }
}

.cid-surC2JsAlg .boldSubtitle {
    margin-top: 40px !important;
}

@media (max-width: 500px) {
    .cid-surC2JsAlg .wrap-block {
        padding: 3rem 1rem;
    }
}

.cid-stNPRQjPWH {
    padding-top: 45px;
    padding-bottom: 45px;
    background-color: #25303e;
}

.cid-stNPRQjPWH .links {
    text-align: center;
    color: #ffffff;
}

.cid-stNPRQjPWH p {
    margin: 0;
}

.cid-stNPRQjPWH a {
    color: #ffffff;
}

.cid-stNPRQjPWH a:hover {
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

.is-builder .cid-stMKkAQheu .navbar {
    padding-top: 20px !important;
}

.cid-stMKkAQheu .navbar {
    padding: 0.5rem 0;
    background: #ffffff;
    -webkit-transition: none;
    transition: none;
    min-height: 77px;
}

@media (min-width: 1200px) {
    .cid-stMKkAQheu .navbar .dropdown .dropdown-menu .dropdown-item {
        padding: 0.835em 2.5385em 0.835em 3.5385em !important;
        margin: 0 !important;
    }

    .cid-stMKkAQheu .navbar .dropdown .dropdown-menu .dropdown-item:hover {
        padding: 0.835em 2.5385em 0.835em 3.8385em !important;
    }
}

.cid-stMKkAQheu .menu-logo {
    display: flex;
    position: relative;
    -webkit-box-align: center;
    align-items: center;
    margin-right: auto;
}

.cid-stMKkAQheu .menu-logo .navbar-brand {
    display: flex;
    margin-left: 4rem;
    padding: 0.5rem 0;
    -webkit-transition: padding 0.2s;
    transition: padding 0.2s;
    min-height: 3.8rem;
    -webkit-box-align: center;
    align-items: center;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-caption-wrap {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    word-break: break-word;
    min-width: 7rem;
    margin: 0.3rem 0;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
    line-height: 1.2rem !important;
    padding-right: 2rem;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-logo {
    font-size: 4rem;
    -webkit-transition: font-size 0.25s;
    transition: font-size 0.25s;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-logo img {
    display: flex;
    width: auto;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
    -webkit-transition: font-size 0.25s;
    transition: font-size 0.25s;
}

.cid-stMKkAQheu .navbar-dropdown.bg-color.transparent.opened {
    background: #ffffff;
}

.cid-stMKkAQheu a {
    font-style: normal;
}

.cid-stMKkAQheu .nav-item span {
    padding-right: 0.4em;
    line-height: 0.5em;
    vertical-align: middle;
    position: relative;
    text-decoration: none;
}

.cid-stMKkAQheu .nav-item a {
    padding: 0.4rem 20px !important;
}

.cid-stMKkAQheu .dropdown-item:before {
    color: #ffffff;
    font-family: Material-Design-Icons !important;
    content: '\e716';
    display: inline-block;
    width: 0;
    position: absolute;
    left: 1.125rem;
    top: 1.1rem;
    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;
    transition: all 0.25s ease-in-out;
}

.cid-stMKkAQheu .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
}

.cid-stMKkAQheu .content-text {
    margin-bottom: 0;
}

.cid-stMKkAQheu .navbar-nav {
    position: relative;
    min-height: 100px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
}

.cid-stMKkAQheu .navbar-nav li:first-child > a {
    color: #4f87fb;
}

.cid-stMKkAQheu .navbar-nav li:last-child > a::before {
    position: absolute;
    content: '';
    height: 20px;
    width: 1px;
    right: -9px;
    margin-top: -10px;
    top: 50%;
    background-color: rgba(0, 0, 0, 0.46);
    margin-right: 12px;
    width: 0px;
    height: 0px;
}

@media (min-width: 1200px) {
    .cid-stMKkAQheu .navbar-nav .main-menu-animated-line {
        position: absolute;
        left: 0;
        width: 0;
        height: 0;
        z-index: 100;
        border-top: 4px solid #2e40be;
        -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
        transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    }

    .cid-stMKkAQheu .navbar-nav .main-menu-animated-line.bottom {
        bottom: 0;
    }

    .cid-stMKkAQheu .navbar-nav .nav-item a {
        margin: 0 1.1rem !important;
    }
}

@media (max-width: 1200px) {
    .cid-stMKkAQheu .navbar-nav .nav-item a {
        margin: 0 !important;
    }
}

.cid-stMKkAQheu .navbar-nav .nav-item span {
    padding-right: 0.1rem;
}

.cid-stMKkAQheu .display-4 > .mbr-iconfont {
    font-size: 1.23em;
}

.cid-stMKkAQheu .display-4 > .btn > .mbr-iconfont {
    font-size: 1.43em;
}

.cid-stMKkAQheu .nav-dropdown .dropdown-item {
    font-weight: 400;
}

.cid-stMKkAQheu .content-link {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.cid-stMKkAQheu .content-link:first-child {
    padding-left: 1.3rem;
}

@media (max-width: 1200px) {
    .cid-stMKkAQheu .content-link {
        display: none;
    }
}

.cid-stMKkAQheu .navbar-buttons.mbr-section-btn {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.cid-stMKkAQheu .navbar-buttons.mbr-section-btn > .mbr-iconfont {
    font-size: 17px !important;
    margin-right: 13px;
}

.cid-stMKkAQheu .nav-dropdown .link {
    font-weight: 600;
}

.cid-stMKkAQheu .nav-dropdown .link.display-4 {
    font-size: 15px;
}

.cid-stMKkAQheu .menu .navbar-brand .logo-text-part {
    vertical-align: top;
}

.cid-stMKkAQheu .content-left-side {
    text-align: center;
    padding-top: 3px;
}

@media (max-width: 575px) {
    .cid-stMKkAQheu .content-left-side {
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        padding: 0.5rem 0;
    }

    .cid-stMKkAQheu .content-left-side .content-link {
        font-size: 0.8rem;
        margin: 0;
        padding-bottom: 1rem;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
}

.cid-stMKkAQheu .content-right-side {
    text-align: center;
}

@media (max-width: 575px) {
    .cid-stMKkAQheu .content-right-side {
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        padding: 0.5rem 0;
    }

    .cid-stMKkAQheu .content-right-side .content-link {
        font-size: 0.8rem;
        margin: 0;
        padding-bottom: 1rem;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
}

.cid-stMKkAQheu .content-right-side .icons-block {
    padding-bottom: 5px;
    padding-left: 17px;
}

.cid-stMKkAQheu .content-right-side .content-link {
    margin-left: 1rem;
}

.cid-stMKkAQheu .content-right-side .content-link span {
    vertical-align: middle;
    font-weight: bold;
}

.cid-stMKkAQheu .menu-content-top {
    display: none;
    padding: 1rem 4rem 1rem 3.8rem;
    -webkit-transition: height 0.3s ease-in-out;
    transition: height 0.3s ease-in-out;
    padding-top: 15px;
    padding-bottom: 15px;
}

.cid-stMKkAQheu .content-left-side .content-link {
    margin-left: 1rem;
}

.cid-stMKkAQheu .content-left-side .content-link:first-child {
    padding-left: 0;
    margin-left: 0;
}

.cid-stMKkAQheu .content-left-side .content-link span {
    vertical-align: middle;
    font-weight: bold;
}

@media (max-width: 1200px) {
    .cid-stMKkAQheu .content-left-side {
        text-align: center;
        padding-bottom: 1rem;
    }

    .cid-stMKkAQheu .dropdown-item {
        padding: 0.235em 0 !important;
        margin: 0 !important;
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
    }

    .cid-stMKkAQheu .dropdown-item:before {
        display: none;
    }

    .cid-stMKkAQheu .menu-logo {
        width: 100%;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }

    .cid-stMKkAQheu .menu-bottom {
        width: 100%;
        padding: 0 1rem;
        display: block;
    }

    .cid-stMKkAQheu img {
        height: 1.8rem !important;
    }

    .cid-stMKkAQheu .btn {
        display: flex;
    }

    .cid-stMKkAQheu button.navbar-toggler {
        display: block;
        align-self: center;
    }

    .cid-stMKkAQheu .navbar-brand {
        margin-left: 1rem !important;
        margin-top: 0.5rem;
    }

    .cid-stMKkAQheu .navbar-toggleable-sm {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }

    .cid-stMKkAQheu .navbar-collapse {
        display: none !important;
        padding-right: 0 !important;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing,
    .cid-stMKkAQheu .navbar-collapse.show {
        display: block !important;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing .navbar-nav,
    .cid-stMKkAQheu .navbar-collapse.show .navbar-nav {
        display: block;
        text-align: center;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing .navbar-nav .nav-item,
    .cid-stMKkAQheu .navbar-collapse.show .navbar-nav .nav-item {
        clear: both;
        padding: 0.5rem 0;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing .navbar-buttons,
    .cid-stMKkAQheu .navbar-collapse.show .navbar-buttons {
        text-align: center;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing .navbar-buttons:last-child,
    .cid-stMKkAQheu .navbar-collapse.show .navbar-buttons:last-child {
        margin-bottom: 1rem;
    }

    .cid-stMKkAQheu .dropdown .dropdown-menu {
        width: 100%;
        text-align: center;
        position: relative;
        opacity: 0;
        display: block;
        height: 0;
        visibility: hidden;
        padding: 0;
        -webkit-transition-duration: 0.5s;
        transition-duration: 0.5s;
        -webkit-transition-property: opacity, padding, height;
        transition-property: opacity, padding, height;
    }

    .cid-stMKkAQheu .dropdown.open > .dropdown-menu {
        position: relative;
        opacity: 1;
        height: auto;
        padding: 1.4rem 0;
        visibility: visible;
    }

    .cid-stMKkAQheu .dropdown .dropdown-submenu {
        left: 0;
        text-align: center;
        width: 100%;
    }

    .cid-stMKkAQheu .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
        margin-top: 0;
        position: inherit;
        right: 0;
        top: 50%;
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: 0.3em;
        vertical-align: middle;
        content: '';
        border-top: 0.3em solid;
        border-right: 0.3em solid transparent;
        border-left: 0.3em solid transparent;
    }
}

@media (min-width: 1200px) {
    .cid-stMKkAQheu .navbar .menu-content-top {
        display: block;
    }

    .cid-stMKkAQheu .menu-content-top .row {
        -webkit-box-pack: justify;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .cid-stMKkAQheu .content-right-side {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: end;
        justify-content: flex-end;
        flex-basis: 70%;
        flex-shrink: 0;
        flex-wrap: wrap;
        text-align: right;
    }

    .cid-stMKkAQheu .content-left-side {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: start;
        justify-content: flex-start;
        flex-basis: 70%;
        flex-shrink: 0;
        flex-wrap: wrap;
        text-align: right;
    }

    .cid-stMKkAQheu .menu-content-top {
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    }

    .cid-stMKkAQheu .menu-bottom {
        display: flex;
    }

    .cid-stMKkAQheu .navbar {
        display: block;
        padding: 0;
    }

    .cid-stMKkAQheu .navbar .menu-logo {
        margin-right: auto;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
    }

    .cid-stMKkAQheu .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
        -webkit-align-self: initial;
        align-self: auto;
        display: flex !important;
        -webkit-box-align: center;
        align-items: center;
        z-index: 101;
        min-height: 76px;
    }

    .cid-stMKkAQheu .navbar-toggler {
        display: none;
    }
}

.cid-stMKkAQheu .navbar-short .menu-content-top {
    border: none;
    display: none;
}

.cid-stMKkAQheu .btn {
    padding: 15px 30px;
    font-weight: 800;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    border-width: 1px;
    box-shadow: none;
}

.cid-stMKkAQheu .btn .mbr-iconfont {
    font-size: 1.2em;
}

.cid-stMKkAQheu .btn.display-4 {
    letter-spacing: 0.5px;
    font-size: 13px;
    line-height: 1;
}

.cid-stMKkAQheu .navbar-toggleable-sm .navbar-collapse {
    -webkit-box-pack: end;
    justify-content: flex-end;
    padding-right: 4rem;
    width: 100%;
}

.cid-stMKkAQheu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
    flex-wrap: wrap;
    padding-left: 0;
}

.cid-stMKkAQheu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: center;
    align-self: center;
}

.cid-stMKkAQheu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
    padding-left: 0;
    padding-bottom: 0;
}

.cid-stMKkAQheu .dropdown .dropdown-menu {
    background: #ffffff;
    display: none;
    position: absolute;
    border-top: 3px solid #2e40be;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    min-width: 16.875rem;
    text-align: left;
    padding-top: 0;
    padding-bottom: 0;
}

@media (max-width: 1200px) {
    .cid-stMKkAQheu .dropdown .dropdown-menu {
        overflow: hidden;
    }
}

.cid-stMKkAQheu .dropdown .dropdown-menu .dropdown-item {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.cid-stMKkAQheu .dropdown .dropdown-menu .dropdown-item::after {
    right: -1rem;
}

.cid-stMKkAQheu .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #4f87fb;
    color: #ffffff;
}

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

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

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

.cid-stMKkAQheu .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
}

.cid-stMKkAQheu .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-stMKkAQheu .navbar-toggleable-sm.opened:after {
    position: absolute;
    width: 100vw;
    height: 100vh;
    content: '';
    background-color: rgba(0, 0, 0, 0.1);
    left: 0;
    bottom: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    z-index: 1000;
}

.cid-stMKkAQheu .navbar.navbar-short {
    min-height: 60px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-logo a {
    font-size: 2.5rem !important;
    line-height: 2.5rem;
    -webkit-transition: font-size 0.25s;
    transition: font-size 0.25s;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
    font-size: 2.5rem !important;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-logo a img {
    height: 3rem !important;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-brand {
    min-height: 3rem;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-nav {
    min-height: 60px;
}

.cid-stMKkAQheu button.navbar-toggler {
    width: 31px;
    height: 18px;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.cid-stMKkAQheu button.navbar-toggler:focus {
    outline: none;
}

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

.cid-stMKkAQheu button.navbar-toggler .hamburger span:nth-child(1) {
    top: 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.cid-stMKkAQheu button.navbar-toggler .hamburger span:nth-child(2) {
    top: 8px;
    -webkit-transition: all 0.15s;
    transition: all 0.15s;
}

.cid-stMKkAQheu button.navbar-toggler .hamburger span:nth-child(3) {
    top: 8px;
    -webkit-transition: all 0.15s;
    transition: all 0.15s;
}

.cid-stMKkAQheu button.navbar-toggler .hamburger span:nth-child(4) {
    top: 16px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

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

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

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

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

.cid-stMKkAQheu .navbar-fixed-top.opened {
    position: relative;
}

.cid-stMKkAQheu .collapsed.navbar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.cid-stMKkAQheu .collapsed .menu-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.cid-stMKkAQheu .collapsed .menu-logo {
    margin-right: 0;
}

.cid-stMKkAQheu .collapsed .btn {
    display: flex;
}

.cid-stMKkAQheu .collapsed .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing,
.cid-stMKkAQheu .collapsed .navbar-collapse.show {
    display: block !important;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-stMKkAQheu .collapsed .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-stMKkAQheu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-stMKkAQheu .collapsed .navbar-collapse.show .navbar-buttons {
    text-align: center;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-stMKkAQheu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
}

@media (min-width: 1200px) {
    .cid-stMKkAQheu .collapsed:not(.navbar-short) .navbar-collapse {
        max-height: calc(100vh - 3.8rem - 3.5rem);
    }

    .cid-stMKkAQheu .collapsed .dropdown .dropdown-menu {
        overflow: hidden;
    }
}

.cid-stMKkAQheu .collapsed button.navbar-toggler {
    display: block;
    -webkit-align-self: center;
    align-self: center;
}

.cid-stMKkAQheu .collapsed .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
}

.cid-stMKkAQheu .collapsed .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.cid-stMKkAQheu .collapsed .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
}

.cid-stMKkAQheu .collapsed .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
}

.cid-stMKkAQheu .collapsed .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
}

.cid-stMKkAQheu .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
}

.cid-stMKkAQheu .collapsed .dropdown-item:before {
    display: none;
}

.cid-stMKkAQheu .navbar-dropdown {
    flex-wrap: nowrap;
}

.cid-stMKkAQheu .navbar-collapse {
    flex-basis: auto;
    display: flex;
}

.cid-stMKkAQheu .nav-link:focus {
    outline: none;
}

.cid-stMKkAQheu .navbar-toggler {
    position: relative;
}

.cid-stMKkAQheu .dropdown-item.active,
.cid-stMKkAQheu .dropdown-item:active {
    background-color: #ffffff;
    color: #000000;
}

.cid-stMKkAQheu .nav-link:hover,
.cid-stMKkAQheu .dropdown-item:hover {
    color: #4f87fb;
}

.cid-stNQxXxtu3 {
    padding-top: 150px;
    padding-bottom: 150px;
    background-image: url("../../images/foto_farmacia.png");
}

.cid-stNQxXxtu3 .mbr-section-subtitle {
    color: #4f87fb;
    font-weight: 700;
    line-height: 1.43;
    letter-spacing: 2px;
}

.cid-stNQxXxtu3 .mbr-section-title {
    color: #130947;
    font-weight: 900;
}

.cid-stNQxXxtu3 .mbr-section-title .accent-word {
    color: #4f87fb;
}

.cid-stNQxXxtu3 .mbr-text {
    color: #6d7a8c;
}

.cid-stNQxXxtu3 .content-link {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    color: #130947;
}

.cid-stNQxXxtu3 .content-link span {
    margin-right: 15px;
    margin-left: 20px;
    padding: 13px;
    border-radius: 100%;
    color: #4f87fb;
    background-color: #ffffff;
    font-size: 2.275rem;
}

.cid-stNQxXxtu3 .separator {
    margin-top: -15px;
    margin-left: 0;
    margin-right: auto;
    width: 100%;
}

.cid-stNQxXxtu3 .separator .sep-holder {
    height: 1px;
    position: relative;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    width: 46%;
}

.cid-stNQxXxtu3 .separator .sep-holder .sep-line {
    border-color: #4f87fb !important;
    border-top-width: 5px;
    height: 1px;
    border-top: 5px solid #4f87fb;
    position: relative;
    top: 1px;
    width: 46%;
}

.cid-stNQxXxtu3 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
    margin-top: 47px;
}

.cid-stNQxXxtu3 .mbr-section-btn .btn {
    border-radius: 4px;
    margin: 0.4rem 0.6rem 0.4rem 0 !important;
    padding: 15px 40px;
}

.cid-stNQxXxtu3 .mbr-section-btn .btn.display-4 {
    line-height: 2;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 13px;
}

@media (max-width: 991px) {
    .cid-stNQxXxtu3 .separator,
    .cid-stNQxXxtu3 .sep-holder,
    .cid-stNQxXxtu3 .sep-line {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .cid-stNQxXxtu3 .mbr-section-btn {
        -webkit-box-pack: center;
        justify-content: center;
    }
}

.cid-suDP5se2AC {
    padding-top: 30px;
    padding-bottom: 75px;
    background-color: #e6ecf2;
    background: linear-gradient(45deg, #e6ecf2, #ffffff);
}

.cid-suDP5se2AC .head_info {
    text-align: center;
    margin-bottom: 70px;
}

.cid-suDP5se2AC .head_info .mbr-subtitle {
    color: #4f87fb;
    margin-bottom: 10px;
}

.cid-suDP5se2AC .head_info .mbr-subtitle.display-4 {
    font-size: 13px;
    line-height: 1.85;
    letter-spacing: 2px;
}

.cid-suDP5se2AC .head_info .mbr-section-title {
    margin-bottom: 20px;
    color: #130947;
    font-weight: 700;
}

.cid-suDP5se2AC .head_info .mbr-section-title.display-2 {
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.cid-suDP5se2AC .head_info .mbr-section-text {
    line-height: 1.5;
    margin-top: 20px;
    margin-bottom: 0;
    color: #6d7a8c;
}

.cid-suDP5se2AC .head_info .mbr-section-text.display-7 {
    line-height: 1.5;
    letter-spacing: 0;
}

.cid-suDP5se2AC .plan {
    position: relative;
    max-width: 330px;
    padding-right: 0;
    padding-left: 0;
    color: #767676;
    background-color: #ffffff;
    border-bottom: solid 2px rgba(0, 0, 0, 0.07);
    text-align: center;
    border-radius: 8px;
}

.cid-suDP5se2AC .plan .plan-title {
    background-color: #4f87fb;
    padding-bottom: 60px;
    padding-top: 30px;
    margin-bottom: 0;
    font-weight: 700;
    border-radius: 8px 8px 0 0;
}

.cid-suDP5se2AC .plan .plan-title.display-7 {
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.cid-suDP5se2AC .plan .icon_box {
    display: block;
    text-align: center;
}

.cid-suDP5se2AC .plan .icon_box .ico1 {
    width: 96px;
    height: 96px;
    line-height: 2.4;
    font-size: 40px;
    display: inline-block;
    border-radius: 50%;
    position: relative;
    top: -40px;
    background: #fff;
    color: #130947;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.05);
}

.cid-suDP5se2AC .plan .plan-price {
    color: #28303f;
}

.cid-suDP5se2AC .plan .plan-price .price-figure {
    font-weight: 700;
    display: inline-block;
}

.cid-suDP5se2AC .plan .plan-price .price-figure.display-1 {
    font-size: 50px;
    line-height: 1;
}

.cid-suDP5se2AC .plan .plan-price .price-value {
    font-weight: 600;
    line-height: 1.5;
}

.cid-suDP5se2AC .plan .plan-price .price-term {
    line-height: 1;
    margin-top: 0.45rem;
}

.cid-suDP5se2AC .plan .plan-list {
    padding: 30px 40px;
}

.cid-suDP5se2AC .plan .plan-list .list-group {
    color: #6d7a8c;
}

.cid-suDP5se2AC .plan .plan-list .list-group-item {
    position: relative;
    -webkit-box-pack: center;
    justify-content: center;
    border: 0;
    background: transparent;
    padding: 7.5px 0;
}

.cid-suDP5se2AC .plan .plan-list .list-group-item:last-child {
    border-radius: 8px;
}

.cid-suDP5se2AC .plan .plan-list .list-group.display-7 {
    font-size: 16px;
    line-height: 1.5;
}

.cid-suDP5se2AC .plan .mbr-section-btn {
    padding: 0 2.45rem;
}

.cid-suDP5se2AC .plan .mbr-section-btn .btn {
    font-weight: 700;
    padding: 12px 40px;
    border-radius: 2em;
}

.cid-suDP5se2AC .plan .mbr-section-btn .btn.display-4 {
    font-size: 12px;
    line-height: 2;
    letter-spacing: 1px;
}

.cid-suDP5se2AC .plan:nth-child(2) .plan-title {
    background-color: #130947;
}

@media (max-width: 550px) {
    .cid-suDP5se2AC .price-figure {
        font-size: 4.25rem;
    }
}

.cid-suy9YgASce {
    padding-top: 30px;
    padding-bottom: 75px;
    background-color: #ffffff;
}

.cid-suy9YgASce .mbr-overlay {
    background-color: #ffffff;
    opacity: 0.4;
}

.cid-suy9YgASce .text-content .content-title {
    color: #130947;
    margin-bottom: 30px;
}

.cid-suy9YgASce .text-content .content-title.display-5 {
    font-size: 26px;
    line-height: 1.38;
    letter-spacing: -0.5px;
}

.cid-suy9YgASce .text-content .list-block {
    border-bottom-width: 1px;
    padding-bottom: 30px;
    border-bottom-color: #130947;
    border-bottom-style: dotted;
    margin-bottom: 20px;
}

.cid-suy9YgASce .text-content .list-block .card-img span {
    color: #4f87fb;
    font-size: 2.5rem;
}

.cid-suy9YgASce .text-content .list-block .list-item-title {
    color: #130947;
}

.cid-suy9YgASce .text-content .list-block .list-item-title.display-7 {
    font-size: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.cid-suy9YgASce .text-content .list-block .list-item-text {
    padding-top: 10px;
    line-height: 1.29;
    color: #6d7a8c;
    margin-bottom: 0;
}

.cid-suy9YgASce .text-content .list-block.last {
    border-bottom: none;
    margin-bottom: 20px;
    padding-bottom: 0;
}

.cid-suy9YgASce .text-content .social {
    font-size: 1.2rem;
    padding-left: 4.5rem;
}

.cid-suy9YgASce .text-content .social span {
    margin-right: 11.2px;
    margin-bottom: 8px;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    color: #6d7a8c;
}

.cid-suy9YgASce .text-content .social span:hover {
    color: #4f87fb;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

.cid-suy9YgASce .card-img {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 3rem;
    text-align: center;
}

.cid-suy9YgASce .list-block {
    position: relative;
}

.cid-suy9YgASce .list-block h4,
.cid-suy9YgASce .list-block p {
    padding-left: 4.5rem;
}

.cid-suy9YgASce .card-img {
    display: block;
}

.cid-suy9YgASce input,
.cid-suy9YgASce textarea {
    border-left: none;
    border-top: none;
    border-right: none;
    border-radius: 4px;
    padding: 20px 10px 20px 20px;
    font-size: 13px;
    color: #ffffff;
    font-weight: 600;
}

.cid-suy9YgASce input:focus,
.cid-suy9YgASce textarea:focus {
    border-left: none;
    border-top: none;
    border-right: none;
}

.cid-suy9YgASce .form-control,
.cid-suy9YgASce .field-input {
    min-height: 3rem;
    padding: 20px 10px 20px 20px;
    background-color: #ecf1f8;
    border-color: #ffffff;
    color: #000000;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    box-shadow: none;
    outline: none;
}

.cid-suy9YgASce .form-control:hover,
.cid-suy9YgASce .field-input:hover,
.cid-suy9YgASce .form-control:focus,
.cid-suy9YgASce .field-input:focus {
    background-color: #ecf1f8;
    border-color: #ffffff !important;
    color: #000000;
    box-shadow: none;
    outline: none;
}

.cid-suy9YgASce input::-webkit-input-placeholder,
.cid-suy9YgASce textarea::-webkit-input-placeholder {
    color: #28303f;
}

.cid-suy9YgASce input:-moz-placeholder,
.cid-suy9YgASce textarea:-moz-placeholder {
    color: #28303f;
}

.cid-suy9YgASce .jq-selectbox li,
.cid-suy9YgASce .jq-selectbox li {
    background-color: #ecf1f8;
    color: #000000;
}

.cid-suy9YgASce .jq-selectbox li:hover,
.cid-suy9YgASce .jq-selectbox li.selected {
    background-color: #ecf1f8;
    color: #000000;
}

.cid-suy9YgASce .jq-selectbox:hover .jq-selectbox__trigger-arrow {
    border-top-color: #ecf1f8;
}

.cid-suy9YgASce .jq-selectbox .jq-selectbox__trigger-arrow {
    border-top-color: #ecf1f8;
}

.cid-suy9YgASce .mbr-form {
    max-width: 550px;
}

.cid-suy9YgASce .mbr-form .mbr-subtitle {
    color: #4f87fb;
    font-weight: 800;
}

.cid-suy9YgASce .mbr-form .mbr-subtitle.display-4 {
    font-size: 13px;
    line-height: 1.85;
    letter-spacing: 2px;
}

.cid-suy9YgASce .mbr-form .mbr-section-title {
    color: #130947;
    font-weight: 700;
}

.cid-suy9YgASce .mbr-form .mbr-section-title.display-2 {
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.cid-suy9YgASce .mbr-form .mbr-text {
    color: #6d7a8c;
}

.cid-suy9YgASce .mbr-form textarea {
    min-height: 100px;
}

.cid-suy9YgASce .mbr-form .btn {
    -webkit-box-pack: justify;
    justify-content: space-between;
    border-width: 2px;
    border-radius: 4px;
    border-color: #2e40be;
    color: #4f87fb;
    padding: 18px 29px;
}

.cid-suy9YgASce .mbr-form .btn.display-4 {
    font-size: 13px;
    letter-spacing: 1px;
}

.cid-suy9YgASce .mbr-form span.value.form-control {
    min-height: 3.5rem;
    padding: 1rem;
}

@media (max-width: 991px) {
    .cid-suy9YgASce .mbr-form {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 768px) {
    .cid-suy9YgASce .mbr-section-title,
    .cid-suy9YgASce .content-title,
    .cid-suy9YgASce .mbr-section-btn {
        text-align: left;
    }
}

.cid-suy9YgASce .text-content .list-block .list-item-text {
    color: #344cf1;
}

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

.cid-suyfvStwQM .mbr-section-title {
    margin-bottom: 30px;
    color: #130947;
}

.cid-suyfvStwQM .mbr-section-title.display-2 {
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.cid-suyfvStwQM .google-map {
    height: 30rem;
    position: relative;
    width: 100%;
}

.cid-suyfvStwQM .google-map iframe {
    height: 100%;
    width: 100%;
}

.cid-suyfvStwQM .google-map [data-state-details] {
    color: #6b6763;
    font-family: Montserrat;
    height: 1.5em;
    margin-top: -0.75em;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 100%;
}

.cid-suyfvStwQM .google-map[data-state] {
    background: #e9e5dc;
}

.cid-suyfvStwQM .google-map[data-state='loading'] [data-state-details] {
    display: none;
}

.cid-suyfvStwQM .map-placeholder {
    display: none;
}

.cid-suyfvStwQM h4 {
    padding-top: 5rem;
    color: #767676;
    text-align: center;
}

.cid-stNQA3RneU {
    padding-top: 75px;
    padding-bottom: 150px;
    background-image: url("../../images/foto_farmacia.png");
}

.cid-stNQA3RneU .mbr-section-subtitle {
    color: #4f87fb;
    font-weight: 700;
    line-height: 1.43;
    letter-spacing: 2px;
}

.cid-stNQA3RneU .mbr-section-title {
    color: #130947;
    font-weight: 900;
}

.cid-stNQA3RneU .mbr-section-title .accent-word {
    color: #4f87fb;
}

.cid-stNQA3RneU .mbr-text {
    color: #6d7a8c;
}

.cid-stNQA3RneU .content-link {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    color: #130947;
}

.cid-stNQA3RneU .content-link span {
    margin-right: 15px;
    margin-left: 20px;
    padding: 13px;
    border-radius: 100%;
    color: #4f87fb;
    background-color: #ffffff;
    font-size: 2.275rem;
}

.cid-stNQA3RneU .separator {
    margin-top: -15px;
    margin-left: 0;
    margin-right: auto;
    width: 100%;
}

.cid-stNQA3RneU .separator .sep-holder {
    height: 1px;
    position: relative;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    width: 46%;
}

.cid-stNQA3RneU .separator .sep-holder .sep-line {
    border-color: #4f87fb !important;
    border-top-width: 5px;
    height: 1px;
    border-top: 5px solid #4f87fb;
    position: relative;
    top: 1px;
    width: 46%;
}

.cid-stNQA3RneU .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
    margin-top: 47px;
}

.cid-stNQA3RneU .mbr-section-btn .btn {
    border-radius: 4px;
    margin: 0.4rem 0.6rem 0.4rem 0 !important;
    padding: 15px 40px;
}

.cid-stNQA3RneU .mbr-section-btn .btn.display-4 {
    line-height: 2;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 13px;
}

@media (max-width: 991px) {
    .cid-stNQA3RneU .separator,
    .cid-stNQA3RneU .sep-holder,
    .cid-stNQA3RneU .sep-line {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .cid-stNQA3RneU .mbr-section-btn {
        -webkit-box-pack: center;
        justify-content: center;
    }
}

.cid-suDTBOuucA {
    padding-top: 30px;
    padding-bottom: 45px;
    background-color: #25303e;
}

.cid-suDTBOuucA .links {
    text-align: center;
    color: #ffffff;
}

.cid-suDTBOuucA p {
    margin: 0;
}

.cid-suDTBOuucA a {
    color: #ffffff;
}

.cid-suDTBOuucA a:hover {
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

.is-builder .cid-stMKkAQheu .navbar {
    padding-top: 20px !important;
}

.cid-stMKkAQheu .navbar {
    padding: 0.5rem 0;
    background: #ffffff;
    -webkit-transition: none;
    transition: none;
    min-height: 77px;
}

@media (min-width: 1200px) {
    .cid-stMKkAQheu .navbar .dropdown .dropdown-menu .dropdown-item {
        padding: 0.835em 2.5385em 0.835em 3.5385em !important;
        margin: 0 !important;
    }

    .cid-stMKkAQheu .navbar .dropdown .dropdown-menu .dropdown-item:hover {
        padding: 0.835em 2.5385em 0.835em 3.8385em !important;
    }
}

.cid-stMKkAQheu .menu-logo {
    display: flex;
    position: relative;
    -webkit-box-align: center;
    align-items: center;
    margin-right: auto;
}

.cid-stMKkAQheu .menu-logo .navbar-brand {
    display: flex;
    margin-left: 4rem;
    padding: 0.5rem 0;
    -webkit-transition: padding 0.2s;
    transition: padding 0.2s;
    min-height: 3.8rem;
    -webkit-box-align: center;
    align-items: center;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-caption-wrap {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    word-break: break-word;
    min-width: 7rem;
    margin: 0.3rem 0;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
    line-height: 1.2rem !important;
    padding-right: 2rem;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-logo {
    font-size: 4rem;
    -webkit-transition: font-size 0.25s;
    transition: font-size 0.25s;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-logo img {
    display: flex;
    width: auto;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
    -webkit-transition: font-size 0.25s;
    transition: font-size 0.25s;
}

.cid-stMKkAQheu .navbar-dropdown.bg-color.transparent.opened {
    background: #ffffff;
}

.cid-stMKkAQheu a {
    font-style: normal;
}

.cid-stMKkAQheu .nav-item span {
    padding-right: 0.4em;
    line-height: 0.5em;
    vertical-align: middle;
    position: relative;
    text-decoration: none;
}

.cid-stMKkAQheu .nav-item a {
    padding: 0.4rem 20px !important;
}

.cid-stMKkAQheu .dropdown-item:before {
    color: #ffffff;
    font-family: Material-Design-Icons !important;
    content: '\e716';
    display: inline-block;
    width: 0;
    position: absolute;
    left: 1.125rem;
    top: 1.1rem;
    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;
    transition: all 0.25s ease-in-out;
}

.cid-stMKkAQheu .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
}

.cid-stMKkAQheu .content-text {
    margin-bottom: 0;
}

.cid-stMKkAQheu .navbar-nav {
    position: relative;
    min-height: 100px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
}

.cid-stMKkAQheu .navbar-nav li:first-child > a {
    color: #4f87fb;
}

.cid-stMKkAQheu .navbar-nav li:last-child > a::before {
    position: absolute;
    content: '';
    height: 20px;
    width: 1px;
    right: -9px;
    margin-top: -10px;
    top: 50%;
    background-color: rgba(0, 0, 0, 0.46);
    margin-right: 12px;
    width: 0px;
    height: 0px;
}

@media (min-width: 1200px) {
    .cid-stMKkAQheu .navbar-nav .main-menu-animated-line {
        position: absolute;
        left: 0;
        width: 0;
        height: 0;
        z-index: 100;
        border-top: 4px solid #2e40be;
        -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
        transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    }

    .cid-stMKkAQheu .navbar-nav .main-menu-animated-line.bottom {
        bottom: 0;
    }

    .cid-stMKkAQheu .navbar-nav .nav-item a {
        margin: 0 1.1rem !important;
    }
}

@media (max-width: 1200px) {
    .cid-stMKkAQheu .navbar-nav .nav-item a {
        margin: 0 !important;
    }
}

.cid-stMKkAQheu .navbar-nav .nav-item span {
    padding-right: 0.1rem;
}

.cid-stMKkAQheu .display-4 > .mbr-iconfont {
    font-size: 1.23em;
}

.cid-stMKkAQheu .display-4 > .btn > .mbr-iconfont {
    font-size: 1.43em;
}

.cid-stMKkAQheu .nav-dropdown .dropdown-item {
    font-weight: 400;
}

.cid-stMKkAQheu .content-link {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.cid-stMKkAQheu .content-link:first-child {
    padding-left: 1.3rem;
}

@media (max-width: 1200px) {
    .cid-stMKkAQheu .content-link {
        display: none;
    }
}

.cid-stMKkAQheu .navbar-buttons.mbr-section-btn {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.cid-stMKkAQheu .navbar-buttons.mbr-section-btn > .mbr-iconfont {
    font-size: 17px !important;
    margin-right: 13px;
}

.cid-stMKkAQheu .nav-dropdown .link {
    font-weight: 600;
}

.cid-stMKkAQheu .nav-dropdown .link.display-4 {
    font-size: 15px;
}

.cid-stMKkAQheu .menu .navbar-brand .logo-text-part {
    vertical-align: top;
}

.cid-stMKkAQheu .content-left-side {
    text-align: center;
    padding-top: 3px;
}

@media (max-width: 575px) {
    .cid-stMKkAQheu .content-left-side {
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        padding: 0.5rem 0;
    }

    .cid-stMKkAQheu .content-left-side .content-link {
        font-size: 0.8rem;
        margin: 0;
        padding-bottom: 1rem;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
}

.cid-stMKkAQheu .content-right-side {
    text-align: center;
}

@media (max-width: 575px) {
    .cid-stMKkAQheu .content-right-side {
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        padding: 0.5rem 0;
    }

    .cid-stMKkAQheu .content-right-side .content-link {
        font-size: 0.8rem;
        margin: 0;
        padding-bottom: 1rem;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
}

.cid-stMKkAQheu .content-right-side .icons-block {
    padding-bottom: 5px;
    padding-left: 17px;
}

.cid-stMKkAQheu .content-right-side .content-link {
    margin-left: 1rem;
}

.cid-stMKkAQheu .content-right-side .content-link span {
    vertical-align: middle;
    font-weight: bold;
}

.cid-stMKkAQheu .menu-content-top {
    display: none;
    padding: 1rem 4rem 1rem 3.8rem;
    -webkit-transition: height 0.3s ease-in-out;
    transition: height 0.3s ease-in-out;
    padding-top: 15px;
    padding-bottom: 15px;
}

.cid-stMKkAQheu .content-left-side .content-link {
    margin-left: 1rem;
}

.cid-stMKkAQheu .content-left-side .content-link:first-child {
    padding-left: 0;
    margin-left: 0;
}

.cid-stMKkAQheu .content-left-side .content-link span {
    vertical-align: middle;
    font-weight: bold;
}

@media (max-width: 1200px) {
    .cid-stMKkAQheu .content-left-side {
        text-align: center;
        padding-bottom: 1rem;
    }

    .cid-stMKkAQheu .dropdown-item {
        padding: 0.235em 0 !important;
        margin: 0 !important;
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
    }

    .cid-stMKkAQheu .dropdown-item:before {
        display: none;
    }

    .cid-stMKkAQheu .menu-logo {
        width: 100%;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }

    .cid-stMKkAQheu .menu-bottom {
        width: 100%;
        padding: 0 1rem;
        display: block;
    }

    .cid-stMKkAQheu img {
        height: 1.8rem !important;
    }

    .cid-stMKkAQheu .btn {
        display: flex;
    }

    .cid-stMKkAQheu button.navbar-toggler {
        display: block;
        align-self: center;
    }

    .cid-stMKkAQheu .navbar-brand {
        margin-left: 1rem !important;
        margin-top: 0.5rem;
    }

    .cid-stMKkAQheu .navbar-toggleable-sm {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }

    .cid-stMKkAQheu .navbar-collapse {
        display: none !important;
        padding-right: 0 !important;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing,
    .cid-stMKkAQheu .navbar-collapse.show {
        display: block !important;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing .navbar-nav,
    .cid-stMKkAQheu .navbar-collapse.show .navbar-nav {
        display: block;
        text-align: center;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing .navbar-nav .nav-item,
    .cid-stMKkAQheu .navbar-collapse.show .navbar-nav .nav-item {
        clear: both;
        padding: 0.5rem 0;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing .navbar-buttons,
    .cid-stMKkAQheu .navbar-collapse.show .navbar-buttons {
        text-align: center;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing .navbar-buttons:last-child,
    .cid-stMKkAQheu .navbar-collapse.show .navbar-buttons:last-child {
        margin-bottom: 1rem;
    }

    .cid-stMKkAQheu .dropdown .dropdown-menu {
        width: 100%;
        text-align: center;
        position: relative;
        opacity: 0;
        display: block;
        height: 0;
        visibility: hidden;
        padding: 0;
        -webkit-transition-duration: 0.5s;
        transition-duration: 0.5s;
        -webkit-transition-property: opacity, padding, height;
        transition-property: opacity, padding, height;
    }

    .cid-stMKkAQheu .dropdown.open > .dropdown-menu {
        position: relative;
        opacity: 1;
        height: auto;
        padding: 1.4rem 0;
        visibility: visible;
    }

    .cid-stMKkAQheu .dropdown .dropdown-submenu {
        left: 0;
        text-align: center;
        width: 100%;
    }

    .cid-stMKkAQheu .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
        margin-top: 0;
        position: inherit;
        right: 0;
        top: 50%;
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: 0.3em;
        vertical-align: middle;
        content: '';
        border-top: 0.3em solid;
        border-right: 0.3em solid transparent;
        border-left: 0.3em solid transparent;
    }
}

@media (min-width: 1200px) {
    .cid-stMKkAQheu .navbar .menu-content-top {
        display: block;
    }

    .cid-stMKkAQheu .menu-content-top .row {
        -webkit-box-pack: justify;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .cid-stMKkAQheu .content-right-side {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: end;
        justify-content: flex-end;
        flex-basis: 70%;
        flex-shrink: 0;
        flex-wrap: wrap;
        text-align: right;
    }

    .cid-stMKkAQheu .content-left-side {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: start;
        justify-content: flex-start;
        flex-basis: 70%;
        flex-shrink: 0;
        flex-wrap: wrap;
        text-align: right;
    }

    .cid-stMKkAQheu .menu-content-top {
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    }

    .cid-stMKkAQheu .menu-bottom {
        display: flex;
    }

    .cid-stMKkAQheu .navbar {
        display: block;
        padding: 0;
    }

    .cid-stMKkAQheu .navbar .menu-logo {
        margin-right: auto;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
    }

    .cid-stMKkAQheu .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
        -webkit-align-self: initial;
        align-self: auto;
        display: flex !important;
        -webkit-box-align: center;
        align-items: center;
        z-index: 101;
        min-height: 76px;
    }

    .cid-stMKkAQheu .navbar-toggler {
        display: none;
    }
}

.cid-stMKkAQheu .navbar-short .menu-content-top {
    border: none;
    display: none;
}

.cid-stMKkAQheu .btn {
    padding: 15px 30px;
    font-weight: 800;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    border-width: 1px;
    box-shadow: none;
}

.cid-stMKkAQheu .btn .mbr-iconfont {
    font-size: 1.2em;
}

.cid-stMKkAQheu .btn.display-4 {
    letter-spacing: 0.5px;
    font-size: 13px;
    line-height: 1;
}

.cid-stMKkAQheu .navbar-toggleable-sm .navbar-collapse {
    -webkit-box-pack: end;
    justify-content: flex-end;
    padding-right: 4rem;
    width: 100%;
}

.cid-stMKkAQheu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
    flex-wrap: wrap;
    padding-left: 0;
}

.cid-stMKkAQheu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: center;
    align-self: center;
}

.cid-stMKkAQheu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
    padding-left: 0;
    padding-bottom: 0;
}

.cid-stMKkAQheu .dropdown .dropdown-menu {
    background: #ffffff;
    display: none;
    position: absolute;
    border-top: 3px solid #2e40be;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    min-width: 16.875rem;
    text-align: left;
    padding-top: 0;
    padding-bottom: 0;
}

@media (max-width: 1200px) {
    .cid-stMKkAQheu .dropdown .dropdown-menu {
        overflow: hidden;
    }
}

.cid-stMKkAQheu .dropdown .dropdown-menu .dropdown-item {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.cid-stMKkAQheu .dropdown .dropdown-menu .dropdown-item::after {
    right: -1rem;
}

.cid-stMKkAQheu .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #4f87fb;
    color: #ffffff;
}

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

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

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

.cid-stMKkAQheu .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
}

.cid-stMKkAQheu .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-stMKkAQheu .navbar-toggleable-sm.opened:after {
    position: absolute;
    width: 100vw;
    height: 100vh;
    content: '';
    background-color: rgba(0, 0, 0, 0.1);
    left: 0;
    bottom: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    z-index: 1000;
}

.cid-stMKkAQheu .navbar.navbar-short {
    min-height: 60px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-logo a {
    font-size: 2.5rem !important;
    line-height: 2.5rem;
    -webkit-transition: font-size 0.25s;
    transition: font-size 0.25s;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
    font-size: 2.5rem !important;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-logo a img {
    height: 3rem !important;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-brand {
    min-height: 3rem;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-nav {
    min-height: 60px;
}

.cid-stMKkAQheu button.navbar-toggler {
    width: 31px;
    height: 18px;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.cid-stMKkAQheu button.navbar-toggler:focus {
    outline: none;
}

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

.cid-stMKkAQheu button.navbar-toggler .hamburger span:nth-child(1) {
    top: 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.cid-stMKkAQheu button.navbar-toggler .hamburger span:nth-child(2) {
    top: 8px;
    -webkit-transition: all 0.15s;
    transition: all 0.15s;
}

.cid-stMKkAQheu button.navbar-toggler .hamburger span:nth-child(3) {
    top: 8px;
    -webkit-transition: all 0.15s;
    transition: all 0.15s;
}

.cid-stMKkAQheu button.navbar-toggler .hamburger span:nth-child(4) {
    top: 16px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

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

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

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

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

.cid-stMKkAQheu .navbar-fixed-top.opened {
    position: relative;
}

.cid-stMKkAQheu .collapsed.navbar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.cid-stMKkAQheu .collapsed .menu-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.cid-stMKkAQheu .collapsed .menu-logo {
    margin-right: 0;
}

.cid-stMKkAQheu .collapsed .btn {
    display: flex;
}

.cid-stMKkAQheu .collapsed .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing,
.cid-stMKkAQheu .collapsed .navbar-collapse.show {
    display: block !important;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-stMKkAQheu .collapsed .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-stMKkAQheu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-stMKkAQheu .collapsed .navbar-collapse.show .navbar-buttons {
    text-align: center;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-stMKkAQheu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
}

@media (min-width: 1200px) {
    .cid-stMKkAQheu .collapsed:not(.navbar-short) .navbar-collapse {
        max-height: calc(100vh - 3.8rem - 3.5rem);
    }

    .cid-stMKkAQheu .collapsed .dropdown .dropdown-menu {
        overflow: hidden;
    }
}

.cid-stMKkAQheu .collapsed button.navbar-toggler {
    display: block;
    -webkit-align-self: center;
    align-self: center;
}

.cid-stMKkAQheu .collapsed .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
}

.cid-stMKkAQheu .collapsed .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.cid-stMKkAQheu .collapsed .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
}

.cid-stMKkAQheu .collapsed .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
}

.cid-stMKkAQheu .collapsed .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
}

.cid-stMKkAQheu .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
}

.cid-stMKkAQheu .collapsed .dropdown-item:before {
    display: none;
}

.cid-stMKkAQheu .navbar-dropdown {
    flex-wrap: nowrap;
}

.cid-stMKkAQheu .navbar-collapse {
    flex-basis: auto;
    display: flex;
}

.cid-stMKkAQheu .nav-link:focus {
    outline: none;
}

.cid-stMKkAQheu .navbar-toggler {
    position: relative;
}

.cid-stMKkAQheu .dropdown-item.active,
.cid-stMKkAQheu .dropdown-item:active {
    background-color: #ffffff;
    color: #000000;
}

.cid-stMKkAQheu .nav-link:hover,
.cid-stMKkAQheu .dropdown-item:hover {
    color: #4f87fb;
}

.cid-suqnlljp01 {
    padding-top: 150px;
    padding-bottom: 150px;
    background-image: url("../../images/foto_farmacia.png");
}

.cid-suqnlljp01 .mbr-section-subtitle {
    color: #4f87fb;
    font-weight: 700;
    line-height: 1.43;
    letter-spacing: 2px;
}

.cid-suqnlljp01 .mbr-section-title {
    color: #130947;
    font-weight: 900;
}

.cid-suqnlljp01 .mbr-section-title .accent-word {
    color: #4f87fb;
}

.cid-suqnlljp01 .mbr-text {
    color: #6d7a8c;
}

.cid-suqnlljp01 .content-link {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    color: #130947;
}

.cid-suqnlljp01 .content-link span {
    margin-right: 15px;
    margin-left: 20px;
    padding: 13px;
    border-radius: 100%;
    color: #4f87fb;
    background-color: #ffffff;
    font-size: 2.275rem;
}

.cid-suqnlljp01 .separator {
    margin-top: -15px;
    margin-left: 0;
    margin-right: auto;
    width: 100%;
}

.cid-suqnlljp01 .separator .sep-holder {
    height: 1px;
    position: relative;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    width: 46%;
}

.cid-suqnlljp01 .separator .sep-holder .sep-line {
    border-color: #4f87fb !important;
    border-top-width: 5px;
    height: 1px;
    border-top: 5px solid #4f87fb;
    position: relative;
    top: 1px;
    width: 46%;
}

.cid-suqnlljp01 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
    margin-top: 47px;
}

.cid-suqnlljp01 .mbr-section-btn .btn {
    border-radius: 4px;
    margin: 0.4rem 0.6rem 0.4rem 0 !important;
    padding: 15px 40px;
}

.cid-suqnlljp01 .mbr-section-btn .btn.display-4 {
    line-height: 2;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 13px;
}

@media (max-width: 991px) {
    .cid-suqnlljp01 .separator,
    .cid-suqnlljp01 .sep-holder,
    .cid-suqnlljp01 .sep-line {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .cid-suqnlljp01 .mbr-section-btn {
        -webkit-box-pack: center;
        justify-content: center;
    }
}

.cid-suyhOQb8Af {
    padding-top: 75px;
    padding-bottom: 0px;
    background-color: #f5f7fa;
}

.cid-suyhOQb8Af h4 {
    letter-spacing: -0.5px;
    color: #130947;
    font-weight: 800;
}

.cid-suyhOQb8Af p {
    color: #6d7a8c;
    line-height: 1.5;
    letter-spacing: 0;
    font-weight: 400;
}

.cid-suyhOQb8Af .mbr-section-title {
    color: #130947;
    margin-bottom: 20px;
    font-weight: 700;
}

.cid-suyhOQb8Af .mbr-section-title.display-2 {
    font-size: 35px;
    line-height: 1.29;
    letter-spacing: -0.5px;
}

.cid-suyhOQb8Af .mbr-section-subtitle {
    color: #4f87fb;
    margin-bottom: 10px;
    font-weight: 800;
}

.cid-suyhOQb8Af .mbr-section-subtitle.display-4 {
    font-size: 13px;
    line-height: 1.85;
    letter-spacing: 2px;
}

.cid-suyhOQb8Af .card-box {
    padding-top: 35px;
}

.cid-suyhOQb8Af .card-box .card-title {
    text-align: center;
    color: #130947;
}

.cid-suyhOQb8Af .card-box .card-title.display-7 {
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    font-weight: 800;
}

.cid-suyhOQb8Af .card-box p {
    text-align: center;
    color: #6d7a8c;
    font-weight: 400;
}

.cid-suyhOQb8Af .card-box p.display-4 {
    font-size: 16px;
    line-height: 1.5;
}

.cid-suyhOQb8Af .card-wrapper {
    height: 100%;
    text-align: center;
}

.cid-suyhOQb8Af .card-img {
    display: inline-block;
    position: relative;
    width: inherit !important;
}

.cid-suyhOQb8Af .card-img img {
    border-radius: 100%;
    height: 200px;
    width: 200px;
    -o-object-fit: cover;
    object-fit: cover;
}

.cid-suyhOQb8Af .card-img .card-icon {
    background: #4f87fb;
    color: #fff;
    height: 46px;
    width: 46px;
    font-size: 14px;
    line-height: 3.29;
    text-align: center;
    border-radius: 100%;
    position: absolute;
    padding: 0.5rem;
    top: 6px;
    right: 0px;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    display: flex;
}

.cid-suyhOQb8Af .card-img .card-icon span {
    z-index: 99;
}

.cid-suyhOQb8Af .card-img .card-icon::before {
    width: 56px;
    height: 56px;
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    border-radius: 50%;
    background-color: #4f87fb;
    opacity: 0.5;
    z-index: 1;
}

.cid-suymQr3HiH {
    padding-top: 90px;
    padding-bottom: 120px;
    background-image: url("../../images/foto_farmacia.png");
}

.cid-suymQr3HiH .mbr-section-subtitle {
    color: #4f87fb;
    font-weight: 700;
    line-height: 1.43;
    letter-spacing: 2px;
}

.cid-suymQr3HiH .mbr-section-title {
    color: #130947;
    font-weight: 900;
}

.cid-suymQr3HiH .mbr-section-title .accent-word {
    color: #4f87fb;
}

.cid-suymQr3HiH .mbr-text {
    color: #6d7a8c;
}

.cid-suymQr3HiH .content-link {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    color: #130947;
}

.cid-suymQr3HiH .content-link span {
    margin-right: 15px;
    margin-left: 20px;
    padding: 13px;
    border-radius: 100%;
    color: #4f87fb;
    background-color: #ffffff;
    font-size: 2.275rem;
}

.cid-suymQr3HiH .separator {
    margin-top: -15px;
    margin-left: 0;
    margin-right: auto;
    width: 100%;
}

.cid-suymQr3HiH .separator .sep-holder {
    height: 1px;
    position: relative;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    width: 46%;
}

.cid-suymQr3HiH .separator .sep-holder .sep-line {
    border-color: #4f87fb !important;
    border-top-width: 5px;
    height: 1px;
    border-top: 5px solid #4f87fb;
    position: relative;
    top: 1px;
    width: 46%;
}

.cid-suymQr3HiH .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
    margin-top: 47px;
}

.cid-suymQr3HiH .mbr-section-btn .btn {
    border-radius: 4px;
    margin: 0.4rem 0.6rem 0.4rem 0 !important;
    padding: 15px 40px;
}

.cid-suymQr3HiH .mbr-section-btn .btn.display-4 {
    line-height: 2;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 13px;
}

@media (max-width: 991px) {
    .cid-suymQr3HiH .separator,
    .cid-suymQr3HiH .sep-holder,
    .cid-suymQr3HiH .sep-line {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .cid-suymQr3HiH .mbr-section-btn {
        -webkit-box-pack: center;
        justify-content: center;
    }
}

.cid-suykScSlDm {
    padding-top: 30px;
    padding-bottom: 0px;
    background-color: #f5f7fa;
}

.cid-suykScSlDm h4 {
    letter-spacing: -0.5px;
    color: #130947;
    font-weight: 800;
}

.cid-suykScSlDm p {
    color: #6d7a8c;
    line-height: 1.5;
    letter-spacing: 0;
    font-weight: 400;
}

.cid-suykScSlDm .mbr-section-title {
    color: #130947;
    margin-bottom: 20px;
    font-weight: 700;
}

.cid-suykScSlDm .mbr-section-title.display-2 {
    font-size: 35px;
    line-height: 1.29;
    letter-spacing: -0.5px;
}

.cid-suykScSlDm .mbr-section-subtitle {
    color: #4f87fb;
    margin-bottom: 10px;
    font-weight: 800;
}

.cid-suykScSlDm .mbr-section-subtitle.display-4 {
    font-size: 13px;
    line-height: 1.85;
    letter-spacing: 2px;
}

.cid-suykScSlDm .card-box {
    padding-top: 35px;
}

.cid-suykScSlDm .card-box .card-title {
    text-align: center;
    color: #130947;
}

.cid-suykScSlDm .card-box .card-title.display-7 {
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    font-weight: 800;
}

.cid-suykScSlDm .card-box p {
    text-align: center;
    color: #6d7a8c;
    font-weight: 400;
}

.cid-suykScSlDm .card-box p.display-4 {
    font-size: 16px;
    line-height: 1.5;
}

.cid-suykScSlDm .card-wrapper {
    height: 100%;
    text-align: center;
}

.cid-suykScSlDm .card-img {
    display: inline-block;
    position: relative;
    width: inherit !important;
}

.cid-suykScSlDm .card-img img {
    border-radius: 100%;
    height: 200px;
    width: 200px;
    -o-object-fit: cover;
    object-fit: cover;
}

.cid-suykScSlDm .card-img .card-icon {
    background: #4f87fb;
    color: #fff;
    height: 46px;
    width: 46px;
    font-size: 14px;
    line-height: 3.29;
    text-align: center;
    border-radius: 100%;
    position: absolute;
    padding: 0.5rem;
    top: 6px;
    right: 0px;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    display: flex;
}

.cid-suykScSlDm .card-img .card-icon span {
    z-index: 99;
}

.cid-suykScSlDm .card-img .card-icon::before {
    width: 56px;
    height: 56px;
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    border-radius: 50%;
    background-color: #4f87fb;
    opacity: 0.5;
    z-index: 1;
}

.cid-suymRFxkKt {
    padding-top: 90px;
    padding-bottom: 150px;
    background-image: url("../../images/foto_farmacia.png");
}

.cid-suymRFxkKt .mbr-section-subtitle {
    color: #4f87fb;
    font-weight: 700;
    line-height: 1.43;
    letter-spacing: 2px;
}

.cid-suymRFxkKt .mbr-section-title {
    color: #130947;
    font-weight: 900;
}

.cid-suymRFxkKt .mbr-section-title .accent-word {
    color: #4f87fb;
}

.cid-suymRFxkKt .mbr-text {
    color: #6d7a8c;
}

.cid-suymRFxkKt .content-link {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    color: #130947;
}

.cid-suymRFxkKt .content-link span {
    margin-right: 15px;
    margin-left: 20px;
    padding: 13px;
    border-radius: 100%;
    color: #4f87fb;
    background-color: #ffffff;
    font-size: 2.275rem;
}

.cid-suymRFxkKt .separator {
    margin-top: -15px;
    margin-left: 0;
    margin-right: auto;
    width: 100%;
}

.cid-suymRFxkKt .separator .sep-holder {
    height: 1px;
    position: relative;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    width: 46%;
}

.cid-suymRFxkKt .separator .sep-holder .sep-line {
    border-color: #4f87fb !important;
    border-top-width: 5px;
    height: 1px;
    border-top: 5px solid #4f87fb;
    position: relative;
    top: 1px;
    width: 46%;
}

.cid-suymRFxkKt .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
    margin-top: 47px;
}

.cid-suymRFxkKt .mbr-section-btn .btn {
    border-radius: 4px;
    margin: 0.4rem 0.6rem 0.4rem 0 !important;
    padding: 15px 40px;
}

.cid-suymRFxkKt .mbr-section-btn .btn.display-4 {
    line-height: 2;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 13px;
}

@media (max-width: 991px) {
    .cid-suymRFxkKt .separator,
    .cid-suymRFxkKt .sep-holder,
    .cid-suymRFxkKt .sep-line {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .cid-suymRFxkKt .mbr-section-btn {
        -webkit-box-pack: center;
        justify-content: center;
    }
}

.cid-suym8CcaPb {
    padding-top: 15px;
    padding-bottom: 0px;
    background-color: #f5f7fa;
}

.cid-suym8CcaPb h4 {
    letter-spacing: -0.5px;
    color: #130947;
    font-weight: 800;
}

.cid-suym8CcaPb p {
    color: #6d7a8c;
    line-height: 1.5;
    letter-spacing: 0;
    font-weight: 400;
}

.cid-suym8CcaPb .mbr-section-title {
    color: #130947;
    margin-bottom: 20px;
    font-weight: 700;
}

.cid-suym8CcaPb .mbr-section-title.display-2 {
    font-size: 35px;
    line-height: 1.29;
    letter-spacing: -0.5px;
}

.cid-suym8CcaPb .mbr-section-subtitle {
    color: #4f87fb;
    margin-bottom: 10px;
    font-weight: 800;
}

.cid-suym8CcaPb .mbr-section-subtitle.display-4 {
    font-size: 13px;
    line-height: 1.85;
    letter-spacing: 2px;
}

.cid-suym8CcaPb .card-box {
    padding-top: 35px;
}

.cid-suym8CcaPb .card-box .card-title {
    text-align: center;
    color: #130947;
}

.cid-suym8CcaPb .card-box .card-title.display-7 {
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    font-weight: 800;
}

.cid-suym8CcaPb .card-box p {
    text-align: center;
    color: #6d7a8c;
    font-weight: 400;
}

.cid-suym8CcaPb .card-box p.display-4 {
    font-size: 16px;
    line-height: 1.5;
}

.cid-suym8CcaPb .card-wrapper {
    height: 100%;
    text-align: center;
}

.cid-suym8CcaPb .card-img {
    display: inline-block;
    position: relative;
    width: inherit !important;
}

.cid-suym8CcaPb .card-img img {
    border-radius: 100%;
    height: 200px;
    width: 200px;
    -o-object-fit: cover;
    object-fit: cover;
}

.cid-suym8CcaPb .card-img .card-icon {
    background: #4f87fb;
    color: #fff;
    height: 46px;
    width: 46px;
    font-size: 14px;
    line-height: 3.29;
    text-align: center;
    border-radius: 100%;
    position: absolute;
    padding: 0.5rem;
    top: 6px;
    right: 0px;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    display: flex;
}

.cid-suym8CcaPb .card-img .card-icon span {
    z-index: 99;
}

.cid-suym8CcaPb .card-img .card-icon::before {
    width: 56px;
    height: 56px;
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    border-radius: 50%;
    background-color: #4f87fb;
    opacity: 0.5;
    z-index: 1;
}

.cid-suqnlLJOLB {
    padding-top: 30px;
    padding-bottom: 45px;
    background-color: #25303e;
}

.cid-suqnlLJOLB .links {
    text-align: center;
    color: #ffffff;
}

.cid-suqnlLJOLB p {
    margin: 0;
}

.cid-suqnlLJOLB a {
    color: #ffffff;
}

.cid-suqnlLJOLB a:hover {
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

.is-builder .cid-stMKkAQheu .navbar {
    padding-top: 20px !important;
}

.cid-stMKkAQheu .navbar {
    padding: 0.5rem 0;
    background: #ffffff;
    -webkit-transition: none;
    transition: none;
    min-height: 77px;
}

@media (min-width: 1200px) {
    .cid-stMKkAQheu .navbar .dropdown .dropdown-menu .dropdown-item {
        padding: 0.835em 2.5385em 0.835em 3.5385em !important;
        margin: 0 !important;
    }

    .cid-stMKkAQheu .navbar .dropdown .dropdown-menu .dropdown-item:hover {
        padding: 0.835em 2.5385em 0.835em 3.8385em !important;
    }
}

.cid-stMKkAQheu .menu-logo {
    display: flex;
    position: relative;
    -webkit-box-align: center;
    align-items: center;
    margin-right: auto;
}

.cid-stMKkAQheu .menu-logo .navbar-brand {
    display: flex;
    margin-left: 4rem;
    padding: 0.5rem 0;
    -webkit-transition: padding 0.2s;
    transition: padding 0.2s;
    min-height: 3.8rem;
    -webkit-box-align: center;
    align-items: center;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-caption-wrap {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    word-break: break-word;
    min-width: 7rem;
    margin: 0.3rem 0;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
    line-height: 1.2rem !important;
    padding-right: 2rem;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-logo {
    font-size: 4rem;
    -webkit-transition: font-size 0.25s;
    transition: font-size 0.25s;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-logo img {
    display: flex;
    width: auto;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
    -webkit-transition: font-size 0.25s;
    transition: font-size 0.25s;
}

.cid-stMKkAQheu .navbar-dropdown.bg-color.transparent.opened {
    background: #ffffff;
}

.cid-stMKkAQheu a {
    font-style: normal;
}

.cid-stMKkAQheu .nav-item span {
    padding-right: 0.4em;
    line-height: 0.5em;
    vertical-align: middle;
    position: relative;
    text-decoration: none;
}

.cid-stMKkAQheu .nav-item a {
    padding: 0.4rem 20px !important;
}

.cid-stMKkAQheu .dropdown-item:before {
    color: #ffffff;
    font-family: Material-Design-Icons !important;
    content: '\e716';
    display: inline-block;
    width: 0;
    position: absolute;
    left: 1.125rem;
    top: 1.1rem;
    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;
    transition: all 0.25s ease-in-out;
}

.cid-stMKkAQheu .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
}

.cid-stMKkAQheu .content-text {
    margin-bottom: 0;
}

.cid-stMKkAQheu .navbar-nav {
    position: relative;
    min-height: 100px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
}

.cid-stMKkAQheu .navbar-nav li:first-child > a {
    color: #4f87fb;
}

.cid-stMKkAQheu .navbar-nav li:last-child > a::before {
    position: absolute;
    content: '';
    height: 20px;
    width: 1px;
    right: -9px;
    margin-top: -10px;
    top: 50%;
    background-color: rgba(0, 0, 0, 0.46);
    margin-right: 12px;
    width: 0px;
    height: 0px;
}

@media (min-width: 1200px) {
    .cid-stMKkAQheu .navbar-nav .main-menu-animated-line {
        position: absolute;
        left: 0;
        width: 0;
        height: 0;
        z-index: 100;
        border-top: 4px solid #2e40be;
        -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
        transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    }

    .cid-stMKkAQheu .navbar-nav .main-menu-animated-line.bottom {
        bottom: 0;
    }

    .cid-stMKkAQheu .navbar-nav .nav-item a {
        margin: 0 1.1rem !important;
    }
}

@media (max-width: 1200px) {
    .cid-stMKkAQheu .navbar-nav .nav-item a {
        margin: 0 !important;
    }
}

.cid-stMKkAQheu .navbar-nav .nav-item span {
    padding-right: 0.1rem;
}

.cid-stMKkAQheu .display-4 > .mbr-iconfont {
    font-size: 1.23em;
}

.cid-stMKkAQheu .display-4 > .btn > .mbr-iconfont {
    font-size: 1.43em;
}

.cid-stMKkAQheu .nav-dropdown .dropdown-item {
    font-weight: 400;
}

.cid-stMKkAQheu .content-link {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.cid-stMKkAQheu .content-link:first-child {
    padding-left: 1.3rem;
}

@media (max-width: 1200px) {
    .cid-stMKkAQheu .content-link {
        display: none;
    }
}

.cid-stMKkAQheu .navbar-buttons.mbr-section-btn {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.cid-stMKkAQheu .navbar-buttons.mbr-section-btn > .mbr-iconfont {
    font-size: 17px !important;
    margin-right: 13px;
}

.cid-stMKkAQheu .nav-dropdown .link {
    font-weight: 600;
}

.cid-stMKkAQheu .nav-dropdown .link.display-4 {
    font-size: 15px;
}

.cid-stMKkAQheu .menu .navbar-brand .logo-text-part {
    vertical-align: top;
}

.cid-stMKkAQheu .content-left-side {
    text-align: center;
    padding-top: 3px;
}

@media (max-width: 575px) {
    .cid-stMKkAQheu .content-left-side {
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        padding: 0.5rem 0;
    }

    .cid-stMKkAQheu .content-left-side .content-link {
        font-size: 0.8rem;
        margin: 0;
        padding-bottom: 1rem;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
}

.cid-stMKkAQheu .content-right-side {
    text-align: center;
}

@media (max-width: 575px) {
    .cid-stMKkAQheu .content-right-side {
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        padding: 0.5rem 0;
    }

    .cid-stMKkAQheu .content-right-side .content-link {
        font-size: 0.8rem;
        margin: 0;
        padding-bottom: 1rem;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
}

.cid-stMKkAQheu .content-right-side .icons-block {
    padding-bottom: 5px;
    padding-left: 17px;
}

.cid-stMKkAQheu .content-right-side .content-link {
    margin-left: 1rem;
}

.cid-stMKkAQheu .content-right-side .content-link span {
    vertical-align: middle;
    font-weight: bold;
}

.cid-stMKkAQheu .menu-content-top {
    display: none;
    padding: 1rem 4rem 1rem 3.8rem;
    -webkit-transition: height 0.3s ease-in-out;
    transition: height 0.3s ease-in-out;
    padding-top: 15px;
    padding-bottom: 15px;
}

.cid-stMKkAQheu .content-left-side .content-link {
    margin-left: 1rem;
}

.cid-stMKkAQheu .content-left-side .content-link:first-child {
    padding-left: 0;
    margin-left: 0;
}

.cid-stMKkAQheu .content-left-side .content-link span {
    vertical-align: middle;
    font-weight: bold;
}

@media (max-width: 1200px) {
    .cid-stMKkAQheu .content-left-side {
        text-align: center;
        padding-bottom: 1rem;
    }

    .cid-stMKkAQheu .dropdown-item {
        padding: 0.235em 0 !important;
        margin: 0 !important;
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
    }

    .cid-stMKkAQheu .dropdown-item:before {
        display: none;
    }

    .cid-stMKkAQheu .menu-logo {
        width: 100%;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }

    .cid-stMKkAQheu .menu-bottom {
        width: 100%;
        padding: 0 1rem;
        display: block;
    }

    .cid-stMKkAQheu img {
        height: 1.8rem !important;
    }

    .cid-stMKkAQheu .btn {
        display: flex;
    }

    .cid-stMKkAQheu button.navbar-toggler {
        display: block;
        align-self: center;
    }

    .cid-stMKkAQheu .navbar-brand {
        margin-left: 1rem !important;
        margin-top: 0.5rem;
    }

    .cid-stMKkAQheu .navbar-toggleable-sm {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }

    .cid-stMKkAQheu .navbar-collapse {
        display: none !important;
        padding-right: 0 !important;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing,
    .cid-stMKkAQheu .navbar-collapse.show {
        display: block !important;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing .navbar-nav,
    .cid-stMKkAQheu .navbar-collapse.show .navbar-nav {
        display: block;
        text-align: center;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing .navbar-nav .nav-item,
    .cid-stMKkAQheu .navbar-collapse.show .navbar-nav .nav-item {
        clear: both;
        padding: 0.5rem 0;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing .navbar-buttons,
    .cid-stMKkAQheu .navbar-collapse.show .navbar-buttons {
        text-align: center;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing .navbar-buttons:last-child,
    .cid-stMKkAQheu .navbar-collapse.show .navbar-buttons:last-child {
        margin-bottom: 1rem;
    }

    .cid-stMKkAQheu .dropdown .dropdown-menu {
        width: 100%;
        text-align: center;
        position: relative;
        opacity: 0;
        display: block;
        height: 0;
        visibility: hidden;
        padding: 0;
        -webkit-transition-duration: 0.5s;
        transition-duration: 0.5s;
        -webkit-transition-property: opacity, padding, height;
        transition-property: opacity, padding, height;
    }

    .cid-stMKkAQheu .dropdown.open > .dropdown-menu {
        position: relative;
        opacity: 1;
        height: auto;
        padding: 1.4rem 0;
        visibility: visible;
    }

    .cid-stMKkAQheu .dropdown .dropdown-submenu {
        left: 0;
        text-align: center;
        width: 100%;
    }

    .cid-stMKkAQheu .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
        margin-top: 0;
        position: inherit;
        right: 0;
        top: 50%;
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: 0.3em;
        vertical-align: middle;
        content: '';
        border-top: 0.3em solid;
        border-right: 0.3em solid transparent;
        border-left: 0.3em solid transparent;
    }
}

@media (min-width: 1200px) {
    .cid-stMKkAQheu .navbar .menu-content-top {
        display: block;
    }

    .cid-stMKkAQheu .menu-content-top .row {
        -webkit-box-pack: justify;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .cid-stMKkAQheu .content-right-side {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: end;
        justify-content: flex-end;
        flex-basis: 70%;
        flex-shrink: 0;
        flex-wrap: wrap;
        text-align: right;
    }

    .cid-stMKkAQheu .content-left-side {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: start;
        justify-content: flex-start;
        flex-basis: 70%;
        flex-shrink: 0;
        flex-wrap: wrap;
        text-align: right;
    }

    .cid-stMKkAQheu .menu-content-top {
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    }

    .cid-stMKkAQheu .menu-bottom {
        display: flex;
    }

    .cid-stMKkAQheu .navbar {
        display: block;
        padding: 0;
    }

    .cid-stMKkAQheu .navbar .menu-logo {
        margin-right: auto;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
    }

    .cid-stMKkAQheu .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
        -webkit-align-self: initial;
        align-self: auto;
        display: flex !important;
        -webkit-box-align: center;
        align-items: center;
        z-index: 101;
        min-height: 76px;
    }

    .cid-stMKkAQheu .navbar-toggler {
        display: none;
    }
}

.cid-stMKkAQheu .navbar-short .menu-content-top {
    border: none;
    display: none;
}

.cid-stMKkAQheu .btn {
    padding: 15px 30px;
    font-weight: 800;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    border-width: 1px;
    box-shadow: none;
}

.cid-stMKkAQheu .btn .mbr-iconfont {
    font-size: 1.2em;
}

.cid-stMKkAQheu .btn.display-4 {
    letter-spacing: 0.5px;
    font-size: 13px;
    line-height: 1;
}

.cid-stMKkAQheu .navbar-toggleable-sm .navbar-collapse {
    -webkit-box-pack: end;
    justify-content: flex-end;
    padding-right: 4rem;
    width: 100%;
}

.cid-stMKkAQheu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
    flex-wrap: wrap;
    padding-left: 0;
}

.cid-stMKkAQheu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: center;
    align-self: center;
}

.cid-stMKkAQheu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
    padding-left: 0;
    padding-bottom: 0;
}

.cid-stMKkAQheu .dropdown .dropdown-menu {
    background: #ffffff;
    display: none;
    position: absolute;
    border-top: 3px solid #2e40be;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    min-width: 16.875rem;
    text-align: left;
    padding-top: 0;
    padding-bottom: 0;
}

@media (max-width: 1200px) {
    .cid-stMKkAQheu .dropdown .dropdown-menu {
        overflow: hidden;
    }
}

.cid-stMKkAQheu .dropdown .dropdown-menu .dropdown-item {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.cid-stMKkAQheu .dropdown .dropdown-menu .dropdown-item::after {
    right: -1rem;
}

.cid-stMKkAQheu .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #4f87fb;
    color: #ffffff;
}

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

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

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

.cid-stMKkAQheu .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
}

.cid-stMKkAQheu .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-stMKkAQheu .navbar-toggleable-sm.opened:after {
    position: absolute;
    width: 100vw;
    height: 100vh;
    content: '';
    background-color: rgba(0, 0, 0, 0.1);
    left: 0;
    bottom: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    z-index: 1000;
}

.cid-stMKkAQheu .navbar.navbar-short {
    min-height: 60px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-logo a {
    font-size: 2.5rem !important;
    line-height: 2.5rem;
    -webkit-transition: font-size 0.25s;
    transition: font-size 0.25s;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
    font-size: 2.5rem !important;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-logo a img {
    height: 3rem !important;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-brand {
    min-height: 3rem;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-nav {
    min-height: 60px;
}

.cid-stMKkAQheu button.navbar-toggler {
    width: 31px;
    height: 18px;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.cid-stMKkAQheu button.navbar-toggler:focus {
    outline: none;
}

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

.cid-stMKkAQheu button.navbar-toggler .hamburger span:nth-child(1) {
    top: 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.cid-stMKkAQheu button.navbar-toggler .hamburger span:nth-child(2) {
    top: 8px;
    -webkit-transition: all 0.15s;
    transition: all 0.15s;
}

.cid-stMKkAQheu button.navbar-toggler .hamburger span:nth-child(3) {
    top: 8px;
    -webkit-transition: all 0.15s;
    transition: all 0.15s;
}

.cid-stMKkAQheu button.navbar-toggler .hamburger span:nth-child(4) {
    top: 16px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

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

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

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

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

.cid-stMKkAQheu .navbar-fixed-top.opened {
    position: relative;
}

.cid-stMKkAQheu .collapsed.navbar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.cid-stMKkAQheu .collapsed .menu-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.cid-stMKkAQheu .collapsed .menu-logo {
    margin-right: 0;
}

.cid-stMKkAQheu .collapsed .btn {
    display: flex;
}

.cid-stMKkAQheu .collapsed .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing,
.cid-stMKkAQheu .collapsed .navbar-collapse.show {
    display: block !important;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-stMKkAQheu .collapsed .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-stMKkAQheu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-stMKkAQheu .collapsed .navbar-collapse.show .navbar-buttons {
    text-align: center;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-stMKkAQheu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
}

@media (min-width: 1200px) {
    .cid-stMKkAQheu .collapsed:not(.navbar-short) .navbar-collapse {
        max-height: calc(100vh - 3.8rem - 3.5rem);
    }

    .cid-stMKkAQheu .collapsed .dropdown .dropdown-menu {
        overflow: hidden;
    }
}

.cid-stMKkAQheu .collapsed button.navbar-toggler {
    display: block;
    -webkit-align-self: center;
    align-self: center;
}

.cid-stMKkAQheu .collapsed .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
}

.cid-stMKkAQheu .collapsed .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.cid-stMKkAQheu .collapsed .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
}

.cid-stMKkAQheu .collapsed .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
}

.cid-stMKkAQheu .collapsed .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
}

.cid-stMKkAQheu .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
}

.cid-stMKkAQheu .collapsed .dropdown-item:before {
    display: none;
}

.cid-stMKkAQheu .navbar-dropdown {
    flex-wrap: nowrap;
}

.cid-stMKkAQheu .navbar-collapse {
    flex-basis: auto;
    display: flex;
}

.cid-stMKkAQheu .nav-link:focus {
    outline: none;
}

.cid-stMKkAQheu .navbar-toggler {
    position: relative;
}

.cid-stMKkAQheu .dropdown-item.active,
.cid-stMKkAQheu .dropdown-item:active {
    background-color: #ffffff;
    color: #000000;
}

.cid-stMKkAQheu .nav-link:hover,
.cid-stMKkAQheu .dropdown-item:hover {
    color: #4f87fb;
}

.cid-suysBsnmS1 {
    padding-top: 150px;
    padding-bottom: 150px;
    background-image: url("../../images/foto_farmacia.png");
}

.cid-suysBsnmS1 .mbr-section-subtitle {
    color: #4f87fb;
    font-weight: 700;
    line-height: 1.43;
    letter-spacing: 2px;
}

.cid-suysBsnmS1 .mbr-section-title {
    color: #130947;
    font-weight: 900;
}

.cid-suysBsnmS1 .mbr-section-title .accent-word {
    color: #4f87fb;
}

.cid-suysBsnmS1 .mbr-text {
    color: #6d7a8c;
}

.cid-suysBsnmS1 .content-link {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    color: #130947;
}

.cid-suysBsnmS1 .content-link span {
    margin-right: 15px;
    margin-left: 20px;
    padding: 13px;
    border-radius: 100%;
    color: #4f87fb;
    background-color: #ffffff;
    font-size: 2.275rem;
}

.cid-suysBsnmS1 .separator {
    margin-top: -15px;
    margin-left: 0;
    margin-right: auto;
    width: 100%;
}

.cid-suysBsnmS1 .separator .sep-holder {
    height: 1px;
    position: relative;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    width: 46%;
}

.cid-suysBsnmS1 .separator .sep-holder .sep-line {
    border-color: #4f87fb !important;
    border-top-width: 5px;
    height: 1px;
    border-top: 5px solid #4f87fb;
    position: relative;
    top: 1px;
    width: 46%;
}

.cid-suysBsnmS1 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
    margin-top: 47px;
}

.cid-suysBsnmS1 .mbr-section-btn .btn {
    border-radius: 4px;
    margin: 0.4rem 0.6rem 0.4rem 0 !important;
    padding: 15px 40px;
}

.cid-suysBsnmS1 .mbr-section-btn .btn.display-4 {
    line-height: 2;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 13px;
}

@media (max-width: 991px) {
    .cid-suysBsnmS1 .separator,
    .cid-suysBsnmS1 .sep-holder,
    .cid-suysBsnmS1 .sep-line {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .cid-suysBsnmS1 .mbr-section-btn {
        -webkit-box-pack: center;
        justify-content: center;
    }
}

.cid-suyszcZsbF {
    padding-top: 30px;
    padding-bottom: 105px;
    background-color: #efefef;
    background: linear-gradient(0deg, #efefef, #ffffff);
    font-weight: 400;
    text-align: center;
}

.cid-suyszcZsbF .mbr-section-title {
    letter-spacing: 0.1em;
    text-align: center;
}

.cid-suyszcZsbF .image-wrap img {
    width: 100%;
}

.cid-suyszcZsbF .mbr-desc {
    width: 100%;
}

.cid-suyszcZsbF .tab-content {
    padding: 4rem 3rem 3rem 3rem;
    border-top: 3px solid #879a9f;
    -webkit-box-shadow: 0px 4px 26px -5px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 4px 26px -5px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 4px 26px -5px rgba(0, 0, 0, 0.2);
    background: #f5f7fa;
}

.cid-suyszcZsbF .nav {
    border: none;
}

.cid-suyszcZsbF .nav-tabs {
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.cid-suyszcZsbF .card-box {
    -webkit-align-items: baseline;
    align-items: baseline;
}

.cid-suyszcZsbF .card-box .mbr-price {
    margin: 0;
}

.cid-suyszcZsbF .card-box .mbr-text {
    line-height: 1;
}

.cid-suyszcZsbF .nav-tabs .nav-link {
    box-sizing: border-box;
    color: #232323;
    font-style: normal;
    font-weight: 500;
    padding: .5rem 1rem;
    margin: 0px;
    margin-left: -0.5px;
    margin-right: -0.5px;
    margin-bottom: 1rem;
    transition: all .5s;
    border: 0 !important;
}

.cid-suyszcZsbF .nav-tabs .nav-link:hover {
    color: #879a9f;
    border: 0 !important;
}

.cid-suyszcZsbF .nav-tabs .nav-link.active {
    color: #879a9f;
    border: 0 !important;
    background-color: transparent;
    position: relative;
    text-align: center;
}

@media (max-width: 767px) {
    .cid-suyszcZsbF .container {
        padding-left: 0rem;
        padding-right: 0rem;
    }
}

.cid-suyszcZsbF .mbr-text {
    color: #344cf1;
}

.cid-suyt2lRrCc {
    padding-top: 75px;
    padding-bottom: 150px;
    background-image: url("../../images/foto_farmacia.png");
}

.cid-suyt2lRrCc .mbr-section-subtitle {
    color: #4f87fb;
    font-weight: 700;
    line-height: 1.43;
    letter-spacing: 2px;
}

.cid-suyt2lRrCc .mbr-section-title {
    color: #130947;
    font-weight: 900;
}

.cid-suyt2lRrCc .mbr-section-title .accent-word {
    color: #4f87fb;
}

.cid-suyt2lRrCc .mbr-text {
    color: #6d7a8c;
}

.cid-suyt2lRrCc .content-link {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    color: #130947;
}

.cid-suyt2lRrCc .content-link span {
    margin-right: 15px;
    margin-left: 20px;
    padding: 13px;
    border-radius: 100%;
    color: #4f87fb;
    background-color: #ffffff;
    font-size: 2.275rem;
}

.cid-suyt2lRrCc .separator {
    margin-top: -15px;
    margin-left: 0;
    margin-right: auto;
    width: 100%;
}

.cid-suyt2lRrCc .separator .sep-holder {
    height: 1px;
    position: relative;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    width: 46%;
}

.cid-suyt2lRrCc .separator .sep-holder .sep-line {
    border-color: #4f87fb !important;
    border-top-width: 5px;
    height: 1px;
    border-top: 5px solid #4f87fb;
    position: relative;
    top: 1px;
    width: 46%;
}

.cid-suyt2lRrCc .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
    margin-top: 47px;
}

.cid-suyt2lRrCc .mbr-section-btn .btn {
    border-radius: 4px;
    margin: 0.4rem 0.6rem 0.4rem 0 !important;
    padding: 15px 40px;
}

.cid-suyt2lRrCc .mbr-section-btn .btn.display-4 {
    line-height: 2;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 13px;
}

@media (max-width: 991px) {
    .cid-suyt2lRrCc .separator,
    .cid-suyt2lRrCc .sep-holder,
    .cid-suyt2lRrCc .sep-line {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .cid-suyt2lRrCc .mbr-section-btn {
        -webkit-box-pack: center;
        justify-content: center;
    }
}

.cid-suysYkZcUE {
    padding-top: 30px;
    padding-bottom: 45px;
    background-color: #25303e;
}

.cid-suysYkZcUE .links {
    text-align: center;
    color: #ffffff;
}

.cid-suysYkZcUE p {
    margin: 0;
}

.cid-suysYkZcUE a {
    color: #ffffff;
}

.cid-suysYkZcUE a:hover {
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

.is-builder .cid-stMKkAQheu .navbar {
    padding-top: 20px !important;
}

.cid-stMKkAQheu .navbar {
    padding: 0.5rem 0;
    background: #ffffff;
    -webkit-transition: none;
    transition: none;
    min-height: 77px;
}

@media (min-width: 1200px) {
    .cid-stMKkAQheu .navbar .dropdown .dropdown-menu .dropdown-item {
        padding: 0.835em 2.5385em 0.835em 3.5385em !important;
        margin: 0 !important;
    }

    .cid-stMKkAQheu .navbar .dropdown .dropdown-menu .dropdown-item:hover {
        padding: 0.835em 2.5385em 0.835em 3.8385em !important;
    }
}

.cid-stMKkAQheu .menu-logo {
    display: flex;
    position: relative;
    -webkit-box-align: center;
    align-items: center;
    margin-right: auto;
}

.cid-stMKkAQheu .menu-logo .navbar-brand {
    display: flex;
    margin-left: 4rem;
    padding: 0.5rem 0;
    -webkit-transition: padding 0.2s;
    transition: padding 0.2s;
    min-height: 3.8rem;
    -webkit-box-align: center;
    align-items: center;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-caption-wrap {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    word-break: break-word;
    min-width: 7rem;
    margin: 0.3rem 0;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
    line-height: 1.2rem !important;
    padding-right: 2rem;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-logo {
    font-size: 4rem;
    -webkit-transition: font-size 0.25s;
    transition: font-size 0.25s;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-logo img {
    display: flex;
    width: auto;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
    -webkit-transition: font-size 0.25s;
    transition: font-size 0.25s;
}

.cid-stMKkAQheu .navbar-dropdown.bg-color.transparent.opened {
    background: #ffffff;
}

.cid-stMKkAQheu a {
    font-style: normal;
}

.cid-stMKkAQheu .nav-item span {
    padding-right: 0.4em;
    line-height: 0.5em;
    vertical-align: middle;
    position: relative;
    text-decoration: none;
}

.cid-stMKkAQheu .nav-item a {
    padding: 0.4rem 20px !important;
}

.cid-stMKkAQheu .dropdown-item:before {
    color: #ffffff;
    font-family: Material-Design-Icons !important;
    content: '\e716';
    display: inline-block;
    width: 0;
    position: absolute;
    left: 1.125rem;
    top: 1.1rem;
    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;
    transition: all 0.25s ease-in-out;
}

.cid-stMKkAQheu .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
}

.cid-stMKkAQheu .content-text {
    margin-bottom: 0;
}

.cid-stMKkAQheu .navbar-nav {
    position: relative;
    min-height: 100px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
}

.cid-stMKkAQheu .navbar-nav li:first-child > a {
    color: #4f87fb;
}

.cid-stMKkAQheu .navbar-nav li:last-child > a::before {
    position: absolute;
    content: '';
    height: 20px;
    width: 1px;
    right: -9px;
    margin-top: -10px;
    top: 50%;
    background-color: rgba(0, 0, 0, 0.46);
    margin-right: 12px;
    width: 0px;
    height: 0px;
}

@media (min-width: 1200px) {
    .cid-stMKkAQheu .navbar-nav .main-menu-animated-line {
        position: absolute;
        left: 0;
        width: 0;
        height: 0;
        z-index: 100;
        border-top: 4px solid #2e40be;
        -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
        transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    }

    .cid-stMKkAQheu .navbar-nav .main-menu-animated-line.bottom {
        bottom: 0;
    }

    .cid-stMKkAQheu .navbar-nav .nav-item a {
        margin: 0 1.1rem !important;
    }
}

@media (max-width: 1200px) {
    .cid-stMKkAQheu .navbar-nav .nav-item a {
        margin: 0 !important;
    }
}

.cid-stMKkAQheu .navbar-nav .nav-item span {
    padding-right: 0.1rem;
}

.cid-stMKkAQheu .display-4 > .mbr-iconfont {
    font-size: 1.23em;
}

.cid-stMKkAQheu .display-4 > .btn > .mbr-iconfont {
    font-size: 1.43em;
}

.cid-stMKkAQheu .nav-dropdown .dropdown-item {
    font-weight: 400;
}

.cid-stMKkAQheu .content-link {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.cid-stMKkAQheu .content-link:first-child {
    padding-left: 1.3rem;
}

@media (max-width: 1200px) {
    .cid-stMKkAQheu .content-link {
        display: none;
    }
}

.cid-stMKkAQheu .navbar-buttons.mbr-section-btn {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.cid-stMKkAQheu .navbar-buttons.mbr-section-btn > .mbr-iconfont {
    font-size: 17px !important;
    margin-right: 13px;
}

.cid-stMKkAQheu .nav-dropdown .link {
    font-weight: 600;
}

.cid-stMKkAQheu .nav-dropdown .link.display-4 {
    font-size: 15px;
}

.cid-stMKkAQheu .menu .navbar-brand .logo-text-part {
    vertical-align: top;
}

.cid-stMKkAQheu .content-left-side {
    text-align: center;
    padding-top: 3px;
}

@media (max-width: 575px) {
    .cid-stMKkAQheu .content-left-side {
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        padding: 0.5rem 0;
    }

    .cid-stMKkAQheu .content-left-side .content-link {
        font-size: 0.8rem;
        margin: 0;
        padding-bottom: 1rem;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
}

.cid-stMKkAQheu .content-right-side {
    text-align: center;
}

@media (max-width: 575px) {
    .cid-stMKkAQheu .content-right-side {
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        padding: 0.5rem 0;
    }

    .cid-stMKkAQheu .content-right-side .content-link {
        font-size: 0.8rem;
        margin: 0;
        padding-bottom: 1rem;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
}

.cid-stMKkAQheu .content-right-side .icons-block {
    padding-bottom: 5px;
    padding-left: 17px;
}

.cid-stMKkAQheu .content-right-side .content-link {
    margin-left: 1rem;
}

.cid-stMKkAQheu .content-right-side .content-link span {
    vertical-align: middle;
    font-weight: bold;
}

.cid-stMKkAQheu .menu-content-top {
    display: none;
    padding: 1rem 4rem 1rem 3.8rem;
    -webkit-transition: height 0.3s ease-in-out;
    transition: height 0.3s ease-in-out;
    padding-top: 15px;
    padding-bottom: 15px;
}

.cid-stMKkAQheu .content-left-side .content-link {
    margin-left: 1rem;
}

.cid-stMKkAQheu .content-left-side .content-link:first-child {
    padding-left: 0;
    margin-left: 0;
}

.cid-stMKkAQheu .content-left-side .content-link span {
    vertical-align: middle;
    font-weight: bold;
}

@media (max-width: 1200px) {
    .cid-stMKkAQheu .content-left-side {
        text-align: center;
        padding-bottom: 1rem;
    }

    .cid-stMKkAQheu .dropdown-item {
        padding: 0.235em 0 !important;
        margin: 0 !important;
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
    }

    .cid-stMKkAQheu .dropdown-item:before {
        display: none;
    }

    .cid-stMKkAQheu .menu-logo {
        width: 100%;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }

    .cid-stMKkAQheu .menu-bottom {
        width: 100%;
        padding: 0 1rem;
        display: block;
    }

    .cid-stMKkAQheu img {
        height: 1.8rem !important;
    }

    .cid-stMKkAQheu .btn {
        display: flex;
    }

    .cid-stMKkAQheu button.navbar-toggler {
        display: block;
        align-self: center;
    }

    .cid-stMKkAQheu .navbar-brand {
        margin-left: 1rem !important;
        margin-top: 0.5rem;
    }

    .cid-stMKkAQheu .navbar-toggleable-sm {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }

    .cid-stMKkAQheu .navbar-collapse {
        display: none !important;
        padding-right: 0 !important;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing,
    .cid-stMKkAQheu .navbar-collapse.show {
        display: block !important;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing .navbar-nav,
    .cid-stMKkAQheu .navbar-collapse.show .navbar-nav {
        display: block;
        text-align: center;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing .navbar-nav .nav-item,
    .cid-stMKkAQheu .navbar-collapse.show .navbar-nav .nav-item {
        clear: both;
        padding: 0.5rem 0;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing .navbar-buttons,
    .cid-stMKkAQheu .navbar-collapse.show .navbar-buttons {
        text-align: center;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing .navbar-buttons:last-child,
    .cid-stMKkAQheu .navbar-collapse.show .navbar-buttons:last-child {
        margin-bottom: 1rem;
    }

    .cid-stMKkAQheu .dropdown .dropdown-menu {
        width: 100%;
        text-align: center;
        position: relative;
        opacity: 0;
        display: block;
        height: 0;
        visibility: hidden;
        padding: 0;
        -webkit-transition-duration: 0.5s;
        transition-duration: 0.5s;
        -webkit-transition-property: opacity, padding, height;
        transition-property: opacity, padding, height;
    }

    .cid-stMKkAQheu .dropdown.open > .dropdown-menu {
        position: relative;
        opacity: 1;
        height: auto;
        padding: 1.4rem 0;
        visibility: visible;
    }

    .cid-stMKkAQheu .dropdown .dropdown-submenu {
        left: 0;
        text-align: center;
        width: 100%;
    }

    .cid-stMKkAQheu .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
        margin-top: 0;
        position: inherit;
        right: 0;
        top: 50%;
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: 0.3em;
        vertical-align: middle;
        content: '';
        border-top: 0.3em solid;
        border-right: 0.3em solid transparent;
        border-left: 0.3em solid transparent;
    }
}

@media (min-width: 1200px) {
    .cid-stMKkAQheu .navbar .menu-content-top {
        display: block;
    }

    .cid-stMKkAQheu .menu-content-top .row {
        -webkit-box-pack: justify;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .cid-stMKkAQheu .content-right-side {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: end;
        justify-content: flex-end;
        flex-basis: 70%;
        flex-shrink: 0;
        flex-wrap: wrap;
        text-align: right;
    }

    .cid-stMKkAQheu .content-left-side {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: start;
        justify-content: flex-start;
        flex-basis: 70%;
        flex-shrink: 0;
        flex-wrap: wrap;
        text-align: right;
    }

    .cid-stMKkAQheu .menu-content-top {
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    }

    .cid-stMKkAQheu .menu-bottom {
        display: flex;
    }

    .cid-stMKkAQheu .navbar {
        display: block;
        padding: 0;
    }

    .cid-stMKkAQheu .navbar .menu-logo {
        margin-right: auto;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
    }

    .cid-stMKkAQheu .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
        -webkit-align-self: initial;
        align-self: auto;
        display: flex !important;
        -webkit-box-align: center;
        align-items: center;
        z-index: 101;
        min-height: 76px;
    }

    .cid-stMKkAQheu .navbar-toggler {
        display: none;
    }
}

.cid-stMKkAQheu .navbar-short .menu-content-top {
    border: none;
    display: none;
}

.cid-stMKkAQheu .btn {
    padding: 15px 30px;
    font-weight: 800;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    border-width: 1px;
    box-shadow: none;
}

.cid-stMKkAQheu .btn .mbr-iconfont {
    font-size: 1.2em;
}

.cid-stMKkAQheu .btn.display-4 {
    letter-spacing: 0.5px;
    font-size: 13px;
    line-height: 1;
}

.cid-stMKkAQheu .navbar-toggleable-sm .navbar-collapse {
    -webkit-box-pack: end;
    justify-content: flex-end;
    padding-right: 4rem;
    width: 100%;
}

.cid-stMKkAQheu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
    flex-wrap: wrap;
    padding-left: 0;
}

.cid-stMKkAQheu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: center;
    align-self: center;
}

.cid-stMKkAQheu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
    padding-left: 0;
    padding-bottom: 0;
}

.cid-stMKkAQheu .dropdown .dropdown-menu {
    background: #ffffff;
    display: none;
    position: absolute;
    border-top: 3px solid #2e40be;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    min-width: 16.875rem;
    text-align: left;
    padding-top: 0;
    padding-bottom: 0;
}

@media (max-width: 1200px) {
    .cid-stMKkAQheu .dropdown .dropdown-menu {
        overflow: hidden;
    }
}

.cid-stMKkAQheu .dropdown .dropdown-menu .dropdown-item {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.cid-stMKkAQheu .dropdown .dropdown-menu .dropdown-item::after {
    right: -1rem;
}

.cid-stMKkAQheu .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #4f87fb;
    color: #ffffff;
}

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

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

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

.cid-stMKkAQheu .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
}

.cid-stMKkAQheu .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-stMKkAQheu .navbar-toggleable-sm.opened:after {
    position: absolute;
    width: 100vw;
    height: 100vh;
    content: '';
    background-color: rgba(0, 0, 0, 0.1);
    left: 0;
    bottom: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    z-index: 1000;
}

.cid-stMKkAQheu .navbar.navbar-short {
    min-height: 60px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-logo a {
    font-size: 2.5rem !important;
    line-height: 2.5rem;
    -webkit-transition: font-size 0.25s;
    transition: font-size 0.25s;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
    font-size: 2.5rem !important;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-logo a img {
    height: 3rem !important;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-brand {
    min-height: 3rem;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-nav {
    min-height: 60px;
}

.cid-stMKkAQheu button.navbar-toggler {
    width: 31px;
    height: 18px;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.cid-stMKkAQheu button.navbar-toggler:focus {
    outline: none;
}

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

.cid-stMKkAQheu button.navbar-toggler .hamburger span:nth-child(1) {
    top: 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.cid-stMKkAQheu button.navbar-toggler .hamburger span:nth-child(2) {
    top: 8px;
    -webkit-transition: all 0.15s;
    transition: all 0.15s;
}

.cid-stMKkAQheu button.navbar-toggler .hamburger span:nth-child(3) {
    top: 8px;
    -webkit-transition: all 0.15s;
    transition: all 0.15s;
}

.cid-stMKkAQheu button.navbar-toggler .hamburger span:nth-child(4) {
    top: 16px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

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

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

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

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

.cid-stMKkAQheu .navbar-fixed-top.opened {
    position: relative;
}

.cid-stMKkAQheu .collapsed.navbar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.cid-stMKkAQheu .collapsed .menu-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.cid-stMKkAQheu .collapsed .menu-logo {
    margin-right: 0;
}

.cid-stMKkAQheu .collapsed .btn {
    display: flex;
}

.cid-stMKkAQheu .collapsed .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing,
.cid-stMKkAQheu .collapsed .navbar-collapse.show {
    display: block !important;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-stMKkAQheu .collapsed .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-stMKkAQheu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-stMKkAQheu .collapsed .navbar-collapse.show .navbar-buttons {
    text-align: center;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-stMKkAQheu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
}

@media (min-width: 1200px) {
    .cid-stMKkAQheu .collapsed:not(.navbar-short) .navbar-collapse {
        max-height: calc(100vh - 3.8rem - 3.5rem);
    }

    .cid-stMKkAQheu .collapsed .dropdown .dropdown-menu {
        overflow: hidden;
    }
}

.cid-stMKkAQheu .collapsed button.navbar-toggler {
    display: block;
    -webkit-align-self: center;
    align-self: center;
}

.cid-stMKkAQheu .collapsed .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
}

.cid-stMKkAQheu .collapsed .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.cid-stMKkAQheu .collapsed .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
}

.cid-stMKkAQheu .collapsed .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
}

.cid-stMKkAQheu .collapsed .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
}

.cid-stMKkAQheu .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
}

.cid-stMKkAQheu .collapsed .dropdown-item:before {
    display: none;
}

.cid-stMKkAQheu .navbar-dropdown {
    flex-wrap: nowrap;
}

.cid-stMKkAQheu .navbar-collapse {
    flex-basis: auto;
    display: flex;
}

.cid-stMKkAQheu .nav-link:focus {
    outline: none;
}

.cid-stMKkAQheu .navbar-toggler {
    position: relative;
}

.cid-stMKkAQheu .dropdown-item.active,
.cid-stMKkAQheu .dropdown-item:active {
    background-color: #ffffff;
    color: #000000;
}

.cid-stMKkAQheu .nav-link:hover,
.cid-stMKkAQheu .dropdown-item:hover {
    color: #4f87fb;
}

.cid-suDAKS6cLQ {
    background-image: url("../../images/foto_farmacia.png");
}

.cid-suDAKS6cLQ .mbr-section-subtitle {
    color: #4f87fb;
    font-weight: 700;
    line-height: 1.43;
    letter-spacing: 2px;
}

.cid-suDAKS6cLQ .mbr-section-title {
    color: #130947;
    font-weight: 900;
}

.cid-suDAKS6cLQ .mbr-section-title .accent-word {
    color: #4f87fb;
}

.cid-suDAKS6cLQ .mbr-text {
    color: #6d7a8c;
}

.cid-suDAKS6cLQ .content-link {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    color: #130947;
}

.cid-suDAKS6cLQ .content-link span {
    margin-right: 15px;
    margin-left: 20px;
    padding: 13px;
    border-radius: 100%;
    color: #4f87fb;
    background-color: #ffffff;
    font-size: 2.275rem;
}

.cid-suDAKS6cLQ .separator {
    margin-top: -15px;
    margin-left: 0;
    margin-right: auto;
    width: 100%;
}

.cid-suDAKS6cLQ .separator .sep-holder {
    height: 1px;
    position: relative;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    width: 25%;
}

.cid-suDAKS6cLQ .separator .sep-holder .sep-line {
    border-color: #4f87fb !important;
    border-top-width: 5px;
    height: 1px;
    border-top: 5px solid #4f87fb;
    position: relative;
    top: 1px;
    width: 25%;
}

.cid-suDAKS6cLQ .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
    margin-top: 47px;
}

.cid-suDAKS6cLQ .mbr-section-btn .btn {
    border-radius: 4px;
    margin: 0.4rem 0.6rem 0.4rem 0 !important;
    padding: 15px 40px;
}

.cid-suDAKS6cLQ .mbr-section-btn .btn.display-4 {
    line-height: 2;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 13px;
}

@media (max-width: 991px) {
    .cid-suDAKS6cLQ .separator,
    .cid-suDAKS6cLQ .sep-holder,
    .cid-suDAKS6cLQ .sep-line {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .cid-suDAKS6cLQ .mbr-section-btn {
        -webkit-box-pack: center;
        justify-content: center;
    }
}

.cid-suDTLXcCOH {
    padding-top: 30px;
    padding-bottom: 45px;
    background-color: #25303e;
}

.cid-suDTLXcCOH .links {
    text-align: center;
    color: #ffffff;
}

.cid-suDTLXcCOH p {
    margin: 0;
}

.cid-suDTLXcCOH a {
    color: #ffffff;
}

.cid-suDTLXcCOH a:hover {
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

.is-builder .cid-stMKkAQheu .navbar {
    padding-top: 20px !important;
}

.cid-stMKkAQheu .navbar {
    padding: 0.5rem 0;
    background: #ffffff;
    -webkit-transition: none;
    transition: none;
    min-height: 77px;
}

@media (min-width: 1200px) {
    .cid-stMKkAQheu .navbar .dropdown .dropdown-menu .dropdown-item {
        padding: 0.835em 2.5385em 0.835em 3.5385em !important;
        margin: 0 !important;
    }

    .cid-stMKkAQheu .navbar .dropdown .dropdown-menu .dropdown-item:hover {
        padding: 0.835em 2.5385em 0.835em 3.8385em !important;
    }
}

.cid-stMKkAQheu .menu-logo {
    display: flex;
    position: relative;
    -webkit-box-align: center;
    align-items: center;
    margin-right: auto;
}

.cid-stMKkAQheu .menu-logo .navbar-brand {
    display: flex;
    margin-left: 4rem;
    padding: 0.5rem 0;
    -webkit-transition: padding 0.2s;
    transition: padding 0.2s;
    min-height: 3.8rem;
    -webkit-box-align: center;
    align-items: center;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-caption-wrap {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    word-break: break-word;
    min-width: 7rem;
    margin: 0.3rem 0;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
    line-height: 1.2rem !important;
    padding-right: 2rem;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-logo {
    font-size: 4rem;
    -webkit-transition: font-size 0.25s;
    transition: font-size 0.25s;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-logo img {
    display: flex;
    width: auto;
}

.cid-stMKkAQheu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
    -webkit-transition: font-size 0.25s;
    transition: font-size 0.25s;
}

.cid-stMKkAQheu .navbar-dropdown.bg-color.transparent.opened {
    background: #ffffff;
}

.cid-stMKkAQheu a {
    font-style: normal;
}

.cid-stMKkAQheu .nav-item span {
    padding-right: 0.4em;
    line-height: 0.5em;
    vertical-align: middle;
    position: relative;
    text-decoration: none;
}

.cid-stMKkAQheu .nav-item a {
    padding: 0.4rem 20px !important;
}

.cid-stMKkAQheu .dropdown-item:before {
    color: #ffffff;
    font-family: Material-Design-Icons !important;
    content: '\e716';
    display: inline-block;
    width: 0;
    position: absolute;
    left: 1.125rem;
    top: 1.1rem;
    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;
    transition: all 0.25s ease-in-out;
}

.cid-stMKkAQheu .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
}

.cid-stMKkAQheu .content-text {
    margin-bottom: 0;
}

.cid-stMKkAQheu .navbar-nav {
    position: relative;
    min-height: 100px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
}

.cid-stMKkAQheu .navbar-nav li:first-child > a {
    color: #4f87fb;
}

.cid-stMKkAQheu .navbar-nav li:last-child > a::before {
    position: absolute;
    content: '';
    height: 20px;
    width: 1px;
    right: -9px;
    margin-top: -10px;
    top: 50%;
    background-color: rgba(0, 0, 0, 0.46);
    margin-right: 12px;
    width: 0px;
    height: 0px;
}

@media (min-width: 1200px) {
    .cid-stMKkAQheu .navbar-nav .main-menu-animated-line {
        position: absolute;
        left: 0;
        width: 0;
        height: 0;
        z-index: 100;
        border-top: 4px solid #2e40be;
        -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
        transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    }

    .cid-stMKkAQheu .navbar-nav .main-menu-animated-line.bottom {
        bottom: 0;
    }

    .cid-stMKkAQheu .navbar-nav .nav-item a {
        margin: 0 1.1rem !important;
    }
}

@media (max-width: 1200px) {
    .cid-stMKkAQheu .navbar-nav .nav-item a {
        margin: 0 !important;
    }
}

.cid-stMKkAQheu .navbar-nav .nav-item span {
    padding-right: 0.1rem;
}

.cid-stMKkAQheu .display-4 > .mbr-iconfont {
    font-size: 1.23em;
}

.cid-stMKkAQheu .display-4 > .btn > .mbr-iconfont {
    font-size: 1.43em;
}

.cid-stMKkAQheu .nav-dropdown .dropdown-item {
    font-weight: 400;
}

.cid-stMKkAQheu .content-link {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.cid-stMKkAQheu .content-link:first-child {
    padding-left: 1.3rem;
}

@media (max-width: 1200px) {
    .cid-stMKkAQheu .content-link {
        display: none;
    }
}

.cid-stMKkAQheu .navbar-buttons.mbr-section-btn {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.cid-stMKkAQheu .navbar-buttons.mbr-section-btn > .mbr-iconfont {
    font-size: 17px !important;
    margin-right: 13px;
}

.cid-stMKkAQheu .nav-dropdown .link {
    font-weight: 600;
}

.cid-stMKkAQheu .nav-dropdown .link.display-4 {
    font-size: 1.15rem;
}

.cid-stMKkAQheu .menu .navbar-brand .logo-text-part {
    vertical-align: top;
}

.cid-stMKkAQheu .content-left-side {
    text-align: center;
    padding-top: 3px;
}

@media (max-width: 575px) {
    .cid-stMKkAQheu .content-left-side {
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        padding: 0.5rem 0;
    }

    .cid-stMKkAQheu .content-left-side .content-link {
        font-size: 0.8rem;
        margin: 0;
        padding-bottom: 1rem;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
}

.cid-stMKkAQheu .content-right-side {
    text-align: center;
}

@media (max-width: 575px) {
    .cid-stMKkAQheu .content-right-side {
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        padding: 0.5rem 0;
    }

    .cid-stMKkAQheu .content-right-side .content-link {
        font-size: 0.8rem;
        margin: 0;
        padding-bottom: 1rem;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
}

.cid-stMKkAQheu .content-right-side .icons-block {
    padding-bottom: 5px;
    padding-left: 17px;
}

.cid-stMKkAQheu .content-right-side .content-link {
    margin-left: 1rem;
}

.cid-stMKkAQheu .content-right-side .content-link span {
    vertical-align: middle;
    font-weight: bold;
}

.cid-stMKkAQheu .menu-content-top {
    display: none;
    padding: 1rem 4rem 1rem 3.8rem;
    -webkit-transition: height 0.3s ease-in-out;
    transition: height 0.3s ease-in-out;
    padding-top: 15px;
    padding-bottom: 15px;
}

.cid-stMKkAQheu .content-left-side .content-link {
    margin-left: 1rem;
}

.cid-stMKkAQheu .content-left-side .content-link:first-child {
    padding-left: 0;
    margin-left: 0;
}

.cid-stMKkAQheu .content-left-side .content-link span {
    vertical-align: middle;
    font-weight: bold;
}

@media (max-width: 1200px) {
    .cid-stMKkAQheu .content-left-side {
        text-align: center;
        padding-bottom: 1rem;
    }

    .cid-stMKkAQheu .dropdown-item {
        padding: 0.235em 0 !important;
        margin: 0 !important;
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
    }

    .cid-stMKkAQheu .dropdown-item:before {
        display: none;
    }

    .cid-stMKkAQheu .menu-logo {
        width: 100%;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }

    .cid-stMKkAQheu .menu-bottom {
        width: 100%;
        padding: 0 1rem;
        display: block;
    }

    .cid-stMKkAQheu img {
        height: 1.8rem !important;
    }

    .cid-stMKkAQheu .btn {
        display: flex;
    }

    .cid-stMKkAQheu button.navbar-toggler {
        display: block;
        align-self: center;
    }

    .cid-stMKkAQheu .navbar-brand {
        margin-left: 1rem !important;
        margin-top: 0.5rem;
    }

    .cid-stMKkAQheu .navbar-toggleable-sm {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }

    .cid-stMKkAQheu .navbar-collapse {
        display: none !important;
        padding-right: 0 !important;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing,
    .cid-stMKkAQheu .navbar-collapse.show {
        display: block !important;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing .navbar-nav,
    .cid-stMKkAQheu .navbar-collapse.show .navbar-nav {
        display: block;
        text-align: center;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing .navbar-nav .nav-item,
    .cid-stMKkAQheu .navbar-collapse.show .navbar-nav .nav-item {
        clear: both;
        padding: 0.5rem 0;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing .navbar-buttons,
    .cid-stMKkAQheu .navbar-collapse.show .navbar-buttons {
        text-align: center;
    }

    .cid-stMKkAQheu .navbar-collapse.collapsing .navbar-buttons:last-child,
    .cid-stMKkAQheu .navbar-collapse.show .navbar-buttons:last-child {
        margin-bottom: 1rem;
    }

    .cid-stMKkAQheu .dropdown .dropdown-menu {
        width: 100%;
        text-align: center;
        position: relative;
        opacity: 0;
        display: block;
        height: 0;
        visibility: hidden;
        padding: 0;
        -webkit-transition-duration: 0.5s;
        transition-duration: 0.5s;
        -webkit-transition-property: opacity, padding, height;
        transition-property: opacity, padding, height;
    }

    .cid-stMKkAQheu .dropdown.open > .dropdown-menu {
        position: relative;
        opacity: 1;
        height: auto;
        padding: 1.4rem 0;
        visibility: visible;
    }

    .cid-stMKkAQheu .dropdown .dropdown-submenu {
        left: 0;
        text-align: center;
        width: 100%;
    }

    .cid-stMKkAQheu .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
        margin-top: 0;
        position: inherit;
        right: 0;
        top: 50%;
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: 0.3em;
        vertical-align: middle;
        content: '';
        border-top: 0.3em solid;
        border-right: 0.3em solid transparent;
        border-left: 0.3em solid transparent;
    }
}

@media (min-width: 1200px) {
    .cid-stMKkAQheu .navbar .menu-content-top {
        display: block;
    }

    .cid-stMKkAQheu .menu-content-top .row {
        -webkit-box-pack: justify;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .cid-stMKkAQheu .content-right-side {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: end;
        justify-content: flex-end;
        flex-basis: 70%;
        flex-shrink: 0;
        flex-wrap: wrap;
        text-align: right;
    }

    .cid-stMKkAQheu .content-left-side {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: start;
        justify-content: flex-start;
        flex-basis: 70%;
        flex-shrink: 0;
        flex-wrap: wrap;
        text-align: right;
    }

    .cid-stMKkAQheu .menu-content-top {
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    }

    .cid-stMKkAQheu .menu-bottom {
        display: flex;
    }

    .cid-stMKkAQheu .navbar {
        display: block;
        padding: 0;
    }

    .cid-stMKkAQheu .navbar .menu-logo {
        margin-right: auto;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
    }

    .cid-stMKkAQheu .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
        -webkit-align-self: initial;
        align-self: auto;
        display: flex !important;
        -webkit-box-align: center;
        align-items: center;
        z-index: 101;
        min-height: 76px;
    }

    .cid-stMKkAQheu .navbar-toggler {
        display: none;
    }
}

.cid-stMKkAQheu .navbar-short .menu-content-top {
    border: none;
    display: none;
}

.cid-stMKkAQheu .btn {
    padding: 15px 30px;
    font-weight: 800;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    border-width: 1px;
    box-shadow: none;
}

.cid-stMKkAQheu .btn .mbr-iconfont {
    font-size: 1.2em;
}

.cid-stMKkAQheu .btn.display-4 {
    letter-spacing: 0.5px;
    font-size: 13px;
    line-height: 1;
}

.cid-stMKkAQheu .navbar-toggleable-sm .navbar-collapse {
    -webkit-box-pack: end;
    justify-content: flex-end;
    padding-right: 4rem;
    width: 100%;
}

.cid-stMKkAQheu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
    flex-wrap: wrap;
    padding-left: 0;
}

.cid-stMKkAQheu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: center;
    align-self: center;
}

.cid-stMKkAQheu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
    padding-left: 0;
    padding-bottom: 0;
}

.cid-stMKkAQheu .dropdown .dropdown-menu {
    background: #ffffff;
    display: none;
    position: absolute;
    border-top: 3px solid #2e40be;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    min-width: 16.875rem;
    text-align: left;
    padding-top: 0;
    padding-bottom: 0;
}

@media (max-width: 1200px) {
    .cid-stMKkAQheu .dropdown .dropdown-menu {
        overflow: hidden;
    }
}

.cid-stMKkAQheu .dropdown .dropdown-menu .dropdown-item {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.cid-stMKkAQheu .dropdown .dropdown-menu .dropdown-item::after {
    right: -1rem;
}

.cid-stMKkAQheu .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #4f87fb;
    color: #ffffff;
}

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

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

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

.cid-stMKkAQheu .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
}

.cid-stMKkAQheu .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-stMKkAQheu .navbar-toggleable-sm.opened:after {
    position: absolute;
    width: 100vw;
    height: 100vh;
    content: '';
    background-color: rgba(0, 0, 0, 0.1);
    left: 0;
    bottom: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    z-index: 1000;
}

.cid-stMKkAQheu .navbar.navbar-short {
    min-height: 60px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-logo a {
    font-size: 2.5rem !important;
    line-height: 2.5rem;
    -webkit-transition: font-size 0.25s;
    transition: font-size 0.25s;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
    font-size: 2.5rem !important;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-logo a img {
    height: 3rem !important;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-brand {
    min-height: 3rem;
}

.cid-stMKkAQheu .navbar.navbar-short .navbar-nav {
    min-height: 60px;
}

.cid-stMKkAQheu button.navbar-toggler {
    width: 31px;
    height: 18px;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.cid-stMKkAQheu button.navbar-toggler:focus {
    outline: none;
}

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

.cid-stMKkAQheu button.navbar-toggler .hamburger span:nth-child(1) {
    top: 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.cid-stMKkAQheu button.navbar-toggler .hamburger span:nth-child(2) {
    top: 8px;
    -webkit-transition: all 0.15s;
    transition: all 0.15s;
}

.cid-stMKkAQheu button.navbar-toggler .hamburger span:nth-child(3) {
    top: 8px;
    -webkit-transition: all 0.15s;
    transition: all 0.15s;
}

.cid-stMKkAQheu button.navbar-toggler .hamburger span:nth-child(4) {
    top: 16px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

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

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

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

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

.cid-stMKkAQheu .navbar-fixed-top.opened {
    position: relative;
}

.cid-stMKkAQheu .collapsed.navbar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.cid-stMKkAQheu .collapsed .menu-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.cid-stMKkAQheu .collapsed .menu-logo {
    margin-right: 0;
}

.cid-stMKkAQheu .collapsed .btn {
    display: flex;
}

.cid-stMKkAQheu .collapsed .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing,
.cid-stMKkAQheu .collapsed .navbar-collapse.show {
    display: block !important;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-stMKkAQheu .collapsed .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-stMKkAQheu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-stMKkAQheu .collapsed .navbar-collapse.show .navbar-buttons {
    text-align: center;
}

.cid-stMKkAQheu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-stMKkAQheu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
}

@media (min-width: 1200px) {
    .cid-stMKkAQheu .collapsed:not(.navbar-short) .navbar-collapse {
        max-height: calc(100vh - 3.8rem - 3.5rem);
    }

    .cid-stMKkAQheu .collapsed .dropdown .dropdown-menu {
        overflow: hidden;
    }
}

.cid-stMKkAQheu .collapsed button.navbar-toggler {
    display: block;
    -webkit-align-self: center;
    align-self: center;
}

.cid-stMKkAQheu .collapsed .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
}

.cid-stMKkAQheu .collapsed .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.cid-stMKkAQheu .collapsed .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
}

.cid-stMKkAQheu .collapsed .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
}

.cid-stMKkAQheu .collapsed .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
}

.cid-stMKkAQheu .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
}

.cid-stMKkAQheu .collapsed .dropdown-item:before {
    display: none;
}

.cid-stMKkAQheu .navbar-dropdown {
    flex-wrap: nowrap;
}

.cid-stMKkAQheu .navbar-collapse {
    flex-basis: auto;
    display: flex;
}

.cid-stMKkAQheu .nav-link:focus {
    outline: none;
}

.cid-stMKkAQheu .navbar-toggler {
    position: relative;
}

.cid-stMKkAQheu .dropdown-item.active,
.cid-stMKkAQheu .dropdown-item:active {
    background-color: #ffffff;
    color: #000000;
}

.cid-stMKkAQheu .nav-link:hover,
.cid-stMKkAQheu .dropdown-item:hover {
    color: #4f87fb;
}

.cid-suDzUhUqB5 {
    background-image: url("../../images/foto_farmacia.png");
}

.cid-suDzUhUqB5 .mbr-section-subtitle {
    color: #4f87fb;
    font-weight: 700;
    line-height: 1.43;
    letter-spacing: 2px;
}

.cid-suDzUhUqB5 .mbr-section-title {
    color: #130947;
    font-weight: 900;
}

.cid-suDzUhUqB5 .mbr-section-title .accent-word {
    color: #4f87fb;
}

.cid-suDzUhUqB5 .mbr-text {
    color: #6d7a8c;
}

.cid-suDzUhUqB5 .content-link {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    color: #130947;
}

.cid-suDzUhUqB5 .content-link span {
    margin-right: 15px;
    margin-left: 20px;
    padding: 13px;
    border-radius: 100%;
    color: #4f87fb;
    background-color: #ffffff;
    font-size: 2.275rem;
}

.cid-suDzUhUqB5 .separator {
    margin-top: -15px;
    margin-left: 0;
    margin-right: auto;
    width: 100%;
}

.cid-suDzUhUqB5 .separator .sep-holder {
    height: 1px;
    position: relative;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    width: 25%;
}

.cid-suDzUhUqB5 .separator .sep-holder .sep-line {
    border-color: #4f87fb !important;
    border-top-width: 5px;
    height: 1px;
    border-top: 5px solid #4f87fb;
    position: relative;
    top: 1px;
    width: 25%;
}

.cid-suDzUhUqB5 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
    margin-top: 47px;
}

.cid-suDzUhUqB5 .mbr-section-btn .btn {
    border-radius: 4px;
    margin: 0.4rem 0.6rem 0.4rem 0 !important;
    padding: 15px 40px;
}

.cid-suDzUhUqB5 .mbr-section-btn .btn.display-4 {
    line-height: 2;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 13px;
}

@media (max-width: 991px) {
    .cid-suDzUhUqB5 .separator,
    .cid-suDzUhUqB5 .sep-holder,
    .cid-suDzUhUqB5 .sep-line {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .cid-suDzUhUqB5 .mbr-section-btn {
        -webkit-box-pack: center;
        justify-content: center;
    }
}

.cid-suDTIgwXrQ {
    padding-top: 30px;
    padding-bottom: 45px;
    background-color: #25303e;
}

.cid-suDTIgwXrQ .links {
    text-align: center;
    color: #ffffff;
}

.cid-suDTIgwXrQ p {
    margin: 0;
}

.cid-suDTIgwXrQ a {
    color: #ffffff;
}

.cid-suDTIgwXrQ a:hover {
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}
