/* START TEXT SECTION */


@font-face {
    font-family: gotham-bold;
    src: url(../fonts/Gotham-Bold.otf);
}

@font-face {
    font-family: gotham-medium;
    src: url(../fonts/Gotham-Medium.otf);
}

@font-face {
    font-family: gotham-book;
    src: url(../fonts/Gotham-Book.otf);
}

@font-face {
    font-family: gotham-book-italic;
    src: url(../fonts/Gotham-BookItalic.otf);
}

@font-face {
    font-family: gotham-light;
    src: url(../fonts/Gotham-Light.otf);
}

@font-face {
    font-family: gotham-xlight;
    src: url(../fonts/Gotham-XLight.otf);
}

h1 {
    color: #252627;
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
    font-size: 48px;
    -epub-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    -webkit-hyphens: none;
    -o-hyphens: none;
    hyphens: none;
    margin-bottom: 34px;
}

.h1_o {
    font-size: 60px;
}

.h1_1 {
    font-size: 50px;
}

h2 {
    color: #252627;
    font-family: 'gotham-light', Helvetica, Arial, sans-serif;
    font-size: 34px;
    -epub-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    -webkit-hyphens: none;
    -o-hyphens: none;
    hyphens: none;
    margin-bottom: 15px;
}

h3 {
    color: #252627;
    font-family: 'gotham-medium', Helvetica, Arial, sans-serif;
    font-size: 22px;
    -epub-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    -webkit-hyphens: none;
    -o-hyphens: none;
    hyphens: none;
    margin-bottom: 34px;
}

h4 {
    color: #252627;
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
    font-size: 16px;
    -epub-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    -webkit-hyphens: none;
    -o-hyphens: none;
    hyphens: none;
    margin-bottom: 12px;
}

h5 {
    color: #252627;
    font-family: 'gotham-medium', Helvetica, Arial, sans-serif;
    font-size: 14px;
    -epub-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    -webkit-hyphens: none;
    -o-hyphens: none;
    hyphens: none;
    margin-bottom: 18px;
}

h6 {
    color: #9b9b9b;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 12px;
    -epub-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    -webkit-hyphens: none;
    -o-hyphens: none;
    hyphens: none;
    margin-bottom: 16px;
}

p {
    color: #444444;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 15px;
    -epub-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    -webkit-hyphens: none;
    -o-hyphens: none;
    hyphens: none;
}

ol > li,
ul > li {
    color: #444444;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 15px;
    -epub-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    -webkit-hyphens: none;
    -o-hyphens: none;
    hyphens: none;
}

.text-white {
    color: #ffffff;
}

.font-medium {
    font-family: 'gotham-medium', Helvetica, Arial, sans-serif;
}

.font-light {
    font-family: 'gotham-light', Helvetica, Arial, sans-serif;
}

.font-book {
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
}

.font-book-bold {
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
}

/* END TEXT SECTION */

/* START UTILS SECTION */
.noMargin {
    margin: 0;
}

.noPadding {
    padding: 0;
}

.noPaddingLeft {
    padding-left: 0;
}

.noPaddingRight {
    padding-right: 0;
}

.element-center {
    margin: 0 auto;
    display: table;
}

.noPaddingBottom {
    padding-bottom: 0 !important;
}

.noPaddingTop {
    padding-top: 0 !important;
}

.borderLeft {
    border-left: 1px solid;
}

.borderRight {
    border-right: 1px solid;
}

.borderLeftRight {
    border-left: 1px solid;
    border-right: 1px solid;
}

.borderColorWhite {
    border-color: #ffffff;
}

.borderColorGray {
    border-color: #d8d8d8;
}

.initialSpacing {
    height: 108px;
}

.hypens-auto {
    -epub-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    -o-hyphens: auto;
    hyphens: auto;
}

.hypens-none {
    -epub-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    -webkit-hyphens: none;
    -o-hyphens: none;
    hyphens: none;
}

/* END UTILS SECTION */

/* START BUTTONS SECTION */
.buttonClass1,
.buttonClass1:focus,
.buttonClass1:hover {
    background-color: #252627;
    border: 3px solid #252627;
    border-radius: 3px;
    color: #07fb9b;
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
    font-size: 14px;
    outline: 0;
    padding: 11px 20px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease-out;
}

.buttonClass1:hover {
    background-color: #07fb9b;
    border: 3px solid #07fb9b;
    color: #252627;
    transition: all 0.3s ease-in;
}

.buttonClass2,
.buttonClass2:focus,
.buttonClass2:hover {
    background-color: transparent;
    border: 3px solid #ffffff;
    border-radius: 3px;
    color: #ffffff;
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
    font-size: 14px;
    outline: 0;
    padding: 14px 20px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease-out;
}

.buttonClass2:hover {
    background-color: #ffffff;
    color: #252627;
    transition: all 0.3s ease-in;
}

.buttonClass3,
.buttonClass3:focus,
.buttonClass3:hover {
    background-color: #07fb9b;
    border: 3px solid #07fb9b;
    border-radius: 3px;
    color: #252627;
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
    font-size: 14px;
    outline: 0;
    padding: 11px 20px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease-out;
}

.buttonClass3:hover {
    background-color: #252627;
    border: 3px solid #252627;
    color: #07fb9b;
    transition: all 0.3s ease-in;
}

.buttonClass4,
.buttonClass4:focus,
.buttonClass4:hover {
    background-color: #ffffff;
    border: 3px solid #252627;
    border-radius: 3px;
    color: #252627;
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
    font-size: 14px;
    outline: 0;
    padding: 11px 20px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease-out;
}

.buttonClass4:hover {
    background-color: #252627;
    color: #ffffff;
    transition: all 0.3s ease-in;
}

.buttonClass5,
.buttonClass5:focus,
.buttonClass5:hover {
    background-color: #ffffff;
    border: 3px solid #000000;
    border-radius: 3px;
    color: #252627;
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
    font-size: 14px;
    outline: 0;
    padding: 11px 20px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease-out;
}

.buttonClass5:hover {
    background-color: #ffffff;
    border: 3px solid #07fb9b;
    color: #07fb9b;
    transition: all 0.3s ease-in;
}

.buttonClass6,
.buttonClass6:focus,
.buttonClass6:hover {
    display: inline-block;
    background-color: #ffffff;
    border: 3px solid #ffffff;
    border-radius: 3px;
    color: #000000;
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
    font-size: 14px;
    outline: 0;
    padding: 11px 20px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease-out;
}

.buttonClass6:hover {
    border: 3px solid #000000;
    background-color: #000000;
    color: #ffffff;
    transition: all 0.3s ease-in;
}

.buttonClass7,
.buttonClass7:focus,
.buttonClass7:hover {
    display: inline-block;
    background-color: transparent;
    border: 3px solid #ffffff;
    border-radius: 3px;
    color: #ffffff;
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
    font-size: 14px;
    outline: 0;
    padding: 11px 20px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease-out;
}

.buttonClass7:hover {
    background-color: #ffffff;
    color: #000000;
    transition: all 0.3s ease-in;
}

.buttonClass8,
.buttonClass8:focus,
.buttonClass8:hover {
    background-color: #ff216c;
    border: 3px solid #ff216c;
    border-radius: 3px;
    color: #ffffff;
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
    font-size: 14px;
    outline: 0;
    padding: 11px 20px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease-out;
}

.buttonClass8:hover {
    background-color: #ffffff;
    color: #ff216c;
    transition: all 0.3s ease-in;
}

/* END BUTTONS SECTION */

/* START RESPONSIVE MENU SECTION */
.navbar-button {
    display: none;
    margin-top: 1px;
    padding: 25px;
    position: relative;
    float: right;
}

.navbar-button:hover {
    background-color: #DDDDDD;
}

.hidde-when-loading {
    display: none;
}

.icon-bar {
    background-color: #888888;
    border-radius: 1px;
    display: block;
    height: 2px;
    margin-top: 4px;
    width: 22px;
}

/* END RESPONSIVE MENU SECTION */

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

body {
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-text-stroke: 0 white !important;
    -moz-osx-font-smoothing: grayscale !important;
    font-smooth: always !important;
    font-smoothing: antialiased !important;
    -moz-font-smoothing: antialiased !important;
    text-rendering: optimizeLegibility;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -epub-hyphens: auto;
    hyphens: auto;
    font-family: 'Ubuntu', sans-serif;
    position: relative;
    z-index: 0;
    padding-right: 0 !important;
}

.globalWrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-height: 100vh;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -ms-box-direction: normal;
    -o-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -o-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.mainBodyFlex {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -ms-box-direction: normal;
    -o-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -o-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-box-flex: 1;
    -o-box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    -o-flex: 1;
    flex: 1;
}

.contentFlex {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-box-flex: 1;
    -o-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.mapa {
    width: 100%;
    height: 450px
}

.mainBody {
    background-color: #ffffff;
    position: relative;
    z-index: 2;
}

.modal-body {
    padding-top: 3px;
}

.close,
.close:hover {
    opacity: 1;
}

.modal-open {
    overflow: auto;
}

/* START HEADER SECTION */
.masterHead {
    position: fixed !important;
    right: 0;
    left: 0;
    top: 0 !important;
    width: 100%;
    transition: transform 0.4s ease, background-color 1s !important;
    z-index: 1000;
    min-height: 108px;
}

.subHeader {
    background-color: rgba(0, 0, 0, 0.97);
    min-height: 38px;
}

.subHeader:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}

.subHeaderContent {
    float: right;
    padding: 8px 0 8px 0;
    width: 100%;
}

.subheader-logo-link {
    float: left;
    padding: 0;
}

.backofficeLoginContainer {
    color: #B3B3B3;
    float: left;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    padding-right: 25px;
}

.backofficeLoginContainer > a,
.backofficeLoginContainer > a:focus,
.backofficeLoginContainer > a:hover {
    color: #B3B3B3;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    text-decoration: none;
    transition: all 0.3s ease-in;
    font-size: 11px;
}

.backofficeLoginContainer > a:hover {
    color: #ff216c;
}

.subHeaderContent > nav {
    float: left;
}

.subHeaderContent > nav > ul {
    list-style: outside none none;
    margin-bottom: 0;
    padding-left: 0;
    display: inline-block;
}

.subHeaderContent > nav > ul > li {
    display: inline-block;
    padding: 0 14px;
}

.subHeaderContent > nav > ul > li > a,
.subHeaderContent > nav > ul > li > a:hover {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease-out;
}

.subHeaderContent > nav > ul > li:first-child > a {
    padding-left: 20px;
}

.subHeaderContent > nav > ul > li > a:hover {
    color: #ff216c;
    transition: all 0.3s ease-in;
}

.headerRightContainer {
    float: right;
}

.headerRightContainer > div:first-child {
    float: left;
    padding-right: 15px;
}

.subHeaderContent > .headerRightContainer > nav {
    display: inline-block;
    float: left;
}

.subHeaderContent > .headerRightContainer > nav > ul {
    list-style: outside none none;
    margin-bottom: 0;
    padding-right: 0;
}

/*.subHeaderContent > .headerRightContainer > nav > ul > li:last-child {*/
    /*padding-right: 40px;*/
/*}*/

.subHeaderContent > .headerRightContainer > nav > ul > li {
    display: inline-block;
    padding: 0 14px;
}

.subHeaderContent > .headerRightContainer > nav > ul > li > a,
.subHeaderContent > .headerRightContainer > nav > ul > li > a:hover {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease-out;
}

.subHeaderContent > .headerRightContainer > nav > ul > li > a:hover {
    color: #ff216c;
    transition: all 0.3s ease-in;
}

.headerIconsContainer {
    float: right;
    margin-left: 20px;
}

.headerIconsContainer > a,
.headerIconsContainer > a:focus,
.headerIconsContainer > a:hover {
    color: #B3B3B3;
    font-size: 17px;
    padding: 0 4px 0 4px;
    text-decoration: none;
    transition: all 0.3s ease-out;
}

.headerIconsContainer > a:hover {
    opacity: 0.6;
    transition: all 0.3s ease-in;
}

.headerIconsContainer > a:first-child {
    padding-left: 0;
}

.headerIconsContainer > a:last-child {
    padding-right: 0;
}

.bodyHeader {
    background-color: rgba(249, 249, 249, 0.9);
    height: 70px;
    box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.3)
}

.logoHeaderLink {
    float: left;
    padding: 13px 0;
    position: absolute;
    z-index: 11;
}

.logoHeader {
    max-height: 40px;
}

.logoHeaderNewRelease {
    max-height: 29px;
}

.logoModalContainer {
    float: left;
    padding-top: 11px;
    padding-bottom: 16px;
}

.logoModal {
    max-height: 60px;
}

.nav {
    float: right;
}

.nav > li {
    display: inline-block;
}

.nav > li > a, .nav > li > a:hover, .nav > li > a:focus {
    background-color: transparent;
    color: #444444;
    font-family: 'gotham-medium', Helvetica, Arial, sans-serif;
    font-size: 15px;
    padding: 22.5px 22.5px;
    transition: opacity 0.3s ease-out;
}

.nav > li > a:hover {
    opacity: 0.5;
    transition: opacity 0.3s ease-in;
}

.navActive {
    color: #ff216c;
}

.dropdown > ul {
    display: block;
    max-height: 0;
    overflow: hidden;
    margin-left: 0;
    left: 6%;
    transition: max-height 0.5s ease-out;
    -moz-transition: max-height 0.5s ease-out;
    -webkit-transition: max-height 0.5s ease-out;
    -ms-transition: max-height 0.5s ease-out;
    -o-transition: max-height 0.5s ease-out;
    box-shadow: 0 13px 12px rgba(0, 0, 0, .175);
}

.dropdown:hover > ul {
    display: block;
    visibility: visible;
    opacity: 1;
    max-height: 330px;
    transition: max-height 0.2s ease-in;
    -moz-transition: max-height 0.2s ease-in;
    -webkit-transition: max-height 0.2s ease-in;
    -ms-transition: max-height 0.2s ease-in;
    -o-transition: max-height 0.2s ease-in;
}

.dropdown-menu {
    background-color: rgba(68, 68, 68, 0.9);
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    top: 70px;
}

.subHeader .dropdown-menu {
    top: 30px;
}

.dropdown-menu > li > a,
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    color: #B3B3B3;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    padding: 6px 15px;
    background-color: transparent;
    transition: opacity 0.3s ease-in;
}

.dropdown-menu > li > a:hover {
    opacity: 0.5;
    transition: opacity 0.3s ease-out;
}

.dropdown-menu > li:first-child > a,
.dropdown-menu > li:first-child > a:hover,
.dropdown-menu > li:first-child > a:focus {
    padding: 9px 15px 6px 15px;
}

.dropdown-menu > li:last-child > a,
.dropdown-menu > li:last-child > a:hover,
.dropdown-menu > li:last-child > a:focus {
    padding: 6px 15px 9px 15px;
}

.body-header-menu {
    float: right;
}

.body-header-menu li {
    display: inline-block;
    padding: 24.5px 20px;
}

.body-header-menu li a {
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #000000;
    transition: all 0.3s;
    font-weight: 600;
}

.body-header-menu li a:hover,
.body-header-menu li a:active {
    color: #ff216c;
    text-decoration: none;
}

.navMega {
    width: 864px;
    position: absolute;
    left: -493px !important;
    top: 70px;
    padding: 0;
    margin: 0;
}

.navMega > li > ul {
    padding: 0;
    margin: 0;
}

.navMega > li {
    list-style: none;
    overflow: hidden;
}

.navMega > li:first-child {
    background-color: rgba(0, 0, 0, 0.9);
}

.navMega > li:last-child {
    background-color: rgba(0, 0, 0, 0.8);
}

.navMega > li > ul > li:first-child {
}

.navMega > li > ul > li {
    padding: 0 30px 0 44px;
    margin: 42px 0 40px;
    float: left;
    border-right: 1px solid #4d4d4d;
    min-height: 181px;
    list-style: none;
}

.navMega > li > ul > li:nth-child(3) {
    padding: 0 15px 0 24px;
    margin: 42px 0 40px;
    border-right: none;
}

.navMega > li > ul > li > ul {
    padding: 0;
    margin: 0;
}

.navMega > li > ul > li > ul > li {
    list-style: none;
}

.navMega > li > ul > li > ul > li > a,
.navMega > li > ul > li > ul > li > a:focus,
.navMega > li > ul > li > ul > li > a:hover {
    color: #ffffff;
    font-size: 14px;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-weight: 400;
    text-decoration: none;
    transition: opacity 0.3s ease-in;
    padding-left: 13px;
    padding-top: 6px;
    display: block;
}

.navMega > li > ul > li:nth-child(3) > ul > li > a:first-child,
.navMega > li > ul > li:nth-child(3) > ul > li > a:first-child:focus,
.navMega > li > ul > li:nth-child(3) > ul > li > a:first-child:hover {
    padding-top: 18px;
}

.navMega > li > ul > li > ul > li > a:hover {
    opacity: 0.5;
    transition: opacity 0.3s ease-out;
}

.navTitle {
    color: #ffffff;
    font-size: 16px;
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
    font-weight: 700;
}

.navSubTitle {
    color: #05fb9b;
    font-size: 13px;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-weight: 400;
    padding-top: 19px;
}

.navMegaBot {
    min-height: 35px !important;

}

.navMegaBot > a {
    float: right;
    padding: 10px 29px 7px;
}

.navMegaBot > a > i,
.navMegaBot > a > span {
    float: left;
}

.navMegaBot > a > i {
    color: #05fb9b;
}

.navMegaBot > a > span {
    color: #ffffff;
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
    font-size: 12px;
    padding: 0 3px 0 10px;
}

.navMegaBot > a > div {
    float: left;
    color: #05fb9b;
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
    font-size: 12px;
}

.mm-listview {
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
}

.mm-title {
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    text-align: left;
}

.mm-li-title {
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    text-align: left;
    color: #000000 !important;
}

.mm-menu .mm-listview > li .mm-next::after,
.mm-menu .mm-listview > li .mm-arrow::after {
    border-color: rgba(52, 204, 254, 1);
}

.mm-menu .mm-navbar .mm-btn:before,
.mm-menu .mm-navbar .mm-btn:after {
    border-color: rgba(52, 204, 254, 1);
}

/* END HEADER SECTION */

/* START LANGUAGE SELECTOR SECTION */
.languageTabletContainer {
    display: none;
}

.languageTablet {
    height: auto;
    margin: 0;
    padding: 0;
}

.languageTablet > li {
    display: inline-block;
}

.languageTablet > li:first-child::before {
    content: '';
    position: absolute;
}

.languageTablet > li::before {
    content: '|';
    padding-left: 7px;
    color: #B3B3B3;
}

.languageTablet > li > a,
.languageTablet > li > a:hover,
.languageTablet > li > a:focus {
    background-color: transparent;
    color: #B3B3B3;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 12px;
    padding: 11px 6px 11px 12px;
    transition: color 0.3s ease-out;
    text-decoration: none;
}

.languageContainer {
    float: right;
    padding-right: 20px;
    margin-left: 20px;
}

.language {
    height: auto;
    margin: 0;
    padding: 0;
}

