/*                             RESET
***********************************************************************/
a, abbr, acronym, address, applet, article, aside, audio, b, big,
blockquote, body, canvas, caption, center, cite, code, dd, del, details,
dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form,
h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd,
label, legend, li, mark, menu, nav, object, ol, output, p, pre, q,
ruby, s, samp, section, small, span, strike, strong, sub, summary, sup,
table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
 	margin: 0;
 	padding: 0;
 	box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup,
menu, nav, section {
 	display: block;
}
img, iframe {
  	border: none;
}
ol, ul {
  	list-style: none;
}
table {
  	border-collapse: collapse;
  	border-spacing: 0;
}
*:focus, a:active {
  	outline: none;
}

/*                         GENERAL STYLING
***********************************************************************/
html {
  	height: 100%;
  	-webkit-text-size-adjust: none;
}
body {
  	height: 100%;
  	min-height: 100%;
  	overflow-x: hidden;
  	font: 200 15px/1.6 Montserrat, sans-serif;
  	color: #b7b7b7;
  	background-color: #000;
  	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
}
h1 {
  	margin-bottom: .25em;
  	font: 600 4em/1.5 Montserrat, sans-serif;
  	color: #fff;
}
h2 {
  	margin-bottom: .33em;
  	color: #fff;
  	font-weight: 600;
}
h3 {
  	margin-bottom: .4em;
  	font-weight: 300;
  	color: #fff;
}
h4 {
  	margin-bottom: .5em;
  	font-weight: 300;
  	color: #fff;
}
h5 {
  	margin-bottom: .5em;
  	font-size: 1.2em;
  	font-weight: 300;
  	color: #fff;
}
h6 {
  	margin-bottom: .5em;
  	font-size: 1em;
 	font-weight: 300;
  	color: #fff;
}
p {
  	margin-bottom: 1em;
  	line-height: 1.6em;
}
a {
  	text-decoration: none;
  	color: #b62a79;
  	-moz-transition: all .3s ease-in 0s;
  	-webkit-transition: all .3s ease-in 0s;
  	transition: all .3s ease-in 0s;
}
a:hover {
  	color: #fff;
}
img {
  	max-width: 100%;
  	height: auto;
}
input, select, textarea {
  	padding: .57em;
  	font: 400 1em/1.4 Montserrat, sans-serif;
  	color: #525152;
  	background-color: #fff;
  	border:none;
  	box-sizing: border-box;
  }
@media screen and (-webkit-min-device-pixel-ratio: 0) { /* Safari only */
  ::i-block-chrome, select {
   	line-height: 2.07em;
   	text-indent: .57em;
  }
}
::selection {
  	background-color: #000;
  	color: #000;
}
::-moz-selection {
  	background-color: #fff;
  	color: #000;
}

/*                             STRUCTURE
***********************************************************************/
#container-wrapper {
  	position: relative;
  	min-width: 318px;
  	min-height: 100%;
  	height: auto !important;
  	height: 100%;
}


#content-wrapper {
  	padding: 0px 0 220px;
}
#footer {
  	position: absolute;
  	bottom: 0;
  	width: 100%;
  	height: auto;
  	color: #b7b7b7;
  	background: rgba(15,15,15);
  	background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(15,15,15,1) 100%);
  	font-size:0.9em;
	z-index:0;
}

/*                         ELEMENTS STYLING
***********************************************************************/
/*                Common Classes
****************************************************/
.block {
  	width: 96%;
  	max-width:1440px;
  	margin: 0 auto;
}
.center {
  	margin: 0 auto 1.5em;
}
.lefted {
  	text-align: left;
}
.righted {
  	text-align: right;
}
.centered {
  	text-align: center;
}
.uppercase {
  	text-transform: uppercase;
}
.no-wrap {
  	white-space: nowrap;
}
.pink {
	color: #b62a79;
}
.small {
	font-size:0.8em;
}
.btn {
  	display: inline-block;
  	font-size:1em;
  	padding: 0 1.5em;
  	line-height: 1.8em;
  	font-weight: 600;
  	text-align: center;
  	text-transform: uppercase;
  	white-space: nowrap;
  	border: 2px solid #b62a79;
  	color: #b62a79;
  	background-color: transparent;
  	cursor:pointer;
}
.btn:hover  {
	color:#000;
	background:#881a51 !important;
	border-color:#881a51;
}
.full.btn {
  	color:#000;
  	background:#b62a79 !important;
}
.full.btn:hover {
  	background:#881a51 !important;
  	border-color:#881a51;
}
.simple-list {
	list-style-type:disc;
	margin-left:20px;
}
.simple-list li {
	margin-bottom:10px;
}
.three-cols {
   margin: 0 -1.5%;
    display: flex;
    flex-wrap: wrap;
}
.three-cols .col {
    display: inline-block;
    width: 30%;
    margin: 0px 1.5%;
    vertical-align: top;
}


