/* clearfix */
.i-cf {
    zoom: 1;
}

.i-cf:before,
.i-cf:after {
    content: " ";
    display: table;
}

.i-cf:after {
    clear: both;
}

/*
 * grid.css
 */

/*
 ************************************* Body **********************************/
.l-body {
    position: relative;
}

/*
 *********************************** Subheader *******************************/
.l-subheader {
    width: 100%;
    margin: 0 auto;
}

/*
 ******************************* Submain *************************************/
.l-submain-h {
    width: 100%;
    margin: 0 auto;
}

.-section .l-submain,
.reset--section .l-submain {
    overflow: hidden;
}

/*
 ********************************** Content ***********************************/
.l-content {
    width: 100%;
}

.l-content-h {
    min-height: 1px;
    position: relative;
}

/*
 ********************************* Footer ************************************/
.l-footer {
    position: relative;
}

/*
	 * .TYPE_STICKY (sticky footer)
	 */
.l-footer.type_sticky {
    left: 0;
    bottom: 0;
    position: absolute;
    width: 100%;
    /* height: px; */
}

/*
 ******************************** Subfooter **********************************/
.l-subfooter {
    width: 100%;
    margin: 0 auto;
}

.l-subfooter-h {
    width: 100%;
    margin: 0 auto;
}

.l-subfooter-h.i-cf .row {
    display: flex;
    flex-wrap: wrap;
}

/*
	 * .TYPE_FIXED (fixed footer)
	 */
.l-subfooter.type_fixed {
    left: 0;
    bottom: 0;
    position: fixed;
    max-width: 100% !important;
    /* height: px; */
}

/*
 *********************************** Canvas **********************************/

/*
 * .COL_CONT (columns: only CONTent)
 */
.l-canvas.col_cont .l-sidebar.at_left,
.l-canvas.col_cont .l-sidebar.at_right {
    display: none;
}

/*
 * .COL_CONTSIDE (columns: CONTent + right SIDEbar)
 */
.l-canvas.col_contside .l-content {
    float: left;
    width: 69.1489%;
}

.l-canvas.col_contside .l-sidebar.at_right {
    float: right;
    width: 25.5319%;
}

.l-canvas.col_contside .l-sidebar.at_left {
    display: none;
}

/*
 * .COL_SIDECONT (columns: left SIDEbar + CONTent)
 */
.l-canvas.col_sidecont .l-content {
    float: right;
    width: 69.1489%;
}

.l-canvas.col_sidecont .l-sidebar.at_left {
    float: left;
    width: 25.5319%;
}

.l-canvas.col_sidecont .l-sidebar.at_right {
    display: none;
}

/*
 * Reset.css
 * Partially adapted from https://github.com/necolas/normalize.css
 */

/*
 * Global resets
 */
html,
body,
div,
span,
object,
iframe,
img,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
button,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
menu,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
}

html,
body {
    width: 100%;
    height: auto;
    font-family: "Open Sans", "Raleway", Arial, sans-serif;
    font-display: swap;
}

* {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
    display: inline-block;
}

/**
 * Address styling not present in IE 8/9.
 */
