body {
  background-color: #1E2236;
  margin: 0;
}
a {
  color: #589AFE;
  text-transform: none;
}
.groupPictures {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  max-width: calc(100dvw - 100px);
  margin: 0 auto;
  gap: 30px;
}
.groupPictures > img {
  aspect-ratio: 1.5;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .groupPictures {
    grid-template-columns: 1fr;
  }
}
.menu {
  display: flex;
  align-items: center;
  gap: 30px;
  transition: 0.2s;
  z-index: 999;
  position: fixed;
  top: 0;
  height: 70px;
  width: 100%;
  background-color: #161823;
}
.menu-button-obj {
  width: calc(100% - 40px);
  margin-right: 40px;
}
.menu-buttons.right-hand {
  float: right;
  align-items: center;
}
.menu-button.login.logout {
  opacity: 0.8;
  cursor: pointer;
  font-size: 11px;
  margin-left: 0;
}
.menu-button.login.logout:hover {
  opacity: 1;
}
.menu-button.selected {
  font-family: faceSemiBold;
}
.media.cf-list-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.media.cf-list {
  width: clamp(400px, 100%, 680px);
}
.test {
  background: red;
}
/*
 * Media Page: Venue
 */
.cf-media-venue {
  background-color: #292E46;
  padding: 2em;
  margin-bottom: 2em;
}
.cf-media-venue .cf-media-venue-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2em;
}
.cf-media-venue .cf-media-venue-top .cf-media-venue-title {
  font-size: 1.5em;
}
.cf-media-venue .cf-media-venue-top .cf-media-venue-date {
  font-family: faceMedium;
  letter-spacing: 0.5px;
  height: fit-content;
  font-size: 1.3em;
}
.cf-media-venue .cf-media-venue-content {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
  text-align: left;
}
.media.cf-box {
  margin-right: 40px;
}
.media.cf-youtube {
  background-color: #373b4b;
}
.media.cf-youtube iframe {
  aspect-ratio: 16/10;
}
.media.cf-audio .cf-audio-title {
  font-family: faceMedium;
  margin-bottom: 1em;
  user-select: none;
  font-size: 1.1em;
}
.media.cf-audio .cf-audio-content {
  position: relative;
}
.media.cf-desc {
  font-family: faceMedium;
  text-align: right;
}
.cf-media-title {
  font-family: faceBold;
  font-size: 15px;
  margin: 3px;
  width: fit-content;
  position: relative;
}
.cf-media-title:hover .cf-media-desc {
  opacity: 0;
  pointer-events: none;
}
.cf-media-title .cf-media-desc {
  transition: 0.2s;
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cf-media-title .cf-media-desc .cf-media-name {
  font-size: 1.1em;
}
.status-detail-list {
  display: flex;
  justify-content: center;
}
.status-detail {
  margin: 0px 20px;
}
.status-detail > div:first-child {
  font-size: 25px;
}
.status-detail > div:not(:first-child) {
  font-size: 17px;
  font-family: faceMain;
}
.perform-list {
  text-align: center;
}
.perform.scope {
  padding: 30px;
  background-color: #292E46;
  min-height: 20px;
  width: 50%;
  min-width: 200px;
  font-family: faceMain;
  margin: 20px auto;
  text-align: left;
}
.text-blog-title {
  color: white;
  font-family: faceMedium;
  font-size: 20px;
  margin-top: 22px;
}
.text-blog-scope {
  margin-top: 20px;
}
.text-blog-title-box {
  border: none !important;
  box-shadow: none !important;
  background-color: white !important;
  color: black !important;
  padding: 10px !important;
  margin-top: 5px;
}
.text-blog-area {
  margin-right: auto;
  margin-left: 60px;
  text-align: left;
}
.text-blog-head {
  margin-top: 100px;
  color: white;
  font-size: 30px;
  font-family: faceBold;
}
.button.blog-insert {
  margin: 10px 0px;
}
.status-box {
  transition: 0.2s;
  z-index: 99999;
  position: fixed;
  width: 100%;
  height: 100px;
  color: white;
  font-family: faceMedium;
  font-size: 20px;
  display: flex;
  align-items: center;
}
.status-box > div {
  margin-left: 20px;
}
.status-box.success {
  color: black !important;
  background-color: #86ff61;
}
.statusblogclosed {
  pointer-events: none;
  opacity: 0;
  transform: translateY(-100px);
}
.text-blog {
  resize: none;
  font-family: faceMain;
  font-size: 15px;
  width: calc(100% - 60px);
  height: calc(100vh - 420px);
  margin-top: 5px;
  background-color: white;
  padding: 20px;
  border: none;
}
.add-button {
  transition: 0.2s;
  z-index: 9999;
  position: fixed;
  right: 40;
  bottom: 40;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  box-shadow: rgba(0, 0, 0, 0.5) 2px 2px 6px 2px;
  background-color: #589AFE;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.add-button:hover {
  box-shadow: none;
  transform: scale(1.2);
}
.ico-plus.icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ico-plus.vw {
  width: 70%;
  height: 3px;
  transform: translateX(2px);
  background-color: white;
}
.ico-plus.vh {
  height: 70%;
  width: 3px;
  transform: translateX(-18px);
  background-color: white;
}
.hidescreen {
  opacity: 0;
  pointer-events: none;
}
.overlay {
  z-index: 999;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}
.logform {
  text-align: center;
  color: white;
  font-family: faceMain;
  background-color: #292E46;
}
.logform > span {
  font-family: faceSemiBold;
  font-size: 20px;
}
.gather-btn {
  text-align: center;
}
.supform {
  cursor: pointer;
  margin-top: 10px;
  font-size: 10px;
}
.form-loadout {
  text-align: left;
  display: block;
  margin: 30px;
}
.login-register-keys {
  background-color: #1E2236;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.login-register-keys > .register-key {
  cursor: pointer;
  padding: 20px;
  padding-bottom: 5px;
  font-size: 14px;
  width: calc(50% - 1px);
  height: 30px;
  color: white;
  margin-right: 2px;
  text-align: center;
  font-family: faceSemiBold;
}
.login-register-keys .acv {
  border-bottom: 2px solid #589AFE;
}
.form-input {
  font-family: faceMedium;
  margin-top: 20px;
}
.form-input-title {
  font-size: 12px;
}
.button[type="form-button"] {
  margin-top: 30px;
  margin-bottom: 0px;
  transform: translateY(0);
  font-size: 13px;
  padding: 15px;
}
input[type="text"],
input[type="password"] {
  font-family: faceMain;
  border: none;
  border-bottom: 2px solid white;
  background-color: transparent;
  color: white;
  padding: 10px 0px;
  margin-top: 4px;
}
.perform-flex {
  margin-top: 10px;
  display: flex;
  width: calc(100% + 200px);
}
.perform.title {
  font-family: faceSemiBold;
  font-size: 23px;
}
.perform.date {
  font-family: faceSemiBold;
}
.perform.address {
  font-family: faceMedium;
}
.perform-infos {
  width: calc(100%);
}
.perform.desc {
  margin-top: 20px;
}
.perform.map {
  float: right;
  right: 0;
}
.menu-button {
  /*margin: 0px 15px;*/
  color: white;
  font-family: faceMain;
  font-size: 14px;
}
.menu-button a {
  color: white;
  text-decoration: none;
}
.menu.closed {
  transform: translateY(-70px);
}
.top-video {
  position: absolute;
  width: 100%;
  height: calc(100% + 100px);
  top: -100px;
  z-index: 100;
  pointer-events: none;
}
.container {
  background-color: #1E2236;
  padding: 60px;
  color: white;
  font-family: faceSemiBold;
}
.blog .list {
  text-align: center;
  display: block;
}
.blog .post {
  width: 90%;
  text-align: left;
  background-color: #292E46;
  padding: 20px;
  margin: 20px auto;
  max-width: 880px;
}
.blog .title {
  font-size: 25px;
}
.blog .infos {
  display: flex;
  margin-bottom: 20px;
}
.blog .author {
  font-family: faceMedium;
  opacity: 1;
}
.blog .date {
  font-family: faceMain;
  opacity: 0.7;
  margin-left: 5px;
}
.blog .content {
  font-family: faceMain;
}
.finlin.containership {
  margin-bottom: 2em;
}
.containership {
  text-align: center;
  margin-bottom: 150px;
}
.containership-title {
  font-size: 25px;
}
.containership-lineset {
  height: 1px;
  width: 90px;
  margin: 20px auto;
  background-color: rgba(255, 255, 255, 0.6);
}
#page-container {
  min-height: 100svh;
  position: relative;
}
.footer.scope {
  position: absolute;
  bottom: 0;
  background-color: #161823;
  padding: 30px;
  width: calc(100% - 60px);
  min-height: 20px;
  color: white;
  font-size: 14px;
  font-family: Arial;
}
.footer.scope > span {
  font-size: 9px;
}
.song-list {
  text-align: center;
  display: flex;
  justify-content: center;
}
table.confirm {
  width: clamp(400px, 50%, 1000px);
}
table.confirm tr {
  background-color: #292E46;
  text-align: left;
  font-size: 1rem;
  color: white;
  font-family: faceSemiBold;
}
table.confirm tr:first-child {
  text-align: center;
}
table.confirm tr:first-child th {
  padding: 10px 20px;
}
table.confirm th {
  width: 50%;
  font-weight: normal;
}
table.confirm .song-hint {
  color: rgba(255, 255, 255, 0.87) !important;
  font-family: faceMain;
}
table.confirm th.song-hint {
  font-size: 13px;
  color: white;
  font-family: faceMain;
}
table.confirm tr:not(:first-child) th {
  font-family: faceSemiBold;
  padding: 20px;
}
.login-feedback {
  background-color: #222638;
  font-size: 13px;
  padding: 10px 0px;
}
.footer.infos {
  margin-top: 20px;
  font-size: 13px;
}
a {
  color: #87AFEB;
}
.button {
  display: block;
  position: relative;
  transition: 0.2s;
  cursor: pointer;
  color: white;
  background-color: transparent;
  border: 2px solid white;
  border-radius: 50px;
  width: 150px;
  text-align: center;
  padding: 20px;
  font-family: faceMedium;
  margin-left: auto;
  margin-right: auto;
}
.button:hover {
  background-color: white;
  color: black;
}
.hero-container {
  position: relative;
  overflow: hidden;
}
.hero-image {
  position: relative;
  display: block;
  width: 100dvw;
  max-width: 1200px;
  margin: 70px auto 0;
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, #1E2236), radial-gradient(transparent 60%, #1E2236);
}
.hero-cover {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
}
.hero-cover div {
  display: flex;
  justify-content: center;
  color: white;
  font-family: Bungee, faceSemiBold;
  font-weight: 500;
  font-size: 1.5rem;
}
.hero-logo {
  width: 450px;
}
.comment-list-scope,
.comment-self-scope {
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  display: block;
  margin-bottom: 10px;
  justify-content: center;
}
.comment-disabled-scope {
  cursor: no-drop;
  position: relative;
  display: unset;
}
.comment-disabled {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c83737;
}
.comment-self-scope .comment-input {
  margin-bottom: 15px;
}
.comment-input > input,
.comment-input textarea {
  transition: 0.3s;
  resize: none;
  width: 100%;
  text-align: left;
  margin: 5px 0px;
  padding: 15px;
  background-color: #303446;
  color: white;
  border: none;
  font-family: faceMain;
  border: 1px #303446 solid;
  font-size: 14px;
}
.comment-input > input:focus,
.comment-input textarea:focus {
  border: 1px #589AFE solid;
  color: #ffffff;
}
.comment-input > input:not(:focus),
.comment-input textarea:not(:focus) {
  color: #b3b3b3;
}
.comment-input textarea {
  min-height: 200px;
}
.comment-post {
  resize: none;
  width: calc(100%);
  text-align: left;
  text-align: center;
  margin: 5px 0px;
  padding: 15px;
  background-color: #589AFE;
  color: white;
  border: none;
  font-family: faceMain;
  font-size: 16px;
  cursor: pointer;
}
.comment-self {
  font-size: 16px;
  font-family: faceMain;
  margin-top: 20px;
  background-color: #292E46;
  color: white;
  text-align: left;
  padding: 30px;
  width: calc(100% - 60px);
}
.comment-self span {
  font-size: 20px;
  font-family: faceSemiBold;
}
.comment-self > div:first-child {
  margin-bottom: 20px;
}
.comment-scope {
  background-color: #292E46;
  color: white;
  text-align: left;
  padding: 30px;
  margin-bottom: 5px;
  width: calc(100% - 60px);
}
.comment-title {
  font-size: 20px;
  font-family: faceSemiBold;
}
.comment-dates {
  font-size: 15px;
  font-family: faceMain;
  opacity: 1;
}
.comment-content {
  margin-top: 5px;
  font-size: 15px;
  font-family: faceMain;
}
