@font-face {
  font-family: "Rubik-Mono";
  src: url("/themes/custom/pimHershey/assets/fonts/rubik-mono-one-regular.ttf");
}
@font-face {
  font-family: "Inter";
  src: url("/themes/custom/pimHershey/assets/fonts/inter-regular.ttf");
}
@font-face {
  font-family: "Inter-Italic";
  src: url("/themes/custom/pimHershey/assets/fonts/inter-regular-italic.ttf");
}
.t-1 {
  transition: 0.1s;
}

.t-2 {
  transition: 0.2s;
}

.t-3 {
  transition: 0.3s;
}

.t-4 {
  transition: 0.4s;
}

.t-5 {
  transition: 0.5s;
}

:root {
  --pim-color-bg:#eeeeee !important;
  --pim-color-font-primary:#00407a !important;
  --pim-color-font-secondary: #b1b1b1 !important;
  --pim-color-light-blue: #56aeff !important;
  --pim-color-light-green: #def0e6 !important;
  --pim-color-dark-green: #5ab382 !important;
  --pim-color-grey-1: #dddddd !important;
  --pim-color-grey-2: #cccccc !important;
  --pim-color-grey-3: #aaaaaa !important;
  --pim-color-grey-4: #888888 !important;
  --pim-color-grey-5: #555555 !important;
  --pim-color-dark-blue: #00407a !important;
  --pim-color-container:#ffffff;
  --pim-color-header:#ffffff;
  --icon-home: url("/sites/default/files/svg/dark/icon-home.svg");
  --icon-info: url("/sites/default/files/svg/dark/icon-info.svg");
  --icon-dashboard: url("/sites/default/files/svg/dark/icon-dashboard.svg");
  --icon-list: url("/sites/default/files/svg/dark/icon-list.svg");
  --icon-calendar: url("/sites/default/files/svg/dark/icon-calendar.svg");
  --icon-resources: url("/sites/default/files/svg/dark/icon-resources.svg");
  --icon-directory: url("/sites/default/files/svg/dark/icon-phonebook.svg");
  --icon-settings: url("/sites/default/files/svg/dark/icon-settings.svg");
  --icon-add: url("/sites/default/files/svg/dark/icon-add.svg");
}

a {
  box-shadow: none !important;
}

main.page-content {
  display: grid;
}

.pim-container {
  position: relative;
  height: max-content;
  background: var(--pim-color-container);
  border-radius: 0.375rem;
  padding: 0.75rem;
  border: 1px solid #cdcdcd;
}

div.page-wrapper.dark-theme {
  --hamburger-icon: url("/sites/default/files/svg/light/hamburger-menu.svg");
  --icon-home: url("/sites/default/files/svg/light/icon-home.svg");
  --icon-info: url("/sites/default/files/svg/light/icon-info.svg");
  --icon-dashboard: url("/sites/default/files/svg/light/icon-dashboard.svg");
  --icon-list: url("/sites/default/files/svg/light/icon-list.svg");
  --icon-calendar: url("/sites/default/files/svg/light/icon-calendar.svg");
  --icon-resources: url("/sites/default/files/svg/light/icon-resources.svg");
  --icon-settings: url("/sites/default/files/svg/light/icon-settings.svg");
  --pim-color-bg:#2f2f2f !important;
  --pim-color-font-primary:#dddddd !important;
  --pim-color-font-secondary: #aaaaaa !important;
  --pim-color-header:#555555;
  --pim-color-container:#555555;
}
div.page-wrapper.dark-theme .event-info-container {
  background: var(--pim-color-container);
}
div.page-wrapper.dark-theme h1, div.page-wrapper.dark-theme h2, div.page-wrapper.dark-theme h3, div.page-wrapper.dark-theme h4, div.page-wrapper.dark-theme h5, div.page-wrapper.dark-theme h6 {
  color: var(--pim-color-font-primary);
}
div.page-wrapper.dark-theme p, div.page-wrapper.dark-theme a, div.page-wrapper.dark-theme span, div.page-wrapper.dark-theme .text-muted {
  color: var(--pim-color-font-secondary);
}

