/*=========================================
// !———— CSS Reset ————
=========================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after, q:before, q:after {
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.group:before, .group:before, .group:after {
  content: "";
  display: table; }

.group:after {
  clear: both; }

.group {
  zoom: 1; }

li {
  list-style: none; }

@-webkit-keyframes pulse {
  from {
    opacity: 1; }

  to {
    opacity: 0.25; } }

@-webkit-keyframes hover {
  from {
    -webkit-transform: translateY(0); }

  to {
    -webkit-transform: translateY(-6px); } }

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0); }

  to {
    -webkit-transform: rotate(360deg); } }

@-webkit-keyframes fontfix {
  from {
    opacity: 1; }

  to {
    opacity: 1; } }

html, body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  background: #FBFCFC; }

body {
  color: #475f77;
  font-size: 16px;
  font-family: "ff-tisa-web-pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  -webkit-animation-duration: 0.1s;
  -webkit-animation-name: fontfix;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
  -webkit-animation-delay: 0.1s; }

#wrapper {
  position: relative;
  min-height: 100%;
  background: #FBFCFC; }

.container {
  position: relative;
  max-width: 1200px;
  min-width: 960px;
  margin: 0 auto;
  padding: 0 16px; }

.header-wrapper {
  position: relative;
  width: 100%;
  padding: 20px 0 18px 0;
  background: #F7F8F9;
  border-bottom: solid 1px #E8E7E4; }
  .header-wrapper select {
    -webkit-appearance: none;
    -moz-appearance: none;
    font-family: "brandon-grotesque", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 23px;
    color: #354b5e;
    width: 400px;
    padding: 3px 40px 3px 10px;
    margin-top: 0px;
    border: 1px solid #E8E7E4;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    background: none;
    background-color: white;
    background-image: url("/static/images/icon-dropdown.png");
    background-size: 40px auto;
    background-position: right center;
    background-repeat: no-repeat;
    -webkit-transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
    .header-wrapper select:hover {
      cursor: pointer;
      border: 1px solid #A6A49E; }

a {
  color: #87c3ff;
  text-decoration: none;
  -webkit-transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  a:hover {
    color: #4599ED; }

em {
  font-style: italic; }

h1 {
  font-family: "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  text-transform: uppercase; }

h2 {
  font-family: "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  color: #A6A49E; }
  h2.warning {
    color: #d74b4b;
    font-weight: 600; }

.invisible {
  opacity: 0; }

.text-input {
  resize: none;
  color: #475f77;
  font-size: 16px;
  font-family: "ff-tisa-web-pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4em;
  background: white;
  border-radius: 4px;
  border: 1px solid #E8E7E4;
  -webkit-font-smoothing: antialiased; }
  .text-input:hover {
    border: 1px solid #A6A49E; }
  .text-input:focus {
    border: 1px solid #87c3ff; }

input:focus, textarea:focus, select:focus {
  outline: none; }

::-webkit-input-placeholder {
  color: #A6A49E;
  font-style: italic; }

::-moz-input-placeholder {
  color: #A6A49E;
  font-style: italic; }

.standard-button {
  display: block;
  background-color: #475f77;
  border-radius: 22px;
  height: 40px;
  color: white;
  text-align: center;
  text-transform: uppercase;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 17px;
  padding-top: 9px;
  -webkit-user-select: none; }
  .standard-button.publish-feeds {
    width: 200px; }
  .standard-button.center {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); }
  .standard-button:hover {
    cursor: pointer;
    background-color: #354b5e; }
  .standard-button.plan-cancel, .standard-button.red {
    color: white;
    background-color: #d74b4b; }
    .standard-button.plan-cancel:hover, .standard-button.red:hover {
      cursor: pointer;
      background-color: #af2727; }
  .standard-button.green {
    color: white;
    background-color: #76B755; }
    .standard-button.green:hover {
      cursor: pointer;
      background-color: #629146; }
  .standard-button.warmgrey {
    color: white;
    background-color: #A6A49E; }
    .standard-button.warmgrey:hover {
      cursor: pointer;
      background-color: #6E6C68; }
  .standard-button.nobuttonblue {
    color: #475f77;
    background-color: white; }
    .standard-button.nobuttonblue:hover {
      cursor: default; }
  .standard-button.nobuttongreen {
    color: #76B755;
    background-color: white; }
    .standard-button.nobuttongreen:hover {
      cursor: default; }
  .standard-button.nobuttonred {
    color: #d74b4b;
    background-color: white; }
    .standard-button.nobuttonred:hover {
      cursor: default; }
  .standard-button.nobuttongrey {
    color: #A6A49E;
    background-color: white; }
    .standard-button.nobuttongrey:hover {
      cursor: default; }

.delete-button .fill {
  fill: #A6A49E;
  -webkit-transition: fill 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: fill 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.delete-button .line {
  stroke: #E8E7E4;
  -webkit-transition: stroke 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: stroke 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.delete-button:hover {
  cursor: pointer; }
  .delete-button:hover .fill {
    fill: #d74b4b; }
  .delete-button:hover .line {
    stroke: #d74b4b; }

.tombstone {
  text-align: center;
  text-transform: uppercase;
  left: 50%;
  font-family: "brandon-grotesque", sans-serif;
  color: #E8E7E4;
  font-weight: 800;
  opacity: 0.25; }
  .tombstone.final {
    font-size: 48px;
    margin: 80px 0 80px 240px; }
  .tombstone.homepage {
    font-size: 48px;
    padding: 40px 0 80px 0; }
  .tombstone.account {
    font-size: 48px;
    margin: 40px 0; }
  .tombstone.divider {
    font-size: 96px;
    margin: -20px 0 0 240px; }

.modal-bg {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 6000;
  -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .modal-bg .login-form {
    margin: 20px 0; }
    .modal-bg .login-form .field-header {
      text-align: left; }
    .modal-bg .login-form .text-input {
      width: 100%;
      font-family: "ff-tisa-web-pro", sans-serif;
      font-size: 24px;
      height: 50px;
      padding-top: 0px;
      margin-bottom: 20px;
      float: right;
      color: #475f77;
      background-color: transparent;
      border: none;
      border-bottom: 1px solid #E8E7E4;
      border-radius: 0; }
      .modal-bg .login-form .text-input:hover {
        border-bottom: 1px solid #A6A49E; }
      .modal-bg .login-form .text-input:focus {
        border-bottom: 1px solid #87c3ff; }
  .modal-bg .modal {
    position: absolute;
    width: 400px;
    height: auto;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 20px 20px 10px 20px;
    background-color: white;
    border-radius: 22px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    text-align: center;
    -webkit-user-select: none; }
    .modal-bg .modal ul {
      color: #6E6C68;
      padding-bottom: 12px;
      font-size: 18px;
      margin-top: -14px; }
    .modal-bg .modal .inline-url {
      display: inline;
      color: #475f77; }
    .modal-bg .modal #modal-empty-div {
      padding-bottom: 10px; }
    .modal-bg .modal.payment {
      width: 920px;
      top: 50%;
      padding: 30px 0;
      -webkit-transform: translate(-50%, -50%); }
      .modal-bg .modal.payment .change-card-label {
        color: #6E6C68; }
        .modal-bg .modal.payment .change-card-label #change-card-link:hover {
          cursor: pointer; }
      .modal-bg .modal.payment .hidden {
        display: none; }
    .modal-bg .modal p {
      color: #A6A49E;
      padding-bottom: 20px; }
    .modal-bg .modal .redbody {
      color: #af2727;
      padding-bottom: 20px; }
    .modal-bg .modal .array-text {
      padding-bottom: 5px; }
    .modal-bg .modal .spinner {
      display: inline-block;
      width: 32px;
      height: 32px;
      margin-bottom: 10px;
      background-image: url("static/images/record-small.png");
      background-repeat: no-repeat;
      background-size: cover;
      -webkit-animation: spin 0.5s linear infinite; }
    .modal-bg .modal .standard-button {
      margin-bottom: 10px; }
    .modal-bg .modal .double-button-wrapper .standard-button {
      width: 48%; }
      .modal-bg .modal .double-button-wrapper .standard-button:first-child {
        float: left; }
      .modal-bg .modal .double-button-wrapper .standard-button:last-child {
        float: right; }
    .modal-bg .modal #modal-input-longer {
      width: 100%;
      padding: 10px 20px;
      margin-bottom: 20px; }
      .modal-bg .modal #modal-input-longer:focus {
        border: 1px solid #475f77; }
    .modal-bg .modal #modal-input {
      width: 100%;
      padding: 10px 20px;
      margin-bottom: 20px; }
      .modal-bg .modal #modal-input:focus {
        border: 1px solid #475f77; }
    .modal-bg .modal #modal-input.url-label {
      width: 60%; }
    .modal-bg .modal #modal-input-pw1 {
      width: 100%;
      padding: 10px 20px;
      margin-bottom: 10px; }
      .modal-bg .modal #modal-input-pw1:focus {
        border: 1px solid #475f77; }
    .modal-bg .modal #modal-input-pw2 {
      width: 100%;
      padding: 10px 20px;
      margin-bottom: 20px; }
      .modal-bg .modal #modal-input-pw2:focus {
        border: 1px solid #475f77; }
    .modal-bg .modal #modal-datepicker-grouping {
      display: inline-block; }
    .modal-bg .modal select {
      -webkit-appearance: none;
      -moz-appearance: none;
      font-family: "brandon-grotesque", sans-serif;
      font-style: normal;
      font-weight: 400;
      font-size: 23px;
      color: #354b5e;
      width: 360px;
      padding: 3px 40px 3px 10px;
      margin-top: 0px;
      margin-bottom: 12px;
      border: 1px solid #E8E7E4;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      background: none;
      background-color: white;
      background-image: url("/static/images/icon-dropdown.png");
      background-size: 40px auto;
      background-position: right center;
      background-repeat: no-repeat;
      -webkit-transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
      -moz-transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
      .modal-bg .modal select:hover {
        cursor: pointer;
        border: 1px solid #A6A49E; }
    .modal-bg .modal #modal-selector-day {
      width: 80px; }
    .modal-bg .modal #modal-selector-month {
      width: 160px; }
    .modal-bg .modal #modal-selector-year {
      width: 100px; }
    .modal-bg .modal #modal-selector-hour {
      width: 80px; }
    .modal-bg .modal #modal-selector-minute {
      width: 80px; }
    .modal-bg .modal #modal-selector-ampm {
      width: 80px; }
  .modal-bg.hidden {
    opacity: 0; }
    .modal-bg.hidden .modal {
      opacity: 0;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      box-shadow: 0 0 0 black; }

@media screen and (max-width: 950px) {
  .payment .payment-content .payment-column, #main-features .tile {
    display: block;
    width: 100%;
    margin: 60px 0; }
  .tile p {
    width: 100%;
    padding: 0 10%; }
  .homepage .hello-image {
    background-size: 53%;
    padding-bottom: 19%; }
  #footer-content {
    min-width: 0; }
    #footer-content .left, #footer-content .right {
      display: none; }
    #footer-content .center {
      width: 100%; }
  .hide-on-mobile {
    display: none; }
  .payment .payment-content .payment-column.free .cutearrow {
    display: inline-block;
    transform: rotate(90deg); } }

@media screen and (max-width: 720px) {
  header nav li .yellow-hover {
    display: none; }
  .homepage .hello-image {
    background-size: 70%;
    padding-top: 80px;
    padding-bottom: 25%; }
  .homepage .hello-image .title h1 {
    font-size: 75px; }
  .homepage .hello-image .title .subtitle {
    font-size: 24px; }
  .homepage .welcome-content h1 {
    margin-top: 30px; }
  .hide-on-mobile {
    display: none; }
  .payment .payment-content .payment-column.free .cutearrow {
    display: inline-block;
    transform: rotate(90deg); } }

@media screen and (max-width: 400px) {
  header nav li .yellow-hover {
    display: none; }
  .homepage .homepage-header nav {
    padding-right: 0; }
  .homepage .welcome-content .payment-content, .homepage .welcome-content .feature-list {
    margin: 20px 0;
    background-color: white;
    border-radius: 0;
    border: 1px solid #E8E7E4;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); }
  .homepage .welcome-content .as-seen-text {
    width: 80%;
    margin-left: auto;
    margin-right: auto; }
  .homepage .welcome-content .as-seen-on {
    background-size: 80%;
    width: 400px;
    height: 102px; }
  .homepage .hello-image {
    background-size: 90%;
    padding-bottom: 33%; }
  .modal-bg .modal {
    width: 95%; }
  .hide-on-mobile {
    display: none; }
  .payment .payment-content .payment-column.free .cutearrow {
    display: inline-block;
    transform: rotate(90deg); } }

#hub-content-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0; }
  #hub-content-wrapper .new-subtext-red {
    font-family: 'brandon-grotesque', sans-serif;
    font-size: 20px;
    margin-top: -10px;
    color: #af2727; }
  #hub-content-wrapper .new-subtext {
    font-family: 'brandon-grotesque', sans-serif;
    font-size: 20px;
    margin-top: -10px; }
  #hub-content-wrapper #hub-content {
    position: absolute;
    width: 960px;
    left: 50%;
    margin-left: -480px;
    top: 50%;
    margin-top: -180px; }
    #hub-content-wrapper #hub-content #schedule-link-cant {
      position: relative;
      padding: 16px 20px 4px 20px;
      margin: 0 1%;
      margin-top: -35px;
      border-radius: 4px;
      color: #af2727;
      border: 1px solid #FBFCFC;
      -webkit-transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
      -moz-transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
      #hub-content-wrapper #hub-content #schedule-link-cant:hover {
        background-color: #F7F8F9;
        border: 1px solid #A6A49E; }
      #hub-content-wrapper #hub-content #schedule-link-cant h1 {
        margin-top: 40px;
        text-align: center; }
      #hub-content-wrapper #hub-content #schedule-link-cant p {
        text-align: center; }
      #hub-content-wrapper #hub-content #schedule-link-cant svg {
        position: absolute;
        top: 7px;
        left: 5px;
        fill: #F7C019; }
    #hub-content-wrapper #hub-content #schedule-link {
      position: relative;
      padding: 16px 20px 4px 20px;
      margin: 0 1%;
      margin-top: -35px;
      border-radius: 4px;
      color: #475f77;
      border: 1px solid #FBFCFC;
      -webkit-transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
      -moz-transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
      #hub-content-wrapper #hub-content #schedule-link:hover {
        background-color: #F7F8F9;
        border: 1px solid #A6A49E; }
      #hub-content-wrapper #hub-content #schedule-link h1 {
        margin-top: 40px;
        text-align: center; }
      #hub-content-wrapper #hub-content #schedule-link p {
        text-align: center; }
      #hub-content-wrapper #hub-content #schedule-link svg {
        position: absolute;
        top: 7px;
        left: 5px;
        fill: #F7C019; }
    #hub-content-wrapper #hub-content a {
      position: relative;
      padding: 40px 20px;
      margin: 0 1%;
      border-radius: 4px;
      color: #475f77;
      border: 1px solid #FBFCFC;
      -webkit-transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
      -moz-transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
      #hub-content-wrapper #hub-content a:hover {
        background-color: #F7F8F9;
        border: 1px solid #A6A49E; }
      #hub-content-wrapper #hub-content a h1 {
        margin-top: 40px;
        text-align: center; }
      #hub-content-wrapper #hub-content a p {
        text-align: center; }
      #hub-content-wrapper #hub-content a.shorter {
        padding: 40px 20px 5px 20px; }
    #hub-content-wrapper #hub-content #publisher-link .screenshot, #hub-content-wrapper #hub-content #publisher-link h1, #hub-content-wrapper #hub-content #publisher-link p {
      opacity: 0.5; }
    #hub-content-wrapper #hub-content #publisher-link:hover {
      background-color: white;
      border: 1px solid white; }
    #hub-content-wrapper #hub-content #publisher-link #under-construction {
      position: absolute;
      text-align: center;
      top: 104px;
      left: 32px;
      padding: 20px;
      border-radius: 4px;
      border: 2px solid #d74b4b;
      z-index: 100;
      -webkit-transform: rotate(-30deg);
      -moz-transform: rotate(-30deg); }
      #hub-content-wrapper #hub-content #publisher-link #under-construction h2 {
        color: #d74b4b;
        margin: 0; }

.column {
  width: 31%;
  box-sizing: border-box;
  padding: 0 40px 40px 40px;
  float: left;
  text-align: left; }
  .column h1 {
    color: #475f77;
    margin-top: 30px;
    margin-bottom: 10px; }
  .column .screenshot {
    position: relative;
    width: 194px;
    height: 194px;
    border-radius: 100px;
    margin: 0 auto;
    background: white;
    background-repeat: no-repeat;
    background-position: center center; }
  .column .screenshot-inner-page {
    border: 2px solid #475f77;
    position: relative;
    width: 194px;
    height: 194px;
    border-radius: 100px;
    margin: 0 auto;
    background: white;
    background-repeat: no-repeat;
    background-position: center center; }
  .column .screenshot .circle-illustration {
    position: absolute;
    top: 0;
    margin-top: -2px;
    right: 0;
    width: 308px;
    height: 210px;
    background-size: auto 210px;
    background-repeat: no-repeat; }
    .column .screenshot .circle-illustration#circle-microphone {
      background-image: url("/static/images/circle-microphone.png"); }
    .column .screenshot .circle-illustration#circle-reeltoreel {
      background-image: url("/static/images/circle-reeltoreel.png"); }
    .column .screenshot .circle-illustration#circle-gramophone {
      background-image: url("/static/images/circle-gramophone.png"); }

.auxiliary-content {
  position: relative;
  width: 100%;
  text-align: center;
  padding-bottom: 40px;
  line-height: 1.6; }
  .auxiliary-content #welcome-image-bw {
    background-image: url("/static/images/cast-crest-bw.png"); }
  .auxiliary-content #cast-crest-small {
    height: 180px;
    margin: 40px 0;
    background-image: url("/static/images/cast-crest.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain; }
  .auxiliary-content .subtitle {
    color: #A6A49E; }

.submit-button {
  display: inline-block;
  width: 240px;
  height: 40px;
  margin: 20px 0;
  padding: 8px 0 0 0;
  background-color: #d74b4b;
  border-radius: 22px;
  -webkit-transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  color: white; }
  .submit-button h2 {
    color: white; }
  .submit-button:hover {
    background-color: #af2727; }

#forms-container {
  display: inline-block; }
  #forms-container form {
    width: 500px;
    margin-top: 40px;
    padding: 20px 40px 10px 40px; }
    #forms-container form .input-line {
      position: relative;
      margin: 20px 0; }
      #forms-container form .input-line h2 {
        position: absolute;
        top: 0;
        left: 0; }
    #forms-container form.login-form {
      background-color: white;
      border-radius: 22px;
      border: 1px solid #E8E7E4;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); }
    #forms-container form#interest-form {
      min-height: 225px; }
      #forms-container form#interest-form .input-line {
        margin: 0; }
        #forms-container form#interest-form .input-line input[type=text] {
          text-align: center;
          padding-top: 0; }
  #forms-container input[type=text], #forms-container input[type=password] {
    width: 100%;
    font-family: "ff-tisa-web-pro", sans-serif;
    font-size: 32px;
    height: 80px;
    padding-top: 20px;
    float: right;
    color: #475f77;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #E8E7E4; }
    #forms-container input[type=text]:hover, #forms-container input[type=password]:hover {
      border-bottom: 1px solid #A6A49E; }
    #forms-container input[type=text]:focus, #forms-container input[type=password]:focus {
      border-bottom: 1px solid #87c3ff; }

header {
  position: relative;
  width: 100%;
  background: #354b5e;
  color: white;
  z-index: 10; }
  header a {
    color: white; }
    header a:hover {
      color: white;
      border-bottom: none; }
  header nav {
    height: 40px; }
    header nav li {
      display: inline-block;
      float: left; }
    header nav h1 {
      padding-top: 3px;
      float: left;
      margin-right: 20px; }
    header nav li {
      position: relative;
      margin: 0;
      display: inline-block; }
      header nav li a {
        display: block;
        color: white;
        height: 40px;
        padding: 9px 12px; }
        header nav li a:hover {
          background-color: #475f77; }
      header nav li .yellow-hover:hover {
        background-color: #FFD000; }
      header nav li.selected a {
        color: #475f77;
        font-weight: 400;
        background-color: #F7F8F9;
        /* border-bottom: 4px solid $brightblue; */ }
    header nav #leftnav {
      float: left; }
      header nav #leftnav li {
        font-family: "brandon-grotesque", sans-serif;
        font-size: 16px;
        font-weight: 400;
        text-transform: uppercase;
        margin-right: 10px; }
    header nav #leftnav {
      float: left; }
    header nav #rightnav {
      float: right; }
      header nav #rightnav .user-link.active {
        background-color: #475f77; }
      header nav #rightnav .user-link a {
        padding-top: 7px;
        padding-left: 42px; }
      header nav #rightnav .user-link:hover {
        cursor: pointer; }
      header nav #rightnav .help-link {
        font-style: italic; }
        header nav #rightnav .help-link a {
          padding-top: 7px; }
      header nav #rightnav .avatar {
        position: absolute;
        top: 8px;
        left: 8px;
        width: 24px;
        height: 24px;
        border-radius: 16px;
        z-index: 100;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); }
  header #user-info-panel {
    position: absolute;
    top: 0;
    right: 16px;
    width: 300px;
    padding: 20px;
    background-color: #475f77;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    z-index: 100; }
    header #user-info-panel.invisible {
      top: -1000px; }
    header #user-info-panel input {
      display: block;
      width: 100%;
      margin-bottom: 20px;
      padding: 8px;
      background-color: white;
      border: none; }
    header #user-info-panel p {
      margin-bottom: 1.4em; }
    header #user-info-panel button {
      background-color: #475f77;
      border: 1px solid white;
      border-radius: 22px;
      width: 100%;
      height: 40px;
      color: white;
      text-align: center;
      text-transform: uppercase;
      font-family: "brandon-grotesque", sans-serif;
      font-size: 16px; }
      header #user-info-panel button:hover {
        cursor: pointer;
        background-color: #354b5e; }

footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  font-size: 12px;
  background: #FBFCFC;
  z-index: 5500; }
  footer.centered {
    text-align: center; }
  footer #footer-content {
    height: 30px;
    border-top: 1px solid #E8E7E4; }
    footer #footer-content.editor-footer {
      max-width: none; }
    footer #footer-content p {
      display: inline-block;
      padding-top: 5px;
      color: #A6A49E; }
    footer #footer-content .left {
      float: left; }
    footer #footer-content .center {
      position: absolute;
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%); }
    footer #footer-content .right {
      float: right; }

#session-content {
  position: relative; }

#activity-area {
  position: relative;
  padding: 32px 0;
  margin-right: 340px; }
  #activity-area #activity-log a:hover {
    border-bottom: 1px dotted #87c3ff; }
  #activity-area #activity-log .log-entry {
    position: relative;
    margin-bottom: 20px;
    white-space: nowrap;
    font-size: 0; }
    #activity-area #activity-log .log-entry .left {
      width: 160px;
      display: inline-block;
      vertical-align: top;
      white-space: normal;
      font-size: 16px; }
      #activity-area #activity-log .log-entry .left h2 {
        padding-top: 1px; }
      #activity-area #activity-log .log-entry .left .username {
        color: #475f77; }
    #activity-area #activity-log .log-entry .message-body {
      margin-top: -1px;
      margin-right: 280px;
      display: inline-block;
      vertical-align: top;
      white-space: normal;
      font-size: 16px; }
    #activity-area #activity-log .log-entry .message-input {
      width: 100%;
      padding: 8px 8px;
      margin: 4px 0;
      -webkit-transition: height 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
      -moz-transition: height 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
    #activity-area #activity-log .log-entry .timestamp {
      position: absolute;
      width: 80px;
      top: 1px;
      right: 0;
      text-align: right;
      color: #A6A49E;
      font-size: 16px;
      font-family: "brandon-grotesque", sans-serif;
      font-weight: 300;
      font-style: normal; }
  #activity-area #activity-log .chat-message {
    color: #475f77; }
  #activity-area #activity-log .myself h2 {
    color: #A6A49E !important; }
  #activity-area #activity-log .show-note {
    color: #A6A49E; }
    #activity-area #activity-log .show-note .message-body {
      background-color: #F7F8F9;
      border-radius: 4px;
      margin-top: -6px;
      margin-left: -10px;
      padding: 5px 10px; }
  #activity-area #activity-log .log-message {
    color: #A6A49E;
    font-style: italic; }
    #activity-area #activity-log .log-message.warning {
      color: #af2727; }
    #activity-area #activity-log .log-message .message-body {
      margin-right: 100px; }

