/**
 * Featherlight – ultra slim jQuery lightbox
 * Version 1.7.13 - https://noelboss.github.io/featherlight/
 *
 * Copyright 2018, Noël Raoul Bossart (https://www.noelboss.com)
 * MIT Licensed.
**/

html.with-featherlight {
	/* disable global scrolling when featherlights are visible */
	overflow: hidden;
}

.featherlight {
	display: none;

	/* dimensions: spanning the background from edge to edge */
	position:fixed;
	top: 0; right: 0; bottom: 0; left: 0;
	z-index: 1000;

	/* position: centering content */
	text-align: center;

	/* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
	white-space: nowrap;

	/* styling */
	cursor: pointer;
	background: #333;
	/* IE8 "hack" for nested featherlights */
	background: rgba(0, 0, 0, 0);
}

/* support for nested featherlights. Does not work in IE8 (use JS to fix) */
.featherlight:last-of-type {
	background: rgba(10,11,55,0.9);
}

.featherlight:before {
	/* position: trick to center content vertically */
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.featherlight .featherlight-content {
	position: relative;
	text-align: center;
	vertical-align: middle;
	display: inline-block;
	/* overflow-y: auto;
	overflow-x: hidden; */
	border-bottom: solid transparent;
	margin: 0;
	padding: 0 102px;
	cursor: auto;
	white-space: normal;
	width: 100%;
	max-width: 1000px;
	height: 100%;
}

@media (min-aspect-ratio: 171/100){
    .featherlight .featherlight-content {
        margin-top: 20px; }
    .featherlight {
        overflow-y: scroll;  }
}

/* contains the content */
.featherlight .featherlight-inner {
	display: block;
}


.featherlight script.featherlight-inner,
.featherlight link.featherlight-inner,
.featherlight style.featherlight-inner {
	display: none;
}

.featherlight .featherlight-close-icon {
	position: absolute;
    z-index: 9999;
    top: 0;
    right: 0;
    width: 58px;
		height: 58px;
    cursor: pointer;
    color: rgba(0,0,0,0);
    border: none;
		margin: 0;
    padding: 0;
    background-image: url(/assets/img/common/icon_close.png);
    background-repeat: no-repeat;
		background-size: cover;
}
@media only screen and (max-width: 1024px) {
	.featherlight .featherlight-close-icon {
		width: 44px;
		height: 44px;
    top: 3px;
    right: 12px;
	}
}

/* See https://stackoverflow.com/questions/16077341/how-to-reset-all-default-styles-of-the-html5-button-element */
.featherlight .featherlight-close-icon::-moz-focus-inner {
	border: 0;
	padding: 0;
}

.featherlight .featherlight-image {
	/* styling */
	width: 100%;
}


.featherlight-iframe .featherlight-content {
	/* removed the border for image croping since iframe is edge to edge */
	border-bottom: 0;
	padding: 0;
	-webkit-overflow-scrolling: touch;
}

.featherlight iframe {
    border: none;
    /* margin-top: -24.955px; */
    padding-right: 20px;
}

.featherlight * { /* See https://github.com/noelboss/featherlight/issues/42 */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
	.featherlight .featherlight-content {
		/* dimensions: maximize lightbox with for small screens */
		margin: 0;
		padding: 0 30px;
	}
}

/* hide non featherlight items when printing */
@media print {
	html.with-featherlight > * > :not(.featherlight) {
		display: none;
	}
}




/*
.anime {
    border: 1px solid #c795ff;
    border-top: none;
    background-color: rgba(0, 24, 74, .65);
    width: 100%!important;
    max-width: 100%!important;
    margin: auto;
      font-size: 20px;
color: #ffffff;
text-align: center;
height: auto!important;
}
*/

.boxin_img{
    position: absolute;
    /* width: 62%; */
    height: 47.58vw;
}



.boxin_img img {
    max-width: 1012px;
    max-height: 770px;
    width: auto;
    width: 62vw;
    height: 47.58vw;
    float: left;
    position: relative;
    object-fit: contain;
 }

.boxin_text{
    width: 22.58%;
    height: 113.58%;
    display: inline-block;
    text-align: left;
    float: right;
    margin-right: 29px;
    margin-left: 1vw;
}

/**
 * Featherlight Gallery – an extension for the ultra slim jQuery lightbox
 * Version 1.7.13 - https://noelboss.github.io/featherlight/
 *
 * Copyright 2018, Noël Raoul Bossart (https://www.noelboss.com)
 * MIT Licensed.
**/

.featherlight-next,
.featherlight-previous {
	display: block;
	position: absolute;
	cursor: pointer;
	top: 0;
	bottom: 0;
	margin: auto;
}
.featherlight-previous {
	left: 0;
}
.featherlight-next {
	right: 32px;
}
.featherlight-next span,
.featherlight-previous span {
	position: absolute;
	top: 50%;
	width: 32px;
	height: 32px;
	line-height: 32px;
	background-repeat: no-repeat;
	background-size: cover;
}
.featherlight-next span{
	background-image: url(/assets/img/common/next_arrow.png);
	right: 0;
}
.featherlight-previous span{
	background-image: url(/assets/img/common/prev_arrow.png);
}

.featherlight-swipe-aware .featherlight-next,
.featherlight-swipe-aware .featherlight-previous {
	display: none;
}

/* Hide navigation while loading */
.featherlight-loading .featherlight-previous, .featherlight-loading .featherlight-next {
	display:none;
}

/* Hide navigation in case of single image */
.featherlight-first-slide.featherlight-last-slide .featherlight-previous,
.featherlight-first-slide.featherlight-last-slide .featherlight-next {
	display:none;
}


/* Always display arrows on touch devices */
@media only screen and (max-device-width: 1024px){
	.featherlight-next:hover,
	.featherlight-previous:hover {
		background: none;
	}
	.featherlight-next span,
	.featherlight-previous span {
		display: block;
	}
}

/* handling phones and small screens */
@media only screen and (max-width: 750px) {
	.featherlight-next,
	.featherlight-previous {
		top: 0;
		right: 0;
		left: 85%;
		background-size: 100% auto;
	}
	.featherlight-previous {
		left: 0;
		right: 85%;
	}
}
/*
.featherlight-last-slide .featherlight-next,
.featherlight-first-slide .featherlight-previous {
	display: none;
}*/

.fil{
	display: 	none;
}

h1_video {
    color: #2d6394;
    margin: auto;
    font-weight: bold;
}


.change {
position: absolute;
    left: 435px;
    z-index: 25;
    top: 89px;
    cursor: pointer;
}

.change img {
    width: 70px;
}

/*
::-webkit-scrollbar{
    width: 3px;
}
::-webkit-scrollbar-track{
    background: #9b9b9b;
}
::-webkit-scrollbar-thumb{
    background: #fff;
    border-radius: 0;
    box-shadow: inset 0 0 0 1px #fff;
}


.cube_push  {
    scrollbar-width: thin;
    scrollbar-color: #9b9b9b #fff;
}



.cube_push {
    scrollbar-width: 2px;
    scrollbar-base-color: #9b9b9b; 
    scrollbar-track-color: #fff; 
    scrollbar-arrow-color: #fff; 
    scrollbar-shadow-color: #9b9b9b; 
}
*/