.srizon a {
  cursor: pointer;
}

.srizon a:hover {
  text-decoration: underline;
}

.srizon .clickable {
  cursor: pointer;
}

.srizon .clickable:hover h5 {
  font-weight: 300 !important;
}

.srizon .big-icon {
  font-size: 98px;
}

.srizon .ml10 {
  margin-left: 10px !important;
}

.srizon .top50 {
  margin-top: 50px;
}

.srizon .top40 {
  margin-top: 40px;
}

.srizon .top30 {
  margin-top: 30px;
}

.srizon .top20 {
  margin-top: 20px;
}

.srizon .top10 {
  margin-top: 10px;
}

.srizon .top0 {
  margin-top: 0 !important;
}

.srizon .left35 {
  padding-left: 35px;
}

.srizon .bottom0 {
  margin-bottom: 0 !important;
}

.srizon .bottom50 {
  margin-bottom: 50px !important;
}

.srizon .bottom40 {
  margin-bottom: 40px !important;
}

.srizon .bottom30 {
  margin-bottom: 30px !important;
}

.srizon .bottom20 {
  margin-bottom: 20px !important;
}

.srizon .bottom10 {
  margin-bottom: 10px !important;
}

.srizon .pl0 {
  padding-left: 0 !important;
}

.srizon .plr0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.srizon .pl5 {
  padding-left: 5px;
}

.srizon .pr50 {
  padding-right: 50px !important;
}

.srizon .ml0 {
  margin-left: 0 !important;
}

.srizon .mlr0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.srizon .thin {
  font-weight: 200 !important;
}

.srizon .fixed-bottom-right {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 300px;
  z-index: 9999;
}

.srizon .fixed-top-right {
  position: fixed;
  top: 40px;
  right: 0;
  width: 300px;
  z-index: 9999;
}

.srizon .no-transform {
  text-transform: none !important;
}

@-webkit-keyframes autofill {
  to {
    color: #cccc00;
    background: transparent;
  }
}

.srizon input:-webkit-autofill {
  -webkit-animation-name: autofill;
  -webkit-animation-fill-mode: both;
}

.srizon .card {
  min-width: 50px;
  max-width: 100%;
}

.srizon .card .card-action {
  background-color: white;
}

.srizon .card .card-action a {
  line-height: 20px;
  height: 20px;
  vertical-align: middle;
  display: inline-block;
}

.srizon .card .card-action a i.material-icons {
  font-size: 20px;
}

.srizon .btn {
  text-transform: none;
}

.srizon .svg-button-icon {
  line-height: 97px;
  padding-right: 10px;
}

.srizon .svg-button-icon svg {
  width: 40px;
  height: 40px;
  color: white;
  fill: white;
}

.srizon .copy-text {
  position: relative;
  left: 5px;
  cursor: pointer;
  font-size: 12px;
}

.srizon .btn-floating-small {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.srizon .btn-floating-small i {
  line-height: 31px;
  font-size: 1.2rem;
}

.srizon .btn-small {
  padding: 0 14px;
  line-height: 30px;
  height: 30px;
}

.srizon .btn-small + .btn-small {
  margin-left: 5px;
}

.srizon .btn-spin i:hover {
  -webkit-animation: spin .5s linear;
          animation: spin .5s linear;
}

.srizon .red-icon {
  color: #E57373;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.srizon .red-icon:hover {
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  color: #D32F2F;
  text-shadow: 0 0 2px #EF9A9A;
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
  }
}

.get-token-button {
  width: 100%;
  padding: 30px 0;
}

.get-token-button .btn {
  height: 70px;
  line-height: 70px;
  padding-left: 20px;
  padding-right: 30px;
  text-transform: none;
}

.srizon .app-title .main-title {
  letter-spacing: -1.5px;
}

.srizon .app-title .chip-col h5 {
  margin-top: 10px;
  margin-bottom: 2px;
}

.scale-enter {
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
}

.scale-enter.scale-enter-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.scale-leave {
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.scale-leave.scale-leave-active {
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.slide-up-enter {
  position: relative;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  top: 20px;
  opacity: 0;
}

.slide-up-enter.slide-up-enter-active {
  position: relative;
  top: 0px;
  opacity: 1;
}

.slide-up-leave {
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  position: relative;
  top: 0px;
  opacity: 1;
}

.slide-up-leave.slide-up-leave-active {
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  position: relative;
  top: -100px;
  opacity: 0;
}

.srizon .temp-msg {
  padding: 10px;
  margin: 10px;
  -webkit-box-shadow: 2px 2px 7px black;
          box-shadow: 2px 2px 7px black;
}

.srizon .temp-msg h5 {
  font-size: 18px;
  margin: 0;
  padding: 0;
}

#nano-bar-id {
  z-index: 99999;
}

#nano-bar-id .bar {
  background-color: red;
}

.srizon .card {
  border: 0;
  padding: 0;
}

.srizon .tabs {
  background-color: transparent !important;
}

.srizon .tabs a {
  text-transform: none !important;
  color: #2196F3 !important;
}

.srizon .tabs a:focus {
  outline: 0 !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.srizon .tabs a:hover {
  color: #0D47A1 !important;
  text-decoration: none !important;
}

.srizon .tabs .indicator {
  background-color: #2196F3 !important;
}

.srizon .input-align {
  height: 5rem;
  line-height: 5rem;
}

.srizon {
  margin-top: 10px !important;
}

