﻿/*
 *  Document   : theme-blue.scss
 *  Author     : RedStar Template
 *  Description: This scss file for blue theme style classes
 */
@use "theme-color-variables" as themeColVar;

.theme-blue {
  .navbar {
    background-color: transparent;
    .icon-color {
      color: #fff;
    }
    .navbar-nav.navbar-right .user_profile span {
      color: #fff;
    }
  }
  .navbar.active {
    // background-color: themeColVar.$theme-blue !important;
    background: #00b4db; /* fallback for old browsers */
    background: -webkit-linear-gradient(
      to right,
      #048efb,
      #08b1d6
    ); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #048efb, #08b1d6);

    .nav {
      > li {
        > a {
          color: #fff;
        }
      }
    }
    .collapse-menu-icon .mat-icon {
      color: #fff;
    }
    .collapse-menu-icon .feather {
      color: #fff;
    }
    .nav-notification-icons .mat-icon {
      color: #fff;
    }
    .nav-notification-icons .feather {
      color: #fff;
    }
  }

  .nav {
    > li {
      > a {
        &:hover {
          background-color: themeColVar.$theme-blue-nav-anchor_hover;
          text-decoration: none;
        }

        &:focus {
          background-color: themeColVar.$theme-blue-nav-anchor_focus;
          text-decoration: none;
        }
      }
    }
  }

  .bars {
    color: themeColVar.$theme-blue-bar;
  }

  .sidebar {
    .menu {
      .list {
        li {
          &.active {
            background-color: themeColVar.$theme-blue-menu-list-active;
          }
          a {
            -moz-transition: all 0.3s;
            -o-transition: all 0.3s;
            -webkit-transition: all 0.3s;
            transition: all 0.3s;
            i,
            span {
              -moz-transition: all 0.3s;
              -o-transition: all 0.3s;
              -webkit-transition: all 0.3s;
              transition: all 0.3s;
            }
          }
        }

        .ml-menu {
          background-color: themeColVar.$theme-blue-menu-list-submenu;
        }
      }
    }

    .legal {
      background-color: themeColVar.$theme-blue-legal-bg;

      .copyright {
        a {
          color: themeColVar.$theme-blue !important;
        }
      }
    }
  }

  .breadcrumb li a {
    color: themeColVar.$theme-blue !important;
  }

  .page-item.active .page-link {
    background-color: themeColVar.$theme-blue;
    border-color: themeColVar.$theme-blue;
    color: #ffffff;
    border-radius: 50%;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.2);
  }

  .btn-primary {
    background-color: themeColVar.$theme-blue !important;
    color: #fff !important;
    border-color: themeColVar.$theme-blue !important;
    &:hover {
      background-color: themeColVar.$theme-blue !important;
      color: #fff !important;
    }
    &:active {
      background-color: themeColVar.$theme-blue !important;
      color: #fff !important;
    }
    &:focus {
      background-color: themeColVar.$theme-blue !important;
      color: #fff !important;
    }
    &:disabled {
      background-color: themeColVar.$theme-blue !important;
      color: #fff !important;
    }
  }
  .btn-outline-primary {
    background: 0 0 !important;
    color: themeColVar.$theme-blue !important;
    border: 1px solid themeColVar.$theme-blue !important;
    &:hover {
      background: themeColVar.$theme-blue !important;
      color: #fff !important;
      border: 1px solid themeColVar.$theme-blue !important;
    }
  }
  .timelineLabelColor strong {
    color: themeColVar.$theme-blue !important;
  }
  .top-sidebar {
    .horizontal-menu {
      li {
        &.active {
          > a {
            color: themeColVar.$theme-blue;
          }
        }
        a {
          -moz-transition: all 0.3s;
          -o-transition: all 0.3s;
          -webkit-transition: all 0.3s;
          transition: all 0.3s;
          &:hover {
            color: themeColVar.$theme-blue;
          }
        }
      }
    }
  }

  .nav-tabs > li > a:before {
    border-bottom: 2px solid themeColVar.$theme-blue;
  }
}
/*Logo Header Background Color*/
.logo-blue {
  .navbar-header {
    background-color: themeColVar.$theme-blue;
  }
}
