﻿/*
 *  Document   : theme-white.scss
 *  Author     : RedStar Template
 *  Description: This scss file for white theme style classes
 */
@use "theme-color-variables" as themeColVar;

.theme-white {
  .navbar {
    background-color: transparent;
    .header-icon .feather {
      color: black;
    }
  }
  .navbar-right .user_profile span {
    color: rgb(0, 0, 0) !important;
  }
  .navbar.active {
    background-color: themeColVar.$theme-white !important;
    .nav {
      > li {
        > a {
          color: #3a2c70;
        }
      }
    }
    .collapse-menu-icon .mat-icon {
      color: #3a2c70;
    }
    .nav-notification-icons .mat-icon {
      color: #3a2c70;
    }
  }

  .navbar-brand {
    color: themeColVar.$theme-white-navbar-brand;

    &:hover {
      color: themeColVar.$theme-white-navbar-brand_hover;
    }

    &:active {
      color: themeColVar.$theme-white-navbar-brand_active;
    }

    &:focus {
      color: themeColVar.$theme-white-navbar-brand_focus;
    }
  }

  .nav {
    > li {
      > a {
        &:hover {
          background-color: themeColVar.$theme-white-nav-anchor_hover;
          text-decoration: none;
        }

        &:focus {
          background-color: themeColVar.$theme-white-nav-anchor_focus;
          text-decoration: none;
        }
      }
    }

    .open {
      > a {
        background-color: themeColVar.$theme-white-nav-anchor-opened;

        &:hover {
          background-color: themeColVar.$theme-white-nav-anchor-opened_hover;
        }

        &:focus {
          background-color: themeColVar.$theme-white-nav-anchor-opened_focus;
        }
      }
    }
  }

  .bars {
    color: themeColVar.$theme-white-bar;
  }

  .sidebar {
    .menu {
      .list {
        li {
          &.active {
            background-color: themeColVar.$theme-white-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-white-menu-list-submenu;

          // li.active a:not(.menu-toggle):before {
          //   content: "\f068";
          //   font-family: "Font Awesome 5 Free";
          //   font-size: 11px;
          //   display: block;
          //   width: 7px;
          //   height: 7px;
          //   position: absolute;
          //   left: 10%;
          //   font-weight: 900;
          // }
        }
      }
    }

    .legal {
      background-color: themeColVar.$theme-white-legal-bg;

      .copyright {
        a {
          color: themeColVar.$theme-white !important;
        }
      }
    }
  }

  .breadcrumb li a {
    color: themeColVar.$theme-white-active-color !important;
  }
  .page-item.active .page-link {
    background-color: themeColVar.$theme-white-active-color;
    border-color: themeColVar.$theme-white-active-color;
    border-radius: 50%;
    margin: 5px;
    box-shadow: 0 4px 5px 0 #d4d8da, 0 1px 10px 0 #d4d8da,
      0 2px 4px -1px #d4d8da;
    padding: 0px 12px;
    min-width: 30px;
    line-height: 30px;
    color: #ffffff;
    text-transform: uppercase;
  }

  .btn-primary {
    background-color: themeColVar.$theme-white-active-color !important;
    color: #fff !important;
    border-color: themeColVar.$theme-white-active-color !important;
    &:hover {
      background-color: themeColVar.$theme-white-active-color !important;
      color: #fff !important;
    }
    &:active {
      background-color: themeColVar.$theme-white-active-color !important;
      color: #fff !important;
    }
    &:focus {
      background-color: themeColVar.$theme-white-active-color !important;
      color: #fff !important;
    }
    &:disabled {
      background-color: themeColVar.$theme-white-active-color !important;
      color: #fff !important;
    }
  }
  .btn-outline-primary {
    background: 0 0 !important;
    color: themeColVar.$theme-white-bar !important;
    border: 1px solid themeColVar.$theme-white-active-color !important;
    &:hover {
      background: themeColVar.$theme-white-active-color !important;
      color: #fff !important;
      border: 1px solid themeColVar.$theme-white !important;
    }
  }
  .timelineLabelColor strong {
    color: themeColVar.$theme-white-active-color !important;
  }
  .top-sidebar {
    .horizontal-menu {
      li {
        &.active {
          > a {
            color: themeColVar.$theme-white-active-color;
          }
        }
        a {
          -moz-transition: all 0.3s;
          -o-transition: all 0.3s;
          -webkit-transition: all 0.3s;
          transition: all 0.3s;
          &:hover {
            color: themeColVar.$theme-white-active-color;
          }
        }
      }
    }
  }
  .demo-choose-skin li.actived:after {
    color: #000;
  }

  .nav-tabs > li > a:before {
    border-bottom: 2px solid themeColVar.$theme-white-active-color;
  }
  .search-box input#search {
    color: gray;
    background: #edecec;
  }
  .settingSidebar ul.choose-theme li.active div::after {
    color: #000;
  }
}
/*Logo Header Background Color*/
.logo-white {
  .navbar-header {
    background-color: themeColVar.$theme-white;

    .logo-name {
      color: #000;
    }
  }
}
