.primary-color {
    color: #04A9FA;
}
.secondary-color {
    color: #222731;
}

a {
    color: #04A9FA;
    text-decoration: none;
    background-color: transparent;
  }
  
  a:hover {
    color: #0083c3;
    text-decoration: none;
  }
  
  a:not([href]):not([class]) {
    color: inherit;
    text-decoration: none;
  }
  
  a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
  }

/* Login Page */
.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: #04A9FA;
    background-color: #04A9FA;
}
.btn-primary {
    color: #fff;
    background-color: #04A9FA;
    border-color: #04A9FA;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary.focus {
    color: #fff;
    background-color: #0083c3;
    border-color: #0083c3;
}

.bg-login-image {
    background: url(images/logo.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #222731;
}

.bg-register-image {
    background: url(logo.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #222731;
}

.bg-password-image {
    background: url(logo.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #222731;
}

.login-bottom label {
    padding-right: 5px;
}

/* Dashboard Sidebar */
  .bg-gradient-primary {
    background-color: #222731;
    background-image: linear-gradient(180deg, #222731 10%, #121317 100%);
    background-size: cover;
  }

  .sidebar-dark .nav-item.active .nav-link {
    color: #04A9FA;
  }
  
  .sidebar-dark .nav-item.active .nav-link i {
    color: #04A9FA;
  }

  .sidebar-dark .nav-item .nav-link {
    color: rgba(4, 169, 250);
  }
  
  .sidebar-dark .nav-item .nav-link i {
    color: rgba(4, 169, 250);
  }
  
  .sidebar-dark .nav-item .nav-link:active, .sidebar-dark .nav-item .nav-link:focus, .sidebar-dark .nav-item .nav-link:hover {
    color: rgb(4, 169, 250);
  }
  
  .sidebar-dark .nav-item .nav-link:active i, .sidebar-dark .nav-item .nav-link:focus i, .sidebar-dark .nav-item .nav-link:hover i {
    color: #04A9FA;
  }
  
  .sidebar-dark .nav-item .nav-link[data-toggle="collapse"]::after {
    color: rgba(4, 169, 250, 0.5);
  }

  .sidebar-logo img {
    max-width: 78%;
    margin-left: -32%;
}

/* Order Details */
.downloadzip-wrap {
  position: relative;
}
.downloadzip-icon {
  position: absolute;
    bottom: 10px;
    right: 10px;
}
.downloadzip-wrap a {
  color: #fff;
}

----



*,
*::before,
*::after {
  box-sizing: border-box;
}

.rainbow {
  width: 300px;
  height: 50px;
  border-radius: 10px;
  padding: 2rem;
  margin: auto;

  display: grid;
  place-content: center;
  text-align: center;

  font-size: 1.5em;

  --border-size: 0.3rem;
  border: var(--border-size) solid transparent;

  /* Paint an image in the border */
  border-image: conic-gradient(
      from var(--angle),
      #04A9FA 0deg 90deg,
      #000 90deg 180deg,
      #04A9FA 180deg 270deg,
      #000 270deg 360deg
    )
    1 stretch;
  background: rgb(255 255 255);
}


/* Animate when Houdini is available */
@supports (background: paint(houdini)) {
  
  @property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
  }

  @keyframes rotate {
    to {
      --angle: 360deg;
    }
  }

  .rainbow {
    animation: rotate 4s linear infinite, infinite alternate;
  }
}


.button {
  width: 200px;
  height: 50px;
  position: absolute;
  border: solid rgba(255, 255, 255, 0.3) 1px;
  background: transparent;
  cursor: pointer;
  transition: all 1s;
}
.button span {
  position: absolute;
  top: 15px;
  left: 60px;
  color: white;
  font-family: "Roboto", sans-serif;
  opacity: 0.7;
}
.button .line {
  background: white;
  position: absolute;
  transition: none;
  transform: scale(0);
  opacity: 1;
}
.button .line:nth-child(1) {
  transform-origin: 100% 100%;
  height: 1px;
  width: 20%;
  bottom: 0;
}
.button .line:nth-child(4) {
  transform-origin: 0 100%;
  height: 1px;
  width: 20%;
  top: -1px;
  right: 0;
}
.button .line:nth-child(2) {
  transform-origin: 100% 100%;
  height: 100%;
  width: 1px;
  bottom: 0;
  left: -1px;
}
.button .line:nth-child(5) {
  transform-origin: 100% 0;
  height: 100%;
  width: 1px;
  bottom: 0;
  right: -1px;
}
.button .line:nth-child(3) {
  transform-origin: 0 100%;
  height: 1px;
  width: 100%;
  top: -1px;
  left: -1px;
}
.button .line:nth-child(6) {
  transform-origin: 100% 0;
  height: 1px;
  width: 100%;
  bottom: 0;
  right: -1px;
}
.button:hover > .line {
  transform: scale(1);
  opacity: 0;
  transition: all 1s;
}
.button:hover > .line:nth-child(2), .button:hover > .line:nth-child(5) {
  transition-delay: 0.5s;
}
.button:hover > .line:nth-child(3), .button:hover > .line:nth-child(6) {
  transition-delay: 0.9s;
}
.button:hover {
  background: rgba(255, 255, 255, 0.03);
}