.styled-checkbox {
    position: absolute;
    opacity: 0;
    z-index: 999;
}

.styled-checkbox + label {
    position: relative;
    cursor: pointer;
    padding: 0;
}

.styled-checkbox + label:before {
    content: '';
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 20px;
    height: 20px;
    background: #333;
}

.styled-checkbox:hover + label:before {
    background: #f35429;
}

.styled-checkbox:focus + label:before {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}

.styled-checkbox:checked + label:before {
    background: #f35429;
}

.styled-checkbox:disabled + label {
    color: #b8b8b8;
    cursor: auto;
}

.styled-checkbox:disabled + label:before {
    box-shadow: none;
    background: #ddd;
}

.styled-checkbox:checked + label:after {
    content: '';
    position: absolute;
    left: 5px;
    top: 9px;
    background: white;
    width: 2px;
    height: 2px;
    box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.modal__content input[type="text"] {
    min-height: 20px;
    border: solid 2px #333;
    margin: 10px;
}

/*
footer {
	background: #04040e!important;
}
footer h3 { 
background: #04040e!important;
}
footer .logo-icons {
	background: none!important;
}
@media screen and (min-width: 601px) {
footer .logo-icons {
	
	border: none!important;
	padding-bottom: 10px!important;
}
footer .logo-icons:after {
	content: '';
    position: absolute;
    bottom: 0;
    width: 97%;
	border-bottom: #333 1px solid;
	left: 17px;
}

footer span.estructurales-links {
	    float: right!important;
    width: auto!important;
	border: none!important;
	padding-right: 10px!important;
}
footer span {
	    width: auto!important;
    padding: 10px 0 0!important;
    margin: 10px 0 0!important;
	
	padding-left: 17px!important;
}
footer .contenedores-listas {
	    padding-bottom: 25px;
}

footer h3 {
	 margin: 0!important;
	    padding: 30px 0 25px!important;
}
}*/
/**
 * Material Modal CSS
 */
.modal {
    will-change: visibility, opacity;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transition-delay: $ modal-delay;
    transition-delay: $ modal-delay;
}

.modal--active {
    visibility: visible;
    opacity: 1;
}

.modal--align-top {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.modal__bg {
    background: transparent;
}

.modal__dialog {
    max-width: 600px;
    padding: 1.2rem;
}

.modal__content {
    will-change: transform, opacity;
    position: relative;
    padding: 2.4rem;
    background: #ffebee;
    background-clip: padding-box;
    box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.25);
    opacity: 0;
    -webkit-transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

.modal__content--active {
    opacity: 1;
}

.modal__close {
    z-index: 1100;
    cursor: pointer;
}

.modal__trigger {
    position: absolute;
    display: inline-block;
    padding: 1.2rem 2.4rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1;
    cursor: pointer;
    background: #ffebee;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.modal__trigger--active {
    z-index: 10;
}

.modal__trigger:hover {
    background: #e5d3d6;
}

#modal__temp {
    will-change: transform, opacity;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffebee;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-transition: opacity 0.1s ease-out, -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transition: opacity 0.1s ease-out, -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transition: opacity 0.1s ease-out, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transition: opacity 0.1s ease-out, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.demo-btns header {
    padding: 7vh 10vw;
    background: #ffebee;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.demo-btns header h1 {
    margin: 0;
    color: rgba(0, 0, 0, 0.54);
    font-weight: 300;
}

.demo-btns .info {
    background: #f44336;
    padding: 3vh 10vw;
    height: 70vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
}

.demo-btns p {
    text-align: center;
    color: #fff;
}

.demo-btns .link {
    font-size: 20px;
}

.demo-btns .modal__trigger {
    margin-right: 3px;
}

@media (max-width: 640px) {
    .demo-btns .modal__trigger {
        margin-bottom: 0.8rem;
    }
}

.demo-close {
    position: absolute;
    top: 0;
    right: 0;
    margin: 1.2rem;
    padding: 0.6rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.demo-close svg {
    width: 24px;
    fill: #fff;
    pointer-events: none;
    vertical-align: top;
}

.demo-close:hover {
    background: rgba(0, 0, 0, 0.6);
}

.logo {
    position: fixed;
    bottom: 3vh;
    right: 3vw;
    z-index: 2;
}

.logo img {
    width: 45px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.logo img:hover {
    -webkit-transform: rotate(180deg) scale(1.1);
    transform: rotate(180deg) scale(1.1);
}

#homepage-gallery-offer [data-icon]:before {
    font-size: 30px;
    color: #fff;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    line-height: 92px;
    transform: rotate(90deg);
    left: 8px;
}

#homepage-gallery-offer .arrow-icon-next[data-icon]:before {
    transform: rotate(-90deg);
    left: -8px;
}

button {
    background: none;
    border: 0;
    box-sizing: content-box;
    color: inherit;
    cursor: pointer;
    font: inherit;
    line-height: inherit;
    overflow: visible;
    vertical-align: inherit;

    padding: 0; /*add css*/
}

button:disabled {
    cursor: default
}

:focus {
    outline: none
}

:focus[data-focus-method="mouse"]:not(input):not(textarea):not(select), :focus[data-focus-method="touch"]:not(input):not(textarea):not(select) {
    outline: none
}

::-moz-focus-inner {
    border: 0;
    padding: 0
}

@media print {
    body, #main, #content {
        color: #000
    }

    a, a:link, a:visited {
        color: #000;
        text-decoration: none
    }

    #globalheader, #globalfooter, #directorynav, #tabs, .noprint, .hide {
        display: none
    }
}

body, input, textarea, select, button {
    font-synthesis: none;
    -moz-font-feature-settings: 'kern';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    direction: ltr;
    text-align: left
}

.links-inline, .links-stacked {
    margin-left: 0;
    margin-right: 0;
    list-style: none
}

.links-inline li {
    display: inline;
    margin: 0 0.8em
}

.links-inline li:first-child {
    margin-left: 0
}

.links-inline li:last-child {
    margin-right: 0
}

.links-stacked li + li {
    margin-top: .3em
}

.nowrap {
    display: inline-block;
    text-decoration: inherit;
    white-space: nowrap
}

.cursor-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab
}

.cursor-grabbing {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor: grabbing
}

.row {
    position: relative;
    z-index: 1
}

.row:before, .row:after {
    content: ' ';
    display: table
}

.row:after {
    clear: both
}

.more:before, .more:after {
    content: ""
}

/* nav, nav dots, etc*/
.nav {
    margin: 0;
    list-style: none
}

.nav ul {
    margin: 0;
    list-style: none
}

.nav-arrow {
    width: 90px;
    height: 90px;
    border-radius: 90px;
    color: rgba(0, 0, 0, 0.44);
    display: block;
    font-size: 53px;
    font-style: normal;
    line-height: 90px;
    overflow: hidden;
    position: absolute;
    text-align: center;
    -webkit-transition: 250ms background-color linear, 250ms color linear, 250ms opacity linear;
    transition: 250ms background-color linear, 250ms color linear, 250ms opacity linear
}

.nav-arrow-next, .nav-arrow-previous {
    margin-top: -45px;
    top: 50%
}

.nav-arrow-up, .nav-arrow-down {
    margin-left: -45px;
    left: 50%
}

.nav-arrow-next {
    right: 18px
}

.nav-arrow-next:before, .nav-arrow-next:after {
    font-family: "SF Pro Icons";
    color: inherit;
    display: inline-block;
    font-style: normal;
    font-weight: inherit;
    font-size: inherit;
    line-height: 1;
    text-decoration: underline;
    position: relative;
    z-index: 1;
    alt: ''
}

.nav-arrow-next:before, .nav-arrow-next:after {
    text-decoration: none
}

.nav-arrow-next:before {
    display: none
}

/*.nav-arrow-next:before, .nav-arrow-next:after {
    content:""
}*/
.nav-arrow-next:after {
    margin-right: -.056em
}

.nav-arrow-previous {
    left: 18px
}

.nav-arrow-previous:before, .nav-arrow-previous:after {
    font-family: "SF Pro Icons";
    color: inherit;
    display: inline-block;
    font-style: normal;
    font-weight: inherit;
    font-size: inherit;
    line-height: 1;
    text-decoration: underline;
    position: relative;
    z-index: 1;
    alt: ''
}

.nav-arrow-previous:before, .nav-arrow-previous:after {
    text-decoration: none
}

.nav-arrow-previous:before {
    display: none
}

