@import url('https://fonts.googleapis.com/css?family=IBM+Plex+Serif');

/*! HTML5 Boilerplate v6.0.1 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #a9a9a9;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #000000;
    background-color: #E6E6E6;
    font-family: 'IBM Plex Serif', sans-serif;
    margin: 0;
    box-sizing: border-box;
    overflow: hidden;
}

a, a:active, a:hover, a:visited {
    border-bottom: 1px solid lightgray;
    text-decoration: none;
    color: black;
}

.fa, .fab, .fad, .fal, .far, .fas {
    line-height: inherit !important;
}

.login input, .signup input {
    height: 52px;
    font-family: inherit;
    font-size: inherit;
    padding: 10px 15px;
    border: 1px solid lightgray;
    width: 100%;
    box-sizing: border-box;
}

.container {
    display: flex;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 100vw;
    height: 100vh;
}

.alert-container, .launch-container, .signup-container, .launch-container, .modal-container, .mobile-alert-container {
    grid-area: 1 / 1 / 3 / 2;
    background-color: #ffffffad;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.mobile-alert-container {
    z-index: 9999;
    height: 100%;
    width: 100%;
    padding: 20px;
    position: absolute;
    box-sizing: border-box;
    background-color: #000000eb;
}

.alert, .login, .signup, .launch, .guest-launch, .modal, .public-alert {
    display: grid;
    background-color: white;
    border: 1px solid darkgray;
    border-radius: 4px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-column-gap: 0px;
    grid-row-gap: 10px;
    padding: 10px 30px;
    text-align: center;
    width: 800px;
}

.alert {
    width: 420px;
    padding: 30px;
}

.public-alert {
    width: 340px;
}

.modal {
    padding: 0px;
    grid-row-gap: 0px;
}

.modal .modal-body {
    flex-direction: column;
    flex-flow: wrap;
    display: flex;
    overflow-y: scroll;
    background-color: #efefef;
    padding: 30px 16px;
    max-height: 600px;
    text-align: left;
}

.modal .modal-header {
    padding: 15px;
    border-bottom: 1px solid lightgray;
}

.modal .panel-actions {
    padding: 15px;
    border-top: 1px solid lightgray;
}

.modal-body .modal-row-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: dotted 1px lightgray;
}

.modal-body :last-child {
    border-bottom: 0px;
}

.modal-row-item input {
    width: 150px;
    height: 40px;
    border: 1px solid lightgray;
    padding: 6px 12px;
    font-size: 12px;
    font-family: inherit;
    box-sizing: border-box;
}

.modal-row-item select, .modal-row-item .range-slider {
    width: 140px;
}

.modal-body hr {
    margin-top: 0px;
}

.modal-body .modal-row-item select {
    background-color: white;
    border: 1px solid lightgray;
    font-size: 14px;
}

.modal-row-item .headline {
    font-weight: bold;
    margin-bottom: 4px;
}

.modal-row-item .description {
    font-size: 12px;
}

.modal-body .button {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.modal-row-item .button {
    width: 150px;
    font-size: 12px;
}

.alert .alert-body {
    grid-area: 1 / 1 / 2 / 2;
    margin-bottom: 20px;
}

.alert .alert-buttons {
    grid-area: 2 / 1 / 3 / 2;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.user-compositions {
    display: flex;
    flex-direction: column;
    max-height: 240px;
    overflow-y: scroll;
    border-top: 1px solid darkgrey;
    border-bottom: 1px solid darkgrey;
    padding: 20px 30px;
    min-height: 200px;
    margin: 0 -30px;
    background-color: #efefef;
}

.launch-container .user-info {
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    font-size: 12px;
}

.launch-container .user-info > * {
    margin-left: 10px;
}

.user-compositions::-webkit-scrollbar, #visualSearchResults::-webkit-scrollbar, .modal-body::-webkit-scrollbar {
  display: none;
}

.user-compositions .user-composition {
    border: 1px solid lightgrey;
    padding: 10px 15px;
    box-sizing: border-box;
    margin-bottom: 10px;
    grid-auto-flow: column;
    background-color: white;
    border-radius: 2px;
    transition: all 0.4s;
}

.user-compositions .user-composition:hover {
    border-color: darkgray;
}

.user-composition .composition-data {
    max-width: 85%;
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    justify-self: flex-start;
    display: flex;
    align-items: center;
}

.user-composition img.circle {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.user-composition .button {
    margin-left: 10px;
}

.display {
    grid-area: 1 / 1 / 2 / 2;
    background-color: #9a9a9a;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    z-index: -2;
}

#canvasFullscreen {
    grid-area: 1 / 1 / 2 / 2;
    height: 100vh;
    width: 100vw;
}

#static {
    grid-area: 1 / 1 / 2 / 2;
    z-index: -2;
}

.display #overlay {
    display: grid;
    grid-area: 1 / 1 / 2 / 2;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    z-index: 9;
}

.display #fullscreen {
    display: grid;
    grid-area: 1 / 1 / 2 / 2;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

#fullscreen video {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.display .grid {
    display: grid;
    grid-area: 1 / 1 / 2 / 2;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    z-index: 0;
}

#gridscreenLeft, #canvasSplitLeft {
    grid-area: 1 / 1 / 2 / 2;
    height: 100%;
    width: 100%;
}

#gridscreenRight, #canvasSplitRight {
    grid-area: 1 / 2 / 2 / 3;
    height: 100%;
    width: 100%;
}

#gridscreenLeft, #gridscreenRight {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

#gridscreenLeft video, #gridscreenRight video {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.controls {
    grid-area: 2 / 1 / 3 / 2;
    background-color: #E6E6E6;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 90px auto;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.controls .composition-info {
    display: flex;
    flex-direction: row;
    padding: 10px;
    align-items: center;
    position: absolute;
    top: 370px;
    left: 10px;
    width: 380px;
    opacity: 0.5;
    transition: all 0.3s;
}

.controls .composition-info:hover {
    opacity: 1;
}

.back-button {
    height: 42px;
    display: flex;
    align-items: center;
    border-right: none !important;
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
    padding: 6px 16px !important;
}

.music-search {
    display: flex;
}

.music-search input {
    font-family: inherit;
    font-size: inherit;
    padding: 10px 15px;
    border: 1px solid lightgray;
    width: 100%;
    box-sizing: border-box;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.music-search .music-search-button {
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-left: none;
}

.controls .composition-info .track {
    display: flex;
    align-items: center;
    background-color: white;
    border: 1px solid lightgray;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    padding: 10px;
}

.controls .composition-info .track-info {
    display: flex;
    font-size: 12px;
    align-items: center;
    width: 100%;
}

.controls .composition-info .track-info .track-name {
    display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; 
    min-width: 150px;
    overflow: hidden;
}

.player-icon {
    cursor: pointer;
}

.track-info .track-art {
    margin-right: 10px;
}

input:focus {
    outline: none;
}

img.circle {
    border-radius: 100%;
    border: 1px solid darkgray;
}

.controls .visuals {
    grid-area: 2 / 1 / 2 / 2;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.visuals .no-music {
    margin-bottom: 40px;
}

.suggested-tracks {
    padding: 0 20px;
}

.suggested-track {
    background-color: white;
    padding: 10px 10px 10px 16px;
    border: 1px solid lightgray;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.suggested-track * {
    display: flex;
}

.suggested-track .preview-button {
    margin-right: 10px;
    cursor: pointer;
}

.visuals .timecode {
    display: flex;
    justify-content: space-between;
    width: 100vw;
    padding: 0px 20px 20px;
    box-sizing: border-box;
    font-size: 12px;
    align-items: center;
}

.visuals .timeline {
    height: 120px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 120px;
    background-image: linear-gradient(to right, #808080 2%, #ffffff00 0%);
    background-position: bottom;
    background-size: 120px 6px;
    background-repeat: repeat-x;
    z-index: 99;
}

.visuals .visual-search {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    position: absolute;
    bottom: 0px;
}

.visuals .visual-search.active {
    width: 100%;
    padding: 0px;
    box-sizing: border-box;
    position: absolute;
    top: 0px;
    z-index: 9999;
}

.visual-search .visual-search-container {
    width: 100%;
}

.visual-search-container .input-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.visual-search-container.active {
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 999;
    background-color: white;
    margin: 0 auto;
    border: none;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding-bottom: 60px;
}

.visual-search input {
    font-family: inherit;
    font-size: inherit;
    border: none;
    padding: 10px 15px;
    width: 100%;
    box-sizing: border-box;
    grid-column-start: 1;
    grid-row-start: 1;
}

.visual-search .giphy-logo {
    grid-column-start: 1;
    grid-row-start: 1;
    width: 98px;
    align-self: center;
    justify-self: flex-end;
    background-color: black;
    padding: 13px;
    z-index: 99;
}

.soundcloud-logo {
    align-self: flex-start;
    margin-left: 15px;
}

.visual-search input.active {
    border-bottom: 1px solid lightgray;
    margin-bottom: 20px;
    padding: 20px 20px;
    position: fixed;
    z-index: 99;
}

.visual-search .results {
    flex-direction: column;
    flex-flow: wrap;
    display: flex;
    overflow: hidden;
    background-color: #efefef;
}

.visual-search .results.active {
    min-height: 518.5px;
    padding: 10px;
}

.visual-search .results .thumb, .modal .thumb {
    display: flex;
    padding: 4px;
    box-sizing: border-box;
    border-radius: 4px;
    height: 180px;
    position: relative;
    width: 25%;
}

.results .thumb img, .modal .thumb video {
    object-fit: cover;
    min-width: 100%;
    border-radius: 4px;
    border: 1px solid lightgray;
}

.visual-search .panel-actions {
    position: fixed;
    bottom: 0;
    background-color: white;
    border-top: 1px solid lightgray;
    z-index: 9999;
    width: 100%;
    padding: 10px 10px;
    display: grid;
    box-sizing: border-box;
    align-items: center;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
}

.modal .panel-actions, .user-composition {
    display: grid;
    align-items: center;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
}

.panel-actions .button {
    grid-area: 1;
    margin-left: 6px;
    justify-self: end;
    font-size: 12px;
}

.panel-actions .button.cancel {
    margin-left: 0px !important;
}

.panel-actions .screen-select {
    grid-area: 1;
    display: flex;
}

.toggle {
    background-color: transparent !important;
    opacity: 1 !important;
    border: none !important;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 4px;
}

.panel-actions .toggle {
    justify-self: center !important;
    grid-area: 1;
}

.toggle:hover {
    background-color: transparent !important;
    border: none !important;
    opacity: 1 !important;
}

.panel-actions .cancel {
    justify-self: start;
}

.thumb .checkmark {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    margin-top: 6px;
    margin-left: 6px;
}

.thumb .checkmark.unselected {
    background-color: transparent;
    border: 2px solid white;
    opacity: 0.5;
}

.thumb .checkmark.selected {
    background-color: green;
    border: 2px solid green;
    opacity: 1;
}

.timeline .scrubber {
    height: 140px;
    width: 2px;
    background-color: gray;
    position: fixed;
    left: 50%;
    z-index: 99;
    border-radius: 4px;
}

.timeline .thumbnails {
    width: 100%;
    height: 100%;
    padding-top: 20px;
    background-position-y: 70px;
    background-size: contain;
}

.timeline-bg {
    width: 100vw;
    background-color: #dcdcdc;
    height: 120px;
    bottom: 120px;
    position: fixed;
    align-self: center;
}

.thumbnails .thumb {
    position: absolute;
    object-fit: cover;
    width: 2px;
    height: 100px;
    display: flex;
    justify-content: center;
    background-color: #3a3a3a;
    border-radius: 4px;
}

.thumbnails .thumb:hover {
    z-index: 9999;
}

.thumb .thumb-menu {
    position: absolute;
    background-color: #3a3a3a;
    margin-top: -484px;
    border-radius: 4px;
    flex-direction: column;
    padding: 10px;
    z-index: 999;
    left: -51.5px;
    border: 2px solid #3a3a3a;
    color: #cecece;
}

.thumb-menu .thumb-menu-item:hover {
    color: white;
}

.thumb-menu .fa-caret-down {
    left: 38px;
    position: absolute;
    bottom: -5px;
    color: #3a3a3a;
    font-size: 40px;
    line-height: 0px !important;
}

.thumb-menu-item {
    width: 70px;
    height: 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 12px;
    padding: 4px;
    cursor: pointer;
}

.thumb-menu-item i {
    font-size: 20px;
}

.thumb-menu-item p {
    margin: 2px 0px;
}

.timeline .thumb img {
    object-fit: cover;
    border-radius: 2px;
    width: 40px;
    height: 36px;
    bottom: 31px;
    position: absolute;
    border: 1px solid #3a3a3a;
    cursor: pointer;
}

.placeholder-static {
    background: url('../images/static.gif');
    background-size: cover;
}

.text-center {
    text-align: center;
}

p.small, span.small {
    font-size: 12px;
}

.hidden {
    display: none !important;
}

.disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
    pointer-events: none;
}

.button {
    cursor: pointer;
    border: 1px solid lightgray;
    padding: 6px 10px;
    background-color: white;
    border-radius: 4px;
    -moz-user-select:none;
    -ms-user-select:none;
    -webkit-user-select:none;
    text-align: center;
}

.button.danger {
    color: #ff0000;
}

.button.danger:hover {
    background-color: #ff0000;
    border-color: #ff0000;
    color: white;
}

.button.small {
    font-size: 12px;
}

.button i, .panel-actions .toggle i {
    margin-right: 6px;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 2px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: green;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.alert-text {
    color: red;
}

.close-modal-button {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 101;
    font-size: 24px;
    color: #717171;
    cursor: pointer;
}

.notification-container {
    position: absolute;
    right: 20px;
    top: 20px;
    background-color: #000000;
    border-radius: 4px;
    padding: 0px 20px;
    color: white;
    font-weight: bold;
    height: 56px;
    display: flex;
    align-items: center;
    font-size: 12px;
    z-index: 999;
}

.range-slider {
  -webkit-appearance: none;
  height: 25px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
  padding: 0px !important;
      height: 25px !important;
    border-radius: 2px !important;
    background-color: white;
}

.range-slider:hover {
  opacity: 1;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: green;
  cursor: pointer;
  border-radius: 2px !important;
}

.range-slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: green;
  cursor: pointer;
  border-radius: 2px !important;
}

.text-button {
    background-color: transparent;
    border: none;
    text-decoration: none;
    font-size: 12px;
    cursor: pointer;
    border-bottom: 1px solid lightgray;
    width: fit-content;
    justify-self: center;
}

.text-danger {
    color: red;
}

.text-green {
    color: green;
}

.button-danger {
    color: red;
}

.button:hover {
    background-color: green;
    border: 1px solid green;
    color: white;
}

.text-white {
    color: white;
}

.hide-toolbar {
    display: none;
}

.move-visual, .show-thumb-menu {
    font-size: 12px;
    position: absolute;
    cursor: pointer;
    background-color: #3a3a3a;
    padding: 3px 6px;
    color: #cecece;
    border: 1px solid #3a3a3a;
    height: 16px;
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.move-visual {
    bottom: 8px;
    border-radius: 0px 0px 2px 2px;
}

.show-thumb-menu {
    top: 8px;
    border-radius: 2px 2px 0px 0px;
}

.delete-visual-confirmation {
    width: 100px;
    height: 100px;
    background-color: red;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    position: absolute;
    z-index: 9;
    flex-direction: column;
    cursor: pointer;
}

.delete-visual-confirmation .fa-trash {
    font-size: 28px;
}

.delete-visual-confirmation .fa-times {
    top: 1px;
    right: 6px;
    position: absolute;
}

.menu-divider {
    margin: 0;
    margin-bottom: 10px;
}

.public-controls {
    position: absolute;
    bottom: 0px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    width: 100vw;
    padding: 30px;
    box-sizing: border-box;
    align-items: center;
    z-index: 99;
}

.public-controls .composition-info {
    justify-self: flex-start;
    display: flex;
    grid-area: 1/1/2/2;
    background-color: white;
    border-radius: 2px;
    font-size: 12px;
    align-items: center;
    padding: 0px 20px 0px 0px;
    overflow: hidden;
    max-width: 250px;
}

.composition-info .composition-settings-button {
    margin-left: 20px;
    margin-right: 10px;
    cursor: pointer;
    color: #3a3a3a;
}

.composition-info .composition-settings-button:hover {
    color: black;
}

.public-controls .track-art {
    width: 50px;
    margin-right: 10px;
}

.public-controls .track {
    display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; 
    min-width: 150px;
    overflow: hidden;
}

.public-controls .player {
    justify-self: center;
    display: flex;
    width: 400px;
    justify-content: space-between;
    color: white;
    grid-area: 1/1/2/2;
}

.public-controls .button {
    justify-self: flex-end;
    grid-area: 1/1/2/2;
}

p.empty-state {
    color: #8c8c8c;
    margin-top: 50px;
}

.bg-candy {
    background: radial-gradient(#FFE6E6, #D8D5FF, #D5FBFF, #D5FFDB);
    background-size: 400% 400%;
    animation: Gradient 45s infinite;
    animation-timing-function: cubic-bezier(.56,0,.56,1);
}

.pulse {
    animation: pulse .8s infinite;
    animation-timing-function: cubic-bezier(.56,0,.56,1);
}

.pulse-twice {
    animation: pulse .8s 2;
    animation-timing-function: cubic-bezier(.56,0,.56,1);
}

.opacity-0 {
    opacity: 0;
}

.opacity-1 {
    opacity: 1;
}

.mb-20 {
    margin-bottom: 20px;
}

@keyframes Gradient {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

/* FILTERS */