.language > li {
    display: inline-block;
}

.language > li > a,
.language > li > a:hover,
.language > li > a:focus {
    background-color: transparent;
    color: #B3B3B3;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 12px;
    padding: 11px 6px 11px 12px;
    transition: color 0.3s ease-out;
    text-decoration: none;
}

.language > li > a:after {
    color: #B3B3B3;
    content: "\f107";
    font-family: 'FontAwesome';
    padding-left: 4px;
}

.language > li > a:focus {
    transition: color 0.3s ease-in;
}

.lang-dropdown {
    background-color: rgba(68, 68, 68, 0.9);
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    top: 30px;
    min-width: 48px;
    left: -2px !important;
    box-shadow: none;
}

.lang-dropdown > li > a,
.lang-dropdown > li > a:hover,
.lang-dropdown > li > a:focus {
    color: #B3B3B3;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    padding: 6px 14px;
    background-color: transparent;
    transition: opacity 0.3s ease-in;
}

.lang-dropdown > li > a:hover {
    opacity: 0.5;
    transition: opacity 0.3s ease-out;
}

.lang-dropdown > li:first-child > a,
.lang-dropdown > li:first-child > a:hover,
.lang-dropdown > li:first-child > a:focus {
    padding: 6px 17px;
}

.lang-dropdown > li:last-child > a,
.lang-dropdown > li:last-child > a:hover,
.lang-dropdown > li:last-child > a:focus {
    padding: 6px 17px;
}

.languageContainerFooter {
    float: right;
    padding-right: 0;
}

.languageContainerFooter > .language > li > a,
.languageContainerFooter > .language > li > a:hover,
.languageContainerFooter > .language > li > a:focus {
    color: black;
}

.languageContainerFooter > .language > li > a::after {
    color: black;
}

.languageContainerFooter > .language > .dropdown > .lang-dropdown > li > a,
.languageContainerFooter > .language > .dropdown > .lang-dropdown > li > a:hover,
.languageContainerFooter > .language > .dropdown > .lang-dropdown > li > a:focus {
    transition: all 0.3s ease-in;
}

.languageContainerFooter > .language > .dropdown > .lang-dropdown > li:last-child > a,
.languageContainerFooter > .language > .dropdown > .lang-dropdown > li:last-child > a:hover,
.languageContainerFooter > .language > .dropdown > .lang-dropdown > li:last-child > a:focus {
    color: black;
}

.languageContainerFooter > .language > .dropdown:hover > .lang-dropdown > li > a:hover {
    color: #444444;
}

.languageTabletContainerFooter {
    float: right;
    padding-right: 0;
}

.languageContainerFooter > ul > li > ul {
    background-color: transparent;
}

/* END LANGUAGE SELECTOR SECTION */

/* START HOMEINTRO SECTION */
.homeIntro {
    padding: 108px 0 0 0;
}

.homeSlide1,
.homeSlide2,
.homeSlide3,
.homeSlide4 {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 0 35px;
}

.homeSlide1 img,
.homeSlide2 img,
.homeSlide3 img,
.homeSlide4 img {
    width: 100%
}

.homeSlide1 {
    background-image: url("../img/fluendo/home/slider/slider1-background.jpg");
}

.homeSlide2 {
    background-image: url("../img/fluendo/home/slider/slider2-background.jpg");
}

.homeSlide3 {
    background-image: url("../img/fluendo/home/slider/slider3-background.jpg");
}

.homeSlide4 {
    background-image: url("../img/fluendo/home/slider/slider4-background.jpg");
}

.sliderPrevIcon,
.sliderNextIcon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: inline-block;
    color: #fff;
    opacity: .6;
}

.sliderPrevIcon {
    left: 20px;
}

.sliderNextIcon {
    right: 20px;
}

.sliderPrevIcon:hover,
.sliderNextIcon:hover {
    opacity: 1;
    text-decoration: none;
}

.homeIntroContainer {
    display: table;
    margin: 0 auto;
    max-width: 640px;
}

.homeIntroContainer > h1 {
    margin-bottom: 0;
}

.homeIntroContainer > h1,
.homeIntroContainer > h2 {
    color: #ffffff;
    text-align: center;
}

.homeIntroContainer > a {
    display: table;
    margin: 32px auto 0 auto;
}

/* END HOMEINTRO SECTION */

/* START HOMEPRODUCTS SECTION */
.homeProducts {
    padding: 55px 0 35px;
}

.homeProductsText {
    margin: 0 0 50px;
    text-align: center;
}


.homeProductsText h1 {
    margin-bottom: 20px;
}


.homeProductsTextSub {
    font-family: "gotham-book", "helvetica", helvetica, arial, sans-serif;
    font-size: 24px;
    color: #9b9b9b;
    margin: 0 auto;
    max-width: 800px;
}

.homeProductsContainer {
    display: table;
    margin: 0 auto;
    max-width: 320px;
}

.homeProductsContainer h3 {
    text-align: center;
}

.img-homeProductsLogo {
    display: table;
    margin: 0 auto;
    max-width: 240px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.img-homeProducts {
    display: table;
    margin: 65px auto 58px auto;
    max-height: 186px;
}

.homeProductsContainer > p {
    text-align: center;
}

.homeProductsContainer > a,
.homeProductsContainer > a:focus,
.homeProductsContainer > a:hover {
    display: table;
    margin: 34px auto 0 auto;
}

/* END HOMEPRODUCTS SECTION */

/* START LATESTNEWS SECTION */
.latestNews {
    background-color: #F1F1F1;
    padding: 40px 0 65px;
}

.latestNews p a {
    color: #ff216c
}

.img-latestNews {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: 50% 50%;
}

.latestNewsTitleContainer > h3 {
    float: left;
}

.latestNewsNavigationButtons {
    padding-top: 12px;
    float: right;
}

.latestNewsNavigationButtons > div:first-child {
    padding-right: 12px;
}

.latestNewsNavigationButtons > div:last-child {
    padding-left: 12px;
}

.latestNewsNavigationButtons > div,
.latestNewsNavigationButtons > a {
    display: inline-block;
}

.latestNewsNavigationButtons > a,
.latestNewsNavigationButtons > a:focus,
.latestNewsNavigationButtons > a:hover {
    text-decoration: none;
    float: left;
    padding-top: 14px;
}

.latestNewsNavigationButtons > a > h4 {
    margin: 0;
}

.navigationButton {
    font-size: 28px;
    float: left;
}

.latestNewsHeader > a > h4 {
    padding-top: 14px;
}

.latestNewsHeader > h6 {
    margin: 0;
    padding: 0 0 24px;
}

.latestNewsMoreLink,
.latestNewsMoreLink:focus,
.latestNewsMoreLink:hover {
    color: #ff216c;
    text-decoration: none;
}

/* END LATESTNEWS SECTION */

/* START MILESTONES SECTION */
.milestones {
    background: url('../img/Milestones/background-milestones.jpg');
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
}

.milestonesBackground {
    background: url('../img/Milestones/tint-color.png');
    background-position: center center;
    background-size: cover;
    padding-top: 152px;
}

.milestonesTitleContainer > h1,
.milestonesTitleContainer > h2 {
    color: #ffffff;
    text-align: center;
}

.milestonesTitleContainer > h1 {
    margin: 0;
}

.milestonesTitleContainer > h2 {
    margin: 0;
    padding-top: 12px;
}

.img-milestonesFluendoLogo {
    display: table;
    margin: 40px auto 25px auto;
    max-height: 36px;
}

.milestonesRightBorder {
    border-right: 2px solid #fff;
}

.milestonesLeftBorder {
    border-left: 2px solid #fff;
    min-height: 100px;
    left: -2px;
}

.milestonesRightContainer {
    text-align: right;
    padding-right: 34px;
    padding-top: 20px;
}

.milestonesLeftContainer {
    padding-left: 34px;
    padding-top: 20px;
}

.milestonesLeftContainer::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-right: 12px solid #fff;
    position: absolute;
    top: 50px;
    left: 11px;
}

.milestonesRightContainer::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 12px solid #fff;
    position: absolute;
    top: 50px;
    right: 11px;
}

.milestonesRightContainer > h3,
.milestonesLeftContainer > h3 {
    margin-bottom: 8px;
    font-size: 40px;
}

.milestonesRightContainer > h3,
.milestonesLeftContainer > h3,
.milestonesRightContainer > p,
.milestonesLeftContainer > p {
    color: #ffffff;
}

.milestonesBottomRow {
    padding-bottom: 8px;
}

.milestonesBottomSeparator {
    padding: 130px 0;
}

/* END MILESTONES SECTION */

/* START BOARD SECTION */
.board {
    padding: 132px 0 32px;
}

.boardTitle {
    margin-bottom: 46px;
}

