@import url('https://fonts.googleapis.com/css2?family=Fira+Sans: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&display=swap');

/* Root Variables */
:root {
  --primary-color: #596EDA;
  --secondary-color: #2ecc71;
  --font-family: 'Fira Sans', sans-serif;
  --font-size-base: 12px;
  --line-height: 24px;
  --text-color: #2F3E46;
  --grey-color: #2F3E46B3;
  --bg-color: #F8F8F8;
  --border-radius: 4px;
  --transition-speed: 0.3s;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height);
  color: var(--text-color);
  background-color: var(--bg-color);
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color var(--transition-speed);
}

a:hover {
  color: var(--primary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 8px;
}

p {
  margin-bottom: 16px;
}

/* Input Fields */
input,
textarea {
  width: 100%;
  padding: 8px;
  font-size: var(--font-size-base);
  border: 1px solid #ccc;
  border-radius: var(--border-radius);
  transition: border-color var(--transition-speed);
}

input:focus,
textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

::placeholder {
  color: #aaa;
  font-style: italic;
}

/* Buttons */
button {
  padding: 8px 16px;
  font-size: var(--font-size-base);
  color: #fff;
  background-color: var(--primary-color);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background-color var(--transition-speed);
}

button:hover {
  background-color: var(--primary-color);
}

button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

/* Selection */
::selection {
  background-color: var(--primary-color);
  color: #fff;
}

/* Default List Styles */
ul,
ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}

td,
th {
  padding: 12px;
  border: 1px solid #ccc;
  text-align: left;
}

th {
  background-color: var(--primary-color);
  color: #fff;
}

/* Utility Classes */
.hidden {
  display: none;
}

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 16px;
}

.mb-1 {
  margin-bottom: 16px;
}

.p-1 {
  padding: 16px;
}

.d-block {
  display: block !important;
}

.bg-transparent {
  background-color: transparent !important;
}

/* layout-css */



/* layout-css--eend */


/* page-css */


.sidebar img {
  width: 100%;
}

.main-wrapper {
  margin-left: 356px;
  padding: 0px 40px;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-title h2 {
  font-size: 25px;
  margin-bottom: 4px;
  line-height: 1;
}

.header-title p {
  font-size: 14px;
  margin-bottom: 0px;
}

.header-infos {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 17px;
}

.header-infos button {
  padding: 0px;
  border: none;
  line-height: 1;
  background: transparent;
}

.header-infos button.user {
  border: 1px solid #E2B73C;
  border-radius: 50%;
  width: 42px;
  height: 42px;
}

.header-infos button.user img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-area {
  padding: 24px 0px;
}

.event-wrapper {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
}

.ec-header {
  padding: 20px 33px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ec-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: #F8F8F8;
  padding: 6px 10px;
  border-radius: 4px;
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
  color: #2F3E46B3;
  letter-spacing: 0.01em;
  font-family: var(--font-family);
  transition: .3s;
}

.btn span.icon {
  display: inline-block;
}

.btn .arrows {
  display: flex;
  align-items: center;
  gap: 0px;
}

.btn:hover {
  background: #D1D1D1;
}

/* calender-css */

.calendar {
  width: 100%;
  max-width: 100%;
  border-radius: 0px;
  overflow: hidden;
  height: 733px;
}

.calendar-header {
  display: grid;
  grid-template-columns: 70px repeat(7, 1fr);
  background-color: #fff;
  border-bottom: 1px solid #F8F8F8;
}

.day {
  text-align: center;
  padding: 10px;
  font-size: 32px;
  font-weight: bold;
  color: #2F3E46CC;
  line-height: 28px;
}

.day span {
  font-size: 14px;
  font-weight: normal;
  text-transform: capitalize;
}

.day.active {
  color: #596EDA;
}

.calendar-body {
  display: flex;
  height: 663px;
  overflow-y: scroll;
  scrollbar-width: none;
}

.time-column {
  border-right: 1px solid #F8F8F8;
}

.time {
  padding: 0px 10px;
  font-size: 12px;
  color: #666;
  border-bottom: 1px solid #F8F8F8;
  min-height: 96px;
}

.day-columns {
  flex-grow: 1;
}

.day-cell {
  min-height: 96px;
  border-bottom: 1px solid #F8F8F8;
  border-top: none;
  position: relative;
  display: flex;
  align-items: stretch;
}

.day-cell-item {
  width: 14.28%;
  border-right: 1px solid #F8F8F8;
  cursor: pointer;
  padding: 2px 2px 2px;
  position: relative;
}

.day-cell-item:last-child {
  border-right: none;
}



.day-cell-item h6 {
  font-size: 14px;
  font-weight: normal;
  color: #2F3E46;
  margin-bottom: 3px;
  line-height: 1;
}

.day-cell-item span.hours {
  font-size: 12px;
  color: #2F3E46B3;
  display: block;
  line-height: 18px;
}

.slide-count {
  position: absolute;
  right: 4px;
  bottom: 2px;
  display: block;
  line-height: 1;
  font-size: 12px;
  color: #BBBBBB;
}


.event-content {
  background: #F8F8F8;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 2px 2px;
  padding-top: 10px;
}

.event-content::after {
  position: absolute;
  left: 2px;
  top: 4px;
  width: 29px;
  height: 2px;
  content: "";
  background: #EF476F;
  border-radius: 2px;
}


/* calender-css--end */


/* popup */


.details-wrapper {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000CC;
  z-index: 111;
}

.details-inner {
  background: #fff;
  height: 100%;
  padding: 32px 20px 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* gap: 30px; */
  overflow-y: scroll;
  scrollbar-width: none;
}

#sidebar {
  padding:0px!important;
}

