@import url(css/bootstrap.css);
@import url(css/animate.css);
@import url(css/fontawesome.css);
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/* app root setting */
/* 
Dark Purple
#6D286A
RGB (109, 40, 106)

Bright Purple:
#FF99FF
RGB (255, 153, 255)

Light Purple:
#FFE5FF
RGB (255, 229, 255)
*/
:root {
  --app-primary-color: #6D286A;
  --app-primary-bg-color: #fff;
  --app-root-font-family: "Roboto", sans-serif;
  --app-root-font-color: #4f4f4f;
  --app-root-font-size: 14px;
  --app-root-font-line-height: 1.2;

  --app-title-btn-font-color: #fff;
  --app-title-font-size: 16px;

  --app-secondary-color: #FF99FF;
  --app-secondary-font-color: #6D286A;

  --app-tertiary-color: #FFE5FF;
  --app-tertiary-font-color: #6D286A;
}

body {
  font-family: var(--app-root-font-family) !important;
  font-size: var(--app-root-font-size) !important;
  line-height: var(--app-root-font-line-height) !important;
  color: var(--app-root-font-color) !important;
  background-color: var(--app-primary-bg-color) !important;
}

.app-root {
  height: 100vh;
  font-family: var(--app-root-font-family);
  font-size: var(--app-root-font-size);
  line-height: var(--app-root-font-line-height);
  color: var(--app-root-font-color);
  background-color: var(--app-primary-bg-color);
}

.app-hide {
  display: none !important;
}

.app-block {
  display: block !important;
}

/* app header */
.app-header {
  width: 100%;
  height: 65px;
  display: grid;
  grid-template-columns: 30px 1fr 30px;
  align-items: center;
  justify-content: center;
}

.app-header .app-header-logo {
  margin: 0 auto;
}

.app-header .app-header-logo img {
  height: 65px;
}

.app-header .app-header-cart .showCartButton .fa-shopping-cart,
.app-header .app-header-cart .CartHolder .cart-summary-close .close {
  color: var(--app-primary-color);
  opacity: 1;
}

.app-header .app-header-cart span#NoItems {
  background-color: var(--app-tertiary-color);
  top: -5px;
  color: var(--app-primary-color) !important;
}

.app-header .app-header-cart .CartHolder {
  right: 0;
  top: 65px;
  height: calc(100vh - 50px - 65px) !important;
  width: 100vw;
  z-index: 99;
  position: fixed;
  margin: 0;
}

.app-header .app-header-cart .cart-summary-items {
  height: calc(100vh - 65px - 50px - 100px - 130px);
}

.app-header .app-header-cart .cart-summary-items::-webkit-scrollbar {
  height: 0;
  width: 0;
}

.app-header .app-header-cart .cart-summary-items::-webkit-scrollbar-thumb {
  height: 0;
  width: 0;
}

.app-header .app-header-cart .cart-summary-items::-webkit-scrollbar-track {
  height: 0;
  width: 0;
}

.app-header .app-header-cart .cart-summary-items .cart-summary-item {
  display: flex;
  align-items: center;
}

/* app header menu */
.app-menu {
  position: fixed;
  width: 50vw;
  height: 100vh;
  background-color: var(--app-primary-bg-color);
  box-shadow: 5px 0 5px rgb(0 0 0 / 50%);
  left: 0;
  top: 0;
  z-index: 200;
}

.app-menu .app-menu_title {
  background-color: var(--app-primary-color);
  color: var(--app-title-btn-font-color);
  padding: 15px;
  word-wrap: break-word;
}

.app-menu #app-menu-close {
  position: absolute;
  right: 15px;
}

.app-menu .app-menu_links {
  padding: 15px;
  border-bottom: 1px solid #000;
}

.app-menu .app-menu_links a {
  display: block;
  color: #000;
}

.app-menu .app-menu_logout {
  position: fixed;
  bottom: 15px;
  width: calc(50vw - 30px);
  left: 15px;
}

.app-menu .app-menu_logout a {
  color: var(--app-title-btn-font-color);
  width: 100%;
  background-color: var(--app-primary-color);
}

.app-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 199;
  display: none;
}

/* app title */
.app-title {
  position: fixed;
  left: 0;
  width: 100vw;
  height: 50px;
  line-height: 50px;
  background-color: var(--app-primary-color);
  color: var(--app-title-btn-font-color);
  font-size: var(--app-title-font-size);
  text-align: center;
  z-index: 99;
}

/* app content */
.app-content-with-title {
  height: calc(100dvh - 50px - 65px - 50px);
  margin-top: 50px;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.app-content-with-title::-webkit-scrollbar {
  height: 0;
  width: 0;
}

.app-content-with-title::-webkit-scrollbar-thumb {
  height: 0;
  width: 0;
}

.app-content-with-title::-webkit-scrollbar-track {
  height: 0;
  width: 0;
}

.app-content {
  height: calc(100dvh - 65px - 50px);
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.app-content::-webkit-scrollbar {
  height: 0;
  width: 0;
}

.app-content::-webkit-scrollbar-thumb {
  height: 0;
  width: 0;
}

.app-content::-webkit-scrollbar-track {
  height: 0;
  width: 0;
}

/* app footer */
.app-footer {
  height: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 10px;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 100;
  background-color: var(--app-primary-bg-color);
}

.app-footer .app-footer-col {
  justify-self: center;
}

.app-footer a {
  display: block;
}

.app-footer a img {
  height: 25px;
}

/* chat box */
#chat-widget-container {
  bottom: 50px !important;
}

/* app every page */
.app-every-page {
  display: none !important;
}

/* hide module title */
.app-root .BlueTitle {
  display: none;
}

/* dnn message */
.app-root .dnnFormMessage {
  height: auto;
}
@media screen and (max-width: 770px) {
	.dnnFormPopup.ui-dialog-buttons {
		left: 0 !important;
		width: 100% !important;
	}
}

div.ui-dialog-titlebar > .ui-dialog-titlebar-close {
	right: 20px !important;
	top: -15px !important;
}

/* rewrite date picker color */
.ui-datepicker-calendar .ui-state-default::before {
  background: var(--app-primary-color);
}

.ui-datepicker-calendar .ui-state-active {
  background-color: var(--app-primary-color) !important;
  border-color: var(--app-primary-color) !important;
}

/* rewrite bootstrap color */
a {
  color: var(--app-primary-color);
}

.form-control {
  border-color: var(--app-primary-color);
}

.form-control:focus {
  border-color: var(--app-primary-color) !important;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px var(--app-primary-color) !important;
}

.btn {
  background-color: var(--app-primary-color);
  border-color: var(--app-primary-color);
  color: var(--app-primary-bg-color);
}

.btn-secondary-color {
  background-color: var(--app-secondary-color);
  color: var(--app-secondary-font-color);
}

.has-success .form-control-feedback {
  color: var(--app-primary-color) !important;
}

.has-success .form-control:focus {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px var(--app-primary-color) !important;
}

/* loader */
.loader {
  border: 3px solid var(--app-primary-color);
  border-right-color: transparent;
}