  :root {
    --color-primary: #101076;
    --color-secondary: #0044A6;
    --color-faint-grey: #F9FAFB;
    --color-light-grey: #F5F8F8;
    --color-dark-grey: #CBD4DA;
    --color-darker-grey: #2C3438;
    --color-td-grey: #EAEFF0;
    --color-broken-black: #333;
    --color-white: #FFF;
    --color-green-dark: #248324;
    --color-red-dark: #ac232b;
    --color-blue: #101076;
    --color-light-blue: #0044A6;
    --color-red: #f8d7da;
    --color-green: #d4edda;
    --color-red-text: #554149;
    --color-green-text: #22522e;
    --color-orange: #d66e00;
    --color-yellow: #e5a000;
    --color-danger: hsl(3, 90%, 92%);
    --color-purple-primary: #501175;
    --color-purple-secondary: #7A3B9E;
    --color-green-primary: #004C32;
    --color-green-secondary: #006355;
    --color-yellow-primary: #d66e00;
    --color-yellow-secondary: #e5a000;
    --navigation-button-height: 20px;
    --navigation-button-padding: 8px;
    --color-success-text: #0f5132;
    --color-success-bg: #d1e7dd;
    --color-error-text: #7D272B;
    --color-error-bg: #F4D8DA;
    --site-content-padding: 24px;
    --site-container-padding: 12px;
    --header-height: 82px;
  }

  body {
    padding: 0px;
    margin: 0px;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    display: inline;
    justify-content: center;
    -webkit-touch-callout: none; /* Safari */
    -webkit-user-select: none; /* Chrome */     
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; 
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
    transition: 0.2s background-color;
    font-family: Open Sans;
    overflow-y: scroll;
	}

  .bgglow {
    animation: gradient 15s ease infinite;
  }

  .bluebg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: -100px;
    z-index: -500;
    background: linear-gradient(-45deg, rgba(235,107,255,0.8),rgb(16, 16, 118), rgba(0,68,166,1));
    background-size: 400% 400%;
    background-position: center;
    background: #013CA0;
    background: linear-gradient(198deg,rgba(1, 60, 160, 1) 0%, rgba(9, 9, 121, 1) 57%, rgba(122, 59, 158, 1) 100%);
  
  }

  .hidden {
    display: none;
  }
  
  @keyframes gradient {
    0% {
      background-position: 0% 30%;
    }
    50% {
      background-position: 80% 30%;
    }
    100% {
      background-position: 0% 30%;
    }
  }

  body.disable-temporarily {
    pointer-events:none;
  }

  div {
    box-sizing: border-box;
  }

  .site-title {
    font-family: montserrat;
    font-size: 50px;
    font-weight: 600;
    cursor: pointer;
    line-height: 40px;
    color: #FFF;
    margin-top: 32px;
    margin-bottom: 12px;
  }

  .content-container {
    display: flex;
    width: 100%;
    max-width: 80vw;
    position: relative;
    align-items: center;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
  }

  .title {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 12px;
  }

  .title.small {
    font-size: 16px;
  }

  .centered {
    text-align: center;
  }

  .white{
    color: var(--color-white);
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 600;
    margin-top: 48px;
    margin-bottom: 16px;
  }

  .content-container > *:last-child {
    margin-bottom: 76px;
  }

  .page {
    display: flex;
    flex-direction: column;
    max-width: 350px;
    position: relative;
    margin-bottom: 36px;
    width: 100%;
  }

  .button {
    font-family: 'Montserrat';
    color: var(--color-broken-black);
    font-weight: 500;
    font-size: 15px;
    padding: var(--navigation-button-padding);
    padding-left: calc(var(--navigation-button-padding)* 1.5);
    padding-right: calc(var(--navigation-button-padding)* 1.5);
    border-radius: 360px;
    transition: 0.2s background-color, 0.2s box-shadow;
    display: flex;
    cursor: pointer;
    width: fit-content;
    justify-items: center;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    white-space: nowrap;
    height: fit-content;
    user-select: none;
    margin-bottom: 6px;
    box-shadow: none;
  }

  .button.blue {
    background-color: var(--color-secondary);
    color: var(--color-white);
  }

  .button.grey {

    background-color: var(--color-light-grey);;
    color: var(--color-broken-black);
  }

  .button.purple {
    background-color: var(--color-purple-secondary);
    color: var(--color-white);
  }

  .button:active {
    transform: translateY(1px);
  }

  .button a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .button svg {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
  }

  .button.small svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
  }

  .button.icon-right svg {
    margin-left: 6px;
  }
  
  .button.icon-left svg {
    margin-right: 6px;
  }

  .button.icon-start svg {
    left: 6px;
    position: absolute;
  }

  .button.center {
    align-self: center;
    width: 100%;
    justify-content: center;
  }

  .button.pending {
    pointer-events: none;
  }

  .button.pending::after{
    content: '';
    width: 100%;
    height: 100%;
    background-color: inherit;
    position: absolute;
    border-radius: 24px;
  }

  .button.nointeraction {
    cursor: default;
    pointer-events: none;
  }

  .button.green {
    background-color: var(--color-green);
    color: var(--color-green-text);
  }

  .button.pending::before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 18px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 3px solid transparent;
    border-right-color: #FFF;
    animation: l2 1s infinite linear;
  }
  @keyframes l2 {to{transform: rotate(1turn)}}

  .paragraph {
    font-family: Open Sans;
    font-size: 16px;
    color: #F2F2F2;
    line-height: 23px;
    padding-left: 24px;
    padding-right: 24px;
    text-align: center;
    margin-bottom: 12px;
  }

  .button.blue:active {
    background-color: var(--color-primary);
    color: #FFF;
  }

  .button.grey:active {
    background-color: var(--color-dark-grey) !important;
    color: var(--color-broken-black) !important;
  }
  
  .button.purple {
    background-color: var(--color-purple-secondary);
    color: #FFF;
  }

  .button.yellow {
    background-color: var(--color-yellow-secondary);
    color: #FFF;
  }

  .button.darkgreen {
    background-color: var(--color-green-secondary);
    color: #FFF;
  }

  .button.purple:active {
    background-color: var(--color-purple-primary);
    color: #FFF;
  }

  .button.yellow:active {
    background-color: var(--color-yellow-primary);
    color: #FFF;
  }

  .button.darkgreen:active {
    background-color: var(--color-green-primary);
    color: #FFF;
  }

  @media (pointer:fine) {
    .button:hover {
      background-color: #2222220d;
    }

    .menu.home .button:hover {
      background-color: var(--color-secondary);
    }

    .button.blue:hover {
      background-color: var(--color-primary);
      color: #FFF;
    }

    .button.grey:hover {
      background-color: var(--color-dark-grey) !important;
      color: var(--color-broken-black) !important;
    }

    .button.purple:hover {
      background-color: var(--color-purple-primary);
      color: #FFF;
    }
  
    .button.yellow:hover {
      background-color: var(--color-yellow-primary);
      color: #FFF;
    }
  
    .button.darkgreen:hover {
      background-color: var(--color-green-primary);
      color: #FFF;
    }
  }
  .button.disabled {
    opacity: 0.5;
    pointer-events: none;
  }


  .glow1 {
    display: flex;
    position: absolute;
    z-index: -1;
    width: 0px;
    height: 0px;
    box-shadow: 0px 0px 90px 60px rgba(235,107,255,0.96);
    top: 115px;
    left: 75px;
  }
  
  .glow2 {
    display: flex;
    position: absolute;
    z-index: -1;
    width: 0px;
    height: 0px;
    box-shadow: 0px 0px 90px 70px rgba(0,68,166,0.96);
    top: 115px;
    left: 38px;
    opacity: 0.8;
  }
  
  .cellmaster-logo {
    z-index: 2;
    position: relative;
    width: 100px !important;
    height: 250px;
    align-self: center;
    align-items: center;
    justify-content: center;
    align-content: center;
    display: flex;
    flex-direction: column;
  }

  .animate:not(.answer-image, .answer) img {
    position: absolute;
    animation-name: scale-fadein-avatar;
    animation-duration: 0.5s;
  }

  .animate .avatar {
    position: absolute;
    animation-name: scale-fadein-avatar;
    animation-duration: 0.5s;
  }

  .animate .glow1 {
    animation-name: scale-fadein;
    animation-duration: 0.5s;
  }

  .emphasize {
    animation-name: emphasize;
    animation-duration: 1s;
  }


  .button.icon-left.animate {
    height: 38px;
    padding-left: 40px;
  }

  .button.icon-left.animate svg {
    position: absolute;
    animation-name: rocket;
    animation-duration: 2s;
    animation-delay: 0s;
    top: 8;
    left: 12;
  }

  .flip img {
    position: absolute;
    animation-name: scale-fadein-flip;
    animation-duration: 1s;
  }

  .animated-glow {
    box-shadow: 0 0 0 rgba(235,107,255,0.8);
    box-shadow: 0 0 0 rgba(255,255,255,0.8);
    animation: pulse 1.5s infinite;
  }
  .animated-glow:hover {
    animation: none;
  }


  @keyframes pulse {
    0% {
      -moz-box-shadow: 0 0 0 0 rgba(255,255,255,0.4);
      box-shadow: 0 0 0 0 rgba(255,255,255,0.4);
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(255,255,255,0);
        box-shadow: 0 0 0 10px rgba(255,255,255,0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255,255,255,0);
        box-shadow: 0 0 0 0 rgba(255,255,255,0);
    }
  }
  
  @keyframes rocket {
    0% {
      top: 8;
      left: 12;
      transform: rotate(0deg);
      opacity: 1;
    }
    10% {
      position: absolute;
      top: 8;
      left: 12;
      transform: rotate(-45deg);
      opacity: 1;
    }
    100% {
      position: absolute;
      top: -100vh;
      left: 12;
      transform: rotate(-45deg);
      opacity: 0;
    }
  }

  @keyframes scale-fadein {
    0% {
      opacity: 0;
      transform: scale(0);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes scale-fadein-avatar {
    0% {
      top: -50px;
      opacity: 0;
      transform: scale(0);
    }
    100% {
      top: 75px;
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes scale-fadein-flip {
    0% {
      top: -50px;
      opacity: 0;
      transform: scale(0);
      
    }
    20% {
      top: 75px;
      opacity: 1;
      transform: scale(1) rotateY(0deg);
    }
    100% {
      transform: scale(1) rotateY(360deg);
    }
  }

  @keyframes topdown {
    0% {
      opacity: 0;
      bottom: 50vh;
    }
    100% {
      opacity: 1;
      bottom: 75px;
    }
  }

  @keyframes emphasize {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(2);
    }
    100% {
      transform: scale(1);
    }
  }

  .cellmaster-logo.multiple img {
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    transition: transform 0.3s ease !important;
  }


  .cellmaster-logo .title {
    color: var(--color-white);
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 600;
    bottom: 6px;
    position: absolute;
  }

  .countdown-box {
    display: flex;
    width: 80vw;
    max-width: 300px;
    gap: 6px;
    margin-bottom: 24px;
    align-self: center;
  }

  .countdown-card {
    background-color: #F5F8F8;
    color: #2C3438;
    border-radius: 12px;
    font-family: Montserrat;
    font-weight: 700;
    font-size: 18px;
    padding: 12px;
    width: 100%;
  }

  .countdown-number {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 18px;
    width: 100%;
    text-align: center;
  }

  .countdown-text {
    font-family: 'Open Sans';
    font-weight: 500;
    font-size: 12px;
    width: 100%;
    text-align: center;
  }

  .popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #F5F8F8;
    z-index: 5;
    padding: 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .popup .content-container {
    width: 500px;
    max-width: calc(80vw);
    margin-top: 10px;
    overscroll-behavior: contain;
  }

  .popup .content-container > *:last-child {
    margin-bottom: 76px;
  }

  .popup .paragraph {
    color: #333;
    text-align: left;
    padding-left: 0px;
    padding-right: 0px;
    width: 100%;
  }

  .popup .title {
    align-self: baseline;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .popup .paragraph + .title {
    margin-top: 12px;
  }

  .close-button {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 3;
  }

  .close-button-bottom {
    position: fixed;
    bottom: 12px;
    margin: 0px auto; /* Only centers horizontally not vertically! */
    left: 0;
    right: 0;
    z-index: 3;
  }

  .loader {
    margin: auto;
  }

  .heroimg {
    margin-top: 72px;
    margin-bottom: 24px;
  }

  .notification {
    flex-direction: row;
    background-color: var(--color-light-grey);
    width: 100%;
    border-radius: 19px;
    padding: 16px;
    box-sizing: border-box;
    gap: 8px; 
    font-weight: 400;
    font-family: 'Open Sans';
    font-size: 15px;
    display: flex;
    align-content: center;
    justify-items: center;
    margin-bottom: 24px;
  }

  .notification svg {
    display: inline-flex;
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    position: relative;
    margin-top: 2px;
  }

  .notification.info {
    color: #333;
    line-height: 23px;
    background-color: #cce5ff;
    /*background-color: #dceeff;*/    
  }

  .notification.warn {
    color: #635011;
    background-color: #FEF5CF;
  }

  .notification.danger {
    color: #7D272B;
    background-color: #F4D8DA;
  }

  .notification.success {
    color: #0f5132;
    background-color: #d1e7dd;
  }

  .form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    transition: 0.2s transform;
  }

  .form > div {
    width: 100%;
    position: relative;
  }

  .form label { 
    display: block;
    text-align: left;
    color: #333;
    opacity: 0.5;
    font-family: Montserrat;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 6px;
    margin-left: 8px;
  }

  .form input {
    padding: 3px;
    padding-left: 12px;
    padding-right: 12px;
    outline: 2px solid #CBD4DA;
    border: none;
    font-family: 'Open Sans';
    color: #333;
    font-weight: 500;
    font-size: 16px;
    border-radius: 500px;
    width: 100%;
    transition: 0.2s outline;
  }

  .check {
    position: absolute;
    right: 3px;
    bottom: 3px;
    width: 22px;
    height: 22px;
    border-radius: 100%;
    display:none;
  }

  .check.error {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%237D272B' class='size-6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m9.75 9.75 4.5 4.5m0-4.5-4.5 4.5M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z' /%3E%3C/svg%3E%0A");
    color: #7D272B;
    background-color: #F4D8DA;
    background-size: 23px 22px;
  }

  .check.ok {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%230f5132' class='size-6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9 12.75 11.25 15 15 9.75M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z' /%3E%3C/svg%3E%0A");
    color: #0f5132;
    background-color: #d1e7dd;
    background-size: 23px 22px;
  }

  .shrink {
    transform: scale(0);
  }

  .message_image {
    width: 300px;
  }

  .grey-container {
    padding: 24px;
    width: 100%;
    border-radius: 24px;
    background-color: rgba(245, 248, 248,1);
  }

  .grey-container + .button {
    margin-top: 12px;
  }

  .icon-container {
    max-width: 60px;
    display: flex;
    border-radius: 360px;
    padding: 12px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
    margin-top: 24px;
    width: 100%;
  }

  .icon-container.grow {
    animation: grow 0.5s ease forwards;
  }
  
  @keyframes grow {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
  }

  .icon-container.green {
    background-color: var(--color-success-bg);
    color: var(--color-success-text);
  }

  .icon-container.red {
    background-color: var(--color-error-bg);
    color: var(--color-error-text);
  }

  .icon-container.grey {
    background-color: var(--color-td-grey);
    color: var(--color-darker-grey);
  }


  .grey-container .paragraph {
    color: var(--color-broken-black);
  }

  .players-grid-simple {
    display: grid;
    grid-template-columns: 50px auto;
    padding: 24px;
    gap: 6px;
    font-family: 'OPEN SANS';
    font-weight: 500;
    align-items: center;
    color: var(--color-broken-black);
  }

  .players-grid-simple .title {
    grid-column: 1 / 3;
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 6px;
    text-align: center;
  }

  .players-grid-simple div {
    display: flex;
    align-items: center;
  }

  .players-grid-simple .button.small {
    position: absolute;
    right: 20px;
  }

  .players-grid-big {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: 'OPEN SANS';
    font-weight: 500;
    color: var(--color-broken-black);
  }

  .players-grid-big .row {
    display: grid;
    grid-template-columns: 19px 50px auto 50px 8px 0px;
    gap: 6px;
    align-items: center;
    position: relative;
  }

  .players-grid-big .flag {
    display: flex;
    position: absolute;
    left: 58px;
    width: 18px;
    height: 18px;
    bottom: 0px;
  }

  .players-grid-big .nickname {
    max-width: 145px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .players-grid-big .pos {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 11px;
    color: var(--color-darker-grey);
  }

  .players-grid-big .points {
    font-family: Montserrat;
    font-size: 15px;
    font-weight: 600;
    text-align: end;
  }

  .avatar {
    transition: 0.2s transform;
  }

  .avatar:hover {
    transform: scale(2);
    z-index: 5;
  }

  .uptodate {
    display: flex;
    width: 16px;
    height: 16px;
  }

  .toggleGroup {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
    width: 100%;
    border-radius: 20px;
    background: var(--color-light-grey);
    font-family: Open Sans;
    margin-bottom: 12px;
    overflow: hidden;
    padding: 3px;
  }

  .toggleGroup label {
    padding: 6px;
    text-align: center;
    cursor: pointer;
    z-index: 2;
    color: var(--color-broken-black);
    transition: color 0.3s;
    position: relative;
  }

  .toggleGroup input[type="radio"] {
    display: none;
  }

  .toggleHighlight {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% / 3);
    height: 100%;
    background: var(--color-primary);
    border-radius: 20px;
    transition: left 0.3s;
    z-index: 1;
    border: 2px solid var(--color-light-grey);
  }

  /* Move highlight background */
  #national:checked ~ .toggleHighlight {
    left: 0%;
  }
  #players:checked ~ .toggleHighlight {
    left: 33.33%;
  }
  #teams:checked ~ .toggleHighlight {
    left: 66.66%;
  }

  /* Highlight selected label text */
  #players:checked ~ label[for="players"],
  #teams:checked ~ label[for="teams"],
  #national:checked ~ label[for="national"] {
    color: var(--color-white);
  }



  .days-container {
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 12px;
  }

  .day {
    border-radius: 100%;
    background-color: var(--color-light-grey);
    font-family: Montserrat;
    font-weight: 500;
    font-size: 13px;
    color: var(--color-broken-black);
    width: 15px;
    height: 15px;
    text-align: center;
    align-content: center;
  }

  .day.done {
    background-color: var(--color-success-bg);
    color: var(--color-success-text);
  }

  .day.winner {
    /*background-color: #d4af37;*/
    /*color: #836e18;*/
    color: var(--color-broken-black);
  }

  .day.winner svg {
    width: 12px;
    height: 12px;
  }

  .question-overview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;  
    
  }

  .question-overview-container .q {
    display: flex;
    width: 13px;
    height: 13px;
    border-radius: 26px;
  }

  .question-overview-container .q.right {
    background-color: #3FAC7E;
  }
  .question-overview-container .q.wrong {
    background-color: #EA566D;
  }
  .question-overview-container .q.open {
    background-color: #BDD9EA;
  }
  .question-overview-container .q.future {
    background-color: transparent;
    border: 2px solid #BDD9EA;
  }

  .tooltip {
    display: block;
    content: attr(data);
    background-color: var(--color-white);
    position: fixed;
    z-index: 100;
    padding: 4px;
    padding-left: 6px;
    padding-right: 6px;
    font-family: "Open Sans";
    font-size: 14px;
    color: var(--color-broken-black);
    font-weight: 400;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
    opacity: 1;

    border-radius: 8px;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    padding: 6px;
  }

  .question-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    align-items: center;
    gap: 6px;
  }

  .question {
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-broken-black);
    margin-bottom: 24px;
  }

  .question-image {
    border-radius: 12px;
    width: 100%;
    display: flex;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  }

  .question-page .grey-container {
    margin-top: 24px;
  }

  .component-container {
    display: flex;
    flex-direction: column;
    background-color: var(--color-light-grey);
    width: fit-content;
    max-width: calc(var(--site-content-width) - (var(--site-content-padding) * 2));
    border-radius: 19px;
    box-sizing: border-box;
    gap: 12px;
    position: relative;
  }

  .img-container.ift{
    border: 2px solid #4B4D52;
    border-radius: 8px;
    position: relative;
    aspect-ratio: 1;
  }

  .img-container.ift img {
    display: flex;
    overflow: hidden;
    border: none;
    border-style: none;
    border-radius: 8px;
    width: 100%;
  }
  
  .ift-label {
    font-family: 'Montserrat';  
    font-size: 14px;
    font-weight: 600;
    position: absolute;
    white-space: nowrap;
  }
  
  .ift-label.y {
    top: 50%;
    left: -12px;
    display: flex;
  }
  
  .ift-label.y .rotate {
    -moz-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
    transform:  translateX(-50%) translateY(-50%) rotate(-90deg);
    position: absolute;
    top: 50%;
    left: 50%;
  }
  
  .ift-label.x {
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    line-height: 0;
    display: flex;
    position: absolute;
  }