html {
	margin: 0px; height: 100%;
}
body {
	margin: 0px; height: 100%;
}
.crosscover { margin:auto 5% auto 5%; 
	height: 100%; overflow: hidden; position: relative; background-color: rgba(255, 255, 255, 1);
}
.crosscover-list {
	list-style: none;  padding: 0px;width: 100%; height: 100%; position: relative;
}
.crosscover-item {
	background-position: center;  width: 100%; height: 100%; float:center; display: block; position: absolute; opacity: 0; animation-duration: 1s; animation-fill-mode: both; background-size: cover;
}
.crosscover-item > img {
	display: none;
}
.is-wait.crosscover-item {
	z-index: 0; opacity: 0;
}
.is-active.crosscover-item {
	z-index: 1; opacity: 1;
}
.crosscover-controller {
	left: 0px; top: 60%; width: 100%; position: absolute; z-index: 3; -ms-user-select: none; -webkit-user-select: none; -moz-user-select: none; user-select: none;
}
.crosscover-player {
	padding: 0px; border-radius: 100px; border-image: none; width: 0px; height: 0px; bottom: 0px; position: absolute; cursor: pointer; background-color: transparent;
}
.crosscover-next {
	padding: 0px; border-radius: 100px; border-image: none; width: 0px; height:0px; bottom: 0px; position: absolute; cursor: pointer; background-color: transparent;
}
.crosscover-prev {
	padding: 0px; border-radius: 100px;  border-image: none; width: 0px; height:0px; bottom: 0px; position: absolute; cursor: pointer; background-color: transparent;
}
.crosscover-prev {
	left: 30px;
}
.crosscover-next {
	right: 30px;
}

.crosscover-icon-next::after {
	border-radius: 2px; transition:0.4s ease-out; right: 50%; top: 50%; width: 35px; height: 35px; margin-top: -10px; margin-left: -10px; border-top-color: rgba(255, 255, 255,1); border-right-color: rgba(255, 255, 255, 8); border-top-width: 2px; border-right-width:2px; border-top-style: solid; border-right-style: solid; position: absolute; content: "";
}
.crosscover-icon-prev::after {
	border-radius: 2px; transition:0.4s ease-out; left: 50%; top: 50%; width: 35px; height: 35px; margin-top: -10px; margin-left: -5px; border-top-color: rgba(255, 255, 255,1); border-right-color: rgba(255, 255, 255, 8); border-top-width: 2px; border-right-width: 2px; border-top-style: solid; border-right-style: solid; position: absolute; content: "";
}
.crosscover-icon-next::after {
	margin-left: -15px; transform: rotate(45deg);
}
.crosscover-icon-prev::after {
	transform: rotate(-135deg);
}
.crosscover-next:hover .crosscover-icon-next::after {
	border-top-color: rgb(255, 255, 255); border-right-color: rgb(255, 255, 255); border-top-width: 2px; border-right-width: 2px; border-top-style: solid; border-right-style: solid;
}
.crosscover-prev:hover .crosscover-icon-prev::after {
	border-top-color: rgb(255, 255, 255); border-right-color: rgb(255, 255, 255); border-top-width: 2px; border-right-width: 2px; border-top-style: solid; border-right-style: solid;
}
.crosscover-overlay {
	background: rgba(0, 0, 0, 0.6); width: 100%; height: 100%; display: table; position: absolute; z-index: 2;
}
.crosscover-island {
	width: 100%; height: 100%; text-align: center; color: rgba(255, 255, 255, 1); vertical-align: middle; display: table-cell;
}
.crosscover-title {
	margin: 0px; color: rgba(255, 255, 255, 1); font-size: 3rem;
}
.crosscover-description {
	color: rgba(255, 255, 255, 1); font-size: 1.15rem; margin-top: 0px; margin-bottom: 1rem;
}
.crosscover-dots {
  position: absolute;
  z-index: 1;
  bottom: 35%;
  left: 0;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  list-style:none;
  text-align:center;
  margin:0;
  padding:0;
  box-sizing: border-box;
  list-style-type: none;
}

[class^="crosscover-dots-nav-"]{
  display:inline-block;
  bottom: 0;
  padding: 15px 6px;
  padding: 1rem .375rem;
}

[class^="crosscover-dots-nav-"] button {
  width: 8px;
  height: 8px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, .5);
  border-radius: 50%;
  border: none;
  outline: none;
  padding: 0;
  box-shadow:0 0 1px rgba(255,255,255,.8);
}

[class^="crosscover-dots-nav-"] button:hover{
  background-color: rgba(255,255,255,.5);
}

[class^="crosscover-dots-nav-"].is-active button,
[class^="crosscover-dots-nav-"].is-active button:hover{
  background-color: rgba(255,255,255, 10);
  width: 8px;
  height: 8px;
}
.fade-in {
	animation-name: fade-in;
}
.fade-out {
	animation-name: fade-out;
}


@media (max-width: 1280px) and (min-width: 1024px) {
.crosscover-dots {
  bottom: 15%;
}
.crosscover-icon-next::after {
top: 45%;
}
.crosscover-icon-prev::after {
 top: 45%;}
}

@media (max-width: 768px) {
.crosscover-dots {
  bottom: 3%;
}   
.crosscover-icon-next::after {
 width: 20px; height: 20px;
}
.crosscover-icon-prev::after {
	width: 20px; height: 20px; }
}