.page-wrapper {
  display: grid;
  grid-template-rows: max-content auto max-content;
  min-height: 100vh;
  background: var(--pim-color-bg);
}
.page-wrapper footer {
  align-self: end !important;
}

.pim-header {
  height: clamp(70px, 8vw, 80px) !important;
  width: 100%;
  border-bottom: 1px solid #c0c0c0;
  background: var(--pim-color-header);
  position: sticky;
  top: 0;
  z-index: 9;
}

.pim-navbar {
  position: relative;
  height: clamp(70px, 8vw, 80px) !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pim-navbar a {
  text-decoration: none;
}
.pim-navbar .nav-menu-tools {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
  height: 100%;
  gap: 10px;
  align-items: center;
}
.pim-navbar #pimMenuBtn {
  height: 100%;
  aspect-ratio: 1/1;
  position: relative;
  cursor: pointer;
  z-index: 2;
  background-image: var(--hamburger-icon);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.pim-navbar #pimMenu {
  display: grid;
  gap: 8px;
  position: absolute;
  top: 110%;
  padding: 1em;
  text-align: right;
  font-weight: 600;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  max-width: 300px;
  right: 10px;
}
.pim-navbar #pimMenu .menu-item__link,
.pim-navbar #pimMenu .menu-item__actions {
  display: grid;
  align-items: center;
  grid-template-columns: 30px auto;
  text-align: left;
  color: var(--pim-color-primary);
  gap: 15px;
  box-shadow: none;
}
.pim-navbar #pimMenu .menu-item__link div[class*=menu-item__icon],
.pim-navbar #pimMenu .menu-item__actions div[class*=menu-item__icon] {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  aspect-ratio: 1/1;
}
.pim-navbar #pimMenu .menu-item__link:hover {
  background: #dedede;
}
.pim-navbar #pimMenu .menu-item__actions .menu-item__label {
  color: white !important;
}
@media screen and (max-width: 992px) {
  .pim-navbar #pimMenu {
    right: 50%;
    transform: translateX(50%);
    max-width: 90%;
  }
}

.pim-logo-wrapper,
.pim-logo {
  height: 100%;
}

.overlay {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  z-index: 1;
  backdrop-filter: blur(4px);
}

.open {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.pim-footer {
  width: 100%;
  background: #353535;
  min-height: 100px;
  height: max-content;
  max-height: 200px;
}
.pim-footer .pim-socials {
  display: grid;
  gap: 12px;
}
.pim-footer .pim-social-link {
  display: grid;
  grid-template-columns: minmax(10px, 20px) auto;
  gap: 12px;
}
.pim-footer > * {
  color: white !important;
}

.pim-sidebar {
  background: #00407A !important;
  color: white;
  height: max-content;
  position: sticky !important;
  top: 90px !important;
  border-radius: 10px;
}
.pim-sidebar a {
  color: white !important;
  text-decoration: none;
}
.pim-sidebar #block-pim-quick-links {
  display: grid;
  gap: 2px;
}
.pim-sidebar .sidebar-item {
  display: grid;
  grid-template-columns: clamp(20px, 5vw, 30px) auto;
  grid-gap: 10px;
  align-items: center;
  padding: 0.5rem;
}
.pim-sidebar .sidebar-item .sidebar-item__label {
  font-size: clamp(8pt, 5vw, 10pt);
}
.pim-sidebar .sidebar-item .sidebar-item__icon {
  aspect-ratio: 1/1;
  width: 100%;
}
.pim-sidebar .sidebar-item:hover {
  background: #05549d;
}