/*.nav-arrow-previous:before, .nav-arrow-previous:after {
    content:""
}*/
.nav-arrow-previous:after {
    margin-left: -.056em
}

.nav-arrow-up {
    top: 18px
}

.nav-arrow-up:before, .nav-arrow-up:after {
    font-family: "SF Pro Icons";
    color: inherit;
    display: inline-block;
    font-style: normal;
    font-weight: inherit;
    font-size: inherit;
    line-height: 1;
    text-decoration: underline;
    position: relative;
    z-index: 1;
    alt: ''
}

.nav-arrow-up:before, .nav-arrow-up:after {
    text-decoration: none
}

.nav-arrow-up:before {
    display: none
}

.nav-arrow-up:before, .nav-arrow-up:after {
    content: ""
}

.nav-arrow-down {
    bottom: 18px
}

.nav-arrow-down:before, .nav-arrow-down:after {
    font-family: "SF Pro Icons";
    color: inherit;
    display: inline-block;
    font-style: normal;
    font-weight: inherit;
    font-size: inherit;
    line-height: 1;
    text-decoration: underline;
    position: relative;
    z-index: 1;
    alt: ''
}

.nav-arrow-down:before, .nav-arrow-down:after {
    text-decoration: none
}

.nav-arrow-down:before {
    display: none
}

.nav-arrow-down:before, .nav-arrow-down:after {
    content: ""
}

.nav-arrow:hover {
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none
}

.nav-arrow:active {
    color: rgba(0, 0, 0, 0.6)
}

.nav-arrow:focus {
    box-shadow: 0 0 0 3px rgba(131, 192, 253, 0.5);
    outline: none
}

.nav-arrow:focus[data-focus-method="mouse"]:not(input):not(textarea):not(select), .nav-arrow:focus[data-focus-method="touch"]:not(input):not(textarea):not(select) {
    box-shadow: none
}

.nav-arrow:disabled, .nav-arrow.disabled {
    cursor: default;
    opacity: 0
}

.nav-arrow:disabled:focus[data-focus-method="mouse"]:not(input):not(textarea):not(select), .nav-arrow:disabled:focus[data-focus-method="touch"]:not(input):not(textarea):not(select), .nav-arrow.disabled:focus[data-focus-method="mouse"]:not(input):not(textarea):not(select), .nav-arrow.disabled:focus[data-focus-method="touch"]:not(input):not(textarea):not(select) {
    xopacity: 0
}

html.touch .nav-arrow:disabled, html.touch .nav-arrow.disabled {
    opacity: 0
}

/* nav, nav dots, etc*/
.with-nav {
    position: relative
}

html.no-touch .with-nav-onhover .nav-arrow { /*empieza por no verse buttons*/
    opacity: 1;
    x-webkit-transition: 250ms background-color linear, 250ms color linear, 250ms opacity linear;
    xtransition: 250ms background-color linear, 250ms color linear, 250ms opacity linear
}

html.no-touch .with-nav-onhover .nav-arrow:focus {
    opacity: 1
}

html.no-touch .with-nav-onhover:hover .nav-arrow {
    opacity: 1
}

.nav-compact .nav-arrow {
    width: 68px;
    height: 68px;
    border-radius: 64px;
    font-size: 53px;
    font-weight: normal;
    line-height: 64px
}

.nav-compact .nav-arrow-next, .nav-compact .nav-arrow-previous {
    margin-top: -32px
}

.nav-compact .nav-arrow-up, .nav-compact .nav-arrow-down {
    margin-left: -32px
}

.nav-compact .nav-arrow-next:before, .nav-compact .nav-arrow-next:after {
    font-family: "SF Pro Icons";
    color: inherit;
    display: inline-block;
    font-style: normal;
    font-weight: inherit;
    font-size: inherit;
    line-height: 1;
    text-decoration: underline;
    position: relative;
    z-index: 1;
    alt: ''
}

.nav-compact .nav-arrow-next:before, .nav-compact .nav-arrow-next:after {
    text-decoration: none
}

.nav-compact .nav-arrow-next:before {
    display: none
}

/*.nav-compact .nav-arrow-next:before, .nav-compact .nav-arrow-next:after {
    content:""
}*/
.nav-compact .nav-arrow-next:after {
    margin-right: -.044em
}

.nav-compact .nav-arrow-previous:before, .nav-compact .nav-arrow-previous:after {
    font-family: "SF Pro Icons";
    color: inherit;
    display: inline-block;
    font-style: normal;
    font-weight: inherit;
    font-size: inherit;
    line-height: 1;
    text-decoration: underline;
    position: relative;
    z-index: 1;
    alt: ''
}

.nav-compact .nav-arrow-previous:before, .nav-compact .nav-arrow-previous:after {
    text-decoration: none
}

.nav-compact .nav-arrow-previous:before {
    display: none
}

/*.nav-compact .nav-arrow-previous:before, .nav-compact .nav-arrow-previous:after {
    content:""
}*/
.nav-compact .nav-arrow-previous:after {
    margin-left: -.044em
}

.nav-compact .nav-arrow-up:before, .nav-compact .nav-arrow-up:after {
    font-family: "SF Pro Icons";
    color: inherit;
    display: inline-block;
    font-style: normal;
    font-weight: inherit;
    font-size: inherit;
    line-height: 1;
    text-decoration: underline;
    position: relative;
    z-index: 1;
    alt: ''
}

.nav-compact .nav-arrow-up:before, .nav-compact .nav-arrow-up:after {
    text-decoration: none
}

.nav-compact .nav-arrow-up:before {
    display: none
}

/*.nav-compact .nav-arrow-up:before, .nav-compact .nav-arrow-up:after {
    content:""
}*/
.nav-compact .nav-arrow-down:before, .nav-compact .nav-arrow-down:after {
    font-family: "SF Pro Icons";
    color: inherit;
    display: inline-block;
    font-style: normal;
    font-weight: inherit;
    font-size: inherit;
    line-height: 1;
    text-decoration: underline;
    position: relative;
    z-index: 1;
    alt: ''
}

.nav-compact .nav-arrow-down:before, .nav-compact .nav-arrow-down:after {
    text-decoration: none
}

.nav-compact .nav-arrow-down:before {
    display: none
}

.nav-compact .nav-arrow-down:before, .nav-compact .nav-arrow-down:after {
    content: ""
}

.nav-framed .nav-arrow {
    background-color: rgba(136, 136, 136, 0.08);
    color: rgba(0, 0, 0, 0.44)
}

.nav-framed .nav-arrow:hover {
    xbackground-color: rgba(136, 136, 136, 0.12);
    xcolor: rgba(0, 0, 0, 0.6)
}

.nav-framed .nav-arrow:active {
    xbackground-color: rgba(136, 136, 136, 0.16);
    xcolor: rgba(0, 0, 0, 0.6)
}

.nav-framed .nav-arrow:focus {
    opacity: 1
}

.nav-framed .nav-arrow:focus[data-focus-method="mouse"]:not(input):not(textarea):not(select):hover, .nav-framed .nav-arrow:focus[data-focus-method="touch"]:not(input):not(textarea):not(select):hover {
    xbackground-color: rgba(136, 136, 136, 0.12);
    color: rgba(0, 0, 0, 0.6)
}

.nav-framed .nav-arrow:focus[data-focus-method="mouse"]:not(input):not(textarea):not(select):active, .nav-framed .nav-arrow:focus[data-focus-method="touch"]:not(input):not(textarea):not(select):active {
    background-color: rgba(136, 136, 136, 0.16);
    color: rgba(0, 0, 0, 0.6)
}

.nav-framed .nav-arrow:disabled, .nav-framed .nav-arrow.disabled {
    opacity: 0
}

html.touch .nav-framed .nav-arrow:disabled, html.touch .nav-framed .nav-arrow.disabled {
    opacity: 0
}

.nav-framed .nav-arrow-next {
    right: 10%;
}

.nav-framed .nav-arrow-previous {
    left: 10%;
}

.nav-framed .nav-arrow-up {
    top: 18px
}

.nav-framed .nav-arrow-down {
    bottom: 18px
}

#viewport-emitter {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    visibility: hidden;
    z-index: -1;
    x-content: "large"
}

#viewport-emitter::before {
    content: "large"
}

@media only screen and (min-width: 1442px) {
    #viewport-emitter {
        x-content: "xlarge"
    }

    #viewport-emitter::before {
        content: "xlarge"
    }
}

