@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Oxanium:wght@800&display=swap");
/* Variables */
:root {
  /* Font */
  --font: "Poppins", "Helvetica Neue", sans-serif;
  /* Colors */
  --color-primary: 230, 40, 100;
  --color-secondary: 248, 248, 248;
  --color-dark: 50, 50, 50;
  --color-muted: 120, 120, 120;
  --color-light: 248, 248, 248;
  --color-red: 241, 65, 65;
  --color-green: 80, 205, 111;
  --color-blue: 0, 130, 240;
  --color-yellow: 241, 188, 0;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font), -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background: #f8f8f8;
}

/* Globals */
body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  overflow: auto;
}

.bg-gray {
  background-color: #e7e7e7;
}

.new-badge {
  letter-spacing: 0.02rem !important;
}

header.company-header {
  height: 60px;
  background: #ffffff;
  box-shadow: 2px 4px 18px -2px rgba(var(--color-muted), 0.2);
}
header.company-header .container {
  height: 100%;
}
header.company-header .container .d-flex {
  height: 100%;
}
header.company-header .container .d-flex nav {
  height: inherit;
}
header.company-header .container .d-flex nav ul {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
}
header.company-header .container .d-flex nav ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 0 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgb(var(--color-muted));
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: all 200ms ease-in-out;
}
header.company-header .container .d-flex nav ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: rgb(var(--color-primary));
  transform-origin: left;
  transform: scaleX(0);
  transition: inherit;
}
header.company-header .container .d-flex nav ul li a:hover {
  color: rgb(var(--color-dark));
}
header.company-header .container .d-flex nav ul li a:hover::before {
  transform: scaleX(1);
}
header.company-header .container .d-flex nav ul li a:hover i {
  color: rgb(var(--color-primary));
}
header.company-header .container .d-flex nav ul li a i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  transition: inherit;
}

.container {
  width: 95% !important;
}

.badge-primary {
  font-size: 0.9rem !important;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  border-radius: 100px;
  font-weight: 400;
  color: rgb(var(--color-light));
  background: rgba(var(--color-primary), 0.25);
  border: 1px solid rgba(var(--color-primary), 0.25);
}

.badge-secondary {
  font-size: 0.9rem !important;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  border-radius: 100px;
  font-weight: 400;
  color: rgb(var(--color-light));
  background: rgba(var(--color-blue), 0.25);
  border: 1px solid rgba(var(--color-blue), 0.25);
}

aside.sidebar {
  width: 300px;
  height: 100vh;
  background: rgb(var(--color-dark));
  color: rgb(var(--color-light));
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
aside.sidebar .sidebar-header {
  border-bottom: 1px solid rgba(var(--color-muted), 0.15);
  text-align: center;
  padding: 1.5rem 0.5rem;
}
aside.sidebar .sidebar-header .logo {
  display: block;
  text-decoration: none;
  font-size: 1.5rem;
  color: rgb(var(--color-light));
}
aside.sidebar .sidebar-header .badge {
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  border-radius: 100px;
  font-weight: 400;
  color: rgb(var(--color-light));
  background: rgba(var(--color-primary), 0.25);
  border: 1px solid rgba(var(--color-primary), 0.25);
}
aside.sidebar .sidebar-nav ul {
  padding-left: 0 !important;
  list-style: none;
}
aside.sidebar .sidebar-nav ul li a {
  padding: 1rem 1.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgb(var(--color-muted));
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: all 200ms ease-in-out;
}
aside.sidebar .sidebar-nav ul li a:hover {
  background-color: rgba(var(--color-muted), 0.25);
}
aside.sidebar .sidebar-nav ul li a.active {
  border-bottom: 1px solid rgba(var(--color-muted), 0.25);
  background-color: rgba(var(--color-muted), 0.25);
  color: rgba(var(--color-light), 0.75);
}
aside.sidebar .sidebar-nav ul li a.active .material-icons-outlined {
  color: rgb(var(--color-blue));
}
aside.sidebar .sidebar-nav ul li a .material-icons-outlined {
  color: rgba(var(--color-blue), 0.75);
  margin-right: 1rem !important;
}
aside.sidebar .sidebar-nav ul li:not(:last-child) a {
  border-bottom: 1px solid rgba(var(--color-muted), 0.15);
}

header.header {
  width: 100%;
  box-shadow: 2px 4px 24px -2px rgba(var(--color-dark), 0.15);
  background: white;
  color: rgb(var(--color-dark));
  height: 65px;
}
header.header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.header .container .user-name {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--color-dark));
  font-size: 0.9rem;
}
header.header .container .user-name span {
  margin-right: 0.25rem;
}
header.header .container .user-name strong {
  margin-left: 0.25rem;
  font-weight: 600;
  color: rgb(var(--color-blue));
}
header.header .container .btn-notifications {
  padding: 0 !important;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--color-dark));
  font-size: 0.9rem;
}
header.header .container .btn {
  font-size: 0.9rem !important;
}