[hidden] {
    display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */

/**
 * 1. Set default font family to sans-serif.
 * 2. Corrects text resizing oddly in IE6/7 when body `font-size` is set using `em` units.
 * 3. Prevent iOS text size adjust after orientation change, without disabling  zoom.
 */
html {
    font-family: sans-serif;
    /* 1 */
    font-size: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 3 */
    -ms-text-size-adjust: 100%;
    /* 3 */
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   Links
   ========================================================================== */

/*
 * Addresses `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
    outline: 0;
}

/*
 * Improves readability when focused and also mouse hovered in all browsers.
 * people.opera.com/patrickl/experiments/keyboard/test
 */
a:active,
a:hover,
input:focus,
textarea:focus,
select:focus {
    outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */

/**
 * Address font-weight styling to normal.
 */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong {
    font-weight: bold;
}

i,
em {
    font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */

/*
 * 1. Removes border when inside `a` element in IE6/7/8/9, FF3.
 * 2. Improves image quality when scaled in IE7.
 *    code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */
img {
    border: 0;
    /* 1 */
    -ms-interpolation-mode: bicubic;
    /* 2 */
    max-width: 100%;
    height: auto;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
    overflow: hidden;
}

/* ==========================================================================
   Forms
   ========================================================================== */

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
    font-family: inherit;
    /* 1 */
    font-size: 100%;
    /* 2 */
    margin: 0;
    /* 3 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
    line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
    text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
/* 1 */
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
    cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 */
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
    -webkit-appearance: textfield;
    appearance: textfield;
    /* 1 */
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    /* 2 */
    box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/* ==========================================================================
   Tables & Lists
   ========================================================================== */

/**
 * Remove most spacing between table cells.
 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption,
td,
th {
    vertical-align: top;
}

dl,
ul,
ol {
    list-style: none;
    margin: 0;
}

/*
 ************************* Widget g-breadcrumbs basic styles ***********************/
.g-breadcrumbs {
    font-size: 85%;
    position: relative;
}

/*
 ************************* Widget g-cols basic styles ************************/
.g-cols {
    zoom: 1;
}

.g-cols:before,
.g-cols:after {
    display: table;
    line-height: 0;
    content: "";
}

.g-cols:after {
    clear: both;
}

.g-cols > div {
    float: left;
    width: 100%;
    /*margin-left: 4%;*/
}

.g-cols > div:last-child {
    margin-bottom: 0 !important;
}

/*
********************** Fluid basic ******************************/
.g-cols > div:first-child,
.g-cols > div.full-width {
    margin-left: 0;
}

.g-cols > .one-half,
.g-cols > .two-quarters,
.g-cols > .two-fourths,
.g-cols > .three-sixths {
    width: 48%;
}

.g-cols > .one-third,
.g-cols > .two-sixths {
    width: 30.6666%;
}

.g-cols > .two-thirds,
.g-cols > .four-sixths {
    width: 65.3333%;
}

.g-cols > .three-quarters,
.g-cols > .three-fourths {
    width: 74%;
}

.g-cols > .one-fifth {
    width: 16.8%;
}

.g-cols > .two-fifths {
    width: 37.6%;
}

.g-cols > .three-fifths {
    width: 58.4%;
}

.g-cols > .four-fifths {
    width: 79.2%;
}

.g-cols > .one-sixth {
    width: 13.3333%;
}

/*
 ***************** Fluid with wide offset *************************/
.g-cols.offset_wide > div {
    margin-left: 6%;
}

.g-cols.offset_wide > div:first-child {
    margin-left: 0;
}

.g-cols.offset_wide > .one-half,
.g-cols.offset_wide > .two-quarters,
.g-cols.offset_wide > .two-fourths,
.g-cols.offset_wide > .three-sixths {
    width: 47%;
}

.g-cols.offset_wide > .one-third,
.g-cols.offset_wide > .two-sixths {
    width: 29.3333%;
}

.g-cols.offset_wide > .two-thirds,
.g-cols.offset_wide > .four-sixths {
    width: 64.6666%;
}

.g-cols.offset_wide > .one-quarter,
.g-cols.offset_wide > .one-fourth {
    width: 20.5%;
}

.g-cols.offset_wide > .three-quarters,
.g-cols.offset_wide > .three-fourths {
    width: 73.5%;
}

.g-cols.offset_wide > .one-fifth {
    width: 15.2%;
}

/*
 ***************** Fluid with narrow offset *************************/
.g-cols.offset_narrow > div {
    margin-left: 2.1276%;
}

.g-cols.offset_narrow > div:first-child {
    margin-left: 0;
}

.g-cols.offset_narrow > .one-half,
.g-cols.offset_narrow > .two-quarters,
.g-cols.offset_narrow > .two-fourths,
.g-cols.offset_narrow > .three-sixths {
    width: 48.9361%;
}

.g-cols.offset_narrow > .one-third,
.g-cols.offset_narrow > .two-sixths {
    width: 31.9148%;
}

.g-cols.offset_narrow > .two-thirds,
.g-cols.offset_narrow > .four-sixths {
    width: 65.9574%;
}

.g-cols.offset_narrow > .one-quarter,
.g-cols.offset_narrow > .one-fourth {
    width: 23.4042%;
}

.g-cols.offset_narrow > .three-quarters,
.g-cols.offset_narrow > .three-fourths {
    width: 74.468%;
}

.g-cols.offset_narrow > .one-fifth {
    width: 18.2978%;
}

/*
 ************************* Widget g-form basic styles ************************/
.g-form-row:before,
.g-form-row:after {
    display: table;
    content: " ";
}

.g-form-row:after {
    clear: both;
}

.g-form-row-state {
    display: none;
}

.g-form-row.check_correct .g-form-row-state {
    display: block;
    color: green;
}

.g-form-row.check_wrong .g-form-row-state {
    display: block;
    color: red;
}

.g-form-row-hint {
    font-size: 12px;
}

.g-form-group.layout_line .g-form-row-label {
    float: left;
    padding: 5px 15px 5px 0;
    text-align: right;
    width: 150px;
    margin: 0;
}

.g-form-group.layout_line .g-form-row-field {
    float: left;
    width: 400px;
}

.g-form-group.layout_line .g-form-row-state {
    clear: both;
    margin: 0 0 0 165px;
}

.g-form-group.layout_line .g-form-row-hint {
    display: block;
    clear: both;
    margin: 0 0 0 165px;
}

/* Input elements */
.g-input {
    position: relative;
}

textarea {
    overflow: auto;
    /* 1 */
    vertical-align: top;
    /* 2 */
    line-height: 20px;
    height: 120px;
    resize: vertical;
}

/* STATE: disabled */
.g-radio,
.g-checkbox {
    display: block;
    margin-bottom: 6px;
    padding-left: 20px;
}

.g-radio:first-child,
.g-checkbox:first-child {
    padding-top: 5px;
}

.g-radio > label > input[type="radio"],
.g-checkbox > label > input[type="checkbox"] {
    position: absolute;
    margin: 5px 0 0 -20px;
}

/* Buttons */
.g-btn {
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    padding: 6px 20px;
    cursor: pointer;
    position: relative;
}

.g-btn:active {
    top: 1px;
}

.g-btn.disabled,
.g-btn.disabled:hover,
.g-btn.disabled:active {
    top: 0;
}

/* STATE: disabled */
.g-btn.disabled {
    opacity: 0.5;
    cursor: default;
}

body,
p,
td {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    line-height: 24px;
}

/* Headers */
h1 {
    font: 32px/36px "Raleway", Arial, sans-serif;
    font-weight: 700;
    -webkit-font-feature-settings: "lnum";
    -moz-font-feature-settings: "lnum";
    font-feature-settings: "lnum";
    font-size: 36px;
    line-height: 46px;
}

h2 {
    font: 26px/34px "Raleway", Arial, sans-serif;
    margin-bottom: 15px;
    -webkit-font-feature-settings: "lnum";
    -moz-font-feature-settings: "lnum";
    font-feature-settings: "lnum";
    font-size: 30px;
    line-height: 40px;
}

h3 {
    font: 22px/30px "Raleway", Arial, sans-serif;
    margin-bottom: 15px;
    -webkit-font-feature-settings: "lnum";
    -moz-font-feature-settings: "lnum";
    font-feature-settings: "lnum";
    font-size: 24px;
    line-height: 34px;
}

h4 {
    font: 17px/25px "Raleway", Arial, sans-serif;
    margin-bottom: 15px;
    -webkit-font-feature-settings: "lnum";
    -moz-font-feature-settings: "lnum";
    font-feature-settings: "lnum";
    font-size: 20px;
    line-height: 30px;
}

h5 {
    font-size: 18px;
    line-height: 26px;
}

h6 {
    font-size: 16px;
    line-height: 24px;
}

.g-html h2,
.g-html h3,
.g-html h4,
.g-html h5,
.g-html h6 {
    padding-top: 10px;
}

.g-html h2:first-child,
.g-html h3:first-child,
.g-html h4:first-child,
.g-html h5:first-child,
.g-html h6:first-child,
.g-html h1 + h2,
.g-html h2 + h3,
.g-html h3 + h4,
.g-html h4 + h5,
.g-html h5 + h6 {
    padding-top: 0;
}

/* Tables */
.g-html table {
    margin-bottom: 21px;
    border-collapse: collapse;
    position: relative;
}

.g-html table > thead > tr,
.g-html table > tbody > tr,
.g-html table > tfoot > tr {
    position: relative;
}

.g-html table > thead > tr > td,
.g-html table > thead > tr > th,
.g-html table > tbody > tr > th,
.g-html table > tbody > tr > td,
.g-html table > tfoot > tr > td {
    padding: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.g-html table > thead > tr > td,
.g-html table > thead > tr > th,
.g-html table > tbody > tr > th {
    font-weight: normal;
    text-align: left;
}

/*
 ************************* Widget g-pagination basic styles ************************/
.g-pagination {
    margin-bottom: 20px;
    position: relative;
    font-size: 0;
    /* to remove inline spaces */
}

/* STATE: disabled */
.g-pagination-item.disabled {
    cursor: default;
    background: none;
    text-decoration: none;
}

/*
 ********************* Widget g-pagination modifications **************************/

/*
 * .ALIGN_CENTER
 */
.g-pagination.align_center {
    text-align: center;
}

/*
 * .ALIGN_RIGHT
 */
.g-pagination.align_right {
    text-align: right;
}

/*
 ********************** Widget w-links basic styles *********************/
.w-links-h {
    position: relative;
}

/*
 ************************** Widget w-nav basic styles ************************/
.w-nav-list.level_2 {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 10;
}

.w-nav-list.level_3 {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 11;
}

.w-nav-list.drop_left {
    right: 0;
    left: auto;
}

.w-nav-item-h {
    position: relative;
}

.w-nav-anchor.level_2 {
    padding: 8px 20px;
    text-align: left;
}

.w-nav-anchor.level_3 {
    padding: 8px 20px;
    text-align: left;
}

.w-nav-list.place_inside.level_2 .w-nav-anchor.level_2,
.w-nav-list.place_inside.level_3 .w-nav-anchor.level_3 {
    padding-left: 40px;
}

.w-nav-list.place_inside.level_2
    .w-nav-list.place_inside.level_3
    .w-nav-anchor.level_3 {
    padding-left: 60px;
}

.w-nav-anchor .w-nav-icon {
    float: left;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    overflow: hidden;
    display: none;
}

.w-nav-hint {
    display: none;
    font-size: 11px;
    line-height: 14px;
    margin-top: 4px;
}

.w-nav-separator {
    display: none;
    float: left;
    width: 2px;
    /*temp*/
    padding: 10px 0;
    text-indent: -9999px;
    line-height: 18px;
}

/*
 ********************* Element w-nav-list modifications **********************/

/*
		 * .layout_hor.width_auto.WITH_SEPARATOR (has separator)
		 */
.w-nav-list.layout_hor.width_auto.with_separator
    > .w-nav-list-h
    > .w-nav-separator {
    display: block;
}

/*
	 * .layout_hor.WIDTH_STRETCH (width: 100%, list acts like a table)
	 */
.w-nav-list.layout_hor.width_stretch {
    display: table;
    width: 100%;
}

.w-nav-list.layout_hor.width_stretch > .w-nav-list-h {
    display: table-row;
}

/*
		 * .layout_hor.width_stretch.WITH_SEPARATOR (has separator)
		 */
.w-nav-list.layout_hor.width_stretch.with_separator
    > .w-nav-list-h
    > .w-nav-separator {
    display: table-cell;
    float: none;
    padding: 0;
    font-size: 0;
}

/*
	 * .layout_hor.WIDTH_FULL (width: 100%, elements are distributed among the list)
	 */
.w-nav-list.layout_hor.width_full > .w-nav-list-h {
    text-align: justify;
    line-height: 0;
    text-justify: newspaper;
    text-align-last: justify;
    zoom: 1;
}

.w-nav-list.layout_hor.width_full > .w-nav-list-h:after {
    visibility: hidden;
    display: inline-block;
    width: 100%;
    height: 0;
    overflow: hidden;
    content: "";
}

/*
		 * .layout_hor.width_full.WITH_SEPARATOR (has separator)
		 */
.w-nav-list.layout_hor.width_full.with_separator
    > .w-nav-list-h
    > .w-nav-separator {
    display: inline-block;
    float: none;
    position: relative;
    text-align: left;
    line-height: normal;
    vertical-align: top;
    zoom: 1;
}

/*
 * .LAYOUT_SITEMAP (fixed width used to create sitemap view)
 */
.w-nav-list.layout_sitemap.level_1 {
    width: 720px;
    /* temp */
    font-size: 0;
}

.w-nav-list.layout_sitemap.level_1 .w-nav-anchor.level_1 {
    text-align: left;
}

.w-nav-list.layout_sitemap.level_1 .w-nav-list.level_2,
.w-nav-list.layout_sitemap.level_1 .w-nav-list.level_3 {
    position: relative;
}

.w-nav-list.layout_sitemap.level_2 {
    width: 540px;
    /* temp */
    font-size: 0;
}

/*
 * .PLACE_INSIDE (located inside the parent node)
 */
.w-nav-list.place_inside {
    position: static;
}

/*
 * .PLACE_UP (drops up)
 */
.w-nav-list.place_up {
    left: 0;
    bottom: 100%;
    top: auto;
}

.w-nav-list.place_up.drop_left {
    top: auto;
    bottom: 100%;
    right: 0;
    left: auto;
}

/*
 * .PLACE_ASIDE (drops to the right)
 */
.w-nav-list.place_aside {
    left: 100%;
    top: 0;
    bottom: auto;
}

.w-nav-list.place_aside.drop_left {
    right: 100%;
    left: auto;
    top: 0;
}

.w-nav-list.level_2.place_up .w-nav-list.level_3.place_aside {
    bottom: 0;
    top: auto;
}

/*
 * .SHOW_ACTIVE (show only active children elements)
 * .SHOW_ONCLICK (children elements become active on click)
 */
.w-nav-list.show_active,
.w-nav-list.show_onclick {
    display: none;
}

/*
 * .SHOW_ONHOVER (show children elements on hover)
 */
.w-nav-list.show_onhover {
    display: none;
}

/*
 * .SHOW_ALWAYS (always show children elements)
 * + always show first-level elements
 */
.w-nav-list.layout_hor.width_stretch.show_always {
    display: table;
}

/*
 ************************** Widget w-tabs basic styles ************************/
.w-tabs-list:after,
.w-tabs-list:before {
    display: table;
    content: " ";
}

.w-tabs-list:after {
    clear: both;
}

.w-tabs-item-icon {
    display: none;
    position: absolute;
    top: 10px;
    left: 10px;
    width: 24px;
    height: 24px;
}

.w-tabs-item-title {
    display: block;
    font-size: 16px;
    line-height: 24px;
}

.w-tabs-item-control {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
}

.w-tabs-section {
    position: relative;
}

.w-tabs-section-title-text {
    display: block;
    padding-right: 34px;
    font-size: 16px;
    line-height: 24px;
}

.w-tabs-section-title-control {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
}

.w-tabs-section-content {
    display: none;
}

.w-tabs-section.active .w-tabs-section-content {
    display: block;
}

/*
 ********************* Widget w-tabs modifications **********************/

/*
 * .WITH_ICON (display icons in tab's titles)
 */
.w-tabs-item.with_icon .w-tabs-item-icon,
.w-tabs-section.with_icon .w-tabs-section-title-icon {
    display: block;
}

/*
 * .LAYOUT_ACCORDION (tabs to accordion)
 */
.w-tabs.layout_accordion .w-tabs-list {
    display: none;
}

/*
  ************************** Widget w-video basic styles ************************/

.w-video-h {
    position: relative;
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
}

.w-video-h iframe,
.w-video-h object,
.w-video-h embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*
********************* Element w-video modifications **********************/

/*
 * .RATIO_4-3 (4:3 aspect ratio)
 */
.w-video.ratio_4-3 .w-video-h {
    padding-bottom: 75%;
}

/*
 * .RATIO_3-2 (3:2 aspect ratio)
 */
.w-video.ratio_3-2 .w-video-h {
    padding-bottom: 66.667%;
}

/*
 * .RATIO_1-1 (1:1 aspect ratio square format)
 */
.w-video.ratio_1-1 .w-video-h {
    padding-bottom: 100%;
}

/*!
 * ASTRA BASIC STYLES
 */

/* ====================================
====== COMMON =========================
==================================== */

body {
    background-color: #000000;
}

body:not(.page-template-page-nomenu, .renew-promo-section) {
    margin-top: 22px !important;
}

a {
    font-family: "Raleway", Arial, sans-serif;
    -webkit-font-feature-settings: "lnum";
    -moz-font-feature-settings: "lnum";
    font-feature-settings: "lnum";
    text-decoration: none;
    -webkit-transition: padding 0.25s ease, color 0.25s ease,
        background-color 0.25s ease, box-shadow 0.25s ease;
    transition: padding 0.25s ease, color 0.25s ease,
        background-color 0.25s ease, box-shadow 0.25s ease;
}

::-moz-selection {
    background-color: rgba(0, 0, 0, 0.66);
    color: #fff;
}

::selection {
    background-color: rgba(0, 0, 0, 0.66);
    color: #fff;
}

/* ====================================
====== MAIN GRID ======================
==================================== */

.l-canvas {
    background-color: #1a1a1a;
    color: #ccc;
}

.l-canvas.type_wide .l-subheader {
    max-width: 100%;
}

.l-subheader-h {
    height: 100%;
    margin: 0 auto;
    position: relative;
}

.l-main {
    position: relative;
    z-index: 1;
}

.l-submain {
    width: 100%;
    margin: 0 auto;
    position: relative;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    border-top: 1px solid #e8e8e8;
    border-color: #282828;
    padding: 40px;
}

.l-submain:first-child {
    border-top: 0;
}

/* FOR: pagehead */
.l-submain.for_pagehead {
    padding: 15px 40px;
}

.l-submain.for_pagehead h1 {
    color: #fff;
}

/* COLOR: primary */
.l-submain.color_primary {
    border-top: 0;
}

.l-submain.color_primary + .l-submain {
    border-top: 0;
}

.color_primary {
    color: #fff;
}

.g-html .color_primary h1,
.color_primary .g-html h1,
.g-html .color_primary h2,
.color_primary .g-html h2,
.g-html .color_primary h3,
.color_primary .g-html h3,
.g-html .color_primary h4,
.color_primary .g-html h4,
.g-html .color_primary h5,
.color_primary .g-html h5,
.g-html .color_primary h6,
.color_primary .g-html h6 {
    color: #fff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.color_primary a {
    color: #fff;
}

.color_primary a:hover {
    color: #fff;
}

.color_primary .g-btn.type_primary {
    background-color: #fff;
    color: #333;
}

.color_primary .g-btn.type_primary:hover {
    color: #333;
}

.l-subfooter.at_top {
    font-size: 13px;
    line-height: 20px;
    padding: 50px 40px 20px;
    background-color: #111;
    border-top: 1px solid #222;
    color: #666;
}

.l-subfooter.at_top p {
    font-size: 13px;
    line-height: 20px;
    margin: 0 0 20px;
}

.l-subfooter.at_top p:last-child {
    margin-bottom: 0;
}

.l-subfooter.at_top h1,
.l-subfooter.at_top h2,
.l-subfooter.at_top h3,
.l-subfooter.at_top h4,
.l-subfooter.at_top h5,
.l-subfooter.at_top h6 {
    color: #ccc;
}

.l-subfooter.at_top a {
    color: #999;
    font-size: 13px;
    line-height: 20px;
}

.l-subfooter.at_top p a:hover,
.l-subfooter.at_top li a:hover {
    border-bottom: 1px solid;
}

.l-subfooter.at_bottom {
    font-size: 12px;
    line-height: 20px;
    padding: 20px 40px;
    border-top: 1px solid #222;
    background: #292929 !important;
    color: #444444;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: right;
}

body.pvg .l-subfooter.at_bottom {
    background-color: #211d3a !important;
    border-top-color: #1a172e !important;
}

.l-subfooter.at_bottom a {
    color: #777;
    border-bottom: 1px solid transparent;
}

.l-subfooter.at_bottom a:hover {
    border-bottom: 1px solid;
}

.l-subfooter.at_top .widget {
    margin-bottom: 30px;
}

.l-sidebar .widget {
    margin-bottom: 45px;
}

/* ====================================
====== TYPOGRAPHY =====================
==================================== */

h3 span.sup {
    background: black;
    font-size: 50%;
    vertical-align: super;
    color: #aaa;
    padding: 1px 4px;
}

.g-html h2 {
    padding-top: 14px;
}

.g-html h3 {
    padding-top: 16px;
}

.g-html h4,
.g-html h5,
.g-html h6 {
    padding-top: 20px;
}

/* Paragraph */
.g-html p {
    margin-bottom: 24px;
}

.g-html p a:hover {
    border-bottom: 1px solid;
}

/* Lists */
.g-html ul,
.g-html ol {
    margin-left: 35px;
    margin-bottom: 24px;
}

.g-html ul {
    list-style-type: disc;
}

.g-html ol {
    list-style-type: decimal;
}

.g-html ul li,
.g-html ol li {
    margin-bottom: 6px;
    padding-left: 2px;
}

.g-html li a:hover {
    border-bottom: 1px solid;
}

.g-html ul > li ul,
.g-html ul > li ol,
.g-html ol > li ul,
.g-html ol > li ol {
    margin-bottom: 6px;
    margin-top: 6px;
}

/* Image */
.g-html img + h1,
.g-html img + h2,
.g-html img + h3,
.g-html img + h4,
.g-html img + ul,
.g-html img + ol,
.g-html img + p {
    margin-top: 20px;
}

.g-html div[class^="animate"] {
    margin-bottom: 20px;
}

.g-html img.alignleft {
    display: inline;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

.g-html img.alignright {
    display: inline;
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
}

.g-html img.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.g-html a.image-link:hover {
    border-bottom: none;
}

.g-html a.image-link img {
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
}

.g-html a.image-link:hover img {
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=80);
    /* hack for IE8 */
    opacity: 0.8;
}

/* Address */
.g-html address {
    margin-bottom: 24px;
}

/* Preformat */
.g-html pre {
    font-size: 12px;
    padding: 10px;
    margin-bottom: 24px;
    background-color: #333;
    color: #fff;
}

/* Blockquote */
.g-html blockquote {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    font-style: italic;
    padding: 0 0 0 32px;
    margin: 0 0 24px;
    border-left-style: solid;
    border-left-width: 5px;
}

.g-html blockquote:before {
    display: none;
    content: "\201C";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 60px;
    line-height: 60px;
    height: 60px;
    width: 40px;
}

.g-html blockquote q,
.g-html blockquote p {
    font: inherit;
    margin: 0;
}

.g-html blockquote cite {
    display: block;
    font-size: 80%;
    margin-top: 8px;
}

/* ====================================
====== FORM ELEMENTS ==================
==================================== */

/* Labels & Inputs */
.g-form-row {
    zoom: 1;
    padding: 0 0 20px;
}

.g-form-row-label {
    margin: 0 0 5px;
    font-size: 15px;
}

input[type="text"],
input[type=""],
input[type="email"],
textarea,
select {
    position: relative;
    width: 100%;
    border-width: 1px;
    border-style: solid;
    border-radius: 3px;
    font-size: 15px;
    padding: 8px;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    box-shadow: 0 0 0 1px transparent;
    color: #fff;
}

input[type="text"],
input[type=""],
input[type="email"],
select {
    height: 40px;
    vertical-align: top;
}

input[type="text"]:focus,
input[type=""]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
    border-color: #777;
    box-shadow: 0 0 0 1px #777777;
}

/* STATE: error */
.g-form-row.check_wrong input[type="text"],
.g-form-row.check_wrong input[type=""],
.g-form-row.check_wrong input[type="email"],
.g-form-row.check_wrong textarea,
.g-form-row.check_wrong select {
    border-color: #f00;
    box-shadow: 0 0 0 1px #f00;
}

/* STATE: success */
.g-form-row.check_correct input[type="text"],
.g-form-row.check_correct input[type=""],
.g-form-row.check_correct input[type="email"],
.g-form-row.check_correct textarea,
.g-form-row.check_correct select {
    border-color: #5a0;
    box-shadow: 0 0 0 1px #5a0;
}

/* STATE: disabled */
.g-form-row.check_disabled input[type="text"],
.g-form-row.check_disabled input[type=""],
.g-form-row.check_disabled input[type="email"],
.g-form-row.check_disabled textarea,
.g-form-row.check_disabled select {
    resize: none;
    opacity: 0.7;
    box-shadow: none !important;
    border-color: transparent !important;
}

/* FORM: protected post */
.g-form.protected-post-form .g-form-row-field {
    float: left;
}

.g-form.protected-post-form .g-input {
    margin: 5px 10px 5px 0;
    width: 250px;
}

/* Buttons */
.g-btn,
input[type="submit"] {
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 30px;
    margin: 5px 0;
    border: none !important;
    border-radius: 3px;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.g-btn span {
    position: relative;
}

/* TYPE: default */
.g-btn.type_default {
    box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.15) inset;
    background-color: #222;
    color: #ccc;
}

.g-btn.type_default:hover {
    box-shadow: 0 0 0 26px rgba(0, 0, 0, 0.1) inset;
    color: #fff;
}

/* TYPE: primary */
.g-btn.type_primary,
input[type="submit"] {
    box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.15) inset;
    color: #fff;
}

.g-btn.type_primary:hover,
input[type="submit"]:hover {
    box-shadow: 0 0 0 26px rgba(0, 0, 0, 0.1) inset;
    color: #fff;
}

/* SIZE: small */
.g-btn.size_small,
input.g-btn.size_small,
button.g-btn.size_small {
    padding: 5px 20px;
    font-size: 12px;
}

/* SIZE: big */
.g-btn.size_big,
input.g-btn.size_big,
button.g-btn.size_big {
    padding: 15px 40px;
    font-size: 16px;
}

.g-btn .fa {
    margin: 0 8px 0 -2px;
    line-height: 0.9em;
    font-size: 1em;
}

.g-btn .fa.fa-nomargin {
    margin: 0;
}

/* g-pagination */
.g-pagination-item {
    display: inline-block;
    text-align: center;
    padding: 0;
    margin: 0 3px;
    font-size: 15px;
    line-height: 40px;
    height: 40px;
    width: 40px;
    position: relative;
    border-radius: 50%;
    color: #ccc;
    cursor: pointer;
}

.g-pagination-item.active {
    cursor: default;
    text-decoration: none;
    box-shadow: none !important;
    color: #fff;
}

.g-pagination-item.to_prev,
.g-pagination-item.to_next {
    width: auto;
    box-shadow: none;
    display: inline-block;
    padding: 0 10px;
}

/* w-links */
.w-links-item {
    font-size: 14px;
    line-height: 20px;
    padding: 7px 18px;
    position: relative;
}

/* w-nav in footer */
.l-subfooter.at_bottom .w-nav {
    float: right;
}

.l-subfooter.at_bottom .w-nav-anchor.level_1 {
    display: inline-block;
    padding: 5px;
    margin: 0 10px;
}

.l-subfooter.at_bottom .w-nav-list.level_2 {
    display: none !important;
}

/* w-pagehead */
.w-pagehead h1 {
    float: left;
    font-size: 24px;
    line-height: 40px;
    margin: 0;
    color: #ccc;
}

.w-pagehead p {
    float: left;
    font-size: 14px;
    margin: 12px 0 0 30px;
    color: #777;
}

.color_primary .w-pagehead p {
    color: #fff !important;
    opacity: 0.7;
}

.w-pagehead .g-breadcrumbs {
    float: right;
    font-size: 13px;
    margin: 8px -8px 0;
}

.g-breadcrumbs a:hover {
    border-bottom: 1px solid;
}

.g-breadcrumbs-item {
    margin-right: 8px;
}

.g-breadcrumbs-separator {
    display: inline-block;
    width: 6px;
    height: 9px;
    margin: 0 8px 2px 0;
    vertical-align: top;
}

/* w-portfolio */
.w-portfolio-item-anchor:hover .w-portfolio-item-meta {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.w-portfolio .w-portfolio-item .w-portfolio-item-title {
    font-size: 14px;
    line-height: 20px;
    font-family: "Open Sans";
    padding: 20px 60px 20px 20px;
}

.w-portfolio.icon_hide .w-portfolio-item .w-portfolio-item-title {
    padding: 20px;
}

.w-portfolio-item-meta i {
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -20px;
    text-align: center;
    font-size: 14px;
    line-height: 40px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #222;
    color: #777;
}

.w-portfolio.icon_hide .w-portfolio-item-meta i {
    display: none;
}

.w-portfolio-item-image img {
    margin: 0;
    -webkit-transition: margin 0.25s ease;
    transition: margin 0.25s ease;
}

.w-portfolio-pagination {
    padding-top: 30px;
    padding-bottom: 30px;
    margin: 20px;
}

/* w-tabs */
.w-tabs-list {
    position: relative;
    zoom: 1;
    background-color: #222;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05) inset;
}

.w-tabs-item {
    float: left;
    font-size: 0;
    position: relative;
    cursor: pointer;
    padding: 12px 20px;
    border-top: 2px solid transparent;
    -webkit-transition: background-color 0.25s ease, color 0.25s ease;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.w-tabs-item:hover {
    background-color: rgba(0, 0, 0, 0.03);
    color: #fff;
}

.w-tabs-item.active {
    box-shadow: none;
    background-color: #1a1a1a;
    border-color: #f8862c;
}

.w-tabs.layout_accordion .w-tabs-section-title-text,
.w-tabs-item-title {
    font-size: 16px;
}

.w-tabs-section-content-h {
    padding: 25px 0 1px;
}

.w-tabs-section-title {
    display: none;
    font-size: 0;
    position: relative;
    cursor: pointer;
    padding: 12px 20px;
}

.w-tabs-item-icon,
.w-tabs-section-title-icon {
    font-size: 18px;
    top: 14px;
    left: 20px;
}

.w-tabs-section-title-icon {
    display: none;
    position: absolute;
    width: 24px;
    height: 24px;
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
    /* hack for IE8 */
    opacity: 0.5;
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
}

.w-tabs-section-title:hover .w-tabs-section-title-icon,
.w-tabs-section.active .w-tabs-section-title-icon {
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
    /* hack for IE8 */
    opacity: 1;
}

.w-tabs-item.with_icon .w-tabs-item-title,
.w-tabs-section.with_icon .w-tabs-section-title-text {
    margin-left: 32px;
}

/* LAYOUT: accordion */
.w-tabs.layout_accordion {
    border-bottom: 1px solid #282828;
}

.w-tabs.layout_accordion .w-tabs-section {
    border-top: 1px solid #282828;
}

.w-tabs.layout_accordion .w-tabs-section-title {
    display: block;
    -webkit-transition: background-color 0.25s ease, color 0.25s ease;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.w-tabs.layout_accordion .w-tabs-section-title:hover {
    background-color: #222;
}

.w-tabs.layout_accordion .w-tabs-section-content-h {
    padding: 15px 20px;
}

.w-tabs.layout_accordion .w-tabs-section-title-control {
    top: 12px;
    right: 20px;
    font-size: 20px;
    line-height: 22px;
    height: 24px;
    width: 24px;
    text-align: center;
    transition: transform 0.25s ease;
}

.w-tabs.layout_accordion .w-tabs-section.active .w-tabs-section-title-control {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

/* w-video */
.w-video {
    margin-bottom: 40px;
}

.one-half .w-video,
.one-third .w-video,
.two-thirds .w-video,
.one-quarter .w-video,
.three-quarters .w-video {
    margin-bottom: 24px;
}

/* 404 page */
.page-404-content {
    text-align: center;
}

.page-404 i {
    font-size: 200px;
    color: #282828;
}

.page-404 h1 {
    font-size: 36px;
}

.page-404 h1 + p {
    font-size: 24px;
}

.page-404 .tittle_comp {
    margin-top: 50px;
}

.page-404 .tittle_module {
    font-size: 32px;
}

.page-404 .tittle_comp p {
    font-size: 18px;
    width: 80%;
}

@media (max-width: 600px) {
    .page-404 h1 {
        font-size: 24px;
    }

    .page-404 h1 + p {
        font-size: 18px;
    }

    .page-404 .tittle_comp {
        margin-top: 50px;
    }

    .page-404 .tittle_module {
        font-size: 24px;
        line-height: 1;
    }

    .page-404 .tittle_comp p {
        font-size: 15px;
        width: 100%;
    }
}

/* WPB Visual Composer Elements */
.g-html .wpb_text_column:last-child h1,
.g-html .wpb_text_column:last-child h2,
.g-html .wpb_text_column:last-child h3,
.g-html .wpb_text_column:last-child h4,
.g-html .wpb_text_column:last-child h5,
.g-html .wpb_text_column:last-child h6 {
    margin-bottom: 0;
}

.wpb_button.align_left {
    display: inline-block;
    margin-right: 6px;
}

.wpb_button.align_center {
    text-align: center;
}

.wpb_button.align_right {
    float: right;
    margin-left: 10px;
}

.ac {
    text-align: center;
}

.top-block-vrp {
    max-width: 100%;
    margin: 0 auto;
    position: fixed;
    top: 0;
    height: 22px;
    padding: 0;
    z-index: 22;
}

#virtualrealnetwork {
    padding-right: 40px;
    padding-left: 40px;
    line-height: 22px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

body:not(
        .nats-active-,
        .nats-active-cancelled-,
        .vram,
        .vrj,
        .-page,
        .page-template-page-nomenu,
        .renew-promo-section
    ) {
    margin-top: 40px !important;
}

body:not(.nats-active-, .nats-active-cancelled-, .vram, .vrj)
    .top-block-vrp {
    height: 40px;
}

body:not(.nats-active-, .nats-active-cancelled-, .vram, .vrj)
    #virtualrealnetwork {
    padding-left: 0;
    padding-right: 0;
}

body:not(.nats-active-, .nats-active-cancelled-, .vram, .vrj)
    #virtualrealnetwork
    a {
    display: block;
    line-height: 40px;
    font-size: 17px;
}

#virtualrealnetwork .network-links {
    width: 70%;
    padding-left: 5px;
    float: left;
}

#virtualrealnetwork a {
    color: #ffffff !important;
}

#virtualrealnetwork:not(.not-logged, .expired) {
    font-size: 11px;
}

#virtualrealnetwork.not-logged,
#virtualrealnetwork.expired {
    font-size: 14px;
    text-align: center;
}

#virtualrealnetwork .social-links {
    width: 30%;
    padding-right: 5px;
    float: right;
    text-align: right;
}

.hidden {
    display: none !important;
}

.helper {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.margin-r-5 {
    margin-right: 5px !important;
}

.margin-r-10 {
    margin-right: 10px !important;
}

iframe[name="google_conversion_frame"] {
    display: none;
}

.profilepress--status,
.profilepress-reset-status {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

.rotate180 {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.submainNoBorder {
    border-top: none;
}

.us_wpb_wrapper {
    position: relative;
    height: 500px;
}

.like-percent {
    display: block !important;
    height: 25px;
    float: left !important;
    width: auto !important;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 1px;
}

.like-percent.logged {
    margin-left: 10px !important;
}

.like-container-listado {
    float: right;
    height: 64px;
    padding-right: 12px;
    line-height: 64px;
    color: white;
}

.like-container-listado i.fa {
    font-size: 14px;
}

.like-container-listado .like-percentage {
    margin-left: 6px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.like-container-listado .like-new {
    display: inline;
    padding: 4px 8px;
    font-size: 12px;
    letter-spacing: 1px;
    border-radius: 2px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.6);
}

/* VR Studios */

.studio_action_call {
    text-align: center;
}

.studio_action_call button {
    margin: 40px 0;
    color: white;
    font-size: 40px;
    padding: 15px 60px;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.2);
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

.studio_primary h1 {
    color: white !important;
}

.studio_logo {
    text-align: center;
}

.-section .l-footer.type_normal {
    z-index: 1 !important;
}

.-section.safe-browse video {
    visibility: hidden;
}

.safe-browse:not(.logged-in) .hideable-by-desktop-search,
.safe-browse:not(.logged-in) .search-wrapper {
    display: none !important;
}

#reset--submit {
    padding: 10px 15px;
    color: #fff;
    border-radius: 3px;
}

body.logged-in .newsletter-privacy-policy-checkbox,
body.logged-in .newswletter-newsletter-checkbox {
    display: none !important;
}

/* ====================================
====== ISOTOPE PLUGIN =================
==================================== */

/**** Isotope Filtering ****/
.isotope-item {
    z-index: 2;
}

.isotope-hidden.isotope-item {
    pointer-events: none;
    z-index: 1;
}

/**** Isotope CSS3 transitions ****/
.isotope,
.isotope .isotope-item {
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    -ms-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.isotope {
    -webkit-transition-property: height, width;
    -moz-transition-property: height, width;
    -ms-transition-property: height, width;
    -o-transition-property: height, width;
    transition-property: height, width;
}

.isotope .isotope-item {
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform, opacity;
    -ms-transition-property: -ms-transform, opacity;
    -o-transition-property: -o-transform, opacity;
    transition-property: transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -ms-transition-duration: 0s;
    -o-transition-duration: 0s;
    transition-duration: 0s;
}

/* ====================================
   =============== VRP ================
   ==================================== */

.w-portfolio-item-anchor .w-portfolio-item-meta {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.w-portfolio-item-anchor:hover .w-portfolio-item-image img {
    margin-top: 0;
}

/*---*/

#tags {
    width: 100%;
}

[class^="select2"] {
    border-radius: 3px !important;
    padding-left: 2px !important;
}

.l-canvas.col_contside .l-content-pelicula {
    float: left;
    width: 100%;
}

/* motioncss-widgets */

.w-nav {
    position: relative;
}

.w-nav-h {
    position: relative;
}

.w-nav-h:after {
    content: "";
    display: block;
    clear: both;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

.w-nav-control {
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    height: 32px;
    display: none;
    color: white !important;
}

.w-nav-list {
    display: block;
    width: auto;
    min-width: 150px;
    position: relative;
}

.w-nav-anchor {
    display: block;
    position: relative;
    text-decoration: none;
    overflow: hidden;
}

.w-nav-anchor.level_1 {
    padding: 10px 20px;
    text-align: left;
}

.w-nav-list.layout_hor .w-nav-anchor.level_1 {
    text-align: center;
}

.w-nav-list.layout_hor.width_auto > .w-nav-list-h:after {
    content: "";
    display: block;
    clear: both;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

.w-nav-list.float_right {
    float: right;
}

.w-nav-list.show_always,
.w-nav-list.level_1 {
    display: block;
}

.w-portfolio-h {
    position: relative;
}

.w-portfolio-list-h {
    margin: 0 -5px;
    position: relative;
    width: 100%;
    display: flex;
}

.w-portfolio-list-h:before,
.w-portfolio-list-h:after {
    content: " ";
    display: table;
}

.w-portfolio-list-h:after {
    clear: both;
}

.w-portfolio-item {
    float: left;
    margin-bottom: 10px;
    width: 24.95%;
    padding: 0 5px;
    overflow: hidden;
}

.w-portfolio-item-anchor {
    display: block;
    text-decoration: none;
    position: relative;
}

.w-portfolio-item-image {
    width: 100%;
    height: 100%;
    position: relative;
    line-height: 0;
    overflow: hidden;
    padding-bottom: 75%;
    z-index: 10;
}

.w-portfolio-item-meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px;

    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform 0.25s ease;
    transition: transform 0.25s ease;
    background-color: #f0f0f0;
    border-bottom: 1px solid #282828;
}

.w-portfolio-item-title {
    font-size: 20px;
    line-height: normal;
    margin-bottom: 0;
}

.w-portfolio-item-text {
    display: block;
    line-height: normal;
}

.w-portfolio.wide-margins .w-portfolio-list-h {
    margin: 0 -10px;
}

.w-portfolio.wide-margins .w-portfolio-item {
    padding: 0 10px;
    margin-bottom: 20px;
}

.w-portfolio.columns_5 .w-portfolio-item {
    width: 19.95%;
}

.w-portfolio.columns_4 .w-portfolio-item {
    width: 24.95%;
}

.w-portfolio.columns_3 .w-portfolio-item {
    width: 33.3%;
}

.w-portfolio.columns_2 .w-portfolio-item {
    width: 99.9999%;
}

.w-portfolio.columns_1 .w-portfolio-item {
    width: 99.9999%;
}

.pageMain {
    padding: 40px;
}

.studio-list {
    display: flex;
    flex-wrap: wrap;
}

.grecaptcha-badge {
    display: none !important;
}

.home-banners {
    max-width: unset !important;
}

.home-banners-wrapper {
    padding: 40px 100px;
    border: none;
    padding-top: 0;
    margin: 60px 0 40px 0;
}

.home-banners img {
    width: 100%;
}

.home-banners .row {
    display: flex;
    justify-content: center;
}

.l-submain.home-banners-wrapper,
.main-container {
    padding-left: 40px;
    padding-right: 40px;
}

.video-title {
    text-overflow: ellipsis;
    overflow: hidden;
    width: 99%;
    white-space: nowrap;
}

/* ====================================
================ VRP ==================
==================================== */

.page-template-page-peliculas-home-vrp .w-portfolio-item-meta,
.page-template-page-peliculas-home .w-portfolio-item-meta {
    position: absolute;
}

/* GIVE US  POPUP */

body.page-template-page-peliculas-home-vrp .w-portfolio-pagination,
body.page-template-page-peliculas-home .w-portfolio-pagination {
    padding-top: 0;
}

.margin-r-3 {
    margin-right: 3px !important;
}

body.page-template-page-peliculas-home-vrp span.select2-selection,
body.page-template-page-peliculas-home span.select2-selection {
    background: #eeeeee;
    color: #333333;
}

#noResult {
    display: none;
    color: white;
    padding: 10px 15px;
    border-radius: 3px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6);
    margin: 0 5px 20px 5px;
}

#noResult i.fa {
    margin-right: 10px;
}

.videos-loader {
    color: rgba(255, 255, 255, 0.5);
    font-size: 2em;
    text-align: center;
    display: none;
}

.videos-loader i.fa {
    margin-right: 10px;
}

.select2-container {
    margin-top: 10px !important;
}

.l-canvas.type_wide .l-subheader-h,
.l-canvas.type_wide .l-submain-h,
.l-canvas.type_wide + .l-footer .l-subfooter-h {
    max-width: 100%;
}

.compatible-devices {
    padding-bottom: 50px;
}

.compatible-devices p {
    margin-bottom: 0;
    text-align: center;
}

.devices-home {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    order: 1;
}

.device-item {
    justify-content: center;
    display: flex;
    margin: 0 20px;
}

.device-item img {
    align-self: center;
    height: 60px;
}

.w-portfolio-item-h {
    position: relative;
}

.w-portfolio-item-h .w-portfolio-item-image {
    padding-bottom: 0px;
    height: 100%;
}

.w-portfolio-item-h .w-portfolio-item-image img {
    width: 100%;
}

.w-portfolio-item-h .w-portfolio-item-image .w-portfolio-item-meta {
    position: relative;
}

.w-nav.touch_enabled .w-nav-h {
    height: 0;
}

body.home .l-canvas.headerpos_fixed .l-main {
    padding-top: 0px;
}

body.home .l-submain {
    padding: 0px;
}

font {
    margin-top: initial !important;
    display: initial !important;
}

/* End hide menu on mobile */

body.-section .l-canvas.headerpos_fixed .l-main {
    padding-top: 0;
}

.page-template-page-big_blog .l-submain {
    padding: 40px;
}

.single-post .l-submain {
    padding: 15px 40px 40px 40px;
}

body.page-template-page-estudio-listado .l-submain.submainNoBorder {
    padding-left: 40px;
    padding-right: 40px;
}

#videos-home {
    margin-top: 0px !important;
    padding: 0px 40px 0px 40px;
}

.w-portfolio-pagination:last-of-type,
.w-portfolio-pagination:last-of-type .g-pagination {
    margin-bottom: 0;
}

.custom-portfolio {
    display: flex;
    flex-wrap: wrap;
}

.natsvrBlock p {
    font-weight: bold;
}

/* Successfully Signed Up */

body.nats_page_approval-section .natsBox,
body.-section .natsBox {
    margin-top: 100px;
    margin-bottom: 100px;
}

body.nats_page_approval-section .natsBox span,
body.-section .natsBox span {
    font-size: 1.5em;
    line-height: 1.5em;
}

body.nats_page_approval-section .natsBox div,
body.-section .natsBox div {
    padding: 10px 0;
}

.successfully-signed-up .- {
    display: none;
}

.container-resend {
    cursor: pointer;
    color: #fff;
    text-align: center;
    margin-top: 10px;
}

.container-resend.not-allowed {
    background-color: #9e9e9e !important;
    color: rgba(0, 0, 0, 0.2) !important;
    cursor: not-allowed !important;
}

.container-resend span {
    padding: 15px;
    font-size: 16px;
}

.email-not-received-container {
    text-align: center;
}

.subscription-id-request {
    display: none;
}

.subscription-id-request .error {
    font-size: 12px;
    line-height: 10px;
    background: #f44336;
    padding: 10px !important;
    color: #fff;
    border-radius: 3px;
    display: none;
}

.successfully-signed-up {
    display: none;
}

.subscription-id-request .subscription-id-request-form {
    text-align: center;
}

.subscription-id-request-form button {
    margin-top: 10px;
}

body.nats_page_approval-section .natsBox .message,
body.-section .natsBox .message {
    font-weight: bold;
    font-size: 2em;
    line-height: 1em;
}

body.nats_page_approval-section .l-footer.type_normal,
body.-section .l-footer.type_normal {
    z-index: 1 !important;
}

/* End Successfully Signed Up */

/* My  - Extra Content */
body.my-extra-content div.-gallery {
    text-align: center;
}

.w-portfolio .w-portfolio-item .w-portfolio-item-meta {
    border-color: transparent !important;
    background: transparent !important;
}

ul.custom-nav-footer-menu li {
    display: inline;
}

.button-feelconnect {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 20px;
}

/* Footer */

.l-subfooter .custom-nav-footer-menu {
    text-align: right;
}

.l-subfooter .w-nav-list-h,
.l-subfooter .social-media-icons {
    display: flex;
}

.l-subfooter a.social-media-link {
    color: #afafaf !important;
    margin-left: 10px;
    font-size: 1.5em;
}

.social-media-icons img {
    width: 20px;
}

.l-subfooter a.social-media-link:hover {
    text-decoration: none;
    border: none;
}

body:not(.vrpa, .pvg) .l-subfooter.at_top {
    background: #1a1a1a !important;
}

body.pvg .l-subfooter.at_top {
    background: #1a172e;
    border-top-color: #1a172e !important;
}

.l-subfooter .footer-logo a:hover {
    text-decoration: none !important;
    color: transparent !important;
}

.l-subfooter .footer-title {
    text-transform: uppercase;
    color: #fff;
    display: block;
    font-weight: bold;
    border-left-style: solid;
    border-left-width: 2px;
    padding-left: 15px;
    font-size: 1.1em;
    margin-bottom: 15px;
    font-family: "Raleway", Arial, sans-serif;
}

.l-subfooter ul,
.l-subfooter .text-block {
    font-size: 12px;
    line-height: 1.5em;
}

.l-subfooter .text-block {
    padding-left: 15px;
    display: block;
    margin-bottom: 10px;
}

.footer-logo .text-block {
    padding: 10px 0 0;
}

.footer-logo .social-media-icons {
    margin-bottom: 20px;
}

.l-subfooter .footer-logo a:hover {
    color: #fff !important;
}

.vrpa .l-subfooter .footer-logo a:hover {
    color: #000 !important;
}

.legal-nav {
    margin-bottom: 10px;
}

.legal-nav a {
    margin-right: 0;
}

.legal-nav a:after {
    content: "|";
    margin: 0 10px;
}

.legal-nav a:last-child:after {
    content: "";
}

.l-subfooter .footer-vert-links li {
    margin: 0 0 10px 0;
}

.l-subfooter .footer-newsletter-inscription .footer-title,
.l-subfooter .footer--and-conditions .footer-title {
    margin-bottom: 15px;
}

.l-subfooter .footer-newsletter-inscription .newsletter-input-wrapper {
    max-width: 350px;
}

.l-subfooter input.newsletter-email {
    background: #fff;
    height: 30px;
    font-size: 1em;
    color: #000;
    border: 0;
    border-radius: 35px;
    padding: 0 15px;
    display: inline-block;
    width: 95%;
}

.l-subfooter button.newsletter-submit {
    padding: 0 15px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    position: absolute;
    right: 0;
    top: -2px;
    height: 35px;
    border-radius: 30px;
    border-width: 4px;
    border-style: solid;

    -webkit-transition: background-color 100ms linear;
    -ms-transition: background-color 100ms linear;
    transition: background-color 100ms linear;
}

/*.l-subfooter form.newsletter-inscription {
    margin: 10px 0 0 15px;
}*/

.l-subfooter .input-block {
    display: flex;
    flex-direction: row;
    position: relative;
}

form.newsletter-inscription .acceptance-checks {
    font-size: 0.9em;
    line-height: 1.3em;
}

form.newsletter-inscription .acceptance-checks .input-block {
    margin-top: 10px;
    align-items: center;
}

form.newsletter-inscription .acceptance-checks span {
    padding-left: 10px;
    font-size: 12px;
}

form.newsletter-inscription .acceptance-checks span a {
    font-size: 12px !important;
    font-family: "Open Sans", Arial, sans-serif !important;
}

form.newsletter-inscription .response {
    color: #fff;
    margin-top: 10px;
    font-size: 0.9em;
    padding: 10px;
    border-radius: 4px;
    line-height: 1.3em;
    display: none;
    align-items: center;
}

form.newsletter-inscription .response.success {
    background: #4caf50;
}

form.newsletter-inscription .response.error {
    background: #f44336;
}

form.newsletter-inscription .response i.fa {
    margin-right: 10px;
}

.l-subfooter.at_top section {
    padding: 0 10px;
}

.l-subfooter.at_top .expanded .footer-title:after {
    transform: rotate(45deg);
}

.l-subfooter.at_top section.footer_left {
    width: 31%;
}

.l-subfooter.at_top section.footer-categories {
    width: 23%;
}

.l-subfooter.at_top section.footer-network {
    width: 23%;
}

.l-subfooter.at_top section.footer-about {
    width: 23%;
}

.vrpa .l-subfooter .footer-title {
    color: #000000 !important;
}

.category-links-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-links-section .category-link {
    transition: all linear 0.2s;
}

.category-links-section .category-link:hover {
    opacity: 0.5;
}

.category-links-section .link-mov {
    display: none;
}

.slider-thumbs {
    aspect-ratio: 300 / 169;
}

.slider-thumbs img {
    width: 100%;
}

@media (max-width: 768px) {
    .l-subfooter.at_top section {
        padding: 0;
    }

    .l-subfooter.at_top section.footer_left {
        width: 100% !important;
    }

    .legal-nav {
        margin-top: 20px;
    }

    .footer_left {
        display: flex;
    }

    .footer-newsletter-inscription {
        margin-top: 0 !important;
    }

    .l-subfooter.at_top section.footer-categories {
        width: 50%;
        padding-top: 25px;
    }

    .l-subfooter.at_top section.footer-about {
        width: 50%;
        padding-top: 25px;
    }

    .l-subfooter.at_top section.footer-network {
        width: 100%;
        padding-top: 25px;
    }

    .copyright-disclaimer .col-xs-12 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .l-subfooter.at_top .row {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 600px) {
    body.mobile section.footer-categories:not(.expanded) .footer-vert-links,
    body.mobile section.footer-network:not(.expanded) .footer-vert-links,
    body.mobile section.footer-about:not(.expanded) .footer-vert-links {
        display: none;
    }

    .l-subfooter.at_top section {
        padding: 0;
    }

    .l-subfooter.at_top section.footer_left {
        width: 100% !important;
    }

    .legal-nav {
        margin-top: 20px;
        text-align: center;
    }

    .legal-nav a {
        padding: 10px 20px;
        display: inline-block;
    }

    .footer_left {
        display: block;
        margin-bottom: 20px;
    }

    .footer-newsletter-inscription {
        margin-top: 0 !important;
    }

    .l-subfooter.at_top section.footer-categories,
    .l-subfooter.at_top section.footer-about,
    .l-subfooter.at_top section.footer-network {
        width: 100%;
        padding-top: 0;
    }

    .copyright-disclaimer {
        border-top: 0;
    }

    .footer-network {
        border-bottom: 1px solid #666;
    }

    .copyright-disclaimer .col-xs-12 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .l-subfooter .footer-categories .footer-title,
    .l-subfooter .footer-about .footer-title,
    .l-subfooter .footer-network .footer-title {
        padding-left: 0;
        margin-bottom: 0;
        padding: 15px 0;
        font-size: 16px;
        border-left: 0;
        border-top: 1px solid #666;
        color: #fff;
        position: relative;
        /*border-bottom:1px solid #666;*/
    }

    .l-subfooter .footer-categories .footer-title:after,
    .l-subfooter .footer-about .footer-title:after,
    .l-subfooter .footer-network .footer-title:after {
        content: "+";
        position: absolute;
        right: 10px;
        font-size: 42px;
        top: 15px;
        font-weight: 500;
        transition: all linear 0.2s;
    }

    .l-subfooter .footer-categories ul,
    .l-subfooter .footer-about ul,
    .l-subfooter .footer-network ul {
        padding: 20px 0;
    }

    .subfooter {
        padding: 20px 0;
    }

    .billers-and-info-wrapper {
        display: flex;
        flex-wrap: wrap;
        padding: 0 20px;
    }

    .billers-and-info-wrapper .biller-img {
        padding: 0;
        margin: 10px 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .l-subfooter.at_bottom {
        padding: 25px !important;
    }

    #virtualrealnetwork.not-logged,
    #virtualrealnetwork.expired {
        font-size: 13px;
    }

    body:not(.logged-in, .vram, .vrj) #virtualrealnetwork a {
        font-size: 14px;
    }

    .category-links-section {
        flex-direction: column;
    }

    .category-links-section > br,
    .category-links-section .category-link > br {
        display: none;
    }

    .category-links-section .category-link {
        display: inline-flex;
        margin-bottom: 10px;
    }

    .category-links-section .link-desk {
        display: none;
    }

    .category-links-section .link-mov {
        display: block;
    }
}

.footer-meet-us ul,
.footer-categories ul {
    display: flex;
    flex-wrap: wrap;
}

.footer-meet-us ul li,
.footer-categories ul li {
    width: 50%;
}

/* Footer */

/* Videos */

.w-portfolio-item-image-wrapper {
    position: relative;
}

.w-portfolio-item-image-wrapper .new-video-badge {
    z-index: 101;
    width: 130px;
    height: 64px;
    position: absolute;
    bottom: 20px;
}

.animated-video-poster {
    width: 100%;
}

.preview-container .preview-video {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in 0s;
    width: 100%;
    height: auto;
}

.preview-container .preview-video.preview-video-active {
    opacity: 1;
}

/* NATS Postback Page */
.nats-processing-wrapper {
    text-align: center;
}

.nats-processing-wrapper span {
    display: block;
    margin-top: 20px;
    font-size: 2em;
    font-weight: bold;
}

/* NATS Postback Page */

.metaHolder {
    display: flex;
    margin-top: 10px;
    margin-bottom: 10px;
}

.metaSingleTitle {
    width: 10%;
    display: inline-block;
    margin-right: 6px;
}

.metaSingleTitle label {
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    padding-right: 30px;
    margin: 5px 0;
    border: none !important;
    border-radius: 3px;
}

.metaSingleData {
    width: 90%;
}

/* FILTERS*/
.video-list-home-title {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    padding-bottom: 20px;
}

.video-list-home-title h3,
.video-list-home-title h2 {
    margin-right: 5px;
    margin-bottom: 0;
    font-weight: 600;
}

.categories_container {
    display: flex;
    padding-bottom: 20px;
    margin: 0 5px;
}

.categories_container a {
    display: block;
    color: #fff;
    border-radius: 3px;
    border: 2px solid #fff;
    margin-right: 5px;
    white-space: nowrap;
    flex: 1;
    text-align: center;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 34px;
    padding: 2px 15px;
}

.categories_container a h3 {
    line-height: unset;
    padding: 0;
    font-size: 15px;
    margin: 0;
    font-weight: 600;
}

.categories_container a:last-child {
    margin-right: 0;
}

.categories_container a.all-categories {
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 600;
}

.categories_container a.all-categories {
    line-height: 34px;
    background: #666;
    border: 2px solid #666;
}

.categories_container a:hover {
    background: #fff;
}

.categories_container a.all-categories:hover {
    color: #111;
    border-color: #fff;
}

.categories_container a:hover,
.categories_container a:hover h3 {
    color: #111;
}

.category .categories_container {
    justify-content: center;
}

.category .categories_container a {
    flex: none !important;
}

.loader-container {
    text-align: center;
}

.loader-spinner {
    width: 75px;
    height: 75px;
    display: inline-block;
    border-width: 2px;
    border-color: rgba(0, 0, 0, 0.05);
    animation: spin 1s infinite linear;
    border-radius: 100%;
    border-style: solid;
    border-top-color: rgb(51, 51, 51);
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Slider */

.virtualreal-slider {
    padding-bottom: 0 !important;
}

body.page-template-page-estudio-listado .tns-outer {
    margin-bottom: 10px;
}

html.mobile body.page-template-page-estudio-listado .tns-outer {
    margin-top: 10px;
}

/* Related Videos */

.loading-recommendations {
    text-align: center;
    padding: 40px 0 0 0;
    background: #111;
    font-size: 2em;
    line-height: 2em;
    color: #fff;
}

.loading-recommendations.error {
    display: none;
}

.loading-recommendations span {
    display: block;
}

.video-seo-text {
    margin-top: -40px !important;
    padding-top: 0 !important;
}

.video-seo-text p:last-child {
    margin-bottom: 0;
}

body .approval-pending-transaction {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #fff;
}

.approval-pending-transaction .processing {
    font-size: 1.3em;
    font-weight: 700;
}

.performersHome {
    display: flex;
    padding-bottom: 30px;
}

.button_container {
    text-align: center;
}

.button_container .btn-default {
    background-color: #fff;
    color: #000;
    padding: 15px 25px;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    border-radius: 30px;
    transition: all linear 0.2s;
    display: inline-block;
    margin-bottom: 50px;
}

.button_container .btn-default:hover {
    background-color: #000;
    color: #fff;
}

.performersHomeContainer h2 {
    font-weight: 600;
}

.performersHomeContainer .performerItem {
    flex: 1;
}

/* SCROOL STYLE */
.performersHome::-webkit-scrollbar-track,
.categories_container::-webkit-scrollbar-track {
    background-color: #000;
    border-radius: 10px;
    height: 5px;
}

.performersHome::-webkit-scrollbar,
.categories_container::-webkit-scrollbar {
    width: 3px;
    height: 5px;
}

.performersHome::-webkit-scrollbar-thumb,
.categories_container::-webkit-scrollbar-thumb {
    background-color: #e4003a;
    border-radius: 10px;
}

.g-hr {
    display: none;
}

/* ====================================
====== FLEXSLIDER =====================
==================================== */

.flex-loading {
    min-height: 100px;
    background: url(../img/loader2.gif) no-repeat center center;
}

.flexslider {
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.flexslider ul.slides {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.flexslider .slides:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden;
}

.flexslider .slides > li {
    display: none;
    line-height: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    margin-bottom: 0;
    padding-left: 0;
}

/* Direction Nav */
ul.flex-direction-nav {
    list-style-type: none;
    margin: 0;
}

ul.flex-direction-nav li {
    padding: 0;
    margin: 0;
}

.flex-direction-nav span {
    position: absolute;
    top: 50%;
    font-size: 34px;
    text-align: center;
    line-height: 50px;
    height: 50px;
    width: 50px;
    margin-top: -25px;
    border-radius: 50%;
    background-image: none;
    overflow: hidden;
    cursor: pointer;
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
    /* hack for IE8 */
    opacity: 0.5;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    background-color: #fff;
    color: #999;
}

.flex-direction-nav li span:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
    /* hack for IE8 */
    opacity: 1;
}

.flex-direction-nav .flex-next:before {
    display: block;
    content: "\f105";
    font-family: FontAwesome;
    margin-left: 3px;
}

.flex-direction-nav .flex-prev:before {
    display: block;
    content: "\f104";
    font-family: FontAwesome;
    margin-right: 3px;
}

.flex-direction-nav .flex-next {
    right: -50px;
}

.flexslider:hover .flex-next {
    right: 20px;
}

.flex-direction-nav .flex-prev {
    left: -50px;
}

.flexslider:hover .flex-prev {
    left: 20px;
}

.flex-direction-nav .flex-disabled {
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=30);
    /* hack for IE8 */
    opacity: 0.3 !important;
    cursor: default;
}

@media (max-width: 1200px) {
    .performersHome {
        flex-wrap: wrap;
    }

    .performersHomeContainer .performerItem {
        flex: 25%;
    }
}

@media (max-width: 1024px) {
    .categories_container {
        overflow-x: auto;
        padding-bottom: 10px;
        margin-bottom: 20px;
        margin-left: 5px;
        margin-right: 5px;
    }

    .categories_container a {
        font-size: 14px;
    }

    .video-list-home-title {
        padding: 0 5px;
    }

    .performersHomeContainer h2 {
        margin: 0 5px 15px;
    }

    .main-nav li.nav-item {
        font-size: 1.3em;
    }
}

@media (max-width: 599px) {
    .categories_container a {
        font-size: 14px;
    }

    .performersHome {
        overflow-x: auto;
        padding-bottom: 30px;
        flex-wrap: nowrap;
    }

    .performersHomeContainer {
        padding-left: 5px;
        padding-right: 5px;
    }

    .performersHomeContainer .performerItem {
        min-width: 170px;
    }

    .video-list-home-title h2 {
        margin-bottom: 15px;
    }
}

.info-explanation {
    text-align: justify;
    padding: 10px 20px;
    border-radius: 10px;
    background-color: #111111;
    margin: 10px 40px 0 40px;
    border: 1px solid #333333;
}

body:not(.vrpa, .pvg) .info-explanation {
    background-color: #111;
    border-color: #333;
    color: #fff;
}

.home .info-explanation a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
}