.four-cols {
   margin: 0 -1.5%;
    display: flex;
    flex-wrap: wrap;
}
.four-cols .col {
    display: inline-block;
    width: 22%;
    margin: 0px 1.5%;
    vertical-align: top;
}



/*                     Header
****************************************************/
#header {
  	position: fixed;
  	width: 100%;
  	top: 0px;
  	left: 0;
  	-moz-transition: all .3s ease-in 0s;
  	-webkit-transition: all .3s ease-in 0s;
  	transition: all .3s ease-in 0s;
        z-index: 100;

}


#header {
  	padding: 10px 0 0;
  	background-color: #0c0c0c;
  	position:relative;
  	max-height:77px;
}
#header .left, #header .middle, #header .right {
	display:inline-block;
	vertical-align:top;
}
#header .left, #header .right {
	width:30%;
}
#header .middle {
	width:39%;
}
#nav-btn {
	display: inline-block;
	width: 30px;
  	height: 30px;
  	cursor: pointer;
  	vertical-align: top;
  	margin-top:18px;
  }
#icon-toggle {
  	width: 30px;
  	height: 30px;
  	fill: #fff;
}
#nav-btn.close #icon-toggle {
	fill:#ed1e6a;
}
#main-nav, #user-nav {
	position:absolute;
	width:100%;
	left:0;
	top:77px;
	background:rgba(0, 0, 0, 0.8);
	padding:20px;
}
.inactive {
	display:none;
}
.active {
	display:inline-block;
}
#main-nav ul {
	margin-left: 55px;
}
#user-nav ul {
	text-align:right;
}
#main-nav li, #user-nav li {
	display:inline-block;
	margin-right:30px;
	text-transform:uppercase;
	font-weight:bold;
}
#main-nav li a, #user-nav li a {
	color:#fff;
}
#main-nav li a:hover, #user-nav li a:hover {
	color:#b62a79;
}
#main-nav .login-mobile {
	display:none;
}






#main-nav1 ul {
	margin-left: 55px;
}

#main-nav11 li {
	display:inline-block;
	margin-right:30px;
	text-transform:uppercase;
	font-weight:bold;
}
#main-nav1 li a {
	color:#fff;
}
#main-nav1 li a:hover {
	color:#b62a79;
}
#main-nav1 .login-mobile {
	display:none;
}



#logo {
  	display: inline-block;
  	background: url(img/XY_play.png) no-repeat;
  	width: 160px;
  	height: 60px;
  	margin-left:20px;
}
#logo strong {
  	display: none;
}
.search {
	max-width:540px;
	margin:13px auto 0;
	text-align:center;
}
.search input[type="text"] {
	background-color:transparent;
	border: 1px solid #b7b7b7;
	color: #b7b7b7;
	display:inline-block;
	width:calc(100% - 55px);
	padding: .28em .57em;
    vertical-align: top;
}
.search input[type="submit"] {
	display:none;
}
.search label {
	display:inline-block;
	margin-left: -4px;
	max-width:30px;
}
#search-icon-btn {
	width:30px;
	height:31px;
	fill:#000;
	background-color:#b7b7b7;
	border: 1px solid #b7b7b7;
	padding:4px;
	display:inline-block;
	cursor:pointer;
}
#search-icon-btn:hover {
	background-color:#9f9e9e;
	border-color:#9f9e9e;
}
#search-toggle {
	display:none;
	cursor:pointer;
	background: none;
	border: none;
	margin-right:10px;
	line-height: 2.5em;
}
#search-icon-toggle {
	fill:#b62a79;
	width:24px;
	height:24px;
	vertical-align: top;
    margin-top: 6px;
}
#search-toggle.close #search-icon-toggle {
	fill:#ed1e6a;
}
.buttons-wrapper {
	text-align:right;
	margin-top:13px;
}
.buttons-wrapper .btn {
	font-size:1.1em;
}
.buttons-wrapper .full.btn {
	margin-right:-4px;
}
#user-toggle {
	background:none;
	border:none;
	cursor: pointer;
}
#user-icon-toggle {
	width:28px;
	height:28px;
	fill:#b7b7b7;
}
#user-toggle.close #user-icon-toggle {
	fill:#ed1e6a;
}