main.main {
  flex: 1;
  height: 100vh;
  overflow-y: auto;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.text-small {
  font-size: 0.85rem;
}

.card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.dashboard-card {
  display: block;
  text-decoration: none;
  color: rgb(var(--color-dark)) !important;
  box-shadow: 2px 4px 18px -2px rgba(0, 0, 0, 0.15);
  background: white;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
}
.dashboard-card header {
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: rgb(var(--color-dark));
  border-bottom: 1px solid rgba(var(--color-muted), 0.15);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}
.dashboard-card header i {
  margin-right: 0.75rem;
  color: rgb(var(--color-primary));
}
.dashboard-card.small-card {
  position: relative;
  overflow: hidden;
  transition: all 300ms ease-in-out;
}
.dashboard-card.small-card::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(50%, 50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(var(--color-primary), 0.25);
  background: rgba(var(--color-primary), 0.25);
  transition: all 300ms ease-in-out;
}
.dashboard-card.small-card:hover {
  box-shadow: 2px 8px 24px -2px rgba(0, 0, 0, 0.15);
}
.dashboard-card.small-card:hover::before {
  border-radius: 0px;
  transform: translate(0%, 0%) scaleX(3) scaleY(1.08);
}

.rounded-form {
  border-radius: 1rem !important;
}

.text-secondary {
  color: rgb(var(--color-blue)) !important;
}

.btn {
  border-radius: 100px !important;
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}
.btn.btn-sm {
  font-weight: 500;
  font-size: 0.9rem !important;
}

.btn-primary {
  background: rgb(var(--color-primary)) !important;
  border-color: rgb(var(--color-primary)) !important;
}
.btn-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--color-primary), 0.5) !important;
}

.btn-secondary {
  background: rgb(var(--color-blue)) !important;
  border-color: rgb(var(--color-blue)) !important;
}
.btn-secondary:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--color-blue), 0.5) !important;
}

.btn-danger:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--color-red), 0.5) !important;
}

.btn-iconed {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.btn-iconed .material-icons-outlined {
  margin-left: 0.5rem;
}

.form-control {
  padding: 0.5rem 0.75rem !important;
  font-size: 0.85rem !important;
  font-weight: 500;
  color: rgb(var(--color-dark));
}
.form-control:focus {
  border-color: rgba(var(--color-primary), 0.25) !important;
  box-shadow: 0 0 0 0.25rem rgba(var(--color-primary), 0.25) !important;
}

.text-primary {
  color: rgb(var(--color-primary)) !important;
}

.modal,
.modal-content {
  border: 0 !important;
}

.modal-content {
  box-shadow: 2px 4px 18px -2px rgba(0, 0, 0, 0.5) !important;
}

.form-label {
  font-size: 0.9rem !important;
  margin-bottom: 0.2rem !important;
  font-weight: 500;
  color: rgba(var(--color-dark), 0.85) !important;
}

.field {
  margin-bottom: 1rem;
  position: relative !important;
}

.modal-footer .btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-footer .btn span {
  font-size: 1.25rem;
  margin-left: 0.5rem;
}

.table thead {
  text-transform: uppercase;
  font-size: 0.9rem;
  color: rgb(var(--color-primary));
}
.table tbody {
  border-top: 0 !important;
}
.table tbody tr,
.table tbody td {
  border-color: rgba(var(--color-muted), 0.1) !important;
}
.table tbody tr[data-status="aranacak"] td {
  background: #ecd5ff !important;
}
.table tbody tr[data-status="katılacak"] td {
  background: #c0ffc5 !important;
}
.table tbody tr[data-status="katılmayacak"] td {
  background: #ffc7c7 !important;
}
.table tbody tr[data-status="kararsız"] td {
  background: #fdff85 !important;
}
.table tbody tr[data-status="arandı"] td {
  background: #b1ddff !important;
}
.table tbody tr[data-status="giriş yaptı"] td {
  background: #ffe1b1 !important;
}
.table tbody tr[data-status="bir daha aranmak istemiyor"] td {
  background: #b1ffed !important;
}
.table tbody tr[data-status="kendisi donus yapacak"] td {
  background: #b9b1ff !important;
}
.table tbody tr td {
  transition: all 300ms ease-in-out;
  font-size: 0.9rem;
  padding-top: 0.5rem;
  background: white;
  color: rgba(var(--color-dark), 0.85);
}
.table tbody tr td .btn:not(.btn-iconed) {
  padding: 0 !important;
  margin-right: 0.5rem;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 32px;
  height: 32px;
}
.table tbody tr td .btn:not(.btn-iconed) i {
  font-weight: 300 !important;
  font-size: 1.15rem !important;
}
.table tbody tr td .btn-iconed {
  width: max-content;
  font-size: 0.9rem;
  font-weight: 500;
}
.table tbody tr td .btn-link {
  padding-left: 0.5rem;
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  font-weight: 500;
  color: rgb(var(--color-dark));
}
.table tbody tr td .btn-link i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
}
.table tbody tr:nth-child(odd) td {
  background: rgb(var(--color-light));
}

