#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background-color: white;
    z-index: 1000;
}
 
#loader-wrapper .loader-section.section-left {
    left: 0;
}
 
#loader-wrapper .loader-section.section-right {
    right: 0;
}

#loader-wrapper .loader{
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1001;
    margin-top: -100px; /* Half the height */
    margin-left: -100px; /* Half the width */
}

.hidden {
    display: none;
}

.center-logo{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.center-icon{
    margin-left: auto;
    margin-right: auto;
    height: 50px;
    width: 50px;
}

.cryptoLink {
    color: black;
    text-decoration: none;
    -moz-transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -o-transition: all linear .3s;
    transition: all linear .3s;
}

.cryptoLink:hover {
    color: #E2B93D;
}




a.cryptoLink {
    color: inherit;
    text-decoration: none;
    outline: none;
  }

  * {
    box-sizing: border-box;
  }

  a.cryptoLink {
    position: relative;
    display: block;
    margin: 0 2px;
    padding: 0.625rem 1.25rem;
    text-transform: uppercase;
    overflow: hidden;
  }
  a.cryptoLink:before {
    box-sizing: border-box;
    transform: translateX(100%);
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 99.5%;
    height: 2px;
    border-bottom: 2px solid transparent;
    border-left: 2px solid transparent;
  }
  a.cryptoLink:after {
    box-sizing: border-box;
    transform: translateX(-100%);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 99.5%;
    height: 2px;
    border-top: 2px solid transparent;
    border-right: 2px solid transparent;
  }
  a.cryptoLink:hover {
    text-decoration: none;
  }
  a.cryptoLink:hover:before {
    transition: .1s transform linear, .1s height linear .1s;
    transform: translateX(0);
    height: 100%;
    border-color: #edc240;
  }
  a.cryptoLink:hover:after {
    transition: .1s transform linear .2s, .1s height linear .3s;
    transform: translateX(0);
    height: 100%;
    border-color: #edc240;
  }