/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

  Mixins available:
    -   css3-prefix             - arguments: Property, Value
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-horizontal   - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-radial       - arguments: Start Color: #FFFFFF, Start position: 0%, End Color: #000000, End position: 100%
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   background-opacity      - arguments: Color: #000, Opacity: .85
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Right: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
    CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transform-style         - arguments: Style: preserve-3d
    -   transition              - Default arguments: What: all, Length: 1s, Easing: ease-in-out
    -                            - Examples: @include transition (all 2s ease-in-out);
    -                                        @include transition (opacity 1s ease-in 2s, width 2s ease-out);
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0
    -   keyframes               - arguments: Animation name
                                - content:   Animation css
    -   animation               - arguments: name duration timing-function delay iteration-count direction fill-mode play-state
                                             (http://www.w3schools.com/cssref/css3_pr_animation.asp)

------------------------------------------------------------- */
/* ADDS A BROWSER PREFIX TO THE PROPERTY */
/* BACKGROUND GRADIENT */
/* BACKGROUND HORIZONTAL */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BACKGROUND COLOR OPACITY */
/* BORDER RADIUS */
/* BOX */
/* BOX RGBA */
/* BOX SHADOW 
@mixin box-shadow($x: 2px, $y: 2px, $blur: 5px, $color: rgba(0,0,0,.4), $inset: "") {
  @if ($inset != "") {
    @include css3-prefix('box-shadow', $inset $x $y $blur $color);
  } @else {
    @include css3-prefix('box-shadow', $x $y $blur $color);
  }
}
*/
/* BOX SIZING */
/* COLUMNS */
/* DOUBLE BORDERS */
/* FLEX */
/* FLIP */
/* FONT FACE */
/* OPACITY */
/* OUTLINE RADIUS */
/* RESIZE */
/* ROTATE*/
/* TEXT SHADOW */
/* TRANSFORM  */
/* TRANSFORM STYLE */
/* TRANSITION */
/* TRIPLE BORDERS */
/* KEYFRAMES */
/* ANIMATION */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.1); }

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  border-radius: 10px; }

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.5);
  background: #ebebeb; }

* {
  -webkit-box-sizing: border-box;
  -khtml-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  outline: none; }
  *:before {
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  *:after {
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  *::placeholder {
    color: #ebebeb; }

a {
  color: white;
  text-decoration: none; }

input,
textarea,
button {
  outline: none;
  border: none; }

video,
audio {
  position: relative;
  display: block; }

html,
body,
.main_layout,
.admin_layout,
#app {
  position: relative;
  min-height: 100vh; }

body {
  background: black;
  overflow-x: hidden; }

footer {
  padding: 100px 20px; }

h1,
h2,
h3,
h4 {
  font-family: "Orbitron", sans-serif;
  color: white;
  letter-spacing: 5px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); }

pre {
  white-space: pre-line;
  /* css-3 */
  white-space: -moz-pre-line;
  /* Mozilla, since 1999 */
  white-space: -pre-line;
  /* Opera 4-6 */
  white-space: -o-pre-line;
  /* Opera 7 */
  word-wrap: break-word;
  position: relative;
  width: 100%; }

a {
  text-decoration: none !important;
  letter-spacing: 2px; }

textarea {
  resize: none; }

.main_layout main {
  position: relative;
  display: block;
  justify-content: center;
  align-items: center; }

main {
  position: relative;
  display: block;
  margin: 0 auto;
  min-height: 100vh;
  width: 100%;
  height: auto; }

.private_layout main {
  position: relative;
  display: block;
  margin: 0 auto;
  min-height: 100vh;
  width: 100%;
  max-width: 1200px;
  padding: 90px 310px 10px 90px; }

.grid_center_container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(361px, 3fr));
  justify-items: center;
  grid-gap: 20px 30px; }

.limited_center {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto; }

.wrap_container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%; }

.sys_msg {
  display: block;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999999; }
  .sys_msg .msg {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 25px 15px 25px 60px;
    margin-top: 5px;
    background: rgba(0, 0, 0, 0.7);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(3px);
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 0px 5px 5px rgba(255, 255, 255, 0.5);
    -moz-box-shadow: 0px 0px 5px 5px rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 5px 5px rgba(255, 255, 255, 0.5); }
    .sys_msg .msg:before {
      position: absolute;
      font-family: FontAwesome;
      left: 20px;
      font-size: 2.3em; }
  .sys_msg .success {
    -webkit-box-shadow: 0px 0px 5px 5px rgba(26, 188, 156, 0.5);
    -moz-box-shadow: 0px 0px 5px 5px rgba(26, 188, 156, 0.5);
    box-shadow: 0px 0px 5px 5px rgba(26, 188, 156, 0.5); }
    .sys_msg .success:before {
      color: #1abc9c;
      content: "\f058";
      font-weight: bold; }
  .sys_msg .error {
    -webkit-box-shadow: 0px 0px 5px 5px rgba(231, 76, 60, 0.5);
    -moz-box-shadow: 0px 0px 5px 5px rgba(231, 76, 60, 0.5);
    box-shadow: 0px 0px 5px 5px rgba(231, 76, 60, 0.5); }
    .sys_msg .error:before {
      color: #e74c3c;
      content: "\f057";
      font-weight: bold; }
  .sys_msg .warning {
    -webkit-box-shadow: 0px 0px 5px 5px rgba(247, 148, 30, 0.5);
    -moz-box-shadow: 0px 0px 5px 5px rgba(247, 148, 30, 0.5);
    box-shadow: 0px 0px 5px 5px rgba(247, 148, 30, 0.5); }
    .sys_msg .warning:before {
      color: #f7941e;
      content: "\f071";
      font-weight: bold; }
  .sys_msg .spinning {
    -webkit-box-shadow: 0px 0px 5px 5px rgba(108, 150, 213, 0.5);
    -moz-box-shadow: 0px 0px 5px 5px rgba(108, 150, 213, 0.5);
    box-shadow: 0px 0px 5px 5px rgba(108, 150, 213, 0.5); }
    .sys_msg .spinning:before {
      color: #6c96d5;
      content: "\f110";
      font-weight: bold;
      animation: fa-spin 2s infinite linear; }

.notfound {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  text-align: center; }
  .notfound .img {
    position: relative;
    font-size: 250px;
    color: #ebebeb;
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.5)); }
  .notfound .title {
    font-size: 100px;
    font-weight: bold;
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.5)); }
  .notfound .content {
    color: rgba(255, 255, 255, 0.5);
    font-size: 60px;
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.5)); }

.mask {
  background-clip: svg;
  mask-image: url("/img/grunge.png");
  -webkit-mask-image: url("/img/grunge.png");
  mask-size: 50%;
  -webkit-mask-size: 50%;
  animation-name: anime_bg;
  animation-duration: 2s;
  animation-timing-function: steps(4, end);
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  animation-direction: alternate; }

@keyframes anime_bg {
  0% {
    mask-size: 30%;
    -webkit-mask-size: 30%; }
  50% {
    mask-size: 80% 20%;
    -webkit-mask-size: 80%; }
  100% {
    mask-size: 150% 40%;
    -webkit-mask-size: 150%; } }

.grid_flex_wrap {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%; }