.img-board {
    background: url('../img/Board/background-rigut.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    width: 25%;
}

.boardContainerLeft {
    display: inline-block;
}

.boardContainerLeft > h5 {
    padding-top: 16px;
    margin-bottom: 12px;
}

.boardContainerRightSocial {
    display: table;
    margin: 0 auto;
}

.boardContainerRightSocial > a,
.boardContainerRightSocial > a:focus,
.boardContainerRightSocial > a:hover {
    color: #999999;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.3s ease-in;
}

.boardContainerRightSocial > a:hover {
    color: #696969;
    transition: all 0.3s ease-out;
}

.boardContainerRightSocial > a:first-child {
    padding-right: 10px;
}

.boardContainerRightSocial > a:last-child {
    padding-left: 10px;
}

.img-boardContainerLeft {
    max-height: 248px;
}

.boardContainerRight {
    padding-bottom: 50px;
}

.boardContainerRight > h4 {
    margin-bottom: 4px;
}

.boardContainerRight > p {
    padding-bottom: 20px;
}

.boardContainerRight > p:last-child {
    padding-bottom: 13px;
}

.boardContainerRightTitle {
    color: #ff216c;
    display: block;
    font-family: 'gotham-medium', Helvetica, Arial, sans-serif;
    font-size: 14px;
    padding-bottom: 28px;
}

/* END BOARD SECTION */

/* START ABOUT SECTION */
.about {
    padding: 130px 0 85px;
}

.aboutTitleContainer > h1 {
    text-align: center;
}

.aboutAchivements {
    /*background: url('../img/About/background-skyline.png');
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;*/
    position: relative;
    padding-bottom: 42px;
}

.img-about {
    position: absolute;
    left: 0;
    bottom: -472px;
    z-index: -1;
    width: 100%;
    height: auto;
    display: block;
}

.aboutProviding {
    display: table;
    margin: 0 auto;
    max-width: 712px;
    padding: 30px 0 30px;
}

.aboutProvidingSeamless {
    padding-bottom: 30px;
}

.aboutProvidingVideoAnalysis {
    padding-bottom: 30px;
}

.aboutProviding > h2 {
    display: table;
    margin: 0 auto;
    max-width: 492px;
    padding-bottom: 28px;
}

.aboutProviding > h2,
.aboutProviding > p {
    text-align: center;
}

.aboutProviding > p {
    padding-bottom: 12px;
}

.missionVision {
    background: url('../img/About/background-vision.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px 0 50px;
}

.aboutProducts {
    padding: 54px 0 96px;
    max-width: 296px;
    display: table;
    margin: 0 auto;
}

.img-aboutProducts {
    max-height: 48px;
    display: table;
    margin: 0 auto 31px auto;
}

.aboutProducts > p {
    text-align: center;
    display: table;
    margin: 0 auto;
    max-width: 480px;
}

.aboutVisionContainer {
    max-width: 426px;
    display: table;
    margin: 0 auto;
}

.aboutVisionContainer > h2 {
    margin-bottom: 12px;
    text-align: center;
}

.aboutVisionContainer > h2 {
    color: #ffffff;
    text-align: center;
}

.aboutVisionContainer > h3 {
    margin-bottom: 12px;
    text-align: center;
}

.aboutVisionContainer > h3,
.aboutVisionContainer > p {
    color: #ffffff;
    text-align: center;
}

.aboutVisionBeforeSeparator {
    background-color: #ffffff;
    display: none;
    padding: 30px 0;
}

.aboutVisionAfterSeparator {
    background-color: #ffffff;
    padding: 47px 0;
}

.multimediaProductsSelection h1.aboutTitleText {
    margin: 50px 0 0 0!important;
}

/* END ABOUT SECTION */

/* START CAREERS SECTION */

.careers {
    padding: 250px 0 80px;
}

.careersTitle {
    background: url('../img/Contact/header.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 108px;
    z-index: 2;
    width: 100%;
}

.careersTitleText {
    color: #ffffff;
    margin: 18px 0 12px;
}

.careersContent h5 {
    margin-top: 40px;
}

.careersContent .logo-glassdoor {
    max-width: 200px;
    margin-top: 20px;
    width: 100%;
}

.form-group-careers {
    display: block;
    padding-bottom: 18px;
}

.form-group-careers > label {
    display: inline-block;
    margin-right: 10px;
    float: left;
    padding-top: 12px;
    min-width: 160px;
    margin-top: 20px;
}

.form-group-careers > input,
.form-group-careers > textarea,
.form-group-careers > select,
.form-group-careers > div {
    display: inline-block;
    float: right;
    width: 350px;
    margin-top: 20px;
}

.form-group-careers > textarea {
    resize: none;
}

.form-group-careers .form-careers-cv {
    padding-top: 10px;
}

.buttonSubmitCareers {
    float: right;
    margin-top: 30px;
    margin-right: 248px;
}

.careers-panel-group .accordion-toggle .panel-heading h5:after {
    font-family: 'FontAwesome';
    content: "\f106";
    float: right;
    color: #cfcfcf;
    display: inline-block;
    font-size: 18px;
    float: right;
    position: absolute;
    right: 30px;
}

.careers-panel-group .panel {
    border-bottom: 1px solid #cfcfcf;
    margin-bottom: 5px;
}

.careers-panel-group h5 {
    margin: 0;
    display: inline-block;
}

.careers-panel-group .accordion-toggle.collapsed .panel-heading h5:after {
    content: "\f107";
}

.careerCollapseQuestion {
    margin-bottom: 0px;
}

.careerCollapseResponse {
    margin-bottom: 20px;
}

.applyCareer {
    margin-bottom: 20px;
}

.careersTY {
    margin: 15px 0 80px 0;
    text-align: center;
}

.careersTY .thankyou-icon {
    max-width: 100px;
    margin-bottom: 40px;
}

.careersTY h2 {
    margin-bottom: 40px;
}

.careersTY a {
    color: #ff216c;
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
}

/* END CAREERS SECTION */

/* START CONTACT SECTION */
.map {
    min-height: 630px;
}

.contactTitle {
    background: url('../img/Contact/header.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 108px;
    z-index: 2;
    width: 100%;
}

.contactTitleText {
    color: #ffffff;
    margin: 18px 0 12px;
}

.contact {
    padding: 250px 0 80px;
}

.contactData > h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.contactData > h3:not(:first-child) {
    padding-top: 9px;
}

.contactData > span {
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
}

.contactSubmit > h3 {
    font-size: 18px;
}

.contactSubmit > a,
.contactSubmit > a:hover,
.contactSubmit > a:focus {
    display: table;
    margin-bottom: 20px;
}

.contactMore {
    margin-top: 70px;
}

.contactMore > h3 {
    font-size: 18px;
    margin-bottom: 30px;
}

.contactMore a > img {
    padding: 0 20px;
}

.contactMore > a:not(:first-child) > img {
    margin-top: 28px;
}

/* END CONTACT SECTION */

/* START RESETPASSWORD SECTION */
.resetPassword {
    padding: 118px 0 40px;
}

.resetPasswordContainer {
    max-width: 452px;
}

.resetPasswordContainer > p {
    margin-bottom: 24px;
}

.resetPasswordForm > span {
    color: #999999;
    display: block;
    font-family: 'gotham-book-italic', Helvetica, Arial, sans-serif;
    font-size: 13px;
    padding-bottom: 22px;
}

/* END RESETPASSWORD SECTION */

/* START MODALBACKOFFICE SECTION */
.modalBackOfficeClose {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 33px;
    width: 30px;
    z-index: 8;
}

.modalBackOfficeClose > div {
    position: absolute;
}

.img-modalBackOfficeFluendo {
    max-height: 36px;
    margin-bottom: 18px;
}

.modal-BackOffice {
    width: 810px !important;
}

.modal-body-BackOffice {
    padding: 0;
}

.backOfficeBorder {
    border-right: 1px solid grey;
}

.backOfficeContainerLeft {
    padding: 49px 0 68px 34px;
}

.modalBackOfficeForm > div > input {
    max-width: 280px;
}

.modalBackOfficeForm > a,
.modalBackOfficeForm > a:focus,
.modalBackOfficeForm > a:hover {
    color: #444444;
    margin-left: 22px;
    text-decoration: underline;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
}

.backOfficeContainerRight {
    padding: 49px 0 41px 34px;
}

.backOfficeContainerRight > img {
    max-height: 36px;
    margin-bottom: 10px;
}

.backOfficeContainerRight > img:not(:first-child) {
    margin-top: 38px;
}

.backOfficeContainerRightLink,
.backOfficeContainerRightLink:focus,
.backOfficeContainerRightLink:hover {
    color: #3ACDFD;
    text-decoration: underline;
}

.businessInfo {
    max-width: 330px;
    padding-top: 50px;
}

/* END MODALBACKOFFICE SECTION */

/* START GENERALCONTACT SECTION */

.generalContact {
    padding: 36px 0 84px;
}

.generalContactContainer > h2 {
    margin-bottom: 12px;
}

.generalContactChangeLink,
.generalContactChangeLink:focus,
.generalContactChangeLink:hover {
    color: #ff216c;
    font-family: 'gotham-medium', Helvetica, Arial, sans-serif;
    text-decoration: underline;
}

.generalContactContainer {
    /*display: table;
	margin: 0 auto;*/
}

.generalContactForm {
    /*display: table;
	margin: 0 auto;*/
    padding-top: 46px;
}

.form-group-generalContact > label {
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    display: block;
    margin-right: 10px;
    padding-top: 12px;
}

.form-group-generalContact > input,
.form-group-generalContact > div,
.form-group-generalContact > textarea {
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    display: block;
    width: auto;
    width: 424px;
}

.form-group-generalContact > textarea {
    resize: none;
    height: 150px;
    border: 1px solid #dfe0e6;
    padding: 10px 15px;
    color: #444444;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 13px;
}

.generalContactFormContainer {
    clear: both;
    display: inline-block;
}

.generalContactSendContainer {
    margin-top: 10px;
}

.signUpErrorContainer > small {
    color: #a94442;
    padding-bottom: 6px;
}

.captchaContainer > small,
.captchaInnerContainer > div > i {
    color: #a94442;
    padding-bottom: 6px;
}

.generalContactSelectInputRight > i {
    top: 40px;
}

.signUpCaptchaInputRight > div > div {
    position: relative;
}

.signUpCaptchaInputRight > div > div > div {
    float: left;
}

.signUpCaptchaInputRight > div > div > .glyphicon-ok,
.signUpCaptchaInputRight > div > div > .glyphicon-remove {
    position: relative;
    float: left;
}

.signUpCaptchaInputRight > div > div > .glyphicon-ok {
    color: #3c763d;
}

.signUpCaptchaInputRight > div > div > .glyphicon-remove {
    color: #a94442;
}

.theSignUpCaptchaInputRight > div > div {
    position: relative;
}

.theSignUpCaptchaInputRight > div > div > div {
    float: left;
}

.theSignUpCaptchaInputRight > div > div > .glyphicon-ok,
.theSignUpCaptchaInputRight > div > div > .glyphicon-remove {
    position: relative;
    float: left;
}

.theSignUpCaptchaInputRight > div > div > .glyphicon-ok {
    color: #3c763d;
}

.theSignUpCaptchaInputRight > div > div > .glyphicon-remove {
    color: #a94442;
}

.signUpSelectInputRight > i {
    top: 39px;
    right: 36px;
}

/* END GENERALCONTACT SECTION */

/* END EMAILSENT SECTION */
.emailSent {
    padding-top: 238px;
}

.emailSentContainer > h2,
.emailSentContainer > p {
    text-align: center;
}

.img-emailSent {
    max-height: 118px;
}

.img-progress {
    max-height: 75px;
}

.errorContainer {
    max-width: 600px;
}

/* END EMAILSENT SECTION */

/* START MODAL SECTION */
.modalClose::after {
    content: "";
    border-bottom: 2px solid #ff216c;
    display: inline-block;
    position: absolute;
    width: 28px;

    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.modalClose::before {
    content: "";
    border-bottom: 2px solid #ff216c;
    display: inline-block;
    position: absolute;
    width: 28px;

    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.vertical-alignment-helper {
    display: table;
    height: 100%;
    width: 100%;
    pointer-events: none; /* This makes sure that we can still click outside of the modal to close it */
}

.vertical-align-center {
    /* To center vertically */
    display: table-cell;
    vertical-align: middle;
    pointer-events: none;
}

.modal-content {
    /* Bootstrap sets the size of the modal in the modal-dialog class, we need to inherit it */
    width: inherit;
    height: inherit;
    /* To center horizontally */
    margin: 0 auto;
    pointer-events: all;
}

/* END MODAL SECTION */

/* START FORM SECTION */
.contacto {
    padding-top: 23px;
    padding-bottom: 100px;
}

.contactoFormulario {
    padding-top: 20px;
}

.form-group {
    margin-bottom: 0;
    padding-bottom: 14px;
}

.form-control {
    background-color: #ffffff;
    border: 1px solid #dfe0e6;
    border-radius: 5px;
    box-shadow: none;
    color: #444444;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 13px;
    height: 40px;
}

.contactoEtiqueta {
    color: #444444;
    font-family: 'gotham-medium', Helvetica, Arial, sans-serif;
    font-size: 12px;
}

.contactoChecksContainer {
    float: left;
}

.contactoCheckContainer {
    padding-bottom: 12px;
}

.contactoCheckText {
    display: block;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 13px;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
}

.contactoCheck {
    margin-left: 0 !important;
    opacity: 0;
    position: absolute;
    width: 100%;
}

.contactoCheck,
.contactoCheckText {
    display: inline-block;
    vertical-align: middle;
    margin: 5px;
    cursor: pointer;
    padding-left: 27px !important;
}

.contactoCheck + .contactoCheckText:before {
    content: '';
    background: #fff;
    border: 1px solid #444444;
    display: inline-block;
    width: 16px;
    height: 16px;
    padding: 0;
    margin-top: 0;
    margin-right: 6px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    line-height: inherit;
}

.contactoCheck:checked + .contactoCheckText:before {
    content: "\f00c";
    font-family: 'FontAwesome';
    font-size: 10px;
    padding-top: 0;
    background: transparent;
    color: #444444;
}

.contactoEnviar {
    float: right;
}

.contactInfoContainer {
    padding-left: 140px;
}

.contactInfoContainer > h4:first-child {
    padding-top: 0;
}

.contactInfoContainer > h4 {
    margin: 0;
    padding-top: 12px;
    padding-bottom: 4px;
}

.contactInfoImgLink {
    display: inline-block;
    height: auto;
    padding: 18px 0 22px;
    width: 35px;
}

.contactInfoImgText {
    display: inline-block;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 13px;
    padding-left: 8px;
}

.contactInfoImg {
    display: inline-block;
}

.contactarAhora,
.contactarAhora:focus,
.contactarAhora:hover {
    color: #6F803E;
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
    text-decoration: underline;
}

.g-recaptchaContact {
    display: block;
    margin-bottom: 20px;
}

.form-control-feedback {
    font-size: 15px;
}

.trialModalSelect > i,
.modalSportSelect > i {
    top: 4px;
    right: 28px;
}

.normalInput > i {
    right: 5px;
    top: 3px !important;
}

.backOfficeModalNormalInputRight > i {
    top: 3px !important;
    right: 63px;
}

.has-feedback label ~ .form-control-feedback {
    font-size: 15px;
    top: 40px;
}

.help-block {
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
}

.errorCaptcha > small {
    color: #A94442;
}

.contactErrMessages > small {
    color: #A94442;
}

.checkLinkCorrection {
    width: 50%;
}

.modalNotAvaibleContainer {
    padding-top: 23px;
    max-width: 460px;
}

.circle {
    border: 6px solid #92b75c;
    border-radius: 50%;

    -webkit-box-shadow: 0 0 1px 0 rgb(255, 255, 255);
    box-shadow: 0 0 1px 0 rgb(255, 255, 255);
    width: 80px;
    height: 80px;
    z-index: 86;
}

.exclamationInCircle {
    padding: 3px 0 0 22px;
    color: #92b75c;
}

.modalNotAvaibleClose {
    position: absolute;
    right: 0;
    padding-right: 8px;
}

.modalNotAvaibleLogoContainer {
    padding-top: 27px;
    clear: both;
}

.select-icon::after {
    content: "";
    position: absolute;
    border-left: 2px solid #dfe0e6;
    border-bottom: 2px solid #dfe0e6;
    display: inline-block;
    width: 10px;
    height: 10px;
    transform: rotate(-45deg);
    right: 22px;
    top: 50px;
}

.select-icon-product:after {
    top: 10px;
}

select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.signUpRadioContainer {
    padding-top: 8px;
}

.signUpRadio:empty {
    position: absolute;
    opacity: 0;
    z-index: -9000;
}

.signUpRadio + label {
    color: #333333;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    padding-left: 26px;
}

.signUpRadio + label {
    padding-right: 23px;
}

/*.signUpRadio + label:nth-child(3n+3){padding-right:0;}*/
.signUpRadio + label:nth-child(n+7) {
    padding-top: 18px;
}

.signUpRadio + label > span:first-child {
    display: inline-block;
    width: 17px;
    height: 17px;
    margin: -1px 4px 0 0;
    vertical-align: middle;
    cursor: pointer;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.signUpRadio + label > span:first-child {
    background-color: #ffffff;
    border: 2px solid #dfe0e6;
    -webkit-box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 1);
    -moz-box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 1);
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 1);
}

.signUpRadio:checked + label > span:first-child {
    background-color: #dfe0e6;
    border: 2px solid #dfe0e6;
    -webkit-box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 1);
    -moz-box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 1);
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 1);
}

.signUpRadio + label > span:first-child,
.signUpRadio:checked + label > span:first-child {
    -webkit-transition: background-color 0.3s linear;
    -o-transition: background-color 0.3s linear;
    -moz-transition: background-color 0.3s linear;
    transition: background-color 0.3s linear;
}

/* END FORM SECTION */

/* START ONEPLAYHOMEINTRO SECTION */
.oneplayHomeIntro {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url("../img/oneplayimages/oneplay/1.jpg");
    padding: 158px 0 90px 0;
    position: relative;
}

.img-oneplayHomeIntro {
    max-height: 76px;
}

.oneplayHomeIntroTitleContainer > h1 {
    color: #ffffff;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    margin-top: 21px;
}

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

.oneplayHomeIntroNav {
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    bottom: 0;
    width: 100%;
}

.oneplayHomeIntroNavLink,
.oneplayHomeIntroNavLink:focus,
.oneplayHomeIntroNavLink:hover {
    padding: 20px 0 8px;
    font-size: 17px;
    font-weight: 400;
    color: #808080;
    transition: color 0.3s ease-in;
    text-align: center;
}

.oneplayHomeIntroNavLink:hover {
    color: #ffffff;
    transition: color 0.3s ease-in;
}

.img-oneplayHomeOurClients {
    max-height: 68px;
    display: table;
    margin: 20px auto 0 auto;
}

.oneplayEnterpiseSolutions {
    padding: 24px 0 112px;
}

.oneplayEnterpiseSolutionsTitle {
    padding-bottom: 38px;
}

.img-oneplayEnterpiseSolutions {
    max-height: 316px;
}

.img-oneplayFluendoCodecPack {
    max-height: 50px;
    margin-bottom: 34px;
}

.oneplayEnterpiseSolutionsContainer {
    padding-left: 30px;
}

.oneplayEnterpiseSolutionsContainer > a,
.oneplayEnterpiseSolutionsContainer > a:focus,
.oneplayEnterpiseSolutionsContainer > a:hover {
    margin-top: 34px;
    display: inline-block;
}

.endUserSolutions {
    padding-bottom: 99px;
}

.endUserSolutionsTitle {
    max-width: 600px;
    margin-top: 50px;
}

.endUserSolutionsTitle > h3 {
    margin-bottom: 0;
}

.endUserSolutionsProductContainer {
    min-height: 710px;
    max-width: 341px;
    padding-top: 20px;
}

.img-endUserSolutionsProduct {
    max-height: 280px;
}

.endUserSolutionsProductContainer > h4 {
    padding-top: 46px;
    padding-bottom: 4px;
}

.endUserSolutionsProductContainer > .produtDescriptionContainer {
    min-height: 136px;
}

.endUserSolutionsProductContainer p {
    padding-bottom: 10px;
    text-align: justify;
    min-height: 200px;
}

.endUserSolutionsButtonContainer > a {
    display: table;
}

.endUserSolutionsButtonContainer > a:last-child,
.multimediaEndUserSolutionsButtonContainer > a:last-child {
    margin: 20px 0;
    min-width: 176px;
}

.modalOnePlayDvdContainer {
    padding: 0;
}

.endUserSolutionsButtonContainer {
    padding-top: 30px;
}

.endUserSolutionsProductAvailable {
    padding: 13px 0 13px;
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
}

.endUserSolutionsProductAvailable > span {
    font-size: 12px;
    font-weight: 400;
    color: #999999;
    padding-right: 15px;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
}

.endUserSolutionsProductAvailable > i {
    font-size: 24px;
    color: #999999;
    vertical-align: middle;
    padding-right: 6px;
}

.endUserSolutionsSecondColumn > .endUserSolutionsProductContainer {
    display: table;
    margin: 0 auto;
}

.endUserSolutionsThirdColumn > .endUserSolutionsProductContainer {
    display: table;
    margin: 0 0 0 auto;
}

.img-ios {
    max-height: 20px;
    display: inline-block;
    margin-right: 6px;
}

.consultingServices {
    padding: 104px 0 100px;
}

.consultingServicesContainer {
    max-width: 648px;
}

.consultingServicesContainer > h3 {
    margin-bottom: 21px;
}

.consultingServicesContainer > a,
.consultingServicesContainer > a:focus,
.consultingServicesContainer > a:hover {
    margin-top: 26px;
    display: inline-block;
}

.img-consultingServices {
    max-height: 185px;
    margin-top: 54px;
}

/* END ONEPLAYHOMEINTRO SECTION */

/* START ONEPLAYDVD SECTION */
.oneplayDvdIntro {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url("../img/oneplayimages/oneplaydvdplayer/background_dvd_player.jpg");
    position: relative;
}

.img-oneplayDvdIntroLogo {
    max-height: 70px;
}

.oneplayDvdIntroBk {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 159px 0 34px 0;
}

.oneplayDvdIntroContainer {
    max-width: 588px;
}

.oneplayDvdIntroContainer > h1 {
    color: #ffffff;
    margin: 40px 0 30px;
}

.oneplayDvdIntroContainer > p {
    color: #ffffff;
    margin-bottom: 24px;
}

.oneplayDvdIntroContainer > h1 > span {
    color: #27CFF3;
}

.img-oneplayDvdIntro {
    margin-top: 50px;
}

.productoNav {
    background-color: #EDEDED;
}

.productoNavFixed {
    position: fixed;
    right: 0;
    left: 0;
    top: 108px;
    z-index: 1030;
}

.productoNavColumn,
.productoNavColumn:hover {
    background-color: #EDEDED;
    transition: color 0.3s ease-in;
}

.productoNavColumn:hover {
    background-color: #d9d9d9;
    transition: color 0.3s ease-out;
}

.productoNavImg {
    display: inline-block;
    max-height: 24px;
    vertical-align: middle;
}

.productoNavTitle {
    display: inline-block;
    padding: 11px 0 11px 8px;
}

.productoNavContainer > p {
    font-size: 13px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.oneplayDvdFeature {
    padding: 20px 0 100px 0;
}

.oneplayDvdFeatureH2 {
    margin-bottom: 30px;
}

.oneplayDvdFeatureTitle {
    min-height: 74px;
    padding-right: 10px;
}

.oneplayDvdFeatureTitleBorder {
    border-left: 3px solid #05fb9b;
    float: left;
    min-height: 53px;
}

.oneplayDvdFeatureTitleInnerContainer {
    padding-left: 28px;
}

.oneplayDvdFeatureTitleInnerContainer > h3 {
    margin-bottom: 17px;
}

.oneplayDvdFeatureTitleInnerContainer > p > b {
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
}

.oneplayDvdFeatureRowTitle {
    margin-bottom: 73px;
}

.oneplayDvdFeatureRow {
    margin-bottom: 40px;
}

.img-oneplayDvdFeatureLeft {
    max-height: 202px;
}

.img-oneplayDvdFeatureRight {
    max-height: 202px;
    float: right;
}

.img-oneplayDvdFeatureDolby {
    max-height: 58px;
    margin: 75px auto 0 auto;
    display: table;
}

.img-oneplayDvdFeatureMapamundi {
    max-height: 257px;
}

.oneplayDvdFeatureContainerText > h3 {
    margin-top: 44px;
}

.oneplayDvdFeatureContainerTextMapamundi > h3 {
    margin-top: 75px;
}

.oneplayDvdTechSpec {
    background-color: #EDEDED;
}

.oneplayDvdTechSpecTitle > h2 {
    padding-top: 6px;
    padding-bottom: 42px;
}

.oneplayDvdTechSpec {
    padding: 66px 0 78px;
}

.img-oneplayDvdTechSpecLogo {
    max-height: 52px;
}

.oneplayDvdTechSpecTable {
    width: 100%;
    padding-right: 40px;
}

.oneplayDvdTechSpecTableRight {
    float: right;
    width: 100%;
    padding-left: 40px;
    padding-right: 0 !important;
}

.oneplayDvdTechSpecTable > .oneplayDvdTechSpecTableTitle:first-child {
    margin-top: 0 !important;
}

.oneplayDvdTechSpecTableTitle {
    background-color: #242527;
    color: #B3B3B3;
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
    padding: 7px 0 6px 22px;
    width: 100%;
    max-width: 520px;
    margin-top: 50px;
}

.oneplayDvdTechSpecTableCell {
    border-bottom: 1px solid #B3B3B3;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 13px;
    padding: 9px 22px 8px 22px;
    max-width: 520px;
    width: 100%;
}

.oneplayDvdTechSupport {
    overflow: hidden;
    position: relative;
    padding: 59px 0 111px;
}

.oneplayDvdTechSupportContainer {
    max-width: 624px;
}

.oneplayDvdTechSupportContainer > h2 {
    padding-bottom: 14px;
}

.oneplayDvdTechSupportContainer > h3 {
    margin-bottom: 25px;
}

.oneplayDvdTechSupportContainer > p {
    margin-bottom: 22px;
}

.oneplayDvdTechSupportButtonContainer {
    padding-top: 32px;
}

.oneplayDvdTechSupportButtonContainer > a,
.oneplayDvdTechSupportButtonContainer > a:focus,
.oneplayDvdTechSupportButtonContainer > a:hover {
    display: inline-block;
    padding: 8px 20px 6px 20px;
    width: 287px;
}

.oneplayDvdTechSupportButtonContainer > a:first-child {
    margin-right: 12px;
}

.oneplayDvdTechSupportButtonContainer > a:last-child {
    margin-left: 12px;
}

.img-oneplayDvdTechSupportBk {
    position: absolute;
    top: 55px;
    right: -214px;
    max-height: 464px;
    z-index: -1;
}

.oneplayDvdBuyTrial {
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    background-image: url("../img/oneplayimages/oneplaydvdplayer/dvdplayer4.jpg");
    position: relative;
    padding: 74px 0 66px;
}

.img-oneplayDvdBuyTrial {
    max-height: 64px;
    margin: 0 auto 0 auto;
    display: table;
}

.oneplayDvdBuyTrialSeparator {
    margin-top: 54px;
}

.oneplayDvdBuyTrialButtonContainer {
    display: table;
    margin: 0 auto;
}

.oneplayDvdBuyTrialButtonContainer > a,
.oneplayDvdBuyTrialButtonContainer > a:focus,
.oneplayDvdBuyTrialButtonContainer > a:hover {
}

.oneplayDvdBuyTrialButtonContainer > a:first-child {
}

.oneplayDvdBuyTrialButtonContainer > a:last-child {
    margin-left: 10px;
}

.oneplayDvdBuyTrialContainer > span > a,
.oneplayDvdBuyTrialContainer > span > a:focus,
.oneplayDvdBuyTrialContainer > span > a:hover {
    display: table;
    text-align: center;
    font-size: 13px;
    color: #ffffff;
    margin: 10px auto 10px auto;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
}

.oneplayDvdBuyTrialContainer > h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 0;
}

.oneplayDvdBuyTrialContainer > p {
    text-align: center;
    color: #ffffff;
}

.oneplayDvdBuyTrialContainer > p > b {
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
}

.oneplayDvdBuyTrialContainer > .buttonClass7 {
    display: table;
    margin: 30px auto 0 auto;
}

.oneplayBecomeDistributor {
    overflow: hidden;
    position: relative;
    padding: 59px 0 99px;
}

.oneplayBecomeDistributorContainer {
    max-width: 734px;
}

.oneplayBecomeDistributorContainer > p {
    padding-bottom: 28px;
}

.oneplayBecomeDistributorContainer > p > b {
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
}

.oneplayBecomeDistributorContainer > h3 {
    margin-top: 29px;
    margin-bottom: 27px;
}

.oneplayBecomeDistributorContainer > ul {
    padding: 0;
    margin: 0 0 35px 0;
}

.oneplayBecomeDistributorContainer > ul > li::before {
    content: "";
    border-left: 4px solid #05fb9b;
    border-bottom: 4px solid #05fb9b;
    display: inline-block;
    width: 23px;
    height: 12px;
    -o-transform: rotate(-45deg) skew(0deg, 7deg);
    -ms-transform: rotate(-45deg) skew(0deg, 7deg);
    -moz-transform: rotate(-45deg) skew(0deg, 7deg);
    -webkit-transform: rotate(-45deg) skew(0deg, 7deg);
    transform: rotate(-45deg) skew(0deg, 7deg);
    float: left;
}

.oneplayBecomeDistributorContainer > ul > li {
    list-style: none;
    padding-bottom: 11px;
}

.oneplayBecomeDistributorContainer > ul > li > h4,
.oneplayBecomeDistributorContainer > ul > li > p {
    padding-left: 42px;
}

.oneplayBecomeDistributorContainer > ul > li > h4 {
    margin-bottom: 3px;
}

.oneplayBecomeDistributorContainer > a {
    display: inline-block;
}

.img-oneplayBecomeDistributor {
    max-height: 27px;
    margin-top: 29px;
    margin-bottom: 45px;
}

.img-oneplayDvdWorldBk {
    position: absolute;
    top: 110px;
    right: -214px;
    max-height: 538px;
    z-index: -1;
}

.img-oneplayDvdFeatureTitle {
    max-height: 45px;
}

/* END ONEPLAYDVD SECTION */

/* START ONEPLAYPLAYER SECTION */
.oneplayPlayerIntro {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url("../img/oneplayimages/player/background_player.jpg");
    position: relative;
}

/* END ONEPLAYPLAYER SECTION */

/* START ONEPLAYCODEC SECTION */
.oneplayCodecIntro {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url("../img/oneplayimages/oneplaycodecpack/background_codec-pack.jpg");
    position: relative;
}

.oneplayCodecIntroContainer {
    max-width: 715px;
}

.oneplayCodecIntroContainer > h1 {
    color: #ffffff;
    margin: 40px 0 30px;
}

.oneplayCodecIntroContainer > p {
    color: #ffffff;
    margin-bottom: 24px;
    max-width: 603px;
}

.oneplayCodecIntroContainer > h1 > span {
    color: #27CFF3;
}

.oneplayDvdBuyTrialButton,
.oneplayDvdBuyTrialButton:focus,
.oneplayDvdBuyTrialButton:hover {
    display: table;
    margin: 30px auto 0 auto;
}

.oneplayCodecFeatureRowTitle {
    margin-bottom: 33px;
}

.img-oneplayCodec4k {
    max-height: 63px;
}

.img-oneplayCodecGStreamer {
    max-height: 63px;
}

.oneplayCodecFeature {
    padding: 20px 0 68px 0;
}

/* END ONEPLAYCODEC SECTION */

/* START FLUENDOCODEC SECTION */
.fluendoCodecIntro {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url("../img/oneplayimages/fluendocodecpack/5482474.jpg");
    position: relative;
}

.fluendoCodecIntroContainer {
    max-width: 715px;
}

.fluendoCodecIntroContainer > h1 {
    color: #ffffff;
    margin: 40px 0 30px;
}

.fluendoCodecIntroContainer > p {
    color: #ffffff;
    margin-bottom: 24px;
    max-width: 603px;
}

.fluendoCodecIntroContainer > p > b {
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
}

.fluendoCodecIntroContainer > h1 > span {
    color: #ff216c;
}

.fluendoCodecOurClientsTitle {
    margin-top: 66px;
}

.img-fluendoCodecOurClients {
    max-height: 68px;
    display: table;
    margin: 20px auto 0 auto;
}

.fluendoCodecFeature {
    padding: 20px 0 47px 0;
}

.fluendoTechSpecTitle > h2 {
    padding-top: 6px;
    padding-bottom: 42px;
}

.fluendoTechSpecTitle > h3 {
    padding-bottom: 26px;
}

.fluendoTechSupportContainer {
    max-width: 764px;
}

.fluendoTechSupportContainer > h2 {
    padding-bottom: 14px;
}

.fluendoTechSupportContainer > h3 {
    margin-bottom: 25px;
}

.fluendoTechSupportContainer > p {
    margin-bottom: 22px;
}

.fluendoTechSupportContainer > .oneplayDvdFeatureTitle {
    padding-bottom: 51px;
}

.fluendoBuyTrial {
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    background-image: url("../img/oneplayimages/fluendocodecpack/5482474-copia.jpg");
    position: relative;
    padding: 82px 0 82px;
}

.fluendoBuyTrialTitleContainer {
    padding-bottom: 66px;
}

.fluendoBuyTrialBorderRight {
    border-right: 1px solid #ffffff;
}

.fluendoBuyTrialBorderLeft {
    border-left: 1px solid #ffffff;
}

.fluendoBuyTrialContainer {
    max-width: 438px;
    display: table;
    margin: 0 auto;
}

.fluendoBuyTrialContainerRight {
    max-width: 355px;
}

.fluendoBuyTrialContainer > h2 {
    padding-bottom: 14px;
    margin-top: 0;
}

.fluendoCodecMarket > p {
    text-align: center;
    padding: 25px 0 28px;
}

.img-fluendoCodecMarket {
    display: table;
    margin: 0 auto;
    max-height: 94px;
}

.oneplayBusinessContainer {
    padding-top: 10px;
}

.oneplayBusinessModelContainer {
    padding-top: 24px;
}

.oneplayBusinessContainer > p {
    padding-bottom: 28px;
}

.oneplayBusinessContainer > h3 {
    margin-top: 45px;
}

.fluendoCodecMeetContainer {
    position: relative;
    margin-top: 109px;
}

.fluendoCodecMeetContainer > h2 {
    text-align: center;
    margin-bottom: 54px;
}

.img-fluendoCodecMeetHp {
    float: left;
    max-height: 120px;
}

.img-fluendoCodecMeetIgel {
    float: left;
    max-height: 88px;
}

.img-fluendoCodecMeetMetro {
    float: left;
    max-height: 88px;
}

.fluendoCodecMeetContainer > a {
    display: table;
    margin: 0 auto;
}

.fluendoCodecMeetCarousel {
    padding: 0 60px 59px 60px;
}

.fluendoCodecMeetContainer > .navigationButton {
    float: none;
}

.fluendoCodecMeetContainer > .fluendoCodecMeetNavButtonContainer > .navigationButton > i {
    width: 30px;
    height: 30px;
}

.fluendoCodecMeetContainer > .navigationButtonLeft,
.fluendoCodecMeetContainer > .fluendoCodecMeetNavButtonContainer > .navigationButtonLeft {
    position: absolute;
    left: 0;
    top: 127px;
    z-index: 8;
}

.fluendoCodecMeetContainer > .fluendoCodecMeetNavButtonContainer > .navigationButtonLeft {
    top: 40px;
    left: 22px;
}

.fluendoCodecMeetContainer > .navigationButtonRight,
.fluendoCodecMeetContainer > .fluendoCodecMeetNavButtonContainer > .navigationButtonRight {
    position: absolute;
    right: 0;
    top: 127px;
    z-index: 8;
}

.fluendoCodecMeetContainer > .fluendoCodecMeetNavButtonContainer > .navigationButtonRight {
    top: 40px;
    right: 22px;
}

.oneplayAngleLeft {
    border-left: 3px solid #B4B4B4;
    border-bottom: 3px solid #B4B4B4;
    display: inline-block;
    width: 48px;
    height: 48px;
    -o-transform: rotate(45deg) skew(6deg, 6deg);
    -ms-transform: rotate(45deg) skew(6deg, 6deg);
    -moz-transform: rotate(45deg) skew(6deg, 6deg);
    -webkit-transform: rotate(45deg) skew(6deg, 6deg);
    transform: rotate(45deg) skew(6deg, 6deg);
}

.oneplayAngleRight {
    border-left: 3px solid #B4B4B4;
    border-bottom: 3px solid #B4B4B4;
    display: inline-block;
    width: 48px;
    height: 48px;
    -o-transform: rotate(-135deg) skew(6deg, 6deg);
    -ms-transform: rotate(-135deg) skew(6deg, 6deg);
    -moz-transform: rotate(-135deg) skew(6deg, 6deg);
    -webkit-transform: rotate(-135deg) skew(6deg, 6deg);
    transform: rotate(-135deg) skew(6deg, 6deg);
}

.fluendoCodecMeetCarouselContainer > p {
    padding-left: 164px;
}

.fluendoCodecMeetCarouselContainer > .fluendoCodecMeetCarouselName {
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
    color: #05fb9b;
    margin-top: 20px;
    margin-bottom: 0;
}

.fluendoCodecMeetNavButtonContainer {
    display: none;
}

/* END FLUENDOCODEC SECTION */

/* START ONEPLAYMP3 SECTION */
.oneplayMP3Intro {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url("../img/oneplayimages/oneplaydvdplayer/background_dvd_player.jpg");
    position: relative;
}

.img-oneplayMP3IntroLogo {
    max-height: 70px;
}

.oneplayMP3IntroBk {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 159px 0 34px 0;
}

.oneplayMP3IntroContainer {
    max-width: 588px;
}

.oneplayMP3IntroContainer > h1 {
    color: #ffffff;
    margin: 40px 0 30px;
}

.oneplayMP3IntroContainer > p {
    color: #ffffff;
    margin-bottom: 24px;
}

.oneplayMP3IntroContainer > h1 > span {
    color: #27CFF3;
}

.img-oneplayMP3Intro {
    margin-top: 50px;
}

.productoNav {
    background-color: #EDEDED;
}

.productoNavFixed {
    position: fixed;
    right: 0;
    left: 0;
    top: 108px;
    z-index: 1030;
}

.productoNavColumn,
.productoNavColumn:hover {
    background-color: #EDEDED;
    transition: color 0.3s ease-in;
}

.productoNavColumn:hover {
    background-color: #d9d9d9;
    transition: color 0.3s ease-out;
}

.productoNavImg {
    display: inline-block;
    max-height: 24px;
    vertical-align: middle;
}

.productoNavTitle {
    display: inline-block;
    padding: 11px 0 11px 8px;
}

.productoNavContainer > p {
    font-size: 13px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.oneplayMP3Feature {
    padding: 20px 0 100px 0;
}

.oneplayMP3FeatureH2 {
    margin-bottom: 30px;
}

.oneplayMP3FeatureTitle {
    min-height: 74px;
    padding-right: 10px;
}

.oneplayMP3FeatureTitleBorder {
    border-left: 3px solid #05fb9b;
    float: left;
    min-height: 53px;
}

.oneplayMP3FeatureTitleInnerContainer {
    padding-left: 28px;
}

.oneplayMP3FeatureTitleInnerContainer > h3 {
    margin-bottom: 17px;
}

.oneplayMP3FeatureTitleInnerContainer > p > b {
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
}

.oneplayMP3FeatureRowTitle {
    margin-bottom: 73px;
}

.oneplayMP3FeatureRow {
    margin-bottom: 40px;
}

.img-oneplayMP3FeatureLeft {
    max-height: 202px;
}

.img-oneplayMP3FeatureRight {
    max-height: 202px;
    float: right;
}

.img-oneplayMP3FeatureDolby {
    max-height: 58px;
    margin: 75px auto 0 auto;
    display: table;
}

.img-oneplayMP3FeatureMapamundi {
    max-height: 257px;
}

.oneplayMP3FeatureContainerText > h3 {
    margin-top: 44px;
}

.oneplayMP3FeatureContainerTextMapamundi > h3 {
    margin-top: 75px;
}

.oneplayMP3TechSpec {
    background-color: #EDEDED;
}

.oneplayMP3TechSpecTitle > h2 {
    padding-top: 6px;
    padding-bottom: 42px;
}

.oneplayMP3TechSpec {
    padding: 66px 0 78px;
}

.img-oneplayMP3TechSpecLogo {
    max-height: 52px;
}

.oneplayMP3TechSpecTable {
    width: 100%;
    padding-right: 40px;
}

.oneplayMP3TechSpecTableRight {
    float: right;
    width: 100%;
    padding-left: 40px;
    padding-right: 0 !important;
}

.oneplayMP3TechSpecTable > .oneplayMP3TechSpecTableTitle:first-child {
    margin-top: 0 !important;
}

.oneplayMP3TechSpecTableTitle {
    background-color: #242527;
    color: #B3B3B3;
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
    padding: 7px 0 6px 22px;
    width: 100%;
    max-width: 520px;
    margin-top: 50px;
}

.oneplayMP3TechSpecTableCell {
    border-bottom: 1px solid #B3B3B3;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 13px;
    padding: 9px 22px 8px 22px;
    max-width: 520px;
    width: 100%;
}

.oneplayMP3TechSupport {
    overflow: hidden;
    position: relative;
    padding: 59px 0 111px;
}

.oneplayMP3TechSupportContainer {
    max-width: 624px;
}

.oneplayMP3TechSupportContainer > h2 {
    padding-bottom: 14px;
}

.oneplayMP3TechSupportContainer > h3 {
    margin-bottom: 25px;
}

.oneplayMP3TechSupportContainer > p {
    margin-bottom: 22px;
}

.oneplayMP3TechSupportButtonContainer {
    padding-top: 32px;
}

.oneplayMP3TechSupportButtonContainer > a,
.oneplayMP3TechSupportButtonContainer > a:focus,
.oneplayMP3TechSupportButtonContainer > a:hover {
    display: inline-block;
    padding: 8px 20px 6px 20px;
    width: 287px;
}

.oneplayMP3TechSupportButtonContainer > a:first-child {
    margin-right: 12px;
}

.oneplayMP3TechSupportButtonContainer > a:last-child {
    margin-left: 12px;
}

.img-oneplayMP3TechSupportBk {
    position: absolute;
    top: 55px;
    right: -214px;
    max-height: 464px;
    z-index: -1;
}

.oneplayMP3BuyTrial {
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    background-image: url("../img/oneplayimages/oneplaydvdplayer/dvdplayer4.jpg");
    position: relative;
    padding: 74px 0 66px;
}

.img-oneplayMP3BuyTrial {
    max-height: 64px;
    margin: 0 auto 0 auto;
    display: table;
}

.oneplayMP3BuyTrialSeparator {
    margin-top: 54px;
}

.oneplayMP3BuyTrialButtonContainer {
    display: table;
    margin: 0 auto;
}

.oneplayMP3BuyTrialButtonContainer > a,
.oneplayMP3BuyTrialButtonContainer > a:focus,
.oneplayMP3BuyTrialButtonContainer > a:hover {
}

.oneplayMP3BuyTrialButtonContainer > a:first-child {
}

.oneplayMP3BuyTrialButtonContainer > a:last-child {
    margin-left: 10px;
}

.oneplayMP3BuyTrialContainer > span > a,
.oneplayMP3BuyTrialContainer > span > a:focus,
.oneplayMP3BuyTrialContainer > span > a:hover {
    display: table;
    text-align: center;
    font-size: 13px;
    color: #ffffff;
    margin: 10px auto 10px auto;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
}

.oneplayMP3BuyTrialContainer > h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 0;
}

.oneplayMP3BuyTrialContainer > p {
    text-align: center;
    color: #ffffff;
}

.oneplayMP3BuyTrialContainer > p > b {
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
}

.oneplayMP3BuyTrialContainer > .buttonClass7 {
    display: table;
    margin: 30px auto 0 auto;
}

.oneplayBecomeDistributor {
    overflow: hidden;
    position: relative;
    padding: 59px 0 99px;
}

.oneplayBecomeDistributorContainer {
    max-width: 734px;
}

.oneplayBecomeDistributorContainer > p {
    padding-bottom: 28px;
}

.oneplayBecomeDistributorContainer > p > b {
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
}

.oneplayBecomeDistributorContainer > h3 {
    margin-top: 29px;
    margin-bottom: 27px;
}

.oneplayBecomeDistributorContainer > ul {
    padding: 0;
    margin: 0 0 35px 0;
}

.oneplayBecomeDistributorContainer > ul > li::before {
    content: "";
    border-left: 4px solid #05fb9b;
    border-bottom: 4px solid #05fb9b;
    display: inline-block;
    width: 23px;
    height: 12px;
    -o-transform: rotate(-45deg) skew(0deg, 7deg);
    -ms-transform: rotate(-45deg) skew(0deg, 7deg);
    -moz-transform: rotate(-45deg) skew(0deg, 7deg);
    -webkit-transform: rotate(-45deg) skew(0deg, 7deg);
    transform: rotate(-45deg) skew(0deg, 7deg);
    float: left;
}

.oneplayBecomeDistributorContainer > ul > li {
    list-style: none;
    padding-bottom: 11px;
}

.oneplayBecomeDistributorContainer > ul > li > h4,
.oneplayBecomeDistributorContainer > ul > li > p {
    padding-left: 42px;
}

.oneplayBecomeDistributorContainer > ul > li > h4 {
    margin-bottom: 3px;
}

.oneplayBecomeDistributorContainer > a {
    display: inline-block;
}

.img-oneplayBecomeDistributor {
    max-height: 27px;
    margin-top: 29px;
    margin-bottom: 45px;
}

.img-oneplayMP3WorldBk {
    position: absolute;
    top: 110px;
    right: -214px;
    max-height: 538px;
    z-index: -1;
}

.img-oneplayMP3FeatureTitle {
    max-height: 45px;
}

.img-oneplaymp3IntroLogo {
    max-height: 70px;
}

.oneplayMP3Intro {
        background-image: url("../img/oneplayimages/mp3decoder/mp3decoder-header.jpg");
}
.oneplayMP3IntroBk {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 159px 0 34px 0;
}

.oneplayMP3IntroContainer h1 {
    margin-top: 50px;
    color: #fff;
}

.oneplayMP3IntroContainer span {
    color: #27CFF3;
}

.oneplayMP3Feature {
    padding: 20px 0 65px 0;
}

.oneplayMP3FeatureTitleInnerContainer span {
    font-weight: 900;
    display: block;
    color: #252627;
    margin-top: 10px;
}

@media only screen and (max-width: 991px) {
    .img-oneplayMP3TechSupportBk,
    .img-oneplayMP3WorldBk {
        display: none;
    }

    .oneplayMP3BuyTrial .fluendoBuyTrialBorderLeft {
        border: none;
        margin-top: 30px;
        padding-top: 20px;
    }
}
/* END ONEPLAY MP3 SECTION */


/* START CONSULTINGSERVICES SECTION */
.consultingServicesHeader {
    padding: 132px 0 16px;
}

.consultingServicesShareTitleContainer > h3 {
    margin-bottom: 46px;
}

.consultingServicesShareTitleContainer > p {
    margin-bottom: 24px;
}

.img-boardConsulting {
    background: url('../img/oneplayimages/consultingservices/image.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    width: 25%;
}

.consultingServicesShareContainer {
    padding-top: 13px;
    padding-bottom: 90px;
}

.consultingServicesShareContainer > h3:nth-child(3) {
    margin-bottom: 20px;
}

.consultingServicesShareContainer > a {
    margin-top: 48px;
    display: table;
}

.consultingServicesMarketsImg {
    min-height: 198px;
    max-width: 123px;
}

.consultingServicesMarketsImg > p {
    max-width: 164px;
    display: table;
    margin: 20px auto 0 auto;
    text-align: center;
}

.img-consultingServicesShare {
    float: right;
    max-height: 128px;
    margin: 0 0 25px 30px;
}

.consultingServicesTitle {
    margin-bottom: 0;
}

/* END CONSULTINGSERVICES SECTION */

/* START MULTIMEDIAPRODUCTS SECTION */
.multimediaEndUserSolutionsTitle {
    max-width: 600px;
    padding-top: 24px;
}

.multimediaEndUserProductTitle {
    padding-top: 20px;
}

.multimediaEndUserSolutionsTitle > h3 {
    margin-bottom: 0;
}

.multimediaEndUserSolutionsProductContainer {
    padding-top: 100px;
}

.multimediaEndUserSolutionsProductFirstColumn {
    padding-top: 36px;
}

.img-multimediaEndUserSolutionsProduct {
    max-height: 244px;
}

.multimediaEndUserSolutionsProductContainer > div > div > h4 {
    padding-top: 24px;
    padding-bottom: 4px;
}

.multimediaEndUserSolutionsProductContainer > div > div > p {
    padding-bottom: 6px;
}

.multimediaEndUserSolutionsButtonContainer {
    padding-top: 30px;
    display: inline-block;
}

.multimediaEndUserSolutionsButtonContainer > a,
.multimediaEndUserSolutionsButtonContainer > a:focus,
.multimediaEndUserSolutionsButtonContainer > a:hover {
    display: inline-block;
    padding: 13px 20px;
}

.multimediaEndUserSolutionsButtonContainer > a:first-child {
    margin-right: 8px;
}

.multimediaEndUserSolutionsButtonContainer > a:last-child {
    margin-left: 8px;
    min-width: 176px;
}

.multimediaEndUserSolutionsProductAvailable {
    padding: 13px 0 13px;
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
    min-width: 334px;
    display: inline-block;
    margin-right: 30px;
}

.multimediaEndUserSolutionsProductAvailable > span {
    font-size: 12px;
    font-weight: 400;
    color: #999999;
    padding-right: 15px;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
}

.multimediaEndUserSolutionsProductAvailable > i {
    font-size: 24px;
    color: #999999;
    vertical-align: middle;
    padding-right: 6px;
}

.multimediaEndUserSolutionsSecondColumn > .multimediaEndUserSolutionsProductContainer {
    display: table;
    margin: 0 auto;
}

.multimediaEndUserSolutionsThirdColumn > .multimediaEndUserSolutionsProductContainer {
    display: table;
    margin: 0 0 0 auto;
}

.img-ios {
    max-height: 20px;
    display: inline-block;
    margin-right: 6px;
}

.multimediaEndUserSolutionsBackContainer > .buttonClass8 {
    display: table;
    margin: 66px auto 0 auto;
}

.multimediaGoBack,
.multimediaGoBack:hover,
.multimediaGoBack:focus {
    color: #ff216c;
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    margin: 32px auto 0 auto;
    display: table;
}

.multimediaEndUserSolutionsBackContainer {
    padding-bottom: 86px;
}

/* END MULTIMEDIAPRODUCTS SECTION */

/* START MYPRODUCTS SECTION */
.productoProNavSpacing {
    padding: 0px 0 27.5px;
}

.myProductsSpecialContainer {
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
}

.myProductsCabecera {
    background-color: #252627;
}

.myProductsCeldaCabecera {
    color: #ffffff;
    font-family: 'gotham-medium', Helvetica, Arial, sans-serif;
    font-size: 13px;
    padding: 5px 15px 6px 15px;
}

.myProductsCelda {
    font-size: 13px;
    -epub-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    -webkit-hyphens: none;
    -o-hyphens: none;
    hyphens: none;
    text-align: center;
}

.myProductsDownloadLink, .myProductsDownloadLink:focus, .myProductsDownloadLink:hover {
    color: #ff216c;
    text-decoration: underline;
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
}

.myProductsButtonContainer {
    padding: 8px 0 40px;
}

.myProductsButtonContainer > .buttonClass1:first-child {
    margin-right: 10px;
}

.myProductsButtonContainer > .buttonClass1:last-child {
    margin-left: 10px;
}

.img-myProductsContainer {
    padding: 35px 0 40px;
    float: right;
}

.img-myProducts {
    max-height: 416px;
}

.myProductsEmpty {
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
    font-size: 20px;
    color: #ff216c;
}

.myProductsEmptyUnderLine {
    text-decoration: underline;
}

.myProductsEmptyTitle {
    padding: 39px 0 24px;
}

.myProductsEmptyButtonContainer {
    padding-top: 20px;
}

.myProductsEmptyButtonContainer > a {
    display: inline-block;
}

.myProductsEmptyButtonContainer > a:first-child {
    margin-right: 15px;
}

.myProductsEmptyButtonContainer > a:last-child {
    margin-left: 15px;
}

.myProductsLicencesOptionText {
    font-size: 13px;
}

.form-group-licences {
    float: none !important;
}

.form-group-licences > input, .form-group-licences > div {
    display: block;
    width: 100%;
}

.form-group-licences > label {
    margin-right: 10px;
    float: left;
    padding-top: 12px;
}

.myProductsLicencesLink, .myProductsLicencesLink:focus, .myProductsLicencesLink:hover, .myProductsLicencesLink:target {
    border: none;
    background-color: transparent;
}

.myProductsCeldaCabeceraFixedWidth {
    width: 300px;
}

.myProductsTable {
    min-width: 600px;
}

.myProductsCabNew {
    visibility: collapse;
}

.myProductsTextContainer {
    float: left;
    text-align: left;
    padding: 22px 0 10px;
    width: 243px;
}

.myProductsTextContainer > span {
    display: block;
}

.myProductsTextContainer > p {
    padding-top: 7px;
    font-size: 13px;
}

.myProductsInnerTable {
    padding-top: 10px;
    /*min-width: 312px;*/
}

.myProductsFile {
    display: block;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
}

/*.myProductsLicensesOdd{background-color: #EDEDED;}
.myProductsLicensesRow{
	display: table;
	color: #444444;
	font-family: 'gotham-book', Helvetica, Arial, sans-serif;
	font-size: 15px;
	width: 100%;
}
.myProductsLicensesRowHeader {
	display: block;
	color: #444444;
	font-family: 'gotham-book', Helvetica, Arial, sans-serif;
	font-size: 15px;
}
.myProductsLicensesRowHeader > span{
	padding: 4px 16px 5px 4px;
	display: block;
	text-align: right;
}
.myProductsLicensesContainer{
	border: 1px solid #EDEDED;
	max-width: 225px;
	margin-top: 30px;
}
.myProductsLicensesNumber{
	float: left;
	padding: 6px 14px 4px 14px;
	border-right: 1px solid #ffffff;
	width: 40px;
}
.myProductsLicensesText{
	float: left;
	padding: 6px 11px 4px 10px;
}*/
.myProductsTextContainer > h3 {
    margin-bottom: 9px;
}

.myProductsLicensesContainerRow {
    margin-top: 20px;
    max-width: 485px;
}

.myProductsLicensesBorderSeparator {
    border-bottom: 1px solid #EDEDED;
    width: 100%;
    max-width: 485px;
    padding-top: 39px;
}

.myProductsLicensesContainer {
    overflow: hidden;
}

.myProductsLicensesRow {
    width: 20%;
    float: left;
    margin-top: 10px;
}

.myProductsLicensesNumber {
    float: left;
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
    font-size: 13px;
    width: 17px;
    color: #252627;
}

.myProductsLicensesText {
    float: left;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: #808080;
}

.myProductsLicensesText > b,
.myProductsLicensesNumber > b,
.myProductsFile > b {
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
    color: #252627;
}

.myProductsTableButtonContainer {
    padding-top: 30px;
}

.myProductsTableButtonContainer > a,
.myProductsTableButtonContainer > a:focus,
.myProductsTableButtonContainer > a:hover {
    display: block;
    float: left;
    width: 163px;
    padding: 7px 18px;
    font-size: 12px;
    -epub-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    -webkit-hyphens: none;
    -o-hyphens: none;
    hyphens: none;
}

.myProductsTableButtonContainer > a:first-child {
    margin-right: 8px; /*padding: 17px 18px;*/
}

.myProductsTableButtonContainer > a:last-child {
    margin-left: 8px;
}

.myProfileTitle > .buttonClass8,
.myProfileTitle > .buttonClass8:focus,
.myProfileTitle > .buttonClass8:hover {
    float: right;
}

.myProductsFileSeparator {
    border-bottom: 1px solid #EDEDED;
    margin-bottom: 4px;
    width: 100%;
}

.myProducVerticalBorder > div {
    margin-top: 35px;
}

.myProducVerticalBorderLeft {
    /*border-right: 1px solid #EDEDED;*/
}

/*.myProducVerticalBorder > div:not(:nth-child(2n)) {
	border-right: 1px solid #EDEDED;
}
.myProducVerticalBorder > div:nth-child(2n) > .myProductInfoRowContainer {
	float: right;
}*/
.myProductsFileText {
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-style: italic;
    color: #808080;
    padding-top: 14px;
    display: block;
}

.myProductsShowPurchases > div {
    position: relative;
    display: table;
    cursor: pointer;
    width: 194px;
}

.myProductsShowPurchases > div > div {
    display: block;
    float: left;
    padding: 7px 0 0 17px;
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
    font-weight: 700;
    color: #252627;
    font-size: 13px;
    text-decoration: none;
}

.myProductsShowPurchases > div > div::after {
    content: "";
    position: absolute;
    border-left: 2px solid #252627;
    border-bottom: 2px solid #252627;
    display: inline-block;
    width: 8px;
    height: 8px;
    transform: rotate(-45deg);
    right: 45px;
    top: 10px;
}

/* END MYPRODUCTS SECTION */

/* START MYPROFILE SECTION */
.myProfile {
    padding-bottom: 50px;
}

.myProfileNav {
    background-color: #EDEDED;
    position: fixed;
    right: 0;
    left: 0;
    top: 108px;
    z-index: 1030;
}

.myProfileNavColumn, .myProfileNavColumn:hover {
    background-color: #EDEDED;
    transition: color 0.3s ease-in;
}

.myProfileNavColumn:hover {
    background-color: #d9d9d9;
    transition: color 0.3s ease-out;
}

.myProfileNavColumnActive {
    background-color: #d9d9d9;
}

.myProfileNavImg {
    display: inline-block;
    max-height: 24px;
    vertical-align: middle;
}

.myProfileNavTitle {
    display: inline-block;
    padding: 18px 0 18px 8px;
}

.myProfileNavContainer > p {
    font-size: 13px;
}

.myProfileTitle > h1 {
    float: left;
}

.myProfileTitle > a,
.myProfileTitle > a:focus,
.myProfileTitle > a:hover {
    float: left;
    margin: 41px 0 0 36px;
    padding: 7px 13px;
}

.myProfileTitle {
    padding: 41px 0 17px;
}

.myProfileSubTitle {
    padding-bottom: 2px;
}

.form-group-myProfile > input, .form-group-myProfile > div {
    display: block;
    width: 100%;
}

.myProfileSelect-icon::after {
    content: "";
    position: absolute;
    border-left: 2px solid #dfe0e6;
    border-bottom: 2px solid #dfe0e6;
    display: inline-block;
    width: 10px;
    height: 10px;
    transform: rotate(-45deg);
    right: 20px;
    top: 40px;
}

.myProfileButtonContainer {
    padding-top: 19px;
}

.myProfileCancelAccountLink, .myProfileCancelAccountLink:focus, .myProfileCancelAccountLink:hover {
    color: #ba3f3f;
    font-size: 13px;
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
    text-decoration: underline;
}

.myProfileNormalInputRight > i {
    right: 9px;
    top: 30px !important;
}

.myProfileSelectInputRight > i {
    right: 36px;
    top: 30px;
}

.myProfile small.help-block {
    color: #a94442;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
}

/* END MYPROFILE SECTION */

/* START FAQ SECTION */
.faqTable {
    margin-top: 30px;
    margin-bottom: 20px;
}

.faqCabecera {
    background-color: #809F5C;
}

.faqCeldaCabecera {
    color: #ffffff;
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
    padding: 10px 15px 10px 15px;
}

.faqHileraPar {
    background-color: #DCDCDC;
    border-top: 2px solid #ffffff;
}

.faqHileraImpar {
    background-color: #E9E9E9;
    border-top: 2px solid #ffffff;
}

.faqCeldaContent {
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    padding: 25px 15px 21px 15px;
}

.faqCelda {
    font-size: 15px;
    -epub-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    -webkit-hyphens: none;
    -o-hyphens: none;
    hyphens: none;
    text-align: center;
}

/* END FAQ SECTION */

/* START SIGNUPSELECT SECTION */
.signUpSelectButtonContainer {
    padding: 39px 0 39px;
}

.signUpSelectContainerMax {
    max-width: 525px;
}

.signUpSelectButtonContainer > .buttonClass1 {
    padding: 8px 13px;
    width: 204px;
}

.signUpSelectButtonContainer > .buttonClass1:first-child {
    margin-right: 15px;
}

.signUpSelectButtonContainer > .buttonClass1:last-child {
    margin-left: 15px;
}

/* END SIGNUPSELECT SECTION */

/* START SIGNUPPERSONAL SECTION */
.changeSignUpType, .changeSignUpType:focus, .changeSignUpType:hover {
    margin-top: 10px;
    color: #ff216c;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 15px;
}

.loginFormPersonal {
    padding-top: 34px;
    float: left;
}

.signUpPersonalContainerMax {
    max-width: 656px;
}

.form-group-signup {
    display: block;
    padding-bottom: 18px;
}

.signUpPersonalCheckContainer {
    padding-left: 170px;
}

.signUpPersonalButtonContainer {
    padding-left: 170px;
}

.captchaPadding {
    padding-left: 170px;
    width: auto !important;
    clear: both;
}

.signUpFormContainer {
    clear: both;
    display: inline-block;
}

.form-group-signup > label {
    display: inline-block;
    margin-right: 10px;
    float: left;
    padding-top: 12px;
    min-width: 160px;
}

.form-group-signup > input, .form-group-signup > div {
    display: inline-block;
    width: auto;
    float: left;
    width: 350px;
}

.distributionSelect-icon::after {
    right: 34px !important;
}

.signUpSelect-icon::after {
    content: "";
    position: absolute;
    border-left: 2px solid #dfe0e6;
    border-bottom: 2px solid #dfe0e6;
    display: inline-block;
    width: 10px;
    height: 10px;
    transform: rotate(-45deg);
    right: 22px;
    top: 13px;
}

.signUpPersonalH2 {
    margin: 29px 0 4px;
}

.signUpRadioContainer {
    padding-top: 8px;
}

.signUpRadio:empty {
    position: absolute;
    opacity: 0;
    z-index: -9000;
}

.signUpRadio + label {
    color: #333333;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
}

.signUpRadio + label {
    padding-right: 23px;
}

.signUpRadioDistribution + label {
    padding-right: 16px;
}

.signUpRadio + label:nth-child(3n+3) {
    padding-right: 0;
}

.signUpRadio + label:nth-child(n+7) {
    padding-top: 18px;
}

.signUpRadio + label > span:first-child {
    display: inline-block;
    width: 17px;
    height: 17px;
    margin: -1px 4px 0 0;
    vertical-align: middle;
    cursor: pointer;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin-left: -26px;
}

.signUpRadio + label > span:first-child {
    background-color: #ffffff;
    border: 2px solid #ff216c;
    -webkit-box-shadow: inset 0px 0px 0px 3px rgba(255, 255, 255, 1);
    -moz-box-shadow: inset 0px 0px 0px 3px rgba(255, 255, 255, 1);
    box-shadow: inset 0px 0px 0px 3px rgba(255, 255, 255, 1);
}

.signUpRadio:checked + label > span:first-child {
    background-color: #ff216c;
    border: 2px solid #ff216c;
    -webkit-box-shadow: inset 0px 0px 0px 3px rgba(255, 255, 255, 1);
    -moz-box-shadow: inset 0px 0px 0px 3px rgba(255, 255, 255, 1);
    box-shadow: inset 0px 0px 0px 3px rgba(255, 255, 255, 1);
}

.signUpRadioGray + label > span:first-child {
    background-color: #ffffff;
    border: 2px solid #B3B3B3;
    -webkit-box-shadow: inset 0px 0px 0px 3px rgba(255, 255, 255, 1);
    -moz-box-shadow: inset 0px 0px 0px 3px rgba(255, 255, 255, 1);
    box-shadow: inset 0px 0px 0px 3px rgba(255, 255, 255, 1);
}

.signUpRadioGray:checked + label > span:first-child {
    background-color: #B3B3B3;
    border: 2px solid #B3B3B3;
    -webkit-box-shadow: inset 0px 0px 0px 3px rgba(255, 255, 255, 1);
    -moz-box-shadow: inset 0px 0px 0px 3px rgba(255, 255, 255, 1);
    box-shadow: inset 0px 0px 0px 3px rgba(255, 255, 255, 1);
}

.signUpRadio + label > span:first-child,
.signUpRadio:checked + label > span:first-child {
    -webkit-transition: background-color 0.3s linear;
    -o-transition: background-color 0.3s linear;
    -moz-transition: background-color 0.3s linear;
    transition: background-color 0.3s linear;
}

.signUpNormalInputRight > i {
    right: 18px;
    top: 40px !important;
}

.theSignUpNormalInputRight > i {
    right: 18px;
    top: 3px !important;
}

.loginNormalInputRight > i {
    right: 18px;
    top: 3px !important;
}

.signUpSelectInputRight > i {
    right: 40px;
    top: 40px;
}

.theSignUpSelectInputRight > i {
    right: 40px;
    top: 3px;
}

.signUpCheckInputRight > div > i {
    right: 2px;
    top: 40px !important;
}

.theSignUpCheckInputRight > div > i {
    right: 2px;
    top: 3px !important;
}

.signUpCaptchaInputRight > div > div > i {
    right: 18px;
    top: 40px;
}

.signUpCaptchaInputRight > div > div > .glyphicon-remove {
    color: #a94442;
}

.signUpCaptchaInputRight > div > div > .glyphicon-ok {
    color: #3c763d;
}

.theSignUpCaptchaInputRight > div > div > i {
    right: 18px;
    top: 3px;
}

.theSignUpCaptchaInputRight > div > div > .glyphicon-remove {
    color: #a94442;
}

.theSignUpCaptchaInputRight > div > div > .glyphicon-ok {
    color: #3c763d;
}

.signUpErrorContainer {
    clear: both;
    float: right !important;
}

.signUpErrorContainer, .signUpErrorContainer > small {
    color: #a94442;
}

.datepicker {
    background-color: #ffffff;
}

/* END SIGNUPPERSONAL SECTION */

/* START SIGNUPCORPORATE SECTION */
.signUpTitle {
    padding-bottom: 8px;
    padding-top: 23px;
}

.signUpTitleBetweenFloats {
    display: inline-block;
    width: 100%;
    padding-bottom: 8px;
}

/* END SIGNUPCORPORATE SECTION */

/* START CART SECTION */
.cartTitle {
    padding: 39px 0 0;
}

.myCartTitle {
    padding-top: 0;
}

.cartHilera {
    border-bottom: 1px solid #dfe0e6;
}

.img-CartProductContainer {
    padding: 22px 0 22px 0;
}

.img-CartProduct {
    max-height: 182px;
    margin-right: 40px;
}

.cartProductTextContainer {
    text-align: left;
    padding: 22px 0 10px;
    max-width: 200px;
}

.cartProductTextContainer > p {
    padding-top: 7px;
    font-size: 13px;
}

.cartProductName {
    color: #252627;
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
    font-size: 13px;
}

.cartProductTextContainerPaddingLeft {
    padding-left: 20px;
}

.cartCellPrice {
    padding-top: 11px;
    font-size: 13px;
}

.cartQuantity {
    width: 120px;
    display: table;
    margin: 0 auto 8px;
}

.cartCellAlignTop {
    vertical-align: top;
}

.cartLinkText {
    color: #444444;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 12px;
    white-space: nowrap;
    padding-top: 44px;
    display: block;
}

.cartLink, .cartLink:focus, .cartLink:hover {
    color: #ff216c;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 12px;
    text-decoration: underline;
}

.cartCabeceraFixedWidth {
    min-width: 300px;
}

.cartNoWrap {
    white-space: nowrap;
}

.cartAlignLeftFix {
    text-align: left !important;
}

.cartAlignRightFix {
    text-align: right !important;
}

.cartPromocionalCodeContainer {
    padding: 14px 0 14px;
}

.cartPromocionalCodeTile {
    color: #444444;
    display: inline-block;
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
    font-size: 13px;
}

.cartPromocionalCodeInput {
    width: 100px;
    display: inline-block;
    margin-left: 20px;
}

.cartTotalContainer {
    white-space: nowrap;
}

.cartTotal {
    color: #444444;
    display: inline-block;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 20px;
    padding-right: 5px;
}

.cartTotalPrice {
    color: #444444;
    display: inline-block;
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
    font-size: 20px;
}

.cartPaymentLabel {
    color: #444444 !important;
    display: block;
    font-size: 15px !important;
}

.img-Card {
    max-height: 27px;
}

.cartCardContainer {
    display: inline-block;
}

.cartCardSeparator {
    padding: 5px 0 5px;
}

.cartAllCardContainer {
    padding: 0 0 12px;
}

.cartAllCardContainer > div {
    margin-right: 10px;
    margin-top: 5px;
}

.cartAllCardContainer > div:last-child {
    margin-right: 0;
}

.cartSubmit {
    padding-top: 10px;
}

.cartProductsCell {
    text-align: left;
}

.cartPeriod {
    padding-top: 25px;
}

.cartRemove,
.cartRemove:focus,
.cartRemove:hover {
    color: #d9d9d9;
    text-decoration: none;
    font-size: 30px;
}

.spinContainer {
    position: relative;
    display: block;
    width: 120px;
    height: 40px;
    margin-top: 26px;
}

.spinContainer > input {
    position: absolute;
    left: 0;
    top: 0;
}

.spinContainer > div::before {
    content: 'year';
    position: absolute;
    top: 10px;
    right: 37px;

    color: #afafaf;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 14px;
}

.spinContainerYears > div::before {
    content: 'years';
}

.spinContainerYearFree > div::before {
    content: 'year free';
    width: 63px;
    right: 22px;
}

.spinContainer > div {
    position: absolute !important;
    right: 10px;
    top: 0;
    height: 38px;
}

.spinContainer > div > i {
    display: block;
    cursor: pointer;
}

.spinContainer > div > i:first-child {
    margin-top: 6px;
}

.spinContainer > div > i:last-child {
    margin-top: 1px;
}

div.spinedit {
    display: inline-block;
    position: relative;
}

input[type="text"].spinedit {
    width: 120px;
}

div.spinedit .icon-chevron-up,
div.spinedit .icon-chevron-down {
    position: relative;
    cursor: pointer;
    width: 12px;
    left: 8px;
}

div.spinedit .icon-chevron-up {
    top: -12px;
}

div.spinedit .icon-chevron-down {
    top: 3px;
    left: -4px;
}

.form-search div.spinedit, .form-inline div.spinedit, .form-horizontal div.spinedit {
    top: 5px;
}

/* END CART SECTION */

/* START LOGIN SECTION */
.thankyouContainer {
    padding-top: 68px;
}

.loginFormSection {
    padding: 125px 0 40px;
}

.loginFormContainerMax {
    max-width: 480px;
}

.img-LoginLogo {
    display: table;
    margin: 0 auto;
    max-height: 60px;
}

.loginLogoContainer > h1 {
    margin-bottom: 18px;
}

.form-login-control {
    color: #afafaf;
    background-color: #ffffff;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 14px;
    border-radius: 3px;
    border: 1px solid #dfe0e6;
}

.page-login .loginForm {
    margin-bottom: 25px;
}

.loginButtonContainer {
    padding-top: 16px;
}

.loginButtonContainer > .buttonClass1 {
    float: right;
    padding: 8px 13px;
}

.loginButtonContainer > .contactoChecksContainer {
    padding: 10px 0 0;
}

.loginButtonContainer > .contactoChecksContainer > .contactoCheckContainer {
    padding: 0;
}

.loginForgottenPass, .loginForgottenPass:focus, .loginForgottenPass:hover {
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: #ff216c;
}

.loginNewContainer {
    padding-top: 26px;
}

.loginNew {
    color: #444444;
    display: inline-block;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 16px;
    text-transform: uppercase;
}

.registerNow, .registerNow:focus, .registerNow:hover {
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: #ff216c;
}

.loginRegisterSeparator:before {
    content: " | ";
}

.loginIntroTextContainer {
    padding-top: 10px;
}

.loginLegalLinkContainer {
    padding-top: 14px;
}

.loginLegalLink, .loginLegalLink:focus, .loginLegalLink:hover {
    color: #9b9b9b;
    text-decoration: underline;
}

.img-emailSent {
    max-height: 128px;
}

.img-notFound {
    max-height: 102px;
}

.notFoundButtonContainer {
    padding: 40px 0 40px;
}

.resetPasswordTextContainer {
    padding: 30px 0 28px;
}

.resetPasswordButtonContainer {
    padding-top: 16px;
}

.resetPasswordContainer > .buttonClass4 {
    padding: 8px 13px;
}

.resetPasswordTextRemember {
    max-width: 326px;
}

.resetPasswordTextRemember > p {
    font-family: 'gotham-book-italic', Helvetica, Arial, sans-serif;
}

.resetPasswordContainerMax {
    max-width: 480px;
    display: block;
}

.resetPasswordNormalInputRight > i {
    right: 18px;
    top: 3px !important;
}

.newPasswordContainer {
    padding-bottom: 20px;
}

/* END LOGIN SECTION */

/* START CANCELACCOUNT SECTION */
.cancelAccountForm {
    max-width: 580px;
}

.cancelAccountQuestionContainer {
    padding-bottom: 23px;
}

.cancelAccountQuestion {
    font-size: 15px;
}

.cancelAccountSeparator {
    border-bottom: 1px solid #dfe0e6;
}

.cancelAccountTextContainer {
    padding-top: 22px;
}

.cancelAccountTextAreYouSure {
    padding-top: 10px;
}

.cancelAccountButtonContainer {
    padding-top: 29px;
}

.cancelAccountButtonContainer > .buttonClass1, .cancelAccountButtonContainer > .buttonClass1:focus, .cancelAccountButtonContainer > .buttonClass1:hover {
    background-color: #B93E3E;
    border-color: #B93E3E;
    color: #ffffff;
}

.cancelAccountButtonContainer > .buttonClass1:hover {
    background-color: transparent;
    border-color: #B93E3E;
    color: #B93E3E;
}

.cancelAccountTextAreaContainer {
    padding-top: 10px;
}

.cancelAccountTextAreaContainer > textarea {
    border: 1px solid #dfe0e6;
    border-radius: 0;
    background-color: #ffffff;
    color: #444444;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    padding: 8px 11px;
    resize: none;
    height: 102px;
    width: 100%;;
}

.cancelAccountErrorContainer, .cancelAccountErrorContainer > small {
    color: #a94442;
}

/* END CANCELACCOUNT SECTION */

/* START ORDERCONFIRMATION SECTION */
.orderConfirmationTitle {
    padding: 39px 0 17px;
}

.orderConfirmationSubTitle {
    margin-bottom: 0;
}

.orderConfirmationOrderNumber {
    padding: 11px 0 10px;
}

.orderConfirmationTable {
    margin-top: 9px;
    margin-bottom: 16px;
}

.orderConfirmationTotal {
    color: #444444;
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
    font-size: 20px;
}

.orderConfirmationAdvice {
    padding-top: 30px;
}

.orderConfirmationLink, .orderConfirmationLink:focus, .orderConfirmationLink:hover {
    color: #ff216c;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 12px;
    text-decoration: underline;
}

.orderConfirmationButton {
    margin-top: 25px;
    display: table;
}

.orderConfirmationButtonContainer {
    padding-top: 20px;
}

.orderConfirmationButtonContainer > .buttonClass4 {
    white-space: inherit;
}

/* END ORDERCONFIRMATION SECTION */

/* START PAYMENTGATEWAY SECTION */
.paymentGateway {
    padding: 28px 0 28px
}

.paymentGatewayText {
    font-family: 'gotham-light', Helvetica, Arial, sans-serif;
    font-size: 19px;
}

.paymentGatewayTextBold {
    color: #ff216c;
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
}

/* END PAYMENTGATEWAY SECTION */

/* START DISTRIBUTIONPROGRAM SECTION */
.distributionH2 {
    margin: 18px 0 4px;
}

.distributionProgramFormContainer {
    display: inline-block;
}

.distributionProgramFormContainer > label {
    width: 160px;
}

.distributionProgramTextAreaContainer {
    padding-top: 10px;
}

.distributionProgramTextAreaContainer > textarea {
    border: 1px solid #dfe0e6;
    border-radius: 0;
    background-color: #ffffff;
    color: #444444;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    padding: 8px 11px;
    resize: none;
    height: 102px;
    width: 350px;
}

.distributionGoBack,
.distributionGoBack:hover,
.distributionGoBack:focus {
    color: #ff216c;
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: table;
    margin: 32px 0 0 0;
}

.distributionProgramFormContainer > small {
    padding-left: 170px;
}

/* END DISTRIBUTIONPROGRAM SECTION */

/* START FREETRIAL SECTION */
.freeTrialRadioContainer {
    padding-top: 8px;
    width: 700px !important;
}

.freeTrialForm {
    padding-top: 34px;
    width: 100%;
}

.freeTrialErrorContainer {
    width: 100% !important;
    padding-left: 170px;
}

/* END FREETRIAL SECTION */

/* START MODALONEPLAYDVD SECTION */
.modalOnePlayDvdContainer {
    padding: 35px 50px 68px 50px;
}

.modalOnePlayDvdContainer > h2 {

}

.modal-OnePlayDvd {
    width: 670px !important;
}

/* END MODALONEPLAYDVD SECTION */

/* START EVOS SECTION */
.modal-evo {
    width: 767px !important;
}

.modalEvosButton {
    padding-top: 180px;
}

.modalEvosButtonContainer > a {
    display: table;
    width: 250px;
    margin: 0 auto 30px auto;
}

.modalEvoOnePlayDvdPlayerContainer {
    padding: 55px 50px 68px 50px;
}

.modalEvoContainer {
    overflow-y: auto;
    height: 60vh;
}

.modalEvoOnePlayDvdPlayerContainer > p {
    text-align: center;
}

.img-evoOnePlayDvdPlayerLogo {
    max-height: 80px;
    margin: 0 auto 30px auto;
    display: table;
}

.modalEvoOnePlayDvdPlayerButtonContainer {
    display: table;
    margin: 0 auto;
    padding-top: 25px;
    padding-bottom: 35px;
}

.modalEvoOnePlayDvdPlayerButtonContainer > a {
    display: table;
    float: right;
}

.img-evoDownloadSystem {
    float: left;
    max-height: 55px;;
    margin-right: 25px;
}

.modalEvoTable {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
}

.modalEvoTable > .modalEvoTableTitle:first-child {
    margin-top: 0 !important;
}

.modalEvoTableTitle {
    background-color: #242527;
    color: #B3B3B3;
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
    padding: 7px 0 6px 22px;
    width: 100%;
    margin-top: 50px;
}

.modalEvoTableCell {
    background-color: #e6e6e6;
    border-bottom: 1px solid #B3B3B3;
    border-left: 1px solid #B3B3B3;
    border-right: 1px solid #B3B3B3;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 13px;
    padding: 9px 22px 8px 22px;
    width: 100%;
    cursor: pointer;
}

.modalEvoTableHiddenSection {
    width: 100%;
}

.modalEvoTableHiddenCell {
    border-bottom: 1px solid #B3B3B3;
    border-left: 1px solid #B3B3B3;
    border-right: 1px solid #B3B3B3;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 13px;
    padding: 15px 22px 15px 22px;
    width: 100%;
    overflow: hidden;
}

.modalEvoTableHiddenCell:hover {
    border-top: 2px solid #B3B3B3;
    border-bottom: 3px solid #B3B3B3;
    border-left: 3px solid #B3B3B3;
    border-right: 3px solid #B3B3B3;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 13px;
    padding: 13px 20px 13px 20px;
    width: 100%;
    overflow: hidden;
}

.modalEvoTableHiddenCell > img {
    margin-right: 30px;
}

.img-modalEvoTableHidden {
    float: left;
    max-height: 18px;
}

.modalEvoTableHiddenCell > span,
.modalEvoTableHiddenCell > span:focus,
.modalEvoTableHiddenCell > span:hover {
    float: right;
    text-decoration: none;
    color: #444444;
}

.modalEvoTableHiddenSection > a,
.modalEvoTableHiddenSection > a:focus,
.modalEvoTableHiddenSection > a:hover {
    text-decoration: none;
}

/* END EVOS SECTION */

/* RESPONSIVE FACEBOOK */
.fb-comments,
.fb-comments iframe[style],
.fb-comments span {
    width: 100% !important;
}

.fb-page,
.fb-page iframe[style],
.fb-page span {
    width: 100% !important;
}

.socialContainer {
    border: 1px solid #E8E8E8;
    border-radius: 5px;
    height: 450px;
    overflow: auto;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 12px;
    position: relative;
    width: 100%;
}

/* END RESPONSIVE FACEBOOK */

/* START FOOTER SECTION */
.footerSeparator {
    background: url('../img/Footer/franjaFooter.jpg');
    background-position: center center;
    background-size: cover;
    min-height: 12px;
    width: 100%;
    z-index: 2;
}

.masterFooter {
    bottom: 0;
    display: block;
    left: 0;
    position: relative;
    width: 100%;
    z-index: 7;
}


.footerImgLinkContainer {
    display: inline-block;
}

.footerImgLogo {
    max-height: 38px;
    display: inline-block;
}

.fluendoFooterRightMenu,
.fluendoFooterRightMenu > ul,
.fluendoFooterRightMenu > ul > li,
.footerLanguageContainer {
    display: inline-block;
}

.fluendoFooterRightMenu {
    float: right;
    padding-top: 8px;
}

.fluendoFooterRightMenu .dropdown .dropdown-menu {
    top: 25px;
    left: 0;
    background-color: #444444;
}

.fluendoFooterRightMenu .dropdown .dropdown-menu > li > a {
    color: #B3B3B3;
    font-size: 11px;
}

.fluendoFooterRightMenu > ul > li > a,
.fluendoFooterRightMenu > ul > li > a:focus,
.fluendoFooterRightMenu > ul > li > a:hover {
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    text-decoration: none;
    transition: all 0.15s ease-in;
    display: inline-block;
    color: #424242;
    font-size: 14px;

}

.fluendoFooterRightMenu > ul > li:not(:last-child) > a {
    padding-right: 20px;
}

.fluendoFooterRightMenu > ul > li > a:hover {
    color: #B3B3B3;
}

.footerBackofficeLoginContainer {
    color: #B3B3B3;
    font-size: 14px;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    padding-left: 42px;
    display: inline-block;
}

.footerBackofficeLoginContainer > a,
.footerBackofficeLoginContainer > a:focus,
.footerBackofficeLoginContainer > a:hover {
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    text-decoration: none;
    transition: all 0.15s ease-in;
    display: inline-block;
    color: #424242;
    font-size: 14px;
    padding-right: 20px;
}

.footerBackofficeLoginContainer > a:hover {
    color: #B3B3B3;
}

.footerImgFluendoContainer {
    padding-top: 38px;
}

.footerImgFluendoLink {
    display: inline-block;
}

.footerImgFluendo {
    display: inline-block;
    max-height: 65px;
    padding-left: 15px;
}

.footerImgFluendoTextContainer {
    display: inline-block;
    max-width: 185px;
    hyphens: initial;
    padding-left: 14px;
    vertical-align: middle;
}

.footerImgFluendoText {
    color: #ffffff;
    font-family: "gotham-book", Helvetica, Arial, sans-serif;
    font-size: 13px;
}

.footerColumnContainer {
    max-width: 260px;
}

.footerTitleContainer > h4 {
    display: inline-block;
}

.footerContainer {
    padding-top: 18px;
}

.footerTitle {
    color: #333333;
    font-size: 16px;
    margin: 0;
    padding: 0 0 12px 0;
}

.footer-nav-left {
    float: left;
}

.footer-nav-left > ul {
    padding: 0;
    list-style: none;
}

.footer-nav-left > ul > li > a,
.footer-nav-left > ul > li > a:focus,
.footer-nav-left > ul > li > a:hover {
    text-decoration: none;
    transition: all 0.3s ease-in;
    -epub-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    -webkit-hyphens: none;
    -o-hyphens: none;
    hyphens: none;
}

.footer-nav-left > ul > li:first-child > a {
    padding-top: 0;
}

.footer-nav-left > ul > li:last-child > a {
    padding-bottom: 0;
}

/* empty lists (only second level, must be placed with a negative offset */
.footer-nav-left > ul > li:first-child > ul:first-child {
    margin-top: -6px;
}

.footerContactUs,
.footerContactUs:focus,
.footerContactUs:hover {
    display: block;
    color: #424242;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 13px;
    text-decoration: none;
    margin-bottom: 5px;
    transition: all 0.3s ease-in;
}

.footerContactUs:hover {
    color: #B3B3B3;
}

.footer-nav-left > ul > li > a {
    color: #444444;
    display: block;
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
    font-size: 12px;
    padding: 10px 0 0 0;
}

.footer-nav-left > ul > li > ul {
    list-style: none;
    padding-left: 0;
}

.footer-nav-left > ul > li > ul {
    padding-left: 12px;
}

.footer-nav-left > ul > li > ul > li > a,
.footer-nav-left > ul > li > ul > li > a:focus,
.footer-nav-left > ul > li > ul > li > a:hover {
    text-decoration: none;
    transition: all 0.3s ease-in;
    color: #424242;
    display: block;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 13px;
    padding: 5px 0 3px 0;
    transition: all 0.3s ease-in;
}

.footer-nav-left > ul > li > ul > li > a:hover {
    color: #B3B3B3;
}

.footerMinHeight {
    min-height: 217px;
}

.footerBorder {
    border-right: 1px solid #cccccc;
    min-height: 217px;
}

.footerContactText {
    color: #424242;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    font-size: 13px;
}

.footerIconsContainer {
    display: block;
}

.footerIconsContainer > a,
.footerIconsContainer > a:focus,
.footerIconsContainer > a:hover {
    color: #34CCFD;
    font-size: 20px;
    padding: 14px 4px 0 4px;
    text-decoration: none;
    transition: all 0.3s ease-out;
}

.footerIconsContainer > a:hover {
    opacity: 0.75;
    transition: all 0.3s ease-in;
}

.footerIconsContainer > a:first-child {
    padding-left: 0;
}

.footerIconsContainer > a:last-child {
    padding-right: 0;
}

.poweredby {
    min-height: 37px;
    background-color: #242527;
    bottom: 0;
    width: 100%;
}

.poweredbyContent {
    color: #B3B3B3;
    font-size: 12px;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
    padding: 13px 0 10px;
}

.poweredbyContent > a,
.poweredbyContent > a:focus,
.poweredbyContent > a:hover {
    color: #9b9b9b;
    font-size: 12px;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
}

footer .language > li > a,
footer .language > li > a:hover,
footer .language > li > a:focus {
    font-size: 12px;
    color: #424242;
}

.footerIconsContainer {
    display: inline-block;
    padding: 0 30px 0 40px;
}

.footerIconsContainer > a,
.footerIconsContainer > a:focus,
.footerIconsContainer > a:hover {
    color: #B3B3B3;
    font-size: 17px;
    padding: 0 4px 0 4px;
    text-decoration: none;
    transition: all 0.3s ease-out;
}

.footerIconsContainer > a:hover {
    opacity: 0.6;
    transition: all 0.3s ease-in;
}

.footerIconsContainer > a:first-child {
    padding-left: 0;
}

.footerIconsContainer > a:last-child {
    padding-right: 0;
}

/* END FOOTER SECTION */

/* START TERMSANDCONDITIONS SECTION */
.termsAndConditions {
    padding: 180px 0 90px;
}

.termsAndConditions h2 {
    margin-top: 25px;
    margin-bottom: 30px;
}

.termsAndConditionsContainer > p {
    padding-bottom: 12px;
}

/* END TERMSANDCONDITIONS SECTION */
/* START DATAPROTECTION SECTION */
.dataProtection {
    padding: 160px 0 85px;
}

.dataProtectionContainer > p {
    padding-bottom: 12px;
}

.dataProtectionPrintContainer {
    padding-top: 20px;
}

/* END DATAPROTECTION SECTION */
/* START EULA SECTION */
.eula {
    padding: 180px 0 80px;
}

.eula .h4-eula-bot {
    margin-bottom: 20px;
}

.eulaAddress {
    margin-bottom: 30px;
    margin-top: 30px;
}

.eulaAddress > span {
    display: block
}

.eulaContainer > p,
.eulaContainer > ol,
.eulaContainer > ul {
    padding-bottom: 12px;
}

.eulaPrintContainer {
    padding-top: 40px;
}

.eula .buttonRightContainer {
    margin-top: 25px;
}

.eulaPrintContainer > a:first-child {
    margin-right: 10px;
}

.eulaPrintContainer > a:last-child {
    margin-left: 10px;
}

.buttonRightContainer > a:first-child {
    margin-right: 5px;
}

.buttonRightContainer > a:last-child {
    margin-left: 5px;
}

/* END EULA SECTION */

/* START COOKIES SECTION */
.cookie-notice {
    background-color: rgba(0, 0, 0, 0.97);
    bottom: 0;
    color: #ffffff;
    display: block;
    position: fixed;
    left: 0;
    line-height: 18px;
    min-width: 100%;
    font-size: 12px;
    text-align: center;
    height: auto;
    z-index: 100000;
}

.cookie-container {
    padding: 10px 0 10px;
}

.cookie-text {
    display: inline-block;
    width: 87%;
    padding: 10px;
    font-family: 'gotham-book', Helvetica, Arial, sans-serif;
}

.cookie-text .cookies-a {
    text-decoration: none;
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
}

.cookie-policy {
    font-family: 'gotham-bold', Helvetica, Arial, sans-serif;
}

.cookie-container a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
}

.cookie-notice .button.wp-default {
    text-decoration: none;
    margin-left: 0;
    padding: 8px 14px;
    display: table;
    margin: 19px auto 0;

    display: inline-block;
    float: right;
}

.cookie-notice .button {
    margin-left: 10px;
}

.cookie-notice-container a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
}

