/* stylelint-disable order/properties-alphabetical-order */
/* stylelint-enable */
@import url("https://use.typekit.net/vna1aph.css");
:root {
  --font-family: lato, sans-serif;
  --font-family--heading: var(--font-family);
  --font-weight--thin: 100;
  --font-weight--extra-light: 200;
  --font-weight--light: 300;
  --font-weight--normal: 400;
  --font-weight--medium: 500;
  --font-weight--semi-bold: 600;
  --font-weight--bold: 700;
  --font-weight--extra-bold: 800;
  --font-weight--black: 900;
  --line-height: 1.5;
  --line-height--heading: 1.2;
  --border-radius: 0.1875rem;
  --spacing: 1.5rem;
  --spacing--small: 0.75rem;
  --border-width: 0.0625rem;
  --border: var(--border-width) solid currentColor;
  --focus-outline-width: 0.1875rem;
  --focus-outline-offset: 0.125rem;
  --focus-outline: var(--focus-outline-width) solid #30ACDA;
  --duration: 150ms;
  --timing: ease;
}

button,
[type=button],
[type=reset],
[type=submit] {
  appearance: none;
  background-color: #30ACDA;
  border: 0;
  border-radius: var(--border-radius);
  color: inherit;
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-family-base);
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  font-weight: 600;
  line-height: 1;
  padding: var(--spacing--small) var(--spacing);
  text-align: center;
  text-decoration: none;
  transition: background-color var(--duration) var(--timing);
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}
button:hover,
[type=button]:hover,
[type=reset]:hover,
[type=submit]:hover {
  background-color: #30ACDA;
}
button:focus,
[type=button]:focus,
[type=reset]:focus,
[type=submit]:focus {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}
button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

:root {
  --form-box-shadow: inset 0 --border-width 0.1875rem rgba(#000, 0.06);
  --form-box-shadow-focus: var(--form-box-shadow), 0 0 0.3125rem #30ACDA;
}

fieldset {
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  font-weight: 600;
  margin-bottom: var(--spacing--small);
  padding: 0;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--spacing--small);
}

input,
select,
textarea {
  display: block;
  font-family: var(--font-family);
  font-size: 1rem;
}

[type=color],
[type=date],
[type=datetime],
[type=datetime-local],
[type=email],
[type=month],
[type=number],
[type=password],
[type=search],
[type=tel],
[type=text],
[type=time],
[type=url],
[type=week],
input:not([type]),
textarea {
  appearance: none;
  background-color: transparent;
  border: var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--form-box-shadow);
  box-sizing: border-box;
  margin-bottom: var(--spacing--small);
  padding: calc(var(--spacing) / 3);
  transition: border-color var(--duration) var(--timing);
  width: 100%;
}
[type=color]:focus,
[type=date]:focus,
[type=datetime]:focus,
[type=datetime-local]:focus,
[type=email]:focus,
[type=month]:focus,
[type=number]:focus,
[type=password]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=text]:focus,
[type=time]:focus,
[type=url]:focus,
[type=week]:focus,
input:not([type]):focus,
textarea:focus {
  box-shadow: var(--form-box-shadow-focus);
}
[type=color]:disabled,
[type=date]:disabled,
[type=datetime]:disabled,
[type=datetime-local]:disabled,
[type=email]:disabled,
[type=month]:disabled,
[type=number]:disabled,
[type=password]:disabled,
[type=search]:disabled,
[type=tel]:disabled,
[type=text]:disabled,
[type=time]:disabled,
[type=url]:disabled,
[type=week]:disabled,
input:not([type]):disabled,
textarea:disabled {
  cursor: not-allowed;
}
[type=color]:disabled:hover,
[type=date]:disabled:hover,
[type=datetime]:disabled:hover,
[type=datetime-local]:disabled:hover,
[type=email]:disabled:hover,
[type=month]:disabled:hover,
[type=number]:disabled:hover,
[type=password]:disabled:hover,
[type=search]:disabled:hover,
[type=tel]:disabled:hover,
[type=text]:disabled:hover,
[type=time]:disabled:hover,
[type=url]:disabled:hover,
[type=week]:disabled:hover,
input:not([type]):disabled:hover,
textarea:disabled:hover {
  border: var(--border);
}
[type=color]::placeholder,
[type=date]::placeholder,
[type=datetime]::placeholder,
[type=datetime-local]::placeholder,
[type=email]::placeholder,
[type=month]::placeholder,
[type=number]::placeholder,
[type=password]::placeholder,
[type=search]::placeholder,
[type=tel]::placeholder,
[type=text]::placeholder,
[type=time]::placeholder,
[type=url]::placeholder,
[type=week]::placeholder,
input:not([type])::placeholder,
textarea::placeholder {
  color: #333;
  opacity: 0.25;
}