.pim-calendar-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: grid;
  gap: 10px;
  grid-auto-rows: max-content;
}
.pim-calendar-wrapper #calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  width: 100%;
  overflow: hidden;
}
.pim-calendar-wrapper #calendar .day {
  width: 100%;
  padding: 0.5rem;
  aspect-ratio: 9/16;
  overflow: hidden;
  text-decoration: none;
  color: black;
  border: 1px solid #f5f5f5;
  font-size: clamp(8pt, 5vw, 10pt);
}
.pim-calendar-wrapper #calendar .day.today {
  background: #e0f0ff;
  border: 1px solid #a8cdf0;
}
.pim-calendar-wrapper #calendar .day.today .day-label {
  font-weight: bold;
  color: #00407a;
}
.pim-calendar-wrapper #calendar .day:not(.inactive):hover {
  background: #e6e6e6 !important;
  border: 1px solid #7aa7d1;
}
.pim-calendar-wrapper #calendar .day.inactive {
  background: #efefef;
  color: #afafaf;
}
.pim-calendar-wrapper #calendar .day .day-label {
  border-radius: 100%;
  width: 100%;
  height: max-content;
  display: flex;
  align-items: center;
  justify-content: end;
}
@media screen and (min-width: 992px) {
  .pim-calendar-wrapper #calendar .day {
    aspect-ratio: 1/1;
  }
}
.pim-calendar-wrapper .calendar-day-labels {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  color: grey;
}
.pim-calendar-wrapper .calendar-header {
  display: grid;
  padding: 0.5rem 0;
  grid-template-columns: max-content max-content;
  grid-auto-rows: 30px;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.pim-calendar-wrapper .calendar-header .calendar-controls {
  position: relative;
  gap: 10px;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  width: max-content;
}
.pim-calendar-wrapper .calendar-header .calendar-controls .calendar-filters {
  display: none;
  width: max-content;
  gap: 8px;
  height: auto;
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  border: 1px solid rgb(196, 196, 196);
  z-index: 99;
}
.pim-calendar-wrapper .calendar-header .calendar-controls .calendar-filters.open {
  display: grid;
}
.pim-calendar-wrapper .calendar-header .calendar-controls .calendar-filters .filter-label {
  cursor: pointer;
  position: relative;
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 8px;
}
.pim-calendar-wrapper .calendar-header .calendar-controls .calendar-filters .filter-label:hover {
  background: #dfdfdf;
}
.pim-calendar-wrapper .calendar-header .calendar-controls .calendar-filters .filter-label:after {
  content: "";
  position: relative;
  height: 100%;
  width: auto;
  aspect-ratio: 1/1;
  border: none;
  border-radius: 100px;
}
.pim-calendar-wrapper .calendar-header .calendar-controls .calendar-filters .filter-label:has(input:checked) {
  background: #d4e8fa;
}
.pim-calendar-wrapper .calendar-header .calendar-controls .calendar-filters .filter-label:has(input:checked)::after {
  background-image: radial-gradient(circle, #23577c 25%, transparent 25%);
}
.pim-calendar-wrapper .calendar-header .calendar-controls .calendar-btn {
  padding: 0.25rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  height: max-content;
}
.pim-calendar-wrapper .calendar-header .calendar-controls #reset {
  background: white;
}
.pim-calendar-wrapper .calendar-header .calendar-controls #reset:hover {
  background: #e6e6e6 !important;
}
.pim-calendar-wrapper .calendar-header .calendar-controls #prev,
.pim-calendar-wrapper .calendar-header .calendar-controls #next {
  width: 100%;
  background: var(--pim-color-dark-blue);
  color: white;
}
.pim-calendar-wrapper .event-label {
  position: relative;
  padding: 0;
  text-wrap: nowrap;
  overflow: hidden;
  z-index: 1;
}
.pim-calendar-wrapper .event-label.event-open {
  color: #59869d;
}
.pim-calendar-wrapper .event-label.event-closed {
  color: #b0b0b0;
}

.pim-40x {
  width: 100%;
}
.pim-40x h1.error-message {
  font-size: 100pt;
  color: coral;
}

:root {
  --hamburger-icon: url("/sites/default/files/svg/hamburger-menu.svg");
  --pim-hero-icon: url("/sites/default/files/svg/pim_hero_new.svg");
}