#participants-area {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 20px;
  width: 320px;
  -webkit-user-select: none;
  -moz-user-select: none; }
  #participants-area #participants-list {
    padding: 16px 0; }
    #participants-area #participants-list.sticky {
      position: fixed;
      top: 138px; }
  #participants-area #hand-raise-button {
    width: 280px;
    height: 40px;
    padding-top: 9px;
    margin: 0 auto;
    margin-bottom: 20px;
    border-radius: 22px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    color: #475f77;
    background-color: white;
    border: 1px solid #E8E7E4;
    text-align: center;
    text-transform: uppercase;
    font-family: "brandon-grotesque", sans-serif;
    -webkit-transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
    #participants-area #hand-raise-button:hover {
      cursor: pointer;
      border: 1px solid #A6A49E; }
  #participants-area .participant {
    position: relative;
    width: 280px;
    height: 62px;
    padding: 10px;
    background: white;
    border: 1px solid #E8E7E4;
    border-radius: 100px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    line-height: 1.2;
    -webkit-transform-origin: right center;
    -webkit-transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transform-origin: right center;
    -moz-transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-user-select: none;
    user-select: none; }
    #participants-area .participant:hover {
      cursor: default; }
    #participants-area .participant.muted {
      background-color: #d74b4b;
      border: 1px solid white;
      -webkit-transform: scale(0.9);
      -moz-transform: scale(0.9); }
      #participants-area .participant.muted h2, #participants-area .participant.muted p {
        color: white; }
        #participants-area .participant.muted h2 .muted-label, #participants-area .participant.muted p .muted-label {
          opacity: 1;
          -webkit-animation: pulse 1s cubic-bezier(0.445, 0.05, 0.55, 0.95) alternate infinite;
          -moz-animation: pulse 1s cubic-bezier(0.445, 0.05, 0.55, 0.95) alternate infinite; }
      #participants-area .participant.muted .avatar-image.front.face {
        border: 1px solid #d74b4b; }
      #participants-area .participant.muted .circle {
        opacity: 0; }
      #participants-area .participant.muted .upload-status {
        opacity: 0; }
    #participants-area .participant.hand-raised .avatar {
      -webkit-transform: rotateY(180deg) scale(1.6);
      -moz-transform: rotateY(180deg) scale(1.6); }
    #participants-area .participant.hand-raised .name-block {
      -webkit-transform: translateX(10px);
      -moz-transform: translateX(10px); }
    #participants-area .participant.hand-raised .radial-progress {
      opacity: 0;
      -webkit-transform: scale(0.1);
      -moz-transform: scale(0.1); }
    #participants-area .participant h2 {
      color: #475f77; }
    #participants-area .participant p {
      color: #A6A49E;
      font-style: italic; }
    #participants-area .participant .avatar-wrapper {
      float: left;
      position: relative;
      width: 40px;
      height: 40px;
      margin-right: 10px;
      -webkit-perspective: 800px; }
      #participants-area .participant .avatar-wrapper .avatar {
        width: 100%;
        height: 100%;
        position: absolute;
        border-radius: 50%;
        -webkit-transform-style: preserve-3d;
        -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        -webkit-transform-origin: center;
        -moz-transform-style: preserve-3d;
        -moz-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        -moz-transform-origin: center; }
        #participants-area .participant .avatar-wrapper .avatar .face {
          display: block;
          position: absolute;
          width: 100%;
          height: 100%;
          -webkit-backface-visibility: hidden;
          -moz-backface-visibility: hidden; }
        #participants-area .participant .avatar-wrapper .avatar img {
          border-radius: 20px;
          border: 1px solid white; }
        #participants-area .participant .avatar-wrapper .avatar .front {
          -webkit-transform: translateZ(1px);
          -moz-transform: translateZ(1px); }
        #participants-area .participant .avatar-wrapper .avatar .back {
          padding-top: 12px;
          border-radius: 20px;
          border: 1px solid white;
          background: #FFD000;
          color: white;
          text-align: center;
          text-transform: uppercase;
          font-family: "brandon-grotesque", sans-serif;
          font-size: 12px;
          -webkit-transform: rotateY(180deg) rotateZ(-10deg) translateZ(1px);
          -moz-transform: rotateY(180deg) rotateZ(-10deg) translateZ(1px); }
    #participants-area .participant .name-block {
      -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      -moz-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      float: left; }
      #participants-area .participant .name-block .muted-label {
        opacity: 0;
        text-transform: uppercase;
        font-family: "brandon-grotesque", sans-serif;
        font-weight: 500; }
      #participants-area .participant .name-block .upload-status {
        position: absolute;
        width: 160px;
        height: 2px;
        bottom: 10px;
        background-color: #E8E7E4;
        border-radius: 2px;
        opacity: 1;
        -webkit-transform: none;
        -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        -moz-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
        #participants-area .participant .name-block .upload-status.inactive {
          opacity: 0;
          -webkit-transform: translateY(4px);
          -webkit-transition: all 0s; }
        #participants-area .participant .name-block .upload-status.uploading {
          -webkit-transform: translateY(-4px); }
        #participants-area .participant .name-block .upload-status .upload-local {
          position: absolute;
          height: 100%;
          width: 0%;
          border-radius: 2px;
          background-color: #A6A49E;
          -webkit-transition: all 0.5s linear;
          -moz-transition: all 0.5s linear; }
        #participants-area .participant .name-block .upload-status .upload-uploaded {
          position: absolute;
          height: 100%;
          width: 0%;
          border-radius: 2px;
          background-color: #354b5e;
          -webkit-transition: all 0.5s linear;
          -moz-transition: all 0.5s linear; }
    #participants-area .participant .mute-button {
      float: right;
      width: 40px;
      height: 40px;
      padding: 0;
      border-radius: 22px;
      border: 1px solid #d74b4b;
      background-color: white;
      -webkit-transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
      -moz-transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
      #participants-area .participant .mute-button:hover {
        cursor: pointer;
        border: 1px solid white;
        background-color: #d74b4b; }
        #participants-area .participant .mute-button:hover .fill {
          fill: white; }
        #participants-area .participant .mute-button:hover .line {
          stroke: white; }
      #participants-area .participant .mute-button svg {
        margin: -1px 0 0 -1px; }
        #participants-area .participant .mute-button svg .fill {
          fill: #d74b4b;
          -webkit-transition: fill 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
          -moz-transition: fill 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
        #participants-area .participant .mute-button svg .line {
          stroke: #d74b4b;
          -webkit-transition: stroke 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
          -moz-transition: stroke 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  #participants-area .participant-name-limiter {
    max-width: 156px;
    white-space: nowrap;
    overflow: hidden; }
  #participants-area .participant-uploaded {
    max-width: 156px;
    white-space: nowrap;
    overflow: hidden; }