.black-and-white {
    filter: grayscale(1);
}

.deep-fried {
    filter: saturate(2.5) brightness(3.5) contrast(4.5);
}

.blurry {
    filter: blur(10px);
    transform: scale(1.1);
}

.summer {
    background-color: red;
    background-blend-mode: multiply;
}

.scanlines {
    animation: flicker 1s infinite;
}

.scanlines::after{
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(18, 16, 16, 0.9);
    opacity: 0;
    pointer-events: none;
}
.scanlines::before{
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(rgba(138, 131, 205, 0.71) 50%, rgb(131, 132, 150) 50%), linear-gradient(90deg,rgba(255, 0, 0, 0.94),rgba(0, 255, 0, 0.98),rgba(0, 0, 255, 0.94));
    background-size: 100% 20px, 8px 100%;
    pointer-events: none;
    opacity: 0.1;
    background-blend-mode: screen;
}

.zoomIn {
    animation: zoomIn 3s ease-in 1;
}

@keyframes zoomIn {
    0% {transform: scale(1);}
    100% {transform: scale(1.2);}
}

.zoomOut {
    animation: zoomOut 3s ease-in 1;
}

@keyframes zoomOut {
    0% {transform: scale(1.2);}
    100% {transform: scale(1);}
}

.fadeIn {
    animation: fadeIn 0.3s 1;
}