/* END COOKIES SECTION */

/* START LEFT MENU */
.page-with-sidebar {
    padding: 0 30px 0 300px;
}

.sidebar {
    width: 265px;
    background-color: #e6e6e6;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    padding-top: 170px;
    z-index:5;
}

.sidebar a {
    padding:15px 50px;
    display: block;
    color: #3c3c3c;
    font-family: "gotham-book" , "helvetica", helvetica, arial, sans-serif;
    font-weight: 400;
}

.sidebar a:hover,
.sidebar a:focus,
.sidebar a:active {
    background-color: #cccccc;
    text-decoration: none;
}

.sidebar-cols {
    padding-left: 0;
    padding-right: 0;
}

.sidebar-icon {
    height: 25px;
    margin-right: 10px;
}


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

    .cartFirstColumn {
        min-width: 740px;
    }


    .page-with-sidebar {
        padding: 0 30px;
    }

    .sidebar {
        height: 50px;
        width: 100%;
        z-index: 100;
        position: static;
        display: block;
        padding-top: 0;
    }

    .sidebar a {
        text-align: center;
        padding: 14px 0;
    }

    .sidebar a:hover,
    .sidebar a:focus,
    .sidebar a:active {
        background-color: #cccccc;
        text-decoration: none;
    }

    .have-sidebar {
        padding-left: 15px;
    }

    .have-sidebar-container {
        max-width: 750px;
        margin: 0 auto;
        margin-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .sidebar-text {
        display: none;
    }

    .sidebar-icon {
        font-size: 20px;
        height: 25px;
        margin-right: 10px;
    }
}
/* END LEFT MENU */