@media only screen and (max-width: 1068px) {
    #viewport-emitter {
        x-content: "medium"
    }

    #viewport-emitter::before {
        content: "medium"
    }
}

@media only screen and (max-width: 735px) {
    #viewport-emitter {
        x-content: "small"
    }

    #viewport-emitter::before {
        content: "small"
    }
}

.logo-image-label {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
    clip-path: inset(0px 0px 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0
}

.section-promos {
    max-width: 2560px;
    margin: 0 auto;
    border-bottom: 2px solid #fff;
    width: 100%
}

.section-promos ul, .section-promos .promo-position, .section-promos .promo {
    display: block;
    min-height: 200px;
    box-sizing: border-box;
    position: relative;
    margin: 0;
    list-style: none
}

.section-promos .promo-position {
    float: left;
    width: 100%
}

.section-promos .promo-position[data-promo-type] {
    visibility: hidden !important
}

.section-promos .promo {
    xborder-top: 2px solid #fff;
    border-right: 2px solid #fff;
    outline-offset: -3px
}

.section-promos .alt-copy {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
    clip-path: inset(0px 0px 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0
}

@media screen and (max-aspect-ratio: 9999 / 1) and (min-aspect-ratio: 1 / 10000) and (min-width: 1069px) and (max-width: 144200px) {
    .section-promos.promo-count-1 .promo-position {
        width: 100%
    }

    .section-promos.promo-count-1 .promo-position:last-child .promo {
        border-right: none
    }
}

@media screen and (max-aspect-ratio: 9999 / 1) and (min-aspect-ratio: 1 / 10000) and (min-width: 736px) and (max-width: 1068px) {
    .section-promos.promo-count-1 .promo-position {
        width: 100%
    }

    .section-promos.promo-count-1 .promo-position:last-child .promo {
        border-right: none
    }
}

@media screen and (max-aspect-ratio: 9999 / 1) and (min-aspect-ratio: 1 / 10000) and (min-width: 0px) and (max-width: 735px) {
    .section-promos.promo-count-1 .promo-position {
        width: 100%
    }

    .section-promos.promo-count-1 .promo-position .promo {
        border-right: none
    }
}

@media screen and (max-aspect-ratio: 9999 / 1) and (min-aspect-ratio: 1 / 10000) and (min-width: 1069px) and (max-width: 144200px) {
    .section-promos.promo-count-2 .promo-position {
        width: 50%
    }

    .section-promos.promo-count-2 .promo-position:last-child .promo {
        border-right: none
    }
}

@media screen and (max-aspect-ratio: 9999 / 1) and (min-aspect-ratio: 1 / 10000) and (min-width: 736px) and (max-width: 1068px) {
    .section-promos.promo-count-2 .promo-position {
        width: 50%
    }

    .section-promos.promo-count-2 .promo-position:nth-child(even) .promo {
        border-right: none
    }
}

@media screen and (max-aspect-ratio: 9999 / 1) and (min-aspect-ratio: 1 / 10000) and (min-width: 0px) and (max-width: 735px) {
    .section-promos.promo-count-2 .promo-position {
        width: 100%
    }

    .section-promos.promo-count-2 .promo-position .promo {
        border-right: none
    }
}

@media screen and (max-aspect-ratio: 9999 / 1) and (min-aspect-ratio: 1 / 10000) and (min-width: 1069px) and (max-width: 144200px) {
    .section-promos.promo-count-4 .promo-position {
        width: 25%
    }

    .section-promos.promo-count-4 .promo-position:last-child .promo {
        border-right: none
    }
}

@media screen and (max-aspect-ratio: 9999 / 1) and (min-aspect-ratio: 1 / 10000) and (min-width: 736px) and (max-width: 1068px) {
    .section-promos.promo-count-4 .promo-position {
        width: 50%
    }

    .section-promos.promo-count-4 .promo-position:nth-child(even) .promo {
        border-right: none
    }
}

@media screen and (max-aspect-ratio: 9999 / 1) and (min-aspect-ratio: 1 / 10000) and (min-width: 0px) and (max-width: 735px) {
    .section-promos.promo-count-4 .promo-position {
        width: 100%
    }

    .section-promos.promo-count-4 .promo-position .promo {
        border-right: none
    }
}

.promo-tile-iphone {
    background-size: 360px 200px;
    background-repeat: no-repeat;
    background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/iphone_large.jpg");
    height: 200px;
    background-position: center
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
    .promo-tile-iphone {
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/iphone_large_2x.jpg")
    }
}

@media only screen and (min-width: 1442px) {
    .promo-tile-iphone {
        background-size: 640px 200px;
        background-repeat: no-repeat;
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/iphone_xlarge.jpg")
    }
}

@media only screen and (min-width: 1442px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-width: 1442px) and (min-resolution: 1.5dppx), only screen and (min-width: 1442px) and (min-resolution: 144dpi) {
    .promo-tile-iphone {
        background-image: url("http://images/promos/iphone_xlarge_2x.jpg")
    }
}

@media only screen and (max-width: 1068px) {
    .promo-tile-iphone {
        background-size: 640px 200px;
        background-repeat: no-repeat;
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/iphone_medium.jpg")
    }
}

@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 1068px) and (min-resolution: 1.5dppx), only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
    .promo-tile-iphone {
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/iphone_medium_2x.jpg")
    }
}

@media only screen and (max-width: 735px) {
    .promo-tile-iphone {
        background-size: 736px 200px;
        background-repeat: no-repeat;
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/iphone_small.jpg")
    }
}

@media only screen and (max-width: 735px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 735px) and (min-resolution: 1.5dppx), only screen and (max-width: 735px) and (min-resolution: 144dpi) {
    .promo-tile-iphone {
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/iphone_small_2x.jpg")
    }
}

@media only screen and (min-width: 1442px) {
    .promo-tile-iphone {
        background-size: 640px 200px;
        background-repeat: no-repeat;
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/iphone_medium.jpg");
        height: 200px
    }
}

@media only screen and (min-width: 1442px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-width: 1442px) and (min-resolution: 1.5dppx), only screen and (min-width: 1442px) and (min-resolution: 144dpi) {
    .promo-tile-iphone {
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/iphone_medium_2x.jpg")
    }
}

@media only screen and (max-width: 1068px) {
    .promo-tile-iphone {
        height: 200px
    }
}

@media only screen and (max-width: 735px) {
    .promo-tile-iphone {
        height: 200px
    }
}

.promo-tile-macbook-pro {
    background-size: 360px 200px;
    background-repeat: no-repeat;
    background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/macbook_pro_large.jpg");
    height: 200px;
    background-position: center
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
    .promo-tile-macbook-pro {
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/macbook_pro_large_2x.jpg")
    }
}

@media only screen and (min-width: 1442px) {
    .promo-tile-macbook-pro {
        background-size: 640px 200px;
        background-repeat: no-repeat;
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/macbook_pro_xlarge.jpg")
    }
}

@media only screen and (min-width: 1442px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-width: 1442px) and (min-resolution: 1.5dppx), only screen and (min-width: 1442px) and (min-resolution: 144dpi) {
    .promo-tile-macbook-pro {
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/macbook_pro_xlarge_2x.jpg")
    }
}

@media only screen and (max-width: 1068px) {
    .promo-tile-macbook-pro {
        background-size: 640px 200px;
        background-repeat: no-repeat;
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/macbook_pro_medium.jpg")
    }
}

@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 1068px) and (min-resolution: 1.5dppx), only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
    .promo-tile-macbook-pro {
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/macbook_pro_medium_2x.jpg")
    }
}

@media only screen and (max-width: 735px) {
    .promo-tile-macbook-pro {
        background-size: 736px 200px;
        background-repeat: no-repeat;
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/macbook_pro_small.jpg")
    }
}

@media only screen and (max-width: 735px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 735px) and (min-resolution: 1.5dppx), only screen and (max-width: 735px) and (min-resolution: 144dpi) {
    .promo-tile-macbook-pro {
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/macbook_pro_small_2x.jpg")
    }
}

@media only screen and (min-width: 1442px) {
    .promo-tile-macbook-pro {
        background-size: 640px 200px;
        background-repeat: no-repeat;
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/macbook_pro_medium.jpg");
        height: 200px
    }
}

@media only screen and (min-width: 1442px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-width: 1442px) and (min-resolution: 1.5dppx), only screen and (min-width: 1442px) and (min-resolution: 144dpi) {
    .promo-tile-macbook-pro {
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/macbook_pro_medium_2x.jpg")
    }
}

