/* * {
  outline: 1px solid red;
} */

body {
  background-color: #333;
  padding: 0;
  margin: 0;
  overflow: hidden !important;
}

.smallBoldCaps {
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 2vmin;
  padding: 0 1vw 0 1vw;
  user-select: none;
}

.holder {
  display: grid;
  background-color: #333;
  width: 100vw;
  height: 100vh;
  /* svh better for mobile if supported: */
  height: 100svh;
  grid-template-columns: 5vw 45vw 45vw 5vw;
  grid-template-rows: 7vh 43vh 43vh 7vh;
  grid-template-rows: 7svh 43svh 43svh 7svh;
}

.holder h1 {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
  align-self: center;
  font-size: 3vmin;
}

.holder .slide {
  grid-column-start: 2;
  grid-column-end: 4;
  grid-row-start: 2;
  grid-row-end: 4;
  justify-self: center;
  align-self: center;
  width: 90vw;
  height: 86vh;
  height: 86svh;
  background-color: var(--user-bg-color, #3498db);
  --fadeDir: 5vw;
  opacity: 1;
  transition: 0.2s;
}

.holder .slide.fade {
  opacity: 0;
  --fadeDir: 5vw;
  transform: translateX(var(--fadeDir));
}

/* .button {
    align-items: center;
    appearance: none;
    background-color: #fcfcfd;
    border-radius: 4px;
    border-width: 0;
    box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, rgba(0, 0, 0, 0.2) 0 -3px 0 inset;
    box-sizing: border-box;
    color: #36395A;
    cursor: pointer;
    display: inline-flex;
    height: 5vh;
    height: 5svh;
    justify-content: center;
    line-height: 1;
    list-style: none;
    overflow: hidden;
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
    text-align: left;
    text-decoration: none;
    transition: box-shadow .15s, transform .15s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    will-change: box-shadow, transform;
    font-size: 18px;
} */

.button {
  align-items: center;
  appearance: none;
  background-color: #fcfcfd;
  border-radius: 4px;
  border-width: 0;
  box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px,
    rgba(45, 35, 66, 0.3) 0 7px 13px -3px, rgba(0, 0, 0, 0.2) 0 -3px 0 inset;
  box-sizing: border-box;
  color: #36395a;
  cursor: pointer;
  display: inline-flex;
  height: 5vh;
  height: 5svh;
  justify-content: center;
  line-height: 1;
  list-style: none;
  overflow: hidden;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: box-shadow 0.15s, transform 0.15s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  will-change: box-shadow, transform;
  font-size: 2vmin;
  font-family: 'Open Sans', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.button svg {
  width: 2vmin;
  height: 2vmin;
  fill: #36395a;
}

.button:hover {
  box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px,
    rgba(45, 35, 66, 0.3) 0 7px 13px -3px, rgba(0, 0, 0, 0.2) 0 -3px 0 inset;
  transform: translateY(-2px);
}

.button:active {
  box-shadow: #d6d6e7 0 3px 7px inset;
  transform: translateY(2px);
}

@media only screen and (max-width: 575px) {
  .footerLeft button {
    padding: 2vw;
  }
}

.inactive {
  background-color: #999;
  box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px,
    rgba(45, 35, 66, 0.3) 0 7px 13px -3px, rgba(0, 0, 0, 0.2) 0 -3px 0 inset;
  color: #777;
  pointer-events: none;
}

.holder .footerRight {
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 4;
  grid-row-end: 5;
  justify-self: end;
  align-self: center;
  visibility: hidden;
  user-select: none;
}

.holder .footerLeft {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 4;
  grid-row-end: 5;
  justify-self: start;
  align-self: center;
  visibility: hidden;
}

.footerLeft button {
  margin-left: 1vw;
}

.footerLeft button:first-child {
  margin-left: 0;
}

.holder .headerRight {
  grid-column-start: 2;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 2;
  justify-self: end;
  align-self: center;
  transition: 0.2s;
}

/* QUICK JUMP MENU */

.quickBtn {
  z-index: 100;
  background-color: #ffda79;
}

.quickMenuInvis {
  display: none;
  z-index: 98;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100vw;
  height: 100vh;
  height: 100svh;
}

.quickMenuHolder {
  display: none;
  z-index: 99;
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 4;
  justify-self: start;
  align-self: end;
  max-height: 62vh;
  max-height: 62svh;
  overflow-y: scroll;
  transition: 0.2s;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
  background-color: #36395a;
  width: fit-content;
}

.quickMenu {
  /* display: none; */
  width: 100%;
}

.displayHide {
  display: block;
}

.quickMenuItem {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  display: block;
  background-color: #36395a;
  color: #fff;
  font-size: 2.25vmin;
  text-align: left;
  padding-top: 1.25vmin;
  padding-bottom: 1.25vmin;
  padding-left: 2.5vmin;
  padding-right: 5vmin;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.quickMenuItem:hover {
  background-color: #4a4d6b;
  transition: 0.5s;
}

.selected {
  pointer-events: none;
  color: #ffda79;
  font-weight: 700;
}

.littleAnimationUp {
  animation-name: slideUp;
  animation-duration: 0.5s;
}

@keyframes slideUp {
  from {
    transform: translateY(103vh);
  }

  to {
    transform: translateY(0);
  }
}

/* SIMPLE FADE OUT EFFECT */

.fadeOut {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.25s, opacity 0.25s linear;
}

/* Preview Dialogue */

#previewDialog {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #34495e;
  width: 30vw;
  max-width: 600px;
  height: fit-content;
  padding: 3%;
  border: 2px solid #fff;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
  align-items: center;
  border-radius: 2vw;
}

#previewDialog p {
  text-align: center;
  font-size: 1vw;
  line-height: 2;
}

#previewDialog p:first-child {
  font-size: 2vw;
  font-weight: 700;
  color: #ffda79;
  margin-bottom: 3vh;
}