.home .info-explanation a:hover {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: underline !important;
}

body:not(.vrpa) .info-explanation a,
body:not(.vrpa) p > a {
    color: #fff;
    text-decoration: none !important;
}

body:not(.vrpa) .info-explanation a:hover,
body:not(.vrpa) p > a:hover {
    color: #fff;
    text-decoration: underline !important;
}

#category-description {
    background-color: #1a1a1a;
    padding-left: 0;
    padding-right: 0;
}

.category .info-explanation {
    text-align: justify;
    padding: 10px 40px;
    border-radius: 10px;
    background-color: #1a1a1a;
    border: 1px solid #1a1a1a;
    box-sizing: content-box;
    max-width: 1310px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .info-explanation {
        padding: 10px 20px;
    }
}

body:not(.vrpa).category .info-explanation {
    background-color: #1a1a1a;
    border-color: #333;
    color: #fff;
}

body.vrpa .info-explanation {
    background-color: #f0f0f0;
    border-color: #888;
}

body.vrpa #category-description {
    background: #fff;
}

.info-explanation h2 {
    font-size: 20px;
    line-height: 22px;
    font-weight: bold;
    padding-top: 10px !important;
    margin-bottom: 10px;
}

body.vrt .info-explanation h3 {
    font-size: 20px;
    line-height: 22px;
    font-weight: bold;
    padding-top: 10px !important;
    margin-bottom: 10px;
}

