/*!
 * Bootstrap v3.3.6 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

/* Common CSS that are going to be used across Daymon App*/

.wrapper-body {
  height: 100vh !important;
}

.skip-to-content {
  display: none;
}

.text-trim {
  display: inline-block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* Default Header*/
#bp-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

#bp-header img {
  width: 110px !important;
  height: auto !important;
}

/*Side Navigation CSS for PLM like Styles*/
.left-menu-bar {
  position: fixed;
  height: 100vh;
  width: 210px;
  top: 56px;
  background: #fff;
}

.left-menu-bar ul {
  padding: 0;
  position: relative;
  height: calc(100vh - 60px);
}

.left-menu-bar ul .menu-item.apps-link {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.left-menu-bar ul .menu-item .menu-link {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol !important;
  font-size: 14px;
  font-weight: normal;
  padding: 8px 16px 8px 8px !important;
  border-radius: 0;
  margin: 0;
  display: flex;
  align-items: baseline;
  background: none;
  color: #272B30 !important;
}

.left-menu-bar ul .menu-item .menu-link:hover {
  background: #f1f3f5 !important;
  text-decoration: none;
}

.left-menu-bar ul .menu-item .menu-link span.fa {
  margin-right: 8px;
}

.left-menu-bar ul .menu-item .menu-link:hover,
.left-menu-bar ul .menu-item .menu-link:hover span.fa {
  color: #015CAA !important;
}

.left-menu-bar ul .menu-item .menu-link.active,
.left-menu-bar ul .menu-item .menu-link.active span.fa {
  color: #015CAA !important;
}

.left-menu-bar ul .menu-item .menu-link.active {
  border-left: 4px solid #015CAA !important;
  background: #f1f3f5 !important;
  font-weight: 600;
}

/* Footer default CSS*/
footer {
  position: relative;
  color: #22221e;
}

footer .footer-top {
  width: 100%;
  min-height: 130px;
  background-color: #232222;
  display: flex;
  align-items: center;
}

footer .footer-top h3,
footer .footer-top h4 {
  color: #fff;
}

footer .footer-top .list-social-links {
  margin-top: 25px;
  margin-bottom: 12.5px;
}

@media screen and (max-width: 991px) {

  footer .footer-top h3,
  footer .footer-top .list-social-links {
    text-align: center;
  }
}

footer .footer-bottom {
  width: 100%;
  min-height: 68px;
  background-color: #d2d2ce;
  font-size: 14px;
  display: flex;
  align-items: center;
}

footer .footer-bottom p {
  margin: 0;
  color: #fff;
}

footer .footer-bottom h4 {
  margin-top: 0;
  color: #fff;
}

footer .footer-bottom ul {
  list-style-type: none;
  margin: 0;
}

footer .footer-bottom ul li a,
footer .footer-bottom ul li a:hover,
footer .footer-bottom ul li a:focus,
footer .footer-bottom ul li a:active,
footer .footer-bottom ul li a.active {
  font-size: 15px;
  color: #fff;
}

/****************************************************************************************
            Notification Messages like Warning, Success, Error and Alert on Toasts
******************************************************************************************/
body .toast-container {
  position: fixed;
  z-index: 1109;
}

.toast-container {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: auto;
}

.toast {
  background-color: #ff4d4d;
  color: white;
  font-weight: bold;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  opacity: 0.95;
}

.toast-header {
  display: flex;
  justify-content: flex-end;
  padding: 0.5rem;
  background: transparent;
  border-bottom: none;
}

.toast-body {
  display: flex;
  align-items: center;
  padding: 12px 20px;
}

.notification-message {
  margin-left: 8px;
}

.toast-container .btn-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: white;
  cursor: pointer;
}

.toast-success {
  background-color: #29823b;
}

.toast-error {
  background-color: #e03131;
}

.toast-info {
  background-color: #ffa500;
}

.toast {
  max-width: 500px;
  width: auto;
  min-width: 350px;
}

.toast .toast-body,
.toast .toast-header {
  background: none;
}

.toast-body {
  color: white;
  padding: 13px;
  font-size: 15px;
  display: flex;
  align-items: center;
}

.toast-header {
  border: none;
  float: right;
}

.notification-container .fa-close {
  color: #fff;
}