﻿@charset "UTF-8";
/*
	===================== 
	colores 
	=====================
*/
/*
	===================== 
	Prefix proyecto 
	=====================
*/
/*
	===================== 
	Fuentes 
	=====================
*/
/*
	===================== 
	Media queries 
	=====================
*/
/*
	=====================     
	Tamaños tipográficos
	=====================
*/
/*
	=====================     mixins =====================
*/
/*
	===================== fin mixins =====================
*/
/*
	===================== margenes =====================
*/
/*
	===================== fin margenes =====================
*/
.beco-title {
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 400;
}

@media only screen and (max-width: 992px) {
    .beco-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
}

.beco-subtitle {
    position: relative;
    padding-left: 20px;
    font-weight: 400;
}

    .beco-subtitle:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: #FA9600;
    }

.beco-main-content {
    margin-bottom: 20px;
}

    .beco-main-content h1, .beco-main-content h2, .beco-main-content h3, .beco-main-content h4, .beco-main-content h5, .beco-main-content h6 {
        margin-bottom: 20px;
    }

    .beco-main-content p + p {
        margin-top: 20px;
    }

.beco-type-link {
    font-size: 16px;
    text-decoration: underline;
    border: none;
    color: #FA9600;
    background: none;
    cursor: pointer;
    font-weight: 700;
}

.beco-bg-light-gray {
    background: #FDFDFD;
}

.beco-mix-text p span {
    color: #FA9600;
}

em {
    color: #7B7B7B;
}

hr {
    border: 0;
    height: 15px;
    background: url(hr.gif) 50% 0 no-repeat;
    margin: 1em 0;
}

    hr.beco-dashed {
        color: transparent;
        border-bottom: 1px dashed #ccc;
        margin-bottom: 20px;
    }

/*------------------------------------------------------------------------------Icons */
.beco-icon-alert-info {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-size: cover;
    background-repeat: no-repeat;
}

.beco-icon--center {
    margin-left: auto;
    margin-right: auto;
}

.beco-icon-big-circle {
    width: 52px;
    height: 52px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 100%;
}

.beco-icon-info {
    background: #004085;
    color: white;
    font-size: 33px;
}

.beco-icon-disabled {
    background: #E83733;
    color: white;
    font-size: 33px;
}

    .beco-icon-disabled i {
        max-width: 30px;
        height: 5px;
        background: white;
        border-radius: 20px;
        width: 100%;
    }

/*------------------------------------------------------------------------------Buttons prce */
.beco-btn-disabled {
    pointer-events: none;
    background: #ccc;
}

    .beco-btn-disabled:hover {
        background: #ccc;
    }

.beco-floating-help-button {
    position: fixed;
    right: -156px;
    top: 380px;
    bottom: auto;
    margin: auto;
    height: 20px;
    background: #646C74;
    z-index: 12;
    height: 45px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50px 0 0 50px;
    width: 200px;
    cursor: pointer;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.5);
    transition: all 600ms ease;
}

    .beco-floating-help-button:hover {
        transition: all 600ms ease;
    }

@media (min-width: 992px) {
    .beco-floating-help-button:hover {
        right: 0;
    }
}

.beco-floating-help-button i {
    display: block;
    width: 29px;
    height: 29px;
    background-color: #fff;
    z-index: 1;
    position: absolute;
    left: 8px;
    top: 8px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 100%;
}

.beco-floating-help-button span {
    font-weight: 700;
    color: white;
    padding: 0 0 0 50px;
    position: relative;
    font-size: 16px;
    position: relative;
    top: -2px;
}

.beco-text-links {
    color: #FF9E00;
    font-weight: 700;
}

    .beco-text-links:hover {
        color: #FF9E00 !important;
    }

    .beco-text-links:after {
        background: #FF9E00;
        bottom: -1px;
    }