#sidebar > .close-btn {
  color:#000;
}

.details-inner::-webkit-scrollbar {
  display: none;
}

.details-img {
  width: 100%;
  height: 173px;
  margin-bottom: 13px;
}

.details-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}

.details-info span.dateTime {
  display: block;
  line-height: 1;
  color: #2F3E46;
  font-size: 13px;
  margin-bottom: 7px;
  font-family: var(--font-family);
}

.details-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.details-title h4 {
  margin-bottom: 0px;
  font-size: 20px;
  font-weight: bold;
}

.count-text {
  height: 22px;
  width: 43px;
  background: #6FBDF126;
  text-align: center;
  border-radius: 6px;
  font-size: 12px;
}

.details-desc h6 {
  margin-bottom: 0px;
  font-size: 14px;
  font-weight: normal;
}

.details-desc p {
  color: #2F3E46CC;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0px;
}

.details-desc {
  margin-bottom: 24px;
}

h6 {}

.details-list h6 {
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 0px;
}

.details-list ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 0px;
  padding: 6px 0px;
}

.details-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.details-list ul li span.value {
  border-radius: 6px;
  background: #F8F8F8;
  padding: 4px 9px;
}

.docents {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.locatie-text p {
  margin-bottom: 0px;
  line-height: 21px;
  font-size: 14px;
  color: #2F3E46;
}

.details-bottom {
  padding: 15px 0px 15px;
  border-top: 1px solid #E0E0E0;
}

.checkbox label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: #2F3E46;
}

.checkbox label span.ind {
  display: inline-flex;
  border: 1px solid #BBBBBB;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  align-items: center;
  justify-content: center;
}

.checkbox label span.dot {
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  display: inline-block;
}

.checkbox label .dot {
  width: 8px;
  height: 8px;
  display: block;
  background: var(--primary-color);
  border-radius: 3px;
  opacity: 0;
}

.checkbox input:checked~label span.ind {
  border-color: var(--primary-color);
}

.checkbox input:checked~label .dot {
  opacity: 1;
}

.btn-blue {
  background: #2F49D1;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
}

.details-bottom .btn {
  padding: 10px 39px;
}

.details-bottom .checkbox {
  margin-bottom: 11px;
}

