/* @charset "UTF-8";
body {
  line-height: 1.7;
  font-weight: 400;
  font-size: 1rem;
  color: #999999;
  font-family: 'Rubik', serif;
}
*{
  color: #fff;
}
::-moz-selection {
  background: #FFFFFF;
  color: #FFFFFF; }

::selection {
  background: #FFFFFF;
  color: #FFFFFF; }

h1, h2, h3, h4, h5, h6, .site-logo, .add-portfolio {
  font-family: 'Rubik', sans-serif;
 }

.ticker-tape-underline{
  margin-top: -35px;
  width:100%;
  border-bottom: 1px solid #fff;
  margin-bottom: 3%;
}


label {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  color: #fff; }

  input {
    background: #1e1f26;
    color: white;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 3px;
    border: 1px solid transparent;
    padding: 6px 30px;
    font-family: 'Rubik', monospace;
    box-sizing: border-box;
  }
  ::placeholder{
    text-transform: none;
  }

  input:focus{
    outline: none;
  }

button {
  display: inline-block;
  margin: 20px auto;
  position: relative;
  font-size: 12px;
  color: #ffffff;
  cursor: pointer;
  border-radius: 3px;
  padding: 8px 20px;
  border: 0px solid #000;
}

header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  vertical-align: middle;
  background-color: black;
}

.stock-search-bar {

  width: 30%;
  height: 65%;
  margin: 0;
  margin-left: 20px;
  margin-right: auto;
}

#search-symbol {
  padding-top: 0%;
}

 #navbar-dash{
   margin-left: 30px;
   margin-right: 10px;
   margin-top: 10px;
 }

 #navbar-dash:hover{
   -webkit-transform: scale(1.4);
   transform: scale(1.4);
   -o-transition: .2s all ease;
   transition: .2s all ease;
 }

 #navbar-marketplace{
   margin-left: 30px;
   margin-right: 10px;
   margin-top: 10px;
 }

  #navbar-marketplace:hover{
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
    -o-transition: .2s all ease;
    transition: .2s all ease;
  }

 #navbar-competitive{
   margin-left: 30px;
   margin-right: 10px;
   margin-top: 10px;
 }

  #navbar-competitive:hover{
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
    -o-transition: .2s all ease;
    transition: .2s all ease;
  }

  #navbar-social{
    margin-left: 30px;
    margin-right: 10px;
    margin-top: 10px;
  }

   #navbar-social:hover{
     -webkit-transform: scale(1.4);
     transform: scale(1.4);
     -o-transition: .2s all ease;
     transition: .2s all ease;
   }

   #navbar-guide{
     margin-left: 30px;
     margin-right: 10px;
     margin-top: 10px;
   }

  #navbar-guide:hover{
      -webkit-transform: scale(1.4);
      transform: scale(1.4);
      -o-transition: .2s all ease;
      transition: .2s all ease;
    }

 #navbar-user{
   margin-left: 30px;
   margin-right: 30px;
   margin-top: 10px;
 }

 #navbar-user:hover{
   -webkit-transform: scale(1.4);
   transform: scale(1.4);
   -o-transition: .2s all ease;
   transition: .2s all ease;
 }

 .form-group {
   position: relative;
   overflow: hidden;
 }

 #app-navbar-logo {
   margin-left: 40px;
   width: 25px;
   height: 25px;
 }



 #app-navbar-symbol-searchbar{
   text-transform: uppercase;
 }

 .app-navbar-item {
   border: 1px solid red;
   border-radius: 20px;
   margin-left: 20px;
   width: 40px;
   height: 40px;
 }

.coming-soon {
  display: flex;
  width: 100%;
  height: 93%;
  justify-content: center;
  align-items: center;
  color: #06d6a0;
  font-size: 48px;
  font-family: "Rubik", sans-serif;
}

.coming-soon-container{

  width: 400px;
  margin: 17em auto;
  padding-top: 10px;
  padding-bottom: 35px;
  background-color: #06d6a0;
  border-radius: 30px;
  box-shadow:
  0 2.8px 2.2px rgba(0, 0, 0, 0.034),
  0 6.7px 5.3px rgba(0, 0, 0, 0.048),
  0 12.5px 10px rgba(0, 0, 0, 0.06),
  0 22.3px 17.9px rgba(0, 0, 0, 0.072),
  0 41.8px 33.4px rgba(0, 0, 0, 0.086),
  0 100px 80px rgba(0, 0, 0, 0.12);
}

.loader {
  position: relative;
  margin-top: 20%;
  left: calc(50% - 32px);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  perspective: 800px;
}

.inner {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.inner.one {
  left: 0%;
  top: 0%;
  animation: rotate-one 1s linear infinite;
  border-bottom: 3px solid blue;
}

.inner.two {
  right: 0%;
  top: 0%;
  animation: rotate-two 1s linear infinite;
  border-right: 3px solid purple;
}

.inner.three {
  right: 0%;
  bottom: 0%;
  animation: rotate-three 1s linear infinite;
  border-top: 3px solid black;
}

@keyframes rotate-one {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}

@keyframes rotate-two {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}

@keyframes rotate-three {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
} */

#mynt-header{
  margin-top: 9.5%;
}

#container{
  text-align: center;

}

#main-text{

  text-align: center;
  color: darkgrey;
  font-size: 40px;
  font-family: "Lato", sans-serif;
}

#main-text-two{

  text-align: center;
  color: ivory;
  font-size: 20px;
  font-family: "Lato", sans-serif;
}

#ig-link{
  color: black;
}

#ig-button {
  margin: auto;
  margin-top: 4%;
  height: 40px;
  width: 150px;
  border-radius: 3px;
  background-color: #06d6a0;
}

.fa-paper-plane{
  margin-top: 6.5%;
}

#ig-button:hover{
  cursor: pointer;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -o-transition: .2s all ease;
  transition: .2s all ease;
}

#minor-text{
  margin-top: 1%;
  text-align: center;
  color: darkgrey;
  font-size: 14px;
  font-family: "Rubik", sans-serif;
}


#logo {
  margin: auto;
}

#mynt-sublogo {
  padding: 6px;
  text-align: center;
  color: whitesmoke;
  font-size: 36px;
  margin-bottom: 40px;
  font-family: "Rubik", sans-serif;
}



.text-container {

  margin-top: 2%;
  height: 5%;
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}
.text {
  font-weight: 100;
  font-size: 20px;
  color: white;
  font-family: "Rubik", sans-serif;
}
.dud {
  color: #757575;
}

#back-to-dash {
  position: absolute;
  top: 30px;
  left: 2.75%;
  width: 30px;
  height: 50px;
  line-height: 3rem;
  font-size: 60px;
  font-family: 'Rubik', sans-serif;
}

#back-to-dash:hover {
  cursor: pointer;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -o-transition: .2s all ease;
  transition: .2s all ease;
}

.fa-chevron-left{
  font-size: 40px;
  color: whitesmoke;
}