/*                      Intro
****************************************************/
#intro-wrapper {
  	position: relative;
  	display: inline-block;
  	width: 100%;
  	max-height:500px;
}
#intro {
  	display: flex;
  	height: 500px;
  	overflow: hidden;
  	position: relative;
}
#intro_video,  .slides {
  	position: absolute;
  	top: 0;
  	left: 50%;
  	min-width: 100%;
  	min-height: 50%;
  	z-index: -1;
  	transform: translateX(-50%);
}
#intro-image,   #intro-image2, #intro-image3 , .slides{
	background-repeat: no-repeat;
	background-position: center top;
  	min-height: 100%;
}
#intro h1 {
  	text-align: left;
  	display: block;
  	position: relative;
  	margin: 15% 0 0 10%;
  	text-shadow:4px 4px 4px rgba(0, 0, 0, 0.5);
  	z-index: 0;
}
#intro .slider-controls {
	position: absolute;
	background: rgba(0, 0, 0, 0.3);
	width:100%;
	text-align:center;
	bottom:0;
	padding:10px 0;
}
#intro .slider-controls .dot {
	width:14px;
	height:14px;
	border-radius:50%;
	background:#fff;
	display:inline-block;
	margin:0 8px;
	cursor:pointer;
}
#intro .slider-controls .dot.selected {
	background: #ed1e6a;
}

/*                      Services
****************************************************/
.services-wrapper {
	background: #040404 url(img/gradient.jpg) no-repeat bottom center;
	padding:40px 0;
	text-align:center;
	color:#fff;
        margin-bottom:20px;
}
.services-wrapper ul {
	list-style:none;
	margin:20px 0;
	width:100%;
}
.services-wrapper li {
	display:inline-block;
	width:33%;
}
.getaccess {
    height: 100%;
    width: 100%;
     display: inline-block;
}
.xy_plus {
	background:url(img/XYPlus_logo_hd.png) no-repeat center;
	width:300px;
	height:122px;
	display:inline-block;
	padding: 0 2em;
	border-radius: 0.2em;
}

.xy_plus_hd {
	background:url(img/XYPlus_logo_hd.png) no-repeat center;
	width:300px;
	height:122px;
	display:inline-block;
	padding: 0 2em;
	border-radius: 0.2em;
}
.xy_max {
	background:url(img/XYMax_logo_hd.png) no-repeat center;
	width:300px;
	height:122px;
	display:inline-block;
}
.xy_mix {
	background:url(img/XYMix_logo.png) no-repeat center;
	width:300px;
	height:122px;
	display:inline-block;
}
.title-wrapper {
	width:100%;
}
.title-wrapper h2 {
	float:left;
}
.title-wrapper .btn {
	float:right;
}
/*                      Videos
****************************************************/
.videos-wrapper {
	padding:0px 0;
}
.video-list {
    margin: 0 -1%;
    display: flex;
    flex-wrap: wrap;
}


.video-lista {
    margin: 0 -1%;
    display: flex;
    flex-wrap: wrap;
}



.video-list li {
	display: inline-block;
    width: 23%;
    margin: 20px 1%;
    vertical-align: top;
}

.video-lista li {
	display: inline-block;
    width: 48%;
    margin: 20px 1%;
    vertical-align: top;

}

.video-list a {
    display: block;
    color:#fff;
}
.video-thumb-wrap {
    width: 100%;
    display: inline-block;
    position: relative;
    margin-bottom: -4px;
    overflow: hidden;
}
.video-thumb-wrap::after {
    padding-top: 60%;
    display: block;
    content: '';
}
.video_thumb {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    transition: all 1s ease;
}
.video_thumb img {
    display: block;
    width: 100%;
    margin-bottom: 1px;
    opacity: .9;
}
.video-timing {
	position:absolute;
	right:5px;
	bottom:15px;
	background:rgba(25, 25, 25, 0.9);
	font-size:0.8em;
	color:#fff;
	padding:4px;
	border-radius:3px;
}
.video-info h3 {
	margin-bottom: .1em;
    font-size: 0.9em;
}
.video-info p {
	margin-bottom:0;
	font-size:0.9em;
}
.video-info .date {
	color:#b7b7b7;
	font-size:0.7em;
}
.video-wrapper {
	width:100%;
	position:relative;
}
#player5 {
	max-width: 900px;

    position: relative;
    width: 72%;
    display: inline-block;
    vertical-align: top;
}