.blur {
  filter: blur(3px) !important;
  user-select: none;
  transition: all 300ms ease-in-out !important;
}

.hidden-password {
  filter: blur(0px);
  transition: all 300ms ease-in-out !important;
}

.hidden-password-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: rgb(var(--color-muted));
}
.hidden-password-btn i {
  font-size: 1.25rem;
}

.fade .modal-dialog {
  transform: scale(0) !important;
  transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1.55) !important;
}

.fade.show .modal-dialog {
  transform: scale(1) !important;
}

.loading {
  position: fixed;
  inset: 0;
  background: rgb(var(--color-light));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  font-weight: 600;
  font-size: 1.25rem;
  color: rgb(var(--color-muted));
  transition: all 300ms ease-in-out;
}
.loading.hide {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1) translateY(5%) skewX(-10deg);
}
.loading i {
  color: rgb(var(--color-primary));
  font-size: 2.5rem;
  margin-right: 1rem;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
html body .btn:disabled {
  cursor: no-drop !important;
  user-select: all !important;
}

.d-flex .field {
  width: 50%;
}
.d-flex .field:first-child {
  margin-right: 1rem;
}

.hidden {
  overflow: hidden !important;
  visibility: hidden !important;
  opacity: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  max-height: 0 !important;
  transition: all 300ms ease-in-out !important;
}

.transition {
  transition: all 300ms ease-in-out !important;
}

.field-transition {
  max-height: 85px;
}

select.form-control {
  padding-right: 2rem !important;
}
select.form-control:focus-within ~ .dropdown-arrow {
  transform: translateY(-125%) rotate(180deg);
}

.dropdown-arrow {
  position: absolute;
  right: 0.5rem;
  top: 100%;
  transform: translateY(-125%);
  color: rgb(var(--color-primary));
  user-select: none;
  pointer-events: none;
  transition: all 300ms ease-in-out;
}

[disabled] {
  cursor: pointer !important;
}

.btn:disabled {
  cursor: pointer !important;
}

.btn:disabled[disabled] {
  cursor: not-allowed !important;
  pointer-events: visible;
}

.material-icons-outlined,
.material-icons {
  user-select: none !important;
}

.vl {
  margin: auto 1rem;
  display: block;
  height: 100%;
  width: 1px;
  min-width: 1px;
  min-height: 350px;
  background-color: #e8e8e8;
  border-radius: 100px;
}

.fade {
  transition: all 200ms ease-in-out !important;
}

.tab-pane {
  transform: scale(0.75) rotateX(-25deg) perspective(10px) !important;
}
.tab-pane.show {
  transform: scale(1) rotateX(0deg) perspective(10px) !important;
}

.form-control.disabled {
  background-color: #e8e8e8 !important;
  cursor: not-allowed !important;
}

/* Pages */
main#login_page {
  height: 100vh;
  background-color: #fefefe;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 900'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='0' x2='0' y1='1' y2='0'%3E%3Cstop offset='0' stop-color='%231D87FF'/%3E%3Cstop offset='1' stop-color='%2393FF43'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' x1='0' x2='0' y1='0' y2='1'%3E%3Cstop offset='0' stop-color='%23FF3A19'/%3E%3Cstop offset='1' stop-color='%23FF7B10'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg fill='%23FFF' fill-opacity='0' stroke-miterlimit='10'%3E%3Cg stroke='url(%23a)' stroke-width='2'%3E%3Cpath transform='translate(0 0)' d='M1409 581 1450.35 511 1490 581z'/%3E%3Ccircle stroke-width='4' transform='rotate(0 800 450)' cx='500' cy='100' r='40'/%3E%3Cpath transform='translate(0 0)' d='M400.86 735.5h-83.73c0-23.12 18.74-41.87 41.87-41.87S400.86 712.38 400.86 735.5z'/%3E%3C/g%3E%3Cg stroke='url(%23b)' stroke-width='4'%3E%3Cpath transform='translate(0 0)' d='M149.8 345.2 118.4 389.8 149.8 434.4 181.2 389.8z'/%3E%3Crect stroke-width='8' transform='rotate(0 1089 759)' x='1039' y='709' width='100' height='100'/%3E%3Cpath transform='rotate(0 1400 132)' d='M1426.8 132.4 1405.7 168.8 1363.7 168.8 1342.7 132.4 1363.7 96 1405.7 96z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-attachment: fixed;
  background-size: cover;
}
main#login_page .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
main#login_page .container .row {
  width: 100%;
}
main#login_page .container .form {
  background-color: white;
  border-radius: 10px;
  box-shadow: 2px 4px 18px -2px rgba(var(--color-dark), 0.15);
}
main#login_page .container .btn {
  display: inline-flex;
  align-items: center;
  justify-self: space-between;
  font-weight: 500;
  font-size: 0.9rem !important;
}
main#login_page .container .btn span {
  margin-left: 0.5rem;
  font-size: 1.25rem;
}