.docent-imgs p {
  font-size: 14px;
  margin-bottom: 0px;

}

.docent-imgs div {
  display: flex;
  align-items: center;
}

.docent-imgs img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 10;
}

.docent-imgs img:nth-child(2) {
  margin-left: -8px;
  z-index: 2;
}

.registered-state {
  display: inline-block;
  padding: 5px 7px;
  line-height: 1;
  background: #09D4852B;
  border-radius: 4px;
  font-size: 12px;
}


.btn-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.btn-row button.btn {
  padding-left: 0px;
  padding-right: 0px;
  width: 48%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 14px;
}

.btn-primary {
  background: var(--primary-color);
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
}

.btn-primary:hover {
  background: var(--primary-color);
  opacity: 0.9!important;
}

/* popup--end */


/* page-css--end */


/* page-list-view-css */


.calendar-lists {
  padding: 0px 20px;
  height: 750px;
  overflow-y: scroll;
  scrollbar-width: none;
}

.calendar-list {
  border-bottom: 1px solid #ECECEC;
  display: flex;
  align-items: stretch;
  padding: 26px 0px;
  gap: 12px;
}

.list-content {
  flex-grow: 1;
}

.list-event {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 7px;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 12px;
}

.list-event-start {
  display: flex;
  align-items: center;
}

.list-event-end {
  display: flex;
  align-items: center;
  gap: 99px;
}

.list-date {
  padding-right: 20px;
  text-align: end;
  display: flex;
  flex-direction: column;
  font-size: 32px;
  font-weight: 500;
  color: #2F3E46CC;
  line-height: 29px;
  border-right: 1px solid #ECECEC;
}

.list-date span {
  font-size: 14px;
}

.list-event-name {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 186px;
  flex: 0 0 auto;
}

.e-status {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  top: 0px;
}

.accent {
  background: #A328EB;
}

.danger {
  background: #EE4266;
}

.secondary {
  background-color: #3BCEAC;
}

.primary {
  background-color: #2F49D1;
}

.list-event-name h4 {
  font-size: 16px;
  line-height: 19px;
  color: #2F3E46;
  font-size: ;
  font-weight: normal;
  display: ;
  margin-bottom: 0px;
}

.list-event-name p {
  margin-bottom: 0px;
  font-size: 12px;
  color: #2F3E46;
}

.place {
  flex: 0 0 auto;
  width: 186px;
  text-align: center;
  display: block;
  color: #868F94;
}

.list-event-imgs {
  display: flex;
  align-items: flex-end;
  gap: 0px;
}

.list-event-imgs img {
  position: relative;
  z-index: 10;
  width: auto;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #fff;
  z-index: ;
}

.list-event-imgs img:nth-child(2) {
  margin-left: -8px;
  z-index: 9;
}

.list-event-imgs img:nth-child(3) {
  margin-left: -14px;
  z-index: 8;
}

.badge {
  flex: 0 0 auto;
  border-radius: 4px;
  padding: 5px 11px;
  line-height: 1;
}

.badge-main {
  background: #6FBDF126;
  font-size: 12px;
}

.badge-danger {
  background: #EF476F26;
}

.badge-secondary {
  background: #09D48526;
}

.list-event:hover {
  background: #E0E0E04D;
}

.list-event:last-child {
  margin-bottom: 0px;
}

.calendar-lists::-webkit-scrollbar {
  display: none;
}


/* page-list-view-css--end */


/* page-css */

/* page-css--end */



/* page-css */

/* page-css--end */



/* page-css */

/* page-css--end */


.loaderParent {
  position: absolute;
  top: 0;
  left: 22%;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;

  &__caption {
    background: red;
  }
}

.loaderIcon {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 100px auto;
}

.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #333;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;

  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {

  0%,
  100% {
    -webkit-transform: scale(0.0)
  }

  50% {
    -webkit-transform: scale(1.0)
  }
}

@keyframes sk-bounce {

  0%,
  100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  }

  50% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}