@keyframes blink {
  0%,
  22%,
  36%,
  75% {
    color: white;
    text-shadow: 0 0 0.6rem white, 0 0 1.5rem white, -0.2rem 0.1rem 1rem white, 0.2rem 0.1rem 1rem white, 0 -0.5rem 2rem #ebebeb, 0 0.5rem 3rem #ebebeb; }
  28%,
  33% {
    color: white;
    text-shadow: none; }
  82%,
  97% {
    color: #ebebeb;
    text-shadow: none; } }

.flicker {
  animation: shine 2s forwards, blink 3s 2s infinite; }

.fast-flicker {
  animation: shine 2s forwards, blink 10s 1s infinite; }

@keyframes shine {
  0% {
    color: white;
    text-shadow: none; }
  100% {
    color: white;
    text-shadow: 0 0 0.6rem white, 0 0 1.5rem white, -0.2rem 0.1rem 1rem white, 0.2rem 0.1rem 1rem white, 0 -0.5rem 2rem #ebebeb, 0 0.5rem 3rem #ebebeb; } }

@keyframes flicker {
  from {
    opacity: 1; }
  4% {
    opacity: 0.9; }
  6% {
    opacity: 0.85; }
  8% {
    opacity: 0.95; }
  10% {
    opacity: 0.9; }
  11% {
    opacity: 0.922; }
  12% {
    opacity: 0.9; }
  14% {
    opacity: 0.95; }
  16% {
    opacity: 0.98; }
  17% {
    opacity: 0.9; }
  19% {
    opacity: 0.93; }
  20% {
    opacity: 0.99; }
  24% {
    opacity: 1; }
  26% {
    opacity: 0.94; }
  28% {
    opacity: 0.98; }
  37% {
    opacity: 0.93; }
  38% {
    opacity: 0.5; }
  39% {
    opacity: 0.96; }
  42% {
    opacity: 1; }
  44% {
    opacity: 0.97; }
  46% {
    opacity: 0.94; }
  56% {
    opacity: 0.9; }
  58% {
    opacity: 0.9; }
  60% {
    opacity: 0.99; }
  68% {
    opacity: 1; }
  70% {
    opacity: 0.9; }
  72% {
    opacity: 0.95; }
  93% {
    opacity: 0.93; }
  95% {
    opacity: 0.95; }
  97% {
    opacity: 0.93; }
  to {
    opacity: 1; } }

header {
  position: fixed;
  display: flex;
  height: 80px;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  top: 0;
  left: 0;
  overflow: hidden;
  -webkit-transition: 0.3s;
  -khtml-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 1000000;
  font-family: "Roboto", sans-serif;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.3);
  padding: 0 20px; }
  header .logo {
    position: relative;
    display: block;
    height: 100%;
    padding: 15px 0px; }
    header .logo svg {
      position: relative;
      display: block;
      height: 100%;
      fill: white;
      width: auto; }
  header .header_logo {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    height: 80%;
    font-size: 2em; }
  header .header_nav {
    position: relative;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
    padding: 0 10px;
    font-family: "Roboto", sans-serif; }
  header .menu_item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    color: white;
    margin: 0 10px;
    font-size: 18px;
    text-transform: uppercase;
    -webkit-transition: 0.3s;
    -khtml-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    font-family: "Orbitron", sans-serif;
    letter-spacing: 5px;
    cursor: pointer; }
    header .menu_item:hover {
      text-shadow: 0px 0px 1px #ebebeb, 0px 0px 2px #6c96d5, -1px 0px 4px #ebebeb, 1px 0px 6px #6c96d5, -3px 0px 8px #ebebeb, 5px 0px 12px #6c96d5, -3px 0px 14px #ebebeb, 3px 0px 18px #6c96d5; }
  header .active {
    text-shadow: 0px 0px 1px #ebebeb, 0px 0px 2px #ebebeb, -1px 0px 4px #ebebeb, 1px 0px 6px #ebebeb, -3px 0px 8px #ebebeb, 5px 0px 12px #ebebeb, -3px 0px 14px #ebebeb, 3px 0px 18px #ebebeb; }
    header .active:hover {
      text-shadow: 0px 0px 1px #ebebeb, 0px 0px 2px #ebebeb, -1px 0px 4px #ebebeb, 1px 0px 6px #ebebeb, -3px 0px 8px #ebebeb, 5px 0px 12px #ebebeb, -3px 0px 14px #ebebeb, 3px 0px 18px #ebebeb; }

@media only screen and (max-width: 800px) {
  header {
    height: 60px; }
    header .logo {
      padding: 6px 0; }
    header .header_logo {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center; }
    header .header_nav {
      display: none; } }

.mobile_nav_tabs {
  display: none;
  position: fixed;
  z-index: 30000;
  width: 100%;
  height: 80px;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100vw;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0, -3px, 10px, rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0, -3px, 10px, rgba(0, 0, 0, 0.5);
  box-shadow: 0, -3px, 10px, rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  overflow: hidden;
  z-index: 1000000; }
  .mobile_nav_tabs .item {
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    text-align: center;
    overflow: hidden;
    -webkit-transition: 0.3s;
    -khtml-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
    .mobile_nav_tabs .item:before {
      font-size: 20px;
      font-family: FontAwesome;
      margin-bottom: 3px;
      -webkit-transition: 0.3s;
      -khtml-transition: 0.3s;
      -moz-transition: 0.3s;
      -ms-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
  .mobile_nav_tabs .active {
    color: white;
    background: rgba(235, 235, 235, 0.3);
    text-shadow: 0px 0px 1px #ebebeb, 0px 0px 2px #ebebeb, -1px 0px 4px #ebebeb, 1px 0px 6px #ebebeb, -3px 0px 8px #ebebeb, 5px 0px 12px #ebebeb; }
    .mobile_nav_tabs .active:hover {
      text-shadow: 0px 0px 1px #ebebeb, 0px 0px 2px #ebebeb, -1px 0px 4px #ebebeb, 1px 0px 6px #ebebeb, -3px 0px 8px #ebebeb, 5px 0px 12px #ebebeb; }
    .mobile_nav_tabs .active:before {
      font-size: 25px; }
    .mobile_nav_tabs .active .text {
      display: none; }
  .mobile_nav_tabs .big_item {
    width: 100%;
    flex: 100%; }
    .mobile_nav_tabs .big_item:before {
      font-size: 30px; }
  .mobile_nav_tabs .separator {
    position: relative;
    display: block;
    width: 1px;
    height: 100%;
    flex: 0 0 1px;
    background: rgba(255, 255, 255, 0.1); }

@media only screen and (max-width: 850px) {
  .mobile_nav_tabs {
    display: flex; } }

.social {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: space-between;
  z-index: 100000; }
  .social .item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    -webkit-border-radius: 100px;
    -khtml-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    border-radius: 100px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid white;
    font-size: 22px;
    -webkit-transition: 0.3s;
    -khtml-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
    .social .item * {
      -webkit-transition: 0.5s;
      -khtml-transition: 0.5s;
      -moz-transition: 0.5s;
      -ms-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
    .social .item svg {
      position: relative;
      display: block;
      fill: white;
      width: 40%;
      height: 40%; }
    .social .item:hover {
      color: #ebebeb;
      -webkit-box-shadow: 0 0 2px rgba(235, 235, 235, 0.7), 0 0 3px rgba(235, 235, 235, 0.7), 0 0 6px rgba(235, 235, 235, 0.7), 0 0 10px rgba(235, 235, 235, 0.7), 0 0 14px rgba(235, 235, 235, 0.7), 0 0 18px rgba(235, 235, 235, 0.7), 0 0 22px rgba(235, 235, 235, 0.7);
      -moz-box-shadow: 0 0 2px rgba(235, 235, 235, 0.7), 0 0 3px rgba(235, 235, 235, 0.7), 0 0 6px rgba(235, 235, 235, 0.7), 0 0 10px rgba(235, 235, 235, 0.7), 0 0 14px rgba(235, 235, 235, 0.7), 0 0 18px rgba(235, 235, 235, 0.7), 0 0 22px rgba(235, 235, 235, 0.7);
      box-shadow: 0 0 2px rgba(235, 235, 235, 0.7), 0 0 3px rgba(235, 235, 235, 0.7), 0 0 6px rgba(235, 235, 235, 0.7), 0 0 10px rgba(235, 235, 235, 0.7), 0 0 14px rgba(235, 235, 235, 0.7), 0 0 18px rgba(235, 235, 235, 0.7), 0 0 22px rgba(235, 235, 235, 0.7); }
      .social .item:hover:hover svg {
        fill: #ebebeb; }

.social_fix {
  position: fixed;
  display: flex;
  flex-flow: column;
  top: 0;
  left: 0;
  bottom: 0;
  justify-content: center;
  align-items: center;
  width: auto; }
  .social_fix * {
    margin: 10px; }

.iframe_container {
  position: relative;
  display: block;
  width: 100%;
  height: 100%; }

@media only screen and (max-width: 800px) {
  .social {
    position: fixed;
    top: 0;
    flex-flow: row;
    justify-content: center;
    padding-top: 80px;
    width: 100%;
    height: 130px;
    align-items: center; }
    .social .item {
      width: 35px;
      height: 35px;
      font-size: 14px;
      margin: 3px; }
  .home_main .social {
    display: none; } }

.page_container {
  position: relative;
  display: block;
  width: 100%;
  min-height: 100vh;
  padding-top: 80px; }
  .page_container .page_title {
    width: 100%;
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    padding: 30px 20px;
    font-size: 50px; }
    .page_container .page_title * {
      font-family: "Orbitron", sans-serif;
      letter-spacing: 10px;
      font-weight: bold; }

.page_bg {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%; }
  .page_bg .bg {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    object-fit: cover; }
  .page_bg video {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .page_bg:after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1; }

.tour_container {
  position: relative;
  display: block;
  width: 100%;
  padding: 10px; }

.bit-widget-container {
  position: relative;
  display: block;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  padding: 10px;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px; }

@media only screen and (max-width: 800px) {
  .page_container {
    padding-top: 140px; }
    .page_container .page_title {
      font-size: 30px;
      padding: 15px 20px; } }

.form_page {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding-top: 80px; }
  .form_page .page_title {
    width: 100%;
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    padding: 30px 20px;
    font-size: 50px; }
    .form_page .page_title * {
      font-family: "Orbitron", sans-serif;
      letter-spacing: 10px;
      font-weight: bold; }
  .form_page .bg {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%; }
    .form_page .bg video,
    .form_page .bg img {
      position: relative;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .form_page .bg:after {
      content: "";
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.3);
      z-index: 1; }
  .form_page .float_container {
    position: relative;
    display: block;
    width: 500px;
    max-width: 80%;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 20px; }

.form {
  position: relative;
  width: 100%; }
  .form .line {
    position: relative;
    width: 100%; }
  .form .double_fields {
    position: relative;
    display: flex;
    width: 100%;
    gap: 10px;
    justify-content: space-between; }
  .form label {
    width: 100%;
    position: relative;
    display: block; }
  .form .input_line {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: white;
    background: rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    margin-right: 10px;
    border: 1px solid white;
    margin: 10px 0 20px 0; }
    .form .input_line:focus-within {
      -webkit-box-shadow: 0 0 2px rgba(235, 235, 235, 0.7), 0 0 3px rgba(235, 235, 235, 0.7), 0 0 6px rgba(235, 235, 235, 0.7), 0 0 10px rgba(235, 235, 235, 0.7), 0 0 14px rgba(235, 235, 235, 0.7), 0 0 18px rgba(235, 235, 235, 0.7), 0 0 22px rgba(235, 235, 235, 0.7);
      -moz-box-shadow: 0 0 2px rgba(235, 235, 235, 0.7), 0 0 3px rgba(235, 235, 235, 0.7), 0 0 6px rgba(235, 235, 235, 0.7), 0 0 10px rgba(235, 235, 235, 0.7), 0 0 14px rgba(235, 235, 235, 0.7), 0 0 18px rgba(235, 235, 235, 0.7), 0 0 22px rgba(235, 235, 235, 0.7);
      box-shadow: 0 0 2px rgba(235, 235, 235, 0.7), 0 0 3px rgba(235, 235, 235, 0.7), 0 0 6px rgba(235, 235, 235, 0.7), 0 0 10px rgba(235, 235, 235, 0.7), 0 0 14px rgba(235, 235, 235, 0.7), 0 0 18px rgba(235, 235, 235, 0.7), 0 0 22px rgba(235, 235, 235, 0.7); }
    .form .input_line input, .form .input_line textarea {
      position: relative;
      width: 100%;
      height: 100%;
      font-size: 18px;
      text-align: left;
      background: none;
      outline: none;
      border: none;
      color: white;
      padding: 7px 10px; }

.file_upload {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 100px;
  max-width: 100%;
  height: 100px;
  background: transparent url(../images/placeholder.jpg) center center no-repeat;
  background-size: cover;
  -webkit-transition: 0.2s;
  -khtml-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  -webkit-box-shadow: 1px, 2px, 8px, rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px, 2px, 8px, rgba(0, 0, 0, 0.3);
  box-shadow: 1px, 2px, 8px, rgba(0, 0, 0, 0.3);
  overflow: hidden;
  cursor: pointer;
  -webkit-border-radius: 8px;
  -khtml-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  margin-bottom: 10px; }
  .file_upload input {
    width: 100%;
    height: 100%;
    opacity: 0; }
  .file_upload img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: auto;
    object-fit: cover; }

.outline_btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  width: 100%;
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid white;
  padding: 10px 0;
  cursor: pointer;
  font-family: "Orbitron", sans-serif; }
  .outline_btn:hover {
    -webkit-box-shadow: 0 0 2px rgba(235, 235, 235, 0.7), 0 0 3px rgba(235, 235, 235, 0.7), 0 0 6px rgba(235, 235, 235, 0.7), 0 0 10px rgba(235, 235, 235, 0.7), 0 0 14px rgba(235, 235, 235, 0.7), 0 0 18px rgba(235, 235, 235, 0.7), 0 0 22px rgba(235, 235, 235, 0.7);
    -moz-box-shadow: 0 0 2px rgba(235, 235, 235, 0.7), 0 0 3px rgba(235, 235, 235, 0.7), 0 0 6px rgba(235, 235, 235, 0.7), 0 0 10px rgba(235, 235, 235, 0.7), 0 0 14px rgba(235, 235, 235, 0.7), 0 0 18px rgba(235, 235, 235, 0.7), 0 0 22px rgba(235, 235, 235, 0.7);
    box-shadow: 0 0 2px rgba(235, 235, 235, 0.7), 0 0 3px rgba(235, 235, 235, 0.7), 0 0 6px rgba(235, 235, 235, 0.7), 0 0 10px rgba(235, 235, 235, 0.7), 0 0 14px rgba(235, 235, 235, 0.7), 0 0 18px rgba(235, 235, 235, 0.7), 0 0 22px rgba(235, 235, 235, 0.7);
    text-shadow: 0px 0px 1px #ebebeb, 0px 0px 2px #ebebeb, -1px 0px 4px #ebebeb, 1px 0px 6px #ebebeb, -3px 0px 8px #ebebeb, 5px 0px 12px #ebebeb, -3px 0px 14px #ebebeb, 3px 0px 18px #ebebeb; }

.new_btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ebebeb;
  padding: 3px 10px;
  color: white;
  -webkit-border-radius: 50px;
  -khtml-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -khtml-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }
  .new_btn:hover {
    color: #ebebeb;
    background: rgba(255, 255, 255, 0.3); }
  .new_btn:before {
    content: "\f055";
    font-family: FontAwesome;
    margin-right: 10px; }

.lyrics_btn {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 10px;
  left: 20px;
  right: 20px;
  padding: 10px 0;
  border: 1px solid white;
  color: white;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  letter-spacing: 2px;
  -webkit-transition: 0.3s;
  -khtml-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 0 0 2px rgba(235, 235, 235, 0.7), 0 0 3px rgba(235, 235, 235, 0.7), 0 0 6px rgba(235, 235, 235, 0.7), 0 0 10px rgba(235, 235, 235, 0.7), 0 0 14px rgba(235, 235, 235, 0.7), 0 0 18px rgba(235, 235, 235, 0.7), 0 0 22px rgba(235, 235, 235, 0.7);
  -moz-box-shadow: 0 0 2px rgba(235, 235, 235, 0.7), 0 0 3px rgba(235, 235, 235, 0.7), 0 0 6px rgba(235, 235, 235, 0.7), 0 0 10px rgba(235, 235, 235, 0.7), 0 0 14px rgba(235, 235, 235, 0.7), 0 0 18px rgba(235, 235, 235, 0.7), 0 0 22px rgba(235, 235, 235, 0.7);
  box-shadow: 0 0 2px rgba(235, 235, 235, 0.7), 0 0 3px rgba(235, 235, 235, 0.7), 0 0 6px rgba(235, 235, 235, 0.7), 0 0 10px rgba(235, 235, 235, 0.7), 0 0 14px rgba(235, 235, 235, 0.7), 0 0 18px rgba(235, 235, 235, 0.7), 0 0 22px rgba(235, 235, 235, 0.7);
  text-shadow: 0px 0px 1px #ebebeb, 0px 0px 2px #ebebeb, -1px 0px 4px #ebebeb, 1px 0px 6px #ebebeb, -3px 0px 8px #ebebeb, 5px 0px 12px #ebebeb, -3px 0px 14px #ebebeb, 3px 0px 18px #ebebeb; }
  .lyrics_btn:hover {
    background: #000;
    letter-spacing: 4px; }

.home_main {
  position: relative;
  display: flex;
  min-height: 100vh;
  width: 100%;
  padding-top: 80px;
  overflow: hidden;
  justify-content: center;
  align-items: flex-end; }
  .home_main .bg {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
    .home_main .bg img {
      position: relative;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 1; }
    .home_main .bg video {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      object-fit: cover; }

.home_main_iframe {
  position: absolute;
  display: block;
  background: url("/images/home/card.png") no-repeat;
  background-position: top;
  background-size: cover;
  top: 100px;
  right: 30px;
  width: 500px;
  height: 455px;
  -webkit-transform: rotate(5deg);
  -khtml-transform: rotate(5deg);
  -moz-transform: rotate(5deg);
  -ms-transform: rotate(5deg);
  -o-transform: rotate(5deg);
  transform: rotate(5deg);
  padding: 50px 30px 185px 50px;
  -webkit-filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.5));
  -moz-filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.5));
  -o-filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.5)); }
  .home_main_iframe iframe {
    height: 460px; }
  .home_main_iframe:after {
    position: absolute;
    top: 0;
    bottom: 0px;
    left: 0;
    right: 0;
    background: url("/images/home/card-overlay.png");
    background-position: center;
    background-size: cover;
    mix-blend-mode: multiply;
    pointer-events: none; }
  .home_main_iframe .video {
    position: relative;
    display: block;
    width: 100%;
    height: 175%; }
    .home_main_iframe .video video {
      position: relative;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover; }

.nlf_container {
  position: relative;
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: flex-end;
  margin-bottom: 40px; }
  .nlf_container .bottom {
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 600px;
    max-width: 85%; }
    .nlf_container .bottom p {
      color: white;
      letter-spacing: 2px;
      text-align: center; }
      .nlf_container .bottom p span {
        font-size: 20px;
        font-family: "Orbitron", sans-serif; }
    .nlf_container .bottom form {
      position: relative;
      display: flex;
      width: 100%; }
      .nlf_container .bottom form .input {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        color: white;
        background: rgba(0, 0, 0, 0.3);
        -webkit-border-radius: 3px;
        -khtml-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        -o-border-radius: 3px;
        border-radius: 3px;
        margin-right: 10px;
        border: 1px solid white; }
        .nlf_container .bottom form .input:focus-within {
          -webkit-box-shadow: 0 0 2px rgba(235, 235, 235, 0.7), 0 0 3px rgba(235, 235, 235, 0.7), 0 0 6px rgba(235, 235, 235, 0.7), 0 0 10px rgba(235, 235, 235, 0.7), 0 0 14px rgba(235, 235, 235, 0.7), 0 0 18px rgba(235, 235, 235, 0.7), 0 0 22px rgba(235, 235, 235, 0.7);
          -moz-box-shadow: 0 0 2px rgba(235, 235, 235, 0.7), 0 0 3px rgba(235, 235, 235, 0.7), 0 0 6px rgba(235, 235, 235, 0.7), 0 0 10px rgba(235, 235, 235, 0.7), 0 0 14px rgba(235, 235, 235, 0.7), 0 0 18px rgba(235, 235, 235, 0.7), 0 0 22px rgba(235, 235, 235, 0.7);
          box-shadow: 0 0 2px rgba(235, 235, 235, 0.7), 0 0 3px rgba(235, 235, 235, 0.7), 0 0 6px rgba(235, 235, 235, 0.7), 0 0 10px rgba(235, 235, 235, 0.7), 0 0 14px rgba(235, 235, 235, 0.7), 0 0 18px rgba(235, 235, 235, 0.7), 0 0 22px rgba(235, 235, 235, 0.7); }
        .nlf_container .bottom form .input input {
          position: relative;
          width: 100%;
          height: 100%;
          font-size: 20px;
          text-align: left;
          background: none;
          outline: none;
          border: none;
          color: white;
          padding: 10px 10px; }
      .nlf_container .bottom form button {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 150px;
        flex: 0 0 100px;
        font-size: 18px;
        text-align: center;
        color: white;
        background: rgba(0, 0, 0, 0.3);
        -webkit-border-radius: 3px;
        -khtml-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        -o-border-radius: 3px;
        border-radius: 3px;
        border: 1px solid white;
        padding: 10px 0;
        cursor: pointer;
        font-family: "Orbitron", sans-serif; }
        .nlf_container .bottom form button:hover {
          -webkit-box-shadow: 0 0 2px rgba(235, 235, 235, 0.7), 0 0 3px rgba(235, 235, 235, 0.7), 0 0 6px rgba(235, 235, 235, 0.7), 0 0 10px rgba(235, 235, 235, 0.7), 0 0 14px rgba(235, 235, 235, 0.7), 0 0 18px rgba(235, 235, 235, 0.7), 0 0 22px rgba(235, 235, 235, 0.7);
          -moz-box-shadow: 0 0 2px rgba(235, 235, 235, 0.7), 0 0 3px rgba(235, 235, 235, 0.7), 0 0 6px rgba(235, 235, 235, 0.7), 0 0 10px rgba(235, 235, 235, 0.7), 0 0 14px rgba(235, 235, 235, 0.7), 0 0 18px rgba(235, 235, 235, 0.7), 0 0 22px rgba(235, 235, 235, 0.7);
          box-shadow: 0 0 2px rgba(235, 235, 235, 0.7), 0 0 3px rgba(235, 235, 235, 0.7), 0 0 6px rgba(235, 235, 235, 0.7), 0 0 10px rgba(235, 235, 235, 0.7), 0 0 14px rgba(235, 235, 235, 0.7), 0 0 18px rgba(235, 235, 235, 0.7), 0 0 22px rgba(235, 235, 235, 0.7);
          text-shadow: 0px 0px 1px #ebebeb, 0px 0px 2px #ebebeb, -1px 0px 4px #ebebeb, 1px 0px 6px #ebebeb, -3px 0px 8px #ebebeb, 5px 0px 12px #ebebeb, -3px 0px 14px #ebebeb, 3px 0px 18px #ebebeb; }

.scroll_down {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  bottom: 40px;
  color: white;
  z-index: 10; }
  .scroll_down .text {
    text-transform: uppercase;
    letter-spacing: 2px; }
  .scroll_down .graph {
    position: relative;
    display: block;
    animation: arrow_down 1s infinite;
    animation-fill-mode: forwards;
    animation-direction: alternate;
    animation-timing-function: ease-in-out; }
    .scroll_down .graph img {
      position: relative;
      display: block;
      width: 40px;
      height: 40px; }

@keyframes arrow_down {
  0% {
    transform: translateY(-6px) scale(1);
    opacity: 1; }
  100% {
    transform: translateY(10px) scale(1);
    opacity: 0.3; } }

@media only screen and (max-width: 850px) {
  .home .bg_page {
    display: none; }
  .home_main {
    align-items: flex-end;
    padding-bottom: 40px; }
  .nlf_container {
    width: 100%;
    margin-bottom: 80px; }
    .nlf_container .bottom p {
      white-space: pre-wrap;
      text-align: center; }
    .nlf_container .bottom form {
      flex-flow: column;
      justify-content: center;
      align-items: center; }
      .nlf_container .bottom form button {
        margin-top: 20px;
        height: 40px;
        flex: 0 0 40px; }
  .home_main_iframe {
    background: none;
    position: absolute;
    top: 0;
    bottom: 70px;
    left: 0;
    right: 0;
    padding: 0;
    width: 100%;
    -webkit-transform: rotate(0deg);
    -khtml-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
    .home_main_iframe:after {
      display: none; }
    .home_main_iframe iframe {
      width: 100%;
      height: 100%; } }

.route-enter {
  opacity: 0.01; }

.route-enter.fade-enter-active {
  opacity: 1;
  transition: opacity 300ms ease-in; }

.route-exit {
  opacity: 1; }

.route-exit.fade-exit-active {
  opacity: 0.01;
  transition: opacity 300ms ease-in; }

.popup_container {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(235, 235, 235, 0.4);
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100000;
  overflow: auto;
  backdrop-filter: blur(8px); }
  .popup_container .close {
    cursor: pointer;
    color: white;
    font-size: 30px; }
    .popup_container .close:before {
      content: "\f057";
      font-family: FontAwesome;
      -webkit-transition: 0.3s;
      -khtml-transition: 0.3s;
      -moz-transition: 0.3s;
      -ms-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
    .popup_container .close:hover {
      color: #ebebeb; }
  .popup_container .popup {
    position: relative;
    display: flex;
    flex-flow: column;
    background: rgba(0, 0, 0, 0.6);
    -webkit-box-shadow: 2px 0 6px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 2px 0 6px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 0 6px rgba(0, 0, 0, 0.2);
    width: 800px;
    max-width: 90%;
    max-height: 80vh; }
    .popup_container .popup .top {
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      height: 60px;
      padding: 5px 10px;
      background: black; }
      .popup_container .popup .top .title {
        color: #ebebeb; }
    .popup_container .popup .body {
      position: relative;
      width: 100%;
      height: 100%;
      padding: 10px;
      overflow: auto; }
      .popup_container .popup .body .line label {
        background: white;
        display: inline-block;
        width: auto;
        padding: 2px 20px;
        margin-left: 5px;
        -webkit-border-radius: 15px 15px 0px 0px;
        -khtml-border-radius: 15px 15px 0px 0px;
        -moz-border-radius: 15px 15px 0px 0px;
        -ms-border-radius: 15px 15px 0px 0px;
        -o-border-radius: 15px 15px 0px 0px;
        border-radius: 15px 15px 0px 0px; }
      .popup_container .popup .body .line .input_line textarea {
        font-size: 16px;
        resize: vertical; }
      .popup_container .popup .body .input_line {
        margin-top: 0px; }
    .popup_container .popup .bottom {
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      height: 60px;
      padding: 5px 10px;
      gap: 10px; }
    .popup_container .popup .music_links {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      justify-content: center; }
      .popup_container .popup .music_links .link_field {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-flow: column;
        background: rgba(255, 255, 255, 0.6);
        width: 15%;
        min-width: 100px;
        padding: 5px;
        border: 4px solid transparent;
        -webkit-border-radius: 5px;
        -khtml-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        border-radius: 5px; }
        .popup_container .popup .music_links .link_field .label {
          position: relative;
          display: flex;
          justify-content: center;
          align-items: center;
          flex-flow: column;
          width: 100%; }
          .popup_container .popup .music_links .link_field .label .icon {
            position: relative;
            display: block;
            width: 40px;
            height: 40px; }
            .popup_container .popup .music_links .link_field .label .icon img {
              position: relative;
              display: block;
              width: 100%;
              height: 100%;
              object-fit: contain; }
          .popup_container .popup .music_links .link_field .label .name {
            text-align: center;
            font-size: 12px; }
          .popup_container .popup .music_links .link_field .label .type {
            padding: 2px 10px;
            background: #ebebeb;
            color: white;
            font-size: 12px;
            margin: 5px 0;
            -webkit-border-radius: 50px;
            -khtml-border-radius: 50px;
            -moz-border-radius: 50px;
            -ms-border-radius: 50px;
            -o-border-radius: 50px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.5);
            -webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
            -moz-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
            box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2); }
        .popup_container .popup .music_links .link_field .field {
          position: relative;
          display: block;
          width: 100%;
          padding: 2px 5px;
          margin-top: 5px;
          border: 1px solid grey;
          -webkit-border-radius: 5px;
          -khtml-border-radius: 5px;
          -moz-border-radius: 5px;
          -ms-border-radius: 5px;
          -o-border-radius: 5px;
          border-radius: 5px; }
          .popup_container .popup .music_links .link_field .field:focus {
            border-color: #ebebeb; }
      .popup_container .popup .music_links .link_field_active {
        border: 4px solid #1abc9c;
        background: white; }

.popup_admin_video .body .embed_preview {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 30%;
  margin-bottom: 20px; }
  .popup_admin_video .body .embed_preview .embed {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    bottom: 0;
    background: black;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden; }
    .popup_admin_video .body .embed_preview .embed:before {
      content: "\f121 ";
      font-size: 50px;
      font-weight: bold;
      color: #ebebeb;
      position: absolute;
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: FontAwesome;
      width: 100%;
      height: 100%;
      top: 0;
      bottom: 0;
      left: 0;
      bottom: 0; }
    .popup_admin_video .body .embed_preview .embed iframe {
      position: relative;
      width: 100%;
      height: 100%;
      z-index: 2; }

.popup_admin_video .body .cover_preview {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 30%;
  margin-bottom: 20px; }
  .popup_admin_video .body .cover_preview .file_upload {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    bottom: 0; }

.popup_lyrics .body {
  position: relative;
  display: flex;
  flex-flow: column;
  max-height: 80vh;
  overflow: auto; }
  .popup_lyrics .body .lyrics_content {
    position: relative;
    color: white; }

.popup_embed_player .popup {
  width: 1200px !important;
  max-width: 90vw;
  display: block; }
  .popup_embed_player .popup .embed_container {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    padding-top: 55%; }
    .popup_embed_player .popup .embed_container iframe {
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%; }

.video_card {
  position: relative;
  display: block;
  width: 90%;
  max-width: 300px;
  margin: 5px;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  backdrop-filter: blur(10px);
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -khtml-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }
  .video_card:hover {
    -webkit-box-shadow: 0 0 2px rgba(235, 235, 235, 0.7), 0 0 3px rgba(235, 235, 235, 0.7), 0 0 6px rgba(235, 235, 235, 0.7), 0 0 10px rgba(235, 235, 235, 0.7), 0 0 14px rgba(235, 235, 235, 0.7), 0 0 18px rgba(235, 235, 235, 0.7), 0 0 22px rgba(235, 235, 235, 0.7);
    -moz-box-shadow: 0 0 2px rgba(235, 235, 235, 0.7), 0 0 3px rgba(235, 235, 235, 0.7), 0 0 6px rgba(235, 235, 235, 0.7), 0 0 10px rgba(235, 235, 235, 0.7), 0 0 14px rgba(235, 235, 235, 0.7), 0 0 18px rgba(235, 235, 235, 0.7), 0 0 22px rgba(235, 235, 235, 0.7);
    box-shadow: 0 0 2px rgba(235, 235, 235, 0.7), 0 0 3px rgba(235, 235, 235, 0.7), 0 0 6px rgba(235, 235, 235, 0.7), 0 0 10px rgba(235, 235, 235, 0.7), 0 0 14px rgba(235, 235, 235, 0.7), 0 0 18px rgba(235, 235, 235, 0.7), 0 0 22px rgba(235, 235, 235, 0.7); }
    .video_card:hover .data {
      padding: 3px 20px; }
      .video_card:hover .data .title {
        text-shadow: 0px 0px 1px #ebebeb, 0px 0px 2px #ebebeb, -1px 0px 4px #ebebeb, 1px 0px 6px #ebebeb, -3px 0px 8px #ebebeb, 5px 0px 12px #ebebeb, -3px 0px 14px #ebebeb, 3px 0px 18px #ebebeb; }
  .video_card .thumb {
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 57%; }
    .video_card .thumb img {
      position: absolute;
      display: block;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      object-fit: cover; }
  .video_card .data {
    position: absolute;
    display: flex;
    bottom: 0;
    left: 0;
    right: 0;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    flex-flow: column;
    justify-content: center;
    -webkit-transition: 0.3s;
    -khtml-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
    .video_card .data .title {
      font-size: 16px;
      position: relative;
      display: flex;
      width: 100%;
      letter-spacing: 1px;
      text-transform: uppercase;
      height: 40px; }
    .video_card .data .date {
      color: grey; }

.music_card {
  position: relative;
  display: block;
  width: 90%;
  max-width: 300px;
  margin: 12px;
  perspective: 1000px;
  min-height: 400px; }
  .music_card .front, .music_card .back {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 400px;
    -webkit-transition: 0.5s;
    -khtml-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    backdrop-filter: blur(10px);
    -webkit-backface-visibility: hidden;
    /* Safari */
    backface-visibility: hidden;
    -webkit-transform: rotateX(0deg);
    -khtml-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    border: 2px solid rgba(255, 255, 255, 0.1); }
  .music_card .front {
    z-index: 2; }
  .music_card .front {
    position: relative;
    display: flex;
    flex-flow: column;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transform: rotateY(0deg);
    -khtml-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg); }
    .music_card .front .image {
      position: relative;
      display: block;
      width: 100%;
      padding-top: 100%;
      -webkit-border-radius: 5px 5px 0px 0px;
      -khtml-border-radius: 5px 5px 0px 0px;
      -moz-border-radius: 5px 5px 0px 0px;
      -ms-border-radius: 5px 5px 0px 0px;
      -o-border-radius: 5px 5px 0px 0px;
      border-radius: 5px 5px 0px 0px;
      overflow: hidden; }
      .music_card .front .image img {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .music_card .front .date {
      color: white;
      position: absolute;
      top: 10px;
      right: 0px;
      font-family: "Roboto", sans-serif;
      font-size: 20px;
      font-weight: bold;
      background: rgba(0, 0, 0, 0.5);
      padding: 3px 10px;
      text-align: center; }
    .music_card .front .data {
      width: 100%;
      height: 100%;
      padding: 10px;
      padding-bottom: 25px;
      position: relative;
      display: flex;
      flex-flow: column;
      justify-content: center; }
      .music_card .front .data .title {
        font-size: 16px;
        position: relative;
        display: flex;
        width: 100%;
        letter-spacing: 1px;
        text-transform: uppercase;
        height: 40px; }
      .music_card .front .data .featuring {
        font-size: 16px;
        position: relative;
        display: flex;
        width: 100%;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #ebebeb;
        margin-bottom: 10px; }
      .music_card .front .data .description {
        color: rgba(255, 255, 255, 0.6);
        position: relative;
        display: inline-block;
        overflow: hidden; }
  .music_card .back {
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding-bottom: 30px;
    background: rgba(159, 158, 158, 0.8);
    -webkit-transform: rotateY(-180deg);
    -khtml-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    transform: rotateY(-180deg); }

.music_card_active {
  z-index: 10; }
  .music_card_active .front, .music_card_active .back {
    -webkit-transition: transform 1s, box-shadow 0.3s;
    -khtml-transition: transform 1s, box-shadow 0.3s;
    -moz-transition: transform 1s, box-shadow 0.3s;
    -ms-transition: transform 1s, box-shadow 0.3s;
    -o-transition: transform 1s, box-shadow 0.3s;
    transition: transform 1s, box-shadow 0.3s;
    -webkit-box-shadow: 0 0 2px rgba(235, 235, 235, 0.7), 0 0 3px rgba(235, 235, 235, 0.7), 0 0 6px rgba(235, 235, 235, 0.7), 0 0 10px rgba(235, 235, 235, 0.7), 0 0 14px rgba(235, 235, 235, 0.7), 0 0 18px rgba(235, 235, 235, 0.7), 0 0 22px rgba(235, 235, 235, 0.7);
    -moz-box-shadow: 0 0 2px rgba(235, 235, 235, 0.7), 0 0 3px rgba(235, 235, 235, 0.7), 0 0 6px rgba(235, 235, 235, 0.7), 0 0 10px rgba(235, 235, 235, 0.7), 0 0 14px rgba(235, 235, 235, 0.7), 0 0 18px rgba(235, 235, 235, 0.7), 0 0 22px rgba(235, 235, 235, 0.7);
    box-shadow: 0 0 2px rgba(235, 235, 235, 0.7), 0 0 3px rgba(235, 235, 235, 0.7), 0 0 6px rgba(235, 235, 235, 0.7), 0 0 10px rgba(235, 235, 235, 0.7), 0 0 14px rgba(235, 235, 235, 0.7), 0 0 18px rgba(235, 235, 235, 0.7), 0 0 22px rgba(235, 235, 235, 0.7); }
  .music_card_active .front {
    -webkit-transform: rotateY(180deg);
    -khtml-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg); }
  .music_card_active .back {
    -webkit-transform: rotateY(0deg);
    -khtml-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg); }

.line_link_music {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 30px;
  padding: 3px 5px; }
  .line_link_music:hover {
    background: rgba(0, 0, 0, 0.3); }
  .line_link_music img {
    height: 100%; }
  .line_link_music .name {
    color: white;
    margin: 0 5px 0 10px;
    font-size: 16px;
    white-space: nowrap;
    font-family: "Orbitron", sans-serif; }
  .line_link_music .spacer {
    position: relative;
    display: block;
    width: 100%; }
  .line_link_music .btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid white;
    width: 100px;
    flex: 0 0 90px;
    font-size: 10px;
    padding: 3px;
    cursor: pointer; }
    .line_link_music .btn:hover {
      background: white;
      color: #ebebeb; }

.shop_page .shop_text {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  color: white;
  letter-spacing: 1px;
  font-size: 1.1rem;
  max-width: 80%;
  margin: 0 auto;
  margin-bottom: 40px; }

.shop_page .grid_flex_wrap {
  align-items: start !important; }

.shop_page .product_card {
  position: relative;
  display: block;
  width: 90%;
  max-width: 300px;
  margin: 5px;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  backdrop-filter: blur(10px);
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -khtml-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }
  .shop_page .product_card:hover {
    -webkit-box-shadow: 0 0 2px rgba(235, 235, 235, 0.7), 0 0 3px rgba(235, 235, 235, 0.7), 0 0 6px rgba(235, 235, 235, 0.7), 0 0 10px rgba(235, 235, 235, 0.7), 0 0 14px rgba(235, 235, 235, 0.7), 0 0 18px rgba(235, 235, 235, 0.7), 0 0 22px rgba(235, 235, 235, 0.7);
    -moz-box-shadow: 0 0 2px rgba(235, 235, 235, 0.7), 0 0 3px rgba(235, 235, 235, 0.7), 0 0 6px rgba(235, 235, 235, 0.7), 0 0 10px rgba(235, 235, 235, 0.7), 0 0 14px rgba(235, 235, 235, 0.7), 0 0 18px rgba(235, 235, 235, 0.7), 0 0 22px rgba(235, 235, 235, 0.7);
    box-shadow: 0 0 2px rgba(235, 235, 235, 0.7), 0 0 3px rgba(235, 235, 235, 0.7), 0 0 6px rgba(235, 235, 235, 0.7), 0 0 10px rgba(235, 235, 235, 0.7), 0 0 14px rgba(235, 235, 235, 0.7), 0 0 18px rgba(235, 235, 235, 0.7), 0 0 22px rgba(235, 235, 235, 0.7); }
    .shop_page .product_card:hover .data .title {
      text-shadow: 0px 0px 1px #6c96d5, 0px 0px 2px #6c96d5, -1px 0px 4px #6c96d5, 1px 0px 6px #6c96d5, -3px 0px 8px #6c96d5, 5px 0px 12px #6c96d5, -3px 0px 14px #6c96d5, 3px 0px 18px #6c96d5; }
  .shop_page .product_card .thumb {
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 100%; }
    .shop_page .product_card .thumb img {
      position: absolute;
      display: block;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      object-fit: cover; }
  .shop_page .product_card .data {
    position: relative;
    display: flex;
    bottom: 0;
    left: 0;
    right: 0;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    flex-flow: column;
    justify-content: center;
    gap: 10px;
    -webkit-transition: 0.3s;
    -khtml-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
    .shop_page .product_card .data .title {
      font-size: 16px;
      position: relative;
      display: flex;
      width: 100%;
      letter-spacing: 1px;
      text-transform: uppercase;
      height: 40px; }
    .shop_page .product_card .data .price {
      color: #ebebeb;
      font-size: 1.6rem;
      color: white;
      text-shadow: 0px 0px 1px #ebebeb, 0px 0px 2px #ebebeb, -1px 0px 4px #ebebeb, 1px 0px 6px #ebebeb, -3px 0px 8px #ebebeb, 5px 0px 12px #ebebeb, -3px 0px 14px #ebebeb, 3px 0px 18px #ebebeb; }
    .shop_page .product_card .data .description {
      color: white; }
    .shop_page .product_card .data .button {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      background: #ebebeb;
      padding: 6px 10px;
      color: black;
      -webkit-border-radius: 50px;
      -khtml-border-radius: 50px;
      -moz-border-radius: 50px;
      -ms-border-radius: 50px;
      -o-border-radius: 50px;
      border-radius: 50px;
      text-transform: uppercase;
      cursor: pointer;
      -webkit-transition: 0.3s;
      -khtml-transition: 0.3s;
      -moz-transition: 0.3s;
      -ms-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
      .shop_page .product_card .data .button:hover {
        color: black;
        letter-spacing: 2px;
        background: white; }

.admin_layout {
  background: url("/images/back1.jpg");
  background-position: center;
  background-size: cover; }
  .admin_layout main {
    padding-left: 160px;
    padding-top: 90px;
    padding-bottom: 10px;
    padding-right: 10px; }

.admin_header {
  background: rgba(0, 0, 0, 0.6); }

.admin_container {
  position: relative;
  display: block;
  padding: 10px;
  background: rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 2px 0 6px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 2px 0 6px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 0 6px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(6px);
  overflow: auto; }

.admin_section {
  position: relative;
  display: block; }
  .admin_section .top {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 2px solid white;
    padding-bottom: 10px;
    margin-bottom: 10px; }
  .admin_section .body {
    position: relative;
    display: block;
    width: 100%; }
  .admin_section .input_admin_bg {
    width: 400px;
    height: 300px; }

@media only screen and (max-width: 800px) {
  .admin_layout main {
    padding-left: 60px;
    padding-top: 70px;
    padding-bottom: 10px;
    padding-right: 10px; } }

.nav_tabs {
  position: relative;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  padding: 10px 10px 0 10px;
  overflow: auto;
  background: url("/img/nav.png") repeat no-repeat center bottom;
  background-size: 20%;
  background-color: #ebebeb;
  background-blend-mode: color; }
  .nav_tabs .tab {
    display: block;
    font-family: "Orbitron", sans-serif;
    line-height: 30px;
    padding: 5px 20px;
    background: #4d4d4d;
    color: white;
    margin: 0 5px;
    border: 1px solid #ebebeb;
    overflow: hidden;
    cursor: pointer;
    -webkit-border-radius: 5px 5px 0 0;
    -khtml-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    -ms-border-radius: 5px 5px 0 0;
    -o-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    -webkit-box-shadow: 2px, -2px, 5px, rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 2px, -2px, 5px, rgba(0, 0, 0, 0.3);
    box-shadow: 2px, -2px, 5px, rgba(0, 0, 0, 0.3);
    -webkit-transition: 0.2s;
    -khtml-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s; }
  .nav_tabs .active {
    background: white;
    border-color: transparent;
    color: #ebebeb;
    -webkit-box-shadow: 0, 0, 0, rgba(0, 0, 0, 0);
    -moz-box-shadow: 0, 0, 0, rgba(0, 0, 0, 0);
    box-shadow: 0, 0, 0, rgba(0, 0, 0, 0); }

.tab_content {
  position: relative;
  padding: 10px; }

.admin_menu {
  position: fixed;
  display: block;
  top: 80px;
  left: 0;
  bottom: 0;
  width: 150px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 10;
  -webkit-transition: 0.3s;
  -khtml-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }
  .admin_menu .item {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    color: white;
    padding-left: 40px;
    font-family: "Roboto", sans-serif;
    font-size: 1em; }
    .admin_menu .item span {
      letter-spacing: 0px; }
    .admin_menu .item:before {
      font-family: FontAwesome;
      color: white;
      position: absolute;
      display: block;
      text-align: center;
      width: 40px;
      line-height: 50px;
      left: 0; }
    .admin_menu .item:hover {
      background: rgba(255, 255, 255, 0.2); }
  .admin_menu .active {
    background: rgba(0, 0, 0, 0.3);
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    text-shadow: 0px 0px 1px #ebebeb, 0px 0px 2px #ebebeb, -1px 0px 4px #ebebeb, 1px 0px 6px #ebebeb, -3px 0px 8px #ebebeb, 5px 0px 12px #ebebeb, -3px 0px 14px #ebebeb, 3px 0px 18px #ebebeb; }
    .admin_menu .active:before {
      color: white; }
    .admin_menu .active:hover {
      background: rgba(0, 0, 0, 0.3); }

@media only screen and (max-width: 800px) {
  .admin_menu {
    width: 50px;
    top: 60px; }
    .admin_menu .item {
      justify-content: center; }
      .admin_menu .item span {
        display: none; }
      .admin_menu .item:before {
        width: 100%; } }

.admin_track_card {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  margin: 5px;
  -webkit-border-radius: 8px;
  -khtml-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  padding: 5px;
  overflow: hidden; }
  .admin_track_card .cover {
    position: relative;
    display: block;
    width: 100px;
    height: 100px;
    align-self: flex-start;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    flex-shrink: 0;
    background: black; }
    .admin_track_card .cover img {
      position: relative;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      -webkit-border-radius: 5px;
      -khtml-border-radius: 5px;
      -moz-border-radius: 5px;
      -ms-border-radius: 5px;
      -o-border-radius: 5px;
      border-radius: 5px; }
  .admin_track_card .content {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    margin: 0 5px;
    max-height: 160px; }
    .admin_track_card .content .col {
      position: relative;
      display: flex;
      flex-flow: column;
      width: 100%; }
    .admin_track_card .content .year {
      color: rgba(255, 255, 255, 0.6); }
    .admin_track_card .content .desc {
      color: white;
      height: 100%; }
    .admin_track_card .content .is_lyrics {
      color: white; }
      .admin_track_card .content .is_lyrics:before {
        content: "\f058";
        font-family: FontAwesome;
        color: #1abc9c;
        margin-right: 5px; }
    .admin_track_card .content .links {
      position: relative;
      display: flex;
      justify-content: flex-start;
      flex-wrap: wrap; }
      .admin_track_card .content .links .line_link_music {
        width: auto; }
        .admin_track_card .content .links .line_link_music .name {
          font-size: 12px; }
  .admin_track_card .actions {
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: space-around;
    height: 100px;
    flex-shrink: 0;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px; }
    .admin_track_card .actions .action {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 5px;
      width: 30px;
      height: 30px;
      -webkit-border-radius: 100px;
      -khtml-border-radius: 100px;
      -moz-border-radius: 100px;
      -ms-border-radius: 100px;
      -o-border-radius: 100px;
      border-radius: 100px;
      background: #ebebeb;
      border: 1px solid #ebebeb;
      cursor: pointer; }
      .admin_track_card .actions .action:before {
        color: white; }
      .admin_track_card .actions .action:hover {
        background: white; }
        .admin_track_card .actions .action:hover:before {
          color: #ebebeb; }
    .admin_track_card .actions .edit {
      background: #1abc9c;
      border-color: #1abc9c; }
      .admin_track_card .actions .edit:before {
        content: "\f040";
        font-family: FontAwesome; }
      .admin_track_card .actions .edit:hover:before {
        color: #1abc9c; }
    .admin_track_card .actions .delete {
      background: #e74c3c;
      border-color: #e74c3c; }
      .admin_track_card .actions .delete:before {
        content: "\f00d";
        font-family: FontAwesome; }
      .admin_track_card .actions .delete:hover:before {
        color: #e74c3c; }

.shop_text_form textarea {
  resize: vertical !important;
  height: 100px !important; }

.shop_text_form button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  width: auto;
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid white;
  padding: 10px 10px;
  margin-right: 10px;
  margin-left: 10px;
  cursor: pointer;
  font-family: "Orbitron", sans-serif; }
  .shop_text_form button:hover {
    -webkit-box-shadow: 0 0 2px rgba(235, 235, 235, 0.7), 0 0 3px rgba(235, 235, 235, 0.7), 0 0 6px rgba(235, 235, 235, 0.7), 0 0 10px rgba(235, 235, 235, 0.7), 0 0 14px rgba(235, 235, 235, 0.7), 0 0 18px rgba(235, 235, 235, 0.7), 0 0 22px rgba(235, 235, 235, 0.7);
    -moz-box-shadow: 0 0 2px rgba(235, 235, 235, 0.7), 0 0 3px rgba(235, 235, 235, 0.7), 0 0 6px rgba(235, 235, 235, 0.7), 0 0 10px rgba(235, 235, 235, 0.7), 0 0 14px rgba(235, 235, 235, 0.7), 0 0 18px rgba(235, 235, 235, 0.7), 0 0 22px rgba(235, 235, 235, 0.7);
    box-shadow: 0 0 2px rgba(235, 235, 235, 0.7), 0 0 3px rgba(235, 235, 235, 0.7), 0 0 6px rgba(235, 235, 235, 0.7), 0 0 10px rgba(235, 235, 235, 0.7), 0 0 14px rgba(235, 235, 235, 0.7), 0 0 18px rgba(235, 235, 235, 0.7), 0 0 22px rgba(235, 235, 235, 0.7);
    text-shadow: 0px 0px 1px #ebebeb, 0px 0px 2px #ebebeb, -1px 0px 4px #ebebeb, 1px 0px 6px #ebebeb, -3px 0px 8px #ebebeb, 5px 0px 12px #ebebeb, -3px 0px 14px #ebebeb, 3px 0px 18px #ebebeb; }