/*BLOG*/
.blog,
.blog_inner {
    padding: 60px 0;
}

.blog, .blog p, .blog h1, .blog h2, .blog h3, .blog h4, .blog h5, .blog h6,
.blog_inner, .blog_inner p, .blog_inner h1, .blog_inner h2, .blog_inner h3, .blog_inner h4, .blog_inner h5, .blog_inner h6 {
    color: #3C3C3C;
}

.blog h2 {
    margin-bottom: 50px;
}

.blog .post-block {
    margin-right: 3%;
    height: 460px;
    overflow: hidden;
}

.blog .postContent {
    padding: 25px 0;
}

.blog h3 {
    line-height: 20px;
    margin-top: 0;
}

.blog h3 a {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #3C3C3C;
}

.blog h3 a:hover {
    text-decoration: none;
}

.blog_inner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center center;
    margin-top: 30px;
    margin-bottom: 50px;
}

.blog_inner p {
    text-align: justify;
}

#twitter-widget-0 {
    max-width: 340px !important;

}

.buttonNews, .buttonNews:focus {
    background-color: #eb308c;
    box-shadow: 0 6px #AE3C96;
    border-radius: 45px;
    color: #ffffff !important;
    padding: 20px 50px;
    position: relative;
    font-family: BeaufortW01-Bold;
    font-size: 25px;
    cursor: pointer;
    text-decoration: none;
    max-width: 100%;
}