@media only screen and (max-width: 1068px) {
    .promo-tile-macbook-pro {
        height: 200px
    }
}

@media only screen and (max-width: 735px) {
    .promo-tile-macbook-pro {
        height: 200px
    }
}

.promo-tile-supplier-responsibility {
    background-size: 360px 200px;
    background-repeat: no-repeat;
    background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/supplier_responsibility_large.jpg");
    height: 200px;
    background-position: center
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
    .promo-tile-supplier-responsibility {
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/supplier_responsibility_large_2x.jpg")
    }
}

@media only screen and (min-width: 1442px) {
    .promo-tile-supplier-responsibility {
        background-size: 640px 200px;
        background-repeat: no-repeat;
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/supplier_responsibility_xlarge.jpg")
    }
}

@media only screen and (min-width: 1442px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-width: 1442px) and (min-resolution: 1.5dppx), only screen and (min-width: 1442px) and (min-resolution: 144dpi) {
    .promo-tile-supplier-responsibility {
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/supplier_responsibility_xlarge_2x.jpg")
    }
}

@media only screen and (max-width: 1068px) {
    .promo-tile-supplier-responsibility {
        background-size: 640px 200px;
        background-repeat: no-repeat;
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/supplier_responsibility_medium.jpg")
    }
}

@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 1068px) and (min-resolution: 1.5dppx), only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
    .promo-tile-supplier-responsibility {
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/supplier_responsibility_medium_2x.jpg")
    }
}

@media only screen and (max-width: 735px) {
    .promo-tile-supplier-responsibility {
        background-size: 736px 200px;
        background-repeat: no-repeat;
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/supplier_responsibility_small.jpg")
    }
}

@media only screen and (max-width: 735px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 735px) and (min-resolution: 1.5dppx), only screen and (max-width: 735px) and (min-resolution: 144dpi) {
    .promo-tile-supplier-responsibility {
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/supplier_responsibility_small_2x.jpg")
    }
}

@media only screen and (min-width: 1442px) {
    .promo-tile-supplier-responsibility {
        background-size: 640px 200px;
        background-repeat: no-repeat;
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/supplier_responsibility_medium.jpg");
        height: 200px
    }
}

@media only screen and (min-width: 1442px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-width: 1442px) and (min-resolution: 1.5dppx), only screen and (min-width: 1442px) and (min-resolution: 144dpi) {
    .promo-tile-supplier-responsibility {
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/supplier_responsibility_medium_2x.jpg")
    }
}

@media only screen and (max-width: 1068px) {
    .promo-tile-supplier-responsibility {
        height: 200px
    }
}

@media only screen and (max-width: 735px) {
    .promo-tile-supplier-responsibility {
        height: 200px
    }
}

.promo-tile-clips {
    background-size: 360px 200px;
    background-repeat: no-repeat;
    background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/clips_large.jpg");
    height: 200px;
    background-position: center
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
    .promo-tile-clips {
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/clips_large_2x.jpg")
    }
}

@media only screen and (min-width: 1442px) {
    .promo-tile-clips {
        background-size: 640px 200px;
        background-repeat: no-repeat;
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/clips_xlarge.jpg")
    }
}

@media only screen and (min-width: 1442px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-width: 1442px) and (min-resolution: 1.5dppx), only screen and (min-width: 1442px) and (min-resolution: 144dpi) {
    .promo-tile-clips {
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/clips_xlarge_2x.jpg")
    }
}

@media only screen and (max-width: 1068px) {
    .promo-tile-clips {
        background-size: 640px 200px;
        background-repeat: no-repeat;
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/clips_medium.jpg")
    }
}

@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 1068px) and (min-resolution: 1.5dppx), only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
    .promo-tile-clips {
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/clips_medium_2x.jpg")
    }
}

@media only screen and (max-width: 735px) {
    .promo-tile-clips {
        background-size: 736px 200px;
        background-repeat: no-repeat;
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/clips_small.jpg")
    }
}

@media only screen and (max-width: 735px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 735px) and (min-resolution: 1.5dppx), only screen and (max-width: 735px) and (min-resolution: 144dpi) {
    .promo-tile-clips {
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/clips_small_2x.jpg")
    }
}

@media only screen and (min-width: 1442px) {
    .promo-tile-clips {
        background-size: 640px 200px;
        background-repeat: no-repeat;
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/clips_medium.jpg");
        height: 200px
    }
}

@media only screen and (min-width: 1442px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-width: 1442px) and (min-resolution: 1.5dppx), only screen and (min-width: 1442px) and (min-resolution: 144dpi) {
    .promo-tile-clips {
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/clips_medium_2x.jpg")
    }
}

@media only screen and (max-width: 1068px) {
    .promo-tile-clips {
        height: 200px
    }
}

@media only screen and (max-width: 735px) {
    .promo-tile-clips {
        height: 200px
    }
}

.promo-tile-wwdc17 {
    background-size: 360px 200px;
    background-repeat: no-repeat;
    background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/wwdc17_large.jpg");
    height: 200px;
    background-position: center
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
    .promo-tile-wwdc17 {
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/wwdc17_large_2x.jpg")
    }
}

@media only screen and (min-width: 1442px) {
    .promo-tile-wwdc17 {
        background-size: 640px 200px;
        background-repeat: no-repeat;
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/wwdc17_xlarge.jpg")
    }
}

@media only screen and (min-width: 1442px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-width: 1442px) and (min-resolution: 1.5dppx), only screen and (min-width: 1442px) and (min-resolution: 144dpi) {
    .promo-tile-wwdc17 {
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/wwdc17_xlarge_2x.jpg")
    }
}

@media only screen and (max-width: 1068px) {
    .promo-tile-wwdc17 {
        background-size: 640px 200px;
        background-repeat: no-repeat;
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/wwdc17_medium.jpg")
    }
}

@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 1068px) and (min-resolution: 1.5dppx), only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
    .promo-tile-wwdc17 {
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/wwdc17_medium_2x.jpg")
    }
}

@media only screen and (max-width: 735px) {
    .promo-tile-wwdc17 {
        background-size: 736px 200px;
        background-repeat: no-repeat;
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/wwdc17_small.jpg")
    }
}

@media only screen and (max-width: 735px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 735px) and (min-resolution: 1.5dppx), only screen and (max-width: 735px) and (min-resolution: 144dpi) {
    .promo-tile-wwdc17 {
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/wwdc17_small_2x.jpg")
    }
}

@media only screen and (min-width: 1442px) {
    .promo-tile-wwdc17 {
        background-size: 640px 200px;
        background-repeat: no-repeat;
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/wwdc17_medium.jpg");
        height: 200px
    }
}

@media only screen and (min-width: 1442px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-width: 1442px) and (min-resolution: 1.5dppx), only screen and (min-width: 1442px) and (min-resolution: 144dpi) {
    .promo-tile-wwdc17 {
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/wwdc17_medium_2x.jpg")
    }
}

@media only screen and (max-width: 1068px) {
    .promo-tile-wwdc17 {
        height: 200px
    }
}

@media only screen and (max-width: 735px) {
    .promo-tile-wwdc17 {
        height: 200px
    }
}

.promo-tile-accessories {
    background-size: 360px 200px;
    background-repeat: no-repeat;
    background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/accessories_large.jpg");
    height: 200px;
    background-position: center
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
    .promo-tile-accessories {
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/accessories_large_2x.jpg")
    }
}

@media only screen and (min-width: 1442px) {
    .promo-tile-accessories {
        background-size: 640px 200px;
        background-repeat: no-repeat;
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/accessories_xlarge.jpg")
    }
}

@media only screen and (min-width: 1442px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-width: 1442px) and (min-resolution: 1.5dppx), only screen and (min-width: 1442px) and (min-resolution: 144dpi) {
    .promo-tile-accessories {
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/accessories_xlarge_2x.jpg")
    }
}

@media only screen and (max-width: 1068px) {
    .promo-tile-accessories {
        background-size: 640px 200px;
        background-repeat: no-repeat;
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/accessories_medium.jpg")
    }
}

@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 1068px) and (min-resolution: 1.5dppx), only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
    .promo-tile-accessories {
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/accessories_medium_2x.jpg")
    }
}

@media only screen and (max-width: 735px) {
    .promo-tile-accessories {
        background-size: 736px 200px;
        background-repeat: no-repeat;
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/accessories_small.jpg")
    }
}

