/*!
 * Main Page Loader
 */
#cmsPageLoader:after, body.is-loading-cms-iframe #cmsOutterIframeContainer:after {
    content: '';
    background: #fff !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*!
 * Main Page Loader
 */
 
 /*!
 * Text Selection
 */
::selection {
    color: #fff;
    background: #616161;
}
/*!
 * Text Selection
 */
 
 /*!
 * Main CTA Hover
 */
.buttonHover {
    transition: background .5s,border-color .5s,color .5s;
}
/*!
 * Main CTA Hover
 */
 
 /*!
 * Welcome Modal Animation
 */
.come-in {
  transform: translateY(60px);
  animation: come-in 1.8s ease forwards;
}
.come-in:nth-child(odd) {
  animation-duration: 1.8s;
}
.already-visible {
  transform: translateY(0);
  animation: none;
}

@keyframes come-in {
  to { transform: translateY(0); }
}
/*!
 * Welcome Modal Animation
 */
 
 /*!
 * Page Loader Animation
 */
.nu-loader {
  border-width: 2px !important;
  border-style: solid;
  border-color: #616161;
  border-radius: 50%;
  box-sizing: border-box;
  border-right-color: transparent;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  color: #000;
}
/*!
 * Page Loader Animation
 */
 
 /*!
 * FADE-IN ANIMATION
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
/*!
 * FADE-IN ANIMATION
 */

/*!
 * SCROLLBAR
 */
::-webkit-scrollbar {
    display: none !important;
}
/*!
 * SCROLLBAR
 */
 
 /* float */
.float {

  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;

}

.float:hover, .float:focus, .float:active {

  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
  
}
/*float*/