.radial-progress-demo {
  position: absolute;
  margin: -4px 0 0 -4px;
  width: 48px;
  height: 48px;
  background-color: #E8E7E4;
  border-radius: 50%;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-backface-visibility: hidden;
  -moz-transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .radial-progress-demo .circle .mask, .radial-progress-demo .circle .fill {
    width: 48px;
    height: 48px;
    position: absolute;
    border-radius: 50%;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    transition: -webkit-transform 0.25s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    transition: -moz-transform 0.25s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    transition: -ms-transform 0.25s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    transition: transform 0.25s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    border-radius: 50%; }
  .radial-progress-demo .circle .mask {
    clip: rect(0px, 48px, 48px, 24px); }
    .radial-progress-demo .circle .mask .fill {
      clip: rect(0px, 24px, 48px, 0px);
      background-color: #87c3ff; }
  .radial-progress-demo .inset {
    width: 40px;
    height: 40px;
    position: absolute;
    margin-left: 4px;
    margin-top: 4px;
    background-color: white;
    border-radius: 50%;
    box-shadow: none; }

.radial-progress {
  position: absolute;
  margin: -4px 0 0 -4px;
  width: 48px;
  height: 48px;
  background-color: #E8E7E4;
  border-radius: 50%;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-backface-visibility: hidden;
  -moz-transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .radial-progress .circle .mask, .radial-progress .circle .fill {
    width: 48px;
    height: 48px;
    position: absolute;
    border-radius: 50%;
    -webkit-backface-visibility: hidden;
    transition: -webkit-transform 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    transition: -ms-transform 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    transition: transform 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    -moz-backface-visibility: hidden;
    transition: -moz-transform 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    border-radius: 50%; }
  .radial-progress .circle .mask {
    clip: rect(0px, 48px, 48px, 24px); }
    .radial-progress .circle .mask .fill {
      clip: rect(0px, 24px, 48px, 0px);
      background-color: #475f77; }
  .radial-progress .inset {
    width: 40px;
    height: 40px;
    position: absolute;
    margin-left: 4px;
    margin-top: 4px;
    background-color: white;
    border-radius: 50%;
    box-shadow: none; }

.radial-progressG {
  position: absolute;
  margin: -4px 0 0 -4px;
  width: 48px;
  height: 48px;
  background-color: #E8E7E4;
  border-radius: 50%;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.05s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-backface-visibility: hidden;
  -moz-transition: all 0.05s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .radial-progressG .circle .mask, .radial-progressG .circle .fill {
    width: 48px;
    height: 48px;
    position: absolute;
    border-radius: 50%;
    -webkit-backface-visibility: hidden;
    transition: -webkit-transform 0.05s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    transition: -ms-transform 0.05s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    transition: transform 0.05s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    -moz-backface-visibility: hidden;
    transition: -moz-transform 0.05s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    border-radius: 50%; }
  .radial-progressG .circle .mask {
    clip: rect(0px, 48px, 48px, 24px); }
    .radial-progressG .circle .mask .fill {
      clip: rect(0px, 24px, 48px, 0px);
      background-color: #87c3ff; }
  .radial-progressG .inset {
    width: 40px;
    height: 40px;
    position: absolute;
    margin-left: 4px;
    margin-top: 4px;
    background-color: white;
    border-radius: 50%;
    box-shadow: none; }

@-webkit-keyframes myfirst {
  0% {
    background: white; }

  50% {
    background: #d74b4b; }

  100% {
    background: white; } }


#account-header {
  position: relative; }
  #account-header #referralInput {
    border: none;
    background: none;
    width: auto;
    height: auto;
    color: #A6A49E;
    font-family: "ff-tisa-web-pro", sans-serif;
    font-size: 16px;
    padding: 0px; }
  #account-header #user-details {
    min-width: 400px;
    max-width: 700px;
    float: left;
    margin-top: 4px;
    white-space: nowrap; }
    #account-header #user-details #avatar-wrapper {
      float: left;
      margin-top: 16px;
      margin-right: 20px; }
      #account-header #user-details #avatar-wrapper img {
        width: 80px;
        height: 80px;
        border-radius: 40px;
        border: 1px solid white;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); }
    #account-header #user-details #username {
      padding: 0;
      width: 100%;
      font-family: "brandon-grotesque", sans-serif;
      font-size: 48px;
      font-weight: 200;
      text-transform: none;
      color: #475f77; }
    #account-header #user-details .user-details {
      line-height: 1.4;
      margin-left: 100px;
      margin-top: -4px;
      color: #A6A49E; }
      #account-header #user-details .user-details #credit-note {
        /* TODO: FML this isn't working */
        color: #76B755; }
        #account-header #user-details .user-details #credit-note a:hover {
          color: #629146; }
  #account-header #account-details {
    position: relative;
    float: right;
    width: 440px;
    background-color: white;
    border-radius: 22px;
    border: 1px solid #E8E7E4;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); }
    #account-header #account-details #credits-column {
      float: left;
      width: 33%; }
      #account-header #account-details #credits-column .display-number {
        margin: 4px 0 -4px 0;
        text-align: center;
        font-family: "brandon-grotesque", sans-serif;
        font-size: 48px;
        font-weight: 200;
        color: #d74b4b; }
    #account-header #account-details #purchase-column {
      float: left;
      width: 66%; }
      #account-header #account-details #purchase-column #purchase-button {
        margin-top: 41px;
        height: 41px;
        width: 240px;
        margin-left: 10px; }
      #account-header #account-details #purchase-column #purchase-button-pro {
        width: 260px;
        margin-top: 15px;
        margin-bottom: 12px;
        margin-left: 16px; }
      #account-header #account-details #purchase-column #purchase-button-hobby {
        width: 260px;
        margin-top: 15px;
        margin-bottom: 12px;
        margin-left: 16px; }
      #account-header #account-details #purchase-column #purchase-button-pro-change {
        width: 260px;
        margin-top: 15px;
        margin-bottom: 12px;
        margin-left: 16px; }
      #account-header #account-details #purchase-column #purchase-button-hobby-change {
        width: 260px;
        margin-top: 15px;
        margin-bottom: 12px;
        margin-left: 16px; }
      #account-header #account-details #purchase-column #purchase-button-cancel {
        width: 260px;
        margin-top: 15px;
        margin-bottom: 12px;
        margin-left: 16px; }
    #account-header #account-details .account-details-label {
      text-align: center;
      margin-bottom: 12px;
      color: #A6A49E; }
      #account-header #account-details .account-details-label .dark {
        color: #354b5e; }