@media only screen and (max-width: 735px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 735px) and (min-resolution: 1.5dppx), only screen and (max-width: 735px) and (min-resolution: 144dpi) {
    .promo-tile-accessories {
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/accessories_small_2x.jpg")
    }
}

@media only screen and (min-width: 1442px) {
    .promo-tile-accessories {
        background-size: 640px 200px;
        background-repeat: no-repeat;
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/accessories_medium.jpg");
        height: 200px
    }
}

@media only screen and (min-width: 1442px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-width: 1442px) and (min-resolution: 1.5dppx), only screen and (min-width: 1442px) and (min-resolution: 144dpi) {
    .promo-tile-accessories {
        background-image: url("http://www.directv.com.ve/Shared/Includes/home/css/images/promos/accessories_medium_2x.jpg")
    }
}

@media only screen and (max-width: 1068px) {
    .promo-tile-accessories {
        height: 200px
    }
}

@media only screen and (max-width: 735px) {
    .promo-tile-accessories {
        height: 200px
    }
}

.nav-homepage .nav-arrow {
    background-color: rgba(51, 51, 51, .8); /*180, 180, 180, 0.25*/
    color: rgba(0, 0, 0, 0.44)
}

.nav-homepage .nav-arrow:hover {
    background-color: #00abe3;
    xbackground-color: rgb(156, 154, 156, 0.8);
    color: rgba(0, 0, 0, 0.6)
}

.nav-homepage .nav-arrow:active {
    xbackground-color: rgb(156, 154, 156, 0.8);
    xcolor: rgba(0, 0, 0, 0.8)
}

.nav-homepage .nav-arrow:focus {
    opacity: 1
}

.nav-homepage .nav-arrow:focus[data-focus-method="mouse"]:not(input):not(textarea):not(select):hover, .nav-homepage .nav-arrow:focus[data-focus-method="touch"]:not(input):not(textarea):not(select):hover {
    xbackground-color: rgb(156, 154, 156, 0.8);
    xcolor: rgba(0, 0, 0, 0.6)
}

.nav-homepage .nav-arrow:focus[data-focus-method="mouse"]:not(input):not(textarea):not(select):active, .nav-homepage .nav-arrow:focus[data-focus-method="touch"]:not(input):not(textarea):not(select):active {
    xbackground-color: rgb(156, 154, 156, 0.8);
    xcolor: rgba(0, 0, 0, 0.8)
}

.nav-homepage .nav-arrow:disabled, .nav-homepage .nav-arrow.disabled {
    xopacity: 0
}

html.touch .nav-homepage .nav-arrow:disabled, html.touch .nav-homepage .nav-arrow.disabled {
    xopacity: 0
}

html.no-touch .with-nav-onhover:hover .nav-homepage .nav-arrow {
    xopacity: 0
}

html.no-touch .with-nav-onhover .nav-homepage {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    /*height:100%;
    pointer-events: none;variacion no detecta data tracking*/
}

