html,body{
  font-family: Roboto,Helvetica,Arial,sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  background-color: #17181c;
  height: 100vh;

}

.container{
  max-width: 900px;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
  padding-top: 100px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: Roboto,Helvetica,Arial,sans-serif;
  font-weight: 400;
  color: #fff;
}
h1{
  font-size: 36px;
}
h4{
  font-size: 18px;
  margin-bottom: 0; 
}
p{
  color: rgba(255,255,255,.7);
}
hr{
  overflow: visible;
  text-align: inherit;
  border: 0;
  border-top: 1px solid #e5e5e5;
  border-top-color: rgba(255,255,255,.2);
  margin: 0;
}
a,.logo:hover{
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
}

.logo{
  font-family: Roboto,Helvetica,Arial,sans-serif;
  display: flex;
  align-items: center;
  position: relative;
}

.logo > img{
  position: absolute;
  left: 20px;
}
.logo > .name{
  font-size: 29px;
  color: #fff;
  margin: 0 10px;
  margin-left: 0;
}
.logo > .name > .os{
  font-weight: 100;
}
img.icon-app{
  height: 25px;
  width: 25px;
  margin-right: 20px !important;
}

.lds-ripple1 {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ripple1 div {
  position: absolute;
  border: 4px solid #fff;
  opacity: 1;
  border-radius: 50%;
}

.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ripple div {
  position: absolute;
  border: 4px solid #fff;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;å
  }
}


.label {
  display: inline-block;
  padding: 0 10px;
  line-height: 1.5;
  font-size: .875rem;
  background-color: #fff;
  color: #666;
  vertical-align: middle;
  white-space: nowrap;
  border-radius: 2px;
  text-transform: uppercase;
}
/* .tm-section-texture{
    background: url(https://getuikit.com/images/section-background.svg) 50% 17vh no-repeat,linear-gradient(to left top, #229ceb, #0e6cc4) 0 0 no-repeat;
} */
/*waves****************************/


.box {
	position: fixed;
	top: 0;
	transform: rotate(80deg);
	left: 0;
}

.wave {
	position: fixed;
	top: 0;
	left: 0;
  opacity: .4;
  position: absolute;
  top: 3%;
  left: 10%;
  background: #0af;
  width: 1500px;
  height: 1300px;
  margin-left: -150px;
  margin-top: -250px;
  transform-origin: 50% 48%;
  border-radius: 43%;
  animation: drift 7000ms infinite linear;
}

.wave.-three {
  animation: drift 7500ms infinite linear;
	position: fixed;
	background-color: #77daff;
}

.wave.-two {
  animation: drift 3000ms infinite linear;
  opacity: .1;
  background: black;
	position: fixed;
}

.box:after {
  content: '';
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  transform: translate3d(0, 0, 0);
}

@keyframes drift {
  from { transform: rotate(0deg); }
  from { transform: rotate(360deg); }
}

/*LOADING SPACE*/

