/*================================================================================
	Item Name: Crypto ICO - Cryptocurrency Website Landing Page HTML Template
	Version: 1.0
	Author: PIXINVENT
	Author URL: http://www.themeforest.net/user/pixinvent
================================================================================

NOTE:
------
PLACE HERE YOUR OWN SCSS CODES AND IF NEEDED, OVERRIDE THE STYLES FROM THE OTHER STYLESHEETS.
WE WILL RELEASE FUTURE UPDATES SO IN ORDER TO NOT OVERWRITE YOUR STYLES IT'S BETTER LIKE THIS.  */
* {
  touch-action: auto;
}

.divider-exchange::before {
  height: 50% !important;
  float: left !important;
  position: absolute !important;
  top: 50% !important;
  left: 0 !important;
  transform: translateY(-50%) !important;
}

.divider-exchange {
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media screen and (max-width: 480px) {
  .divider-exchange {
    display: none !important;
  }
}

.links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn.disabled,
.btn:disabled {
  opacity: 0.65 !important;
}

.section-padding {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.footer {
  padding-top: 6rem !important;
}

.loading {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 123123;
  background: url(/assets/images/loader-logo.png);
  background-size: contain;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  background-color: #ffe98d;
  border: 4px solid #ffe98d;
  box-shadow: 0px 0px 12px 4px #ffe98d;
  transform: translate(-50%, -50%);
}
.loading:after {
  content: "";
  background: trasparent;
  width: 130%;
  height: 130%;
  position: absolute;
  border-radius: 100%;
  top: -15%;
  left: -15%;
  opacity: 1;
  box-shadow: #ffe98d -4px -5px 3px -3px;
  animation: rotate 2s infinite linear;
}

@keyframes rotate {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
