@import "styles/base.scss";

/* main container styles */
#wrapper {
    overflow: hidden;
    position: relative;
    min-height: 100%;
    top: 0;
    color: #7e95ac;

    padding-top: 75px;
    @include media('>=tablet') {
      padding-left: 90px;
    }
  
    @include media('>=1600px') {
      padding-left: 130px;
    }
  }
  
  .container-fluid {
    padding: 0;
    margin: 0 auto;
  
    @include media('<tablet') {
      padding: 0;
    }
  
    @include media('>=1600px') {
      padding: 0 250px 0 0;
      margin: 0;
      width: 100%;
      max-width: none;
    }
  
    &.container-login {
      padding-right: 130px;
  
      @include media('<tablet') {
        padding-right: 0;
      }
    }
  }
  
  /* Spinner */
  #overlay {
    position: fixed;
    z-index: 3000;
    height: 5em;
    width: 5em;
    overflow: visible;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
  }
  
  /* Transparent Overlay */
  #overlay:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
  }
  
  /* :not(:required) hides these rules from IE9 and below */
  #overlay:not(:required) {
    /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
  }
  
  #overlay:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 5em;
    height: 5em;
    margin-top: -2.5em;
    margin-left: -2.5em;
    -webkit-animation: rotation .6s infinite linear;
    -moz-animation: rotation .6s infinite linear;
    -o-animation: rotation .6s infinite linear;
    animation: rotation .6s infinite linear;
    border-left:6px solid rgba(0,174,239,.15);
    border-right:6px solid rgba(0,174,239,.15);
    border-bottom:6px solid rgba(0,174,239,.15);
    border-top:6px solid rgba(0,174,239,.8);
    border-radius:100%;
  }
  
  /* Animation */
  @-webkit-keyframes rotation {
    from {-webkit-transform: rotate(0deg);}
    to {-webkit-transform: rotate(359deg);}
  }
  @-moz-keyframes rotation {
    from {-moz-transform: rotate(0deg);}
    to {-moz-transform: rotate(359deg);}
  }
  @-o-keyframes rotation {
    from {-o-transform: rotate(0deg);}
    to {-o-transform: rotate(359deg);}
  }
  @keyframes rotation {
    from {transform: rotate(0deg);}
    to {transform: rotate(359deg);}
  }