.info-explanation p {
    font-size: 14px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

body.vrpa .info-explanation p {
    color: rgba(0, 0, 0, 0.7) !important;
}

/**
 * Language Switcher
 */

.footer-language-switcher {
    text-align: left;
    font-size: 1.2em;
}

.wpml-ls-item-toggle {
    border: 0;
    background-color: #292929;
    color: #777;
}

.wpml-ls-legacy-dropdown-click {
    width: 12em;
}

body:not(.vrpa)
    .wpml-ls-legacy-dropdown-click
    .wpml-ls-current-language:hover
    > a,
body:not(.vrpa) .wpml-ls-legacy-dropdown-click a,
body:not(.vrpa) .wpml-ls-legacy-dropdown-click a:focus,
body:not(.vrpa) .wpml-ls-legacy-dropdown-click a:hover {
    color: #fff !important;
    background-color: #111;
    padding: 15px;
}

body:not(.vrpa) .wpml-ls-legacy-dropdown-click .js-wpml-ls-sub-menu a {
    background-color: #363636;
    padding: 15px;
}

.wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu,
.wpml-ls-legacy-dropdown-click a {
    border: 0;
}

.wpml-ls-item span {
    margin-left: 5px;
}

body:not(.vrpa) .wpml-ls-legacy-dropdown-click a:hover {
    border-bottom: 0 !important;
    background-color: #484848;
}

/**
 * Language Switcher VRPA
 */

body.vrpa .wpml-ls-legacy-dropdown-click .wpml-ls-current-language:hover > a,
body.vrpa .wpml-ls-legacy-dropdown-click a,
body.vrpa .wpml-ls-legacy-dropdown-click a:focus,
body.vrpa .wpml-ls-legacy-dropdown-click a:hover {
    color: rgba(0, 0, 0, 0.8) !important;
    background-color: #eee;
    padding: 15px;
}

body.vrpa .wpml-ls-legacy-dropdown-click .js-wpml-ls-sub-menu a {
    background-color: #efefef;
    padding: 15px;
}

body.vrpa .wpml-ls-legacy-dropdown-click a:hover {
    border-bottom: 0 !important;
    background-color: #dfdfdf;
}

.home-banners .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.home-banners .row .col-md-4 {
    padding: 0 5px !important;
}

/* BREADCRUMB */

section.breadcrumb-container nav {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 15px 0 30px 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    /*margin-bottom: 10px;*/
    list-style: none;
    color: #ccc;
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    color: #6c757d;
    content: "/";
}

.breadcrumb li a:hover {
    border-bottom: 1px solid;
}

/* ====================================
========== MEDIA QUERIES ==============
==================================== */

@media (min-width: 480px) and (max-width: 767px) {
    .w-portfolio.columns_2 .w-portfolio-item,
    .w-portfolio.columns_3 .w-portfolio-item,
    .w-portfolio.columns_4 .w-portfolio-item,
    .w-portfolio.columns_5 .w-portfolio-item {
        width: 99.9999%;
    }
}

@media screen and (min-width: 900px) and (max-width: 1024px) {
    .w-portfolio .w-portfolio-item .w-portfolio-item-title {
        padding: 10px !important;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1120px) {
    .w-portfolio .w-portfolio-item .w-portfolio-item-title {
        padding: 16px !important;
    }
}

@media (max-width: 1024px) {
    #virtualrealnetwork {
        font-size: 9px;
    }
}

@media (max-width: 320px) {
    #virtualrealnetwork .network-links {
        font-size: 8px;
    }
}