.event-icon, .icon-social-ig, .icon-social-x, .icon-social-fb {
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100% !important;
  padding: 0 !important;
  max-width: clamp(40px, 7vw, 50px);
}
@media screen and (min-width: 768px) {
  .event-icon, .icon-social-ig, .icon-social-x, .icon-social-fb {
    max-width: clamp(60px, 10vw, 90px);
  }
}
@media screen and (min-width: 992px) {
  .event-icon, .icon-social-ig, .icon-social-x, .icon-social-fb {
    max-width: clamp(100px, 10vw, 120px);
  }
}

.pim-event-icon-1 {
  background-image: url("/sites/default/files/svg/pim-event-icon-1.svg");
}

.pim-event-icon-2 {
  background-image: url("/sites/default/files/svg/pim-event-icon-2.svg");
}

.pim-event-icon-3 {
  background-image: url("/sites/default/files/svg/pim-event-icon-3.svg");
}

.pim-event-icon-4 {
  background-image: url("/sites/default/files/svg/pim-event-icon-4.svg");
}

.pim-event-icon-5 {
  background-image: url("/sites/default/files/svg/pim-event-icon-5.svg");
}

.pim-event-icon-6 {
  background-image: url("/sites/default/files/svg/pim-event-icon-6.svg");
}

.pim-event-icon-7 {
  background-image: url("/sites/default/files/svg/pim-event-icon-7.svg");
}

.pim-event-icon-8 {
  background-image: url("/sites/default/files/svg/pim-event-icon-8.svg");
}

.pim-event-icon-9 {
  background-image: url("/sites/default/files/svg/pim-event-icon-9.svg");
}

.pim-event-icon-10 {
  background-image: url("/sites/default/files/svg/pim-event-icon-10.svg");
}

.icon-social-fb {
  background-image: url("/sites/default/files/svg/social-icon-fb.svg");
}

.icon-social-x {
  background-image: url("/sites/default/files/svg/social-icon-x.svg");
}

.icon-social-ig {
  background-image: url("/sites/default/files/svg/social-icon-ig.svg");
}

