/*
dark blue: #23374d
light blue: #1089ff
bg : background: #f1f4f6;
shadow:
box-shadow: 0 0.46875rem 2.1875rem rgba(4,9,20,0.03), 0 0.9375rem 1.40625rem rgba(4,9,20,0.03), 0 0.25rem 0.53125rem rgba(4,9,20,0.05), 0 0.125rem 0.1875rem rgba(4,9,20,0.03);



*/
/*the container must be positioned relative:*/

/*Toast*/
.toast {
  animation: glow-blue 1.5s infinite ease-in-out !important;
}

.toast.success {
  border-left: 3px solid #31a66a;
  animation: glow-green 1.5s infinite ease-in-out !important;
}

.toast.danger {
  border-left: 3px solid #b81f44;
  animation: glow-red 1.5s infinite ease-in-out !important;
}

@-webkit-keyframes glow-red {
  0% {
    -webkit-box-shadow: 0 0 50px 50px rgba(255, 50, 50, 0.9);
  }
  50% {
    -webkit-box-shadow: 0 0 50px 0px rgba(255, 50, 50, 0.2);
  }
  100% {
    -webkit-box-shadow: 0 0 50px 50px rgba(255, 50, 50, 0.9);
  }
}

@keyframes glow-red {
  0% {
    box-shadow: 0 0 50px rgba(255, 50, 50, 0.9);
  }
  50% {
    box-shadow: 0 0 50px rgba(255, 50, 50, 0.2);
  }
  100% {
    box-shadow: 0 0 50px rgba(255, 50, 50, 0.9);
  }
}

@-webkit-keyframes glow-green {
  0% {
    -webkit-box-shadow: 0 0 50px 50px rgba(50, 230, 50, 0.9);
  }
  50% {
    -webkit-box-shadow: 0 0 50px 0px rgba(50, 230, 50, 0.2);
  }
  100% {
    -webkit-box-shadow: 0 0 50px 50px rgba(50, 230, 50, 0.9);
  }
}

@keyframes glow-green {
  0% {
    box-shadow: 0 0 50px rgba(50, 230, 50, 0.9);
  }
  50% {
    box-shadow: 0 0 50px rgba(50, 230, 50, 0.2);
  }
  100% {
    box-shadow: 0 0 50px rgba(50, 230, 50, 0.9);
  }
}

@-webkit-keyframes glow-blue {
  0% {
    -webkit-box-shadow: 0 0 50px 50px rgba(50, 50, 255, 0.9);
  }
  50% {
    -webkit-box-shadow: 0 0 50px 0px rgba(50, 50, 255, 0.2);
  }
  100% {
    -webkit-box-shadow: 0 0 50px 50px rgba(50, 50, 255, 0.9);
  }
}

@keyframes glow-blue {
  0% {
    box-shadow: 0 0 50px rgba(50, 50, 255, 0.9);
  }
  50% {
    box-shadow: 0 0 50px rgba(50, 50, 255, 0.2);
  }
  100% {
    box-shadow: 0 0 50px rgba(50, 50, 255, 0.9);
  }
}

.custom-select {
  position: relative;
  font-family: Arial;
}

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

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

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

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

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  color: #ffffff;
  padding: 8px 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: DodgerBlue;
  top: 100%;
  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);
}
html {
  font-size: 14px;
}

html,
body {
  width: 100%;
  height: 100%;
  background: #f1f4f6;
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
}

p {
  font-family: "Lato", sans-serif;
}

a {
  color: rgb(0, 174, 255) !important;
  font-weight: bold;
}


.ucontrol > div,
.lcontrol > div {
  padding: 0.5rem;
}

.ucontrol .observation-mock {
  width: 100%;
  height: 15rem;
  background: #134e5e;
  background: -webkit-linear-gradient(to right, #71b280, #134e5e);
  background: linear-gradient(to right, #71b280, #134e5e);
  border: 0.1rem solid #555;
}
.t-wrapper {
  display: table;
  width: 100%;
}
.t-wrapper > div {
  height: 100%;
  display: table-row;
}

.panel {
  background: #fff;
  width: 100%;
  /* height: 100%; */
  box-shadow: 0 0.46875rem 2.1875rem rgba(4, 9, 20, 0.03), 0 0.9375rem 1.40625rem rgba(4, 9, 20, 0.03),
    0 0.25rem 0.53125rem rgba(4, 9, 20, 0.05), 0 0.125rem 0.1875rem rgba(4, 9, 20, 0.03);
  padding: 0.5rem;
}
.panel .panel-head {
  background: #1089ff;
  color: #fff;
  margin: -0.5rem;

  padding: 0.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
}
.panel.padd {
  padding: 0.5rem 2rem;
}

#typer {
  height: 10rem;
  overflow:auto;
}

#scene-anim {
  width: 100%;
  height: 50rem;
  position: relative;
  perspective: 70rem;
  z-index: 2;
}

#card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: all 0.7s;
}

#card.back {
  transform: rotateY(180deg);
}

#front-face,
#back-face {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

#back-face {
  transform: rotateY(180deg);
}

.scene {
  display: none;
}

.but {
  padding: 1rem 2rem;
  background: none;
  color: #fff;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  border: 0.2rem solid #fff;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 0.1rem rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
}
.but.sm {
  padding: 0.5rem 1rem;
}
.panel img{
  width:100%;
}

.out{
  background-color: rgba(8, 43, 243, 0.685)!important;
  cursor: not-allowed!important;
}

.out1{
  cursor: not-allowed!important;
}

.but:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 0 0.1rem #fff;
}

.but.blue:hover {
  background: #1089ff;
  color: #fff;
  box-shadow: 0 0 0 0.1rem #1089ff;
}

.but.green:hover {
  background: #11c96d;
  color: #fff;
  box-shadow: 0 0 0 0.1rem #10ff89;
}

.but.red:hover {
  background: #f32222;
  color: #fff;
  box-shadow: 0 0 0 0.1rem #db2727;
}

.but.orange:hover {
  background: #f18b06;
  color: #fff;
  box-shadow: 0 0 0 0.1rem #c55723;
}

div[class*="scene-"] {
  position: relative;
  height: 100%;
  width: 100%;
  backface-visibility: hidden;
}

div[class*="scene-"] .next {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  backface-visibility: hidden;
}

div[class*="scene-"] .back {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  backface-visibility: hidden;
}

.scene-2,
.scene-3 {
  padding: 0 !important;
  background: rgb(51, 51, 51);
}

.lcontrol button {
  background: none;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  padding: 1rem;
  color: #aaa;
}

.custom-handle {
  width: 1.9rem !important;
  height: 1.6em !important;
  top: 50%;
  margin-top: -0.4em;
  text-align: center;
  line-height: 1.6em;
}