@media only screen and (max-width: 412px) {
    .network-links {
        font-size: 9px;
    }
}

@media (min-width: 900px) {
    .onlyphone {
        display: none !important;
    }
}

@media only screen and (max-width: 280px) {
    .w-portfolio-item-image {
        padding-bottom: 100%;
    }
}

@media only screen and (min-width: 281px) and (max-width: 320px) {
    .w-portfolio-item-image {
        padding-bottom: 85%;
    }
}

@media (max-width: 1279px) {
    .pageMain {
        padding: 10px 5px;
    }

    .home-banners-wrapper {
        padding: initial;
    }

    .devices-home {
        flex-wrap: wrap;
        height: auto;
        justify-content: space-evenly;
    }

    .device-item {
        width: 31% !important;
        margin: 15px 1% !important;
    }

    .w-nav-control {
        padding-right: 0px;
    }

    body.home .l-submain {
        padding: 0px;
    }

    .model-title {
        font-size: 16px;
    }

    body.page-template-page-estudio-listado .l-submain.submainNoBorder {
        padding: 0px;
    }

    #videos-home {
        margin-top: 0px !important;
        padding: 0px;
    }

    body.home .l-canvas.headerpos_fixed .l-main {
        padding-top: 0px;
    }

    body.-section
        .l-main
        .l-submain
        .g-cols:first-child
        .full-width
        div:first-child {
        min-height: 58px;
    }

    .page-template-page-big_blog .l-submain,
    .single-post .l-submain {
        padding: 10px;
    }

    .l-subfooter.at_bottom .w-nav {
        margin-bottom: 0 !important;
    }

    .metaHolder {
        display: initial;
    }

    .metaSingleData {
        width: 100%;
    }

    body.home .video-list-home-title h3 {
        padding: 0 5px;
        margin: 0;
    }

    .loading-recommendations {
        padding-top: 25px;
        font-size: 1.7em;
    }

    .loading-recommendations.error span {
        line-height: 1.3em;
        font-size: 0.9em;
        padding: 0 10px;
    }
}