#player6 {
       max-width: 1390px;
       height: auto;
	background: #000;
	position: relative;
	border-top: 3px solid #888;
	margin: 5% 7% 5% 7%;
	padding: 2% 2% 4% 2%;
	border-radius: 10px;
	border-bottom-left-radius: 50% 2%;
	border-bottom-right-radius: 50% 2%;
	transition: margin-right 1s;
        vertical-align: middle;
  text-align: center;
}

#player6:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 3%;
	left: 36%;
	height: .5%;
	width: 28%;
	background: #ddd;
	border-radius: 50%;
	box-shadow: 0 0 3px 0 white;
}

.container {
	position: relative;
	 background-color: #777;
	background-size: cover;
	background-position: top center;
	height: 0;
	padding-bottom: 56.25%;
	position: relative;
	overflow: hidden;
}


@media all and (min-width: 580px) {
	#player6 {
		-webkit-animation: tvflicker .2s infinite alternate;
		-moz-animation:    tvflicker .5s infinite alternate;
		-o-animation:      tvflicker .5s infinite alternate;
		animation:         tvflicker .5s infinite alternate;
	}

	@-webkit-keyframes tvflicker {
	  0%   { box-shadow: 0 0 100px 0 rgba(200,235,255,0.4); }
	  100% { box-shadow: 0 0 95px 0 rgba(200,230,255,0.45); }
	}
	@-moz-keyframes tvflicker {
	  0%   { box-shadow: 0 0 100px 0 rgba(225,235,255,0.4); }
	  100% { box-shadow: 0 0 60px 0 rgba(200,220,255,0.6); }
	}
	@-o-keyframes tvflicker {
	  0%   { box-shadow: 0 0 100px 0 rgba(225,235,255,0.4); }
	  100% { box-shadow: 0 0 60px 0 rgba(200,220,255,0.6); }
	}
	@keyframes tvflicker {
	  0%   { box-shadow: 0 0 100px 0 rgba(225,235,255,0.4); }
	  100% { box-shadow: 0 0 60px 0 rgba(200,220,255,0.6); }
	}
}






.video-wrapper .video-right {
	width: 25%;
    display: inline-block;
    margin-top: 20px;
    vertical-align: top;
}
.video-wrapper .buttons {
	margin-top:20px;
}
.video-wrapper .buttons a {
	background-color:#0c0c0c;
	margin:15px auto;
}
.video-wrapper .buttons a:hover {
	background-color:#1f1f1f;
}

.video-wrapper .buttons .xy_plus,
.video-wrapper .buttons .xy_plus_hd,
.video-wrapper .buttons .xy_max,
.video-wrapper .buttons .xy_mix {
	width: 220px;
	border-style:solid;
	border-width: 1px;
	border-color: purple;
    height: 89px;
    background-size: 80%;
    display: block;
}


.video-wrapper .buttons1 {
	margin-top:20px;
}
.video-wrapper .buttons1 a {
	background-color:#0c0c0c;
	margin:15px auto;
}
.video-wrapper .buttons1 a:hover {
	background-color:#1f1f1f;
}

.video-wrapper .buttons1 .xy_plus,
.video-wrapper .buttons1 .xy_plus_hd,
.video-wrapper .buttons1 .xy_max,
.video-wrapper .buttons1 .xy_mix {
	width: 150px;
    height: 65px;
    background-size: 80%;
    display: block;
    border-color:pink;
    border-style:solid;
    border-width:1px;
}
/*                      Info
****************************************************/
.info-wrap {
	padding:50px 0;
}
.info-wrap .centered {
	margin-top:30px;
}
/*                      Side Panel
****************************************************/
.side-panel-wrap {
	display: flex;
}
.side-panel {
	float: left;
    padding: 30px 30px 50px;
    width: 280px;
    flex: 0 0 280px;
    position: relative;
    transition: width 0.2s;
    background: #0d0d0d;
}
.main-panel {
	float: left;
    position: relative;
    padding: 0px 10px 0px 10px;
    box-sizing: border-box;
    width: calc(100% - 280px);
    flex: 0 0 calc(100% - 280px);
    z-index: 1;
}