.buttonNews:hover {
    box-shadow: 0 4px #AE3C96;
    color: #ffffff !important;
    top: 2px;
    text-decoration: none;
}

.buttonNews:active {
    box-shadow: 0 0 #AE3C96;
    color: #ffffff !important;
    top: 6px;
    text-decoration: none;
}

.blog .post-block img {
    max-width: 100%;
    width: 100%;
    max-height: 200px;
    height: auto;
    object-fit: cover;
}

@media (max-width: 767px) {
    .blog .post-block img {
        max-height: 350px;
    }

    .blog .post-block {
        height: 550px;
    }
}

.sidebarBlock {
    margin-bottom: 40px;
}

.sidebarBlock-h5-download {
    margin-bottom: 30px;
    margin-top: 10px;
}

.sidebarBlock-h5-facebook {
    margin-bottom: 10px;
    margin-top: 10px;
}

.sidebarBlock-h5-twitter {
    margin-bottom: 10px;
    margin-top: 0;
}

.share-this,
.tweet-this,
.facebook-this {
    display: inline-block;
    margin: 0 auto;
}

.tweet-this i,
.facebook-this i {
    vertical-align: middle;
}

.share-block {
    text-align: center;
    margin: 60px 0;
}
/*END BLOG*/


/* RESPONSIVE */
.mm-listview > li > a, .mm-listview > li > span {
    padding: 18px 10px 17px 20px;
}