@media only screen and (max-width: 991px) {
    body:not(.vrpa) .ui.modal > .close {
        color: #ffffff !important;
    }

    body.vrpa .ui.modal > .close {
        color: #000 !important;
    }

    form.newsletter-inscription .acceptance-checks .input-block {
        margin-top: 20px;
    }

    .l-subfooter.at_bottom {
        display: block;
    }

    .l-subfooter.at_bottom .custom-nav-footer-menu {
        text-align: inherit;
    }

    .l-subfooter.at_bottom .social-media-icons {
        display: block;
        margin-top: 20px;
    }

    .l-subfooter .footer-vert-links li:last-child {
        margin-bottom: 0;
    }

    .l-subfooter.at_top:last-child {
        padding-bottom: 25px;
    }

    .footer-language-switcher .wpml-floating-language-switcher > div {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .w-portfolio.columns_2 .w-portfolio-item,
    .w-portfolio.columns_3 .w-portfolio-item,
    .w-portfolio.columns_4 .w-portfolio-item,
    .w-portfolio.columns_5 .w-portfolio-item {
        width: 99.9999%;
    }
}

@media only screen and (max-width: 1270px) and (min-width: 1151px) {
    body.logged-in a.w-nav-anchor {
        padding: 0 15px !important;
    }
}

@media only screen and (max-width: 1150px) and (min-width: 1051px) {
    body.logged-in a.w-nav-anchor {
        padding: 0 12px !important;
    }
}

@media only screen and (max-width: 1023px) {
    .l-canvas.headerpos_fixed .l-main {
        padding-top: 0;
    }

    .l-canvas.headerpos_fixed.headertype_extended .l-main {
        padding-top: 0;
    }

    .l-submain {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .l-submain.for_pagehead {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .l-subfooter.at_top {
        padding-top: 40px;
        padding-bottom: 10px;
    }

    .l-subfooter.at_bottom {
        padding-top: 25px;
        padding-bottom: 0;
        text-align: center;
    }

    .l-subfooter.at_bottom .w-nav {
        float: none;
        margin-bottom: 20px;
    }

    .l-subfooter.at_bottom .w-nav-list {
        display: inline-block;
        float: none;
    }

    .g-btn.size_big,
    input.g-btn.size_big,
    button.g-btn.size_big {
        padding: 10px 30px;
        font-size: 14px;
    }

    .w-pagehead p {
        display: none;
    }

    .w-portfolio.columns_3 .w-portfolio-item,
    .w-portfolio.columns_4 .w-portfolio-item,
    .w-portfolio.columns_5 .w-portfolio-item {
        width: 33.33%;
    }

    .l-submain.home-banners-wrapper {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    .home-banners-wrapper {
        margin: 40px 0 20px 0;
    }

    .main-container {
        padding-left: 0px;
        padding-right: 0px;
    }

    #virtualrealnetwork {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .devices-home {
        order: 2 !important;
    }

    .performersHome {
        padding: 0;
    }
}

@media only screen and (max-width: 899px) {
    .one-third {
        width: 100% !important;
        margin-left: 0 !important;
    }

    .onlydesktop {
        display: none;
    }

    .l-subfooter.at_top p a:hover,
    .l-subfooter.at_top li a:hover,
    .l-subfooter.at_bottom a:hover,
    .g-html p a:hover,
    .g-html li a:hover,
    .g-breadcrumbs a:hover {
        border-bottom: none;
    }

    .w-portfolio.columns_3 .w-portfolio-item,
    .w-portfolio.columns_4 .w-portfolio-item,
    .w-portfolio.columns_5 .w-portfolio-item {
        width: 49.9999%;
    }

    .w-portfolio-item-meta,
    .w-portfolio-item-anchor:hover .w-portfolio-item-meta {
        -webkit-transform: none;
        transform: none;
        -webkit-transition: none;
        transition: none;
    }

    .w-portfolio-item-image img {
        margin-top: -30px;
        -webkit-transition: none;
        transition: none;
    }
}

@media only screen and (max-width: 767px) {
    .g-cols > div {
        margin-left: 0 !important;
        margin-bottom: 30px;
        width: 100% !important;
    }

    #virtualrealnetwork .network-links {
        width: 100%;
    }

    #virtualrealnetwork .social-links {
        display: none;
    }

    #virtualrealnetwork {
        text-align: center;
        font-size: 10px;
    }

    .l-sidebar {
        float: none !important;
        width: 100% !important;
    }

    .l-content {
        float: none !important;
        width: 100% !important;
        padding-bottom: 30px;
    }

    .l-subfooter.at_top {
        padding-bottom: 5px;
    }

    .l-subfooter.at_top .g-cols > div {
        margin-bottom: 10px;
    }

    .g-cols:last-child > div.full-width {
        margin-bottom: 0;
    }

    .g-pagination-item.to_next {
        padding: 0 25px 0 10px;
    }

    .g-pagination-item.to_next:before {
        right: 10px;
    }

    .g-pagination-item.to_prev {
        padding: 0 10px 0 25px;
    }

    .g-pagination-item.to_prev:before {
        left: 10px;
    }

    .w-pagehead .g-breadcrumbs {
        float: none;
        clear: both;
        font-size: 13px;
        margin: 8px 0 0;
    }

    .page-404 i {
        font-size: 100px;
    }

    .tp-caption .g-btn {
        display: none;
    }

    /*Mobile*/
    .g-btn,
    input[type="submit"] {
        padding: 6px 30px;
    }

    .video-list-home-title {
        margin: 0;
    }

    button.load-links {
        width: 100%;
    }
}