[type=search] {
  -webkit-appearance: textfield;
}

textarea {
  resize: vertical;
}

[type=checkbox],
[type=radio] {
  display: inline;
  margin-right: var(--spacing--small);
}

[type=file] {
  margin-bottom: var(--spacing--small);
  width: 100%;
}

select {
  margin-bottom: var(--spacing--small);
  width: 100%;
}

[type=checkbox]:focus,
[type=radio]:focus,
[type=file]:focus,
select:focus {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}

html {
  background-color: #fff;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

dl {
  margin: 0;
}

dt {
  font-weight: 600;
  margin: 0;
}

dd {
  margin: 0;
}

figure {
  margin: 0;
}

img,
picture {
  margin: 0;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  margin: var(--spacing) 0;
  table-layout: fixed;
  text-align: left;
  width: 100%;
}

thead {
  line-height: var(--line-height--heading);
  vertical-align: bottom;
}

tbody {
  vertical-align: top;
}

tr {
  border-bottom: var(--border);
}

th {
  font-weight: 600;
}

th,
td {
  padding: var(--spacing--small) var(--spacing--small) var(--spacing--small) 0;
}

html {
  color: #333;
  font-family: var(--font-family);
  font-size: 100%;
  line-height: var(--line-height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family--heading);
  font-size: 1.25em;
  line-height: var(--line-height--heading);
  margin: 0 0 var(--spacing--small);
}

p {
  margin: 0 0 var(--spacing--small);
}

a {
  color: #30ACDA;
  text-decoration-skip: ink;
  transition: color var(--duration) var(--timing);
}
a:hover {
  color: #30ACDA;
}
a:focus {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}

hr {
  border-bottom: var(--border);
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin: var(--spacing) 0;
}

body {
  background-color: #14100D;
}

.wrapper {
  border-top: 0;
  color: #fff;
}
.wrapper .fake-bar .top {
  padding: 5px;
  background-color: #30ACDA;
  color: #fff;
  display: flex;
  align-items: center;
}
.wrapper .fake-bar .top .title {
  flex: 1;
  font-size: 12px;
  margin-left: 20px;
  line-height: 1em;
}
.wrapper .fake-bar .top .icon, .wrapper .fake-bar .top .user {
  display: flex;
}
.wrapper .fake-bar .top .icon img, .wrapper .fake-bar .top .user img {
  height: 15px;
}
.wrapper .fake-bar .bottom {
  background-color: #fff;
  color: #333;
  font-size: 12px;
  padding: 5px;
  line-height: 1em;
  border-right: 1px solid #30ACDA;
  border-left: 1px solid #30ACDA;
}
.wrapper .fake-bar .bottom ul {
  display: flex;
}
.wrapper .fake-bar .bottom ul li {
  padding: 0 20px;
  border-right: 1px solid #B3B3B3;
}
.wrapper #splash, .wrapper #main {
  position: absolute;
  width: 100%;
  top: 47px;
  height: calc(100vh - 48px);
  overflow: auto;
  background-color: #14100D;
  border: 2px solid #30ACDA;
  border-top: 0;
}
.wrapper #splash {
  visibility: inherit;
  opacity: 1;
  background-image: url(../img/bg_badge.svg);
  background-size: auto 75%;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.wrapper #splash .inner {
  width: 100%;
  height: 100vh;
  display: flex;
  visibility: inherit;
  opacity: 1;
}
.wrapper #splash .draw {
  position: absolute;
  left: 0px;
  top: 40px;
  max-width: 50%;
  transition: all 0.3s;
  transform: translate(-100%, 0);
  display: flex;
  animation: load-draw 0.5s 1s;
  animation-fill-mode: forwards;
}
.wrapper #splash .draw img {
  max-height: 150px;
}
@keyframes load-draw {
  100% {
    transform: translate(0, 0);
  }
}
.wrapper #splash .text {
  margin: auto;
  padding: 0 20px;
  text-align: center;
  opacity: 0;
  animation: load-text 0.5s 0.5s forwards;
}
.wrapper #splash .text h2 {
  font-size: 3rem;
  margin-bottom: 0;
  font-weight: 400;
}
.wrapper #splash .text p {
  font-size: 1.7em;
}
.wrapper #splash .text .password_wrap {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  align-items: center;
  max-width: 300px;
  margin: 40px auto;
}
.wrapper #splash .text .password_wrap .lock {
  background-color: #30ACDA;
  width: 50px;
  height: 50px;
  position: relative;
  animation: unlock-colour 0.1s 4s forwards;
}
.wrapper #splash .text .password_wrap .lock .top, .wrapper #splash .text .password_wrap .lock .bottom {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
}
.wrapper #splash .text .password_wrap .lock .top img, .wrapper #splash .text .password_wrap .lock .bottom img {
  margin: auto;
}
.wrapper #splash .text .password_wrap .lock .top img {
  transform: translate(0, -6px);
}
.wrapper #splash .text .password_wrap .lock .bottom img {
  transform: translate(0, 2px);
}
@keyframes unlock-colour {
  100% {
    background-color: #A7CA59;
  }
}
@keyframes unlock-lock {
  100% {
    transform: translate(0, -10px);
  }
}
.wrapper #splash .text .password_wrap .lock .top img {
  animation: unlock-lock 0.1s 4.1s forwards;
}
.wrapper #splash .text .password_wrap .password {
  color: #30ACDA;
  font-size: 2em;
  line-height: 1em;
  font-weight: 700;
  padding-left: 20px;
  display: flex;
}
.wrapper #splash .text .password_wrap .password span {
  margin-right: 5px;
  opacity: 0;
  height: 20px;
}
@keyframes password-type {
  100% {
    opacity: 1;
  }
}
.wrapper #splash .text .password_wrap .password span:nth-child(1) {
  animation: password-type 0.1s 2s forwards;
}
.wrapper #splash .text .password_wrap .password span:nth-child(2) {
  animation: password-type 0.1s 2.1s forwards;
}
.wrapper #splash .text .password_wrap .password span:nth-child(3) {
  animation: password-type 0.1s 2.3s forwards;
}
.wrapper #splash .text .password_wrap .password span:nth-child(4) {
  animation: password-type 0.1s 2.7s forwards;
}
.wrapper #splash .text .password_wrap .password span:nth-child(5) {
  animation: password-type 0.1s 2.8s forwards;
}
.wrapper #splash .text .password_wrap .password span:nth-child(6) {
  animation: password-type 0.1s 3.2s forwards;
}
.wrapper #splash .text .password_wrap .password span:nth-child(7) {
  animation: password-type 0.1s 3.3s forwards;
}
.wrapper #splash .text .password_wrap .password span:nth-child(8) {
  animation: password-type 0.1s 3.6s forwards;
}
.wrapper #splash .text .password_wrap .password span:nth-child(9) {
  animation: password-type 0.1s 3.8s forwards;
}
.wrapper #splash .text .password_wrap .password span:nth-child(10) {
  animation: password-type 0.1s 3.9s forwards;
}
.wrapper #splash .text .button button {
  border-radius: 10px;
  font-size: 1.3em;
  padding: 10px 20px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.1s;
  animation: button-pop 0.1s 4.2s forwards;
}
.wrapper #splash .text .button button:hover {
  background-color: #2B9BC4;
}
@keyframes button-pop {
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes load-text {
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 320px) {
  .wrapper #splash .text h2 {
    font-size: 2rem;
  }
  .wrapper #splash .text p {
    font-size: 1.4em;
  }
  .wrapper #splash .text .user img {
    max-width: 50px;
  }
}
.wrapper #splash .bg {
  position: absolute;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.wrapper #splash .bg div {
  position: absolute;
  height: 100%;
  width: 100%;
}
.wrapper #splash .bg.big div {
  background-image: url(../img/bg_spike_big.svg);
  background-position: center;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: auto 210%;
  background-position: 100% 40%;
  left: -50%;
  opacity: 0.3;
  animation: pulse-big 20s infinite forwards;
}
@keyframes pulse-big {
  0% {
    opacity: 0.3;
    transform: rotate(0) scale(0.99);
  }
  33% {
    opacity: 0.5;
    transform: rotate(-1deg) scale(1.01);
  }
  66% {
    opacity: 0.5;
    transform: rotate(1deg) scale(1);
  }
  100% {
    opacity: 0.3;
    transform: rotate(0) scale(0.99);
  }
}
.wrapper #splash .bg.big.r {
  transform: scaleX(-1) scaleY(-1);
}
.wrapper #splash .bg.small div {
  background-image: url(../img/bg_spike_small.svg);
  background-position: center;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: auto 190%;
  background-position: 100% bottom;
  left: -50%;
  opacity: 0.5;
  animation: pulse-small 20s infinite forwards;
}
@keyframes pulse-small {
  0% {
    opacity: 0.5;
    transform: rotate(0) scale(1.01);
  }
  33% {
    opacity: 0.3;
    transform: rotate(1deg) scale(0.99);
  }
  66% {
    opacity: 0.2;
    transform: rotate(-1deg) scale(1);
  }
  100% {
    opacity: 0.5;
    transform: rotate(0) scale(1.01);
  }
}
.wrapper #splash .bg.small.r {
  transform: scaleX(-1) scaleY(-1);
}
@keyframes fadeOut {
  99% {
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
.wrapper #splash.hide .inner {
  animation: fadeOut 1s 0s forwards;
}
.wrapper #splash.hide .text {
  animation: popAway 1s 0s forwards;
}
@keyframes popAway {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}
.wrapper #main {
  visibility: hidden;
  opacity: 0;
  font-size: 14px;
}
.wrapper #main.show {
  animation: fadeIn 1s 1s forwards;
}
@keyframes fadeIn {
  0% {
    visibility: visible;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
.wrapper #main .inner {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}
.wrapper #main .nav {
  text-transform: uppercase;
  font-weight: 100;
  margin: 40px 0 20px;
  border-bottom: 1px solid #30ACDA;
}
.wrapper #main .nav > div .label {
  width: 120px;
  line-height: 1em;
  height: 45px;
  display: flex;
  align-items: center;
  color: #30ACDA;
}
.wrapper #main .nav > div .options {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 1fr 1fr;
  text-align: center;
  line-height: 1em;
}
.wrapper #main .nav > div .options .option {
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  cursor: pointer;
}
.wrapper #main .nav > div .options .option.active {
  background-color: #30ACDA;
}
.wrapper #main .nav > div.expenses .label {
  color: #A7CA59;
}
.wrapper #main .nav > div.expenses .options .option.active {
  background-color: #A7CA59;
}
@media screen and (min-width: 450px) {
  .wrapper #main .nav > div {
    display: grid;
    grid-template-columns: 150px 1fr;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 700px) {
  .wrapper #main .nav > div .options {
    grid-template-columns: repeat(4, 1fr);
  }
}
.wrapper #main .columns_wrap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 0;
  border-left: 1px solid #30ACDA;
  margin-bottom: 40px;
}
@media screen and (min-width: 400px) {
  .wrapper #main .columns_wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 600px) {
  .wrapper #main .columns_wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 900px) {
  .wrapper #main .columns_wrap {
    grid-template-columns: repeat(5, 1fr);
  }
}
.wrapper #main .columns_wrap .col {
  border-right: 1px solid #30ACDA;
  display: flex;
  flex-direction: column;
  border-bottom: 10px solid #30ACDA;
  margin-top: 1px;
}
.wrapper #main .columns_wrap .col .title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  text-align: center;
  background-color: #30ACDA;
  color: #fff;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
}
.wrapper #main .columns_wrap .col .title[data-movie="No Time to Die"] {
  background-image: url(../img/nttd.svg);
}
.wrapper #main .columns_wrap .col .title[data-movie=Spectre] {
  background-image: url(../img/spectre.svg);
}
.wrapper #main .columns_wrap .col .title[data-movie=Skyfall] {
  background-image: url(../img/skyfall.svg);
}
.wrapper #main .columns_wrap .col .title[data-movie="Quantum of Solace"] {
  background-image: url(../img/qos.svg);
}
.wrapper #main .columns_wrap .col .title[data-movie="Casino Royale"] {
  background-image: url(../img/casino.svg);
}
.wrapper #main .columns_wrap .col .rows_wrap .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
}
.wrapper #main .columns_wrap .col .rows_wrap .row:nth-child(2n+1) {
  background-color: rgba(255, 255, 255, 0.1);
}
.wrapper #main .columns_wrap .col .rows_wrap .row .value {
  font-weight: 100;
  flex: 1;
}
.wrapper #main .columns_wrap .col .rows_wrap .row .value span {
  font-weight: 700;
  margin-right: 5px;
}
.wrapper #main .columns_wrap .col .rows_wrap .row .plus {
  background-color: #fff;
  border-radius: 100px;
  position: relative;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.wrapper #main .columns_wrap .col .rows_wrap .row .plus:before, .wrapper #main .columns_wrap .col .rows_wrap .row .plus:after {
  content: "";
  position: absolute;
  height: 0;
  width: 60%;
  top: 6px;
  left: 0;
  margin: 20%;
  border-bottom: 1px solid green;
  transition: transform 0.2s;
}
.wrapper #main .columns_wrap .col .rows_wrap .row .plus:after {
  transform: rotate(-90deg);
}
.wrapper #main .columns_wrap .col .rows_wrap .row .plus:after.open {
  transform: rotate(0);
}
.wrapper #main .columns_wrap .col .total {
  margin: 40px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.wrapper #main .columns_wrap .col .total p {
  text-align: center;
}
.wrapper #main .columns_wrap .col .total .bar_wrap {
  border: 1px solid #fff;
}
.wrapper #main .columns_wrap .col .total .bar_wrap .bar {
  background-color: #30ACDA;
  position: relative;
  height: 25px;
}
.wrapper #main .columns_wrap .col .total .bar_wrap .bar span {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  color: #fff;
  right: 5px;
}
.wrapper #main .columns_wrap .col .total .bar_wrap .bar.small span {
  right: none;
  left: calc(100% + 5px);
}
.wrapper #main .popup_wrap {
  position: fixed;
  top: 47px;
  left: 0;
  width: 100%;
  height: calc(100% - 47px);
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(1px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrapper #main .popup_wrap .box {
  width: 100%;
  max-width: 500px;
  border-radius: 5px;
  overflow: hidden;
  margin: 20px;
}
.wrapper #main .popup_wrap .box .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  color: #14100D;
  padding: 0 10px;
}
.wrapper #main .popup_wrap .box .top .icon {
  width: 90px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.wrapper #main .popup_wrap .box .top .icon[data-movie="No Time to Die"] {
  background-image: url(../img/nttd_bl.svg);
}
.wrapper #main .popup_wrap .box .top .icon[data-movie=Spectre] {
  background-image: url(../img/spectre_bl.svg);
}
.wrapper #main .popup_wrap .box .top .icon[data-movie=Skyfall] {
  background-image: url(../img/skyfall_bl.svg);
}
.wrapper #main .popup_wrap .box .top .icon[data-movie="Quantum of Solace"] {
  background-image: url(../img/qos_bl.svg);
}
.wrapper #main .popup_wrap .box .top .icon[data-movie="Casino Royale"] {
  background-image: url(../img/casino_bl.svg);
}
.wrapper #main .popup_wrap .box .top .title {
  flex: 1;
  line-height: 1.1em;
  padding: 5px 0;
}
.wrapper #main .popup_wrap .box .top .title span {
  text-transform: uppercase;
}
.wrapper #main .popup_wrap .box .top .close {
  background-color: #14100D;
  border-radius: 100px;
  position: relative;
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
  margin-left: 20px;
  cursor: pointer;
}
.wrapper #main .popup_wrap .box .top .close:before, .wrapper #main .popup_wrap .box .top .close:after {
  content: "";
  position: absolute;
  height: 0;
  width: 60%;
  top: 6px;
  left: 0;
  margin: 20%;
  border-bottom: 1px solid #fff;
  transition: transform 0.2s;
}
.wrapper #main .popup_wrap .box .top .close:after {
  transform: rotate(-90deg);
}
.wrapper #main .popup_wrap .box .rows_wrap {
  background-color: #30ACDA;
}
.wrapper #main .popup_wrap .box .rows_wrap .row {
  padding: 5px 10px;
  display: flex;
  align-items: center;
}
.wrapper #main .popup_wrap .box .rows_wrap .row:nth-child(2n+1) {
  background-color: rgba(255, 255, 255, 0.15);
}
.wrapper #main .popup_wrap .box .rows_wrap .row .cost {
  width: 90px;
}
.wrapper #main .popup_wrap .box .rows_wrap .row .item {
  flex: 1;
  line-height: 1.1em;
}
.wrapper #main .movie_totals {
  background-image: linear-gradient(to bottom, #14100D 10%, transparent 50%), url(../img/bg_jb.svg);
  background-size: cover;
  background-position: center right;
  padding-bottom: 40px;
}
.wrapper #main .movie_totals .key {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-weight: 100;
  margin: 40px 0 20px;
}
.wrapper #main .movie_totals .key > div {
  display: flex;
  margin: 0 20px 10px 0;
}
.wrapper #main .movie_totals .key > div .circ {
  height: 20px;
  width: 20px;
  border-radius: 100%;
  margin-right: 5px;
}
.wrapper #main .movie_totals .key > div .circ.blue {
  background-color: #30ACDA;
}
.wrapper #main .movie_totals .key > div .circ.dblue {
  background-color: #2B9BC4;
}
.wrapper #main .movie_totals .key > div .circ.green {
  background-color: #A7CA59;
}
.wrapper #main .movie_totals .rows_wrap .row {
  margin-bottom: 20px;
}
.wrapper #main .movie_totals .rows_wrap .row .title {
  font-weight: 100;
  margin-bottom: 5px;
  font-size: 1.1em;
}
.wrapper #main .movie_totals .rows_wrap .row .title span {
  font-weight: 700;
}
.wrapper #main .movie_totals .rows_wrap .row .bar_wrap {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.wrapper #main .movie_totals .rows_wrap .row .bar_wrap .bar {
  height: 30px;
  min-width: 5px;
  position: relative;
}
.wrapper #main .movie_totals .rows_wrap .row .bar_wrap .bar.blue {
  background-color: #59BDE1;
}
.wrapper #main .movie_totals .rows_wrap .row .bar_wrap .bar.blue span:before {
  border-bottom: #59BDE1 10px solid;
}
.wrapper #main .movie_totals .rows_wrap .row .bar_wrap .bar.dblue {
  background-color: #2B9BC4;
}
.wrapper #main .movie_totals .rows_wrap .row .bar_wrap .bar.dblue span:before {
  border-bottom: #2B9BC4 10px solid;
}
.wrapper #main .movie_totals .rows_wrap .row .bar_wrap .bar.green {
  background-color: #A7CA59;
}
.wrapper #main .movie_totals .rows_wrap .row .bar_wrap .bar.green span:before {
  border-bottom: #A7CA59 10px solid;
}
.wrapper #main .movie_totals .rows_wrap .row .bar_wrap .bar span {
  position: absolute;
  opacity: 0;
  transition: opacity 0.2s;
  top: calc(100% + 5px);
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  display: inline-block;
  font-size: 0.8em;
  padding: 2px 5px 4px;
  border-radius: 5px;
  background-color: inherit;
  border-color: inherit;
  color: #fff;
  line-height: 1.3em;
}
.wrapper #main .movie_totals .rows_wrap .row .bar_wrap .bar span:before {
  content: "";
  position: absolute;
  left: calc(50% - 5px);
  top: -10px;
  height: 0;
  width: 0;
  border-right: transparent 5px solid;
  border-left: transparent 5px solid;
  z-index: 9;
}
.wrapper #main .movie_totals .rows_wrap .row .bar_wrap .bar:hover span {
  opacity: 1;
  z-index: 9;
}
