body {
	background: linear-gradient(-45deg, #1a1b1f, #343641, #1e1f26, #cccccc);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
  height: 100vh;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.select-language {
  position: absolute;
  width: 50%;
  height: 100%;
  left: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.select-language #title {
  font-size: 1.5rem
}

.select-language #artist-name {
  font-family: "BritishCouncilSansW08-Lt";
  font-size: .8rem;
  line-height: 22px;
  margin: 0;
}
.scene-text h1{
  margin-top: 0;
}

.select-area {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem
}

.select-area .language-ok {
  margin-left: 1rem;
  color: #fff;
  border: 1px solid #fff;
  text-decoration: none;
  padding: 10px 20px;
  font-family: "BritishCouncilSansW08-Bd";
	transition: all .7s ease;
}

.select-area .language-ok:hover {
  background: #fff;
  color: #000
}

.custom-select {
  position: relative;
  width: 40%;
  font-family: "BritishCouncilSansW08-Lt";
}

.custom-select select {
  display: none;
  /*hide original SELECT element:*/
}

.select-selected {
  background-color: white;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 20px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #000 transparent transparent transparent;
	transition: all .3s ease;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #000 transparent;
  top: 16px;
}

/*style the items (options), including the selected item:*/
.select-items div, .select-selected {
  color: #000;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: #fff;
  bottom: 42px;
  left: 0;
  right: 0;
  z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}


.delay-2{
  animation-delay:0.2s
}
.delay-4{
  animation-delay:0.4s
}
.delay-6{
  animation-delay:0.6s
}
.delay-8{
  animation-delay:0.8s
}
.delay-10{
  animation-delay:1s
}
.delay-12{
  animation-delay:1.2s
}
.delay-14{
  animation-delay:1.4s
}


@-webkit-keyframes HideList {
  from {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }

  to {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
}

@keyframes HideList {
  from {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }

  to {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
}

.mobile {
  overflow-y: scroll;
}

body.mobile .select-language {
  width: auto;
  position: initial;
  padding: 0px 30px;
}

body.mobile .select-area {
  display: block;
}

body.mobile .scene-text {
  margin-top: 60px;
}

body.mobile .select-box__list li label {
  padding: 20px 0px;
}

body.mobile .select-box {
  width: 100%;
  display: block;
}

body.mobile .select-area .language-ok {
  width: 100%;
  display: block;
  padding: 20px 0px;
  margin: 10px 0px;
}
#scene-tr,
#scene-ge,
#scene-ru,
#scene-uk{
  display: none;

}

@media screen and (max-width:768px) {
	.select-language{
		width: 90%;
		left: 5%;
		overflow-y: visible;
	}
	.select-language .select-area{
		display: flex;
    flex-direction: column;
	}
	.select-language .select-area .custom-select{
		width: 100%;
		margin-bottom: 1rem;
	}
	.select-area .language-ok{
		margin-left: 0;
		width: -webkit-fill-available;
	}
	.select-language #artist-name{
		display: none;
	}
		.cc-window{
			display: none !important;
		}
}