.main-panelm {
	float: left;
    position: relative;
    padding: 0px 10px 0px 10px;
    box-sizing: border-box;
    width: calc(100%);
    flex: 0 0 calc(100%);
    z-index: 1;
}


.main-panel.no-sidepanel {
	width:100%;
	flex:0 0  100%;
}
#filter-toggle {
	background:#0d0d0d;
	border:none;
	position:absolute;
	left:0;
	top:30px;
	padding:6px 3px 6px 0;
	cursor:pointer;
}
#filter-toggle svg {
	width:24px;
	height:24px;
	fill:#b7b7b7;
}
#filter-toggle span {
	display:none;
}
.side-panel h4 {
	color:#b7b7b7;
	margin-bottom:15px;
	text-transform:uppercase;
	font-size:1.2em;
}
.categories {
	margin-bottom:20px;
}
.categories a {
	color:#fff;
}
.categories a span {
	color:#b7b7b7;
}
.categories li {
	padding:0 0 10px;
}
.results-amount {
	float:left;
}
.sort-wrap {
	float:right;
	text-align:right;
}
.sort-wrap a {
	color:#fff;
	display:inline-block;
	margin-left:20px;
}
.sort-wrap a.selected, .sort-wrap a:hover {
	color:#b62a79;
}

/*                      Pagination
****************************************************/
.pagination {
	text-align:center;
	margin:30px 0;
	font-size:1.4em;
}
.pagination a {
	margin:0 10px;
}
.pagination a.current, .pagination a:hover {
	color:#fff;
}
.pagination svg {
	width:16px;
	height:16px;
	fill:#b62a79;
}
.pagination a.current svg, .pagination a:hover svg {
	fill:#fff;
}

/*                      Register
****************************************************/
.register-form {
	padding:30px 0;
}
.register-form .block {
	max-width:1000px;
}
.account-info-fields {
	padding:20px 0 40px;
	text-align:center;
}
.account-info-fields input {
	display:inline-block;
	width:40%;
}
.register-form .three-cols {
	padding:20px 0;
}
.register-form .three-cols .col {
	background:#fff;
	color:#000;
	text-align:center;
	box-sizing:border-box;
	padding:20px;
}
.register-form .three-cols .col.selected {
	background:#b62a79;
}
.register-form .three-cols .col h3 {
	color:#000;
	font-weight:bold;
	font-size:1.6em;
	padding:10px 0;
	border-bottom:1px solid #000;
}


.register-form .four-cols {
	padding:20px 0;
}
.register-form .four-cols .col {
	background:#fff;
	color:#000;
	text-align:center;
	box-sizing:border-box;

}
.register-form .four-cols .col.selected {
	background:#b62a79;
}
.register-form .four-cols .col h3 {
	color:#000;
	font-weight:bold;
	font-size:1.6em;
	padding:10px 0;
	border-bottom:1px solid #000;
}



.register-form .plan-price {
	font-size:4em;
	font-weight:bold;
	margin-bottom:20px;
}
.register-form .plan-price sup {
	font-size:0.5em;
}
.register-form .plan-price span {
	display:block;
	font-size:0.25em;
	margin-top:-20px;
}
.register-form .three-cols .col .btn {
	padding:10px 15px;
	color: #fff;
	margin-bottom:20px;
}
.register-form .three-cols .col.selected .btn {
	background-color:#000 !important;
}
.register-form .three-cols .col .small {
	font-weight:bold;
}

.register-form .four-cols .col .btn {
	padding:10px 15px;
	color: #fff;
	margin-bottom:20px;
}
.register-form .four-cols .col.selected .btn {
	background-color:#000 !important;
}
.register-form .four-cols .col .small {
	font-weight:bold;
}




.form-bottom {
	padding-bottom:20px;
}
.form-bottom a {
	color:#fff;
}
.example-photo {
	margin-bottom:-40px;
}
/*                      Login
****************************************************/
.login-form {
	padding:30px 0;
}
.login-form .box {
	max-width:540px;
	border:2px solid #b62a79;
	margin:0 auto;
	box-sizing:border-box;
	padding:40px 20px;
	margin-bottom:30px;
}
.login-form .box h2 {
	margin-bottom:20px;
}
.login-form input[type="text"] {
	width:100%;
	margin-bottom:10px;
}

/*                      Footer
****************************************************/
#footer .left {
	float:left;
	padding-top:20px;
}
#footer .right {
	float:right;
	padding-top:20px;
	text-align:right;
	vertical-align:middle;
}


