@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700");

body {
  font-size: 13px;
  font-family: "Roboto", sans-serif;
}

.info-box-text {
  white-space: normal !important;
}

.error {
  color: red;
  border: 0;
  background: 0;
  padding: 0;
  margin-bottom: 10px;
}

.video-iframe iframe {
  width: 100%;
  height: 200px;
}

select.form-control {
  padding-top: 2px;
}

.navbar-nav > .user-menu .user-image {
  width: 40px;
  height: 40px;
  margin-top: -10px;
}

.login-logo {
  font-size: 20px;
}
.login-logo b {
  font-size: 28px;
}

/* ==== Modern animated admin login page ==== */
.admin-login-body {
  min-height: 100vh;
  background: radial-gradient(circle at top, #111827 0, #020617 45%, #000 100%);
  font-family: "Roboto", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: #e5e7eb;
}

.admin-login-gradient {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.16), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(249, 115, 22, 0.15), transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(56, 189, 248, 0.14), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.admin-login-blur {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  background: rgba(15, 23, 42, 0.76);
  z-index: 1;
}

.admin-login-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 960px;
  padding: 30px 16px;
  animation: fadeUp 0.7s ease-out both;
}

.admin-login-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 0;
  border-radius: 26px;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.98));
  box-shadow:
    0 30px 80px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(148, 163, 184, 0.16);
}

.admin-login-brand {
  position: relative;
  padding: 38px 34px;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.2), transparent 55%);
  border-right: 1px solid rgba(148, 163, 184, 0.15);
  overflow: hidden;
}

.admin-login-brand::before,
.admin-login-brand::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.7), transparent 65%);
  opacity: 0.15;
  filter: blur(3px);
}

.admin-login-brand::before {
  width: 320px;
  height: 320px;
  right: -120px;
  top: -90px;
}

.admin-login-brand::after {
  width: 260px;
  height: 260px;
  left: -110px;
  bottom: -100px;
  background: radial-gradient(circle at center, rgba(249, 115, 22, 0.7), transparent 65%);
}

.brand-badge {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: #d42424;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b1120;
  font-size: 26px;
  box-shadow:
    0 18px 35px rgba(212, 36, 36, 0.5),
    0 0 0 1px rgba(15, 23, 42, 0.3);
  margin-bottom: 22px;
  animation: floatSoft 3.4s ease-in-out infinite;
}

.brand-text .sub {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: #9ca3af;
}

.brand-text h1 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #f9fafb;
}

.brand-text p {
  margin: 0;
  font-size: 13px;
  color: #9ca3af;
}

.admin-login-form {
  padding: 34px 30px 32px;
  position: relative;
}

.admin-login-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.admin-login-form-inner {
  position: relative;
  z-index: 1;
}

.admin-login-form h2 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 600;
  color: #e5e7eb;
}

.admin-login-form .muted {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 20px;
}

.admin-login-error {
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.12), rgba(248, 113, 113, 0.04));
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 12px;
  border: 1px solid rgba(248, 113, 113, 0.5);
  color: #fecaca;
  margin-bottom: 18px;
}

.admin-input-group {
  margin-bottom: 16px;
}

.admin-input-group label {
  display: block;
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 6px;
}

.admin-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(15, 23, 42, 0.9);
  border-radius: 999px;
  padding: 1px 1px 1px 12px;
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.55);
  transition: box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.admin-input-wrapper i {
  color: #6b7280;
  font-size: 14px;
  margin-right: 6px;
}

.admin-input-wrapper .form-control {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #f9fafb;
  font-size: 13px;
  padding: 8px 14px 8px 6px;
  height: 36px;
}

.admin-input-wrapper .form-control::placeholder {
  color: #6b7280;
}

.admin-input-wrapper:focus-within {
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.7),
    0 0 0 1px rgba(15, 23, 42, 0.9);
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.15), rgba(15, 23, 42, 0.96));
  transform: translateY(-1px);
}

.admin-login-footer {
  margin-top: 10px;
}