.beco-custom-select {
    border: solid 1px #D8D8D8;
    max-width: 152px;
    position: relative;
    overflow: hidden;
}

    .beco-custom-select:before {
        content: '';
        position: absolute;
        right: 9px;
        top: 18px;
        z-index: -1;
        width: 0px;
        height: 0px;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid white;
    }

    .beco-custom-select:after {
        content: '';
        width: 30px;
        height: 100%;
        top: 0;
        right: 0;
        position: absolute;
        background-color: #D8D8D8;
        z-index: -2;
    }

    .beco-custom-select select {
        border: none;
        padding: 10px 15px;
        width: 130%;
        background-color: transparent;
        height: 40px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

        .beco-custom-select select:-moz-focusring {
            color: transparent;
            text-shadow: 0 0 0 #000;
        }

.beco-custom-select--long-string select {
    padding-right: 42px !important;
}

.beco-radio .beco__replace {
    width: 20px;
    height: 20px;
}

    .beco-radio .beco__replace:before {
        content: '';
        width: 13px;
        height: 12px;
        background-image: url(../../dist/img/icon-checked.svg);
        background-size: 100%;
        background-repeat: no-repeat;
        border-radius: 0;
        background-color: transparent;
        top: 10px;
        left: 8px;
    }

.beco-radio .beco__input:checked + .beco__replace {
    border-color: #FA9600;
    background: #FA9600;
}

.beco-select-radio .beco-is-margin {
    margin-left: 22px;
}

@media only screen and (max-width: 768px) {
    .beco-select-radio .beco-is-margin {
        margin-left: 6px;
    }
}

.beco-select-radio .beco-pay-bg {
    margin-left: 45px;
}

@media only screen and (max-width: 768px) {
    .beco-select-radio .beco-pay-bg {
        width: 95%;
        margin-left: 25px;
    }
}

.beco-select-radio__text {
    max-width: 108px;
    margin-right: 20px;
    margin-left: 0px;
    font-size: 11px;
    line-height: 16px;
}

.beco-alert-box {
    background: #D1ECF0;
    padding: 20px 20px;
    font-size: 14px;
    border: solid 1px #B2D0D5;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

    .beco-alert-box * {
        color: #0C5460;
    }

    .beco-alert-box i {
        margin-right: 10px;
    }

.beco-select-checkbox .beco-checkbox--inline {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-flow: row;
    -ms-flex-flow: row;
    flex-flow: row;
}

.beco-select-checkbox .beco__replace {
    min-width: 18px;
    height: 18px;
    display: block;
    margin: 0 15px 0 0;
    border-radius: 4px;
    border: solid 1px #8f8f8f;
}

.beco-select-checkbox .beco__input:checked + .beco__replace {
    background-color: #E38C0B;
    border-color: #E38C0B;
    background-image: url("../../dist/img/icon-checked.svg");
}

.beco-select-bordered-radio-list > div {
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    padding: 20px 0;
}

    .beco-select-bordered-radio-list > div + div {
        margin-top: 0 !important;
        border-top: 0;
    }

.beco-select-bordered-radio-list .beco-radio {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.beco-select-bordered-radio-list .beco__replace {
    margin: 0 12px 0 0;
}

.beco-radio {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

    .beco-radio .beco__replace {
        margin: 0 12px 0 0;
    }

.beco-form__error {
    color: #FF0000;
}

.beco-field label {
    font-size: 14px;
    top: 10px;
    position: relative;
}

.beco-field small {
    font-size: 12px;
}

.beco-field input:focus {
    border-color: #FA9600 !important;
}

.beco-field .beco-form__error {
    font-weight: 700;
    font-size: 12px;
}

.beco-field + .beco-field--inline {
    margin-top: 20px;
}

.beco-field select {
    width: 100%;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    padding: 10px;
}

.beco-field .beco-custom-select {
    width: 100%;
    max-width: 100%;
    border-radius: 5px;
}

.beco-field--inline {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (max-width: 768px) {
    .beco-field--inline {
        -webkit-flex-flow: column;
        -ms-flex-flow: column;
        flex-flow: column;
    }

        .beco-field--inline label {
            top: 0;
        }
}

.beco-field--inline > div:last-child {
    max-width: 300px;
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .beco-field--inline > div:last-child {
        max-width: 100%;
    }
}

.beco-field--prefix {
    position: relative;
}

    .beco-field--prefix > span {
        position: absolute;
        top: 9px;
        left: 10px;
        font-size: 14px;
        opacity: 0.5;
    }

.beco-field--prefix--for-phone input {
    padding-left: 42px;
    width: 100%;
}

.beco-field--prefix--for-address input {
    padding-left: 24px;
    width: 100%;
}

select::-ms-expand {
    display: none;
}

/*------------------------------------------------------------------------------Modal  */
.modal-content {
    border-radius: 10px;
}

    .modal-content .beco-modal-title {
        font-weight: 700;
    }

.modal-medium {
    max-width: 940px;
    width: auto;
}

    .modal-medium .modal-content {
        padding: 20px 60px 20px;
    }

@media only screen and (max-width: 992px) {
    .modal-medium .modal-content {
        padding: 20px;
    }
}

.modal-medium .modal-content .beco-as-table:last-child {
    margin-bottom: 50px;
}

.modal-content {
    padding: 20px 60px 50px;
}

@media only screen and (max-width: 992px) {
    .modal-content {
        padding: 20px;
    }
}

.modal-header .close {
    z-index: 9999;
    background: url("../../dist/img/icon-close.png") 0 0 no-repeat;
}

.beco-as-table {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
}

    .beco-as-table + .beco-as-table {
        margin-top: 20px;
    }

.beco-as-table_thead {
    background-color: #F3F3F3;
    padding: 10px 20px;
    border-bottom: solid 1px #CCCCCC;
}

    .beco-as-table_thead > div {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-flow: column;
        -ms-flex-flow: column;
        flex-flow: column;
    }

.beco-as-table_tbody {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
}

@media (min-width: 768px) {
    .beco-as-table_tbody {
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-flex-flow: row;
        -ms-flex-flow: row;
        flex-flow: row;
    }
}

.beco-as-table_tbody > div {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    padding: 10px 20px;
}

.beco-as-table_tbody * {
    font-size: 14px;
}

.beco-as-table .text--big {
    font-size: 14px;
}

.beco-as-table .text--small {
    font-size: 12px;
}

.beco-table--simple {
    border: none;
}

@media (min-width: 800px) {
    .beco-table--simple {
        border: solid 1px #DDD;
    }
}

.beco-table--simple caption {
    font-size: 16px;
    font-weight: 600;
}

.beco-table--simple td {
    color: #919191;
}

@media only screen and (max-width: 992px) {
    .beco-table--simple td {
        padding: 13px !important;
    }
}

.beco-table--simple td + td {
    border: none;
    border-top: 1px solid #eee;
}

@media (min-width: 550px) {
    .beco-table--simple td + td {
        border: none;
    }
}

@media only screen and (max-width: 799px) {
    .beco-table--simple tbody tr:nth-child(2n) {
        background-color: white;
    }
}

@media only screen and (max-width: 799px) {
    .beco-table--simple tbody td:first-child {
        color: white;
    }
}

@media only screen and (max-width: 799px) {
    .beco-table--simple tbody td + td {
        border-left: none;
    }
}

/*------------------------------------------------------------------------------prce header */
.beco-header__logo img {
    height: auto;
    width: 117px;
}

@media (min-width: 768px) {
    .beco-header__logo img {
        width: 186px;
    }
}

.beco-header__user {
    display: none;
}

@media only screen and (min-width: 768px) {
    .beco-header__user {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.beco-header__user .beco-icon-user {
    background: url("../../dist/img/icon-user.svg") 0 0 no-repeat;
}

.beco-header__user__inner {
    line-height: 18px;
}

.beco-header .beco-user__name {
    font-weight: 600;
}

.beco-header .beco-user__welcome, .beco-header .beco-user__close {
    font-weight: 400;
}

.beco-header .beco-user__close {
    margin-top: 2px !important;
}

@media (max-width: 768px) {
    .beco-header .beco-user__close {
        position: relative;
        margin-top: 2px;
        display: block;
    }
}

.beco-header .beco-user__inner {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
}

.beco {
    /*------------------------------------------------------------------------------General structure  */
    /*------------------------------------------------------------------------------Step flow improves */
}

.beco-inner {
    margin-top: 40px;
}

.beco-container .row {
    margin-left: 0;
    margin-right: 0;
}

.beco-container .row-default {
    margin-left: -15px !important;
    margin-right: -15px !important;
}

.beco-container.full {
    max-width: 100%;
    width: 100%;
}

.beco-steps--4 li {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 768px) {
    .beco-steps--4 li {
        width: 25%;
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media (min-width: 768px) {
    .beco-steps--5 li {
        width: 20%;
    }
}

.beco-steps__text {
    font-size: 15px;
}

@media (max-width: 992px) and (min-width: 768px) {
    .beco-steps__text {
        font-size: 13px;
    }
}

@media only screen and (max-width: 767px) {
    .beco-steps__text {
        margin-left: 10px;
    }
}

.beco-steps__number {
    background-color: #CCCCCC;
    color: white;
    font-size: 15px;
}

.beco-steps li.beco__active .beco-steps__number {
    color: #FA9600;
    background-color: white;
}

.beco-steps li:last-child:after {
    display: none;
}

.beco-inner-banner {
    width: 100%;
    position: relative;
    margin-top: 20px;
    overflow: hidden;
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
}

.beco-inner-banner--full {
    margin-top: 0;
}

@media (min-width: 768px) {
    .beco-inner-banner--full {
        max-width: 100%;
        max-height: 240px;
    }
}

.beco-inner-banner--full .beco-banner-bg-desktop {
    width: 100%;
    min-width: 1440px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.beco-inner-banner--full .beco-type-link {
    margin-top: 20px;
}

@media (min-width: 768px) {
    .beco-inner-banner--full .beco-inner-banner__main-info {
        max-width: 970px;
        left: 50%;
        -webkit-transform: translate(-50%, 0px);
        -ms-transform: translate(-50%, 0px);
        transform: translate(-50%, 0px);
        z-index: 1;
    }
}

@media (min-width: 768px) {
    .beco-inner-banner--full .beco-inner-banner__main-info div:first-child {
        width: 66%;
    }
}

@media (min-width: 768px) {
    .beco-inner-banner--full .beco-inner-banner__main-info div + div {
        width: 360px;
        height: 350px;
        right: -60px;
        position: absolute;
        top: -48px;
        border-radius: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .beco-inner-banner {
        min-height: 435px;
    }
}

.beco-inner-banner img {
    position: relative;
}

@media only screen and (max-width: 767px) {
    .beco-inner-banner img {
        left: -50px;
    }
}

.beco-inner-banner .beco-banner-bg-desktop {
    display: block;
}

@media only screen and (max-width: 767px) {
    .beco-inner-banner .beco-banner-bg-desktop {
        display: none;
    }
}

.beco-inner-banner .beco-banner-bg-mobile {
    display: none;
    left: 50%;
    width: 768px;
    max-width: 768px;
    position: absolute;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

@media only screen and (max-width: 767px) {
    .beco-inner-banner .beco-banner-bg-mobile {
        display: block;
    }
}

.beco-inner-banner__main-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (max-width: 767px) {
    .beco-inner-banner__main-info {
        -webkit-flex-flow: column;
        -ms-flex-flow: column;
        flex-flow: column;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

.beco-inner-banner__main-info:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.beco-inner-banner__main-info div:first-child {
    color: white;
    padding: 0 32px;
    width: 60%;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 767px) {
    .beco-inner-banner__main-info div:first-child {
        padding: 20px 14px;
        width: 100%;
        max-width: 500px;
    }
}

.beco-inner-banner__main-info div:first-child * {
    font-weight: 400;
}

@media only screen and (max-width: 767px) {
    .beco-inner-banner__main-info div:first-child h1, .beco-inner-banner__main-info div:first-child h2, .beco-inner-banner__main-info div:first-child h3, .beco-inner-banner__main-info div:first-child h4 {
        font-size: 18px;
    }
}

.beco-inner-banner__main-info div:first-child h1 + p, .beco-inner-banner__main-info div:first-child h2 + p, .beco-inner-banner__main-info div:first-child h3 + p, .beco-inner-banner__main-info div:first-child h4 + p {
    margin-top: 18px;
}

@media only screen and (max-width: 767px) {
    .beco-inner-banner__main-info div:first-child p {
        font-size: 16px;
    }
}

.beco-inner-banner__main-info div:first-child p + p {
    margin-top: 18px;
}

.beco-inner-banner__main-info div + div {
    border-radius: 50% 0 0 50%;
    background: white;
    width: 295px;
    height: 310px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #333;
    z-index: 2;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .beco-inner-banner__main-info div + div {
        border-radius: 50% 50% 0 0;
        width: 100%;
        height: auto;
        padding: 30px 10px;
    }
}

.beco-inner-banner__main-info .text--normal {
    font-size: 20px;
    font-weight: 600;
}

.beco-inner-banner__main-info .text--small {
    font-size: 16px;
    margin-top: 6px;
    font-weight: 600;
}

.beco-inner-banner__main-info .text--value {
    font-size: 28px;
    margin-top: 10px;
    font-weight: 600;
}

.beco-inner-banner__main-info .beco-btn {
    margin-top: 20px;
    max-width: 150px;
    padding: 8px 15px;
    font-size: 13px;
}

.beco-main-top-banner {
    width: 100%;
    max-height: 240px;
    position: relative;
    overflow: hidden;
}

.beco-main-top-banner_container {
    max-width: 970px;
    margin: 0 auto;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.beco-as-button {
    text-align: center;
    cursor: pointer;
    display: inline-block;
    border: 0;
    font-weight: 700;
    font-size: 13px;
    border-radius: 4px;
    padding: 7px 20px;
    color: white;
    transition: .2s;
}

.beco-as-button-primary {
    background-color: #FA9600;
}

    .beco-as-button-primary:hover {
        background-color: #E38C0B;
    }

.beco-box {
    /*------------------------------------------------------------------------------Simple */
    /*------------------------------------------------------------------------------Fees boxes */
}

.beco-box--simple {
    border: solid 1px #ddd;
    border-radius: 5px;
    padding: 20px;
}

    .beco-box--simple li {
        position: relative;
        padding-left: 20px;
    }

        .beco-box--simple li:before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 5px;
            height: 5px;
            border-radius: 100%;
            background: #FA9600;
        }

        .beco-box--simple li + li {
            margin-top: 10px;
        }

.beco-box--simple--big-pad {
    padding: 30px 60px;
}

@media only screen and (max-width: 992px) {
    .beco-box--simple--big-pad {
        padding: 30px 20px;
    }
}

@media only screen and (max-width: 550px) {
    .beco-box--simple--big-pad {
        padding: 30px 10px;
    }
}

.beco-box--fees {
    box-shadow: 0px 3px 5px -3px rgba(0, 0, 0, 0.5);
    border-radius: 6px;
    width: 100%;
    display: block;
    margin-bottom: 20px;
    overflow: hidden;
}

.beco-box--fees__head {
    text-align: center;
    background-color: #7B7B7B;
    padding: 12px 0px 16px;
    color: white;
    position: relative;
    text-transform: uppercase;
    transition: all 300ms ease;
}

    .beco-box--fees__head h4 {
        font-size: 15px;
    }

@media (min-width: 768px) {
    .beco-box--fees__head h4 {
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .beco-box--fees__head {
        padding: 32px 0px 30px;
    }
}

.beco-box--fees__head * {
    font-weight: 600;
}

.beco-box--fees__head:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0px;
    height: 0px;
    border-left: 950px solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 15px solid white;
}

.beco-box--fees__info {
    padding: 10px;
}

@media (min-width: 768px) {
    .beco-box--fees__info {
        padding: 30px;
    }
}

.beco-box--fees__info > * {
    margin: 0 auto;
    display: block;
    text-align: center;
}

    .beco-box--fees__info > * + * {
        margin-top: 2px;
        color: #000;
    }

@media (min-width: 768px) {
    .beco-box--fees__info > * + * {
        margin-top: 15px;
    }
}

.beco-box--fees__value--big {
    font-size: 22px;
}

@media (min-width: 768px) {
    .beco-box--fees__value--big {
        font-size: 28px;
    }
}

.beco-box--fees__value--small {
    font-weight: 600;
}

.beco-box--fees__button-area {
    padding: 0px 30px 20px;
}

@media (min-width: 768px) {
    .beco-box--fees__button-area {
        padding: 0px 30px 40px;
    }
}

.beco-box--fees__button-area > * {
    display: table;
    margin: 0 auto;
}

.beco-box--fees .beco-as-button {
    background: #7B7B7B;
}

.beco-box--fees input {
    display: none;
}

.beco-box--fees.active .beco-box--fees__head, .beco-box--fees:hover .beco-box--fees__head {
    background-color: #FA9600;
    transition: all 300ms ease;
}

.beco-box--fees.active .beco-as-button, .beco-box--fees:hover .beco-as-button {
    background: #FA9600;
}

.beco-box-info-bar {
    background: #F3F3F3;
    border-radius: 6px;
    padding: 10px;
    width: 100%;
    font-size: 14px;
}

    .beco-box-info-bar + .beco-box-info-bar {
        margin-top: 20px;
    }

    .beco-box-info-bar > * {
        display: block;
    }

.beco-box--dashed {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0px;
    margin: 20px auto;
    border-top: dashed 1px #D8D8D8;
    border-bottom: dashed 1px #D8D8D8;
}

    .beco-box--dashed a {
        font-weight: 700;
    }

    .beco-box--dashed small {
        font-size: 14px;
    }

@media only screen and (max-width: 992px) {
    .beco-box--dashed {
        -webkit-flex-flow: column;
        -ms-flex-flow: column;
        flex-flow: column;
    }

        .beco-box--dashed > * + * {
            margin-top: 10px;
        }
}

.beco-box-send-mail {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.beco-box-send-mail--to-left {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

@media only screen and (max-width: 768px) {
    .beco-box-send-mail--to-left {
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media only screen and (max-width: 768px) {
    .beco-box-send-mail .beco-form {
        width: 100%;
    }
}

.beco-box-send-mail .beco-form__label {
    margin-bottom: 16px;
    font-size: 16px;
}

.beco-box-send-mail .beco-form__input {
    width: 300px;
    margin: 0 auto;
}

@media only screen and (max-width: 768px) {
    .beco-box-send-mail .beco-form__input {
        width: 100%;
    }
}

.beco-box-send-mail .beco-form__input + p {
    font-weight: 700;
    font-size: 12px;
}

.beco-box-send-mail .beco-btn {
    margin-top: 16px;
}

.beco-box-config {
    border: solid 1px #ccc;
    border-radius: 6px;
    background: white;
    margin: 40px auto 0;
}

@media (min-width: 550px) {
    .beco-box-config .beco-tool-static.beco-active:after {
        left: 0;
    }
}

@media (min-width: 768px) {
    .beco-box-config .beco-tool-static.beco-active:after {
        left: -80px;
    }
}

.beco-box-config__head {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    text-align: center;
    padding: 30px 40px 20px 30px;
}

    .beco-box-config__head span + span {
        margin-top: 10px;
    }

    .beco-box-config__head .text--mid {
        font-size: 16px;
    }

    .beco-box-config__head .text--small {
        font-size: 14px;
    }

.beco-box-config__value {
    font-size: 28px;
    font-weight: 600;
}

.beco-box-config__details {
    border-top: solid 1px #FA9600;
    padding: 20px 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 70%;
    margin: 0 auto;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    padding: 30px 0 40px;
}

@media (min-width: 550px) {
    .beco-box-config__details {
        padding: 20px 0;
    }
}

.beco-box-config__detail-group {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    width: 100%;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (min-width: 550px) {
    .beco-box-config__detail-group {
        -webkit-flex-flow: row;
        -ms-flex-flow: row;
        flex-flow: row;
    }
}

.beco-box-config__detail-group > div {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    text-align: center;
}

@media (min-width: 550px) {
    .beco-box-config__detail-group > div {
        text-align: left;
    }
}

.beco-box-config__detail-group > div + div {
    text-align: center;
    margin-top: 20px;
}

@media (min-width: 550px) {
    .beco-box-config__detail-group > div + div {
        text-align: right;
        margin-top: 0;
    }
}

.beco-box-config__detail-group + .beco-box-config__detail-group {
    margin-top: 20px;
}

.beco-box-config + .beco-alert-box {
    position: relative;
    top: -4px;
    z-index: 1;
}

.beco-projection-group {
    display: none;
}

.beco-h-radio-component {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border: solid 1px #ccc;
    border-radius: 6px;
    padding: 18px 20px;
    width: 100%;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    font-size: 14px;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    transition: all 300ms ease;
}

    .beco-h-radio-component.active {
        border-color: #FA9600;
        transition: all 300ms ease;
    }

@media (min-width: 550px) {
    .beco-h-radio-component {
        -webkit-flex-flow: row;
        -ms-flex-flow: row;
        flex-flow: row;
        font-size: 16px;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.beco-h-radio-component + .beco-h-radio-component {
    margin-top: 20px;
}

.beco-h-radio-component label input + div {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: white;
    margin-right: 10px;
    border: 1px solid #898EA3;
    position: relative;
    transition: all 300ms ease;
}

    .beco-h-radio-component label input + div:before {
        content: '';
        width: 13px;
        height: 12px;
        position: absolute;
        background-image: url(../../dist/img/icon-checked.svg);
        background-size: 100%;
        background-repeat: no-repeat;
        border-radius: 0;
        background-color: transparent;
        top: 5px;
        left: 3px;
        opacity: 0;
        transition: all 300ms ease;
    }

.beco-h-radio-component label input:checked + div {
    border-color: #FA9600;
    background-color: #FA9600;
    transition: all 300ms ease;
}

    .beco-h-radio-component label input:checked + div:before {
        opacity: 1;
        transition: all 300ms ease;
    }

.beco-h-radio-component > div:first-child {
    width: auto;
    font-weight: 700;
}

@media (min-width: 550px) {
    .beco-h-radio-component > div:first-child {
        width: 200px;
    }
}

.beco-h-radio-component > div:first-child * {
    display: inline-block;
    vertical-align: middle;
}

.beco-h-radio-component > div:first-child input {
    display: none;
}

.beco-h-radio-component__fees-details {
    width: auto;
}

@media (min-width: 550px) {
    .beco-h-radio-component__fees-details {
        width: 310px;
    }
}

.beco-h-radio-component__fees-details > div {
    padding: 10px 0 10px 35px;
}

@media (min-width: 550px) {
    .beco-h-radio-component__fees-details > div {
        padding: 0 20px;
    }
}

.beco-h-radio-component__fees-details + div {
    width: auto;
    margin-top: 10px;
    padding-left: 35px;
}

@media (min-width: 550px) {
    .beco-h-radio-component__fees-details + div {
        width: 200px;
        margin-top: 0;
        padding-left: 0;
    }
}

.beco-h-radio-component button {
    font-size: 16px;
    text-decoration: underline;
    border: none;
    color: #FA9600;
    font-weight: 700;
    background: none;
    cursor: pointer;
}

.beco-button-cent-group > div {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
}

@media (min-width: 550px) {
    .beco-button-cent-group > div {
        -webkit-flex-flow: row;
        -ms-flex-flow: row;
        flex-flow: row;
    }
}

@media (max-width: 550px) {
    .beco-button-cent-group > div.beco-invert-on-mobile {
        -webkit-flex-flow: column-reverse;
        -ms-flex-flow: column-reverse;
        flex-flow: column-reverse;
    }

        .beco-button-cent-group > div.beco-invert-on-mobile a + a, .beco-button-cent-group > div.beco-invert-on-mobile a + button {
            margin-top: 0;
            margin-bottom: 20px;
        }
}

.beco-button-cent-group a + a, .beco-button-cent-group a + button {
    margin-top: 0;
    margin-left: 20px;
}

@media (max-width: 550px) {
    .beco-button-cent-group a + a, .beco-button-cent-group a + button {
        margin-left: 0;
        margin-top: 20px;
    }
}

.beco-button-cent-group button + button, .beco-button-cent-group button + a {
    margin-top: 20px;
}

@media (min-width: 550px) {
    .beco-button-cent-group button + button, .beco-button-cent-group button + a {
        margin-top: 0;
        margin-left: 20px;
    }
}

.beco-button-group > div {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media (max-width: 767px) {
    .beco-button-group > div {
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

        .beco-button-group > div a, .beco-button-group > div button {
            margin-top: 0;
            margin-left: 0;
            width: auto;
            max-width: 100%;
        }

            .beco-button-group > div a + a, .beco-button-group > div a + button {
                margin-left: 20px;
            }
}

@media (max-width: 550px) {
    .beco-button-group > div a + a, .beco-button-group > div a + button {
        margin-left: 0;
    }
}

.beco-button-group a, .beco-button-group button {
    max-width: 280px;
}

@media (max-width: 550px) {
    .beco-button-group > div.beco-invert-on-mobile {
        -webkit-flex-flow: column-reverse;
        -ms-flex-flow: column-reverse;
        flex-flow: column-reverse;
    }

        .beco-button-group > div.beco-invert-on-mobile a + a, .beco-button-group > div.beco-invert-on-mobile a + button {
            margin-top: 0;
            margin-bottom: 20px;
        }
}

@media only screen and (max-width: 767px) {
    .beco-button-group {
        -webkit-flex-flow: column;
        -ms-flex-flow: column;
        flex-flow: column;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .beco-button-group button + button, .beco-button-group button + a {
            margin-left: 0;
            margin-top: 20px;
        }
}

.beco-tool-static .beco-tooltip {
    width: 14px;
    height: 14px;
    font-size: 10px;
    top: -3px;
    position: relative;
}

.beco-tool-static {
    position: relative;
}

    .beco-tool-static:after {
        display: none;
    }

    .beco-tool-static.beco-active:after {
        content: attr(data-text);
        background: #FFF;
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
        border-radius: 4px;
        padding: 11px;
        line-height: 15px;
        position: absolute;
        bottom: 30px;
        left: 50%;
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
        z-index: 10;
        width: 175px;
        text-align: left;
        font-size: 11px;
        display: block;
        color: #333333;
    }

@media (min-width: 800px) and (max-width: 1090px) {
    .beco-tool-static.beco-active:after {
        left: -80px;
    }
}

.beco-box-pay {
    background: #7B7B7B;
    padding: 20px 20px;
    border-radius: 0 6px 6px 6px;
}

    .beco-box-pay * {
        color: white;
        text-align: center;
        font-size: 14px;
    }

    .beco-box-pay p + p {
        margin-top: 10px;
    }

    .beco-box-pay .beco__total {
        font-size: 28px;
        margin-top: 4px;
        font-weight: 700;
    }

    .beco-box-pay .beco__text {
        font-size: 16px;
    }

    .beco-box-pay + .beco-alert-box {
        border-radius: 0 0 6px 6px;
        position: relative;
        top: -4px;
        z-index: 2;
    }

.beco-global-nav-example {
    padding: 30px 30px;
}

@media only screen and (max-width: 992px) {
    .beco-global-nav-example {
        font-size: 12px;
    }
}

.beco-global-nav-example a {
    padding: 16px 24px 16px 10px;
    color: #333333;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

    .beco-global-nav-example a span {
        font-size: 12px;
    }

.beco-global-nav-example li {
    list-style: decimal;
    opacity: 0.5;
}

    .beco-global-nav-example li a {
        pointer-events: none;
    }

    .beco-global-nav-example li + li {
        margin-top: 0;
        border-top: solid 1px #ccc;
    }

    .beco-global-nav-example li.success {
        opacity: 1;
    }

        .beco-global-nav-example li.success a {
            pointer-events: initial;
        }

.beco-all-center {
    text-align: center;
}

.beco-success__action--prce * {
    color: #FA9601;
}

.beco-success__action--prce .beco-icon-print {
    background-image: url("../../dist/img/icon-print-prce.svg");
    background-size: contain;
}

.beco-success__action--prce .beco-icon-mail {
    background-image: url("../../dist/img/icon-mail-prce.svg");
    background-size: contain;
}

.beco-success__action--prce .beco-icon-download {
    background-image: url("../../dist/img/icon-download-prce.svg");
    background-size: contain;
}

.beco-success__action--prce ul {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-flow: row;
    -ms-flex-flow: row;
    flex-flow: row;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}

@media only screen and (max-width: 768px) {
    .beco-success__action--prce ul {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
}

.beco-success__action--prce ul li {
    padding-left: 0;
}

    .beco-success__action--prce ul li:before {
        display: none;
    }

    .beco-success__action--prce ul li + li {
        margin-top: auto;
    }

.beco-success__action--prce ul i {
    width: 20px;
    margin-bottom: 8px;
}

.beco-success__action--prce ul a {
    position: relative;
    padding-left: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 12px;
}

.beco-simple-list-b li {
    position: relative;
    padding-left: 20px;
}

    .beco-simple-list-b li:before {
        content: '';
        position: absolute;
        left: 0;
        top: 10px;
        width: 5px;
        height: 5px;
        border-radius: 100%;
        background: #FA9600;
    }

    .beco-simple-list-b li + li {
        margin-top: 10px;
    }

.beco-box-detail-numbers {
    border: solid 1px rgba(0, 0, 0, 0.3);
    background: white;
    padding: 20px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    border-radius: 0 0 6px 6px;
    position: relative;
    z-index: 1;
    top: -6px;
    font-size: 14px;
}

    .beco-box-detail-numbers > div {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-flex-flow: column;
        -ms-flex-flow: column;
        flex-flow: column;
        text-align: left;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

.beco-box-detail-numbers__num {
    font-size: 16px;
    margin-top: 6px;
}

.beco-margin-top-1 {
    margin-top: 10px;
}

.beco-margin-left-1 {
    margin-left: 10px;
}

.beco-margin-bottom-1 {
    margin-bottom: 10px;
}

.beco-margin-right-1 {
    margin-right: 10px;
}

.beco-margin-top-2 {
    margin-top: 20px;
}

.beco-margin-left-2 {
    margin-left: 20px;
}

.beco-margin-bottom-2 {
    margin-bottom: 20px;
}

.beco-margin-right-2 {
    margin-right: 20px;
}

.beco-margin-top-3 {
    margin-top: 30px;
}

.beco-margin-left-3 {
    margin-left: 30px;
}

.beco-margin-bottom-3 {
    margin-bottom: 30px;
}

.beco-margin-right-3 {
    margin-right: 30px;
}

.beco-margin-top-4 {
    margin-top: 40px;
}

.beco-margin-left-4 {
    margin-left: 40px;
}

.beco-margin-bottom-4 {
    margin-bottom: 40px;
}

.beco-margin-right-4 {
    margin-right: 40px;
}

.beco-margin-top-5 {
    margin-top: 50px;
}

.beco-margin-left-5 {
    margin-left: 50px;
}

.beco-margin-bottom-5 {
    margin-bottom: 50px;
}

.beco-margin-right-5 {
    margin-right: 50px;
}

.beco-margin-top-6 {
    margin-top: 60px;
}

.beco-margin-left-6 {
    margin-left: 60px;
}

.beco-margin-bottom-6 {
    margin-bottom: 60px;
}

.beco-margin-right-6 {
    margin-right: 60px;
}

.beco-margin-top-7 {
    margin-top: 70px;
}

.beco-margin-left-7 {
    margin-left: 70px;
}

.beco-margin-bottom-7 {
    margin-bottom: 70px;
}

.beco-margin-right-7 {
    margin-right: 70px;
}

.beco-margin-top-8 {
    margin-top: 80px;
}

.beco-margin-left-8 {
    margin-left: 80px;
}

.beco-margin-bottom-8 {
    margin-bottom: 80px;
}

.beco-margin-right-8 {
    margin-right: 80px;
}

.beco-margin-top-9 {
    margin-top: 90px;
}

.beco-margin-left-9 {
    margin-left: 90px;
}

.beco-margin-bottom-9 {
    margin-bottom: 90px;
}

.beco-margin-right-9 {
    margin-right: 90px;
}

.beco-margin-top-10 {
    margin-top: 100px;
}

.beco-margin-left-10 {
    margin-left: 100px;
}

.beco-margin-bottom-10 {
    margin-bottom: 100px;
}

.beco-margin-right-10 {
    margin-right: 100px;
}

.beco-padding-bottom-0 {
    padding-bottom: 0;
}

.beco-padding-top-1 {
    padding-top: 10px;
}

.beco-padding-left-1 {
    padding-left: 10px;
}

.beco-padding-bottom-1 {
    padding-bottom: 10px;
}

.beco-padding-right-1 {
    padding-right: 10px;
}

.beco-padding-top-2 {
    padding-top: 20px;
}

.beco-padding-left-2 {
    padding-left: 20px;
}

.beco-padding-bottom-2 {
    padding-bottom: 20px;
}

.beco-padding-right-2 {
    padding-right: 20px;
}

.beco-padding-top-3 {
    padding-top: 30px;
}

.beco-padding-left-3 {
    padding-left: 30px;
}

.beco-padding-bottom-3 {
    padding-bottom: 30px;
}

.beco-padding-right-3 {
    padding-right: 30px;
}

.beco-padding-top-4 {
    padding-top: 40px;
}

.beco-padding-left-4 {
    padding-left: 40px;
}

.beco-padding-bottom-4 {
    padding-bottom: 40px;
}

.beco-padding-right-4 {
    padding-right: 40px;
}

.beco-padding-top-5 {
    padding-top: 50px;
}

.beco-padding-left-5 {
    padding-left: 50px;
}

.beco-padding-bottom-5 {
    padding-bottom: 50px;
}

.beco-padding-right-5 {
    padding-right: 50px;
}

.beco-padding-top-6 {
    padding-top: 60px;
}

.beco-padding-left-6 {
    padding-left: 60px;
}

.beco-padding-bottom-6 {
    padding-bottom: 60px;
}

.beco-padding-right-6 {
    padding-right: 60px;
}

.beco-padding-top-7 {
    padding-top: 70px;
}

.beco-padding-left-7 {
    padding-left: 70px;
}

.beco-padding-bottom-7 {
    padding-bottom: 70px;
}

.beco-padding-right-7 {
    padding-right: 70px;
}

.beco-padding-top-8 {
    padding-top: 80px;
}

.beco-padding-left-8 {
    padding-left: 80px;
}

.beco-padding-bottom-8 {
    padding-bottom: 80px;
}

.beco-padding-right-8 {
    padding-right: 80px;
}

.beco-padding-top-9 {
    padding-top: 90px;
}

.beco-padding-left-9 {
    padding-left: 90px;
}

.beco-padding-bottom-9 {
    padding-bottom: 90px;
}

.beco-padding-right-9 {
    padding-right: 90px;
}

.beco-padding-top-10 {
    padding-top: 100px;
}

.beco-padding-left-10 {
    padding-left: 100px;
}

.beco-padding-bottom-10 {
    padding-bottom: 100px;
}

.beco-padding-right-10 {
    padding-right: 100px;
}

@media only screen and (max-width: 992px) {
    .beco-md-margin-top-1 {
        margin-top: 10px;
    }

    .beco-md-margin-left-1 {
        margin-left: 10px;
    }

    .beco-md-margin-bottom-1 {
        margin-bottom: 10px;
    }

    .beco-md-margin-right-1 {
        margin-right: 10px;
    }

    .beco-md-margin-top-2 {
        margin-top: 20px;
    }

    .beco-md-margin-left-2 {
        margin-left: 20px;
    }

    .beco-md-margin-bottom-2 {
        margin-bottom: 20px;
    }

    .beco-md-margin-right-2 {
        margin-right: 20px;
    }

    .beco-md-margin-top-3 {
        margin-top: 30px;
    }

    .beco-md-margin-left-3 {
        margin-left: 30px;
    }

    .beco-md-margin-bottom-3 {
        margin-bottom: 30px;
    }

    .beco-md-margin-right-3 {
        margin-right: 30px;
    }

    .beco-md-margin-top-4 {
        margin-top: 40px;
    }

    .beco-md-margin-left-4 {
        margin-left: 40px;
    }

    .beco-md-margin-bottom-4 {
        margin-bottom: 40px;
    }

    .beco-md-margin-right-4 {
        margin-right: 40px;
    }

    .beco-md-margin-top-5 {
        margin-top: 50px;
    }

    .beco-md-margin-left-5 {
        margin-left: 50px;
    }

    .beco-md-margin-bottom-5 {
        margin-bottom: 50px;
    }

    .beco-md-margin-right-5 {
        margin-right: 50px;
    }
}

@media only screen and (max-width: 768px) {
    .beco-sm-margin-top-1 {
        margin-top: 10px;
    }

    .beco-sm-margin-left-1 {
        margin-left: 10px;
    }

    .beco-sm-margin-bottom-1 {
        margin-bottom: 10px;
    }

    .beco-sm-margin-right-1 {
        margin-right: 10px;
    }

    .beco-sm-margin-top-2 {
        margin-top: 20px;
    }

    .beco-sm-margin-left-2 {
        margin-left: 20px;
    }

    .beco-sm-margin-bottom-2 {
        margin-bottom: 20px;
    }

    .beco-sm-margin-right-2 {
        margin-right: 20px;
    }

    .beco-sm-margin-top-3 {
        margin-top: 30px;
    }

    .beco-sm-margin-left-3 {
        margin-left: 30px;
    }

    .beco-sm-margin-bottom-3 {
        margin-bottom: 30px;
    }

    .beco-sm-margin-right-3 {
        margin-right: 30px;
    }

    .beco-sm-margin-top-4 {
        margin-top: 40px;
    }

    .beco-sm-margin-left-4 {
        margin-left: 40px;
    }

    .beco-sm-margin-bottom-4 {
        margin-bottom: 40px;
    }

    .beco-sm-margin-right-4 {
        margin-right: 40px;
    }

    .beco-sm-margin-top-5 {
        margin-top: 50px;
    }

    .beco-sm-margin-left-5 {
        margin-left: 50px;
    }

    .beco-sm-margin-bottom-5 {
        margin-bottom: 50px;
    }

    .beco-sm-margin-right-5 {
        margin-right: 50px;
    }
}

@media only screen and (max-width: 550px) {
    .beco-xs-margin-top-1 {
        margin-top: 10px;
    }

    .beco-xs-margin-left-1 {
        margin-left: 10px;
    }

    .beco-xs-margin-bottom-1 {
        margin-bottom: 10px;
    }

    .beco-xs-margin-right-1 {
        margin-right: 10px;
    }

    .beco-xs-margin-top-2 {
        margin-top: 20px;
    }

    .beco-xs-margin-left-2 {
        margin-left: 20px;
    }

    .beco-xs-margin-bottom-2 {
        margin-bottom: 20px;
    }

    .beco-xs-margin-right-2 {
        margin-right: 20px;
    }

    .beco-xs-margin-top-3 {
        margin-top: 30px;
    }

    .beco-xs-margin-left-3 {
        margin-left: 30px;
    }

    .beco-xs-margin-bottom-3 {
        margin-bottom: 30px;
    }

    .beco-xs-margin-right-3 {
        margin-right: 30px;
    }

    .beco-xs-margin-top-4 {
        margin-top: 40px;
    }

    .beco-xs-margin-left-4 {
        margin-left: 40px;
    }

    .beco-xs-margin-bottom-4 {
        margin-bottom: 40px;
    }

    .beco-xs-margin-right-4 {
        margin-right: 40px;
    }

    .beco-xs-margin-top-5 {
        margin-top: 50px;
    }

    .beco-xs-margin-left-5 {
        margin-left: 50px;
    }

    .beco-xs-margin-bottom-5 {
        margin-bottom: 50px;
    }

    .beco-xs-margin-right-5 {
        margin-right: 50px;
    }
}
/*------------------------------------------------------------------------------Media print */
@media print {
    .beco-not-print {
        display: none !important;
    }

    .beco-title.beco-mod-print {
        text-align: center;
        margin-bottom: 0;
    }
}
/*------------------------------------------------------------------------------helpers */
.beco-full {
    width: 100%;
}

.beco-clearfix {
    overflow: auto;
}

    .beco-clearfix::after {
        content: '';
        clear: both;
        display: table;
    }

.beco-ohidden {
    overflow: hidden;
}

.beco-hidden {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transition: all 300ms ease;
}

@media (max-width: 550px) {
    .beco-invert-on-mobile {
        -webkit-flex-flow: column-reverse;
        -ms-flex-flow: column-reverse;
        flex-flow: column-reverse;
    }
}

.beco-half {
    width: 50%;
}

@media only screen and (max-width: 991px) {
    .beco-half {
        width: 100%;
        max-width: 528px;
    }
}

/*------------------------------------------------------------------------------ONLY IE11 STYLES */
@media all and (-ms-high-contrast: none) {

    .beco-inner-banner__main-info div + div {
        right: -40px;
    }

    .beco-inner-banner:before {
        content: '';
        width: 100%;
        left: 0;
        top: 0;
        z-index: 2;
        height: 1;
    }

    .beco-inner-banner:after {
        content: '';
        position: absolute;
        right: 0;
        height: 100%;
        width: 1px;
        top: 0;
        z-index: 1;
        background-color: #fff;
    }

    .beco-inner-banner.beco-inner-banner--full:after {
        background-color: transparent;
    }

    .beco-container .beco-inner-banner:after {
        background-color: #fff;
    }

    .beco-container .beco-inner-banner.beco-inner-banner--full:after {
        background-color: #fff;
    }

    .beco-container.full .beco-inner-banner {
        background-color: transparent;
    }

    .beco-container.full .beco-inner-banner.beco-inner-banner--full:after {
            background-color: transparent;
    }
}

@media all and (-ms-high-contrast:none) {


    /*Elimina issue en ie11 de borde de imagen superior*/

    .beco-inner-banner__main-info div + div:before {
        content: '';
        width: 105%;
        height: 105%;
        background: white;
        top: -3px;
        left: -3px;
        border-radius: 100%;
        position: absolute;
        z-index: -1;
    }

    .beco-inner-banner .beco-banner-bg-desktop {
        top: 1px;
    }

    .beco-inner-banner.not-top-iefix .beco-banner-bg-desktop {
        top: 0;
    }

    /*Elimina issue en ie11 de borde de imagen superior*/

    .beco-inner-banner:after {
        content: '';
        position: absolute;
        right: 0;
        height: 100%;
        width: 1px;
        top: 0;
        z-index: 1;
        background-color: transparent;
    }

    .beco-container .beco-inner-banner:after {
        background-color: #fff;
    }

    .beco-container .beco-inner-banner.beco-inner-banner--full:after {
        background-color: #fff;
    }

    .beco-container.full .beco-inner-banner {
        background-color: transparent;
    }

        .beco-container.full .beco-inner-banner.beco-inner-banner--full:after {
            background-color: transparent;
        }
}


/*# sourceMappingURL=main-prce.css.map */