.footer-nav li {
	display:inline-block;
	margin-right:15px;
}
#footer .right span, #footer .right a {
	display:inline-block;
	margin-left:10px;
}
#footer .right svg {
	fill:#b7b7b7;
	width:30px;
	height:30px;
}
#footer .right a:hover svg {
	fill:#fff;
}
#footer .right #instagram-footer, #footer .right #twitter-footer {
	width:24px;
	height:30px;
}
#footer .right span {
	line-height: 30px;
    vertical-align: top;
    font-weight: bold;
    margin-top: 1px;
}
#footer .copyright {
	max-width:90%;
	margin-top:30px;
	font-size:0.8em;
}




/*               Cleaners & Spacers
****************************************************/
.cleaner, .block:after, .clearfix:after {
  	display: block;
  	clear: both;
  	height: 0;
  	content: '';
  	visibility: hidden;
}
.hr {
  	display: block;
  	clear: both;
  	height: 1px;
  	margin: .5em 0 1em;
  	border-bottom: 1px solid #ececec;
}

#profile-wrapper {
    background: rgba(255, 255, 255, 0.97);
}





.cookie-consent {
    position: fixed;
    bottom: 0;
  height: auto;
    z-index: 100000;
   background-color: #ed1e6a;
    color: black;
    width: 100%;
  padding: 20px 10px;
    align-content: center;
    font-size: larger;
}

button.js-cookie-consent-agree {
    background: #000;
    border: none;
    color: #ed1e6a;
    font-weight: 600;
    padding: 10px 20px;
    margin-left: 10px;
}
button.js-cookie-consent-agree:hover {
    background: #1E1E1E;
}


.jconfirm.jconfirm-light .jconfirm-bg {
    background-color: #000;
    opacity: .5;
}
.jconfirm .jconfirm-box {
    background: #323232;
    min-width: 400px;
}
.jconfirm-content > div > div {
    color: #fff !important;
}
.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons {
    float: none;
    text-align: center;
    margin-bottom: 30px;
}
.jconfirm .jconfirm-box .jconfirm-buttons button.btn-green {
    background-color: #b62a79;
    color: #000;
    border-radius: 0;
    border: 2px solid #b62a79;
}
.jconfirm .jconfirm-box .jconfirm-buttons button.btn-green:hover {
    color:#000;
    background-color: #881a51;
    border-color: #881a51;
}
.jconfirm .jconfirm-box .jconfirm-buttons button.btn-red {
    background-color: transparent;
    color: #b62a79;
    border: 2px solid #b62a79;
}
.jconfirm .jconfirm-box .jconfirm-buttons button.btn-red:hover {
    color:#000;
    background:#881a51 !important;
    border-color:#881a51;
}

.border1 {
    box-shadow: inset 0.4em 0.4em 0.4em 0 rgba(55,55,55,0.5), inset -0.4em -0.4em 0.4em 0 rgba(40,40,40,0.5);
}

.topright2 {

    position: absolute;
    top :100px;
    width : 20%;
    right : 2%;;

}
.player-poster[data-poster] {
    background-color: #0d0d0d;
}


.thumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}



.thumb .thumbCaption {
  padding: 10px 0;
}

.overlay {
  position: relative;
}

.overlay .thumbnail {
  display: block;
}

.overlay .time {
  position: absolute; z-index: 2;
  right: 3px; bottom: 3px;
  padding: 2px 5px;
  background-color: rgba(60, 60, 60, 0.8);
  color: white;
}

.overlay .playWrapper {
  opacity: 0;
  position: absolute; z-index: 1;
  top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6) url("https://xyplay.invivo.tv/img/overlay4.png") no-repeat scroll center center / 100px 50px;
}

.overlay .playWrapper1 {
  opacity: 0;
  position: absolute; z-index: 1;
  top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6) url("https://xyplay.invivo.tv/img/overlay3.png") no-repeat scroll center center / 100px 50px;
}


.playWrapper .playBtn {
  position: absolute; z-index: 2;
  width: 50px; height: 50px;
  left: 0; right: 0; top: 0; bottom: 0; margin: auto; /* center */
}

.playWrapper1 .playBtn {
  position: absolute; z-index: 2;
  width: 100px; height: 50px;
  left: 0; right: 0; top: 0; bottom: 0; margin: auto; /* center */
}

.thumb .overlay:hover .playWrapper {
  opacity: 1;
}

.thumb .overlay:hover  .playWrapper1 {
  opacity: 1;
}