.admin-login-button {
  border-radius: 999px;
  background: #d42424;
  border: 0;
  color: #0b1120;
  font-weight: 600;
  font-size: 13px;
  padding: 9px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow:
    0 16px 40px rgba(248, 150, 30, 0.7),
    0 0 0 1px rgba(15, 23, 42, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.admin-login-button i {
  font-size: 13px;
}

.admin-login-button:hover {
  filter: brightness(1.03);
  transform: translateY(-1px) translateZ(0);
  box-shadow:
    0 22px 50px rgba(248, 150, 30, 0.85),
    0 0 0 1px rgba(15, 23, 42, 0.3);
}

.admin-login-button:active {
  transform: translateY(0);
  box-shadow:
    0 12px 26px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.6);
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 768px) {
  .admin-login-wrapper {
    padding: 24px 12px;
  }
  .admin-login-card {
    display: block;
  }
  .admin-login-brand {
    padding: 26px 22px 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  }
  .admin-login-form {
    padding: 22px 20px 20px;
  }
}

.content-header > h1,
.content-header .content-header-left h1 {
  font-family: "Roboto", sans-serif;
}
.main-header .logo {
  text-align: left;
}
.main-header .logo .logo-lg {
  font-family: "Roboto", sans-serif;
}
.sidebar-mini.sidebar-collapse .main-header .logo > .logo-mini {
  margin-left: 0;
}

.info-box-number {
  font-size: 34px;
}

.garment-label-heading {
  text-align: left;
  font-weight: bold;
  background: #eee;
  padding: 10px 15px;
  border-radius: 4px;
}

.garment-label {
  color: #d43f3a;
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

.dropdown-menu {
  min-width: auto;
}

.disable-click {
  pointer-events: none !important;
}

.box-info {
  padding-top: 20px;
}

.content-header > h1 {
  position: relative;
  padding-left: 30px;
}

.content-header > h1:before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "FontAwesome", sans-serif;
  font-size: 26px;
  content: "\f18e";
}

.sidebar-menu li.active > a > .pull-right-container > .fa-angle-left {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.sidebar-menu li > a > .pull-right-container > .fa-angle-left:before {
  content: "\f105";
}

h4.modal-title {
  color: #3c8dbc;
  font-weight: bold;
}

.rTable {
  display: table;
  width: 100%;
  border: 1px solid #999999;
}
.rTableRow {
  display: table-row;
}
.rTableHeading {
  display: table-header-group;
  background-color: #ddd;
}
.rTableHead {
  width: 40%;
}
.rTableCell,
.rTableHead {
  display: table-cell;
  padding: 3px 10px;
  border: 1px solid #999999;
}
.rTableHeading {
  display: table-header-group;
  background-color: #ddd;
  font-weight: bold;
}
.rTableFoot {
  display: table-footer-group;
  font-weight: bold;
  background-color: #ddd;
}
.rTableBody {
  display: table-row-group;
}

.content-header {
  overflow: hidden;
}
.content-header .content-header-left {
  float: left;
  padding-top: 5px;
}
.content-header .content-header-right {
  float: right;
}
.content-header .content-header-left h1 {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 30px;
  padding-bottom: 5px;
  font-size: 24px;
  position: relative;
}
.content-header .content-header-left h1:before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "FontAwesome", sans-serif;
  font-size: 26px;
  content: "\f18e";
}
.content-header .content-header-right a {
  position: relative;
  /*padding-left: 24px;*/
  font-size: 14px;
}
.content-header .content-header-right a:before {
  /*position: absolute;
    top: 4px;
    left: 5px;
    font-family: 'FontAwesome', sans-serif;
    font-size: 16px;
    content: '\f067';*/
}

.checkbox-inline {
  padding-top: 0 !important;
}
.checkbox-content {
  float: left;
  border: 1px solid #aaa;
  margin-right: 5px;
  margin-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 3px;
}

.checkbox-content.role-access {
  float: none;
  border: 0;
}

.skin-blue .sidebar-menu > li:hover > a,
.skin-blue .sidebar-menu > li.active > a {
  color: #fff;
  background: #3c8dbc;
  border-left-color: #3c8dbc;
}

.pt10 {
  padding-top: 10px;
}
.pt20 {
  padding-top: 20px;
}
.ml10 {
  margin-left: 10px;
}

img.existing-photo {
  max-width: 500px;
}

.slimScrollBar {
  background: none repeat scroll 0 0 #9e9e9e !important;
  border-radius: 0;
  display: none;
  height: 702.936px;
  position: absolute;
  right: 1px;
  top: 145px;
  width: 10px !important;
  z-index: 99;
  opacity: 0.7 !important;
}

.seo-info {
  font-family: "Cairo", sans-serif;
  color: red;
  font-weight: 700;
  font-size: 16px;
  background: #e4e4e4;
  padding: 15px;
}

.skin-blue .main-header .logo,
.skin-blue .main-header .logo:hover,
.skin-blue .main-header .navbar,
.skin-blue .main-header .navbar .sidebar-toggle:hover {
  /* background-color: #333333; */
  background-color: #131921;
}

.skin-blue .sidebar-menu > li:hover > a,
.skin-blue .sidebar-menu > li.active > a {
  background-color: #4c4c4c;
  border-left-color: #000000;
}

.nav-tabs-custom > .nav-tabs > li.active {
  border-top-color: #333333;
}
.box.box-info {
  border-top-color: #4c4c4c;
}

.user-footer div {
  width: 100%;
}
.user-footer div:first-child {
  margin-bottom: 10px;
}
.user-footer div a {
  display: block;
}

.navbar-nav > .user-menu > .dropdown-menu {
  width: 140px;
}
.navbar-nav > .user-menu > .dropdown-menu > .user-footer {
  background-color: #d6d6d6;
}

.content-header .content-header-right a {
  background-color: #333333;
  border-color: #333333;
}
.form-control:focus {
  border-color: #333333;
}

.login-button {
  background-color: #333333;
  border-color: #333333;
}

iframe {
  /* width: 300px!important; */
}

.sidebar-menu .treeview-menu > li > a {
  font-size: 12px;
}

input,
textarea,
select {
  font-size: 13px !important;
}

.bg-g {
  background: #d3f9b4 !important;
}

.bg-r {
  background: #f9cccc !important;
}