label, input, select, option {
    font-family: 'gotham-medium', Helvetica, Arial, sans-serif;
    font-size: 12px;
}

select, option, input {
    font-weight: normal;
}

label {
    margin-bottom: 6px;
}

/* Large desktops and laptops */
@media (min-width: 1201px) and (max-width: 1550px) {
    .img-about {
        bottom: -60px;
    }
}

/* Large desktops and laptops */
@media (min-width: 1200px) {
    .col-lg-16 {
        width: 12.5%;
        float: left;
    }

    .col-lg-2-4 {
        position: relative;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
        width: 20%;
        float: left;
    }

    .fluendoTechSupportContainerRight > .oneplayDvdTechSupportButtonContainer {
        padding-top: 450px;
    }

    .fluendoTechSupportContainerRight > .oneplayDvdTechSupportButtonContainer > a {
        display: block;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 8px 14px 6px 14px;
        -epub-hyphens: none;
        -moz-hyphens: none;
        -ms-hyphens: none;
        -webkit-hyphens: none;
        -o-hyphens: none;
        hyphens: none;
    }

    .fluendoTechSupportContainerRight > .oneplayDvdTechSupportButtonContainer > a:last-child {
        margin-top: 20px;
    }
}

/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {

    .subHeaderContent > .headerRightContainer > nav > ul > li,
    .subHeaderContent .account-menu > li {
        padding: 0 9px;
    }

    .form-group-careers > textarea {
        width: 100%;
    }

    .col-md-2-4 {
        position: relative;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
        width: 20%;
        float: left;
    }

    .nav > li > a,
    .nav > li > a:hover,
    .nav > li > a:focus {
        font-size: 14px;
        padding: 22.5px 17.5px;
    }

    .navMega {
        left: -542px !important;
    }

    .img-boardContainerLeft {
        max-height: 204px;
    }

    .img-about {
        bottom: 0;
    }

    .endUserSolutionsButtonContainer > a:first-child {
        margin-right: 0;
    }

    .endUserSolutionsButtonContainer > a:last-child {
        margin-left: 0;
        margin-top: 12px;
    }

    .footerBorder,
    .footerMinHeight {
        min-height: 283px;
    }

    .fluendoTechSupportContainerRight > .oneplayDvdTechSupportButtonContainer {
        padding-top: 450px;
    }

    .fluendoTechSupportContainerRight > .oneplayDvdTechSupportButtonContainer > a {
        display: block;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 8px 14px 6px 14px;
        -epub-hyphens: none;
        -moz-hyphens: none;
        -ms-hyphens: none;
        -webkit-hyphens: none;
        -o-hyphens: none;
        hyphens: none;
    }

    .fluendoTechSupportContainerRight > .oneplayDvdTechSupportButtonContainer > a:last-child {
        margin-top: 20px;
    }

    .oneplayDvdTechSpecTableTitle,
    .oneplayDvdTechSpecTableCell {
        max-width: 418px;
    }

    .productoNavContainer {
        min-height: 58px;
    }

    .multimediaEndUserSolutionsProductAvailable {
        min-width: 270px;
    }

    .img-myProductsContainer {
        display: table;
        margin: 0 auto;
        float: none;
    }

    .img-myProducts {
        width: 100%;
    }

    /*.myProductsTableButtonContainer > a,
  .myProductsTableButtonContainer > a:focus,
  .myProductsTableButtonContainer > a:hover {
  	display: block;
  	float: none;
  	width: 253px;
  }
  .myProductsTableButtonContainer > a:first-child{margin-right: 0;}
  .myProductsTableButtonContainer > a:last-child{margin-left: 0;margin-top: 15px;}*/
    .myProductsShowPurchases > div > div {
        padding: 15px 0 0 0;
    }

    .myProductsShowPurchases > div > div::after {
        top: 19px;
        right: 60px;
    }

    .myProductsLicensesRow {
        width: 25%;
    }

    /*.myProductsInnerTable {*/
        /*min-width: auto;*/
    /*}*/
}

/* Portrait tablets and small desktops */
@media (max-width: 992px) {

    .subHeaderContent > .headerRightContainer > nav,
    .subHeaderContent .account-menu,
    .body-header-menu {
        display: none;
    }

    .cookie-text {
        width: 83%;
    }

    .cookie-notice .button.wp-default {
        margin: 26px auto 0;
    }

    .footerFirstColumn {
        padding-bottom: 30px;
    }

    .footerBorder {
        border: none;
    }

    .navbar-button {
        display: block;
    }

    .nav {
        display: none;
    }

    .footerColumnContainer {
        max-width: none;
    }

    .footerPaddingContacto {
        padding-top: 0;
    }

    .footerBorder, .footerMinHeight {
        min-height: 228px;
    }

    .footerImgLink {
        float: left;
    }

    .footerLogosContainer {
        overflow: hidden;
    }

    .img-about {
        bottom: 0;
    }

    .footerImgLinkContainer {
        float: left
    }

    .footerBackofficeLoginContainer {
        padding-top: 8px;
    }

    .oneplayEnterpiseSolutionsTitle > h2,
    .oneplayEnterpiseSolutionsTitle > h3 {
        text-align: center;
    }

    .oneplayEnterpiseSolutionsContainer {
        padding-left: 0;
    }

    .oneplayEnterpiseSolutionsContainer > p {
        text-align: center;
    }

    .oneplayEnterpiseSolutionsContainer > a,
    .oneplayEnterpiseSolutionsContainer > a:focus,
    .oneplayEnterpiseSolutionsContainer > a:hover {
        display: table;
        margin: 34px auto 0 auto;
    }

    .img-oneplayEnterpiseSolutions {
        display: table;
        margin: 0 auto 30px auto;
    }

    .img-oneplayFluendoCodecPack {
        display: table;
        margin: 0 auto 34px auto;
    }

    .languageTabletContainerFooter {
        position: relative;
        padding-top: 30px;
    }

    .img-oneplayEnterpiseSolutions {
        max-height: 257px;
    }

    .oneplayHomeIntroTitleContainer > h1 {
        margin-bottom: 50px;
    }

    .oneplayHomeIntro {
        padding: 158px 0 112px 0;
    }

    .endUserSolutionsSecondColumn > .endUserSolutionsProductContainer {
        display: block;
        margin: 0 0 0 0;
    }

    .endUserSolutionsThirdColumn > .endUserSolutionsProductContainer {
        display: block;
        margin: 0 0 0 0;
    }

    .productoNavContainer {
        height: 60px;
    }

    .img-oneplayDvdIntro {
        max-height: 380px;
        margin-bottom: 16px;
        margin-top: 9px;
    }

    .productoNavFixed {
        top: 107px;
    }

    .img-oneplayDvdFeatureRight {
        float: none;
    }

    .img-oneplayDvdFeatureDolby {
        margin: 16px 0 0 0;
    }

    .oneplayDvdTechSpecTitle > h2 {
        padding-top: 6px;
    }

    .img-oneplayDvdTechSupportBk {
        display: none;
    }

    .img-oneplayDvdWorldBk {
        display: none;
    }

    .fluendoTechSpecTitle > h2 {
        padding-top: 6px;
    }

    .fluendoBuyTrialBorderRight {
        border: none;
    }

    .fluendoBuyTrialContainerRight {
        padding-top: 50px;
    }

    .fluendoBuyTrial {
        padding: 82px 0 88px;
    }

    .multimediaEndUserSolutionsSecondColumn > .multimediaEndUserSolutionsProductContainer {
        display: block;
        margin: 0 0 0 0;
    }

    .multimediaEndUserSolutionsThirdColumn > .multimediaEndUserSolutionsProductContainer {
        display: block;
        margin: 0 0 0 0;
    }

    .img-multimediaEndUserSolutionsProduct {
        margin-top: 52px;
        max-height: 202px;
    }

    .img-myProductsContainer {
        display: table;
        margin: 0 auto;
        float: none;
    }

    .img-myProducts {
        width: 100%;
    }

    .freeTrialRadioContainer {
        width: 500px !important;
    }

    .myProductsSpecialContainer {
        overflow-x: scroll;
    }

    /*.myProductsTableButtonContainer > a,
  .myProductsTableButtonContainer > a:focus,
  .myProductsTableButtonContainer > a:hover {
  	display: block;
  	float: none;
  	width: auto;
  }*/
    /*.myProductsTableButtonContainer > a:first-child{margin-right: 0;}
  .myProductsTableButtonContainer > a:last-child{margin-left: 0;margin-top: 15px;}
	.myProducVerticalBorder > div:not(:nth-child(2n)) {border-right: 1px solid #EDEDED;}
	.myProducVerticalBorder > div:nth-child(2n) {border-right: none!important;}*/
    .myProductsShowPurchases > div > div {
        padding: 15px 0 0 0;
    }

    .myProductsShowPurchases > div > div::after {
        top: 19px;
        right: 60px;
    }

    .myProductsLicensesRow {
        width: 33.3%;
    }
}

@media (max-width: 991px) {

    .careersCollageImg {
        margin-top: 50px;
    }

    .contactMoreImgContainer {
        min-height: 70px;
        margin-bottom: 50px;
    }

    .contactMore a > img {
        max-height: 65px;
    }

}

@media (max-width: 809px) {
    .modal-BackOffice, .modal-OnePlayDvd {
        width: inherit !important;
    }

    .modalBackOfficeForm > a,
    .modalBackOfficeForm > a:focus,
    .modalBackOfficeForm > a:hover {
        display: block;
        margin-left: 0;
        margin-top: 16px;
    }

    .backOfficeContainerRight {
        padding: 49px 0 29px 34px;
    }

    .backOfficeModalNormalInputRight > i {
        right: 3px;
    }

}