* {
  box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;
  padding: 10px;

}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
    }
}



.leftm {
  width: 25%;
}

.rightm {
  width: 75%;
}


.btn-group button {
  background-color: black; /* Green background */
  border: 1px solid white; /* Green border */
  color: white; /* White text */
  padding: 10px 24px; /* Some padding */
  cursor: pointer; /* Pointer/hand icon */
  float: right; /* Float the buttons side by side */
}

/* Clear floats (clearfix hack) */
.btn-group:after {
  content: "";
  clear: both;
  display: table;
}

.btn-group button:not(:last-child) {
  border-right: none; /* Prevent double borders */
}

/* Add a background color on hover */
.btn-group button:hover {
  background-color: #0c0c0c;
}



#buttons2 a {
  position: fixed;
  z-index: 1200;
  right: -65px;
  transition: 0.3s;
  height : 50px;
  width:125px;
}

#buttons2 a:hover {
  right: 0px;
}

#xyplus1 {
  top: 180px;

}

#xymax1 {
  top: 250px;

}

#xymix1 {
  top: 320px;

}

.xy_plus1 {
	background:url(img/XYPlus_logo_hd.png) no-repeat center;
        background-size: contain;

	display:inline-block;
	padding: 0 2em;
	border-radius: 0.2em;
}

.xy_max1 {
	background:url(img/XYMax_logo_hd.png) no-repeat center;
	width:100px;
	height:140px;
	display:inline-block;
        background-size: contain;
}
.xy_mix1 {
	background:url(img/XYMix_logo.png) no-repeat center;
        background-size: contain;
	width:100px;
	height:40px;
	display:inline-block;
}

.model_studio {

    height:300px;
}

.buttons3 a {
  position: fixed;
  z-index: 1200;
  right: 0px;
  transition: 0.3s;
  height : 40px;
  width:45px;

}

.buttons3 a:hover {
  right: 0px;
}


.xy_livetv {
	background:url('img/livetv1.png') no-repeat center;
        background-size: contain;
	display:inline-block;

        bottom: 160px;
	border-radius: 0.2em;
}




.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: black;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  height:60%;
  overflow:auto;
}

/* The Close Button */
.close {
  color: #b62a79;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}



.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 3000;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 0px;
}

.sidenav a {
   text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}


.register-form .four-cols .col.selected {
    color: #fff;
}
.register-form .four-cols .col.selected h3 {
    color: #fff;
}

.xy_gotop {
    background-color: rgba(182, 42, 121, 0.6) !important;
    display: none;
    bottom: 20px;
    border-radius: 0.2em;
    padding: 9px 0 0 12px;
}
.xy_gotop:hover {
    background-color: rgba(182, 42, 121, 1) !important;
}
.xy_gotop svg {
    width: 20px;
    height: 20px;
    fill: rgba(255, 255, 255, 0.7);
}
.xy_gotop:hover svg {
    fill: rgba(255, 255, 255, 1);
}


.xy_left  {
    background-color: rgba(182, 42, 121, 0.6) !important;
    display: inline-block;
    top: 240px;
    border-radius: 0.2em;
    padding: 9px 0 0 12px;
}

.xy_right  {
    background-color: rgba(182, 42, 121, 0.6) !important;
    display: inline-block;
    top: 240px;
    border-radius: 0.2em;
    padding: 9px 0 0 12px;
}

.xy_left {
     transform: rotate(-90deg);
     left:0px;
}
.xy_left:hover svg {
    fill: rgba(255, 255, 255, 1);
}

.xy_left:hover {
    background-color: rgba(182, 42, 121, 1) !important;
}

.xy_left svg {
    width: 20px;
    height: 20px;
    rotate :90deg;
    fill: rgba(255, 255, 255, 0.7);
}


.xy_right {
     transform: rotate(90deg);
}
.xy_left:hover {
    background-color: rgba(182, 42, 121, 1) !important;
}
.xy_right:hover {
    background-color: rgba(182, 42, 121, 1) !important;
}
.xy_right svg {
    width: 20px;
    height: 20px;
    rotate :90deg;
    fill: rgba(255, 255, 255, 0.7);
}

.xy_right:hover svg {
    fill: rgba(255, 255, 255, 1);
}