@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

.fadeOut {
    animation: fadeOut 0.3s 1;
}

@keyframes fadeOut {
    0% {opacity: 1;}
    100% {opacity: 0;}
}

@keyframes flicker {
  0% {
  opacity: 0.27861;
  }
  5% {
  opacity: 0.34769;
  }
  10% {
  opacity: 0.23604;
  }
  15% {
  opacity: 0.90626;
  }
  20% {
  opacity: 0.18128;
  }
  25% {
  opacity: 0.83891;
  }
  30% {
  opacity: 0.65583;
  }
  35% {
  opacity: 0.67807;
  }
  40% {
  opacity: 0.26559;
  }
  45% {
  opacity: 0.84693;
  }
  50% {
  opacity: 0.96019;
  }
  55% {
  opacity: 0.08594;
  }
  60% {
  opacity: 0.20313;
  }
  65% {
  opacity: 0.71988;
  }
  70% {
  opacity: 0.53455;
  }
  75% {
  opacity: 0.37288;
  }
  80% {
  opacity: 0.71428;
  }
  85% {
  opacity: 0.70419;
  }
  90% {
  opacity: 0.7003;
  }
  95% {
  opacity: 0.36108;
  }
  100% {
  opacity: 0.24387;
  }
}
/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 768px) {
    body {
        
    }

    .mobile-alert-container {
        display: none;
    }

    .alert, .login, .signup, .launch, .guest-launch {
        min-width: 500px;
    }

    .public-alert {
        overflow: hidden;
        width: 340px;
    }

    .public-cover {
        margin-left: -30px;
        margin-right: -30px;
        margin-top: -30px;
        width: 400px;
        height: 240px;
        object-fit: cover;
    }

    .hide-toolbar {
        display: inherit;
        position: fixed;
        right: 20px;
        bottom: 30px;
        z-index: 999;
        font-size: 12px;
        opacity: 0.7;
        transition: all 0.3s;
    }

    .hide-toolbar:hover {
        opacity: 1;
    }

    .suggested-tracks p {
        color: white;
        font-weight: bold;
    }

    .wrapper {
        grid-template-rows: 1fr;
        margin: 0 auto;
    }

    .display {
        grid-area: 1 / 1 / 1 / 1;
    }

    .controls {
        grid-area: 1 / 1 / 1 / 1;
        display: unset;
        background-color: transparent;
        align-self: center;
    }

    .controls .music {
        padding: 0px;
    }

    .music .track {
        position: absolute;
        top: 20px;
        right: 20px;
        opacity: 0.6;
        margin: unset;
        max-width: 270px;
        transition: all 0.3s;
    }

    .music .track:hover {
        opacity: 1;
    }

    .visuals .visual-search {
        opacity: 0.7;
        transition: all 0.3s;
    }

    .visuals .visual-search:hover {
        opacity: 1;
    }

    .visuals .visual-search.active {
        display: flex;
        justify-content: center;
        background-color: #ffffffa8;
        opacity: 1;
    }

    .visuals .visual-search-container {
        max-width: 400px;
        margin: 0 auto;
    }

    .visuals .visual-search-container.active {
        min-width: 840px;
        max-height: 662px;
        padding-bottom: 0px;
        border-radius: 4px;
        border: 1px solid #909090;
        overflow: hidden;
        align-self: center;
    }

    .visual-search input.active {
        position: absolute;
        width: 838px;
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
    }

    .visual-search .results.active {
        overflow-y: scroll;
    }

    .visual-search .panel-actions {
        position: static;
        padding: 16px;
    }

    .visual-search .results .thumb {
        height: 180px;
        position: relative;
        width: 25%;
    }

    .visuals .timeline {
        background-color: #ffffff80;
    }

    .visuals .timecode {
        width: 400px;
        bottom: 240px;
        position: absolute;
        align-self: center;
    }

    .timecode .current-time, .timecode .end-time, .timecode .player-icon {
        color: white;
        font-weight: bold;
    }

    .visuals .timeline-bg {
        opacity: 0.2;
    }

    .suggested-tracks {
        width: 540px;
        margin: 0 auto;
    }

    .music-search {
        width: 100%;
    }

    .timeline-bg {
        background-color: #000;
    }

    .panel-actions .button {
        font-size: 16px;
    }

    .controls .composition-info {
        top: 10px;
    }

}

@media print,
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 1.25dppx),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}
