/*poppins font*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
/*poppins font*/
:root {
  --poppins-font: "Poppins", sans-serif;
  --primary-color: #f1555a;
  --transition4: 0.4s;
  --transition1: 0.1s;
  --black800: #1f1f1f;
  --box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
  --grey800: #575757;
  --grey400: #d7d7d7;
  --success: #04a504;
  --radius4: 4px;
  --radius50: 50px;
}
.dark-btn {
  background-color: var(--grey800);
  color: #fff;
}
.sucsess-color {
  color: var(--success);
  display: block;
  text-align: center;
  font-size: 14px;
  padding: 10px;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: var(--poppins-font);
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  border-radius: var(--radius50);
}

::-webkit-scrollbar {
  width: 4px;
  height: 5px;
  border-radius: var(--radius50);
}

::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #a7a7a7;
  border-radius: var(--radius50);
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  border-radius: var(--radius50);
}

a,
select,
button,
.button {
  cursor: pointer;
  font-family: inherit;
}

a {
  color: var(--black800);
  text-decoration: none;
}

img,
svg {
  transition: var(--transition4);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

button,
.theme-btn,
input,
textarea,
select {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
  border-radius: var(--radius4);
  border: 1px solid #fff;
  font-size: 14px;
  transition: var(--transition4);
  font-weight: 400;
}

.theme-btn:hover {
  transform: translateY(2px);
}

.form-control:focus,
.form-submit input:focus,
.form-submit textarea:focus,
.form-submit select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 5px #00000012;
  outline: none;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

/* header css */
.login-area {
  height: 100vh;
  min-height: 500px;
  overflow-y: auto;
  position: relative;
  background-repeat: no-repeat;
  background-position: right top;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-size: contain;
  gap: 1rem;
  z-index: 1;
}

.login-area:before {
  background-image: url(../images/diamond-pattern.png);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.login-area:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #fffffff2;
}

.login-container {
  padding: 0 4rem;
  margin: auto;
  max-width: 1100px;
  width: 100%;
}

.login-form {
  border-radius: var(--radius4);
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  width: 100%;
  box-shadow: 0px 0px 28px 5px #a7a7a71c;
  max-width: 400px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.login-modal {
  text-align: center;
}

.login-header img {
  width: auto;
}

.login-header h1 {
  font-size: 25px;
  font-weight: 400;
  margin: 12px 0 30px;
}

.login-header h1 span {
  display: block;
  font-weight: 700;
  font-size: 40px;
  color: var(--primary-color);
}

.company-name:after,
.companyname:after {
  content: "STARGEMS";
}

.form-group {
  position: relative;
  width: 100%;
}

.password-field {
  display: flex;
  align-items: center;
}

.form-control,
.form-submit input,
.form-submit textarea,
.form-submit select,
.bootstrap-select > .dropdown-toggle {
  padding: 10px 16px;
  font-size: 14px;
  color: #7a7a7a;
  border: 1px solid #ced4da;
}

.forgot-password {
  text-align: right;
  font-size: 14px;
  margin-bottom: 15px;
}

.primary-btn {
  background: var(--primary-color);
  color: #fff;
}

.btn-login button {
  padding: 14px 10px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.theme-container,
.content {
  padding: 0 7rem;
  margin: auto;
  max-width: 1500px;
  width: 100%;
}

.main-header {
  border-bottom: 1px solid #ebebeb;
  padding: 16px 0;
  position: relative;
  background: #fff;
  z-index: 9999;
}

.logo {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 150px;
}

.logo img {
  width: 100%;
}

.menu {
  display: flex;
  gap: 10px;
}

.menu li {
  width: 100%;
  position: relative;
}

.menu li a {
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: var(--radius4);
  color: #5c5c5c;
  text-transform: capitalize;
  position: relative;
  gap: 8px;
  background: #f9f9f9;
  font-weight: 400;
}

.menu li a svg {
  height: 18px;
  width: 18px;
  margin-top: -2px;
}

.menu li a svg path {
  stroke: #5e5e5e;
}

.menu li:hover a,
.menu li:focus a,
.menu li.active a {
  background-color: var(--primary-color);
  color: #fff;
}

.menu li:hover a path,
.menu li:focus a path,
.menu li.active a path {
  stroke: #fff;
}
.dashboard-page {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 10rem);
}
.table-title {
  margin: 20px 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.table-title h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.theme-table,
.white-bg {
  border: 1px solid #ebebeb;
  padding: 15px;
  margin: 0;
  border-radius: var(--radius4);
  background: #fafafa;
}
.theme-table th {
  padding: 10px 10px;
  line-height: normal;
  white-space: nowrap;
  color: #fff;
}
.theme-table th a,
.theme-table th {
  font-size: 14px;
  font-weight: 400 !important;
  text-align: center;
  vertical-align: middle;
}
.theme-table th {
  background: #878787;
  border-right: 1px solid #a1a1a1;
}
.theme-table td,
.theme-table td a {
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  vertical-align: middle;
  font-weight: 400;
}
.theme-table td {
  color: #7d7d7d;
}

.theme-table table tr:nth-of-type(even) {
  background: #eeeeee;
}
.secondary-btn {
  background-color: var(--grey400);
  color: #000;
}
.table-link {
  text-decoration: underline;
}
.theme-table td svg {
  width: 18px;
  height: 18px;
}

.theme-table td a,
.theme-table td button {
  width: fit-content;
  margin: auto;
  border: none;
  background-color: transparent;
}
table,
.table {
  width: 100%;
  margin: 0;
}
.content {
  margin-bottom: 4rem;
}
.auto-set-btn {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.auto-set-btn .theme-btn {
  width: auto;
}
.form-area {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.mb-set {
  margin-bottom: 10px;
}
select,
.bootstrap-select > .dropdown-toggle {
  position: relative;
  appearance: none;
  background-image: url(../images/arrow-down.png);
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 14px;
  background-color: #fff;
}
input[type="checkbox"]:checked {
  background-color: var(--primary-color);
}
input[type="checkbox"] {
  position: relative;
  border-radius: 2px;
  background: var(--grey400);
  cursor: pointer;
  line-height: 0;
  margin: auto;
  outline: 0;
  padding: 0 !important;
  vertical-align: text-top;
  height: 18px;
  width: 18px;
  -webkit-appearance: none;
  min-width: 18px;
  border: none;
}
input[type="checkbox"]:checked:before {
  opacity: 1;
}
input[type="checkbox"]:before {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  width: 4px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  margin: -1px -1px 0 -1px;
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
}
.table-right-data {
  display: flex;
  align-items: center;
  gap: 10px;
}

.table-right-data .theme-btn {
  white-space: nowrap;
  border: none;
}
.form-submit {
  width: 100%;
}
.form-submit th {
  text-align: left;
  background: none;
  font-weight: bold;
  min-width: 150px;
}
.form-submit td:nth-child(2) {
  width: 100%;
  padding-left: 10px;
}

.form-submit label {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
  color: #000;
  opacity: 0.8;
}
p {
  margin: 0;
}
.mt1 {
  margin-top: 1rem;
}
.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
    .input-group-btn
  ) {
  width: 100%;
}
.dropdown-toggle::after {
  display: none !important;
}
.homeburg-menu {
  display: none;
}
.form-group label {
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 400;
  opacity: 0.8;
}
.width-auto .theme-btn {
  width: auto;
}
.login-modal .form-group {
  margin-bottom: 10px;
}

.dropdown-toggle {
  padding-right: 45px !important;
}
.material-symbols-outlined {
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
}
.alert-error-same {
  position: relative;
  z-index: 1;
  max-width: 400px;
  margin: auto;
}
label.required::after {
        content: ' *';
        color: red;
    }
.new-event1{
    display:flex;
    gap:6px
}
.new-event1 a {
    white-space: nowrap;
}