#previewDialog p:last-child {
  font-weight: 700;
  margin-top: 3vh;
}

.previewDialogueButtons {
  margin-top: 10%;
}

#previewDialog button {
  font-weight: 700;
  padding: 2vmin;
}

#previewDialog button:focus {
  outline: none;
}

/* TOOLTIP */

.tippy-box[data-theme~='tooltipTheme'] {
  background-color: #fff;
  color: #333;
}

.tippy-box[data-theme~='tooltipTheme'][data-placement^='top']
  > .tippy-arrow::before {
  border-top-color: #fff;
}

.tippy-box[data-theme~='tooltipTheme'][data-placement^='bottom']
  > .tippy-arrow::before {
  border-bottom-color: #fff;
}

.tippy-box[data-theme~='tooltipTheme'][data-placement^='left']
  > .tippy-arrow::before {
  border-left-color: #fff;
}

.tippy-box[data-theme~='tooltipTheme'][data-placement^='right']
  > .tippy-arrow::before {
  border-right-color: #fff;
}

.tooltipText {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.5vmin;
  font-weight: 700;
}

/* -------------------------------------------------------------------------- */
/*                             RESIZE FONT TO FIT                             */
/* -------------------------------------------------------------------------- */

.resize-text {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Stop image appearing above modal */

.textImageSlide_addImage {
  z-index: auto !important;
  justify-self: center !important;
}

.textImageSlide_image {
  justify-self: center !important;
}

/* .image-container {
  display: grid;
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.image-container {
  display: flex;
  align-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Just image on slide */

.justImage,
.imageReveal {
  grid-template-columns: 90vw !important;
  grid-template-rows: 86vh !important;
  grid-template-rows: 86svh !important;
}

.justImage > .textImageSlide_addImage,
.imageReveal > .textImageSlide_addImage {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 2;
  width: 100%;
  height: 100%;
}

.justImage > .textImageSlide_addImage > .image-container,
.imageReveal > .textImageSlide_addImage > .image-container {
  width: 100%;
  height: 100%;
  object-fit: cover;
  align-content: center;
  justify-content: center;
}

/* -------------------------------------------------------------------------- */
/*                                IMAGE REVEAL                                */
/* -------------------------------------------------------------------------- */

.imageReveal > .textImageSlide_addImage > .image-container {
  display: grid !important;
  grid-template-columns: 5vw 90vw 5vw !important;
  grid-template-rows: 7vh 86vh 7vh !important;
  grid-template-rows: 7svh 86svh 7svh !important;
  align-items: center;
  justify-items: center;
}

.image-sections-container {
  max-width: 100% !important;
  max-height: 100% !important;
  /* width: auto !important; */
  height: auto !important;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px,
    rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(4, minmax(0, 1fr));
}

.image-section {
  width: 100%;
  height: 100%;
}

.rectangle {
  background-color: #ffda79;
  z-index: 99;
  box-shadow: 0px 50px 100px -20px rgba(50, 50, 93, 0.25),
    0px 30px 60px -30px rgba(0, 0, 0, 0.3),
    inset 0px -2px 6px 0px rgba(10, 37, 64, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rectangle:hover {
  background-color: #ffe194;
}

.rectangle > span {
  font-family: 'Open Sans', sans-serif;
  font-size: 5vmin;
  color: #333;
  font-weight: 700;
  user-select: none;
}

/* -------------------------------------------------------------------------- */
/*                                 CREATE LIST                                */
/* -------------------------------------------------------------------------- */

.listCreate {
  background: #3498db;
  position: fixed;
  z-index: 111;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  align-self: center;
  justify-self: center;
  /* box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset; */
  display: none;
  grid-template-rows: repeat(20, 1fr);
  grid-template-columns: repeat(10, 1fr);
  border-top: 4px solid rgba(255, 255, 255, 0.2);
}

.list {
  grid-column: 2 / 6;
  grid-row: 4 / 20;
  width: 100%;
  height: 100%;
  align-self: start;
  justify-self: center;
  overflow-y: scroll;
  /* border: 1px solid #ccc; */
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.divLines {
  grid-column: 2 / 6;
  grid-row: 4 / 20;
  align-self: center;
  justify-self: center;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  background-color: #fff;
}

.divLine {
  width: 100%;
  height: 12.5%;
  border-bottom: 1px dashed #ccc;
  display: flex;
}

.listItemPanel {
  width: 100%;
  height: 12.5%;
  border-bottom: 1px solid #ccc;
  display: flex;
  background-color: #fff;
  cursor: pointer;
}

.listItem {
  width: 85%;
  height: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow-y: scroll;
}

.listItem > p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2vw;
  color: #333;
}

.listPanelBtn {
  width: 15%;
  height: 100%;
  /* border-left: 1px solid rgba(0, 0, 0, .05); */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
}

.listPanelBtn > svg,
.listDeleteBtn > svg {
  width: 30%;
  height: auto;
  fill: #fff;
}

.listDeleteBtn > svg {
  width: 17.5%;
}

.listDeleteBtn {
  width: 15%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e74c3c;
  box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.listDeleteBtn > i {
  font-size: 1.1vw;
  color: #fff;
}

.listInput,
.listTitle {
  display: none;
  grid-column: 2 / 6;
  grid-row: 2 / 4;
  width: 100%;
  height: 100%;
  align-self: start;
  justify-self: center;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  border-bottom: none;
  z-index: 99;
}

.listTitle {
  display: flex;
  font-weight: 700;
}

.listTitle > .listPanelBtn {
  background-color: #3498db;
  box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.listInput > .listPanelBtn {
  background-color: #16a085;
  box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.listInput > .listPanelBtn > i {
  font-size: 1.1vw;
  color: #fff;
}

.listTitle > .listPanelBtn > i {
  font-size: 1.1vw;
  color: #fff;
}

.itemInputArea {
  width: 85%;
  height: 100%;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2vw;
  color: #000;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #ffe9af;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

/* -------------------------------------------------------------------------- */
/*                          *** LIST MAIN CONTENT ***                         */
/* -------------------------------------------------------------------------- */

.listHolder {
  width: 100%;
  height: fit-content;
  /* padding: 4vh; */
  border-radius: 1vh;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.listHolder > h2 {
  margin-bottom: 2vh;
}

.listOptions > .listHolder {
  grid-column: 5 / 11;
  grid-row: 2 / 17;
  height: auto;
}

.padTop {
  margin-top: 4vh;
}

.resourceButtonHolder {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1vw;
  padding: 1vw;
}

.resourceButton {
  display: grid;
  grid-template-rows: 3fr 1fr;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  background-color: #ffda79;
  width: 100%;
  aspect-ratio: 1 / 1;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  cursor: pointer;
  border-radius: 12px;
}

.resourceButton:hover {
  background-color: #ffe194;
}

.resourceButton > img {
  border-radius: 0;
  padding: 0;
  margin: 0;
  object-fit: contain;
  border: none;
  width: inherit;
  border-radius: 12px;
}

.resourceButton > svg {
  width: 40%;
  padding: 0;
  margin: 0;
}

.resourceButton > p {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8vw;
  text-transform: uppercase;
  font-weight: 700;
  color: #000;
  padding: 0;
  margin: 0;
  background-color: rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  width: 100%;
  height: 100%;
  text-align: center;
  border-radius: 0 0 12px 12px;
}

.hideList_btn {
  background-color: #34495e;
  color: #fff;
  grid-column: 8 / 9;
  grid-row: 19 / 20;
  height: auto;
  padding-top: 16px;
  padding-bottom: 16px;
}

.listGuidance {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
  grid-column: 7 / 10;
  grid-row: 2 / 12;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
  line-height: 3vmin;
  height: fit-content;
  padding-bottom: 4vmin;
  border-radius: 12px;
  font-family: 'Open Sans', sans-serif;
  color: #eee;
}

.listGuidance > h1 {
  color: #ffda79;
  text-align: center;
  padding-left: 4vmin;
  padding-right: 4vmin;
  margin-top: 3vmin;
  font-size: 2.5vmin;
}

.listGuidance > p {
  color: #eee;
  text-align: center;
  font-size: 1.75vmin;
  padding-left: 4vmin;
  padding-right: 4vmin;
  margin-bottom: 2vmin;
}

/* -------------------------------------------------------------------------- */
/*                             TEXT SCRAMBLE SLIDE                            */
/* -------------------------------------------------------------------------- */

.textScrambleSlide {
  display: grid;
  grid-template-columns: 90vw !important;
  grid-template-rows: 60vh 26vh !important;
  grid-template-rows: 60svh 26svh !important;
  align-items: center;
}

#sortableContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 80vw;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  margin-left: 5vw;
  margin-right: 5vw;
}

.sortablePanel {
  font-family: var(--custom-font-family);
  color: #333;
  background-color: #eee;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px;
  cursor: pointer;
  font-size: 6vmin;
  border-top: solid 1px rgba(255, 255, 255, 0.5);
  border-bottom: solid 4px rgba(0, 0, 0, 0.3);
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  user-select: none;
}

.sortablePanel p {
  color: #333;
}

.panel-background-class {
  background-color: #ffda79 !important;
  border-bottom: solid 4px #b39955 !important;
}

/* .scrambleFeedback {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  display: none;
  flex-direction: column;
  width: 80vw;
  margin-left: 5vw;
  margin-right: 5vw;
  height: 100%;
  justify-items: flex-start;
  margin-bottom: 10vh;
} */

.scrambleFeedback {
  grid-column: 1 / 2 !important;
  grid-row: 2 / 3 !important;
  display: none !important;
  /* flex-direction: column; */
  width: 80vw;
  margin-left: 5vw;
  margin-right: 5vw;
  height: 100%;
  justify-items: flex-start;
  margin-bottom: 10vh;
}

.scrambleFeedback p {
  font-family: var(--custom-font-family);
  color: #fff;
  font-size: 5.5vmin;
}

.checkScrambleButton {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  display: flex;
  width: fit-content;
  min-width: 30vw;
  height: fit-content;
  align-self: start;
  justify-self: center;
  font-size: 4vmin;
  padding: 3vmin;
  background-color: #ffda79;
  text-transform: none;
}

.fade-in {
  transition: background-color 0.5s ease;
}

/* -------------------------------------------------------------------------- */
/*                                    TIMER                                   */
/* -------------------------------------------------------------------------- */

.timerHolder {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 18vh 10vh 2vh;
  background-color: #16a085;
  border-radius: 16px;
  position: absolute;
  top: 9vh;
  right: 7vw;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  display: none;
  z-index: 101;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  width: 20vw;
  height: 30vh;
  padding-left: 1vw;
  padding-right: 1vw;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
}

.timerHolder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 16.5vh;
  background-color: rgba(0, 0, 0, 0.1); /* Background color */
  z-index: -1;
  border-radius: 16px 16px 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.timerHolder button {
  padding: 0 !important;
}

.timerNums {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  user-select: none;
}

.timerUI {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  display: grid;
  grid-template-columns: 1fr 1fr 2fr 1fr 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  gap: 1vmin;
}

.timerUI h1 {
  font-size: 4vmin;
  padding: 0;
  margin: 0;
  display: none;
}

.timerUI p {
  font-size: 1.25vmin;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  margin-top: 1vh;
}

.timerLabels {
  display: grid;
  grid-column: 1;
  grid-row: 2 / 3;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  justify-items: center;
  width: 100%;
}

.timerLabels p {
  font-size: 1.4vmin;
  text-transform: uppercase;
}

.timerNums {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr 2fr 2fr;
  grid-template-rows: 1fr;
  align-items: center;
  justify-items: center;
  width: 100%;
  gap: 1%;
}

.timerNums p {
  font-weight: 700;
  font-size: 8vmin;
  text-align: center;
}

.numPanel {
  background-color: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 4%;
  border-radius: 0.4vw;
  width: 90%;
  pointer-events: none;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.circleButton:nth-of-type(1) {
  grid-column: 1 / 2;
  grid-row: 1;
}

.circleButton:nth-of-type(2) {
  grid-column: 2 / 3;
  grid-row: 1;
}

.circleButton:nth-of-type(4) {
  grid-column: 4 / 5;
  grid-row: 1;
}

.circleButton:nth-of-type(5) {
  grid-column: 5 / 6;
  grid-row: 1;
}

.circleButton p {
  font-size: 2vmin;
  font-weight: 700;
  color: #36395a;
}

#startTimerBtn {
  background-color: #ffda79;
  grid-column: 3 / 4;
  grid-row: 1;
  width: 100% !important;
  height: 80% !important;
  color: #36395a;
}

#startTimerBtn svg {
  width: 50% !important;
  height: 50% !important;
}

#draggable {
  cursor: move;
}

.timerColon {
  user-select: none !important;
  pointer-events: none;
  margin-bottom: 1vh;
}

#soundOnOff {
  grid-column: 1 / 3;
  grid-row: 1;
  justify-self: center;
}

#animOnOff {
  grid-column: 4 / 6;
  grid-row: 1;
  justify-self: center;
}

.smallCircleButton {
  background-color: #ffda79 !important;
  border-radius: 50%;
  scale: 0.5;
  aspect-ratio: 1;
}

.timeUpPanel {
  grid-column: 1 / 2;
  grid-row: 1 / 4;
  width: 20vw;
  height: 30vh;
  background-color: #ff5252;
  z-index: 99;
  border-radius: 16px;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding-left: 1vw;
  padding-right: 1vw;
  box-shadow: inset 0 0 0 0.5vw rgba(0, 0, 0, 0.1);
}

.timeUpPanel h1 {
  font-size: 4vmin;
  text-transform: uppercase;
  user-select: none;
  text-align: center;
}

.timeUpPanel p {
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  user-select: none;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 1vw;
  border-radius: 0.4vw;
  text-align: center;
  font-size: 2vmin;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.flip {
  animation-name: flip-animation;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}

/* @keyframes flip-animation {
  0% {
    transform: perspective(500px) rotateX(0deg);
  }
  50% {
    transform: perspective(500px) rotateX(-90deg);
  }
  51% {
    transform: perspective(500px) rotateX(90deg);
  }
  100% {
    transform: perspective(500px) rotateX(0deg);
  }
} */

@keyframes flip-animation {
  0% {
    transform: scaleY(1);
  }
  20% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}

/* Image slide with no image added */

.noImageAddedYetText {
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  background-color: #ff5252;
  font-weight: 700;
  padding: 1vw;
  border-radius: 0.4vw;
  text-transform: uppercase;
  user-select: none;
  font-size: 2vmin;
  text-align: center;
  line-height: 4vmin;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

/* Click anywhere to close image message */

#closeMessage {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1.5vmin;
  display: none;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffda79;
  padding: 8px 16px;
  border-radius: 5px;
}

.topAnswerSlide {
  grid-template-columns: 90vw !important;
}

.wordRotationSlide {
  grid-template-rows: 86vh !important;
  grid-template-rows: 86svh !important;
}

.slide .wordRotationSlide_text {
  line-height: 175% !important;
}