.xy_livetv {
    background: url(img/livetv1.png) no-repeat center;
    background-size: 90%;
    display: inline-block;
    height: 45px !important;
    width: 70px !important;
    right: -13px !important;
    bottom: 280px;
    border-radius: 0.2em;
    transform: rotate(-90deg);
}
.xy_category {
    display: inline-block;
    border-radius: 0.2em;
    bottom: 160px;
    right: -43px !important;
    background-color: #ed1e6a !important;
    width: 130px !important;
    height: 44px !important;
    transform: rotate(-90deg);
    padding: 10px 0 0 10px;
    box-sizing: border-box;
}
.xy_category:hover {
    background-color: #b62a79  !important;
}
.xy_category svg {
    width: 24px;
    height: 24px;
    display: inline-block;
    fill: #fff;
    vertical-align: middle;
    margin-right: 5px;
}

.access {
    background: url(https://xyplay.invivo.tv/img/get_access_bg.jpg) no-repeat bottom center;
    background-size: cover;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.access h2 {
    margin-bottom: 40px;
}
.access .btn {
    font-size: 1.3em;
    border: 1px solid #ed1e6a !important;
    background: #ed1e6a !important;
}
.access_banner {
    position: fixed;
    bottom: -7px;
    width: 100%;
    height: auto;
    z-index: 100000;
}
.access_banner .close {
    width: 30px;
    height: 80px;
    position: absolute;
    bottom: 0;
    right: 0;
}


.thumb .overlay:hover .playWrapper {
    opacity: 1;
}
.overlay .playWrapper {
    opacity: 0;
    position: absolute;
    z-index: 1;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6) url(https://xyplay.invivo.tv/img/overlay4.png) no-repeat scroll center center / 100px 35px;
}

.login-form .box {
    background: rgba(0, 0, 0, 0.6);
}


.message .main_icon {
    width:30px;
}
.message .txt {
    display:inline-block;
}
.message {
    background: #222222;
    position: absolute;
    padding: 10px 20px 0;
    width: 50%;
    top: 100px;
    left: 25%;
    z-index:1000;
}

.message #icon-error {
fill: #ff0047;
}
.message #icon-success {
fill: #01dc69;
}
.message #icon-close {
width: 10px;
height: 10px;
fill: rgba(255, 255, 255, 0.5);
position: absolute;
top: 10px;
right: 10px;
cursor: pointer;
}
.message h5 {
font-size: 1.1em;
font-weight: bold;
}
.message.error h5 {
color: #ff0047;
}
.message.success h5 {
color: #01dc69;
}
.message p {
font-size: 0.9em;
}



.col-main {
    flex: 1;
  }

  .col-complementary {
    flex: 1;
  }

  /* Responsive: */

  @media only screen and (min-width: 900px) {
    .layout {
      display: flex;
    }
  }

  /* etc */

  .container1 {

    margin-right: auto;
    margin-left: auto;
  }

  .col {
    padding: 1em;
    margin: 0 2px 2px 0;

  }


 .left_input {
    margin-right: 2%;
    float: left;
    width: 49%;
    box-sizing: border-box;
}
.right_input {
    width: 49%;
    float: left;
    box-sizing: border-box;
}
.right_input input, .left_input input, .full_input input, .full_input textarea {
    width: 100%;
}
.full_input {
    margin: 10px 0;
}
.col-complementary .mcb-wrap {
    padding-right:80px;
}

@media screen and (max-width: 1030px) {
.left_input, .right_input {
    float:none;
    width:100%;
    margin-right:0;
}
.col-complementary .mcb-wrap {
    padding-right:0px;
}
}



.col-main {
    flex: 1;
  }

  .col-complementary {
    flex: 1;
  }

  /* Responsive: */

  @media only screen and (min-width: 900px) {
    .layout {
      display: flex;
    }
  }

  /* etc */

  .container1 {

    margin-right: auto;
    margin-left: auto;
  }

  .col {
    padding: 1em;
    margin: 0 2px 2px 0;

  }


 .left_input {
    margin-right: 2%;
    float: left;
    width: 49%;
    box-sizing: border-box;
}
.right_input {
    width: 49%;
    float: left;
    box-sizing: border-box;
}
.right_input input, .left_input input, .full_input input, .full_input textarea {
    width: 100%;
}
.full_input {
    margin: 10px 0;
}
.col-complementary .mcb-wrap {
    padding-right:80px;
}

@media screen and (max-width: 1030px) {
.left_input, .right_input {
    float:none;
    width:100%;
    margin-right:0;
}
.col-complementary .mcb-wrap {
    padding-right:0px;
}
}