main#dashboard_page section.dashboard-cards {
  padding: 2rem 0;
}
main#dashboard_page section.dashboard-cards .dashboard-card {
  box-shadow: 2px 4px 18px -2px rgba(0, 0, 0, 0.15);
  background: white;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
}
main#dashboard_page section.dashboard-cards .dashboard-card header {
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: rgb(var(--color-dark));
  border-bottom: 1px solid rgba(var(--color-muted), 0.15);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}
main#dashboard_page section.dashboard-cards .dashboard-card header i {
  margin-right: 0.75rem;
  color: rgb(var(--color-primary));
}

main#home_page .home-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 1.5rem 0;
  color: rgba(var(--color-dark), 0.9);
  position: relative;
  font-weight: 500;
}
main#home_page .home-header i {
  margin-right: 0.5rem;
  color: rgb(var(--color-primary));
}
main#home_page .home-header::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1rem;
  width: 100%;
  height: 3px;
  border-radius: 100px;
  background: rgba(var(--color-blue), 0.25);
}
main#home_page.company_dashboard .container .events,
main#home_page.admin_dashboard .container .events {
  list-style: none;
  padding-left: 0 !important;
}
main#home_page.company_dashboard .container .events li a,
main#home_page.admin_dashboard .container .events li a {
  margin-bottom: 1rem;
  padding: 1rem 0.5rem;
  border-radius: 0.5rem;
  background: white;
  box-shadow: 2px 4px 18px -2px rgba(var(--color-dark), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-decoration: none;
  color: rgb(var(--primary-color));
}
main#home_page.company_dashboard .container .events li a strong,
main#home_page.admin_dashboard .container .events li a strong {
  font-size: 1.25rem;
  color: rgba(var(--color-dark), 0.75);
  transition: all 250ms ease-in-out;
}
main#home_page.company_dashboard .container .events li a i,
main#home_page.admin_dashboard .container .events li a i {
  font-size: 2rem;
  margin: 1rem 0;
  color: rgba(var(--color-primary), 0.85);
  transition: all 250ms ease-in-out;
}
main#home_page.company_dashboard .container .events li a span,
main#home_page.admin_dashboard .container .events li a span {
  font-size: 0.85rem;
  font-style: italic;
  color: rgb(var(--color-muted));
}
main#home_page.company_dashboard .container .events li a:hover strong,
main#home_page.admin_dashboard .container .events li a:hover strong {
  color: rgb(var(--color-blue));
}
main#home_page.company_dashboard .container .events li a:hover i,
main#home_page.admin_dashboard .container .events li a:hover i {
  transform: scale(1.1);
}