/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {
    .col-sm-2-4 {
        position: relative;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
        width: 20%;
        float: left;
    }

    .homeProductsContainer {
        display: block;
    }

    .img-boardContainerLeft {
        max-height: 222px;
    }
}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {

    .milestonesRightBorder {
        border-right: none;
    }

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

    .endUserSolutionsButtonContainer > a:first-child {
        margin: 0 auto;
    }

    .endUserSolutionsButtonContainer > a:last-child {
        margin: 20px auto 0 auto;
    }

    .multimediaEndUserSolutionsButtonContainer > a:first-child {
        margin: 0 auto;
    }

    .multimediaEndUserSolutionsButtonContainer > a:last-child {
        margin: 20px auto 0 auto;
    }

    .col-xs-2-4 {
        position: relative;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
        width: 20%;
        float: left;
    }

    .cookie-text {
        display: unset;
    }

    .cookie-notice .button.wp-default {
        display: table;
        margin: 12px auto 0;
        float: none;
    }

    .homeProducts {
        padding: 65px 0 0;
    }

    .homeProductsContainer {
        padding-bottom: 80px;
    }

    .milestonesRow > div {
        width: 100%;
    }

    .milestonesLeftContainer::before {
        border-right: 12px solid transparent;
    }

    .milestonesLeftContainer {
        padding-left: 0;
    }

    .milestonesRightContainer::before {
        border-left: 12px solid transparent;
    }

    .milestonesRightContainer {
        padding-right: 0;
        text-align: left;
    }

    .milestonesBottomSeparator {
        padding: 20px 0;
    }

    .boardTitle {
        text-align: center;
    }

    .boardColumn-xs {
        width: 75%;
    }

    .boardContainerLeft {
        display: table;
        margin: 0 auto;
        padding-bottom: 30px;
    }

    .aboutProducts {
        padding: 45px 0 0;
    }

    .about {
        padding-bottom: 65px;
    }

    .missionVision {
        padding-bottom: 86px;
    }

    .contactData > h3,
    .contactData > span {
        text-align: center;
        display: block;
    }

    .contactSubmit > h3 {
        text-align: center;
        margin-top: 50px;
        margin-bottom: 28px;
    }

    .contactSubmit > a,
    .contactSubmit > a:focus,
    .contactSubmit > a:hover {
        display: table;
        margin: 0 auto 20px auto;
    }

    .contactMore > h3 {
        margin-top: 32px;
        margin-bottom: 15px;
    }

    .backOfficeBorder {
        border-right: none;
    }

    .backOfficeContainerLeft {
        padding: 49px 0 14px 0;
    }

    .modalBackOfficeForm > div,
    .modalBackOfficeForm > button,
    .backOfficeContainerLeft > img {
        display: table;
        margin: 0 auto;
    }

    .backOfficeContainerLeft > h4 {
        text-align: center;
    }

    .modalBackOfficeForm > a {
        text-align: center;
    }

    .backOfficeContainerRight {
        padding: 32px 0 41px 0;
    }

    .backOfficeContainerRight > img {
        display: table;
        margin: 0 auto;
    }

    .backOfficeContainerRight > p {
        text-align: center;
    }

    .oneplayEnterpiseSolutions {
        padding: 19px 0 78px;
    }

    .endUserSolutionsTitle {
        max-width: none;
    }

    .endUserSolutionsTitle > h2,
    .endUserSolutionsTitle > h3 {
        text-align: center;
    }

    .endUserSolutionsProductContainer {
        min-height: 664px !important;
        max-width: 580px !important;
        display: table !important;
        margin: 0 auto !important;
    }

    .endUserSolutionsProductContainer > h4,
    .endUserSolutionsProductContainer > p {
        text-align: center;
    }

    .img-endUserSolutionsProduct {
        display: table;
        margin: 0 auto;
    }

    .endUserSolutionsButtonContainer,
    .endUserSolutionsProductAvailable {
        display: table;
        margin: 0 auto;
    }

    .img-consultingServices {
        display: table;
        margin: 54px auto 0 auto;
    }

    .consultingServices {
        padding: 77px 0 100px;
    }

    .consultingServicesContainer {
        max-width: none;
    }

    .consultingServicesContainer > h2,
    .consultingServicesContainer > h3,
    .consultingServicesContainer > p {
        text-align: center;
    }

    .consultingServicesContainer > a,
    .consultingServicesContainer > a:focus,
    .consultingServicesContainer > a:hover {
        display: table;
        margin: 26px auto 0 auto;
    }

    .oneplayHomeIntro {
        padding: 158px 0 137px 0;
    }

    .productoNavContainer > p {
        font-size: 12px;
    }

    .productoNavTitle {
        padding: 11px 0 11px 0;
    }

    .oneplayDvdTechSupportButtonContainer > a {
        display: table;
        margin-right: 0 !important;
    }

    .oneplayDvdTechSupportButtonContainer > a:last-child {
        margin-top: 20px;
        margin-left: 0;
    }

    .oneplayDvdTechSpecTableTitle {
        margin-top: 0;
    }

    .oneplayDvdTechSpecTable {
        padding-right: 0;
    }

    .oneplayDvdTechSpecTableRight {
        float: none;
        width: inherit;
        padding-left: 0;
    }

    .fluendoCodecMeetContainer > .navigationButton {
        display: none;
    }

    .fluendoCodecMeetNavButtonContainer {
        position: relative;
        display: table;
        margin: 0 auto;
        width: 100%;
    }

    .fluendoCodecMeetCarousel {
        padding: 0 0 59px 0;
    }

    .fluendoCodecMeetCarouselContainer > p {
        padding-left: 0;
        text-align: center;
    }

    .img-fluendoCodecMeet {
        display: table;
        margin: 0 auto 28px auto;
        float: none;
    }

    .img-consultingServicesShare {
        display: none;
    }

    .consultingServicesShareTitleContainer > h2 {
        margin-top: 6px;
    }

    .endUserSolutionsTitle {
        max-width: none;
    }

    .multimediaEndUserSolutionsTitle > h2,
    .multimediaEndUserSolutionsTitle > h3 {
        text-align: center;
    }

    .multimediaEndUserSolutionsProductContainer {
        min-height: 664px !important;
        max-width: 580px !important;
        display: table !important;
        margin: 0 auto !important;
    }

    .multimediaEndUserSolutionsProductContainer > div > div > h4,
    .multimediaEndUserSolutionsProductContainer > div > div > p {
        text-align: center;
    }

    .img-multimediaEndUserSolutionsProduct {
        display: table;
        margin: 0 auto;
    }

    .multimediaEndUserSolutionsButtonContainer,
    .multimediaEndUserSolutionsProductAvailable {
        display: table;
        margin: 0 auto;
    }

    .myProfileTitle {
        padding-bottom: 0;
    }

    .myProfileSubTitle {
        padding-top: 28px;
    }

    .freeTrialRadioContainer {
        width: 450px !important;
    }

    .myProductsTableButtonContainer > a,
    .myProductsTableButtonContainer > a:focus,
    .myProductsTableButtonContainer > a:hover {
        display: block;
        float: none;
        width: auto;
        max-width: 253px;
    }

    .myProductsTableButtonContainer > a:first-child,
    .myProductsTableButtonContainer > a:first-child:focus,
    .myProductsTableButtonContainer > a:first-child:hover {
        margin: 0 0 15px 0;
    }

    .myProductsLicensesRow {
        width: 50%;
    }

    /*.myProductsTableButtonContainer > a,
  .myProductsTableButtonContainer > a:focus,
  .myProductsTableButtonContainer > a:hover {
  	width: 253px;
  }*/
    .img-homeProducts {
        max-height: unset;
    }

    .modal-evo {
        width: 100% !important;
    }

    .footerImgLinkContainer {
        width: 100%;
        margin: 0 auto;
    }

    .footerImgLink {
        width: 100%;
        text-align: center;
    }

    .footerImgLogo {
        margin-bottom: 30px;
    }

    .footerBackofficeLoginContainer {
        display: block;
        text-align: center;
        padding-left: 0;
    }

    .fluendoFooterRightMenu {
        float: none;
        padding-top: 8px;
        width: 100%;
        text-align: center;
    }

    .fluendoFooterRightMenu > ul {
        display: block;
        text-align: center;
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 0;
    }

    .footerIconsContainer {
        padding-left: 0;
    }

    .footerBackofficeLoginContainer a:last-child {
        padding-right: 0;
    }
}

@media (max-width: 656px) {

    .buttonSubmitCareers {
        float: left;
    }

    .form-group-careers > input,
    .form-group-careers > textarea,
    .form-group-careers > select,
    .form-group-careers > div {
        width: 100%;
        margin-top: 5px;
    }

    .contactMoreImgContainer {
        min-height: 70px;
        margin-bottom: 30px;
    }

    .loginFormPersonal {
        float: none;
        width: auto;
        display: block;
    }

    .signUpPersonalCheckContainer {
        padding-left: 0;
    }

    .distributionProgramFormContainer {
        padding-left: 0;
    }

    .captchaPadding, .signUpPersonalButtonContainer {
        padding-left: 0;
    }

    .signUpFormContainer {
        float: none !important;
    }

    .form-group-signup > label {
        float: none;
        display: block;
    }

    .form-group-signup > input, .form-group-signup > div {
        float: none !important;
        display: block;
    }

    .signUpNormalInputRight > i {
        right: 8px;
        top: 38px !important;
    }

    .theSignUpNormalInputRight > i {
        right: 8px;
        top: 38px !important;
    }

    .signUpSelectInputRight > i {
        right: 40px;
        top: 38px;
    }

    .theSignUpSelectInputRight > i {
        right: 40px;
        top: 38px;
    }

    .select-icon::after {
        right: 22px;
        top: 47px;
    }

    .signUpSelect-icon::after {
        right: 22px;
        top: 47px;
    }

    .distributionProgramFormContainer > label {
        width: 100%;
    }

    .distributionSelect-icon::after {
        right: 20px !important;
        top: 12px;
    }

    .distributionSelect-icon > i {
        top: 4px;
    }

    .distributionProgramFormContainer > div {
        position: relative;
    }

    .myProductsEmptyButtonContainer > a {
        display: table;
    }

    .myProductsEmptyButtonContainer > a:first-child {
        margin-right: 0;
    }

    .myProductsEmptyButtonContainer > a:last-child {
        margin-left: 0;
        margin-top: 15px;
    }

    .freeTrialRadioContainer {
        width: 100% !important;
    }

    .distributionProgramFormContainer > small {
        padding-left: 0;
    }

    .freeTrialErrorContainer {
        padding-left: 0;
    }

    .myProductInfoColContainer {
        width: 100%;
    }

    .myProducVerticalBorder > div {
        border: none !important;
    }

    .myProfileTitle > .buttonClass8,
    .myProfileTitle > .buttonClass8:focus,
    .myProfileTitle > .buttonClass8:hover {
        float: none;
        display: table;
        clear: both;
        margin: 0;
    }

    .cartTitle {
        padding-bottom: 20px;
    }

    .myProducVerticalBorder > div:nth-child(2n) > .myProductInfoRowContainer {
        float: none;
    }

    /*.myProductInfoRowContainer{padding-bottom: 58px; /*border-bottom: 1px solid #EDEDED;}*/
    .myProducVerticalBorder > div:last-child > .myProductInfoRowContainer {
        border: none !important;
        padding-bottom: 0 !important;
    }

    .modalEvoOnePlayDvdPlayerContainer {
        padding-left: 0;
        padding-right: 0;
    }

    .modalEvoTable {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 560px) {
    .contactMoreImgContainer {
        width: 100%;
        text-align: center;
    }

    .contactMore a > img {
        margin: 0 auto;
    }

    .backofficeLoginContainer {
        display: none;
    }

    .productoNavContainer > p {
        font-size: 11px;
    }

    .productoNavColumn,
    .productoNavColumn:hover {
        padding-left: 2px;
        padding-right: 2px;
    }

    .oneplayDvdBuyTrialButtonContainer > a {
        display: table;
        margin-right: 0 !important;
    }

    .oneplayDvdBuyTrialButtonContainer > a:last-child {
        margin-top: 20px;
        margin-left: 0;
    }

    .signUpSelectButtonContainer > .buttonClass1 {
        float: none;
        display: table;
    }

    .signUpSelectButtonContainer > .buttonClass1:first-child {
        margin: 0;
    }

    .signUpSelectButtonContainer > .buttonClass1:last-child {
        margin: 0;
        margin-top: 29px;
    }

    .distributionProgramFormContainer {
        display: block;
    }

    .distributionProgramFormContainer > input, .distributionProgramFormContainer > div, .distributionProgramFormContainer > textarea {
        width: 100%;
    }

    .modalOnePlayDvdContainer {
        padding: 15px;
    }

    .myProductHalfPage {
        width: 100%;
    }

    .myProductsTextContainer {
        float: none;
    }

    .myProductInfoRowContainer {
        display: table;
        margin: 0px auto;
    }
}

/* Portrait phones and smaller */
@media (max-width: 480px) {

    .careers-panel-group .panel-heading .accordion-toggle:after {
        display: none;
    }

    .logoHeader {
        max-height: 34px;
    }

    .navbar-button {
        padding: 16px 20px 20px;
    }

    .bodyHeader {
        height: 56px;
    }

    .logoHeaderLink {
        /*padding: 19px 0;*/
        padding: 11px 0;
    }

    .milestones {
        background-image: url("../img/responsive/fluendo-milestone-resp.jpg");
    }

    .img-homeProducts {
        width: 100%;
    }

    .latestNewsColumn {
        width: 100%;
    }

    .backofficeLoginContainer {
        padding-right: 0;
    }

    .languageContainer {
        padding-right: 6px;
    }

    .subHeaderContent {
        padding: 8px 0;
    }

    .subHeaderContent > nav > ul > li {
        padding: 0 6px;
    }

    .languageContainer {
        float: right;
    }

    .headerRightContainer > div:first-child {
        padding-right: 0;
    }

    .footerImgLogo {
        max-height: 60px;
    }

    .footerClear {
        width: 100%;
    }

    .img-board {
        width: 15%;
    }

    .img-boardConsulting {
        width: 15%;
    }

    .boardColumn-xs {
        width: 85%;
    }

    .generalContactContainer,
    .generalContactForm,
    .form-group-generalContact {
        width: 100%;
    }

    .form-group-generalContact > input,
    .form-group-generalContact > div,
    .form-group-generalContact > textarea {
        width: 100%;
    }

    .footerImgLinkContainer {
        width: 100%;
    }

    .footerBackofficeLoginContainer {
        width: 100%;
        padding-left: 0;
    }

    .footerBorder {
        min-height: initial;
        padding-top: 30px;
    }

    .footerMinHeight {
        min-height: initial;
    }

    .h1_1 {
        font-size: 45px;
    }

    .img-endUserSolutionsProduct {
        max-height: 234px;
    }

    .generalContactContainer,
    .generalContactForm,
    .form-group-generalContact {
        width: 100%;
    }

    .form-group-generalContact > input,
    .form-group-generalContact > div,
    .form-group-generalContact > textarea {
        width: 100%;
    }

    .oneplayHomeIntroNavLink,
    .oneplayHomeIntroNavLink:focus,
    .oneplayHomeIntroNavLink:hover {
        font-size: 14px;
    }

    .productoNavFixed {
        top: 93px;
    }

    .oneplayDvdTechSupportButtonContainer > a {
        display: block;
        width: 100%;
    }

    .productoNavContainer > p {
        font-size: 9px;
    }

    .fluendoBuyTrialContainer > h2 {
        font-size: 30px;
    }

    .img-multimediaEndUserSolutionsProduct {
        max-height: 234px;
    }

    .multimediaEndUserSolutionsProductAvailable {
        min-width: inherit;
    }

    .multimediaEndUserSolutionsButtonContainer > a,
    .multimediaEndUserSolutionsButtonContainer > a:focus,
    .multimediaEndUserSolutionsButtonContainer > a:hover {
        display: block;
    }

    .multimediaEndUserSolutionsButtonContainer > a:first-child {
        margin-right: 0;
    }

    .multimediaEndUserSolutionsButtonContainer > a:last-child {
        margin-left: 0;
        margin-top: 12px;
    }

    .myProductsButtonContainer > .buttonClass1:first-child {
        display: block;
        margin-right: 0;
    }

    .myProductsButtonContainer > .buttonClass1:last-child {
        display: block;
        margin-top: 15px;
        margin-left: 0;
    }

    .myProfileNavTitle {
        display: none;
    }

    .myProfileNavContainer {
        padding: 16px 0 15px;
    }

    .loginFormPersonal {
        width: 100%;
        display: block;
    }

    .signUpFormContainer {
        width: 100%;
    }

    .form-group-signup > input, .form-group-signup > div {
        width: 100%;
    }

    .signUpRadio + label {
        display: block;
        padding-top: 10px !important;
    }

    .myProfileNavTitle {
        display: none;
    }

    .myProfileNavContainer {
        padding: 16px 0 15px;
    }

    .myProfileTitle > h1 {
        float: none;
    }

    .myProfileTitle > a {
        float: none;
        display: table;
        margin: 9px 0 6px 0;
    }

    .freeTrialColumnDecoder {
        width: 100%;
    }

    .img-evoDownloadSystem {
        float: none;
        display: table;
        margin: 0 auto 30px auto;
    }

    .modalEvoOnePlayDvdPlayerButtonContainer > a {
        float: none;
        margin: 0 auto;
    }

    .modalEvoTableHiddenCell {
        text-align: center;
    }

    .img-modalEvoTableHidden {
        display: inline-block;
        float: none;
    }

    .modalEvoTableHiddenCell > img {
        margin-right: 0 !important;
    }

    .modalEvoTableHiddenCell > span, .modalEvoTableHiddenCell > span:focus, .modalEvoTableHiddenCell > span:hover {
        float: none;
        display: block;
        padding-top: 15px;
    }
}

/* Old iphones */
@media (max-width: 380px) {
    .img-boardContainerLeft {
        max-height: none;
        width: 100%;
    }

    .endUserSolutionsButtonContainer > a {
        display: table;
    }

    .endUserSolutionsButtonContainer > a:first-child {
        margin: 0 auto;
    }

    .endUserSolutionsButtonContainer > a:last-child {
        margin: 12px auto 0 auto;
    }

    .multimediaEndUserSolutionsButtonContainer > a:first-child {
        margin: 0 auto;
    }

    .multimediaEndUserSolutionsButtonContainer > a:last-child {
        margin: 12px auto 0 auto;
    }

    .modalOnePlayDvdContainer {
        padding: 0;
    }

    .myProductsTableButtonContainer > a,
    .myProductsTableButtonContainer > a:focus,
    .myProductsTableButtonContainer > a:hover {
        width: auto;
    }
}

/* Old iphones */
@media (max-width: 300px) {
    .img-homeProductsLogo {
        width: 100%;
    }
}


.subFooter {
    background-color: rgba(0, 0, 0, 0.97);
    min-height: 38px;
    line-height: 38px;
}


.subFooter .logoSubFooter {
    padding: 9px 0;
    display: inline-block;
}

.subFooter ul {
    list-style: outside none none;
    margin-bottom: 0;
    padding-left: 0;
    display: inline-block;
}

.subFooter li {
    display: inline-block;
    padding-left: 35px;
}


.subFooter a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.subFooter a:hover {
    color: #ff216c;
    transition: all 0.3s ease-in;
    text-decoration: none;
}

.footerLeftContainer {
    float: left;
}

.footerRightContainer {
    float: right;
}

.fluendoRightMenu {
    display: inline-block;
}

.footerIconsContainer .language li {
    padding-left: 0;
}

footer .language > li > a, footer .language > li > a:hover, footer .language > li > a:focus {
    color: rgba(255, 255, 255, 0.7);
}

.dropup .dropdown-menu {
    margin-bottom: 0!important;
}

.dropup .dropdown-menu li {
    padding-left: 15px;
}

.language.dropup .dropdown-menu li {
    padding-left: 0;
}

@media (max-width: 991px) {
    .subFooter {
        display: none;
    }
}