.contain {
	animation-delay: 4s;
	z-index: 1000;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  background: #25a7d7;
  background: -webkit-linear-gradient(#25a7d7, #2962FF);
  background: linear-gradient(#25a7d7, #25a7d7);
}

.icon {
  width: 100px;
  height: 100px;
  margin: 0 5px;
}

/*Animation*/
.icon:nth-child(2) img {-webkit-animation-delay: 0.2s;animation-delay: 0.2s}
.icon:nth-child(3) img {-webkit-animation-delay: 0.3s;animation-delay: 0.3s}
.icon:nth-child(4) img {-webkit-animation-delay: 0.4s;animation-delay: 0.4s}

.icon img {
  -webkit-animation: anim 2s ease infinite;
  animation: anim 2s ease infinite;
  -webkit-transform: scale(0,0) rotateZ(180deg);
  transform: scale(0,0) rotateZ(180deg);
}

@-webkit-keyframes anim{
  0% {
    -webkit-transform: scale(0,0) rotateZ(-90deg);
    transform: scale(0,0) rotateZ(-90deg);opacity:0
  }
  30% {
    -webkit-transform: scale(1,1) rotateZ(0deg);
    transform: scale(1,1) rotateZ(0deg);opacity:1
  }
  50% {
    -webkit-transform: scale(1,1) rotateZ(0deg);
    transform: scale(1,1) rotateZ(0deg);opacity:1
  }
  80% {
    -webkit-transform: scale(0,0) rotateZ(90deg);
    transform: scale(0,0) rotateZ(90deg);opacity:0
  }
}

@keyframes anim{
  0% {
    -webkit-transform: scale(0,0) rotateZ(-90deg);
    transform: scale(0,0) rotateZ(-90deg);opacity:0
  }
  30% {
    -webkit-transform: scale(1,1) rotateZ(0deg);transform: scale(1,1) rotateZ(0deg);opacity:1
  }
  50% {
    -webkit-transform: scale(1,1) rotateZ(0deg);
    transform: scale(1,1) rotateZ(0deg);opacity:1
  }
  80% {
    -webkit-transform: scale(0,0) rotateZ(90deg);
    transform: scale(0,0) rotateZ(90deg);opacity:0
  }
}


.fill:hover,
.fill:focus {
  box-shadow: inset 0 0 0 2em var(--hover);
}

.pulse:hover, 
.pulse:focus {
  animation: pulse 1s;
  box-shadow: 0 0 0 2em rgba(#fff,0);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--hover); }
}


.close:hover,
.close:focus {
  box-shadow: 
    inset -3.5em 0 0 0 var(--hover),
    inset 3.5em 0 0 0 var(--hover);  
}


.raise:hover,
.raise:focus {
  box-shadow: 0 0.5em 0.5em -0.4em var(--hover);
  transform: translateY(-0.25em);
}

.up:hover,
.up:focus {
  box-shadow: inset 0 -3.25em 0 0 var(--hover);
}


.slide:hover,
.slide:focus {
  box-shadow: inset 6.5em 0 0 0 var(--hover);
}

.offset {  
  box-shadow: 
    0.3em 0.3em 0 0 var(--color),
    inset 0.3em 0.3em 0 0 var(--color);
  
  &:hover,
  &:focus {
    box-shadow: 
      0 0 0 0 var(--hover),
      inset 6em 3.5em 0 0 var(--hover);
  }
}



$colors: (
  fill: #a972cb,
  pulse: #ef6eae, 
  close: #ff7f82, 
  raise: #ffa260, 
  up: #e4cb58, 
  slide: #8fc866, 
  offset: #19bc8b
);


@each $button, $color in $colors {
  .#{$button} {
    --color: #{$color};
    --hover: #{adjust-hue($color, 45deg)};
  }
}


button {  
  color: var(--color);
  transition: 0.25s;
  
  &:hover,
  &:focus { 
    border-color: var(--hover);
    color: #fff;
  }
}

body {
  color: #fff;
  background: hsl(227, 10%, 10%);
  font: 300 1em 'Fira Sans', sans-serif;
  
  // Center everything ever
  justify-content: center;
  align-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  display: flex;
}

button {
  background: none;
  border: 2px solid;
  font: inherit;
  line-height: 1;
  margin: 0.5em;
  padding: 1em 2em;
}

h1 { font-weight: 400; }

code { 
  color: #e4cb58;
  font: inherit;
}


.chevron-right-app{
  height: 24px;
  width: 24px;
}

.card{
  position: relative;
  box-sizing: border-box;
  transition: box-shadow .1s ease-in-out;
  display: flow-root;
  color: #fff;
  margin-bottom: 40px;
  margin-top: 15px;
  background: #124ba8;
  box-shadow: 0 5px 15px rgba(0,0,0,.08);
  padding: 40px 40px;
}

.card-item{
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  padding: 15px 0;
}

.col-name-app{
  display: flex;
  align-items: center;
}
.footer{
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  text-align: center;
  color: rgba(255,255,255,.5);
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 40px;
}

.footer-item{
  display: flex;
  align-items: center;
 color: rgba(255,255,255,.5);
 font-size: 14px;

}
.footer-item a{
 color: rgba(255,255,255,.5);
}
.footer-item:not(:first-child){
  padding: 0 20px;
}

.footer-item img{
opacity: 0.7;
height: 24px;
width: 24px;
margin-right: 10px;
 }



 #cache-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

@keyframes rotationCycle {
  0% { transform: rotate(-90deg) scale(0) }
  40% { transform: rotate(0deg) scale(1) }
  50% { transform: rotate(0deg) scale(1) }
  100% { transform: rotate(90deg) scale(0) }
}

#cache-loading img {
  animation-name: rotationCycle;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  height: 60px;
  width: auto;
}

#cache-loading img:nth-child(2) { animation-delay: 200ms }
#cache-loading img:nth-child(3) { animation-delay: 300ms }
#cache-loading img:nth-child(4) { animation-delay: 400ms }