main.company_dashboard#event_page .event-table-container,
main.admin_dashboard#event_page .event-table-container {
  overflow-x: auto;
  box-shadow: 2px 4px 16px -2px rgba(var(--bs-dark-rgb), 0.15);
}
main.company_dashboard#event_page .event-table-container::-webkit-scrollbar,
main.admin_dashboard#event_page .event-table-container::-webkit-scrollbar {
  height: 0.25rem;
  border-radius: 100px;
}
main.company_dashboard#event_page
  .event-table-container::-webkit-scrollbar-thumb,
main.admin_dashboard#event_page
  .event-table-container::-webkit-scrollbar-thumb {
  background-color: rgba(var(--bs-dark-rgb), 0.5);
  border-radius: 100px;
  transition: all 300ms ease-in-out;
}
main.company_dashboard#event_page
  .event-table-container::-webkit-scrollbar-thumb:hover,
main.admin_dashboard#event_page
  .event-table-container::-webkit-scrollbar-thumb:hover {
  background-color: rgba(var(--color-primary), 0.5);
}
main.company_dashboard#event_page .event-table,
main.admin_dashboard#event_page .event-table {
  border: 1px solid #e5e5e5;
  background: white;
  width: 100%;
  margin-bottom: 0 !important;
  max-width: 100%;
}
main.company_dashboard#event_page .event-table tr,
main.admin_dashboard#event_page .event-table tr {
  width: 100%;
}
main.company_dashboard#event_page .event-table td,
main.admin_dashboard#event_page .event-table td {
  width: fit-content;
  border: 1px solid #e5e5e5;
}
main.company_dashboard#event_page .event-table tr th,
main.admin_dashboard#event_page .event-table tr th {
  width: max-content;
  white-space: nowrap;
  text-align: center;
  color: rgb(var(--color-blue));
}
main.company_dashboard#event_page .event-table tr td,
main.admin_dashboard#event_page .event-table tr td {
  white-space: nowrap;
}
main.company_dashboard#event_page .event-table .note-td,
main.admin_dashboard#event_page .event-table .note-td {
  font-weight: 600;
  color: #0900b5;
  white-space: normal;
  min-width: 150px;
  font-size: 0.8rem;
}
main.company_dashboard#event_page .event-name,
main.admin_dashboard#event_page .event-name {
  font-size: 1.5rem;
  color: rgba(var(--color-dark), 0.85);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}
main.company_dashboard#event_page .event-name i,
main.admin_dashboard#event_page .event-name i {
  font-size: 1.5em;
  margin-bottom: 0.5rem;
  color: rgb(var(--color-primary));
}
main.company_dashboard#event_page .form-file-label,
main.admin_dashboard#event_page .form-file-label {
  padding: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  font-size: 1.35rem;
  border-radius: 0.5rem;
  font-weight: 600;
  width: 100%;
  margin-bottom: 1.5rem;
  color: rgba(var(--bs-dark-rgb), 0.8);
  border: 2px dashed rgb(var(--bs-secondary-rgb));
  background: rgb(var(--bs-white-rgb));
  transition: all 300ms ease-in-out;
}
main.company_dashboard#event_page .form-file-label::before,
main.admin_dashboard#event_page .form-file-label::before {
  content: "Katılımcıları yüklemek için bir excel dosyası seçiniz";
}
main.company_dashboard#event_page .buttons .btn,
main.admin_dashboard#event_page .buttons .btn {
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
  max-height: 0px;
  margin-bottom: 0rem;
  transition: all 300ms ease-in-out;
}
main.company_dashboard#event_page .upload-excel:valid ~ .buttons .btn,
main.admin_dashboard#event_page .upload-excel:valid ~ .buttons .btn {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  max-height: 2.5rem;
  margin-bottom: 1.5rem;
}
main.company_dashboard#event_page .upload-excel:valid + .form-file-label,
main.admin_dashboard#event_page .upload-excel:valid + .form-file-label {
  color: rgba(var(--bs-success-rgb), 0.8);
  border: 2px dashed rgb(var(--bs-success-rgb));
  background: rgba(var(--bs-success-rgb), 0.1);
}
main.company_dashboard#event_page
  .upload-excel:valid
  + .form-file-label::before,