#account-content {
  padding: 40px 0;
  text-align: center; }
  #account-content .active-sorting-mode {
    font-weight: bold; }
  #account-content #recordings-list {
    padding-top: 40px;
    text-align: center; }
    #account-content #recordings-list .recording-entry {
      position: relative;
      display: inline-block;
      width: 550px;
      height: 185px;
      margin: 0 5px 20px 5px;
      background-color: white;
      border: 1px solid #E8E7E4;
      border-radius: 4px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      text-align: left;
      overflow: hidden; }
      #account-content #recordings-list .recording-entry .recording-header {
        height: 64px;
        padding: 10px;
        border-bottom: 1px solid #E8E7E4; }
        #account-content #recordings-list .recording-entry .recording-header h2 {
          max-width: 450px;
          max-height: 44px;
          overflow: hidden;
          color: #354b5e;
          -webkit-transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
          -moz-transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
        #account-content #recordings-list .recording-entry .recording-header a:hover h2 {
          color: #87c3ff; }
      #account-content #recordings-list .recording-entry .recording-time {
        padding: 5px 10px 8px 10px;
        border-bottom: 1px solid #E8E7E4;
        background-color: #F7F8F9; }
        #account-content #recordings-list .recording-entry .recording-time .timestamp {
          float: left; }
        #account-content #recordings-list .recording-entry .recording-time .duration {
          float: right; }
      #account-content #recordings-list .recording-entry p {
        color: #A6A49E; }
      #account-content #recordings-list .recording-entry .top-right-buttons {
        position: absolute;
        top: 8px;
        right: 8px;
        width: 80px;
        text-align: right; }
        #account-content #recordings-list .recording-entry .top-right-buttons a:hover {
          border-bottom: none; }
        #account-content #recordings-list .recording-entry .top-right-buttons .rename-button {
          display: inline-block; }
          #account-content #recordings-list .recording-entry .top-right-buttons .rename-button .fill {
            fill: #E8E7E4;
            -webkit-transition: fill 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
            -moz-transition: fill 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
          #account-content #recordings-list .recording-entry .top-right-buttons .rename-button .line {
            stroke: #E8E7E4;
            -webkit-transition: stroke 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
            -moz-transition: stroke 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
          #account-content #recordings-list .recording-entry .top-right-buttons .rename-button:hover {
            cursor: pointer; }
            #account-content #recordings-list .recording-entry .top-right-buttons .rename-button:hover .fill {
              fill: #475f77; }
            #account-content #recordings-list .recording-entry .top-right-buttons .rename-button:hover .line {
              stroke: #475f77; }
        #account-content #recordings-list .recording-entry .top-right-buttons .duplicate-button {
          display: inline-block; }
          #account-content #recordings-list .recording-entry .top-right-buttons .duplicate-button .fill {
            fill: #E8E7E4;
            -webkit-transition: fill 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
            -moz-transition: fill 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
          #account-content #recordings-list .recording-entry .top-right-buttons .duplicate-button .line {
            stroke: #E8E7E4;
            -webkit-transition: stroke 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
            -moz-transition: stroke 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
          #account-content #recordings-list .recording-entry .top-right-buttons .duplicate-button .rect {
            stroke: #E8E7E4;
            -webkit-transition: stroke 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
            -moz-transition: stroke 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
          #account-content #recordings-list .recording-entry .top-right-buttons .duplicate-button:hover {
            cursor: pointer; }
            #account-content #recordings-list .recording-entry .top-right-buttons .duplicate-button:hover .fill {
              fill: #475f77; }
            #account-content #recordings-list .recording-entry .top-right-buttons .duplicate-button:hover .line {
              stroke: #475f77; }
            #account-content #recordings-list .recording-entry .top-right-buttons .duplicate-button:hover .rect {
              stroke: #475f77; }
            #account-content #recordings-list .recording-entry .top-right-buttons .duplicate-button:hover .dupe {
              fill: #475f77; }
        #account-content #recordings-list .recording-entry .top-right-buttons .delete-button {
          display: inline-block; }
          #account-content #recordings-list .recording-entry .top-right-buttons .delete-button .fill {
            fill: #E8E7E4;
            -webkit-transition: fill 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
            -moz-transition: fill 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
          #account-content #recordings-list .recording-entry .top-right-buttons .delete-button .line {
            stroke: #E8E7E4;
            -webkit-transition: stroke 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
            -moz-transition: stroke 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
          #account-content #recordings-list .recording-entry .top-right-buttons .delete-button:hover {
            cursor: pointer; }
            #account-content #recordings-list .recording-entry .top-right-buttons .delete-button:hover .fill {
              fill: #d74b4b; }
            #account-content #recordings-list .recording-entry .top-right-buttons .delete-button:hover .line {
              stroke: #d74b4b; }
      #account-content #recordings-list .recording-entry .recording-info {
        position: absolute;
        bottom: 10px;
        left: 10px;
        font-style: italic; }
        #account-content #recordings-list .recording-entry .recording-info p {
          color: #E8E7E4; }
      #account-content #recordings-list .recording-entry .participants {
        position: absolute;
        bottom: 5px;
        right: 12px;
        height: 32px;
        padding: 3px 0 0 24px;
        background-image: url("/static/images/icon-participants.png");
        background-position: left center;
        background-repeat: no-repeat;
        background-size: 24px; }
        #account-content #recordings-list .recording-entry .participants h2 {
          font-size: 20px;
          color: #A6A49E; }
      #account-content #recordings-list .recording-entry .delete-confirmation {
        position: absolute;
        text-align: center;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 60px 10px 10px 10px;
        border-radius: 3px;
        background-color: #d74b4b;
        color: white;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -webkit-transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
        -moz-transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
        #account-content #recordings-list .recording-entry .delete-confirmation h2 {
          color: white; }
        #account-content #recordings-list .recording-entry .delete-confirmation .standard-button {
          display: inline-block;
          width: 100px;
          height: 32px;
          margin: 8px;
          padding-top: 4px;
          background-color: #d74b4b;
          border: 1px solid white; }
          #account-content #recordings-list .recording-entry .delete-confirmation .standard-button.confirmation-delete {
            color: #d74b4b;
            background-color: white; }
        #account-content #recordings-list .recording-entry .delete-confirmation.active {
          -webkit-transform: translateY(0);
          -moz-transform: translateY(0); }
      #account-content #recordings-list .recording-entry a h2 {
        color: #354b5e;
        -webkit-transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
        -moz-transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
      #account-content #recordings-list .recording-entry a:hover h2 {
        color: #87c3ff; }
      #account-content #recordings-list .recording-entry p {
        color: #A6A49E; }
      #account-content #recordings-list .recording-entry .participants {
        position: absolute;
        bottom: 5px;
        right: 12px;
        height: 32px;
        padding: 3px 0 0 24px;
        background-image: url("/static/images/icon-participants.png");
        background-position: left center;
        background-repeat: no-repeat;
        background-size: 24px; }
        #account-content #recordings-list .recording-entry .participants h2 {
          font-size: 20px;
          color: #A6A49E; }