html.no-touch .with-nav-onhover .nav-homepage ul {
    position: absolute;
    height: 100%;
    top: 0;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

html.no-touch .with-nav-onhover .nav-homepage .nav-arrow-container {
    z-index: 3
}

html.no-touch .with-nav-onhover .nav-homepage .nav-arrow-container-previous {
    position: absolute;
    height: 100%;
    top: 0;
    /*width:50%;
    left:0; variacion no detecta data tracking*/
    left: 5%
}

html.no-touch .with-nav-onhover .nav-homepage .nav-arrow-container-next {
    position: absolute;
    height: 100%;
    top: 0;
    /*width:50%;
    left:0; variacion no detecta data tracking*/
    right: 5%;
}

html.no-touch .with-nav-onhover .nav-homepage .nav-arrow-container .nav-arrow {
    /*opacity: 0; variacion no detecta data tracking*/
    opacity: .5;
}

html.no-touch .with-nav-onhover .nav-homepage .nav-arrow-container:hover .nav-arrow {
    opacity: 1;
}

html.no-touch .with-nav-onhover .nav-homepage .nav-arrow-container:hover .nav-arrow:hover {
    opacity: 1
}

html.no-touch :not(.has-backing-link) .nav-arrow-container {
    cursor: default
}

html.no-touch .has-backing-link .nav-arrow-container {
    cursor: pointer
}

html.no-touch .finite-gallery.showing-first-slide .nav-arrow-container-previous {
    display: none;
    opacity: 0
}

html.no-touch .finite-gallery.showing-last-slide .nav-arrow-container-next {
    display: none;
    opacity: 0
}

html.touch .nav-homepage {
    display: none
}

.offer-gallery .main {
    position: relative;
    top: 0
}

.offer-gallery .gallery-container {
    position: relative;
    z-index: 1;
    xoverflow: hidden;
}

.block-details {
    padding-bottom: 0;
    display: flex;
    flex-wrap: wrap;
}

[class*="col-"] {
    float: left;
    box-sizing: border-box;
    box-shadow: inset -1px 0 0 0 #fff;
    padding: 0 .5%;

    display: flex;
    flex-wrap: wrap;
}

[class*="col-"] div {
    width: 100%;
}

[class*="col-"] div:last-of-type {
    align-self: flex-end;
}

.col-lg-4 {
    width: 25%;
    padding-bottom: 5%;
    xflex-basis: 25%;
}

.col-lg-4 h4 {
    font: 18px/22px 'DTV-DIN-MEDIUM';
    letter-spacing: -0.623px;
    padding-top: 35px;
    padding-bottom: 5%

}

.col-lg-4 p {
    font-size: 14px;
    line-height: 18px;
    padding-bottom: 10px
}

.col-lg-4 a {
    font-size: 14px;
    padding: 0;
    background: none;
}

.col-lg-4 img {
    width: 100%;
    vertical-align: middle;
    padding-bottom: 10%;
}

[class*="col-"]:last-of-type {
    box-shadow: none;
}

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

/*grilla módulos
@media (min-width: 1100px) {
	
	.col-lg-4 {
		width: 25%;
	}
}*/

@media only screen and (max-width: 1068px) {
    .offer-gallery.touch .gallery-container {
        max-height: 100%
    }
}

.offer-gallery .gallery {
    position: relative;
    z-index: 1;
    xoverflow: hidden;
    height: 100%
}

.offer-gallery .wrapper-gallery-slide {
    height: 100%
}

.offer-gallery .offer-item {
    display: block;
    position: absolute;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    height: 100%;
    color: #333;
    will-change: transform;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
}

.offer-gallery .offer-item-dark {
    color: #fff
}

.offer-gallery .offer-item-currentitem {
    z-index: 2;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.offer-gallery .offer-item-copy-wrapper {
    xposition: absolute va;
    z-index: 1000;
    xtext-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.offer-gallery .offer-item-image-element {
    xposition: absolute;
    z-index: 1;
    width: 100%;
    height: 100%
}

.offer-gallery .dashnav {
    position: absolute;
    z-index: 1000;
    bottom: 3.8%;
    width: 60%;
    left: 20%;
    text-align: center;
    line-height: 1
}

@media only screen and (max-width: 735px) {
    .offer-gallery .dashnav {
        x bottom: 10px va
    }
}

.offer-gallery .dashnav ul {
    display: inline-block
}

.offer-gallery .dashnav li {
    list-style: none;
    margin: 0 5px;
    width: 45px;
    height: 22px;
    float: left;
    position: relative
}

.offer-gallery .dashnav .dashnav-item {
    top: 0;
    left: 0;
    width: 45px;
    height: 2px;
    position: absolute;
    padding: 10px 0;
    opacity: 1;
    -webkit-transition: opacity 500ms ease;
    transition: opacity 500ms ease;
    box-sizing: content-box
}

.offer-gallery .dashnav .dashnav-item .dashnav-label {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
    clip-path: inset(0px 0px 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0
}

.offer-gallery .dashnav .dashnav-item:hover {
    opacity: 1;
    -webkit-transition: opacity 500ms ease;
    transition: opacity 500ms ease
}

.offer-gallery .dashnav .dashnav-item.current {
    opacity: 1;
    -webkit-transition: opacity 500ms ease;
    transition: opacity 500ms ease;
    cursor: default
}

.offer-gallery .dashnav .dashnav-item.current .progress-bar-nav {
    opacity: 1
}

.offer-gallery .dashnav .dashnav-dash {
    position: relative;
    z-index: 1;
    height: 2px;
    width: 100%;
    background-color: rgba(252, 252, 252, 1)
}

.offer-gallery .dashnav .progress-bar-nav {
    opacity: 0;
    position: absolute;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 45px;
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    height: 100%;
    background: #333
}

.is-autoplaying .offer-gallery .dashnav .progress-bar-nav {
    opacity: 1
}

.is-interacting .offer-gallery .dashnav .progress-bar-nav {
    -webkit-transition: opacity 500ms ease;
    transition: opacity 500ms ease
}

.no-js .nav, .no-js .dashnav, .no-enhanced-gallery .nav, .no-enhanced-gallery .dashnav {
    display: none
}

.no-js .offer-item, .no-enhanced-gallery .offer-item {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-top: 80px
}

@media only screen and (max-width: 1068px) {
    .no-js .offer-item, .no-enhanced-gallery .offer-item {
        padding-top: 70px
    }
}

@media only screen and (max-width: 735px) {
    .no-js .offer-item, .no-enhanced-gallery .offer-item {
        padding-top: 50px
    }
}

.no-js .offer-item-dark, .no-enhanced-gallery .offer-item-dark {
    color: #fff
}

.no-js .offer-item-copy-wrapper, .no-enhanced-gallery .offer-item-copy-wrapper {
    position: relative;
    z-index: 2;
    text-align: center
}

.no-js .homepage-headline, .no-enhanced-gallery .homepage-headline {
    margin-top: 0.3em
}

.no-js .offer-item-image-element, .no-enhanced-gallery .offer-item-image-element {
    position: relative;
    z-index: 1
}

.gallery-container .offer-item *:not(.backing-link) {
    pointer-events: none
}

/*.gallery-container .offer-item a:not(.backing-link) {
    pointer-events:all;
    position:relative;
    z-index:1;
	
	font: bold 16px/16px Arial;
    color: black;
    text-align: center;
    width: 100%;
    xtext-shadow: 1px 1px 1px #feb21a;
    padding: 10px 15px ; text-decoration: none; border-radius: 4px;        background: #d8d8d8; /* Old browsers */
/*background: -moz-linear-gradient(top, #d8d8d8 0%, #cacaca 51%, #c1c1c1 100%); /* FF3.6-15 */
/*background: -webkit-linear-gradient(top, #d8d8d8 0%,#cacaca 51%,#c1c1c1 100%); /* Chrome10-25,Safari5.1-6 */
/*background: linear-gradient(to bottom, #d8d8d8 0%,#cacaca 51%,#c1c1c1 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
/*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d8d8d8', endColorstr='#c1c1c1',GradientType=0 ); /* IE6-9 */
/*}*/
.gallery-container .offer-item .backing-link, .gallery-container .offer-item .backing-link:hover {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: auto;
    right: auto;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    pointer-events: all;
    width: 100%;
    height: 100%;
    text-decoration: none;
    opacity: 1;
    z-index: 2
}

html.ie .gallery-container .backing-link, html.ie .gallery-container .backing-link:hover {
    z-index: 5
}

.gallery-container .offer-item-content {
    xbackground: #fafafa;
    height: 100%;
    display: block;
    z-index: 1000;
    xtext-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none
}

.gallery-container .offer-item-copy-wrapper {
    /*  position:absolute;
     top:44px;
     height:100%;
     height: calc(100% - 50px);
     left:0;
     right:5%;
     padding: 0 20px;
     width: 100%;
     box-sizing: border-box; va*/
}

/*
.gallery-container #homepage-gallery-ipad .offer-item-image-element {
    /*top:-webkit-calc(44px + 23%);top:calc(44px + 23%);height:-webkit-calc(77% - 54px);height:calc(77% - 54px)
}
@media only screen and (max-width: 735px) {
    .gallery-container .offer-item-image-element {
        top:-webkit-calc(18% + 83px);
        top:calc(18% + 83px);
        height:-webkit-calc(82% - 93px);
        height:calc(82% - 93px)
    }
}*/

/*
dejar como ejemplo////
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
    .gallery-container #homepage-gallery-ipad .offer-item-image-element .gallery-image-ipad.availability {
        background-image:url("http://www.directv.com.ve/Shared/Includes/home/css/images/heroes/ipad_availability_large_2x.jpg")
    }
}


@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
    .no-enhanced-gallery .gallery-container #homepage-gallery-iphone-7 .gallery-image-iphone {
        background-image:url("http://www.directv.com.ve/Shared/Includes/home/css/images/stacked/iphone7_productred_large_2x.png")
    }
}
@media only screen and (max-width: 1068px) {
    .no-enhanced-gallery .gallery-container #homepage-gallery-iphone-7 .gallery-image-iphone {
        width:695px;
        height:520px;
        background-size:695px 520px;
        background-repeat:no-repeat;
        background-image:url("http://www.directv.com.ve/Shared/Includes/home/css/images/stacked/iphone7_productred_medium.png")
    }
}
@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 1068px) and (min-resolution: 1.5dppx), only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
    .no-enhanced-gallery .gallery-container #homepage-gallery-iphone-7 .gallery-image-iphone {
        background-image:url("http://www.directv.com.ve/Shared/Includes/home/css/images/stacked/iphone7_productred_medium_2x.png")
    }
}*/

.no-enhanced-gallery .gallery-container {
    padding-top: 44px
}

@media only screen and (max-width: 735px) {
    .no-enhanced-gallery .gallery-container {
        padding-top: 48px
    }
}

.no-enhanced-gallery .gallery-container .backing-link {
    z-index: 3 !important
}

.gallery-container {
    height: 400px;
}

.inner-container {
    max-width: 1020px;
    background: transparent;
    margin: 0 auto;
    position: relative;
    height: 100%;
    box-sizing: border-box;
}

.inner {
    xpadding: 0 5%;
}

@media screen and (max-width: 820px) {
    .modal__trigger {
        display: none;
    }

    [class*="col-"] {
        box-shadow: none;
        padding-right: 8vw;
        padding-left: 8vw;
    }

    .col-lg-4 {
        width: 50%;
        flex-basis: 50%;
    }
}

section .gallery-container a {
    background: none
}

.separate-button {
    position: fixed;
    bottom: 18%;
}

section span.separate-text, .separate-text {
    position: fixed;
    bottom: 5.8%;
    right: 20px;
    font-size: 10px;
}

.separate-text span {
    line-height: 14px;
    font-family: Arial;
    color: white;
}

.separate-logo {
    position: fixed;
    bottom: 40%;
}

.separate-logo img {
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.offer-item h1, .offer-item h2 {
    /* font: 36px/44px 'DTV-DIN';
        letter-spacing: -0.025em;
        color: #fff;
        max-width: 500px; va*/
}

.offer-item h2 {
    /*     font-size: 26px;
        line-height: 30px;
        padding: 0;  va*/
}

x.offer-item h1 {
    padding-bottom: 16px;
}

@media screen and (max-width: 600px) {
    xfooter .logo-icons {
        margin-top: 20px;
    }

    .gallery-container {
        height: 83.5vw;
    }

    .inner h2 {
        xdisplay: none;
    }

    .gallery-container .offer-item-copy-wrapper {
        top: 0;
    }

    .offer-item h1 {
        font-size: 7.1vw;
        font-weight: normal;
        padding-top: 4vw;
    }

    .offer-gallery .gallery-container {
        xmargin: 0 0 8vw;
    }

    .offer-gallery .dashnav {
        bottom: 2vw;
    }

    .offer-gallery .dashnav .dashnav-dash {
        background-color: rgb(216, 215, 215);
    }

    .offer-gallery .dashnav li {
        margin: 0 3px;
    }

    .offer-gallery .dashnav .dashnav-item, .offer-gallery .dashnav li, .offer-gallery .dashnav .progress-bar-nav {
        width: 10px;
    }

    .separate-text {
        bottom: 6vw;
        width: 100%;
        padding: 0 5vw;
        box-sizing: border-box;
        right: 0;
        left: 0;
        text-align: center;
    }

    .gallery-container .offer-item-copy-wrapper {
        xheight: 100%;
    }
}

@media screen and (min-width: 601px) {
    .separate-text {
        text-align: right;
        max-width: 33%;
    }
}

@media screen and (max-width: 699px) {
    .offer-item-copy-wrapper .separate-logo {
        display: none;
    }

    .hidden-md-down-slider {
        opacity: 0;
        transition: all .3s linear
    }
}

@media screen and (max-width: 1023px) {
    .offer-item h1 {
        max-width: 472px;
    }
}

@media screen and (max-width: 1100px) {
    html.no-touch .with-nav-onhover .nav-homepage {
        display: none;
    }

    @media screen and (max-width: 600px) {
        .gallery-image-watch img {
            width: calc(150vw)
        }

        .offer-item h1 {
            width: 100%;
            max-width: 100%;
        }
    }



    @media screen and (max-width: 600px) {
        .col-lg-4 {
            width: 100%;
            flex-basis: 100%;
        }

        .col-lg-4 h4 {
            /*padding-bottom: 10%;*/
        }
    }
    @media (max-width: 1023px) {
        .inner h2 {
            xdisplay: none;
        }
    }





    /*añadido slider*/
    article {
        max-width: 952px;
        width: 100%;
        padding: 0 15px 50px;
        margin: 0 auto;
        overflow: auto;
    }

    .gallery-container .offer-item-content, .gallery-container .offer-item *:not(.backing-link), {
        xpointer-events: auto;
    }

    .gallery-container .offer-item *:not(.backing-link) {
        xpointer-events: auto;
    }

    * {
        box-sizing: border-box;

        padding: 0;
        margin: 0;
    }

    .bg_entertainment h1, .bg_entertainment h2, .bg_entertainment .legal, .bg_entertainment .cintillo, .bg_entertainment .contenido-alterno {
        color: white;
    }

    .bg_pre-pos h1, .bg_pre-pos h2, .bg_pre-pos .legal, .bg_pre-pos .cintillo, .bg_pre-pos .contenido-alterno {
        color: white;
    }

    .bg_sports h1, .bg_sports h2, .bg_sports .legal, .bg_sports .cintillo, .bg_sports .contenido-alterno {
        color: #333;
    }

    .bg_self_care h1, .bg_self_care h2, .bg_self_care .legal, .bg_self_care .cintillo, .bg_self_care .contenido-alterno {
        color: #333;
    }

    h1 {
        font-family: 'DTV-DIN-MEDIUM', Arial;
        font-size: 36px;
        font-weight: normal;
        padding-top: 40px
    }

    h2 {
        font-family: 'DTV-DIN', Arial;
        font-size: 24px;
        font-weight: normal;
        padding-bottom: 5px;
    }

    .btn, .btn:hover {
        padding: 10px 20px;
        text-align: center;
        display: inline-block;
        background: orange;
        font-family: arial;
        border-radius: 4px;
        font-weight: bold;
        text-decoration: none;
        color: white;
        font-size: 18px;
    }

    .legal {
        font-family: DTV-DIN-CON;
        font-size: 9px;
    }

    .cintillo {
        font-family: Arial;
        font-size: 10px;
        display: table;
        padding: 10px 0 15px;
    }

    @media only screen and (min-width: 701px) {

        .cintillo {
            font-family: Arial;
            font-size: 12px;
        }

        .offer-item-copy-wrapper.elements_container .legal {
            line-height: 13px;
            right: 5%;
            max-width: 210px;
            text-align: right
        }

        .gallery-image-watch img {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            vertical-align: middle;
            width: auto;
            bottom: 0;
        }

        h1 {
            max-width: 390px;
            padding-top: 35px;
            line-height: 38px;
        }

        .inner-container {
            max-width: 980px;
            background: transparent;
            margin: 0 auto;
            position: relative;
            height: 100%;
            box-sizing: border-box;
            padding: 0 20px;
        }

        .offer-item-copy-wrapper.elements_container {
            z-index: 1000;
            xtext-align: center;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            min-width: 100%;
        }
    }

    .offer-item-copy-wrapper.elements_container h2 {
        max-width: 400px;
    }

    .offer-gallery .offer-item-image-element {
        position: absolute;
        z-index: 1;
        width: 100%;
        height: 100%;
        top: 0;
    }
}

.bg_pre-pos {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#005e9c+0,00acef+50,005e9c+100 */
    background: #005e9c; /* Old browsers */
    background: -moz-linear-gradient(left, #005e9c 0%, #00acef 50%, #005e9c 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #005e9c 0%, #00acef 50%, #005e9c 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #005e9c 0%, #00acef 50%, #005e9c 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#005e9c', endColorstr='#005e9c', GradientType=1); /* IE6-9 */
}

.bg_entertainment {
    background: #000010; /* Old browsers */
    background: -moz-linear-gradient(left, #000010 1%, #003665 50%, #000010 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #000010 1%, #003665 50%, #000010 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #000010 1%, #003665 50%, #000010 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000010', endColorstr='#000010', GradientType=1); /* IE6-9 */
}

.bg_sports {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#00acef+0,bfeafb+49,00acef+100 */
    background: #00acef; /* Old browsers */
    background: -moz-linear-gradient(left, #00acef 0%, #bfeafb 49%, #00acef 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #00acef 0%, #bfeafb 49%, #00acef 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #00acef 0%, #bfeafb 49%, #00acef 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00acef', endColorstr='#00acef', GradientType=1); /* IE6-9 */
}

.bg_self_care {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#e5e5e7+0,ffffff+49,e5e5e7+100 */
    background: #e5e5e7; /* Old browsers */
    background: -moz-linear-gradient(left, #e5e5e7 0%, #ffffff 49%, #e5e5e7 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #e5e5e7 0%, #ffffff 49%, #e5e5e7 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #e5e5e7 0%, #ffffff 49%, #e5e5e7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e5e5e7', endColorstr='#e5e5e7', GradientType=1); /* IE6-9 */
}

body {
    overflow-x: hidden;
}

@media only screen and (max-width: 600px) {

    .bg_pre-pos {
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#005e9c+0,00acef+50,005e9c+100 */
        background: #005e9c; /* Old browsers */
        background: -moz-linear-gradient(top, #005e9c 0%, #00acef 50%, #005e9c 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(top, #005e9c 0%, #00acef 50%, #005e9c 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to bottom, #005e9c 0%, #00acef 50%, #005e9c 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#005e9c', endColorstr='#005e9c', GradientType=0); /* IE6-9 */
    }

    .bg_entertainment {
        background: #000010; /* Old browsers */
        background: -moz-linear-gradient(top, #000010 1%, #003665 50%, #000010 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(top, #000010 1%, #003665 50%, #000010 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to bottom, #000010 1%, #003665 50%, #000010 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000010', endColorstr='#000010', GradientType=0); /* IE6-9 */
    }

    .bg_sports {
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#00acef+0,bfeafb+49,00acef+100 */
        background: #00acef; /* Old browsers */
        background: -moz-linear-gradient(top, #00acef 0%, #bfeafb 49%, #00acef 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(top, #00acef 0%, #bfeafb 49%, #00acef 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to bottom, #00acef 0%, #bfeafb 49%, #00acef 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00acef', endColorstr='#00acef', GradientType=0); /* IE6-9 */
    }

    .bg_self_care {
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#e5e5e7+0,ffffff+49,e5e5e7+100 */
        background: #e5e5e7; /* Old browsers */
        background: -moz-linear-gradient(top, #e5e5e7 0%, #ffffff 49%, #e5e5e7 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(top, #e5e5e7 0%, #ffffff 49%, #e5e5e7 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to bottom, #e5e5e7 0%, #ffffff 49%, #e5e5e7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e5e5e7', endColorstr='#e5e5e7', GradientType=0); /* IE6-9 */
    }

    .header {
        height: 50px;
        width: 100%;
        background: black;
    }

    .contenedor-texto {
        padding: 0 5vw
    }

    .elements_container {
        padding: 0 5vw
    }

    .contenido-alterno {
        padding-bottom: 15vw;
    }

    .legal {
        font-size: 2.3vw;
        line-height: 2.2vw;
    }

    .btn, .btn:hover {
        width: 100%;
        padding: 3vw 0;
        display: block;
        margin: 3vw 0 0;
        color: white;
        font-size: 4.1vw;
    }

    .slide img {
        width: 100vw;
        object-fit: cover;
        object-position: top center;
        height: 100%;
        min-height: 100% ;
        max-height: 100%;
        max-width: 100vw;
    }

    h1 {
        font-size: 7.1vw;
        padding-top: 4vw;
    }

    h2 {
        font-size: 5.32vw;
        padding-bottom: 2.5vw;
    }

    .cintillo {
        font-family: font-size: 2.3vw;
        padding: 3vw 0 0;
    }

}

.bg_self_care .btn {
    background: #333;
    color: white
}

/*add newhome css no clientes(update)*/
.container_plan {
    height: 350px;
    padding-top: 50px;
    position: relative;
    xmargin-left: -6%;
    xmargin-right: -6%;
}

 

[class^="ico-"]:before {
    font-family: 'DTV-icon-font';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 15px;
    color: #00abe3;
    position: relative;
    top: 2px;
}

.ico-right:before {
    content: "\e942";
}

.Bg-Color {
    background: #F2F2F2;
}

.hide-class {
    display: none;
}

.Bronce-HD {
    background: #D2794D;
}

.Plata-HD {
    background: #B5B5B5;
}

.Oro-HD {
    background: #C2A840;
}

.Oro-Nexus {
    background: #EFB600;
}

.Familia {
    background: #40C2AC;
}

.one-element {
    width: 238px;
}

#Tabs-Planes-Home {
    background: #F2F2F2;
    border-top: solid 1px #ececec;
}

#Tabs-Planes-Home section.internal-tabs ul {
    width: 340px;
    margin: 0 auto;
    display: block;
    border: 0;
    padding: 0;
    border-radius: 0;
}

#Tabs-Planes-Home section.internal-tabs ul li {
    width: 50%;
    text-align: center;
}

.container-control-plan a {
    font: 17px/17px 'DTV-DIN-BOLD';
    color: #626262;
    background: none;
    padding: 10px 40px;
    border-bottom: 1px solid #A4A4A4;
    position: relative
}

.container-control-plan a.active {
    color: #00abe3;
}

.container-control-plan a.active:after {
    content: "";
    position: absolute;
    border-bottom: 5px solid #00abe3;
    height: 5px;
    display: block;
    width: 100%;
    left: 0;
    bottom: -1px;
}

#Tabs-Planes-Home section.internal-tabs ul li a:after {
    content: '';
    display: block;
    background-color: #F2F2F2;
    height: 3px;
}

#Tabs-Planes-Home section.internal-tabs ul li a.active {
    color: #00AEEF;
    border-bottom: 4px solid #00AEEF;
}

#Tabs-Planes-Home section.internal-tabs ul li a.active:after {
    content: '';
    display: block;
    background-color: transparent;
    height: 0;
}

#Tabs-Planes-Home section.internal-tabs ul li a:hover {
}

.Planes-slick {
    width: 100%;
    text-align: center;
    display: table;
}

.Planes-slick .Box {
    display: inline-block;
    vertical-align: top;
}

.Planes-slick .Box a {
    background: none;
    padding: 0;
}

.Planes-slick .Box a:after {
    content: "";
    display: table;
    clear: both;
}

.Planes-slick .Box .Head, .Planes-slick .Box .Body {
    width: 95%;
    box-sizing: border-box;
}

.Planes-slick .Box .Head {
    font: 18px/16px 'DTV-DIN-BOLD';
    text-align: left;
    text-transform: uppercase;
    color: #FFF;
    border-radius: 6px 6px 0 0;
    padding: 15px 2px 13px 24px;
}

.Planes-slick .Box .Body { 
    padding: 20px 18px;
    text-align: left;
    border: 1px solid #E9E9E9;
    border-radius: 0 0 6px 6px;
    border-top: none;
}

.Planes-slick .Box .Body:after {
    content: "";
    display: table;
    clear: both;
}

.Planes-slick .Box .Body abbr {
    display: block;
}

.Planes-slick .Box .Body abbr.price {
    font: 14px/18px 'DTV-DIN-MEDIUM';
    color: #333;
    letter-spacing: -0.025em;
}

/*.Planes-slick .Box .Body abbr.price:before {
	font-size:20px;
	padding-right: 5px;
	content:'$';
}
.Planes-slick .Box .Body abbr.price:after {
	content:'por mes';
	padding-left: 5px;
	font: 14px/24px 'DTV-DIN-MEDIUM';
}*/
.Planes-slick .Box .Body abbr.price.prepago:after {
    content: 'Recarga 6 dÃ­as';
}

.Planes-slick .Box .Body abbr.canales {
    font: 14px/20px 'DTV-DIN-MEDIUM';
    color: #333;
    padding-bottom: 20px;
}

/*.Planes-slick .Box .Body abbr.canales:before  {
	content:'Canales:';
	padding-right:5px;
}*/
.Planes-slick .Box .Body ul {
    min-height: 130px;
}

.Planes-slick .Box .Body ul li {
    font: 12px/20px Arial;
    color: #333;
    width: 100%;
}

.Planes-slick .Box .link {
    font: bold 14px Arial;
    color: #00abe3;
}

a.CTA-mod-planes {
    margin: 0 auto;
    font: normal 16px/20px 'DTV-DIN-MEDIUM', Arial, Helvetica;
    text-align: center;
    display: block;
    text-decoration: none;
    width: 210px;
    padding: 10px 0;
    position: relative;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    color: #FFF;
    background: #00adee;
    transition: .3s linear;
}

a:hover.CTA-mod-planes {
    background: #0078ae;
    color: #FFF;
}

/* =Slick CSS - css
--------------------------------------- */

@media screen and (max-width: 1035px) {
    body .slick-prev, body .slick-next {
        display: none !important;
    }
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-loading .slick-track {
    visibility: hidden;
}

/***********************************************ie8*/
.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    zoom: 1;
    margin: 0 auto;
}

.slick-track:before, .slick-track:after {
    content: "";
    display: table;
}

.slick-track:after {
    clear: both;
}

/*********************************************************************************/

.slick-slide {
    float: left;
    min-height: 1px;
    display: none;
    position: relative
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

/* Arrows */
.slick-prev, .slick-next {
    display: block;
    width: 30px;
    height: 35px;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    padding: 0;
    border: none;
    outline: none;
    position: absolute;
    top: 40px;
}

.slick-prev {
    background: url('../../../GrillaResponsive/img/img-arrow-slider-clientes.png') no-repeat scroll 0 0 transparent;
    left: -30px
}

.slick-next {
    background: url('../../../GrillaResponsive/img/img-arrow-slider-clientes.png') no-repeat scroll -240px 0 transparent;
    right: -30px;
}

.slick-prev.slick-disabled, .slick-prev.slick-disabled:hover {
    background-position: 0 0;
}

.slick-next.slick-disabled, .slick-next.slick-disabled:hover {
    background-position: -239px 0;
}

.slick-prev:hover {
    background-position: 0px -67px;
}

.slick-next:hover {
    background-position: -239px -66px;
}

.slick-disabled {
    opacity: 0.25;
}

/* Dots */
.slick-dots {
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    width: 100%;
    margin: 20px 0 0;
}

.slick-dots li {
    text-indent: -999px;
    position: relative;
    display: inline-block;
    padding: 9px;
    width: 0;
    height: 0;
    margin: 0 1px;
    cursor: pointer;
    float: none;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    border-radius: 9px;
}

.slick-dots li button {
    background: #C5C5C5; /* width: 9px; height: 9px; */
    display: block;
    outline: none;
    line-height: 0;
    font-size: 0;
    padding: 4px;
    cursor: pointer;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    border: none;
    position: absolute;
    top: 5px;
    left: 4px;
}

.slick-dots li.slick-active button {
    background-color: #00abe3;
    /*height: 10px;
    width: 10px;
    top: 4px;*/
}

/* Section Article controles particulares:
----------------------------------------------- */
section.Modulo-Planes-A article {
    padding: 50px 0;
}

@media screen and (max-width: 981px) and (min-width: 480px) {
    section.Modulo-Planes-A article {
        margin-top: 10px;
    }

    section.Modulo-Planes-B article, section.Modulo-Planes-B2 article {
        padding: 0 3%;
    }

    section.Modulo-Planes-C article {
        padding: 50px 3%;
    }

}

@media screen and (max-width: 869px) {
    a.CTA-mod-planes {
        display: none
    }
}

@media screen and (max-width: 850px) {
    section.Modulo-Planes-B2 article {
        padding: 0 3% 41px;
    }
}

@media screen and (max-width: 479px) {
    section.Modulo-Planes-A article {
        padding: 40px 0 0;
        margin-top: 10px;
    }

    section.Modulo-Planes-B article {
        width: 100%;
        padding: 30px 0 0;
    }

    section.Modulo-Planes-B2 article {
        padding: 30px 3% 41px;
    }

    section.Modulo-Planes-C article {
        padding: 30px 3%;
    }

    #Tabs-Planes-Home section.internal-tabs ul {
        width: 98%;
    }
}

.container-btn {
    text-align: center;
    margin-top: -10px;
    padding-bottom: 50px;
}