main.admin_dashboard#event_page .upload-excel:valid + .form-file-label::before {
  content: "Dosya seçiminiz: " attr(data-file);
}
main.company_dashboard#event_page ul strong,
main.admin_dashboard#event_page ul strong {
  font-weight: 600;
  color: rgba(var(--color-dark), 0.85);
}
main.company_dashboard#event_page .update-participant-modal .loader,
main.company_dashboard#event_page .update-participant-modal-for-admin .loader,
main.admin_dashboard#event_page .update-participant-modal .loader,
main.admin_dashboard#event_page .update-participant-modal-for-admin .loader {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--color-muted), 0.5);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.5);
  transition: all 300ms ease-in-out;
}
main.company_dashboard#event_page .update-participant-modal .loader i,
main.company_dashboard#event_page .update-participant-modal-for-admin .loader i,
main.admin_dashboard#event_page .update-participant-modal .loader i,
main.admin_dashboard#event_page .update-participant-modal-for-admin .loader i {
  font-size: 2rem;
  color: rgb(var(--color-primary));
  animation: spin 1s ease-in-out infinite;
}
main.company_dashboard#event_page .update-participant-modal .modal-body,
main.company_dashboard#event_page
  .update-participant-modal-for-admin
  .modal-body,
main.admin_dashboard#event_page .update-participant-modal .modal-body,
main.admin_dashboard#event_page
  .update-participant-modal-for-admin
  .modal-body {
  position: relative !important;
  overflow-x: hidden !important;
}
main.company_dashboard#event_page .update-participant-modal .update-btn,
main.company_dashboard#event_page
  .update-participant-modal-for-admin
  .update-btn,
main.admin_dashboard#event_page .update-participant-modal .update-btn,
main.admin_dashboard#event_page
  .update-participant-modal-for-admin
  .update-btn {
  transition: all 300ms ease-in-out;
}
main.company_dashboard#event_page
  .update-participant-modal.xhr-loading
  .modal-body,
main.company_dashboard#event_page
  .update-participant-modal-for-admin.xhr-loading
  .modal-body,
main.admin_dashboard#event_page
  .update-participant-modal.xhr-loading
  .modal-body,
main.admin_dashboard#event_page
  .update-participant-modal-for-admin.xhr-loading
  .modal-body {
  overflow: hidden;
}
main.company_dashboard#event_page .update-participant-modal.xhr-loading .loader,
main.company_dashboard#event_page
  .update-participant-modal-for-admin.xhr-loading
  .loader,
main.admin_dashboard#event_page .update-participant-modal.xhr-loading .loader,
main.admin_dashboard#event_page
  .update-participant-modal-for-admin.xhr-loading
  .loader {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
main.company_dashboard#event_page
  .update-participant-modal.xhr-loading
  .update-btn,
main.company_dashboard#event_page
  .update-participant-modal-for-admin.xhr-loading
  .update-btn,
main.admin_dashboard#event_page
  .update-participant-modal.xhr-loading
  .update-btn,
main.admin_dashboard#event_page
  .update-participant-modal-for-admin.xhr-loading
  .update-btn {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.75;
}

main.company_dashboard#admins_page .admins-header {
  font-size: 1.5rem;
  color: rgba(var(--color-dark), 0.85);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}
main.company_dashboard#admins_page .admins-header i {
  font-size: 1.5em;
  margin-bottom: 0.5rem;
  color: rgb(var(--color-primary));
}

main#event_owners_page section.manage-owners .owners-header {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 0 1rem;
  color: rgb(var(--color-dark));
}
main#event_owners_page section.manage-owners .owners-header i {
  color: rgb(var(--color-primary));
  margin-right: 1rem;
}