@media only screen and (max-width: 599px) {
    .l-submain,
    .l-subfooter.at_top,
    .l-subfooter.at_bottom,
    .l-submain.for_pagehead {
        padding-left: 25px;
        padding-right: 25px;
    }

    .l-submain {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .desktop_home_slider {
        display: none;
    }
}

@media only screen and (max-width: 479px) {
    .w-portfolio.columns_2 .w-portfolio-item,
    .w-portfolio.columns_3 .w-portfolio-item,
    .w-portfolio.columns_4 .w-portfolio-item,
    .w-portfolio.columns_5 .w-portfolio-item {
        width: 100%;
    }

    .w-pagehead h1 {
        float: none;
        text-align: center;
    }

    .w-pagehead .g-breadcrumbs {
        display: none;
    }
}

@media (max-device-width: 999px) {
    #cookie-law-info-bar,
    #cookie-law-info-bar #wt-cli-policy-link {
        font-size: 9pt !important;
        line-height: 15pt;
    }
}

@media only screen and (max-width: 900px) {
    .natsvrBlock {
        float: none;
        width: 100%;
    }

    .cbBox label.blockSelection {
        width: 100%;
    }

    input[type="submit"] {
        width: 100%;
    }
}

@media (max-width: 767px), (max-width: 800px) and (max-height: 450px) {
    .video-list-home-title {
        margin-bottom: 0;
    }
}

@media (max-width: 800px) and (max-height: 450px) {
    /*Oculus browser*/
    body.home .video-list-home-title h3 {
        display: block;
    }

    .video-list-home-title h3 {
        margin-bottom: 0;
    }
}

@media (min-width: 600px) {
    .mobile_home_slider {
        display: none;
    }
}

@media (max-width: 380px) {
    .network-links {
        font-size: 8px;
    }
}