.arrow {
  width: clamp(40px, 7vw, 50px);
  aspect-ratio: 1/1;
  justify-self: end;
  background-size: 80% !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
.arrow.arrow-right {
  background: url("/sites/default/files/svg/chevron-right-svgrepo-com.svg");
}
.arrow.arrow-down {
  background: url("/sites/default/files/svg/chevron-down-svgrepo-com.svg");
}

.menu-item__icon--home {
  background: var(--icon-home);
}

.menu-item__icon--info {
  background: var(--icon-info);
}

.menu-item__icon--dashboard {
  background: var(--icon-dashboard);
}

.menu-item__icon--events {
  background: var(--icon-list);
}

.menu-item__icon--calendar {
  background: var(--icon-calendar);
}

.menu-item__icon--resources {
  background: var(--icon-resources);
}

.menu-item__icon--directory {
  background: var(--icon-directory);
}

.menu-item__icon--settings {
  background: var(--icon-settings);
}

.menu-item__icon--add {
  background: var(--icon-add);
}

.menu-item__icon--logout {
  background: url("/sites/default/files/svg/light/icon-logout.svg");
}

.menu-item__icon--login {
  background: url("/sites/default/files/svg/light/icon-login.svg");
}

/* Front Page - HERO Banner */
.pim-homepage h1, .pim-homepage h2, .pim-homepage h3, .pim-homepage h4, .pim-homepage h5, .pim-homepage h6 {
  color: var(--pim-color-primary);
  font-weight: bold;
}
.pim-homepage .hero-section {
  height: max-content;
  background: white;
}
.pim-homepage .hero-section .pim-hero-container {
  display: grid;
  color: var(--pim-color-dark-blue);
  max-height: 400px;
  align-items: center;
}
.pim-homepage .hero-section .pim-hero-container h4 {
  font-size: 2.5rem;
}
.pim-homepage .hero-section .pim-hero-container .pim-hero-icon {
  height: 100%;
  aspect-ratio: 1/1;
  background-image: var(--pim-hero-icon);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 992px) {
  .pim-homepage .hero-section .pim-hero-container {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: minmax(auto, 400px);
  }
}
.pim-homepage .pim-offers {
  display: grid;
  gap: 50px;
  justify-content: space-around;
}
@media screen and (min-width: 992px) {
  .pim-homepage .pim-offers {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pim-homepage .pim-offers .pim-card {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: max-content auto max-content;
  gap: 5px;
  border-radius: 16px;
}
.pim-homepage .pim-offers .pim-card .pim-info-icon {
  width: 40px;
  height: 40px;
  background: var(--pim-color-dark-blue);
  border-radius: 100px;
  overflow: visible;
}
.pim-homepage .pim-offers .pim-card .pim-card-header {
  display: grid;
  gap: 10px;
  justify-items: start;
  align-items: center;
  grid-template-columns: max-content 1fr;
  color: var(--pim-color-dark-dark);
}
.pim-homepage .pim-offers .pim-card .pim-card-header h4 {
  margin: 0;
}
.pim-homepage .pim-join-section {
  background: var(--pim-color-dark-blue);
}
.pim-homepage .pim-join-section h4, .pim-homepage .pim-join-section p, .pim-homepage .pim-join-section a {
  text-decoration: none;
  color: white !important;
}
@media screen and (min-width: 992px) {
  .pim-homepage .pim-offers {
    grid-template-columns: repeat(3, 1fr);
  }
}

form.event-registration fieldset {
  box-shadow: none !important;
}

.event-info-details {
  display: grid;
  grid-template-columns: max-content auto;
  align-items: center;
  justify-content: start;
  gap: 10px;
}
.event-info-details .event-info-icon {
  aspect-ratio: 1/1;
  width: 30px;
  border-radius: 0.55rem;
  padding: 0.25rem !important;
}

.event-participants-container {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.event-participants-container .event-participants-icon {
  width: 30px;
  aspect-ratio: 1/1;
  margin: 0;
}
.event-participants-container .event-participants-icon:not(:first-child) {
  margin-left: -15px;
}

.ev-category {
  background: #c8dff1;
  border-radius: 5px;
  color: #292929;
  padding: 0.25rem 0.5rem;
  width: max-content;
}

.event-info-header {
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 20px;
  height: fit-content;
}
.event-info-header .event-title {
  display: flex;
  gap: 10px;
}
.event-info-header .event-edit-btn {
  height: max-content;
  width: max-content;
  color: black;
}

.event-details {
  color: var(--pim-color-grey-3);
  display: grid;
  gap: 10px;
  border-radius: 10px;
}
.event-details .conf-message-wrapper {
  margin: 20px !important;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
}
.event-details .conf-message-text {
  color: var(--pim-color-dark-green);
}
.event-details .conf-message-icon {
  width: 30px !important;
  height: 30px !important;
  fill: var(--pim-color-dark-green);
}

.event-title {
  color: var(--pim-color-font-primary);
  text-decoration: none;
}

.event-date-wrapper {
  display: none;
  justify-content: center;
  align-content: center;
  height: 100px !important;
  width: 100px !important;
  border-radius: 10px;
  overflow: hidden;
}
.event-date-wrapper .event-date {
  display: grid;
  text-align: center;
  width: 100%;
  height: 100%;
  align-self: center;
  align-items: center;
}
.event-date-wrapper .event-date-dd {
  font-size: 2.5rem;
  align-items: end;
}
.event-date-wrapper .event-date-mm {
  align-items: start;
}
.event-date-wrapper .event-date-dd,
.event-date-wrapper .event-date-mm {
  background: none;
  color: #000;
  height: 100%;
  display: flex;
  justify-content: center;
}

.event-info {
  position: relative;
  width: 100%;
  display: grid;
  gap: 20px;
}
.event-info .event-date-simple {
  display: flex;
  gap: 10px;
  justify-content: start;
  align-items: center;
  flex-wrap: nowrap;
}
.event-info.full::after {
  content: "Full";
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  background: rgb(248, 218, 218);
  color: rgb(193, 19, 19);
}

.event-control {
  width: max-content !important;
  height: max-content;
  font-size: clamp(8pt, 5vw, 10pt);
  z-index: 2;
}

.event-register a {
  color: white;
  background: var(--pim-color-primary);
}

.event-confirmation a {
  background: none;
  border: 1px solid var(--pim-color-primary);
  color: var(--pim-color-primary);
}

.confirmation-icon-container {
  /* border: 1px solid red; */
  background: var(--pim-color-light-green);
  width: 70px !important;
  height: 70px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}
.confirmation-icon-container .confirmation-icon {
  width: 50px !important;
  height: 50px !important;
  /* border: 1px solid red; */
  fill: var(--pim-color-dark-green);
  margin: 0 !important;
}
.confirmation-icon-container .conf-info-label {
  font-size: 8pt !important;
  color: #c2c2c2;
}

.confirmation-details {
  display: grid;
  gap: 10px;
}
.confirmation-details h5 {
  margin: 0 !important;
}
.confirmation-details .conf-info-label {
  font-size: 8pt !important;
  color: var(--pim-color-grey-3);
}

/* Custom Buttons */
.event-btn {
  background: #fff !important;
  box-shadow: 0 4px 6px 0 rgba(0, 11, 40, 0.1);
  border-radius: 0.375rem !important;
}
.event-btn:hover {
  background: #e5e5e5 !important;
}

.event-description {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media screen and (min-width: 992px) {
  div#eventListWrapper .pim-container:not(.filters-container):hover {
    border: 1px solid var(--pim-color-dark-blue);
    box-shadow: 0 0 10px -5px var(--pim-color-dark-blue);
  }
  .confirmation-details {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 576px) {
  .event-info {
    grid-template-columns: max-content auto;
  }
}
.dashboard-wrapper .user-info__general {
  display: grid;
  align-items: center;
  gap: 10px;
}
.dashboard-wrapper .user-info__general .user-picture-container {
  justify-self: start;
}
.dashboard-wrapper .user-info__stats #userStats {
  width: 100%;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .dashboard-wrapper .user-info__stats #userStats {
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
  }
}
.dashboard-wrapper .user-info__registrations .registration-list .event-registered {
  display: grid;
  grid-template-columns: 30px 1fr minmax(30px, 40px);
  color: var(--pim-color-primary);
  gap: 16px;
  align-items: center;
  text-decoration: none;
  text-align: left;
}
.dashboard-wrapper .user-info__registrations .registration-list .event-registered:not(:last-child) {
  border-bottom: 1px solid #d9d9d9;
}
.dashboard-wrapper .user-info__registrations .registration-list .event-registered:hover {
  background: #e7e7e7;
}
.dashboard-wrapper .user-info__registrations .registration-list .event-registered .event-tools {
  display: none;
  align-items: center;
  justify-content: space-between;
}
.dashboard-wrapper .user-info__registrations .registration-list .event-registered .event-label {
  display: grid;
}
.dashboard-wrapper .user-info__registrations .registration-list .event-registered .event-label__title {
  font-size: clamp(10pt, 5vw, 14pt);
}
.dashboard-wrapper .user-info__registrations .registration-list .event-registered .event-label__date {
  color: rgb(181, 181, 181);
  font-size: clamp(8pt, 5vw, 10pt);
}
@media screen and (min-width: 992px) {
  .dashboard-wrapper .user-info__registrations .user-info__general {
    grid-template-columns: max-content auto;
  }
}

.user-picture-container {
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 100px;
  border: 4px solid var(--pim-color-primary);
  border-radius: 100%;
  overflow: hidden;
  background: rgb(207, 228, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
}
.user-picture-container .user-picture {
  width: max-content;
}
.user-picture-container .user-picture.default {
  color: #00407A;
  font-weight: bold;
  font-size: clamp(10pt, 5vw, 14pt);
}

.user-info--container {
  display: grid;
}
.user-info--container .user-info--wrapper {
  display: grid;
  grid-template-columns: 50px 1fr minmax(30px, 50px);
  align-items: center;
  padding: 0.45rem 0;
  column-gap: 12px;
}
.user-info--container .user-info--wrapper:not(:last-child) {
  border-bottom: 1px solid #d3d3d3;
}
.user-info--container .user-info--wrapper .user-info--details {
  display: grid;
  align-items: center;
  height: 100% !important;
  padding: 0.5rem;
}
.user-info--container .user-info--wrapper .user-info--details .user-info--name h6 {
  font-size: clamp(10pt, 5vw, 14pt);
}
.user-info--container .user-info--wrapper .user-info--details .user-info--name div {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 10px;
}
.user-info--container .user-info--wrapper .user-info--details .user-info--phone,
.user-info--container .user-info--wrapper .user-info--details .user-info--title,
.user-info--container .user-info--wrapper .user-info--details .user-info--email {
  font-size: clamp(8pt, 5vw, 10pt);
}
.user-info--container .user-info--wrapper .user-info--details .user-role-admin {
  color: #4b9f4b;
  background-color: #d6fad6;
  border-radius: 4px;
  padding: 0.125rem 0.25rem;
  font-size: clamp(6pt, 5vw, 8pt);
  height: max-content;
}
@media screen and (min-width: 992px) {
  .user-info--container .user-info--wrapper .user-info--details {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
.user-info--container .user-info--wrapper .user-info--partner {
  max-height: 0;
  overflow: hidden;
  display: grid;
  padding: 0 0.5rem;
  grid-column: 2/-1;
  font-size: clamp(8pt, 5vw, 10pt);
}
.user-info--container .user-info--wrapper.open .user-info--partner {
  max-height: 100vh;
  padding: 0.5rem;
}
.user-info--container .user-info--wrapper.open button.arrow-down {
  transform: rotate(180deg);
}
.user-info--container button.arrow-down {
  border: none;
  border-radius: 100px;
}

#user-login-form {
  text-align: center;
}

#user-login-form,
#user-register-form {
  margin: 0 auto;
  width: 100%;
}
#user-login-form .form-element,
#user-register-form .form-element {
  width: 100% !important;
}

.event-controls {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 8px;
}

.filter-btn {
  display: grid;
  position: relative;
  border: none;
  background: white;
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  min-height: 30px;
  height: 100%;
  gap: 10px;
  align-items: center;
}
.filter-btn::after {
  content: "";
  background-image: url("/sites/default/files/svg/filter-icon.svg");
  background-origin: content-box;
  background-repeat: no-repeat;
  aspect-ratio: 1/1;
  height: inherit;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 576px) {
  .filter-btn {
    grid-template-columns: 1fr max-content;
  }
  .filter-btn::before {
    content: "Filter";
  }
}

.manage-content-btn {
  display: grid;
  position: relative;
  border: none;
  background: white;
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  min-height: 30px;
  height: 100%;
  gap: 10px;
  align-items: center;
  text-decoration: none;
}
.manage-content-btn::after {
  content: "";
  background-image: url("/sites/default/files/svg/dark/icon-add.svg");
  background-origin: content-box;
  background-repeat: no-repeat;
  aspect-ratio: 1/1;
  height: inherit;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 576px) {
  .manage-content-btn {
    grid-template-columns: 1fr max-content;
  }
  .manage-content-btn::before {
    content: "Add";
  }
}

div.filters-container {
  background: none;
  border: none;
}
div.filters-container form#views-exposed-form-pim-events-page-1 {
  background: white;
  width: max-content;
  display: none;
  position: absolute;
  width: 100%;
  top: calc(100% + 10px);
  right: 0;
  overflow: hidden;
  border-radius: 10px;
  height: 0px;
  z-index: 999;
  height: max-content;
  padding: 1rem;
  box-shadow: 0 0 50px -5px rgba(0, 0, 0, 0.4);
}
@media screen and (min-width: 992px) {
  div.filters-container form#views-exposed-form-pim-events-page-1 {
    max-width: max-content;
    right: 10px;
  }
}
div.filters-container form#views-exposed-form-pim-events-page-1.open {
  display: grid;
}
div.filters-container form#views-exposed-form-pim-events-page-1 input#edit-submit-pim-events {
  background: green;
  color: white;
}
div.filters-container form#views-exposed-form-pim-events-page-1 .form-item--status {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center;
  width: 100% !important;
}
div.filters-container form#views-exposed-form-pim-events-page-1 div.form-filters {
  display: grid;
  width: 100%;
}
div.filters-container form#views-exposed-form-pim-events-page-1 div.form-filters .views-exposed-form__item,
div.filters-container form#views-exposed-form-pim-events-page-1 div.form-filters .form-item--ev-start,
div.filters-container form#views-exposed-form-pim-events-page-1 div.form-filters .form-item--ev-end {
  width: max-content;
}
div.filters-container form#views-exposed-form-pim-events-page-1 div.form-filters #edit-dates-container,
div.filters-container form#views-exposed-form-pim-events-page-1 div.form-filters #edit-sort-container {
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 576px) {
  div.filters-container form#views-exposed-form-pim-events-page-1 div.form-filters #edit-dates-container,
  div.filters-container form#views-exposed-form-pim-events-page-1 div.form-filters #edit-sort-container {
    grid-template-columns: 1fr 1fr;
  }
}
div.filters-container form#views-exposed-form-pim-events-page-1 div.form-filters div.js-form-item {
  margin: 0;
  margin-inline-start: 0;
}
div.filters-container form#views-exposed-form-pim-events-page-1 div.form-filters .form-item__label {
  position: relative;
  width: 100%;
  height: max-content;
  margin: 0;
  padding: 0.5rem;
  color: #6e6e6e !important;
  font-weight: 300 !important;
}
div.filters-container form#views-exposed-form-pim-events-page-1 div.form-filters div.form-boolean-group {
  display: grid;
  gap: 10px;
  grid-auto-rows: 30px;
}
div.filters-container form#views-exposed-form-pim-events-page-1 div.form-filters div.form-boolean-group div.js-form-item {
  display: grid;
  align-items: center;
  width: 100%;
}
div.filters-container form#views-exposed-form-pim-events-page-1 div.form-filters div.form-boolean-group .form-item__label {
  display: grid !important;
  grid-template-columns: 1fr 30px;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  align-items: center;
  padding: 0 0.5rem;
}
@media screen and (min-width: 992px) {
  div.filters-container form#views-exposed-form-pim-events-page-1 div.form-filters div.form-boolean-group .form-item__label:active {
    transform: scale(0.98);
  }
}
div.filters-container form#views-exposed-form-pim-events-page-1 div.form-filters div.form-boolean-group .form-item__label::after {
  content: "";
  display: inline-block;
  position: relative;
  z-index: 2;
  height: 100%;
  border-radius: 100%;
  border: none;
  float: right;
  aspect-ratio: 1/1;
}
div.filters-container form#views-exposed-form-pim-events-page-1 div.form-filters div.form-boolean-group input.form-boolean--type-checkbox {
  display: none;
}
div.filters-container form#views-exposed-form-pim-events-page-1 div.form-filters div.form-boolean-group input.form-boolean--type-checkbox:checked + label {
  background: #c9e8ff;
}
div.filters-container form#views-exposed-form-pim-events-page-1 div.form-filters div.form-boolean-group input.form-boolean--type-checkbox:checked + label::after {
  background-image: radial-gradient(circle, #00355b 40%, transparent 40%);
}