@keyframes live {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(2);
  }
}
main#event_owner_page #formContainer {
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
  transition: all 300ms ease-in-out;
}
main#event_owner_page #formContainer.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
main#event_owner_page section.info-section {
  position: absolute;
  width: 75%;
  top: 50%;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0);
  transition: all 300ms ease-in-out;
}
main#event_owner_page section.info-section.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
main#event_owner_page section.info-section .info-section-header {
  display: flex;
  align-items: center;
  justify-content: center;
}
main#event_owner_page section.info-section .info-section-header .live {
  position: relative;
  margin-right: 1rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #c00e;
}
main#event_owner_page section.info-section .info-section-header .live::before,
main#event_owner_page section.info-section .info-section-header .live::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: #c00a;
  animation: live 1.5s ease infinite;
}
main#event_owner_page section.info-section .info-section-header .live::after {
  background-color: #c00;
  animation: live 1.5s ease infinite -1s;
}
main#event_owner_page section.info-section .info {
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}
main#event_owner_page section.info-section .info .card {
  border: 0 !important;
  border-radius: 0.75rem;
  box-shadow: 2px 4px 18px -2px rgba(var(--color-dark), 0.1);
  width: 300px;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  background-color: white !important;
  border-bottom: 3px solid rgb(var(--color-blue)) !important;
  pointer-events: none;
}
main#event_owner_page section.info-section .info .card .card-title {
  line-height: 175%;
  color: rgba(var(--color-dark), 0.85);
  padding: 0.75rem !important;
  text-align: center;
  font-weight: 600;
  margin-bottom: 0 !important;
}
main#event_owner_page section.info-section .info .card .card-footer {
  text-align: center;
  background-color: rgb(var(--color-white));
  color: rgb(var(--color-primary));
}
main#event_owner_page section.info-section .info .card .card-footer strong {
  font-family: "Oxanium";
  font-weight: 800;
}

main#table_layout_page header.section-header {
  position: relative;
  margin: 1rem 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.25rem;
  color: rgb(var(--color-primary));
}
main#table_layout_page .layout-area {
  overflow: hidden !important;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  height: 600px;
  background-color: white;
  border-radius: 1rem;
  box-shadow: 2px 4px 18px -2px rgba(var(--color-dark), 0.15);
}
main#table_layout_page .layout-area .table-container {
  margin: 2.5rem;
  position: relative !important;
  width: 100px;
  height: 100px;
}
main#table_layout_page .layout-area .table-container .table-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  box-shadow: 0 0 12px -2px rgba(var(--color-dark), 0.1);
  background-color: rgb(var(--color-dark));
  color: white;
  position: relative;
  z-index: 10;
  cursor: pointer;
  user-select: none;
}
main#table_layout_page .layout-area .table-container .table-item strong {
  user-select: auto;
}
main#table_layout_page .layout-area .table-container .table-chairs {
  position: absolute;
  width: 130px !important;
  height: 130px !important;
  border-radius: 50%;
  color: rgb(var(--color-blue));
  top: 50%;
  left: 50%;
  position: relative;
  width: 130px;
  height: 130px;
  padding: 0;
  border-radius: 50%;
  list-style: none;
  border: 1px solid rgba(var(--color-primary), 0.25);
  transform: translate(-50%, calc(-150% + 30px)) !important;
}
main#table_layout_page .layout-area .table-container .table-chairs > * {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 25px;
  margin: -12.5px;
}
main#table_layout_page
  .layout-area
  .table-container
  .table-chairs
  > *:nth-of-type(1) {
  transform: rotate(0deg) translate(65px) rotate(0deg);
}
main#table_layout_page
  .layout-area
  .table-container
  .table-chairs
  > *:nth-of-type(2) {
  transform: rotate(45deg) translate(65px) rotate(-45deg);
}
main#table_layout_page
  .layout-area
  .table-container
  .table-chairs
  > *:nth-of-type(3) {
  transform: rotate(90deg) translate(65px) rotate(-90deg);
}
main#table_layout_page
  .layout-area
  .table-container
  .table-chairs
  > *:nth-of-type(4) {
  transform: rotate(135deg) translate(65px) rotate(-135deg);
}
main#table_layout_page
  .layout-area
  .table-container
  .table-chairs
  > *:nth-of-type(5) {
  transform: rotate(180deg) translate(65px) rotate(-180deg);
}
main#table_layout_page
  .layout-area
  .table-container
  .table-chairs
  > *:nth-of-type(6) {
  transform: rotate(225deg) translate(65px) rotate(-225deg);
}
main#table_layout_page
  .layout-area
  .table-container
  .table-chairs
  > *:nth-of-type(7) {
  transform: rotate(270deg) translate(65px) rotate(-270deg);
}
main#table_layout_page
  .layout-area
  .table-container
  .table-chairs
  > *:nth-of-type(8) {
  transform: rotate(315deg) translate(65px) rotate(-315deg);
}
main#table_layout_page .layout-area .table-container .table-chairs i {
  font-size: 25px !important;
}

/*# sourceMappingURL=style.css.map */
