/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
/* line 5, ../../../../../../../../var/lib/gems/3.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* line 22, ../../../../../../../../var/lib/gems/3.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html {
  line-height: 1;
}

/* line 24, ../../../../../../../../var/lib/gems/3.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
ol, ul {
  list-style: none;
}

/* line 26, ../../../../../../../../var/lib/gems/3.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 28, ../../../../../../../../var/lib/gems/3.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* line 30, ../../../../../../../../var/lib/gems/3.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q, blockquote {
  quotes: none;
}
/* line 103, ../../../../../../../../var/lib/gems/3.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

/* line 32, ../../../../../../../../var/lib/gems/3.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
a img {
  border: none;
}

/* line 116, ../../../../../../../../var/lib/gems/3.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
/* line 11, ../_animate.scss */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* line 18, ../_animate.scss */
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* line 23, ../_animate.scss */
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

/* line 28, ../_animate.scss */
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
/* line 92, ../_animate.scss */
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
/* line 119, ../_animate.scss */
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* line 160, ../_animate.scss */
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* line 239, ../_animate.scss */
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
/* line 278, ../_animate.scss */
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/* line 347, ../_animate.scss */
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
/* line 408, ../_animate.scss */
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* line 469, ../_animate.scss */
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
/* line 550, ../_animate.scss */
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
/* line 639, ../_animate.scss */
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* line 726, ../_animate.scss */
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
/* line 799, ../_animate.scss */
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
/* line 872, ../_animate.scss */
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
/* line 945, ../_animate.scss */
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* line 1018, ../_animate.scss */
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
/* line 1061, ../_animate.scss */
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
/* line 1104, ../_animate.scss */
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
/* line 1137, ../_animate.scss */
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
/* line 1170, ../_animate.scss */
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
/* line 1213, ../_animate.scss */
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* line 1238, ../_animate.scss */
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1271, ../_animate.scss */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1304, ../_animate.scss */
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1337, ../_animate.scss */
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1370, ../_animate.scss */
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1403, ../_animate.scss */
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1436, ../_animate.scss */
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1469, ../_animate.scss */
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1502, ../_animate.scss */
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* line 1527, ../_animate.scss */
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
/* line 1556, ../_animate.scss */
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
/* line 1585, ../_animate.scss */
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
/* line 1614, ../_animate.scss */
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
/* line 1643, ../_animate.scss */
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
/* line 1672, ../_animate.scss */
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
/* line 1701, ../_animate.scss */
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
/* line 1730, ../_animate.scss */
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
/* line 1759, ../_animate.scss */
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
/* line 1838, ../_animate.scss */
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
/* line 1911, ../_animate.scss */
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
/* line 1984, ../_animate.scss */
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
/* line 2029, ../_animate.scss */
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
/* line 2074, ../_animate.scss */
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 2133, ../_animate.scss */
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
/* line 2164, ../_animate.scss */
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 2207, ../_animate.scss */
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 2248, ../_animate.scss */
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 2289, ../_animate.scss */
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 2330, ../_animate.scss */
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 2371, ../_animate.scss */
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
/* line 2408, ../_animate.scss */
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
/* line 2445, ../_animate.scss */
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
/* line 2482, ../_animate.scss */
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
/* line 2519, ../_animate.scss */
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
/* line 2556, ../_animate.scss */
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
/* line 2629, ../_animate.scss */
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 2664, ../_animate.scss */
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
/* line 2695, ../_animate.scss */
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
/* line 2724, ../_animate.scss */
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 2765, ../_animate.scss */
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 2806, ../_animate.scss */
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 2847, ../_animate.scss */
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 2888, ../_animate.scss */
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
/* line 2925, ../_animate.scss */
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 2970, ../_animate.scss */
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
/* line 3007, ../_animate.scss */
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
/* line 3044, ../_animate.scss */
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 3089, ../_animate.scss */
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* line 3120, ../_animate.scss */
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* line 3151, ../_animate.scss */
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* line 3182, ../_animate.scss */
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* line 3213, ../_animate.scss */
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
/* line 3244, ../_animate.scss */
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
/* line 3275, ../_animate.scss */
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
/* line 3306, ../_animate.scss */
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
/* line 3337, ../_animate.scss */
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/*RIGHT*/
/* line 2, ../_transition.scss */
.page-slideRight > .page-view {
  -webkit-transition: -webkit-transform .25s ease-in-out;
  transition: transform .25s ease-in-out;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition: .25s ease-in-out;
}

/* line 9, ../_transition.scss */
.page-slideRight > .page-view.ng-enter.ng-enter-active, .page-view.ng-leave {
  position: absolute;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

/* line 14, ../_transition.scss */
.page-slideRight > .page-view.ng-leave.ng-leave-active {
  -webkit-transform: translateX(10%);
  transform: translateX(10%);
  opacity: 0;
}

/* line 19, ../_transition.scss */
.page-slideRight > .page-view.ng-enter {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

/*LEFT*/
/* line 25, ../_transition.scss */
.page-slideLeft > .page-view {
  -webkit-transition: -webkit-transform .25s ease-in-out;
  transition: transform .25s ease-in-out;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition: .25s ease-in-out;
}

/* line 32, ../_transition.scss */
.page-slideLeft > .page-view.ng-enter {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

/* line 36, ../_transition.scss */
.page-slideLeft > .page-view.ng-enter.ng-enter-active, .page-view.ng-leave {
  position: absolute;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

/* line 41, ../_transition.scss */
.page-slideLeft > .page-view.ng-leave.ng-leave-active {
  -webkit-transform: translateX(-10%);
  transform: translateX(-10%);
  opacity: 0;
}

/*UP*/
/* line 48, ../_transition.scss */
.page-slideUp > .page-view {
  -webkit-transition: -webkit-transform .25s ease-in-out;
  transition: transform .25s ease-in-out;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition: .25s ease-in-out;
}

/* line 55, ../_transition.scss */
.page-slideUp > .page-view.ng-enter {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

/* line 59, ../_transition.scss */
.page-slideUp > .page-view.ng-enter.ng-enter-active, .page-view.ng-leave {
  position: absolute;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* line 64, ../_transition.scss */
.page-slideUp > .page-view.ng-leave.ng-leave-active {
  -webkit-transform: translateY(-10%);
  transform: translateY(-10%);
  opacity: 0;
}

/*DOWN*/
/* line 71, ../_transition.scss */
.page-slideDown > .page-view {
  -webkit-transition: -webkit-transform .25s ease-in-out;
  transition: transform .25s ease-in-out;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  transition: .25s ease-in-out;
}

/* line 78, ../_transition.scss */
.page-slideDown > .page-view.ng-enter.ng-enter-active, .page-view.ng-leave {
  position: absolute;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* line 83, ../_transition.scss */
.page-slideDown > .page-view.ng-leave.ng-leave-active {
  -webkit-transform: translateY(10%);
  transform: translateY(10%);
  opacity: 0;
}

/* line 88, ../_transition.scss */
.page-slideDown > .page-view.ng-enter {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

/* line 92, ../_transition.scss */
.contact ul li.ng-leave, .table tbody tr.ng-leave {
  display: none;
}

@keyframes hoverOn {
  from {
    top: 0;
  }
  to {
    top: -4px;
  }
}
@keyframes hoverOut {
  from {
    top: -4px;
  }
  to {
    top: 0;
  }
}
@font-face {
  font-family: gotham-med;
  src: url("../../fonts/gotham-med.ttf");
}
@font-face {
  font-family: gotham-reg;
  src: url("../../fonts/gotham-reg.ttf");
}
@font-face {
  font-family: gotham-light;
  src: url("../../fonts/gotham-light.ttf");
}
@font-face {
  font-family: sf-light;
  src: url("../../fonts/sf-light.ttf");
}
@font-face {
  font-family: sf-thin;
  src: url("../../fonts/sf-thin.ttf");
}
@font-face {
  font-family: sf-reg;
  src: url("../../fonts/sf-reg.ttf");
}
@font-face {
  font-family: sf-bold;
  src: url("../../fonts/sf-bold.ttf");
}
/* line 3, ../_alerts.scss */
.tr-alerts {
  position: absolute;
  top: 55px;
  left: 30px;
  display: flex;
  flex-direction: column;
  width: calc(100% - 60px);
}

/* line 12, ../_alerts.scss */
.tr-alert {
  font-family: gotham-med, sans-serif;
  color: #fff !important;
  font-size: 16px;
  line-height: 24px;
  border-radius: 24px;
  padding: 7px 18px;
  display: flex !important;
  flex: 1;
  justify-content: center;
  margin-bottom: 4px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.5);
  z-index: 9999;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -moz-transition-duration: 600ms;
  -o-transition-duration: 600ms;
  -webkit-transition-duration: 600ms;
  transition-duration: 600ms;
  -moz-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
/* line 30, ../_alerts.scss */
.tr-alert.entering {
  transform: translate(0, -160px);
}
/* line 33, ../_alerts.scss */
.tr-alert.entered {
  transform: translate(0, 0px);
}
/* line 36, ../_alerts.scss */
.tr-alert.exiting {
  transform: translate(0, -160px);
}
/* line 39, ../_alerts.scss */
.tr-alert.exited {
  transform: translate(0, -160px);
}
/* line 43, ../_alerts.scss */
.tr-alert.error {
  background: #b22334;
}
/* line 47, ../_alerts.scss */
.tr-alert.info {
  background: #438a98;
}

/* line 52, ../_alerts.scss */
.tr-alert__text {
  width: 100%;
  text-align: center;
}

/* Remove scroll on the body when react-modal is open */
/* line 2, ../_popup.scss */
.ReactModal__Body--open {
  overflow: hidden;
}

/* line 6, ../_popup.scss */
.popup-form-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 99;
  overflow-y: scroll;
}
/* line 16, ../_popup.scss */
.popup-form-container .form-group.centered {
  margin: 0px auto;
  float: none;
}

/* line 22, ../_popup.scss */
.popup-form, .popup-form-extended {
  background: white;
  border-radius: 7px;
  border: 1px solid #d8d8d8;
  box-sizing: border-box;
  padding: 60px 80px;
  z-index: 50;
  width: 90%;
  margin: 10px auto;
}
/* line 32, ../_popup.scss */
.popup-form.min-height, .min-height.popup-form-extended {
  min-height: 60%;
}
/* line 36, ../_popup.scss */
.popup-form.slim, .slim.popup-form-extended {
  width: 70%;
}
/* line 40, ../_popup.scss */
.popup-form.full-height, .full-height.popup-form-extended {
  min-height: 97%;
}
/* line 46, ../_popup.scss */
.popup-form.tight .row, .tight.popup-form-extended .row {
  margin-top: 0 !important;
}
/* line 51, ../_popup.scss */
.popup-form h2, .popup-form-extended h2 {
  font-weight: normal;
  font-family: sf-light;
  font-size: 36px;
  color: #6b9eb8;
}
/* line 58, ../_popup.scss */
.popup-form h3, .popup-form-extended h3 {
  font-weight: bold;
  font-family: sf-bold;
  font-size: 20px;
  color: #0E0E52;
  font-family: gotham-reg, sans-serif;
}
/* line 66, ../_popup.scss */
.popup-form .row, .popup-form-extended .row {
  margin-top: 21px;
}
/* line 69, ../_popup.scss */
.popup-form .row:first-child, .popup-form-extended .row:first-child {
  margin-top: 0;
}
/* line 74, ../_popup.scss */
.popup-form select, .popup-form-extended select,
.popup-form textarea,
.popup-form-extended textarea,
.popup-form input,
.popup-form-extended input {
  width: 100%;
  height: 60px;
  border: 1px solid #d8d8d8;
  color: #555;
  font-family: gotham-light, sans-serif;
  padding: 0 18px;
  outline: 0;
  font-size: 16px;
}
/* line 87, ../_popup.scss */
.popup-form button, .popup-form-extended button {
  font-family: gotham-light, sans-serif;
  height: 70px;
  text-align: center;
  color: #fff;
  background: #307599;
  background: -webkit-linear-gradient(left, #347094, #59a0aa);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #347094, #59a0aa);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #347094, #59a0aa);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #347094, #59a0aa);
  /* Standard syntax */
  border: none;
  width: 100%;
  max-width: 335px;
  font-size: 20px;
  border-radius: 5px;
  cursor: pointer;
}
/* line 112, ../_popup.scss */
.popup-form button.disabled, .popup-form-extended button.disabled {
  background: #e0e0e0;
  cursor: default;
}
/* line 118, ../_popup.scss */
.popup-form .button-container, .popup-form-extended .button-container {
  text-align: center;
  margin-top: 30px;
}
/* line 123, ../_popup.scss */
.popup-form .close, .popup-form-extended .close {
  position: absolute;
  right: 40px;
  top: 25px;
  cursor: pointer;
  opacity: 1;
}
/* line 131, ../_popup.scss */
.popup-form p.error, .popup-form-extended p.error {
  margin-top: 10px;
  margin-bottom: 7px;
  color: #fa474f;
  display: block;
}

/* line 139, ../_popup.scss */
.popup-form-extended {
  width: 98%;
}

/* line 145, ../_popup.scss */
.popup-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 99;
}
/* line 155, ../_popup.scss */
.popup-container .form-group input {
  width: 100%;
  height: 60px;
  border: 1px solid #d8d8d8;
  margin-top: 20px !important;
  color: #555;
  font-size: 22px;
  font-family: gotham-light, sans-serif;
  width: 270px;
  height: 45px;
  margin-top: 5px;
  padding: 0 15px;
}
/* line 169, ../_popup.scss */
.popup-container .form-group select {
  width: 270px;
  height: 45px;
  margin-top: 5px;
  border: 1px solid #d8d8d8;
  font-size: 20px;
}
/* line 178, ../_popup.scss */
.popup-container .space {
  width: 70px;
  float: left;
  height: 40px;
}
/* line 184, ../_popup.scss */
.popup-container .form-group:first-child {
  margin-left: 0px;
}
/* line 188, ../_popup.scss */
.popup-container button {
  font-family: gotham-light, sans-serif;
  height: 70px;
  text-align: center;
  color: #fff;
  background: #307599;
  background: -webkit-linear-gradient(left, #347094, #59a0aa);
  background: -o-linear-gradient(right, #347094, #59a0aa);
  background: -moz-linear-gradient(right, #347094, #59a0aa);
  background: linear-gradient(to right, #347094, #59a0aa);
  border: none;
  width: 335px;
  font-size: 20px;
  margin-top: 90px;
  border-radius: 5px;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}
/* line 208, ../_popup.scss */
.popup-container .popup-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -520px;
  margin-top: -277px;
  width: 1040px;
  height: 555px;
  background: white;
  border-radius: 7px;
  border: 1px solid #c9c9c9;
  box-sizing: border-box;
  padding: 60px 80px;
  z-index: 50;
}
/* line 223, ../_popup.scss */
.popup-container .popup-panel label {
  color: #606060;
  font-family: gotham-med, sans-serif;
}
/* line 228, ../_popup.scss */
.popup-container .popup-panel label.required {
  color: #438a98;
}
/* line 232, ../_popup.scss */
.popup-container .popup-panel .close {
  position: absolute;
  right: 40px;
  top: 25px;
  cursor: pointer;
  opacity: 1;
}
/* line 240, ../_popup.scss */
.popup-container .popup-panel h2 {
  font-weight: normal;
  font-family: sf-light, sans-serif;
  font-size: 50px;
  color: #6b9eb8;
}
/* line 247, ../_popup.scss */
.popup-container .popup-panel .big-field {
  width: 100%;
}
/* line 250, ../_popup.scss */
.popup-container .popup-panel .big-field input {
  width: 100%;
  height: 60px;
  border: 1px solid #f1f1f1;
  margin-top: 20px;
  color: #555;
  font-size: 22px;
  font-family: gotham-light, sans-serif;
  padding: 0 18px;
  outline: 0;
}

/* line 266, ../_popup.scss */
.message-modal .popup-form, .message-modal .popup-form-extended {
  height: 350px;
  margin-top: -175px;
}
/* line 271, ../_popup.scss */
.message-modal p {
  color: #699DB7;
}
/* line 275, ../_popup.scss */
.message-modal .btn {
  margin: 90px auto;
  display: block;
}

/* line 282, ../_popup.scss */
.tooltip-modal .popup-form, .tooltip-modal .popup-form-extended {
  top: 0;
  left: 0;
  margin: 0;
  border-radius: 0;
  padding: 100px 60px;
}
/* line 288, ../_popup.scss */
.tooltip-modal .popup-form span, .tooltip-modal .popup-form-extended span {
  display: block;
  color: #699DB7;
}

/* line 296, ../_popup.scss */
.contact-modal .autocomplete {
  color: #787878;
  font-family: gotham-reg, sans-serif;
  text-align: center;
  font-size: 18px;
  overflow: hidden;
  margin-top: 8px;
}
/* line 304, ../_popup.scss */
.contact-modal .autocomplete img {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  margin: 0 10px;
}
/* line 311, ../_popup.scss */
.contact-modal .autocomplete .image-border {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  display: inline-block;
  margin: 0 10px;
  overflow: hidden;
}
/* line 318, ../_popup.scss */
.contact-modal .autocomplete .image-border img {
  margin: 0;
  border-radius: 0;
}
/* line 324, ../_popup.scss */
.contact-modal .autocomplete .detail-text {
  position: relative;
  top: -25px;
  max-width: 400px;
  display: inline-block;
}
/* line 331, ../_popup.scss */
.contact-modal .autocomplete .add {
  color: #438a98;
  text-decoration: underline;
  margin-left: 20px;
  cursor: pointer;
}
/* line 340, ../_popup.scss */
.contact-modal button {
  margin-top: 30px;
}
/* line 344, ../_popup.scss */
.contact-modal .popup-panel {
  width: 795px;
  margin-left: -400px;
  height: 500px;
  padding: 40px 50px;
}
/* line 350, ../_popup.scss */
.contact-modal .popup-panel .loader {
  margin: 70px auto;
}

/* line 356, ../_popup.scss */
.preview-img__container {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  width: auto;
  margin-top: 14px;
}

/* line 365, ../_popup.scss */
.preview-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* line 371, ../_popup.scss */
.modal-frame {
  position: relative;
  margin: auto;
  z-index: 1000;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -moz-box-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  width: 100%;
  height: 100%;
  visibility: hidden;
}

/* line 390, ../_popup.scss */
.modal-frame .mbody {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
}
/* line 394, ../_popup.scss */
.modal-frame .mbody.no-padding {
  padding-top: 0;
}

/* line 399, ../_popup.scss */
.modal-frame.state-appear {
  visibility: visible;
}

/* line 403, ../_popup.scss */
.modal-frame.state-appear .modal-inset {
  -moz-animation: modalComeIn 0.25s ease;
  -webkit-animation: modalComeIn 0.25s ease;
  animation: modalComeIn 0.25s ease;
  visibility: visible;
  /* to keep @ final state */
}

/* line 411, ../_popup.scss */
.modal-frame.state-leave .modal-inset {
  -moz-animation: modalHeadOut 0.35s ease 0.1s;
  -webkit-animation: modalHeadOut 0.35s ease 0.1s;
  animation: modalHeadOut 0.35s ease 0.1s;
  visibility: visible;
}

@-moz-document url-prefix() {
  /* line 419, ../_popup.scss */
  .modal-frame {
    height: calc(100% - 55px);
  }
}
@-webkit-keyframes modalComeIn {
  0% {
    visibility: hidden;
    opacity: 0;
    -moz-transform: scale(0.8, 0.8);
    -ms-transform: scale(0.8, 0.8);
    -webkit-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
  }
  65.5% {
    -moz-transform: scale(1.03, 1.03);
    -ms-transform: scale(1.03, 1.03);
    -webkit-transform: scale(1.03, 1.03);
    transform: scale(1.03, 1.03);
  }
  100% {
    visibility: visible;
    opacity: 1;
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@-moz-keyframes modalComeIn {
  0% {
    visibility: hidden;
    opacity: 0;
    -moz-transform: scale(0.8, 0.8);
    -ms-transform: scale(0.8, 0.8);
    -webkit-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
  }
  65.5% {
    -moz-transform: scale(1.03, 1.03);
    -ms-transform: scale(1.03, 1.03);
    -webkit-transform: scale(1.03, 1.03);
    transform: scale(1.03, 1.03);
  }
  100% {
    visibility: visible;
    opacity: 1;
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@keyframes modalComeIn {
  0% {
    visibility: hidden;
    opacity: 0;
    -moz-transform: scale(0.8, 0.8);
    -ms-transform: scale(0.8, 0.8);
    -webkit-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
  }
  65.5% {
    -moz-transform: scale(1.03, 1.03);
    -ms-transform: scale(1.03, 1.03);
    -webkit-transform: scale(1.03, 1.03);
    transform: scale(1.03, 1.03);
  }
  100% {
    visibility: visible;
    opacity: 1;
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@-webkit-keyframes modalHeadOut {
  0% {
    visibility: visible;
    opacity: 1;
    -moz-transform: translateY(0) scale(1, 1);
    -ms-transform: translateY(0) scale(1, 1);
    -webkit-transform: translateY(0) scale(1, 1);
    transform: translateY(0) scale(1, 1);
  }
  100% {
    visibility: hidden;
    opacity: 0;
    -moz-transform: translateY(35px) scale(0.97, 0.97);
    -ms-transform: translateY(35px) scale(0.97, 0.97);
    -webkit-transform: translateY(35px) scale(0.97, 0.97);
    transform: translateY(35px) scale(0.97, 0.97);
  }
}
@-moz-keyframes modalHeadOut {
  0% {
    visibility: visible;
    opacity: 1;
    -moz-transform: translateY(0) scale(1, 1);
    -ms-transform: translateY(0) scale(1, 1);
    -webkit-transform: translateY(0) scale(1, 1);
    transform: translateY(0) scale(1, 1);
  }
  100% {
    visibility: hidden;
    opacity: 0;
    -moz-transform: translateY(35px) scale(0.97, 0.97);
    -ms-transform: translateY(35px) scale(0.97, 0.97);
    -webkit-transform: translateY(35px) scale(0.97, 0.97);
    transform: translateY(35px) scale(0.97, 0.97);
  }
}
@keyframes modalHeadOut {
  0% {
    visibility: visible;
    opacity: 1;
    -moz-transform: translateY(0) scale(1, 1);
    -ms-transform: translateY(0) scale(1, 1);
    -webkit-transform: translateY(0) scale(1, 1);
    transform: translateY(0) scale(1, 1);
  }
  100% {
    visibility: hidden;
    opacity: 0;
    -moz-transform: translateY(35px) scale(0.97, 0.97);
    -ms-transform: translateY(35px) scale(0.97, 0.97);
    -webkit-transform: translateY(35px) scale(0.97, 0.97);
    transform: translateY(35px) scale(0.97, 0.97);
  }
}
@media only screen and (min-height: 640px) {
  /* line 569, ../_popup.scss */
  .popup-form-container {
    display: list-item;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  /* line 575, ../_popup.scss */
  .popup-form-container.long {
    display: block;
  }
}
@media only screen and (max-width: 600px) {
  /* line 582, ../_popup.scss */
  .popup-form, .popup-form-extended {
    width: 98%;
    height: 98%;
  }

  /* line 588, ../_popup.scss */
  .tooltip-modal .popup-form, .tooltip-modal .popup-form-extended {
    top: 0;
    left: 0;
    margin: 0;
    border-radius: 0;
    padding: 100px 40px 0 10px;
  }
  /* line 595, ../_popup.scss */
  .tooltip-modal .popup-form span, .tooltip-modal .popup-form-extended span {
    display: block;
    color: #699DB7;
  }
}
@media only screen and (max-width: 1100px) {
  /* line 604, ../_popup.scss */
  .modal-frame {
    position: fixed;
  }
}
/* line 611, ../_popup.scss */
.popover-body strong {
  font-weight: bolder !important;
}

/* line 2, ../_components.scss */
.row .form-group:last-child {
  margin-bottom: 0;
}

/* line 6, ../_components.scss */
.form-group > .contact-info {
  padding: 21px 0;
}

/* line 10, ../_components.scss */
.form-group .errors {
  margin: 7px 0 0 0;
}

/* line 16, ../_components.scss */
.performer-share-contact .form-group {
  padding: 0 !important;
}

/* line 22, ../_components.scss */
.recording-label .remove {
  right: 60px;
  top: -29px;
}

/* line 28, ../_components.scss */
.contact-info-wrapper:first-child {
  margin-top: 0;
}

/* line 32, ../_components.scss */
.contact-info-wrapper {
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 4px;
  padding: 20px 14px;
  margin-bottom: 14px;
}
/* line 38, ../_components.scss */
.contact-info-wrapper > label {
  padding-bottom: 12px;
}
/* line 42, ../_components.scss */
.contact-info-wrapper.locked {
  background-color: rgba(0, 0, 0, 0.09);
}

/* line 51, ../_components.scss */
.contact-info-wrapper.row:first-child {
  margin-top: 0 !important;
}
/* line 56, ../_components.scss */
.contact-info-wrapper .detail-info {
  padding-top: 14px;
}
/* line 59, ../_components.scss */
.contact-info-wrapper .detail-info .addPublisher {
  width: 350px;
  top: 5px;
}
/* line 64, ../_components.scss */
.contact-info-wrapper .detail-info .writerCheckbox {
  min-width: 355px;
}
/* line 68, ../_components.scss */
.contact-info-wrapper .detail-info .form-group {
  display: inline-block;
  width: 270px;
}
/* line 73, ../_components.scss */
.contact-info-wrapper .detail-info select, .contact-info-wrapper .detail-info input {
  width: 100%;
}
/* line 79, ../_components.scss */
.contact-info-wrapper .detail-info .publisher {
  border: 0;
  margin: 0;
  padding-top: 8px;
}
/* line 84, ../_components.scss */
.contact-info-wrapper .detail-info .publisher .popup-form, .contact-info-wrapper .detail-info .publisher .popup-form-extended {
  height: 740px;
}
/* line 89, ../_components.scss */
.contact-info-wrapper .detail-info .publisherSearch {
  margin: 0 0 30px 26px;
}
/* line 92, ../_components.scss */
.contact-info-wrapper .detail-info .publisherSearch .detail-info {
  margin: 0;
}
/* line 97, ../_components.scss */
.contact-info-wrapper .detail-info .info-block div {
  display: inline-block;
  vertical-align: middle;
  width: 150px;
}

/* line 105, ../_components.scss */
.label-above-checkbox {
  width: 350px;
  top: 5px;
}

/* line 111, ../_components.scss */
.credits > span > .info-icon {
  right: 30px;
  top: 14px;
}
/* line 116, ../_components.scss */
.credits .form-field {
  margin-bottom: 10px;
}

/* line 121, ../_components.scss */
.dashboard-content .menu {
  display: flex;
  justify-content: space-between;
  vertical-align: middle;
  border: 1px solid #ececec;
  border-radius: 50px;
  overflow: hidden;
}
/* line 129, ../_components.scss */
.dashboard-content .menu .active {
  background-color: #699DB7;
  color: white;
}
/* line 133, ../_components.scss */
.dashboard-content .menu span {
  display: inline-block;
  padding: 17px 26px;
  color: #699DB7;
  text-align: center;
  font-size: 15px;
  cursor: pointer;
  background-color: #fff;
  overflow: hidden;
}
/* line 143, ../_components.scss */
.dashboard-content .menu .sub-active {
  background: #B38BCD;
  color: #fff;
}

/* line 153, ../_components.scss */
.performerShare .form-group, .form-section.credits .form-group {
  width: 100% !important;
  padding: 14px;
  position: relative;
}
/* line 158, ../_components.scss */
.performerShare .row, .form-section.credits .row {
  width: 102% !important;
}

/* line 162, ../_components.scss */
.wide-label-tooltip {
  padding-right: 25px;
}

/* line 2, ../_breadcrumbs.scss */
.breadcrumbs {
  display: flex;
  margin: 0 auto;
}

/* line 7, ../_breadcrumbs.scss */
.breadcrumb, .breadcrumb-separator {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #438a98;
  color: #fff;
  font-size: 21px;
  height: 52px;
  padding-left: 42px;
  padding-right: 42px;
  border-radius: 0;
  margin: 0;
}
/* line 21, ../_breadcrumbs.scss */
.breadcrumb.first, .first.breadcrumb-separator {
  border-bottom-left-radius: 20px;
  padding-left: 50px;
}
/* line 26, ../_breadcrumbs.scss */
.breadcrumb.last, .last.breadcrumb-separator {
  border-bottom-right-radius: 20px;
  padding-right: 50px;
}

/* line 32, ../_breadcrumbs.scss */
.breadcrumb-separator {
  padding-left: 14px;
  padding-right: 14px;
  width: 55px;
}

/* line 39, ../_breadcrumbs.scss */
.separator-arrow {
  border: solid #fff;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 20px;
  margin-left: -20px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

/* line 5, ../_loading.scss */
.showbox {
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  margin-top: -100px;
}

/* line 14, ../_loading.scss */
.loader {
  position: relative;
  margin: 0px auto;
  width: 100px;
  height: 180px;
  vertical-align: middle;
  padding: 14px 0;
}

/* line 22, ../_loading.scss */
.loader:before {
  content: '';
  display: block;
  padding-top: 100%;
}

/* line 28, ../_loading.scss */
.circular {
  -webkit-animation: rotate 2s linear infinite;
  animation: rotate 2s linear infinite;
  height: 100%;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

/* line 43, ../_loading.scss */
.path {
  stroke-dasharray: 1,200;
  stroke-dashoffset: 0;
  -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}

@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124px;
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124px;
  }
}
@-webkit-keyframes color {
  100%, 0% {
    stroke: #3C8397;
  }
  40% {
    stroke: #4D9193;
  }
  66% {
    stroke: #24638D;
  }
  80%, 90% {
    stroke: #3A89AA;
  }
}
@keyframes color {
  100%, 0% {
    stroke: #3C8397;
  }
  40% {
    stroke: #4D9193;
  }
  66% {
    stroke: #24638D;
  }
  80%, 90% {
    stroke: #3A89AA;
  }
}
/* line 22, ../screen.scss */
.error {
  color: #fa474f;
  display: block;
  margin-bottom: 4px;
}

/* line 34, ../screen.scss */
.appInner *:focus {
  outline: 5px auto -webkit-focus-ring-color;
}

/* line 41, ../screen.scss */
.appInner:not(.userIsTabbing) *:focus {
  outline: none;
}

/* line 46, ../screen.scss */
.page-view {
  background: #fff;
  min-width: 800px !important;
}

/* line 51, ../screen.scss */
.noscroll {
  overflow: hidden !important;
}

/* line 59, ../screen.scss */
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #a5a5a5 !important;
}

/* line 63, ../screen.scss */
input:-moz-placeholder, textarea:-moz-placeholder {
  color: #a5a5a5 !important;
}

/* line 67, ../screen.scss */
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #a5a5a5 !important;
}

/* line 71, ../screen.scss */
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #a5a5a5 !important;
}

/* line 76, ../screen.scss */
select.error,
input.error {
  border-color: #fa474f;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(250, 71, 79, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(250, 71, 79, 0.6);
}

/* line 1, ../_recording-details.scss */
.r-body {
  font-family: "Lato" !important;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  color: #444444;
}

/* line 12, ../_recording-details.scss */
.rd-header {
  background: white;
  padding: 20px 0px;
  margin-bottom: 50px;
}

/* line 18, ../_recording-details.scss */
.save-btn {
  width: 80px;
  height: 40px;
  background: #0e0e52;
  border-radius: 5px;
  color: white;
}

/* line 26, ../_recording-details.scss */
.field {
  width: 100%;
  margin-bottom: 20px;
}

/* line 31, ../_recording-details.scss */
.add-work p {
  color: #0e0e52;
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 768px) {
  /* line 38, ../_recording-details.scss */
  .add-work {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  /* line 43, ../_recording-details.scss */
  .info-added p {
    margin-bottom: 20px;
  }
}
/* line 48, ../_recording-details.scss */
.info-added p {
  color: #3ca4c6;
}

/* line 52, ../_recording-details.scss */
.nav-link span {
  position: static !important;
}

/* line 56, ../_recording-details.scss */
.r-nav-tabs {
  float: none !important;
}

/* line 60, ../_recording-details.scss */
.nav {
  display: -webkit-inline-flex !important;
  background-color: white;
}

/* line 65, ../_recording-details.scss */
.r-nav {
  width: 100%;
  padding: 15px 10px 0px 10px;
}

@media (min-width: 991px) {
  /* line 71, ../_recording-details.scss */
  .main-class-wrapper {
    padding-right: 100px;
    padding-left: 100px;
  }

  /* line 76, ../_recording-details.scss */
  .rd-header {
    padding-right: 100px;
    padding-left: 100px;
  }
}
/* line 82, ../_recording-details.scss */
.header-inner {
  padding-top: 0px !important;
}

/* line 86, ../_recording-details.scss */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #0e0e52;
  background-color: white;
}

/* line 92, ../_recording-details.scss */
.nav-pills .nav-link.active {
  border-bottom: 4px solid #0e0e52;
}

/* line 96, ../_recording-details.scss */
.r-label {
  display: block !important;
}

/* line 100, ../_recording-details.scss */
.field-wrapper input,
.field-wrapper textarea,
.field-wrapper select {
  margin-bottom: 20px;
  width: 100%;
}

/* line 107, ../_recording-details.scss */
.work-details-wrap {
  padding: 30px 40px;
  background-color: white;
}

/* line 112, ../_recording-details.scss */
.work-details-wrap p {
  font-size: 16px;
  font-weight: 600;
  line-height: 19.2px;
  color: #0e0e52;
}

/* line 119, ../_recording-details.scss */
.r-form-cover {
  border: 1px solid rgba(196, 196, 196, 0.2);
  padding: 20px;
  margin-bottom: 20px;
}

/* line 125, ../_recording-details.scss */
.three-boxes {
  margin: 20px 0px;
}

/* line 129, ../_recording-details.scss */
.three-boxes input {
  width: 100%;
}

/* line 133, ../_recording-details.scss */
.three-boxes select {
  width: 100%;
}

@media (max-width: 768px) {
  /* line 138, ../_recording-details.scss */
  .three-boxes div {
    margin: 10px 0px;
  }

  /* line 142, ../_recording-details.scss */
  .three-boxes div.react-select div {
    margin: 0 !important;
  }

  /* line 146, ../_recording-details.scss */
  .radio-btn {
    margin-top: 10px;
  }
}
/* .card-boxes{
display: inline-flex;
} */
/* line 155, ../_recording-details.scss */
.card-box {
  border: 1px solid rgba(196, 196, 196, 0.23);
  text-align: center;
  padding: 20px;
  margin-right: 20px;
  height: 250px;
  border-radius: 5px;
}

/* line 164, ../_recording-details.scss */
.card-box:hover {
  border: 1px solid #0e0e52 !important;
}

/* line 168, ../_recording-details.scss */
.card-box .hover-state-card-icon {
  -webkit-filter: grayscale(100%);
  filter: contrast(20%) grayscale(100%) brightness(1.5);
}

/* line 173, ../_recording-details.scss */
.card-box:hover .hover-state-card-icon {
  -webkit-filter: none;
  filter: none;
}

/* line 178, ../_recording-details.scss */
.card-box h4 {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 10px;
  margin-top: 24px;
  color: #aaaaaa !important;
}

/* line 187, ../_recording-details.scss */
.card-box:hover .card-heading {
  color: black !important;
}

/* line 191, ../_recording-details.scss */
.card-box .learn-more {
  font-family: "Lato";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  margin-bottom: 24px;
  color: #aaaaaa;
}

/* line 202, ../_recording-details.scss */
.card-box:hover .learn-more {
  color: #aaaaaa;
}

/* line 206, ../_recording-details.scss */
.card-box .Available {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  margin-bottom: 20px;
  color: #aaaaaa;
}

/* line 217, ../_recording-details.scss */
.card-box:hover .Available {
  color: #275f91;
}

/* line 221, ../_recording-details.scss */
.card-box a {
  padding: 12px 62px;
  background-color: #aaaaaa;
  border-radius: 5px;
  color: white;
  margin-top: 20px;
  width: 100%;
}

/* line 230, ../_recording-details.scss */
.card-box:hover a.start-btn {
  background-color: #0e0e52;
}

@media (max-width: 1200px) {
  /* line 235, ../_recording-details.scss */
  .card-box a {
    padding: 12px 30px;
  }
}
@media (max-width: 768px) {
  /* line 241, ../_recording-details.scss */
  .card-box {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
/* line 247, ../_recording-details.scss */
.heading {
  margin-bottom: 20px;
}

/* line 251, ../_recording-details.scss */
.side-bar {
  background-color: white;
  padding: 30px 20px;
  margin-left: 20px;
}

@media (max-width: 768px) {
  /* line 258, ../_recording-details.scss */
  .side-bar {
    margin-top: 50px;
    margin-left: 0px;
  }
}
/* @media(min-width:991px){
  .work-details-wrap {
      width: 60%;
      float: left;
  }
  .side-bar{
      width:38%;
      float: left;
      margin-left: 20px;
  }
}
@media(max-width:991px){
  .work-details-wrap {
      width: 100%;
      float: none;
  }
  .side-bar{
      width:100%;
      float: none;
      margin-top: 20px;
  }
} */
/* line 287, ../_recording-details.scss */
.back-arrow {
  margin-bottom: 20px;
}

/* line 291, ../_recording-details.scss */
.text-icon-wrap {
  display: inline-flex;
  margin-bottom: 10px;
}

/* line 296, ../_recording-details.scss */
.text-icon-wrap a {
  float: right;
}

/* line 300, ../_recording-details.scss */
.text-icon-wrap p {
  font-family: "Lato" !important;
  font-style: normal;
  font-weight: 500 !important;
  font-size: 16px !important;
  line-height: 19px !important;
  color: #444444 !important;
  margin-left: 5px !important;
}

/* line 310, ../_recording-details.scss */
.input-area textarea {
  width: 100%;
  border-radius: 5px;
}

/* line 315, ../_recording-details.scss */
.export-btn {
  margin-top: 50px;
  text-align: center;
  margin-bottom: 40px;
}

/* line 321, ../_recording-details.scss */
.export-btn a {
  background: #0e0e52;
  border-radius: 5px;
  font-family: "Lato";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  color: #ffffff;
  padding: 15px 15px;
}

/* line 334, ../_recording-details.scss */
.add-item-btn {
  width: 100% !important;
  background-color: #0e0e52 !important;
  border-radius: 5px !important;
  color: white !important;
  padding: 9px 12px !important;
}

@media (max-width: 991px) {
  /* line 343, ../_recording-details.scss */
  .side-bar {
    padding: 10px;
  }

  /* line 347, ../_recording-details.scss */
  .work-details-wrap {
    padding: 10px;
  }
}
/* line 352, ../_recording-details.scss */
.form-check {
  margin-top: 2px;
}

/* line 356, ../_recording-details.scss */
.progress {
  height: 6px;
  width: 200px;
  float: right;
  margin-top: 8px;
}

@media (max-width: 768px) {
  /* line 364, ../_recording-details.scss */
  .progress {
    margin-bottom: 20px;
  }
}
/* line 369, ../_recording-details.scss */
.form-control {
  border: 1px solid #0e0e52 !important;
}

/* line 373, ../_recording-details.scss */
.nav-item button {
  font-family: "Lato";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #444444;
}

/* line 383, ../_recording-details.scss */
.r-label {
  margin-bottom: 10px;
  font-family: "Lato" !important;
  font-style: normal;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 17px !important;
  /* identical to box height */
  color: #444444 !important;
}

/* line 394, ../_recording-details.scss */
.form-check {
  border: 2px solid #275f91 !important;
  padding-left: 0px;
  border-radius: 5px;
}

/* line 400, ../_recording-details.scss */
.radio-btn-s {
  background-color: white;
  color: #0e0e52 !important;
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  padding: 12px;
  border: none !important;
  border-radius: 5px;
}

/* line 413, ../_recording-details.scss */
.popup-heading {
  font-family: "Lato";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #444444;
}

/* line 422, ../_recording-details.scss */
.modal-body input[type="text"] {
  width: 100%;
  /*     background: #eee;
border-radius: 5px; */
}

/* line 428, ../_recording-details.scss */
.modal-body .form-check .form-check-input {
  margin-left: 0.5em;
  margin-right: 0.5em;
  background-color: rgba(196, 196, 196, 0.19) !important;
}

/* line 434, ../_recording-details.scss */
.modal-body .form-check {
  border: none !important;
  padding-left: 0px;
  border-radius: none;
  margin-top: 20px;
}

/* line 441, ../_recording-details.scss */
.check-border {
  padding: 10px !important;
}

/* line 445, ../_recording-details.scss */
.modal-body .writer-save-btn {
  width: 103.65px;
  height: 45.56px;
  background: #0e0e52;
  border-radius: 5px;
  padding: 14px;
}

/* line 453, ../_recording-details.scss */
.modal-body .record-save-btn {
  width: 164px !important;
  height: 46px !important;
}

/* line 458, ../_recording-details.scss */
.record-popover .buttons {
  padding-top: 20px !important;
}

/* line 462, ../_recording-details.scss */
.modal-body .record-popover {
  margin-top: 20px;
}

/* line 466, ../_recording-details.scss */
.record-popover input[type="text"] {
  height: 60px;
}

/* line 470, ../_recording-details.scss */
.form-check-input:checked[type="checkbox"] {
  background: url("../../img/check.svg") no-repeat left top;
  background-color: rgba(196, 196, 196, 0.19);
}

/* line 475, ../_recording-details.scss */
.form-check-input {
  padding: 10px 10px;
}

/* line 479, ../_recording-details.scss */
.form-check {
  margin-top: 20px;
}

/* line 483, ../_recording-details.scss */
.form-r-check-label {
  padding: 5px 7px;
}

/* line 487, ../_recording-details.scss */
.form-rd-check-label {
  padding-left: 7px;
  padding-right: 7px;
}

/* line 492, ../_recording-details.scss */
.add-record-label {
  font-family: "Lato";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #444444;
  margin-bottom: 20px;
}

/* line 503, ../_recording-details.scss */
.time-clock {
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 17px !important;
  color: #444444 !important;
}

/* line 510, ../_recording-details.scss */
.gap-t-10 {
  margin-top: 10px;
}

/* line 514, ../_recording-details.scss */
.gap-t-20 {
  margin-top: 20px;
}

/* line 518, ../_recording-details.scss */
.gap-b-10 {
  margin-bottom: 10px;
}

/* line 522, ../_recording-details.scss */
.gap-tb-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* line 527, ../_recording-details.scss */
.visible-eye {
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}

/* line 533, ../_recording-details.scss */
.visible-eye p {
  align-self: center;
  margin-left: 10px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}

/* line 544, ../_recording-details.scss */
.modal h6 {
  border-bottom: none;
}

/* line 548, ../_recording-details.scss */
.back-btn {
  width: 103.65px !important;
  height: 45.56px;
  background: #ffffff !important;
  border: 2px solid #0e0e52 !important;
  border-radius: 5px !important;
  color: #0e0e52 !important;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  margin-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding: 12px 0px !important;
}

/* line 564, ../_recording-details.scss */
.modal-save-btn {
  width: 103.65px !important;
  height: 45.56px;
  background: #0e0e52 !important;
  border: 2px solid #0e0e52 !important;
  border-radius: 5px !important;
  color: white !important;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding: 12px 0px !important;
}

/* line 579, ../_recording-details.scss */
.sec-gap {
  margin-top: 20px;
}

/*documeent tab*/
/* line 585, ../_recording-details.scss */
.dropdown-toggle::after {
  content: none;
}

/* line 589, ../_recording-details.scss */
.r-add-new-btn {
  width: 95px !important;
}

/* line 593, ../_recording-details.scss */
.dropdown-release .dropdown-menu.show {
  border: 1px solid black !important;
  box-shadow: #aaaaaa !important;
}

/* line 598, ../_recording-details.scss */
.documnets-wrap {
  background-color: white;
  padding: 30px;
}

@media (max-width: 425px) {
  /* line 604, ../_recording-details.scss */
  .documnets-wrap {
    padding: 10px;
  }

  /* line 608, ../_recording-details.scss */
  .sortby {
    margin-right: 5px !important;
    margin-top: 14px !important;
  }
}
/* line 614, ../_recording-details.scss */
.r-sortby {
  margin-right: 10px;
  margin-top: 15px;
}

/* line 619, ../_recording-details.scss */
.nav-tabs {
  border: none !important;
  border-radius: none !important;
}

/* line 624, ../_recording-details.scss */
.nav-tabs .nav-link {
  border: 1px solid rgba(170, 170, 170, 0.32);
}

@media (max-width: 375px) {
  /* line 629, ../_recording-details.scss */
  .nav-tabs .nav-link {
    padding: 10px 20px;
  }
}
/* line 634, ../_recording-details.scss */
.parentTabs .nav-tabs {
  margin-left: 20px;
}

/* line 638, ../_recording-details.scss */
.nav-li {
  padding: 0%;
  width: 100%;
  justify-content: end;
}

@media (max-width: 768px) {
  /* line 645, ../_recording-details.scss */
  .btn-wrap {
    text-align: center;
  }

  /* line 649, ../_recording-details.scss */
  .sortby-wrap {
    margin: 20px 0px;
  }

  /* line 653, ../_recording-details.scss */
  .nav-li {
    justify-content: center;
  }
}
/* line 658, ../_recording-details.scss */
.r-document-table {
  width: 100%;
  overflow-y: auto;
  margin-top: 50px;
}

/* line 664, ../_recording-details.scss */
.r-document-table tr {
  border-bottom: 1px solid #eee !important;
}

/* line 668, ../_recording-details.scss */
.r-document-table table td {
  padding: 20px !important;
  font-family: "Lato";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  color: #aaaaaa;
}

/* line 680, ../_recording-details.scss */
.r-document-table table th {
  font-family: "Lato";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #444444;
  background-color: white !important;
  padding: 20px !important;
}

/* line 691, ../_recording-details.scss */
.table-heading {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #444444;
  margin-bottom: 10px;
}

/* line 699, ../_recording-details.scss */
.fa-folder {
  font-size: 22px;
  margin-right: 5px;
}

/* line 704, ../_recording-details.scss */
.create-folder-btn {
  width: 91px;
  background: #0e0e52;
  border-radius: 5px;
  padding: 10px;
}

/*file css*/
/* line 713, ../_recording-details.scss */
.wrapper {
  padding: 0px;
}

/* line 717, ../_recording-details.scss */
.box {
  position: relative;
  background: #ffffff;
  width: 100%;
}

/* line 723, ../_recording-details.scss */
.box-header {
  color: #444;
  display: block;
  padding: 10px;
  position: relative;
  border-bottom: 1px solid #f4f4f4;
  margin-bottom: 10px;
}

/* line 732, ../_recording-details.scss */
.box-tools {
  position: absolute;
  right: 10px;
  top: 5px;
}

/* line 738, ../_recording-details.scss */
.dropzone-wrapper {
  border: none;
  color: #92b0b3;
  position: relative;
  height: 280px;
}

/* line 745, ../_recording-details.scss */
.dropzone-desc {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  text-align: center;
  width: 100%;
  top: 50px;
  font-size: 16px;
}

/* line 756, ../_recording-details.scss */
.dropzone,
.dropzone:focus {
  position: absolute;
  outline: none !important;
  width: 100%;
  height: 150px;
  cursor: pointer;
  opacity: 0;
}

/* line 766, ../_recording-details.scss */
.dropzone-wrapper:hover,
.dropzone-wrapper.dragover {
  background: none;
}

/* line 771, ../_recording-details.scss */
.preview-zone {
  text-align: center;
  display: none;
}

/* line 776, ../_recording-details.scss */
.preview-zone .box {
  box-shadow: none;
  border-radius: 0;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  /* line 783, ../_recording-details.scss */
  .track-wrap {
    margin-bottom: 0;
  }
}
/* line 788, ../_recording-details.scss */
.add-new-link {
  font-weight: 600 !important;
  font-size: 14px !important;
  line-height: 17px !important;
  color: #0e0e52 !important;
  padding: 3px;
  text-align: right;
}

/* // Input Styles */
/* line 799, ../_recording-details.scss */
.input-file input[type="file"] {
  visibility: hidden;
  width: 1px;
  height: 1px;
  display: none;
}

/* line 806, ../_recording-details.scss */
.input-file .btn {
  font-weight: 600 !important;
  font-size: 14px !important;
  line-height: 17px !important;
  color: #0e0e52 !important;
  padding: 0px;
  text-align: right;
}

/* line 815, ../_recording-details.scss */
.input-file .file-selected {
  font-size: 10px;
  text-align: right;
  width: 100%;
  display: block;
  margin-top: 5px;
}

/* radio style */
/* line 825, ../_recording-details.scss */
.radio-box {
  border: 2px solid #275f91 !important;
  padding-left: 0px;
  border-radius: 5px;
}

/* line 831, ../_recording-details.scss */
.radio-box label {
  position: relative;
  cursor: pointer;
  margin-bottom: 0px !important;
}

/* line 837, ../_recording-details.scss */
.radio-box label input {
  display: none;
}

/* line 841, ../_recording-details.scss */
.radio-box label span {
  position: relative;
  display: inline-block;
  font-size: 14px;
  padding: 12px;
  color: #aaaaaa;
}

/* line 849, ../_recording-details.scss */
.radio-box label input:checked ~ span {
  color: white;
  background-color: #0e0e52;
}

/* line 854, ../_recording-details.scss */
.radio-box label input:checked ~ span.yes {
  color: white;
  border-radius: 4px 0px 0px 4px;
}

/* line 859, ../_recording-details.scss */
.radio-box label input:checked ~ span.yes:before,
.radio-box label input:checked ~ span.yes:after {
  background: #0e0e52;
}

/* line 864, ../_recording-details.scss */
.radio-box label input:checked ~ span.no {
  color: white;
  border-radius: 0px 4px 4px 0px;
}

/* line 869, ../_recording-details.scss */
.radio-box label input:checked ~ span.no:before,
.radio-box label input:checked ~ span.no:after {
  background: #0e0e52;
}

/* line 874, ../_recording-details.scss */
.tagify {
  border-radius: 5px;
  border-color: rgba(245, 245, 245, 0.36) !important;
}

/* line 879, ../_recording-details.scss */
.tag-input {
  min-height: 100px;
  width: 100%;
  padding: 5px 5px 15px 5px !important;
  background-color: rgba(245, 245, 245, 0.36);
}

/* line 886, ../_recording-details.scss */
.tagify--focus {
  border-color: #0e0e52 !important;
}

@media (min-width: 576px) {
  /* line 891, ../_recording-details.scss */
  .modal-dialog {
    max-width: 650px !important;
  }
}
/* line 896, ../_recording-details.scss */
.sound-exchange-p {
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
  color: #275f91;
}

/* line 903, ../_recording-details.scss */
#SeText p {
  font-weight: 400;
  font-size: 14px;
  line-height: 32px;
  color: #444444;
}

/* line 910, ../_recording-details.scss */
.modal-save-btn.btn-pay {
  width: auto !important;
  padding: 0 10px !important;
  margin-right: 10px;
}

/* line 916, ../_recording-details.scss */
.modal-save-btn.btn-add-card {
  background: #275f91 !important;
  width: auto !important;
  padding: 0 10px !important;
  border-color: #275f91 !important;
}

/* line 1, ../_dashboard.scss */
.box {
  background: #19326e;
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 20px;
}

/* line 8, ../_dashboard.scss */
.box div {
  background: rgba(60, 164, 198, 0.38);
  border-radius: 5px;
  padding: 5px;
  width: 36px;
  text-align: center;
  margin-bottom: 9px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 21, ../_dashboard.scss */
.bg {
  background: url("../../img/bg.png") no-repeat left top !important;
  text-align: center;
  padding: 35px;
  background-size: cover !important;
  border-radius: 8px;
}

/* line 29, ../_dashboard.scss */
.bg-listing {
  color: #fff;
}

/* line 33, ../_dashboard.scss */
.bg-listing .list {
  font-size: 24px;
  color: #fff;
  margin: 50px 0 35px 0;
}

/* line 39, ../_dashboard.scss */
.box label {
  color: #fff !important;
  font-size: 16px;
  line-height: 19px;
  padding: 0 0 5px;
  display: block;
}

/* line 47, ../_dashboard.scss */
.box span {
  color: #fff;
  font-size: 24px;
  line-height: 22px;
  padding: 0 0 0px;
  display: block;
}

/* line 55, ../_dashboard.scss */
.contacts {
  padding: 30px 0 0;
}

/* line 59, ../_dashboard.scss */
.contacts img {
  float: left;
  margin: 3px 10px 3px;
}

/* line 64, ../_dashboard.scss */
.contacts li a {
  display: block;
  text-decoration: none;
}

/* line 69, ../_dashboard.scss */
.contacts li {
  float: left;
  border: 1px solid #cccccc;
  border-radius: 5px;
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}

/* line 78, ../_dashboard.scss */
.table_th {
  font-size: 16px !important;
  background: rgba(170, 170, 170, 0.09) !important;
  color: #275f91;
}

/* line 84, ../_dashboard.scss */
.table_td {
  text-align: center;
  font-size: 16px !important;
}

@media only screen and (max-width: 767px) {
  /* line 90, ../_dashboard.scss */
  .bg {
    padding: 35px 10px;
  }

  /* line 94, ../_dashboard.scss */
  .bg-listing .list {
    line-height: 30px;
  }

  /* line 98, ../_dashboard.scss */
  .contacts li {
    padding: 10px 0;
  }

  /* line 102, ../_dashboard.scss */
  .contacts img {
    float: left;
    margin: 3px 10px 3px 0;
  }
}
/* line 108, ../_dashboard.scss */
.add-contact-btn,
.add-contact-btn:active,
.add-contact-btn:focus {
  background: #0e0e52 !important;
  border-radius: 5px;
  padding: 8px 24px !important;
}

/* line 116, ../_dashboard.scss */
.form-check-input:checked[type="checkbox"] {
  background: url("../../img/check.svg") no-repeat left top;
  background-color: rgba(196, 196, 196, 0.19);
}

/* line 121, ../_dashboard.scss */
.form-check-input {
  padding: 10px 10px !important;
}

/* line 125, ../_dashboard.scss */
.form-check {
  margin-top: 20px;
}

/* line 129, ../_dashboard.scss */
.form-dashboard-label {
  padding: 5px 7px !important;
}

/* line 133, ../_dashboard.scss */
.form-cover {
  border: 1px solid rgba(196, 196, 196, 0.2);
  padding: 20px;
  margin-bottom: 20px;
}

/* line 139, ../_dashboard.scss */
form h6 {
  font-size: 16px;
  color: #275f91;
  padding-top: 0px !important;
  margin-top: 0px !important;
  border-bottom: none !important;
}

/* line 147, ../_dashboard.scss */
input {
  background-color: rgba(245, 245, 245, 0.61) !important;
}

/* line 151, ../_dashboard.scss */
.sec-gap {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* line 156, ../_dashboard.scss */
.field {
  width: 100%;
  margin-bottom: 20px;
}

/* line 161, ../_dashboard.scss */
.back-btn {
  width: 103.65px !important;
  height: 45.56px;
  background: #ffffff !important;
  border: 2px solid #0e0e52 !important;
  border-radius: 5px !important;
  color: #0e0e52 !important;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  margin-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding: 12px 0px !important;
}

/* line 177, ../_dashboard.scss */
.save-btn {
  width: 103.65px !important;
  height: 45.56px;
  background: #0e0e52 !important;
  border: 2px solid #0e0e52 !important;
  border-radius: 5px !important;
  color: white !important;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding: 12px 0px !important;
}

/* line 192, ../_dashboard.scss */
div.buttons {
  padding: 28px 0 30px !important;
}

/* line 196, ../_dashboard.scss */
.select-field {
  border: 1px solid #3ca4c6 !important;
}

/* line 200, ../_dashboard.scss */
.check-border {
  border: 1px solid #aaaaaa !important;
}

/* line 204, ../_dashboard.scss */
.tab-text {
  font-size: 14px !important;
  margin-left: 15px;
}

@media (max-width: 425px) {
  /* line 210, ../_dashboard.scss */
  .card {
    padding: 10px;
  }
}
/* line 215, ../_dashboard.scss */
.black-color {
  color: black !important;
}

/* line 219, ../_dashboard.scss */
.cc-edit input {
  border: 0 !important;
  background-color: transparent !important;
}

/* line 224, ../_dashboard.scss */
.catalogDropDown.react-select {
  width: auto;
}

/* line 1, ../_login.scss */
.login {
  background: url("../../img/login.jpg") no-repeat left center !important;
  background-size: cover !important;
  background-attachment: fixed !important;
  min-height: 100vh;
}

/* line 8, ../_login.scss */
.login-wrapper {
  padding-top: 5%;
}

/* line 12, ../_login.scss */
.login-email {
  background: url("../../img/email.png") no-repeat 12px center;
  padding-left: 45px !important;
}

/* line 17, ../_login.scss */
.login-password {
  background: url("../../img/pass.png") no-repeat 12px center;
  padding-left: 45px !important;
}

/* line 22, ../_login.scss */
.login-wrapper h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 58px;
  color: #fff;
  padding-bottom: 22px;
  padding-top: 40px;
}

/* line 31, ../_login.scss */
.login-wrapper h4 {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
}

/* line 38, ../_login.scss */
.login-form {
  background: #fff;
  padding: 40px 40px 70px 40px;
  max-width: 418px;
  float: right;
  width: 100%;
}

/* line 46, ../_login.scss */
.login-form h2 {
  padding-bottom: 28px;
}

/* line 50, ../_login.scss */
.login-heading {
  padding-bottom: 45px;
  padding-top: 40px;
}

/* line 55, ../_login.scss */
.login-form .btn-primary {
  color: #fff;
  background: #0E0E52;
  width: 100%;
  padding: 12px;
  border: 0;
  margin-top: 30px;
}

/* line 64, ../_login.scss */
a.forgot {
  font-family: 'Lato', sans-serif !important;
  font-size: 12px;
  line-height: 16px;
  color: #3CA4C6;
  text-decoration: none;
  float: right;
}

/* line 73, ../_login.scss */
.account {
  padding-top: 6px;
}

/* line 77, ../_login.scss */
.ancortag {
  font-family: 'Lato', sans-serif !important;
  line-height: 16px;
  color: #3CA4C6;
  text-decoration: none;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  /* line 87, ../_login.scss */
  .login-form {
    background: #fff;
    padding: 20px 30px 40px 20px;
    max-width: 418px;
    float: none;
    width: 100%;
    margin: 40px auto 0;
  }

  /* line 96, ../_login.scss */
  .login-wrapper h1 {
    font-weight: 700;
    font-size: 35px;
    line-height: 42px;
    color: #fff;
    padding-bottom: 22px;
    padding-top: 40px;
  }
}
/* line 1, ../_register.scss */
.fa-solid {
  font-size: 18px;
  color: #275f91;
}

/* line 6, ../_register.scss */
.fa-eye {
  margin-right: 5px;
}

/* line 10, ../_register.scss */
.content-wrapper {
  padding-bottom: 0px;
}

/* line 14, ../_register.scss */
.table {
  margin-bottom: 0px;
}

/* line 18, ../_register.scss */
div.white {
  background: #fff;
  background-size: cover !important;
  background-attachment: fixed !important;
  min-height: 100vh;
}

/* line 25, ../_register.scss */
.priceplans {
  background: url(../../img/signup-bg.jpg) no-repeat left top;
  padding: 35px 0 160px;
  background-size: cover;
}

/* line 31, ../_register.scss */
.priceplans h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 58px;
  color: #fff;
  padding-bottom: 22px;
  padding-top: 50px;
  text-align: center;
}

/* line 41, ../_register.scss */
.priceplans p {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  text-align: center;
}

/* line 49, ../_register.scss */
.tab-container-one {
  position: relative;
}

/* line 53, ../_register.scss */
.nav-link {
  font: -webkit-control;
}

/* line 57, ../_register.scss */
.tab-container-one .nav-tabs {
  border-bottom: 0;
  position: absolute;
  top: -90px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 200px;
  background: #fff;
  border-radius: 5px;
  padding: 5px 5px;
}

/* line 70, ../_register.scss */
.upgrade.tab-container-one .nav-tabs {
  top: -10px;
  width: 220px;
}

/* line 75, ../_register.scss */
.plans {
  border: solid 1px #fff;
  border-radius: 5px;
  border-top: solid 6px #ddd;
  padding: 20px;
  margin-top: 40px;
}

/* line 83, ../_register.scss */
.plans:hover {
  border: solid 1px #ddd;
  border-radius: 5px;
  border-top: solid 6px #ddd;
  box-shadow: 1px 1px 6px #eee;
}

/* line 90, ../_register.scss */
.plans label {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: #444;
  display: block;
  padding-bottom: 16px;
}

/* line 99, ../_register.scss */
.plans span {
  font-size: 20px;
}

/* line 103, ../_register.scss */
.plans strong {
  font-size: 36px;
  line-height: 43px;
  font-weight: 900;
  color: #444;
}

/* line 111, ../_register.scss */
.plans ul li {
  background: url("../../img/tick.png") no-repeat left 5px !important;
  padding-left: 30px;
  padding-top: 7px;
  padding-bottom: 7px;
}

/* line 118, ../_register.scss */
a.signup {
  display: block;
  margin: 20px auto;
  text-decoration: none;
  color: #3CA4C6;
  text-align: center;
  background: #000;
  background: #fff;
  padding: 10px;
  width: 120px;
  border-radius: 5px;
  border: solid 1px #3CA4C6;
}

/* line 133, ../_register.scss */
.plans:hover a.signup {
  display: block;
  border: solid 1px #3CA4C6;
  text-decoration: none;
  color: #fff;
  text-align: center;
  background: #000;
  background: #3CA4C6;
  padding: 10px;
  width: 120px;
  border-radius: 5px;
}

/* line 146, ../_register.scss */
.plans span.trial {
  font-size: 14px;
  background: rgba(60, 164, 198, 0.09);
  padding: 13px 20px;
  display: block;
  line-height: 18px !important;
  color: #51aecc;
  margin-top: 10px;
  min-height: 63px;
  border-radius: 5px;
}

/* line 158, ../_register.scss */
.plans span.trial.white {
  font-size: 14px;
  background: #fff;
  padding: 13px 20px;
  display: block;
  line-height: 18px !important;
  color: #51aecc;
  margin-top: 10px;
  min-height: 63px;
}

/* line 169, ../_register.scss */
.plans span.trial strong {
  font-size: 14px;
  line-height: 18px !important;
  color: #51aecc;
}

@media only screen and (max-width: 767px) {
  /* line 177, ../_register.scss */
  .priceplans h1 {
    font-weight: 700;
    font-size: 35px;
    line-height: 42px;
    color: #fff;
    padding-bottom: 22px;
    padding-top: 50px;
    text-align: center;
  }

  /* line 187, ../_register.scss */
  .plans span {
    font-size: 20px;
    text-align: center;
    display: block;
  }

  /* line 193, ../_register.scss */
  .plans span.trial {
    min-height: 40px;
  }

  /* line 197, ../_register.scss */
  .plans span.trial.white {
    min-height: 40px;
  }
}
/* line 203, ../_register.scss */
.back {
  margin-bottom: 10px;
  margin-right: 1%;
  height: 45.56px;
}

/* line 209, ../_register.scss */
.signup-screens {
  background: #3CA4C6;
  padding: 60px 0;
  min-height: 100vh;
}

/* line 215, ../_register.scss */
.signup-box {
  background: #fff;
  padding: 5% 7%;
  margin-top: 50px;
}

/* line 222, ../_register.scss */
.plan-details {
  float: right;
  font-size: 14px;
  background: rgba(60, 164, 198, 0.09);
  padding: 13px 20px;
  display: block;
  line-height: 18px !important;
  color: #51aecc;
  margin-top: 0px;
  border-radius: 5px;
  margin: 0 10px;
  font-weight: 700;
}

/* line 236, ../_register.scss */
.nav-details {
  text-align: center;
  padding-top: 60px;
}

/* line 241, ../_register.scss */
.signup-box form {
  width: 70%;
  margin: 70px auto 0;
}

/* line 246, ../_register.scss */
.nav-details li {
  display: inline-block;
  padding: 5px 5px;
}

/* line 251, ../_register.scss */
.nav-details li.active {
  color: #3CA4C6;
}

/* line 255, ../_register.scss */
.nav-details li.active span {
  background: #3CA4C6;
  color: #fff;
  border: solid 1px #3CA4C6;
}

/* line 262, ../_register.scss */
.nav-details li img {
  display: inline-block;
  padding: 0 0px 0 5px;
}

/* line 267, ../_register.scss */
.nav-details span {
  border: solid 1px;
  width: 10px;
  height: 10px;
}

/* line 273, ../_register.scss */
.nav-details span {
  border: solid 1px;
  width: 28px;
  height: 28px;
  display: inline-block;
  border-radius: 50px;
  padding-top: 4px;
  margin-right: 5px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  /* line 288, ../_register.scss */
  .signup-box {
    background: #fff;
    padding: 5% 3%;
    margin-top: 50px;
  }

  /* line 294, ../_register.scss */
  .plan-details {
    float: left;
    font-size: 14px;
    width: 200px;
    text-align: center;
    margin: 10px 10px 10px 0;
  }

  /* line 302, ../_register.scss */
  .signup-box form {
    width: 100%;
    margin: 70px auto 0;
  }

  /* line 307, ../_register.scss */
  .nav-details {
    text-align: left;
    padding-top: 60px;
  }

  /* line 312, ../_register.scss */
  div.buttons {
    padding: 30px 0 30px;
  }
}
/* line 4, ../_registration.scss */
.registration .item img {
  max-width: 100%;
  height: 100%;
}

/* line 8, ../_registration.scss */
.registration .head {
  margin-top: 50px;
  color: #656565;
  font-family: gotham-med, sans-serif;
  font-size: 16px;
}

/* line 17, ../_registration.scss */
.registration .item {
  border: 1px solid whitesmoke;
  color: #656565;
  height: 150px;
  overflow-y: hidden;
}

/* line 23, ../_registration.scss */
.registration .item h2, .registration .item .status {
  font-family: gotham-med, sans-serif;
  font-size: 18px;
  width: 100%;
  display: inline-block;
  position: relative;
}

/* line 30, ../_registration.scss */
.registration .regis {
  font-family: gotham-reg, sans-serif;
  font-size: 18px;
}

/* line 34, ../_registration.scss */
.registration .regis {
  font-family: gotham-reg, sans-serif;
  font-size: 18px;
}

/* line 38, ../_registration.scss */
.registration .item label {
  font-family: gotham-med, sans-serif;
  font-size: 18px;
  font-weight: normal;
}

/* line 43, ../_registration.scss */
.registration .item .detail span {
  font-size: 18px;
}

/* line 46, ../_registration.scss */
.registration .item.complete {
  border: 1px solid #438a98;
  color: #438a98 !important;
}

/* line 50, ../_registration.scss */
.registration .item .action-box {
  border-left: 1px solid whitesmoke;
  font-size: 18px;
  text-align: center;
  float: right;
  padding-right: 0;
  padding-top: 60px;
  font-family: gotham-med, sans-serif;
  cursor: pointer;
}

/* line 60, ../_registration.scss */
.registration .item.complete .action-box {
  border-left: 1px solid #438a98;
}

/* line 63, ../_registration.scss */
.registration .col {
  padding: 50px 20px 0 0;
  height: 150px;
}

/* line 67, ../_registration.scss */
.registration .add-registration {
  width: 250px;
  font-size: 16px;
}

/* line 71, ../_registration.scss */
.registration .registration-image {
  width: 150px;
  height: 150px;
  position: relative;
}

/* line 76, ../_registration.scss */
.registration .title-header {
  width: 150px;
}

/* line 79, ../_registration.scss */
.registration .view-button, .registration .edit-button,
.registration .delete-button, .registration .submit-button {
  display: none;
  cursor: pointer;
}

/* line 84, ../_registration.scss */
.registration .draft .action-box .delete-button {
  border: 1px solid #438a98;
  color: #438a98;
  height: 73px;
}

/* line 89, ../_registration.scss */
.registration .complete .view-button {
  display: block;
}

/* line 92, ../_registration.scss */
.registration .ready .submit-button {
  display: block;
  color: #fff;
}

/* line 96, ../_registration.scss */
.registration .draft .delete-button, .registration .draft .edit-button {
  display: block;
  height: 75px;
  padding-top: 25px;
}

/* line 101, ../_registration.scss */
.registration .ready .action-box {
  background: #438a98;
}

/* line 104, ../_registration.scss */
.registration .draft .action-box {
  padding-top: 0;
}

/* line 107, ../_registration.scss */
.registration .complete-check {
  background: rgba(67, 138, 152, 0.7);
  width: 150px;
  height: 150px;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

/* line 116, ../_registration.scss */
.registration .complete-check .fa {
  font-size: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  margin-top: -20px;
  margin-left: -20px;
}

/* line 125, ../_registration.scss */
.registration .complete .complete-check {
  display: block;
}

/* line 128, ../_registration.scss */
.registration .song-recording-list .item {
  height: 100px;
  width: 50%;
  border-left: 1px solid whitesmoke;
  position: relative;
  cursor: pointer;
}

/* line 135, ../_registration.scss */
.registration .song-recording-list .question-checkbox .item {
  width: 49.1%;
}

/* line 138, ../_registration.scss */
.registration .song-recording-list .st-1 .item.last {
  margin-right: 0px;
}

/* line 141, ../_registration.scss */
.registration .song-recording-list .item .status {
  float: left;
  height: 100px;
  width: 15px;
  background: #42A5CA;
}

/* line 147, ../_registration.scss */
.registration .song-recording-list .item .status .with-recording {
  float: left;
  height: 50px;
  width: 15px;
  background: #B38BCD;
  bottom: 0;
  position: absolute;
}

/* line 155, ../_registration.scss */
.registration .song-recording-list img.song-image {
  float: left;
  height: 100px;
  width: 100px;
  margin-left: -1px;
  background: #ccc;
  margin: 0 auto;
}

/* line 163, ../_registration.scss */
.registration .song-recording-list .name {
  float: left;
  color: #666666;
  font-family: gotham-med, sans-serif;
  font-size: 18px;
  font-weight: normal;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  padding-left: 20px;
  line-height: 1.4;
}

/* line 175, ../_registration.scss */
.registration .song-recording-list-container {
  margin-top: 10px;
}

/* line 178, ../_registration.scss */
.registration .close {
  float: left;
  color: #666666;
  font-family: gotham-med, sans-serif;
  font-size: 17px;
  opacity: 1;
  margin-top: 50px;
  font-weight: normal;
}

/* line 187, ../_registration.scss */
.registration .close img {
  width: 15px;
  height: 15px;
  position: relative;
  top: -2px;
  margin-right: 5px;
}

/* line 195, ../_registration.scss */
.registration .breadcrumb, .registration .breadcrumb-separator {
  background: #fff;
  padding: 0;
  width: 100%;
  height: 50px;
}

/* line 201, ../_registration.scss */
.registration .breadcrumb .item, .registration .breadcrumb-separator .item {
  font-family: gotham-reg, sans-serif;
  font-size: 18px;
  padding: 15px 20px 15px 40px;
  line-height: 22px;
  float: left;
  height: auto;
  position: relative;
  overflow-y: inherit;
  background-color: #ffffff;
  cursor: pointer;
  width: 25%;
  text-align: center;
  user-select: none;
}
/* line 216, ../_registration.scss */
.registration .breadcrumb .item.disabled, .registration .breadcrumb-separator .item.disabled {
  cursor: default;
}

/* line 220, ../_registration.scss */
.triangle {
  position: absolute;
  border: none;
  right: 0px;
  top: 24px;
  background-color: #ffffff;
  z-index: 9;
}

/* line 228, ../_registration.scss */
.item.active .triangle::after {
  border-left-color: #42A5CA;
}

/* line 231, ../_registration.scss */
.triangle:after, .triangle:before {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

/* line 242, ../_registration.scss */
.triangle:after {
  border-color: rgba(136, 183, 213, 0);
  border-left-color: #fff;
  border-width: 24px;
  margin-top: -24px;
}

/* line 248, ../_registration.scss */
.triangle:before {
  border-color: rgba(204, 204, 204, 0);
  border-left-color: #ccc;
  border-width: 25px;
  margin-top: -25px;
}

/* line 254, ../_registration.scss */
.registration .breadcrumb .item.active, .registration .breadcrumb-separator .item.active {
  background: #42A5CA;
  color: #fff;
}

/* line 258, ../_registration.scss */
.registration .add-registration-header.grey {
  color: #b3b3b3;
}

/* line 264, ../_registration.scss */
.dashboard-content .table .header {
  display: table-cell;
  margin: 0;
  font-size: 18px;
  color: #438a98;
  font-weight: normal;
}

/* line 274, ../_registration.scss */
.isrc-registration-confirmation strong {
  font-family: gotham-med, sans-serif;
}

/* line 279, ../_registration.scss */
#myTable,
.table {
  display: table;
}

/* line 284, ../_registration.scss */
.table__thead {
  display: table-header-group;
}
/* line 289, ../_registration.scss */
.table__thead.sortable .table__th,
.table__thead.sortable th {
  cursor: pointer;
  user-select: none;
}

/* line 297, ../_registration.scss */
.table__tbody {
  display: table-row-group;
}

/* line 301, ../_registration.scss */
.table__tr {
  display: flex;
}
/* line 306, ../_registration.scss */
.table__tr.col-2 .table__td,
.table__tr.col-2 .table__th {
  width: 50%;
}
/* line 312, ../_registration.scss */
.table__tr.col-3 .table__td,
.table__tr.col-3 .table__th {
  width: 33.33333%;
}
/* line 318, ../_registration.scss */
.table__tr.col-4 .table__td,
.table__tr.col-4 .table__th {
  width: 25%;
}
/* line 324, ../_registration.scss */
.table__tr.col-5 .table__td,
.table__tr.col-5 .table__th {
  width: 20%;
}
/* line 330, ../_registration.scss */
.table__tr.col-6 .table__td,
.table__tr.col-6 .table__th {
  width: 16.66667%;
}

/* line 337, ../_registration.scss */
.table__th,
.table__td {
  font-size: 14px;
  line-height: 1.57;
  color: #275F91;
  padding: 14px 7px;
  display: inline-block;
  margin: 0 auto;
  line-height: 1.4;
}

/* line 349, ../_registration.scss */
.table__thead .table__tr,
.table thead tr {
  color: #438a98;
  background-color: rgba(170, 170, 170, 0.09) !important;
  font-weight: normal;
  padding: 0 7px;
}

/* line 357, ../_registration.scss */
.table__thead .table__th,
.table thead tr th {
  font-weight: normal;
  vertical-align: bottom;
  margin: auto;
  padding: 0 7px;
}
/* line 364, ../_registration.scss */
.table__thead .table__th.disabled,
.table thead tr th.disabled {
  cursor: default;
}
/* line 368, ../_registration.scss */
.table__thead .table__th .distribution-col__title,
.table__thead .table__th .registration-col__title,
.table thead tr th .distribution-col__title,
.table thead tr th .registration-col__title {
  position: relative;
}
/* line 373, ../_registration.scss */
.table__thead .table__th .distribution-col__icon,
.table__thead .table__th .registration-col__icon,
.table thead tr th .distribution-col__icon,
.table thead tr th .registration-col__icon {
  position: absolute;
  right: -25px;
  top: -4px;
}
/* line 382, ../_registration.scss */
.table__thead .table__th.active .distribution-col__title,
.table__thead .table__th.active .registration-col__title,
.table thead tr th.active .distribution-col__title,
.table thead tr th.active .registration-col__title {
  border-bottom: 2px solid;
  padding-bottom: 4px;
}
/* line 388, ../_registration.scss */
.table__thead .table__th.active i,
.table thead tr th.active i {
  font-size: 30px;
  top: 3px;
  position: relative;
}
/* line 395, ../_registration.scss */
.table__thead .table__th i,
.table thead tr th i {
  font-size: 22px;
  position: relative;
  left: 5px;
}

/* line 402, ../_registration.scss */
.table__tbody .table__tr,
.table tbody tr {
  color: #656565;
  background-color: rgba(170, 170, 170, 0.09) !important;
  font-family: gotham-reg, sans-serif;
  font-size: 16px !important;
  padding: 0 7px;
}
/* line 410, ../_registration.scss */
.table__tbody .table__tr td,
.table tbody tr td {
  line-height: 1.4;
}

/* line 415, ../_registration.scss */
.table tbody tr td,
.table__tbody .table__tr .table__td {
  line-height: 1.4;
  align-self: center;
  text-align: center;
}

/* line 422, ../_registration.scss */
.filter-item {
  float: left;
  width: 300px;
}

/* line 426, ../_registration.scss */
.filter {
  margin-top: 40px;
  display: inline-block;
}

/* line 430, ../_registration.scss */
.filter-item label {
  display: inline-block;
  width: 100%;
  font-weight: normal;
  font-size: 18px;
  font-family: gotham-med, sans-serif;
}

/* line 437, ../_registration.scss */
.filter-item select {
  display: inline-block;
  width: 290px;
  padding: 5px;
  height: 40px;
  border: 1px solid #699DB7;
  font-size: 16px;
  margin-top: 15px;
}

/* line 446, ../_registration.scss */
.registration .song-recording-list .recording-info {
  display: block;
  float: left;
}

/* line 450, ../_registration.scss */
.registration .item .back {
  float: left;
  width: 100px;
  height: 100px;
  text-align: center;
  padding-top: 35px;
  border-right: 2px solid #699DB7;
}

/* line 458, ../_registration.scss */
.registration .item .recording-item .back {
  float: left;
  width: 100px;
  height: 100px;
  text-align: center;
  padding-top: 35px;
  border-right: 2px solid #B38BCD;
}

/* line 466, ../_registration.scss */
.registration .item .next {
  float: right;
  width: 100px;
  height: 100px;
  text-align: center;
  padding-top: 35px;
  background: #42A5CA;
}

/* line 474, ../_registration.scss */
.registration .item .recording-item .next {
  float: right;
  width: 100px;
  height: 100px;
  text-align: center;
  padding-top: 35px;
  background: #B38BCD;
}

/* line 482, ../_registration.scss */
.registration .item .recording-info {
  display: inline-block;
  width: calc(100% - 300px);
  height: 100px;
}

/* line 487, ../_registration.scss */
.registration .item .back i, .registration .item .next i {
  font-size: 26px;
}

/* line 490, ../_registration.scss */
.registration .item .next i {
  color: #fff;
}

/* line 493, ../_registration.scss */
.registration .song-recording-list .item {
  width: 100%;
  margin-top: -1px;
}

/* line 497, ../_registration.scss */
.registration .song-recording-list .item.song-item {
  border: 1px solid #d8d8d8;
}

/* line 500, ../_registration.scss */
.registration .song-recording-list .item.recording-item {
  border: 1px solid #B38BCD;
}

/* line 503, ../_registration.scss */
.registration .song-recording-list .recording-style {
  border-right: 1px solid #B38BCD !important;
}

/* line 506, ../_registration.scss */
.registration .song-recording-list .recording-style .back {
  border-right: 2px solid #B38BCD !important;
}

/* line 509, ../_registration.scss */
.registration .song-recording-list-container .item.focus .next {
  background: #42A5CA;
}

/* line 512, ../_registration.scss */
.registration .song-recording-list-container .recording-info.no-data {
  margin-left: 0;
  border-right: 1px solid #699DB7;
  width: calc(100% - 100px);
}

/* line 517, ../_registration.scss */
.registration .song-recording-list .recording-item .recording-info .name {
  color: #B38BCD;
}

/* line 520, ../_registration.scss */
.registration .song-recording-list .song-item .name {
  color: #3b8296;
}

/* line 523, ../_registration.scss */
.registration .song-recording-list .recording-item .name label {
  font-size: 16px;
}

/* line 526, ../_registration.scss */
.registration .song-recording-list .song-item .name label {
  color: #378094;
}

/* line 529, ../_registration.scss */
.registration .song-recording-list .recording .name .text {
  font-family: gotham-light, sans-serif;
}

/* line 532, ../_registration.scss */
.registration .id {
  margin-top: 10px;
}

/* line 535, ../_registration.scss */
.registration .id-item {
  margin-left: 20px;
}

/* line 538, ../_registration.scss */
.registration .recording.focus .id-item {
  display: inline-block;
}

/* line 541, ../_registration.scss */
.registration .id-item:first-child {
  margin-left: 0px;
}

/* line 544, ../_registration.scss */
.registration .song-recording-list-container .focus .next {
  width: 100px;
}

/* line 547, ../_registration.scss */
.registration .song-recording-list .recording-style.focus .name {
  color: #B38BCD;
}

/* line 550, ../_registration.scss */
.registration .song-recording-list .recording-style.focus .name label {
  color: #B38BCD;
}

/* line 553, ../_registration.scss */
.registration .registration-type {
  margin-top: 14px;
}

/* line 556, ../_registration.scss */
.registration .registration-type .r-item {
  margin-bottom: 21px;
}

/* line 559, ../_registration.scss */
.registration .registration-type .r-item.active {
  opacity: 0.8;
}

/* line 562, ../_registration.scss */
.registration .registration-type .r-item .button {
  width: 100%;
  bottom: 0;
  left: 0;
  height: 50px;
  position: absolute;
  color: #fff;
  font-family: gotham-med, sans-serif;
  font-size: 20px;
  text-align: center;
  padding-top: 15px;
  cursor: pointer;
}
/* line 575, ../_registration.scss */
.registration .registration-type .r-item .button.disabled {
  background: grey;
  cursor: default;
}

/* line 580, ../_registration.scss */
.registration .registration-type .r-item .button.added {
  display: none;
}

/* line 583, ../_registration.scss */
.registration .registration-type .r-item.active .button.added {
  display: block;
  border-top: 2px solid whitesmoke;
}

/* line 587, ../_registration.scss */
.registration .registration-type .r-item .item-detail {
  text-align: center;
}

/* line 590, ../_registration.scss */
.registration .registration-type .r-item i {
  font-size: 50px;
  margin-top: 25px;
}

/* line 594, ../_registration.scss */
.registration .registration-type .item-detail {
  position: relative;
}

/* line 597, ../_registration.scss */
.registration .registration-type .registration-name {
  font-family: gotham-med, sans-serif;
  font-size: 16px;
  color: #666;
  margin-top: 18px;
  margin-bottom: 12px;
}

/* line 604, ../_registration.scss */
.registration .registration-type .include {
  font-family: gotham-med, sans-serif;
  font-size: 18px;
  margin-top: 20px;
  color: #8e8e8e;
}

/* line 610, ../_registration.scss */
.registration .recording-type .r-item .button {
  background: #B38BCD;
}

/* line 613, ../_registration.scss */
.registration .song-recording-list .r-item img {
  width: 48px;
  margin-top: 20px;
  margin-bottom: 5px;
}
/* line 618, ../_registration.scss */
.registration .song-recording-list .r-item img.wide {
  width: 90px;
}

/* line 626, ../_registration.scss */
.registration .song-recording-list .add-writer img {
  width: 16px;
  height: 16px;
  float: none;
  margin: 0;
}

/* line 633, ../_registration.scss */
.button.submit-registration {
  font-family: gotham-med, sans-serif;
  height: 55px;
  width: 250px;
  text-align: center;
  background: #307599;
  background: -webkit-linear-gradient(left, #347094, #59a0aa);
  background: -o-linear-gradient(right, #347094, #59a0aa);
  background: -moz-linear-gradient(right, #347094, #59a0aa);
  background: linear-gradient(to right, #347094, #59a0aa);
  border: none;
  border-radius: 5px;
  font-weight: normal;
  font-size: 16px;
  margin-top: 25px;
  color: #fff;
}

/* line 650, ../_registration.scss */
.registration .song-detail-form.term .form-group {
  margin-left: 0;
}

/* line 653, ../_registration.scss */
.registration .term-content {
  margin-top: 30px;
  font-size: 18px;
}

/* line 657, ../_registration.scss */
.registration .term {
  margin-top: 30px;
  margin-bottom: 15px;
  line-height: 1.4;
}

/* line 662, ../_registration.scss */
.registration .term.song-detail-form .checkbox {
  width: 306px;
}

/* line 665, ../_registration.scss */
.registration .term label {
  font-size: 18px;
  font-weight: normal;
  font-family: gotham-light, sans-serif;
}

/* line 670, ../_registration.scss */
.registration label strong {
  color: #333;
  font-family: gotham-light, sans-serif;
}

/* line 674, ../_registration.scss */
.registration .submit-register {
  font-family: gotham-med, sans-serif;
  height: 55px;
  width: 250px;
  text-align: center;
  background: #307599;
  background: -webkit-linear-gradient(left, #347094, #59a0aa);
  background: -o-linear-gradient(right, #347094, #59a0aa);
  background: -moz-linear-gradient(right, #347094, #59a0aa);
  background: linear-gradient(to right, #347094, #59a0aa);
  border: none;
  border-radius: 5px;
  font-weight: normal;
  font-size: 16px;
  margin-top: 25px;
  color: #fff;
}

/* line 691, ../_registration.scss */
.registration .save-button.term {
  display: inline-block;
}

/* line 694, ../_registration.scss */
p.error {
  color: #c80000;
  font-size: 18px;
  font-family: gotham-light, sans-serif;
}

/* line 699, ../_registration.scss */
.term-content.success {
  text-align: center;
  font-size: 22px;
}

/* line 703, ../_registration.scss */
.term-content.success p {
  color: #42A5CA;
  margin-bottom: 10px;
}

/* line 707, ../_registration.scss */
.term-content.success a {
  color: #656565;
  font-family: gotham-reg, sans-serif;
}

/* line 711, ../_registration.scss */
.term-content.success a:hover {
  color: #656565;
}

/* line 714, ../_registration.scss */
.registration .no-data {
  font-family: gotham-med, sans-serif;
  text-align: center;
  margin-top: 50px;
  margin-left: 0;
}

/* line 720, ../_registration.scss */
.song-recording-list-container p {
  font-size: 16px;
  line-height: 1.5;
}

/* line 724, ../_registration.scss */
.song-recording-list-container .song h2 {
  font-family: gotham-med, sans-serif;
  font-size: 18px;
  color: #42A5CA;
  border-bottom: 3px solid #42A5CA;
  display: inline-block;
  padding-bottom: 7px;
  margin-bottom: 20px;
  margin-top: 40px;
}

/* line 734, ../_registration.scss */
.song-recording-list-container .song .center {
  text-align: center;
  margin-top: 20px;
}

/* line 738, ../_registration.scss */
.registration .save-button.term.isrc {
  margin-left: 0px;
}

/* line 741, ../_registration.scss */
.registration .success .big {
  font-size: 24px;
  color: #656565;
  font-family: gotham-med, sans-serif;
}

/* line 746, ../_registration.scss */
.registration .learn-more {
  cursor: pointer;
  color: #699DB7;
  font-size: 16px;
  font-family: gotham-reg, sans-serif;
  margin-top: 7px;
}

/* line 753, ../_registration.scss */
h2.confirm-heder {
  margin-top: -10px;
  margin-bottom: 30px;
}

/* line 757, ../_registration.scss */
.term-content li {
  list-style: none;
  margin-top: 15px;
  line-height: 1.4;
}

/* line 762, ../_registration.scss */
.term-content .song {
  display: inline-block;
  width: 100%;
  height: 120px;
}

/* line 767, ../_registration.scss */
.term-content h3 {
  margin-top: 30px;
  margin-bottom: 20px;
}

/* line 771, ../_registration.scss */
.term-content p {
  padding-left: 40px;
  font-family: gotham-reg, sans-serif;
}

/* line 775, ../_registration.scss */
.term-content p.error {
  padding-left: 0px;
}

/* line 778, ../_registration.scss */
.registration .modal-frame {
  position: fixed !important;
}

/* line 781, ../_registration.scss */
.registration .add-writer-form {
  height: 350px;
  font-size: 22px;
  color: #42A5CA;
}

/* line 786, ../_registration.scss */
.registration .add-writer-form .btn {
  margin-top: 80px;
  margin-left: 250px;
}

/* line 790, ../_registration.scss */
.registration .add-writer-form p {
  color: #42A5CA;
  font-size: 22px;
}

/* line 794, ../_registration.scss */
.registration .share-error.error {
  display: inline-block;
  width: 100%;
  text-align: right;
  color: #c80000;
  padding: 20px 0px;
}

/* line 801, ../_registration.scss */
.popup-form.pdf-view iframe, .pdf-view.popup-form-extended iframe {
  border: none;
  outline: none;
  width: 100%;
  min-height: 500px;
}

/* line 807, ../_registration.scss */
.registration .popup {
  position: absolute;
  width: 700px;
  border: 1px solid #cccccc;
  height: 400px;
  overflow: hidden;
  top: -80px;
  left: 50%;
  z-index: 50;
  border-radius: 5px;
  text-align: left;
  padding: 20px 40px 40px 40px;
  display: none;
  background-color: white;
}

/* line 822, ../_registration.scss */
.registration .popup.right {
  left: 100px;
}

/* line 825, ../_registration.scss */
.registration .popup.left {
  left: -200px;
}

/* line 828, ../_registration.scss */
.registration .popup h2 {
  font-size: 20px;
  margin: 30px 0 10px 0;
}

/* line 832, ../_registration.scss */
.registration .popup .close {
  position: absolute;
  right: 15px;
  top: 0px;
  cursor: pointer;
  z-index: 50;
}

/* line 839, ../_registration.scss */
.registration .popup .popup-content {
  overflow: hidden;
  width: 100%;
  height: 325px;
}

/* line 851, ../_registration.scss */
.distribution-list .load-container {
  height: auto;
  overflow: hidden;
}
/* line 856, ../_registration.scss */
.distribution-list .table__tr {
  height: 90px !important;
}
/* line 860, ../_registration.scss */
.distribution-list .table__td {
  overflow: hidden;
}

/* line 865, ../_registration.scss */
.tall {
  height: 320px !important;
}

@media screen and (max-width: 1585px) {
  /* line 870, ../_registration.scss */
  .registration .breadcrumb .item, .registration .breadcrumb-separator .item {
    font-size: 16px;
    height: 50px;
    padding: 14px 10px 10px 30px;
  }
}
@media screen and (max-width: 1350px) {
  /* line 882, ../_registration.scss */
  .registration .breadcrumb .item, .registration .breadcrumb-separator .item {
    font-size: 15px;
    padding: 14px 10px 10px 25px;
  }
}
@media screen and (max-width: 1250px) {
  /* line 890, ../_registration.scss */
  .registration .registration-type .registration-name {
    font-size: 15px;
  }
}
/* line 9, ../_song.scss */
.heading-label {
  letter-spacing: -3px;
}

/* line 14, ../_song.scss */
.song .writer-detail {
  position: relative;
}
/* line 17, ../_song.scss */
.song .writer-detail .delete {
  position: absolute;
  cursor: pointer;
  right: -70px;
  top: 80px;
  width: 20px;
}
/* line 25, ../_song.scss */
.song .writer-detail .publisher {
  position: relative;
}
/* line 28, ../_song.scss */
.song .writer-detail .publisher .delete {
  position: absolute;
  cursor: pointer;
  right: -70px;
  top: 100px;
}
/* line 41, ../_song.scss */
.song .account-name {
  margin: 25px;
}
/* line 45, ../_song.scss */
.song a.song-name {
  display: block;
}
/* line 49, ../_song.scss */
.song .song-image {
  display: block;
}
/* line 53, ../_song.scss */
.song p.info {
  margin-top: 10px;
  display: block;
}

/* line 59, ../_song.scss */
.songspan.song-name {
  display: block;
}

/* line 63, ../_song.scss */
.song-detail-form {
  padding: 30px;
}
/* line 66, ../_song.scss */
.song-detail-form h2 {
  font-family: gotham-med, sans-serif;
  font-size: 1.0em;
  color: #699DB7;
  border-bottom: 3px solid #699DB7;
  display: inline-block;
  padding-bottom: 2px;
  margin-right: 4px;
}
/* line 76, ../_song.scss */
.song-detail-form .item {
  display: inline-block;
  vertical-align: middle;
  color: #656565;
  height: 54px !important;
  width: 49.1%;
  text-align: center;
  padding-top: 20px;
  cursor: pointer;
  margin-top: 0;
  border: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
/* line 91, ../_song.scss */
.song-detail-form .item.active {
  background: #699DB7;
  color: #fff;
  height: 54px !important;
}
/* line 97, ../_song.scss */
.song-detail-form .row {
  margin-top: 20px;
}
/* line 100, ../_song.scss */
.song-detail-form .row:empty {
  margin-top: 0 !important;
}
/* line 105, ../_song.scss */
.song-detail-form .btn {
  color: #699DB7;
  border: 1px solid #699DB7;
  text-align: center;
  background: #fff;
  height: 50px;
  width: 280px;
  font-family: gotham-med, sans-serif;
  margin-bottom: 50px;
  margin-top: 35px;
}
/* line 117, ../_song.scss */
.song-detail-form .add-publisher img,
.song-detail-form .add-writer img {
  width: 18px;
  position: relative;
  left: -5px;
}
/* line 124, ../_song.scss */
.song-detail-form ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* line 130, ../_song.scss */
.song-detail-form .errors {
  margin-bottom: 4px;
}
/* line 133, ../_song.scss */
.song-detail-form .errors.row {
  margin-top: 10px;
}
/* line 138, ../_song.scss */
.song-detail-form ul.errors:empty {
  display: none;
}
/* line 142, ../_song.scss */
.song-detail-form .add-writer {
  margin-bottom: 0;
  margin-top: 30px;
  border-radius: 0;
  padding: 15px 0;
}
/* line 148, ../_song.scss */
.song-detail-form .add-writer span {
  position: relative;
  top: -3px;
}
/* line 154, ../_song.scss */
.song-detail-form .add-publisher {
  margin-bottom: 0;
  margin-top: 30px;
  float: right;
}
/* line 161, ../_song.scss */
.song-detail-form .writer-list .writer-item {
  margin-top: 30px;
  margin-bottom: 30px;
  border-bottom: 2px dashed #ccc;
}
/* line 167, ../_song.scss */
.song-detail-form .writer-list li span.writer-name {
  height: 55px;
  font-family: gotham-med, sans-serif;
  color: #656565;
  font-size: 16px;
  border-left: 5px solid #699DB7;
  display: inline-block;
  padding-left: 30px;
  padding-top: 15px;
  cursor: pointer;
}
/* line 180, ../_song.scss */
.song-detail-form .copyright {
  border-bottom: 1px solid #ebebeb;
  margin-top: 20px;
  display: inline-block;
  width: 100%;
  padding-bottom: 50px;
  min-width: 1020px;
}
/* line 188, ../_song.scss */
.song-detail-form .copyright .strong {
  font-weight: normal;
  font-family: gotham-med, sans-serif;
  font-size: 16px;
}
/* line 194, ../_song.scss */
.song-detail-form .copyright .head {
  padding-right: 30px;
  display: inline-block;
  width: 100%;
}
/* line 200, ../_song.scss */
.song-detail-form .copyright .head span {
  font-size: 16px;
}
/* line 204, ../_song.scss */
.song-detail-form .copyright .left {
  float: left;
}
/* line 208, ../_song.scss */
.song-detail-form .copyright .right {
  float: right;
  margin-right: 60px;
}
/* line 213, ../_song.scss */
.song-detail-form .copyright p {
  font-size: 20px;
  color: #747474;
  margin-bottom: 30px;
}
/* line 220, ../_song.scss */
.song-detail-form .copyright-left {
  float: left;
  width: 700px;
}
/* line 225, ../_song.scss */
.song-detail-form .copyright-right {
  float: left;
  padding-left: 30px;
}
/* line 230, ../_song.scss */
.song-detail-form .section-header {
  margin-top: 20px;
}
/* line 234, ../_song.scss */
.song-detail-form .question {
  border-right: 3px solid #f8f8f8;
  margin-top: 25px;
  padding-right: 40px;
  display: inline-block;
  position: relative;
}
/* line 242, ../_song.scss */
.song-detail-form .submit-status {
  margin-top: 50px;
  padding-bottom: 50px;
}
/* line 247, ../_song.scss */
.song-detail-form .radio-item {
  margin-bottom: 20px;
  font-family: gotham-light, sans-serif;
  color: #c8c8c8;
  font-size: 18px;
  cursor: pointer;
}
/* line 254, ../_song.scss */
.song-detail-form .radio-item span {
  margin-left: 20px;
}
/* line 258, ../_song.scss */
.song-detail-form .radio-item .active {
  color: #699DB7;
  font-weight: bold;
}
/* line 263, ../_song.scss */
.song-detail-form .radio-item img {
  width: 25px;
}
/* line 267, ../_song.scss */
.song-detail-form .radio-item .uncheck {
  display: inline-block;
}
/* line 271, ../_song.scss */
.song-detail-form .radio-item .check {
  display: none;
}
/* line 275, ../_song.scss */
.song-detail-form .radio-item .active .check {
  display: inline-block;
}
/* line 279, ../_song.scss */
.song-detail-form .radio-item .active .uncheck {
  display: none;
}
/* line 284, ../_song.scss */
.song-detail-form .back-button,
.song-detail-form .next-button {
  float: left;
  cursor: pointer;
}
/* line 289, ../_song.scss */
.song-detail-form .back-button img,
.song-detail-form .next-button img {
  width: 90px;
}
/* line 293, ../_song.scss */
.song-detail-form .back-button .active,
.song-detail-form .next-button .active {
  display: none;
}
/* line 296, ../_song.scss */
.song-detail-form .back-button .active .active,
.song-detail-form .next-button .active .active {
  display: inline-block;
}
/* line 300, ../_song.scss */
.song-detail-form .back-button .active .unactive,
.song-detail-form .next-button .active .unactive {
  display: none;
}
/* line 306, ../_song.scss */
.song-detail-form .next-button {
  margin-left: 20px;
}
/* line 310, ../_song.scss */
.song-detail-form .save-later {
  float: right;
  color: #699DB7;
  font-family: gotham-med, sans-serif;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 60px;
}
/* line 320, ../_song.scss */
.song-detail-form .next-button-container {
  margin-top: 120px;
}
/* line 324, ../_song.scss */
.song-detail-form .writer-list > li {
  position: relative;
  margin: 20px 0;
}
/* line 328, ../_song.scss */
.song-detail-form .writer-list > li .active .unactive {
  display: none;
}

/* line 334, ../_song.scss */
.save-button button {
  font-family: gotham-med, sans-serif;
  height: 55px;
  width: 250px;
  text-align: center;
  background: #307599;
  background: -webkit-linear-gradient(left, #347094, #59a0aa);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #347094, #59a0aa);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #347094, #59a0aa);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #347094, #59a0aa);
  /* Standard syntax */
  border: none;
  border-radius: 5px;
  font-weight: normal;
  font-size: 16px;
  margin-top: 25px;
  color: #fff;
}
/* line 355, ../_song.scss */
.save-button button.disabled {
  background: #e0e0e0;
  cursor: default;
}

/* line 363, ../_song.scss */
.dashboard-header .save-button button {
  margin-top: 2px;
}

/* line 368, ../_song.scss */
.big-button {
  font-family: gotham-med, sans-serif;
  height: 55px;
  width: 250px;
  text-align: center;
  border: none;
  border-radius: 5px;
  font-weight: normal;
  font-size: 16px;
  margin-top: 25px;
  color: #438a98;
}
/* line 380, ../_song.scss */
.big-button.outline {
  border: 1px solid #438a98;
  background: none;
  color: #307599;
}
/* line 386, ../_song.scss */
.big-button.disabled {
  background: #e0e0e0;
  cursor: default;
}

/* line 402, ../_song.scss */
.song .detail {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  margin-top: 42px;
}
/* line 414, ../_song.scss */
.song .detail .detail__right {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: flex-start;
}
/* line 424, ../_song.scss */
.song .artwork {
  width: 250px;
  height: 250px;
  margin-bottom: 40px;
}
/* line 429, ../_song.scss */
.song .artwork .upload {
  width: 250px;
  height: 250px;
  padding: 10px;
  box-sizing: border-box;
  border: 1px dashed #79a7bf;
  margin-top: 0;
  position: relative;
}
/* line 440, ../_song.scss */
.song p.error {
  margin-top: 10px;
  display: block;
}
/* line 446, ../_song.scss */
.song .artwork p.error {
  font-size: 14px;
}
/* line 450, ../_song.scss */
.song .artwork .upload img {
  margin-top: 0;
}
/* line 455, ../_song.scss */
.song .remove-alt {
  color: #fa474f;
  cursor: pointer;
  font-size: 16px;
  display: inline;
  position: absolute;
  right: -20px;
  top: 19px;
}
/* line 465, ../_song.scss */
.song .alt-container {
  position: relative;
}
/* line 469, ../_song.scss */
.song .no-alt {
  font-size: 12px;
  margin: 30px 0;
  font-family: gotham-med, sans-serif;
}
/* line 475, ../_song.scss */
.song .artwork-container {
  display: inline-block;
  vertical-align: middle;
  width: 250px;
  height: 250px;
  margin-right: 30px;
  float: left;
  position: relative;
}
/* line 484, ../_song.scss */
.song .artwork-container .artwork-image-container {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 14px;
  box-sizing: border-box;
  border: 1px dashed #79a7bf;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* line 498, ../_song.scss */
.song .artwork-container .artwork-image-container .fa {
  color: #fff;
  position: absolute;
  bottom: 5px;
  right: 5px;
  font-size: 25px;
  cursor: pointer;
  text-shadow: 1px 1px 5px #000;
}
/* line 511, ../_song.scss */
.song .artwork-container .artwork-image-container .artwork-image {
  width: 230px;
  height: 230px;
  position: relative;
  background: #e6e6e6;
  overflow: hidden;
}
/* line 518, ../_song.scss */
.song .artwork-container .artwork-image-container .artwork-image img.art {
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
/* line 529, ../_song.scss */
.song .upload-song-file {
  display: none;
}
/* line 534, ../_song.scss */
.song .recording-list h3 {
  font-family: gotham-med, sans-serif;
  color: #B38BCD;
  font-size: 1.0em;
}
/* line 541, ../_song.scss */
.song .add-recording {
  background: #B38BCD;
  border: none;
  height: 50px;
  width: 100%;
  font-family: gotham-med, sans-serif;
  position: absolute;
  bottom: 0px;
  border-radius: 3px;
}
/* line 551, ../_song.scss */
.song .add-recording span {
  color: #fff;
  margin-left: 0;
  position: relative;
  top: -6px;
}
/* line 559, ../_song.scss */
.song .recording-list-item {
  position: relative;
  font-family: 'gotham-reg', sans-serif;
  font-size: 13px;
  color: #568fb6;
}
/* line 565, ../_song.scss */
.song .recording-list-item ul {
  list-style: none;
  padding: 0;
}
/* line 570, ../_song.scss */
.song .recording-list-item li {
  display: flex;
  flex-wrap: wrap;
  padding: 9px 0;
  width: 100%;
}
/* line 576, ../_song.scss */
.song .recording-list-item li img {
  display: inline-block;
  cursor: pointer;
}
/* line 582, ../_song.scss */
.song .recording-list-item .list-detail {
  display: flex;
  flex-direction: row;
  min-height: 40px;
  width: calc(100% - 40px);
  flex-wrap: wrap;
  padding-left: 14px;
  position: relative;
}
/* line 591, ../_song.scss */
.song .recording-list-item .list-detail .edit-recording {
  width: 100%;
  font-weight: normal;
  color: lightgrey;
}
/* line 598, ../_song.scss */
.song .recording-list-item h4 {
  font-size: 13px;
  font-weight: normal;
  color: #568fb6;
}
/* line 604, ../_song.scss */
.song .recording-list-item .list-detail__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  max-width: 90px;
  margin-left: 10px;
}
/* line 612, ../_song.scss */
.song .recording-list-item .list-detail__actions .edit-button {
  display: block;
  clear: both;
  float: right;
  margin-bottom: 4px;
  cursor: pointer;
}
/* line 619, ../_song.scss */
.song .recording-list-item .list-detail__actions .edit-button:hover {
  color: #42A5CA;
}
/* line 625, ../_song.scss */
.song .recording-list-item .recording-list-artwork {
  width: 100%;
  height: 100%;
}
/* line 630, ../_song.scss */
.song .recording-list-item .recording-play-icon {
  width: 35px;
  margin-left: 10px;
  position: relative;
}
/* line 636, ../_song.scss */
.song .recording-list-item span {
  font-family: gotham-light, sans-serif;
  color: #B38BCD;
  font-size: 16px;
  padding: 0;
  margin: 7px 0 0;
  display: inline-block;
}
/* line 648, ../_song.scss */
.song .recording-item .recording-image-container {
  display: inline-block;
  float: left;
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  background: #ddd;
}
/* line 657, ../_song.scss */
.song .recording-item .remove {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 200;
}
/* line 664, ../_song.scss */
.song .recording-item .edit-credit {
  width: 22px;
  height: 22px;
}
/* line 670, ../_song.scss */
.song .primary-recording {
  display: block;
  clear: both;
  overflow: hidden;
  cursor: default;
  padding: 18px 20px;
  width: 100%;
  font-family: 'gotham-reg', sans-serif;
  font-size: 0.9em;
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: #B38BCD;
}
/* line 683, ../_song.scss */
.song .song-recording-list {
  position: relative;
  margin-top: 14px;
  width: 100%;
}
/* line 689, ../_song.scss */
.song .form-section,
.song .section-header {
  margin-top: 30px;
}
/* line 694, ../_song.scss */
.song .writer-share {
  color: #676767;
  font-size: 16px;
  float: right;
  font-family: gotham-med, sans-serif;
  position: relative;
  padding-right: 60px;
}
/* line 704, ../_song.scss */
.song .add-writer-form .form-group {
  float: left;
  width: 270px;
  margin-left: 20px;
}
/* line 709, ../_song.scss */
.song .add-writer-form .form-group :first-child {
  margin-left: 0;
}
/* line 713, ../_song.scss */
.song .add-writer-form .form-group input {
  height: 45px;
  margin-top: 5px;
  padding: 0 15px;
}
/* line 719, ../_song.scss */
.song .add-writer-form .form-group select {
  height: 45px;
  margin-top: 5px;
  border: 1px solid #f1f1f1;
  font-size: 20px;
}
/* line 725, ../_song.scss */
.song .add-writer-form .form-group select [disabled] {
  background-color: #ebebe4;
}
/* line 729, ../_song.scss */
.song .add-writer-form .form-group select label.required {
  color: #7ba9c0;
}
/* line 733, ../_song.scss */
.song .add-writer-form .form-group select button {
  margin-top: 20px;
}
/* line 737, ../_song.scss */
.song .add-writer-form .form-group select p.error {
  margin-top: 5px;
  color: #fa474f;
  display: block;
  position: absolute;
  font-size: 14px;
}
/* line 745, ../_song.scss */
.song .add-writer-form .form-group select form {
  padding-top: 30px;
}
/* line 748, ../_song.scss */
.song .add-writer-form .form-group select form .form-group {
  margin-bottom: 35px;
}
/* line 753, ../_song.scss */
.song .add-writer-form .form-group select p.error.general {
  display: block;
  width: 100%;
  text-align: center;
  left: 0;
  bottom: 140px;
}
/* line 764, ../_song.scss */
.song .checkbox-label-align-right {
  text-align: right;
  padding-right: 330px;
}
/* line 769, ../_song.scss */
.song option.add-new {
  font-family: gotham-med, sans-serif;
  color: #7ba9c0;
}
/* line 774, ../_song.scss */
.song .text-danger {
  color: #a94442;
}

/* line 779, ../_song.scss */
.middle {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

/* line 789, ../_song.scss */
.registration .section-header .performer-share,
.registration .song .writer-share {
  top: 7px;
}

/* line 794, ../_song.scss */
.picker {
  max-width: 305px;
}

/* line 798, ../_song.scss */
.song .popup-form button.simple-button, .song .popup-form-extended button.simple-button {
  background: none;
  border: 1px solid #699DB7;
  color: #699DB7;
  border-radius: 0;
}

/* line 805, ../_song.scss */
.song .add-writer-form button {
  margin-left: 20px;
}

/* line 809, ../_song.scss */
.song .add-writer-form button:first-child {
  margin-left: 0;
}

/* line 813, ../_song.scss */
.song .song-play-icon {
  margin-right: -4px;
}

/* line 817, ../_song.scss */
.artwork .upload .artwork-status-message .info img {
  margin-top: 50px;
}

/* line 821, ../_song.scss */
textarea.short {
  width: 468px;
}

/* line 825, ../_song.scss */
span.paragraph {
  display: block;
  text-transform: none;
  margin-bottom: 20px;
}
/* line 830, ../_song.scss */
span.paragraph:last-child {
  margin-bottom: 0;
}

/* line 835, ../_song.scss */
.paragraph strong {
  font-family: gotham-med, sans-serif;
}

/* line 839, ../_song.scss */
.question-label {
  position: relative;
  width: 630px;
}

/* line 844, ../_song.scss */
.catalog .song-list ul li.ng-leave {
  display: none;
}

/* line 848, ../_song.scss */
.download-icon {
  width: 47px;
  position: relative;
  cursor: pointer;
}

/* line 854, ../_song.scss */
.billing-info .edit .expire {
  float: left;
}

/* line 858, ../_song.scss */
.blank-song {
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #e6e6e6;
  text-align: center;
}
/* line 865, ../_song.scss */
.blank-song img {
  float: none !important;
  width: 40px !important;
  height: 40px !important;
  position: relative !important;
  background: transparent !important;
  transform: translateY(-60%);
  top: 50% !important;
  display: inline-block;
  margin: 0px auto;
}

/* line 878, ../_song.scss */
.song-detail-form {
  width: calc(100% - 340px);
  margin: 0;
  margin-bottom: 42px;
}

/* line 885, ../_song.scss */
input[type=radio] {
  width: 22px;
  height: 18px;
  display: block;
  cursor: pointer;
  margin: 0;
}

/* line 893, ../_song.scss */
input[type=checkbox] {
  width: 22px !important;
  height: 18px;
  display: block;
  cursor: pointer;
  margin: 0;
}

/* line 901, ../_song.scss */
.disable-click {
  opacity: 0.7;
  cursor: not-allowed !important;
}

/* line 907, ../_song.scss */
.song contact-info {
  display: inline-block;
  width: 100%;
}
/* line 911, ../_song.scss */
.song contact-info h2 {
  border: none;
}
/* line 915, ../_song.scss */
.song contact-info label {
  font-family: gotham-med, sans-serif;
  margin: 10px 0;
  display: inline-block;
}
/* line 921, ../_song.scss */
.song contact-info .img {
  width: 200px;
  height: 200px;
  float: left;
  overflow: hidden;
  background: #eee;
  position: relative;
}
/* line 929, ../_song.scss */
.song contact-info .img img {
  width: 100%;
  position: relative;
  margin-top: 50%;
  transform: translateY(-50%);
}
/* line 938, ../_song.scss */
.song contact-info .img:hover .btn-overlay {
  display: block;
  opacity: 1;
}
/* line 944, ../_song.scss */
.song contact-info .details {
  float: left;
  margin-left: 30px;
  padding: 10px;
}
/* line 951, ../_song.scss */
.song .writer-item {
  padding-bottom: 20px;
}
/* line 957, ../_song.scss */
.song .popup-form form, .song .popup-form-extended form {
  margin-top: 42px;
}

@media screen and (max-width: 1100px) {
  /* line 964, ../_song.scss */
  .song .add-writer-form p.error.general.label-message {
    bottom: 115px;
  }

  /* line 967, ../_song.scss */
  .song .popup-form h2, .song .popup-form-extended h2 {
    font-size: 40px;
  }

  /* line 970, ../_song.scss */
  .song .popup-form h3, .song .popup-form-extended h3 {
    margin-top: 35px;
  }

  /* line 973, ../_song.scss */
  .song .popup-form button, .song .popup-form-extended button {
    width: 100%;
  }

  /* line 976, ../_song.scss */
  .song .add-writer-form .form-group input {
    width: 100%;
    height: 40px;
    margin-top: 5px;
    padding: 0 10px;
    font-size: 18px;
  }

  /* line 983, ../_song.scss */
  .song .add-writer-form .form-group select {
    width: 195px;
    height: 40px;
    margin-top: 5px;
    border: 1px solid #f1f1f1;
  }

  /* line 989, ../_song.scss */
  .song .add-writer-form .form-group {
    width: 195px;
  }

  /* line 992, ../_song.scss */
  .song .add-writer-form button {
    margin-top: 10px;
    height: 50px;
    width: 250px;
  }

  /* line 997, ../_song.scss */
  .song .add-writer-form form {
    padding-top: 15px;
  }

  /* line 1000, ../_song.scss */
  .song .add-writer-form p.error.general {
    bottom: 65px;
  }
}
/* line 1005, ../_song.scss */
.recording-artist {
  position: inherit !important;
}

/* line 1009, ../_song.scss */
.performer-share-contact {
  position: relative;
}
/* line 1012, ../_song.scss */
.performer-share-contact .delete-credit {
  position: absolute;
  right: 10px;
  left: auto;
  width: 20px;
}

/* line 1020, ../_song.scss */
.thisisatest {
  color: blue;
}

/* line 1024, ../_song.scss */
.song .info-row {
  margin-top: 14px;
}

/* line 1030, ../_song.scss */
.territory-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

/* line 1037, ../_song.scss */
.territory-header {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

/* line 1043, ../_song.scss */
.selection-btn {
  display: inline-block;
  text-align: center;
  color: #B38BCD;
  cursor: pointer;
}
/* line 1049, ../_song.scss */
.selection-btn div:first-child {
  padding: 10px 30px 10px 30px;
  border: #B38BCD solid 2px;
  border-radius: 5px;
}
/* line 1055, ../_song.scss */
.selection-btn h3.selection-title {
  margin-top: 0;
}

/* line 1060, ../_song.scss */
.selection-btn.active {
  border: none;
}

/* line 1064, ../_song.scss */
.selection-btn.active div:last-child {
  display: block;
  width: 0;
  height: 0;
  border-top: 10px solid #B38BCD;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  margin: 0 auto;
}

/* line 1074, ../_song.scss */
.selection-btn.active div:first-child {
  font-size: 15px;
  border-radius: 5px;
  color: white;
  text-align: center;
  margin: 0 auto;
  background: #B38BCD;
  position: relative;
  text-transform: uppercase;
}

/* line 1088, ../_song.scss */
.sub-pub-modal .popup-form-extended.modal-body.tight {
  height: 90vh;
}

/* line 1093, ../_song.scss */
.territory-body {
  background-color: rgba(221, 222, 221, 0.4);
  display: flex;
  flex: 1;
  border-radius: 5px;
}
/* line 1099, ../_song.scss */
.territory-body .advanced {
  flex: 1;
  display: inline-flex;
  flex-flow: column wrap;
  overflow: scroll;
  padding-top: 10px;
  padding-bottom: 10px;
}
/* line 1108, ../_song.scss */
.territory-body .advanced::-webkit-scrollbar {
  -webkit-appearance: none;
}
/* line 1112, ../_song.scss */
.territory-body .advanced::-webkit-scrollbar:vertical {
  width: 12px;
}
/* line 1116, ../_song.scss */
.territory-body .advanced::-webkit-scrollbar:horizontal {
  height: 12px;
}
/* line 1120, ../_song.scss */
.territory-body .advanced::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  border: 2px solid #ffffff;
}
/* line 1126, ../_song.scss */
.territory-body .advanced::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #ffffff;
}
/* line 1131, ../_song.scss */
.territory-body .advanced .territory-chkbx {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* line 1136, ../_song.scss */
.territory-body .advanced .territory-chkbx input[type=checkbox] {
  margin: 0 !important;
}
/* line 1142, ../_song.scss */
.territory-body .single {
  align-self: center;
  margin: auto;
  width: 100%;
  text-align: center;
}
/* line 1148, ../_song.scss */
.territory-body .single .territory-chkbx {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* line 1154, ../_song.scss */
.territory-body .single input[type=checkbox] {
  margin: 0 !important;
  display: inline-block;
  background: #2aa1c0;
  border: 0px solid #000000;
  flex: 1;
}
/* line 1163, ../_song.scss */
.territory-body .controls {
  flex: 1;
  display: flex;
  position: relative;
  padding-left: 30px;
  margin-bottom: 5px;
  padding-top: 3px;
  cursor: pointer;
  font-size: 16px;
  justify-content: space-between;
}
/* line 1175, ../_song.scss */
.territory-body .controls input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
/* line 1181, ../_song.scss */
.territory-body .control_indicator {
  align-self: flex-end;
  top: 2px;
  right: -30px;
  height: 20px;
  width: 20px;
  background: #e6e6e6;
  border: 0px solid #000000;
  display: inline-flex;
}
/* line 1192, ../_song.scss */
.territory-body .control:hover input ~ .control_indicator,
.territory-body .control input:focus ~ .control_indicator {
  background: #cccccc;
}
/* line 1197, ../_song.scss */
.territory-body .controls input:checked ~ .control_indicator {
  background: #42A5CA;
}
/* line 1201, ../_song.scss */
.territory-body .controls input:checked:focus ~ .control_indicator {
  background: #42A5CA;
}
/* line 1205, ../_song.scss */
.territory-body .control_indicator:after {
  box-sizing: unset;
  content: '';
  align-self: center;
  margin: auto;
  display: none;
}
/* line 1213, ../_song.scss */
.territory-body .controls input:checked ~ .control_indicator:after {
  display: block;
}
/* line 1217, ../_song.scss */
.territory-body .control-checkbox .control_indicator:after {
  left: 8px;
  top: 4px;
  width: 3px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* line 1229, ../_song.scss */
.territory-footer {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
/* line 1234, ../_song.scss */
.territory-footer .left-btns {
  display: flex;
  flex-direction: row;
}
/* line 1239, ../_song.scss */
.territory-footer .selection-btn {
  display: flex;
  background: #B38BCD;
  border-radius: 5px;
  margin: 15px;
}
/* line 1246, ../_song.scss */
.territory-footer h3 {
  color: white;
  margin: 0;
  padding: 10px 30px 10px 30px;
}

/* line 1254, ../_song.scss */
.input-area.ql-container.ql-snow {
  height: 400px;
  border: 1px solid #eee;
  color: #000000 !important;
}
/* line 1258, ../_song.scss */
.input-area.ql-container.ql-snow p {
  color: #000000 !important;
}

/* line 1263, ../_song.scss */
.ql-toolbar.ql-snow {
  border: 1px solid #eee !important;
}

/* line 1, ../_catalog.scss */
.child-tabs {
  position: absolute;
  left: 20px;
  top: 0;
}

/* line 7, ../_catalog.scss */
.parentTabs {
  width: 100%;
  position: relative;
  padding: 0 20px;
}

/* line 13, ../_catalog.scss */
.sortby {
  float: right;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

/* line 20, ../_catalog.scss */
.sortby p {
  margin-right: 8px;
}

/* line 24, ../_catalog.scss */
.parentTabs .nav-tabs {
  margin-left: 20px;
}

/* line 28, ../_catalog.scss */
.sortby select {
  color: #275F91;
  font-size: 14px;
  border: solid 1px #275F91 !important;
  background-color: #fff !important;
  padding: 0px 40px 0px 10px !important;
  width: 178px;
  height: 38px;
}

/* line 38, ../_catalog.scss */
.record-listing {
  padding-top: 70px;
}

/* line 42, ../_catalog.scss */
.record-listing li {
  border: solid 1px #f2f2f2;
  border-radius: 5px;
  padding: 10px 0;
  margin-bottom: 15px;
}

/* line 49, ../_catalog.scss */
.record-listing.grid li {
  width: 23%;
  float: left;
  margin: 1%;
}

/* line 55, ../_catalog.scss */
.record-listing li:hover {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

/* line 59, ../_catalog.scss */
.left-portion img {
  float: left;
  margin-right: 10px;
}

/* line 64, ../_catalog.scss */
.left-portion label {
  color: #3CA4C6;
  display: block;
  font-size: 14px;
  line-height: 17px;
  padding-bottom: 10px;
  padding-top: 5px;
}

/* line 73, ../_catalog.scss */
.left-portion span.date {
  color: #888;
  display: block;
  font-size: 12px;
  line-height: 17px;
  padding-bottom: 10px;
}

/* line 81, ../_catalog.scss */
.left-portion span.category {
  color: #fff;
  display: inline-block;
  font-size: 12px;
  line-height: 17px;
  background: #275F91;
  border-radius: 5px;
  padding: 3px 7px;
}

/* line 91, ../_catalog.scss */
.record-listing.grid {
  text-align: center;
}

/* line 95, ../_catalog.scss */
.record-listing.grid label {
  color: #3CA4C6;
  display: block;
  font-size: 14px;
  line-height: 17px;
  padding-bottom: 0px;
  padding-top: 0px;
}

/* line 104, ../_catalog.scss */
.record-listing.grid span img {
  max-height: 22px;
}

/* line 108, ../_catalog.scss */
.record-listing.grid .bottom {
  width: 100%;
  float: left;
  text-align: center;
}

/* line 114, ../_catalog.scss */
.record-listing.grid .bottom span {
  float: none;
  padding: 6px 5px;
}

/* line 119, ../_catalog.scss */
.record-listing.grid div.heading {
  display: block;
  padding-bottom: 0;
}

/* line 124, ../_catalog.scss */
.record-listing.grid span.delete {
  float: right;
}

/* line 128, ../_catalog.scss */
.record-listing.grid .list img {
  max-height: 25px;
}

/* line 132, ../_catalog.scss */
.record-listing.grid span {
  display: inline-block;
  padding: 6px 5px;
}

/* line 138, ../_catalog.scss */
.record-listing.grid span.date {
  color: #888;
  display: block;
  font-size: 12px;
  line-height: 17px;
  padding-bottom: 6px;
  width: 100%;
}

/* line 147, ../_catalog.scss */
.record-listing.grid img.small {
  display: block;
  margin: 0px auto 15px;
  clear: both;
  border-radius: 5px;
  width: 80%;
}

/* line 155, ../_catalog.scss */
.record-listing.grid .date {
  display: block;
  text-align: center;
}

/* line 160, ../_catalog.scss */
.record-listing.grid span.category {
  color: #fff;
  display: inline-block;
  font-size: 12px;
  line-height: 17px;
  background: #275F91;
  border-radius: 5px;
  padding: 3px 7px;
  float: right;
  clear: both;
  margin-bottom: 10px;
  position: relative;
  top: -35px;
}

/* line 175, ../_catalog.scss */
.left-portion .bottom {
  padding-top: 40px;
}

/* line 179, ../_catalog.scss */
.left-portion .bottom span {
  color: #888;
  display: inline-block;
  padding-right: 10px;
  font-size: 12px;
}

/* line 203, ../_catalog.scss */
.ViewAs {
  margin-right: 8px;
}

/* line 207, ../_catalog.scss */
.ViewAs p {
  color: #888888;
}

/* line 211, ../_catalog.scss */
.right-portion {
  text-align: right;
  padding-top: 15px;
}

/* line 216, ../_catalog.scss */
.right-portion img {
  max-height: 22px;
}

/* line 220, ../_catalog.scss */
.right-portion .delete {
  padding-left: 25px !important;
}

/* line 224, ../_catalog.scss */
.right-portion .list img {
  max-height: 25px;
}

/* line 228, ../_catalog.scss */
.right-portion span {
  display: inline-block;
  padding-left: 10px;
  float: right;
}

/* line 234, ../_catalog.scss */
div.heading {
  display: block;
  padding-bottom: 100px;
}

/* line 239, ../_catalog.scss */
div.heading span {
  font-size: 12px;
  color: #275F91;
}

@media only screen and (max-width: 991px) {
  /* line 245, ../_catalog.scss */
  .record-listing.grid li {
    width: 48%;
    float: left;
    margin: 1%;
  }
}
@media only screen and (max-width: 1440px) {
  /* line 254, ../_catalog.scss */
  .child-tabs {
    position: static;
    left: 20px;
    top: 0;
  }
}
@media only screen and (max-width: 600px) {
  /* line 263, ../_catalog.scss */
  .record-listing.grid li {
    width: 98%;
    float: left;
    margin: 1%;
  }
}
/* line 270, ../_catalog.scss */
.search-new input {
  width: 360px !important;
  margin-right: 50px;
  height: 38px;
}

@media (min-width: 769px) and (max-width: 1400px) {
  /* line 277, ../_catalog.scss */
  .search-new input {
    width: 100% !important;
    margin-right: 15px !important;
  }
}
@media (max-width: 768px) {
  /* line 284, ../_catalog.scss */
  .search-new input {
    width: 100% !important;
    margin-right: 5px;
  }
}
@media (max-width: 425px) {
  /* line 291, ../_catalog.scss */
  .search-new {
    display: none;
  }
}
@media (min-width: 425px) {
  /* line 299, ../_catalog.scss */
  .search-mobile {
    display: none;
  }
}
/* line 305, ../_catalog.scss */
.nav-tabs {
  border: none !important;
  border-radius: none !important;
}

/* line 310, ../_catalog.scss */
.nav-tabs .nav-link {
  border: 1px solid rgba(170, 170, 170, 0.32);
}

/* line 314, ../_catalog.scss */
.info-icon {
  float: left;
}

/* line 318, ../_catalog.scss */
.info-icon button {
  background-color: white;
  border: none !important;
}

/* line 323, ../_catalog.scss */
.info-icon button:hover,
.info-icon button:active,
.info-icon button:focus {
  background-color: white;
  border: none;
  box-shadow: none;
}

/* line 331, ../_catalog.scss */
.toggled .search-new input {
  width: 85% !important;
}

/* line 335, ../_catalog.scss */
.cata-select .select-selected.select-arrow-active:after {
  top: 10px;
}

/* line 339, ../_catalog.scss */
.cata-select .select-selected:after {
  top: 15px;
  right: 15px;
}

/* line 344, ../_catalog.scss */
.cata-select .select-items div,
.select-selected {
  padding: 9px 16px;
}

/* line 349, ../_catalog.scss */
.popover-body {
  white-space: pre-wrap;
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #275F91;
}

/* line 1, ../_registrations.scss */
.reg-body {
  font-family: 'Lato' !important;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  color: #444444;
  background-color: white;
}

/* line 12, ../_registrations.scss */
.registration-header {
  padding: 20px 0px;
  margin-bottom: 50px;
}

/* line 17, ../_registrations.scss */
.save-btn {
  width: 80px;
  height: 40px;
  background: #0E0E52;
  border-radius: 5px;
  color: white;
}

/* line 25, ../_registrations.scss */
.add-work p {
  color: #0e0e52;
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 768px) {
  /* line 32, ../_registrations.scss */
  .add-work {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  /* line 37, ../_registrations.scss */
  .info-added p {
    margin-bottom: 20px;
  }
}
/* line 42, ../_registrations.scss */
.info-added p {
  color: #3ca4c6;
}

/* line 46, ../_registrations.scss */
.nav-link span {
  position: static !important;
}

/* line 50, ../_registrations.scss */
.reg-nav-tabs {
  float: none !important;
}

/* line 54, ../_registrations.scss */
.reg-nav {
  display: -webkit-inline-flex !important;
  width: 100%;
  background-color: white;
  padding: 15px 10px 0px 10px;
}

@media (min-width: 991px) {
  /* line 62, ../_registrations.scss */
  .main-class-wrapper {
    padding-right: 100px;
    padding-left: 100px;
  }
}
/* line 68, ../_registrations.scss */
.header-inner {
  padding-top: 0px !important;
}

/* line 72, ../_registrations.scss */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #0E0E52;
  background-color: white;
}

/* line 78, ../_registrations.scss */
.nav-pills .nav-link.active {
  border-bottom: 4px solid #0E0E52;
}

/* line 82, ../_registrations.scss */
.reg-label {
  display: block !important;
}

/* line 86, ../_registrations.scss */
.field-wrapper input,
.field-wrapper textarea,
.field-wrapper select {
  margin-bottom: 20px;
  width: 100%;
}

/* line 93, ../_registrations.scss */
.work-details-wrap {
  padding: 30px 40px;
  border: 1px solid #c4c4c433;
  margin-bottom: 20px;
}

/* line 99, ../_registrations.scss */
.work-details-wrap p {
  font-size: 16px;
  font-weight: 600;
  line-height: 19.2px;
  color: #275f91;
}

/* line 106, ../_registrations.scss */
.form-cover {
  border: 1px solid rgba(196, 196, 196, 0.2);
  padding: 20px;
  margin-bottom: 20px;
}

/* line 112, ../_registrations.scss */
.form-cover p {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #0E0E52;
}

/* line 120, ../_registrations.scss */
.three-boxes {
  margin: 20px 0px;
}

/* line 124, ../_registrations.scss */
.three-boxes input {
  width: 100%;
}

/* line 128, ../_registrations.scss */
.three-boxes select {
  width: 100%;
}

@media (max-width: 768px) {
  /* line 133, ../_registrations.scss */
  .three-boxes div {
    margin: 10px 0px;
  }

  /* line 137, ../_registrations.scss */
  .three-boxes div.react-select div {
    margin: 0 !important;
  }

  /* line 141, ../_registrations.scss */
  .radio-btn {
    margin-top: 10px;
  }
}
/* .card-boxes{
 display: inline-flex;
} */
/* line 153, ../_registrations.scss */
.card-box {
  border: 1px solid rgba(196, 196, 196, 0.23);
  text-align: center;
  padding: 20px;
  margin-right: 20px;
  height: 250px;
  border-radius: 5px;
}

/* line 162, ../_registrations.scss */
.card-box:hover {
  border: 1px solid #0E0E52 !important;
}

/* line 166, ../_registrations.scss */
.card-box .hover-state-card-icon {
  -webkit-filter: grayscale(100%);
  filter: contrast(20%) grayscale(100%) brightness(1.5);
}

/* line 171, ../_registrations.scss */
.card-box:hover .hover-state-card-icon {
  -webkit-filter: none;
  filter: none;
}

/* line 176, ../_registrations.scss */
.card-box h4 {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 10px;
  margin-top: 24px;
  color: #aaaaaa !important;
}

/* line 185, ../_registrations.scss */
.card-box:hover .card-heading {
  color: black !important;
}

/* line 189, ../_registrations.scss */
.card-box .learn-more {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  margin-bottom: 24px;
  color: #aaaaaa;
}

/* line 200, ../_registrations.scss */
.card-box:hover .learn-more {
  color: #AAAAAA;
}

/* line 204, ../_registrations.scss */
.card-box .Available {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  margin-bottom: 20px;
  color: #aaaaaa;
}

/* line 215, ../_registrations.scss */
.card-box:hover .Available {
  color: #275F91;
}

/* line 219, ../_registrations.scss */
.card-box a {
  padding: 12px 62px;
  background-color: #aaaaaa;
  border-radius: 5px;
  color: white;
  margin-top: 20px;
  width: 100%;
}

/* line 228, ../_registrations.scss */
.card-box:hover a.start-btn {
  background-color: #0E0E52;
}

@media (max-width: 1200px) {
  /* line 233, ../_registrations.scss */
  .card-box a {
    padding: 12px 30px;
  }
}
@media (max-width: 768px) {
  /* line 239, ../_registrations.scss */
  .card-box {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
/* line 246, ../_registrations.scss */
.heading {
  margin-bottom: 20px;
}

/* line 250, ../_registrations.scss */
.side-bar {
  background-color: white;
  padding: 30px 20px;
  margin-left: 20px;
  border: 1px solid #c4c4c433;
}

@media (max-width: 768px) {
  /* line 258, ../_registrations.scss */
  .side-bar {
    margin-top: 50px;
    margin-left: 0px;
  }
}
/* @media(min-width:991px){
    .work-details-wrap {
        width: 60%;
        float: left;
    }
    .side-bar{
        width:38%;
        float: left;
        margin-left: 20px;
    }
}
@media(max-width:991px){
    .work-details-wrap {
        width: 100%;
        float: none;
    }
    .side-bar{
        width:100%;
        float: none;
        margin-top: 20px;
    }
} */
/* line 288, ../_registrations.scss */
.back-arrow {
  margin-bottom: 20px;
}

/* line 292, ../_registrations.scss */
.text-icon-wrap {
  display: inline-flex;
  margin-bottom: 10px;
}

/* line 297, ../_registrations.scss */
.text-icon-wrap a {
  float: right;
}

/* line 301, ../_registrations.scss */
.text-icon-wrap p {
  font-family: 'Lato' !important;
  font-style: normal;
  font-weight: 500 !important;
  font-size: 16px !important;
  line-height: 19px !important;
  color: #444444 !important;
  margin-left: 5px !important;
}

/* line 311, ../_registrations.scss */
.input-area textarea {
  width: 100%;
  border-radius: 5px;
}

/* line 317, ../_registrations.scss */
.export-btn {
  margin-top: 50px;
  text-align: center;
  margin-bottom: 40px;
}

/* line 323, ../_registrations.scss */
.export-btn a {
  background: #0E0E52;
  border-radius: 5px;
  font-family: 'Lato';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  color: #FFFFFF;
  padding: 15px 15px;
}

/* line 336, ../_registrations.scss */
.add-item-btn {
  width: 100% !important;
  background-color: #0E0E52 !important;
  border-radius: 5px !important;
  color: white !important;
  padding: 9px 12px !important;
}

@media (max-width: 991px) {
  /* line 345, ../_registrations.scss */
  .side-bar {
    padding: 10px;
  }

  /* line 349, ../_registrations.scss */
  .work-details-wrap {
    padding: 10px;
  }
}
/* line 354, ../_registrations.scss */
.form-check {
  margin-top: 2px;
  padding-left: 0;
}

/* line 359, ../_registrations.scss */
.progress {
  height: 6px;
  width: 200px;
  float: right;
  margin-top: 8px;
}

@media (max-width: 768px) {
  /* line 367, ../_registrations.scss */
  .progress {
    margin-bottom: 20px;
  }
}
/* line 372, ../_registrations.scss */
.form-control {
  border: 1px solid #0e0e52 !important;
}

/* line 376, ../_registrations.scss */
.nav-item button {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #444444;
}

/* line 386, ../_registrations.scss */
.reg-label {
  margin-bottom: 10px;
  font-family: 'Lato' !important;
  font-style: normal;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 17px !important;
  /* identical to box height */
  color: #444444 !important;
}

/* line 398, ../_registrations.scss */
.radio-btn-s {
  background-color: white;
  color: #0E0E52 !important;
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  padding: 12px;
  border: none !important;
  border-radius: 5px;
}

/* line 411, ../_registrations.scss */
.form-check {
  border: 2px solid #275f91 !important;
  padding-left: 0px;
  border-radius: 5px;
}

/* line 417, ../_registrations.scss */
.agree-chk {
  border: none !important;
  padding-left: 0px;
  border-radius: none;
}

/* line 423, ../_registrations.scss */
.table tbody tr td,
.table__tbody .table__tr .table__td {
  line-height: 1.4;
  align-self: center;
  background-color: white;
}

/* line 430, ../_registrations.scss */
.radio-btn-no {
  width: 105px;
  background-color: #0E0E52;
  color: white !important;
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  padding: 12px;
  border-radius: 5px;
  margin-right: 15px;
}

/* line 444, ../_registrations.scss */
.radio-btn-yes {
  width: 105px;
  background-color: white;
  color: #0E0E52 !important;
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  padding: 12px;
  border-radius: 5px;
}

/* line 457, ../_registrations.scss */
.popup-heading {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #444444;
}

/* line 467, ../_registrations.scss */
.modal-body input[type="text"] {
  width: 100%;
    /*  background: #eee;
border-radius: 5px; */
}

/* line 473, ../_registrations.scss */
.modal-body .form-check .form-check-input {
  margin-left: 0.5em;
  margin-right: 0.5em;
  background-color: rgba(196, 196, 196, 0.19) !important;
}

/* line 479, ../_registrations.scss */
.modal-body .form-check {
  border: none !important;
  padding-left: 0px;
  border-radius: none;
  margin-top: 20px;
}

/* line 486, ../_registrations.scss */
.modal-body .writer-save-btn {
  width: 103.65px;
  height: 45.56px;
  background: #0E0E52;
  border-radius: 5px;
  padding: 14px;
}

/* line 494, ../_registrations.scss */
.modal-body .record-save-btn {
  width: 164px !important;
  height: 46px !important;
}

/* line 499, ../_registrations.scss */
.record-popover .buttons {
  padding-top: 20px !important;
}

/* line 503, ../_registrations.scss */
.modal-body .record-popover {
  margin-top: 20px;
}

/* line 507, ../_registrations.scss */
.record-popover input[type="text"] {
  height: 60px;
}

/* line 512, ../_registrations.scss */
.form-check-input:checked[type=checkbox] {
  background: url("../../img/check.svg") no-repeat left top;
  background-color: rgba(196, 196, 196, 0.19);
}

/* line 517, ../_registrations.scss */
.form-check-input {
  padding: 10px 10px;
}

/* line 522, ../_registrations.scss */
.form-check-label {
  padding: 5px 7px;
}

/* line 527, ../_registrations.scss */
.add-record-label {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #444444;
  margin-bottom: 20px;
}

/*documeent tab*/
/* line 542, ../_registrations.scss */
.dropdown-toggle::after {
  content: none;
}

/* line 547, ../_registrations.scss */
.reg-add-new-btn {
  width: 95px !important;
}

/* line 551, ../_registrations.scss */
.dropdown-release .dropdown-menu.show {
  border: 1px solid black !important;
  box-shadow: #AAAAAA !important;
}

/* line 556, ../_registrations.scss */
.documnets-wrap {
  background-color: white;
  padding: 30px;
}

@media (max-width: 425px) {
  /* line 562, ../_registrations.scss */
  .documnets-wrap {
    padding: 10px;
  }

  /* line 566, ../_registrations.scss */
  .reg-sortby {
    margin-right: 5px !important;
    margin-top: 14px !important;
  }
}
/* line 572, ../_registrations.scss */
.reg-sortby {
  margin-right: 10px;
  margin-top: 15px;
}

/* line 577, ../_registrations.scss */
.nav-tabs {
  border: none !important;
  border-radius: none !important;
}

/* line 582, ../_registrations.scss */
.nav-tabs .nav-link {
  border: 1px solid rgba(170, 170, 170, 0.32);
}

@media (max-width: 375px) {
  /* line 587, ../_registrations.scss */
  .nav-tabs .nav-link {
    padding: 10px 20px;
  }
}
/* line 592, ../_registrations.scss */
.parentTabs .nav-tabs {
  margin-left: 20px;
}

/* line 597, ../_registrations.scss */
.nav-li {
  padding: 0%;
  width: 100%;
  justify-content: end;
}

@media (max-width: 768px) {
  /* line 605, ../_registrations.scss */
  .btn-wrap {
    text-align: center;
  }

  /* line 609, ../_registrations.scss */
  .reg-sortby-wrap {
    margin: 20px 0px;
  }

  /* line 613, ../_registrations.scss */
  .nav-li {
    justify-content: center;
  }
}
/* line 618, ../_registrations.scss */
.document-table {
  width: 100%;
  overflow-y: auto;
  margin-top: 50px;
}

/* line 625, ../_registrations.scss */
.document-table tr {
  border-bottom: 1px solid #eee !important;
}

/* line 629, ../_registrations.scss */
.document-table table td {
  padding: 20px !important;
  font-family: 'Lato';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  color: #AAAAAA;
}

/* line 642, ../_registrations.scss */
.document-table table th {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #444444;
  background-color: white !important;
  padding: 20px !important;
}

/* line 653, ../_registrations.scss */
.table-heading {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #444444;
  margin-bottom: 10px;
}

/* line 662, ../_registrations.scss */
.fa-folder {
  font-size: 22px;
  margin-right: 5px;
}

/* line 668, ../_registrations.scss */
.create-folder-btn {
  width: 91px;
  background: #0E0E52;
  border-radius: 5px;
  padding: 10px;
}

/*file css*/
/* line 678, ../_registrations.scss */
.wrapper {
  padding: 0px;
}

/* line 682, ../_registrations.scss */
.reg-box {
  position: relative;
  background: #ffffff;
  width: 100%;
}

/* line 688, ../_registrations.scss */
.box-header {
  color: #444;
  display: block;
  padding: 10px;
  position: relative;
  border-bottom: 1px solid #f4f4f4;
  margin-bottom: 10px;
}

/* line 697, ../_registrations.scss */
.box-tools {
  position: absolute;
  right: 10px;
  top: 5px;
}

/* line 703, ../_registrations.scss */
.dropzone-wrapper {
  border: none;
  color: #92b0b3;
  position: relative;
  height: 280px;
}

/* line 710, ../_registrations.scss */
.dropzone-desc {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  text-align: center;
  width: 100%;
  top: 50px;
  font-size: 16px;
}

/* line 721, ../_registrations.scss */
.dropzone,
.dropzone:focus {
  position: absolute;
  outline: none !important;
  width: 100%;
  height: 150px;
  cursor: pointer;
  opacity: 0;
}

/* line 731, ../_registrations.scss */
.dropzone-wrapper:hover,
.dropzone-wrapper.dragover {
  background: none;
}

/* line 736, ../_registrations.scss */
.preview-zone {
  text-align: center;
  display: none;
}

/* line 741, ../_registrations.scss */
.preview-zone .box {
  box-shadow: none;
  border-radius: 0;
  margin-bottom: 0;
}

/* line 748, ../_registrations.scss */
.add-new-link {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #0E0E52;
}

/* line 755, ../_registrations.scss */
.form-control:focus {
  box-shadow: none !important;
}

/* line 759, ../_registrations.scss */
.work-language-select {
  margin-top: 10px;
  margin-bottom: 20px;
}

/* line 765, ../_registrations.scss */
.nav-details {
  text-align: center;
  padding-top: 60px;
}

/* line 770, ../_registrations.scss */
.nav-details li.active {
  color: #3CA4C6;
}

/* line 774, ../_registrations.scss */
.nav-details li {
  display: inline-block;
  padding: 5px 5px;
  color: #c4c4c4;
}

/* line 780, ../_registrations.scss */
.nav-details li.active span {
  background: #3CA4C6;
  color: #fff;
  border: solid 1px #3CA4C6;
}

/* line 786, ../_registrations.scss */
.nav-details span {
  border: solid 1px;
  width: 28px;
  height: 28px;
  display: inline-block;
  border-radius: 50px;
  padding-top: 4px;
  margin-right: 5px;
  text-align: center;
  color: #c4c4c4;
}

/* line 798, ../_registrations.scss */
.nav-details li img {
  display: inline-block;
  padding: 0 0px 0 5px;
  margin-bottom: 4px;
}

@media (max-width: 890px) {
  /* line 805, ../_registrations.scss */
  .nav-details li img {
    width: 120px;
  }
}
@media (max-width: 557px) {
  /* line 811, ../_registrations.scss */
  .nav-details li img {
    width: 50px;
  }
}
@media (max-width: 420px) {
  /* line 817, ../_registrations.scss */
  .nav-details li img {
    display: none;
  }
}
/* line 822, ../_registrations.scss */
hr {
  color: #c4c4c4;
}

/* line 826, ../_registrations.scss */
.save-next-btn:hover,
.back-btn:hover {
  color: white;
}

/* line 832, ../_registrations.scss */
.back-btn {
  background: #3ca4c6;
  border-radius: 5px;
  padding: 15px 0px;
  height: 48px;
  color: white;
  width: 168px;
  text-align: center;
}

/* line 842, ../_registrations.scss */
.save-next-btn {
  margin-left: 10px;
  background: #0E0E52;
  border-radius: 5px;
  padding: 15px 0px;
  height: 48px;
  color: white !important;
  width: 168px;
  text-align: center;
}

/* line 853, ../_registrations.scss */
.save-next-btn img {
  margin-bottom: -3px;
  margin-left: 4px;
}

/* line 858, ../_registrations.scss */
.back-btn img {
  margin-bottom: -3px;
  margin-right: 4px;
}

/* line 864, ../_registrations.scss */
.isrc {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #3CA4C6;
}

/* line 872, ../_registrations.scss */
.iswc {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #3CA4C6;
}

/* line 881, ../_registrations.scss */
.trrid {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #3CA4C6;
}

/* line 888, ../_registrations.scss */
.new-song {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #3CA4C6;
}

/* line 896, ../_registrations.scss */
.record:hover {
  box-shadow: 0px 4px 4px rgba(196, 196, 196, 0.2);
}

/* line 900, ../_registrations.scss */
.record {
  border-radius: 5px;
  border: 1px solid #eee;
}

@media (min-width: 768px) {
  /* line 907, ../_registrations.scss */
  .record img {
    border-radius: 5px;
    width: 80%;
  }
}
@media (max-width: 786px) {
  /* line 915, ../_registrations.scss */
  .new-song {
    text-align: center;
    margin-top: 20px;
  }

  /* line 920, ../_registrations.scss */
  .bottom-record {
    margin-top: 10px;
    text-align: center;
    padding-bottom: 20px;
  }

  /* line 926, ../_registrations.scss */
  .record img {
    margin-top: 20px;
  }

  /* line 930, ../_registrations.scss */
  .pb-20 {
    padding-bottom: 20px;
  }
}
/* line 935, ../_registrations.scss */
.wd {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #275F91;
}

/* line 942, ../_registrations.scss */
.isrc-details {
  text-align: left;
  /*  padding: 50px 0px; */
}

@media (min-width: 768px) {
  /* .isrc-details{
      padding: 80px 0px;
  } */
  /* line 952, ../_registrations.scss */
  .isrc-details p {
    width: 80%;
    /*       margin: 0 auto; */
  }

  /* line 957, ../_registrations.scss */
  .isrc-details h5 {
    width: 80%;
  }

  /* line 961, ../_registrations.scss */
  .p-46 {
    padding-top: 46px;
  }
}
/* line 967, ../_registrations.scss */
.isrc-details h5 {
  font-weight: 700;
  font-size: 18px;
  line-height: 19px;
  color: #0E0E52 !important;
  margin-bottom: 15px;
}

/* line 975, ../_registrations.scss */
.isrc-details p {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px !important;
  color: #444444 !important;
}

/* line 982, ../_registrations.scss */
.isrc-details p span {
  font-weight: 700 !important;
}

/* line 986, ../_registrations.scss */
.isrc-details a {
  color: #3ca4c6;
}

/* line 990, ../_registrations.scss */
.mt-50 {
  margin-top: 50px;
}

/* line 994, ../_registrations.scss */
.registration-chk {
  padding: 10px !important;
  margin-left: -0.5em !important;
  border-color: #0e0e52 !important;
}

/* line 1000, ../_registrations.scss */
.registration-chk-label {
  margin-left: 20px !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  line-height: 17px !important;
  color: #0E0E52 !important;
}

/* line 1008, ../_registrations.scss */
.certificate-link {
  color: #3CA4C6 !important;
}

/* line 1012, ../_registrations.scss */
.pt-20 {
  padding-top: 20px;
}

/* line 1016, ../_registrations.scss */
.gap-tb-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* line 1021, ../_registrations.scss */
.gap-t-20 {
  margin-top: 20px;
}

/* line 1025, ../_registrations.scss */
.gap-b-20 {
  margin-bottom: 20px;
}

/* line 1030, ../_registrations.scss */
.isrc-verify-heading {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  margin: 30px 0px !important;
}

/* line 1038, ../_registrations.scss */
.bold-txt {
  font-weight: 700 !important;
}

/* line 1042, ../_registrations.scss */
.para {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
}

/* line 1048, ../_registrations.scss */
.detail-para {
  font-weight: 700 !important;
  font-size: 18px !important;
  line-height: 22px !important;
  color: #000000 !important;
}

/* line 1055, ../_registrations.scss */
.detail-para-2 {
  margin-bottom: 20px !important;
}

/* line 1059, ../_registrations.scss */
.track-detail-table {
  height: 100%;
}

/* line 1063, ../_registrations.scss */
.track-detail-table tr th {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  text-align: center;
  vertical-align: middle;
}

/* line 1072, ../_registrations.scss */
.track-detail-table tr td {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #000000;
  text-align: center;
  vertical-align: middle;
}

@media (max-width: 768px) {
  /* line 1082, ../_registrations.scss */
  .table-img {
    max-width: 200px;
    padding-bottom: 20px;
  }
}
/* line 1089, ../_registrations.scss */
.verify-deatil-para p {
  font-weight: 500 !important;
  font-size: 14px !important;
  line-height: 17px !important;
  color: #444444 !important;
}

/* line 1096, ../_registrations.scss */
.set-table-height tr th,
.set-table-height tr td {
  padding: 30px 15px !important;
}

@media (max-width: 768px) {
  /* line 1103, ../_registrations.scss */
  .set-table-height tr th,
  .set-table-height tr td {
    padding: 15px 15px !important;
  }
}
@media (min-width: 1024px) {
  /* line 1111, ../_registrations.scss */
  .set-table-height tr th,
  .set-table-height tr td {
    padding: 30px 30px !important;
  }
}
/* line 1, ../_contact.scss */
.add-btn {
  width: 178px !important;
  background-color: #0E0E52 !important;
  border-radius: 5px !important;
  color: white !important;
  padding: 9px 12px !important;
}

/* line 9, ../_contact.scss */
.select-label {
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
  color: #275F91;
}

/* line 17, ../_contact.scss */
.sec-gap {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* line 22, ../_contact.scss */
#CategorySelect {
  width: 40%;
  border: 1px solid #3CA4C6 !important;
  border-radius: 5px;
}

@media (max-width: 768px) {
  /* line 30, ../_contact.scss */
  #CategorySelect {
    width: 100%;
  }
}
/* line 35, ../_contact.scss */
.form-cover {
  border: 1px solid rgba(196, 196, 196, 0.2);
  padding: 20px;
  margin-bottom: 20px;
}

/* line 41, ../_contact.scss */
.form-cover h6 {
  padding-top: 0px;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

/* line 47, ../_contact.scss */
.save {
  width: 103.65px;
  height: 45.56px;
  background: #0E0E52;
  border-radius: 5px;
  padding: 14px;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
}

/* line 59, ../_contact.scss */
.field {
  width: 100%;
  margin-bottom: 10px;
}

/* line 64, ../_contact.scss */
.custom-select {
  margin-right: 10px;
}

/* line 68, ../_contact.scss */
.content-wrapper-contact {
  padding: 0px;
}

/* line 72, ../_contact.scss */
.contact-select .select-selected.select-arrow-active:after {
  top: 13px;
}

/* line 76, ../_contact.scss */
.contact-select .select-selected:after {
  top: 19px;
  right: 15px;
}

/* line 81, ../_contact.scss */
.contact-select .select-items div,
.select-selected {
  padding: 12px 16px;
}

/* line 89, ../_contact.scss */
.nav-details {
  text-align: center;
  padding-top: 60px;
}

/* line 94, ../_contact.scss */
.nav-details li.active {
  color: #3CA4C6;
}

/* line 98, ../_contact.scss */
.nav-details li {
  display: inline-block;
  padding: 5px 5px;
}

/* line 103, ../_contact.scss */
.nav-details li.active span {
  background: #3CA4C6;
  color: #fff;
  border: solid 1px #3CA4C6;
}

/* line 109, ../_contact.scss */
.nav-details span {
  border: solid 1px;
  width: 28px;
  height: 28px;
  display: inline-block;
  border-radius: 50px;
  padding-top: 4px;
  margin-right: 5px;
  text-align: center;
}

/* line 120, ../_contact.scss */
.nav-details li img {
  display: inline-block;
  padding: 0 0px 0 5px;
  margin-bottom: 4px;
}

@media (max-width: 480px) {
  /* line 127, ../_contact.scss */
  .nav-details li img {
    display: none;
  }
}
/* line 132, ../_contact.scss */
.form-check-label {
  margin: 6px;
}

/* line 136, ../_contact.scss */
.greyed-trash-icon {
  color: #aaaaaa !important;
}

/* line 140, ../_contact.scss */
.back-btn {
  width: 22%;
  height: 45.56px;
  background: #FFFFFF !important;
  border: 2px solid #0E0E52 !important;
  border-radius: 5px !important;
  color: #0E0E52 !important;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  margin-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding: 12px 0px !important;
}

/* line 156, ../_contact.scss */
.back-btn img {
  margin-bottom: -3px;
  margin-right: 4px;
}

/* line 161, ../_contact.scss */
.save-btn img {
  margin-bottom: -3px;
  margin-left: 4px;
}

@media (max-width: 768px) {
  /* line 167, ../_contact.scss */
  .save-btn {
    width: 35% !important;
  }

  /* line 171, ../_contact.scss */
  .back-btn {
    width: 35% !important;
  }
}
@media (max-width: 425px) {
  /* line 177, ../_contact.scss */
  .save-btn {
    width: 100% !important;
  }

  /* line 181, ../_contact.scss */
  .back-btn {
    width: 100% !important;
  }
}
/* line 186, ../_contact.scss */
.save-btn {
  width: 22%;
  height: 45.56px;
  background: #0E0E52 !important;
  border: 2px solid #0E0E52 !important;
  border-radius: 5px !important;
  color: white !important;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding: 12px 0px !important;
}

/* line 202, ../_contact.scss */
.check-border {
  border: 1px solid #aaaaaa !important;
}

/* line 206, ../_contact.scss */
.pp-img {
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 10px;
  cursor: pointer;
  height: 50px;
  border-radius: 100px !important;
}

/* line 216, ../_contact.scss */
.upload-pic-para {
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #275f91;
  margin-bottom: 20px;
}

/* @media (min-width:768px) {
    .pp-img{
        margin-left: 18px ;
    }
} */
/* line 231, ../_contact.scss */
.form-check .form-check-input {
  padding: 10px !important;
}

/* line 235, ../_contact.scss */
.remove-pop-heading {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
}

/* line 244, ../_contact.scss */
.crt-btn {
  height: 45.56px !important;
}

/* line 248, ../_contact.scss */
.form-contact-label {
  padding-left: 37px;
}

/* line 252, ../_contact.scss */
.remove-contact-modal-body {
  padding: 4rem !important;
}

@media (max-width: 425px) {
  /* line 257, ../_contact.scss */
  .remove-contact-modal-body {
    padding: 2rem !important;
  }
}
/* line 262, ../_contact.scss */
.profile-pop-heading {
  padding: 20px 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(170, 170, 170, 0.37) !important;
  font-family: 'Lato';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
  /* or 200% */
  color: #000000;
}

/* line 276, ../_contact.scss */
.camera-cover p {
  text-align: center;
  font-family: 'Lato';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
  color: #000000;
  margin-top: 8px;
}

/* line 288, ../_contact.scss */
.gallery-cover p {
  text-align: center;
  font-family: 'Lato';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
  color: #000000;
  margin-top: 8px;
}

/* line 299, ../_contact.scss */
.gap {
  margin-top: 30px;
}

/* line 303, ../_contact.scss */
.add-dab-btn {
  background: #0E0E52 !important;
  padding: 9px 35px;
}

@media (max-width: 768px) {
  /* line 309, ../_contact.scss */
  .add-dab-btn {
    margin-top: 20px;
  }
}
/* line 315, ../_contact.scss */
.exp-btn {
  width: 26% !important;
  height: 45.56px !important;
}

/* line 320, ../_contact.scss */
.con-btn {
  width: 80% !important;
  margin-left: 10%;
}

/* line 325, ../_contact.scss */
.field-wi8-bg {
  margin-bottom: 0pc;
  margin-right: 10px;
  background-color: white;
  border: 1px solid rgba(196, 196, 196, 0.39) !important;
}

/* line 332, ../_contact.scss */
.con-Modal {
  background-color: #fff !important;
}

/* line 337, ../_contact.scss */
.header-inner small {
  font-size: 12px;
}

/* line 342, ../_contact.scss */
small.trid {
  font-size: 12px;
}

/* line 1, ../_album.scss */
.overlay-container {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -520px;
  margin-top: -277px;
  width: 1040px;
  height: 555px;
  background: white;
  border-radius: 7px;
  border: 1px solid #c9c9c9;
  box-sizing: border-box;
  padding: 30px 60px 20px 50px;
  z-index: 40;
  overflow: hidden;
}

/* line 17, ../_album.scss */
.overlay-container .close {
  position: absolute;
  right: 25px;
  top: 25px;
  cursor: pointer;
}

/* line 23, ../_album.scss */
.overlay-container .recording-image {
  width: 100px;
  height: 100px;
  float: left;
}

/* line 28, ../_album.scss */
.overlay-container .recording-detail {
  float: left;
  padding-left: 30px;
  padding-top: 25px;
}

/* line 33, ../_album.scss */
.overlay-container .recording-image img {
  width: 100px;
  height: 100px;
}

/* line 37, ../_album.scss */
.overlay-container li {
  display: inline-block;
  width: 100%;
}

/* line 41, ../_album.scss */
.overlay-container li .title {
  color: #699db7;
  font-family: gotham-med, sans-serif;
}

/* line 45, ../_album.scss */
.overlay-container span {
  color: #989898;
  display: block;
  font-size: 16px;
  margin-top: 5px;
}

/* line 51, ../_album.scss */
.overlay-container span.value {
  font-family: gotham-med, sans-serif;
  display: inline-block;
}

/* line 55, ../_album.scss */
.overlay-container .add {
  background: #B38BCD;
  color: #fff;
  float: right;
  border: none;
  width: 100px;
  height: 49px;
  margin-top: 20px;
  margin-right: 15px;
  font-family: gotham-med, sans-serif;
  font-size: 16px;
  padding-top: 3px;
}

/* line 68, ../_album.scss */
.overlay-container .add.added {
  opacity: 0.3;
}

/* line 71, ../_album.scss */
.overlay-content {
  overflow: hidden;
  width: 100%;
  height: 380px;
}

/* line 76, ../_album.scss */
.overlay-content .scroll {
  width: 100%;
  height: 350px;
  margin: 30px 0;
  overflow: hidden;
}

/* line 82, ../_album.scss */
.overlay-container .search img {
  width: 20px;
  cursor: pointer;
  margin-left: 5px;
  position: relative;
  top: 3px;
}

/* line 89, ../_album.scss */
.overlay-container ul {
  margin: 0;
  padding: 0;
}

/* line 93, ../_album.scss */
.overlay-container label {
  font-size: 16px;
  top: 2px;
  position: relative;
  font-weight: normal;
  font-family: gotham-med, sans-serif;
}

/* line 100, ../_album.scss */
.overlay-container input {
  font-size: 16px;
  border: 1px solid #699DB7;
  height: 35px;
  width: 200px;
  padding: 5px;
}

/* line 108, ../_album.scss */
.overlay-container ul {
  margin-top: 40px;
}

/* line 111, ../_album.scss */
.album-detail-page .by, .album-detail-page .isrc, .split {
  margin-left: 7px;
  margin-right: 7px;
}

/* line 115, ../_album.scss */
.recording-list-album {
  padding-top: 22px;
}
/* line 118, ../_album.scss */
.recording-list-album li {
  margin-bottom: 30px;
}
/* line 121, ../_album.scss */
.recording-list-album li:last-of-type {
  margin-bottom: 0;
}
/* line 126, ../_album.scss */
.recording-list-album .play {
  display: inline-block;
}
/* line 129, ../_album.scss */
.recording-list-album .play img {
  width: 40px;
  cursor: pointer;
  margin-right: 20px;
}
/* line 136, ../_album.scss */
.recording-list-album .fa-remove {
  cursor: pointer;
  position: absolute;
  right: 15px;
}
/* line 142, ../_album.scss */
.recording-list-album .album-recording-item {
  line-height: 1.5;
  margin-bottom: 7px;
  position: relative;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
}
/* line 149, ../_album.scss */
.recording-list-album .album-recording-item label {
  margin-right: 7px;
}
/* line 153, ../_album.scss */
.recording-list-album .album-recording-item .action {
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
  height: 54px;
  vertical-align: middle;
  align-items: center;
  display: flex;
}
/* line 164, ../_album.scss */
.recording-list-album .album-recording-item:last-child {
  margin-bottom: 0;
}

/* line 169, ../_album.scss */
.track-name {
  color: #a9c7d6;
}

/* line 172, ../_album.scss */
.overlay-container .loader {
  position: absolute;
  top: 40%;
  left: 50%;
  margin-left: -100px;
}

/* line 179, ../_album.scss */
.album-modal .modal-body {
  height: 500px;
  padding: 60px 80px;
}

@media screen and (max-width: 1100px) {
  /* line 184, ../_album.scss */
  .overlay-container {
    width: 800px;
    height: 400px;
    margin-left: -385px;
    margin-top: -200px;
  }
}
/* line 1, ../_saving.scss */
.saving-status {
  position: fixed;
  right: 40px;
  bottom: 40px;
  border-radius: 5px;
  width: 370px;
  height: 39px;
  color: #7ba9c0;
  font-size: 18px;
  padding: 12px 35px;
  display: none;
}

/* line 13, ../_saving.scss */
.saving-status img {
  width: 20px;
  margin-right: 14px;
}

/* line 17, ../_saving.scss */
.saving-status .saved {
  padding-left: 25px;
  margin-top: 3px;
}

/* line 22, ../_saving.scss */
.saving-status .saving .text {
  position: relative;
  top: -7px;
}

/* line 3, ../_invite.scss */
.invite .registerForm {
  width: 100%;
}
/* line 7, ../_invite.scss */
.invite .form-section {
  margin-bottom: 16px;
}
/* line 11, ../_invite.scss */
.invite .form-group {
  padding: 12px;
  width: 100%;
}
/* line 16, ../_invite.scss */
.invite label {
  display: block;
}
/* line 20, ../_invite.scss */
.invite input {
  margin: 12px;
  width: 30%;
  display: block;
  color: black;
}
/* line 27, ../_invite.scss */
.invite span {
  padding: 8px;
}
/* line 31, ../_invite.scss */
.invite button {
  height: 60px;
  padding: 4px 20px;
  margin-top: 30px;
  margin-left: 30px;
  background-color: #408396;
  border: none;
}

/* line 1, ../table-expandable.scss */
table.table-expandable > tbody > tr:nth-child(odd) {
  cursor: pointer;
}

/* line 5, ../table-expandable.scss */
table.table-expandable.table-hover > tbody > tr:nth-child(even):hover td {
  background-color: white;
}

/* line 9, ../table-expandable.scss */
table.table-expandable > tbody > tr div.table-expandable-arrow {
  background: transparent url("../../img/hide-show.png") no-repeat scroll 0px -16px;
  width: 16px;
  height: 16px;
  display: block;
}

/* line 16, ../table-expandable.scss */
table.table-expandable > tbody > tr div.table-expandable-arrow.up {
  background-position: 0px 0px;
}

/* line 20, ../table-expandable.scss */
table tbody tr {
  background-color: white !important;
}

/* line 24, ../table-expandable.scss */
.table-striped > tbody > tr:nth-of-type(odd) {
  --bs-table-accent-bg: none;
}

/* line 1, ../_setting.scss */
.blue-head {
  background: linear-gradient(89.78deg, #0e0e52 22.32%, #1a3771 94.26%);
  border-radius: 5px;
  padding: 20px 50px;
}

/* line 7, ../_setting.scss */
.profile-pic {
  margin-bottom: -50px;
  border: 10px solid white;
  border-radius: 100px;
}

/* line 13, ../_setting.scss */
.s-content-wrapper {
  padding: 0px 0px 50px 0px;
}

/* line 17, ../_setting.scss */
.inner-wrap {
  padding: 0px;
}

/* line 21, ../_setting.scss */
.blue-head h2 {
  font-family: "Lato";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: #ffffff;
  margin-bottom: 15px;
}

/* line 31, ../_setting.scss */
.blue-head p {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #dedede;
}

@media (max-width: 768px) {
  /* line 42, ../_setting.scss */
  .profile-pic {
    margin-bottom: 10px;
  }

  /* line 46, ../_setting.scss */
  .blue-head h2 {
    margin-bottom: 0px;
  }

  /* line 50, ../_setting.scss */
  .blue-head h2,
  .blue-head p {
    text-align: center;
  }
}
/* line 56, ../_setting.scss */
.nav-link span {
  position: static !important;
}

/* line 64, ../_setting.scss */
.nav {
  display: -webkit-inline-flex !important;
  background-color: white;
  border-bottom: 1px solid #efefef;
}

/* line 73, ../_setting.scss */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #0e0e52;
  background-color: white;
  font-family: "Lato";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  color: #0e0e52;
}

/* line 87, ../_setting.scss */
.nav-pills .nav-link.active {
  border-bottom: 4px solid #0e0e52;
}

/* line 91, ../_setting.scss */
.edit-profile-form p {
  font-family: "Lato";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  color: #0e0e52;
  border-bottom: 1px solid #efefef;
  padding-bottom: 20px;
}

/* line 103, ../_setting.scss */
.form-cover {
  border: 1px solid rgba(196, 196, 196, 0.2);
  padding: 20px 0px;
  margin-bottom: 20px;
}

/* line 109, ../_setting.scss */
label {
  display: block;
}

/* line 113, ../_setting.scss */
.field {
  width: 100%;
}

/* line 117, ../_setting.scss */
.pass-field {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  /* line 122, ../_setting.scss */
  .field {
    margin-bottom: 20px;
  }

  /* line 126, ../_setting.scss */
  .sec-1 {
    margin-top: 30px;
  }

  /* line 130, ../_setting.scss */
  .edit-pass {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (min-width: 768px) {
  /* line 137, ../_setting.scss */
  .sec-gap {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
/* line 143, ../_setting.scss */
.col-gap-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 148, ../_setting.scss */
.col-gap-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* line 153, ../_setting.scss */
.update-changes {
  background: #0e0e52;
  border-radius: 5px;
  padding: 8px 20px !important;
  margin-top: 20px;
}

/* line 160, ../_setting.scss */
.edit-pass-form p {
  padding-left: 10px;
}

/* line 164, ../_setting.scss */
.edit-pass-form .update-changes {
  margin-top: 0px !important;
}

/* line 168, ../_setting.scss */
#filter-dropdown {
  width: 20%;
  height: 43px;
}

@media (min-width: 769px) and (max-width: 1400px) {
  /* line 174, ../_setting.scss */
  #filter-dropdown {
    width: 40% !important;
  }
}
/* line 179, ../_setting.scss */
.add-btn {
  background: #0e0e52;
  border-radius: 5px;
  width: 178px;
  padding: 9px 20px !important;
}

@media (max-width: 768px) {
  /* line 187, ../_setting.scss */
  #filter-dropdown {
    width: 100% !important;
  }

  /* line 191, ../_setting.scss */
  .add-btn {
    width: 100%;
  }
}
@media (max-width: 425px) {
  /* line 197, ../_setting.scss */
  .add-btn {
    width: 178px !important;
  }
}
/* line 202, ../_setting.scss */
.st-contact-table {
  padding-top: 40px;
}

/* line 206, ../_setting.scss */
.modal input,
.modal select {
  width: 100%;
}

/* line 211, ../_setting.scss */
.form-switch .form-check-input {
  width: 3em !important;
  margin-right: 5px;
  border: 1px solid #c4c4c4 !important;
}

/* line 217, ../_setting.scss */
.s-form-check {
  border: 0 !important;
}

/* line 221, ../_setting.scss */
.form-switch label {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #444444;
  padding-top: 6px;
}

/* line 232, ../_setting.scss */
.current-plan-heading {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #444444;
}

/* line 239, ../_setting.scss */
.monthly-plan {
  background: rgba(239, 248, 250, 0.44);
  border: 1px solid rgba(60, 164, 198, 0.14);
  border-radius: 6px;
  padding: 22px;
}

/* line 246, ../_setting.scss */
.monthly-plan h3 {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #0e0e52;
  margin-bottom: 10px;
}

/* line 254, ../_setting.scss */
.monthly-plan p {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #444444;
  text-align: left;
}

/* line 262, ../_setting.scss */
.custom-select {
  margin-right: 10px;
}

/* line 266, ../_setting.scss */
.monthly-plan-heading {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  /* identical to box height */
  color: #0e0e52;
}

/* line 276, ../_setting.scss */
.price-text {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  /* identical to box height */
  color: #444444;
}

/* line 286, ../_setting.scss */
.include-txt {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #0e0e52;
}

/* line 295, ../_setting.scss */
.blue-txt {
  font-weight: 400;
  font-size: 14px !important;
  line-height: 17px !important;
  color: #3ca4c6 !important;
  margin-left: 20px;
  margin-top: 0;
}

/* line 304, ../_setting.scss */
.blue-heading {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #0e0e52;
  margin-bottom: 10px;
}

/* line 313, ../_setting.scss */
.visa-ending-txt {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  color: #444444;
  margin-bottom: 5px;
}

/* line 322, ../_setting.scss */
.expiry-text-txt {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  margin-bottom: 15px;
  color: #275f91;
}

/* line 332, ../_setting.scss */
.set-default-txt {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  color: #888888 !important;
}

/* line 341, ../_setting.scss */
.edit-txt {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  margin-left: 10px;
  color: #275f91 !important;
}

@media (max-width: 768px) {
  /* line 352, ../_setting.scss */
  .mobile-sec-gap {
    margin-bottom: 20px;
  }

  /* line 356, ../_setting.scss */
  .blue-txt {
    margin-left: 0px;
  }

  /* line 360, ../_setting.scss */
  .monthly-plan {
    padding: 22px 5px;
  }
}
/* line 365, ../_setting.scss */
.select-payment-txt {
  text-align: left !important;
}

/* line 369, ../_setting.scss */
.add-payment-link {
  font-weight: 600 !important;
  font-size: 14px !important;
  line-height: 17px;
  color: #0e0e52 !important;
}

/* line 376, ../_setting.scss */
.billing-table {
  padding-top: 0px;
}

@media (min-width: 768px) {
  /* line 381, ../_setting.scss */
  .card-yy {
    margin-top: 18px !important;
  }
}
/* line 386, ../_setting.scss */
.cancel-btn {
  width: 119px;
  height: 45.56px;
  background: #ffffff !important;
  border: 2px solid #0e0e52 !important;
  border-radius: 5px !important;
  color: #0e0e52 !important;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  margin-right: 10px;
  padding: 12px 0px !important;
}

/* line 400, ../_setting.scss */
.save-btn {
  width: 119px;
  height: 45.56px;
  background: #0e0e52 !important;
  border: 2px solid #0e0e52 !important;
  border-radius: 5px !important;
  color: white !important;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  padding: 12px 0px !important;
}

/* line 413, ../_setting.scss */
.blue-bar {
  background: rgba(60, 164, 198, 0.08);
  border-radius: 4px;
  padding: 15px;
  text-align: center;
}

/* line 420, ../_setting.scss */
.blue-bar p {
  color: #3ca4c6;
}

/* line 424, ../_setting.scss */
.blue-bar img {
  margin-bottom: -1px;
  margin-right: 5px;
}

/* line 429, ../_setting.scss */
.bill-info {
  width: 100%;
  overflow-y: auto;
}

/* line 434, ../_setting.scss */
.bill-info th {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #444444;
  background-color: white !important;
  border-bottom: 1px solid rgba(196, 196, 196, 0.2);
  padding: 20px !important;
  width: 35%;
}

/* line 445, ../_setting.scss */
.bill-info td {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #444444;
  padding: 20px !important;
}

/* line 453, ../_setting.scss */
div.buttons {
  padding: 30px 0 30px;
}

/* line 457, ../_setting.scss */
.s-form-h6 {
  padding-top: 30px !important;
  font-weight: 700 !important;
  line-height: 32px !important;
}

/* line 463, ../_setting.scss */
#user-roles-popover {
  max-width: 100% !important;
}

/* line 467, ../_setting.scss */
.custom-modal-spinner-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}

/* line 474, ../_setting.scss */
.custom-modal-spinner {
  max-width: 56px !important;
  max-height: 56px !important;
}

/* line 479, ../_setting.scss */
.form-check-input.user-list {
  padding: 10px !important;
}

/* line 1, ../_my-profile.scss */
.blue-head {
  background: linear-gradient(89.78deg, #0e0e52 22.32%, #1a3771 94.26%);
  border-radius: 5px;
  padding: 20px 50px;
}

/* line 7, ../_my-profile.scss */
.profile-pic {
  margin-bottom: -50px;
  border: 10px solid white;
  border-radius: 100px;
}

/* line 13, ../_my-profile.scss */
.mp-content-wrapper {
  padding: 0px 0px 50px 0px;
}

/* line 17, ../_my-profile.scss */
.inner-wrap {
  padding: 0px;
}

/* line 21, ../_my-profile.scss */
.blue-head h2 {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: #FFFFFF;
  margin-bottom: 15px;
}

/* line 32, ../_my-profile.scss */
.blue-head p {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #DEDEDE;
}

@media (max-width: 768px) {
  /* line 45, ../_my-profile.scss */
  .profile-pic {
    margin-bottom: 10px;
  }

  /* line 49, ../_my-profile.scss */
  .blue-head h2 {
    margin-bottom: 0px;
  }

  /* line 53, ../_my-profile.scss */
  .blue-head h2,
  p {
    text-align: center;
  }
}
/* line 59, ../_my-profile.scss */
.nav-link {
  color: #c4c4c4;
}

/* line 63, ../_my-profile.scss */
.nav-link span {
  position: static !important;
}

/* line 67, ../_my-profile.scss */
.mp-nav-tabs {
  float: none !important;
}

/* line 71, ../_my-profile.scss */
.nav {
  display: -webkit-inline-flex !important;
  background-color: white;
  border-bottom: 1px solid #efefef;
}

/* line 77, ../_my-profile.scss */
.mp-nav {
  width: 100%;
  margin-top: 20px;
  margin-bottom: -1px;
}

/* line 83, ../_my-profile.scss */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #0E0E52;
  background-color: white;
  font-family: 'Lato';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  color: #0E0E52;
}

/* line 98, ../_my-profile.scss */
.nav-pills .nav-link.active {
  border-bottom: 4px solid #0E0E52;
}

/* line 103, ../_my-profile.scss */
.edit-profile-form p {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  color: #0E0E52;
  border-bottom: 1px solid #efefef;
  padding-bottom: 20px;
}

/* line 116, ../_my-profile.scss */
.form-cover {
  border: 1px solid rgba(196, 196, 196, 0.2);
  padding: 20px 0px;
  margin-bottom: 20px;
}

/* line 122, ../_my-profile.scss */
label {
  display: block;
}

/* line 127, ../_my-profile.scss */
.field {
  width: 100%;
}

/* line 131, ../_my-profile.scss */
.pass-field {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  /* line 136, ../_my-profile.scss */
  .field {
    margin-bottom: 20px;
  }

  /* line 140, ../_my-profile.scss */
  .sec-1 {
    margin-top: 30px;
  }

  /* line 144, ../_my-profile.scss */
  .edit-pass {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (min-width: 768px) {
  /* line 151, ../_my-profile.scss */
  .sec-gap {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
/* line 157, ../_my-profile.scss */
.update-changes {
  background: #0E0E52;
  border-radius: 5px;
  padding: 8px 20px !important;
  margin-top: 20px;
}

/* line 164, ../_my-profile.scss */
.edit-pass-form p {
  padding-left: 10px;
}

/* line 168, ../_my-profile.scss */
.edit-pass-form .update-changes {
  margin-top: 0px !important;
}

/* line 1, ../_services.scss */
.sr-content-wrapper {
  padding: 30px !important;
}

@media (max-width: 768px) {
  /* line 6, ../_services.scss */
  .sr-content-wrapper {
    padding: 30px 0px !important;
  }
}
/* line 11, ../_services.scss */
.sr-card-box {
  border: 1px solid #0e0e52;
  text-align: center;
  padding: 20px;
  border-radius: 5px;
}

/* line 18, ../_services.scss */
.sr-card-box h4 {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 10px;
  margin-top: 24px;
  color: black !important;
}

/* line 27, ../_services.scss */
.sr-card-box .learn-more {
  font-family: "Lato";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 24px;
  color: #aaaaaa;
}

/* line 37, ../_services.scss */
.sr-card-box button {
  height: 40px;
  border-radius: 5px;
  margin-top: 10px;
  width: 100%;
}

/* line 44, ../_services.scss */
.start-btn {
  background-color: #0e0e52;
  color: white;
}

/* line 49, ../_services.scss */
.result-btn {
  background-color: white;
  border: 1px solid #aaaaaa;
  color: #aaaaaa;
}

/* line 57, ../_services.scss */
.content-wrapper {
  padding: 30px !important;
}

@media (max-width: 768px) {
  /* line 62, ../_services.scss */
  .content-wrapper {
    padding: 30px 0px !important;
  }
}
/* line 67, ../_services.scss */
.card-box {
  border: 1px solid #0e0e52;
  text-align: center;
  padding: 20px;
  border-radius: 5px;
}

/* line 74, ../_services.scss */
.card-box h4 {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 10px;
  margin-top: 24px;
  color: black !important;
}

/* line 83, ../_services.scss */
.card-box .learn-more {
  font-family: "Lato";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 24px;
  color: #aaaaaa;
}

/* line 93, ../_services.scss */
.card-box button {
  height: 40px;
  border-radius: 5px;
  margin-top: 10px;
  width: 100%;
}

/* line 100, ../_services.scss */
.start-btn {
  background-color: #0e0e52;
  color: white;
}

/* line 104, ../_services.scss */
.result-btn {
  background-color: white;
  border: 1px solid #aaaaaa;
  color: #aaaaaa;
}

/* line 110, ../_services.scss */
.service-pop-p {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #0e0e52;
}

/* line 117, ../_services.scss */
.start-popup-btn {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  background: #0e0e52;
  border-radius: 5px;
  width: 148px;
  height: 40px;
  padding: 10px;
}

/* line 128, ../_services.scss */
.service-success-p {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #0e0e52;
}

/* line 135, ../_services.scss */
.summary-service-txt {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #444444;
}

/* line 142, ../_services.scss */
.work-summary-cards {
  background: #0e0e52;
  border-radius: 5px;
}

/* line 147, ../_services.scss */
.work-summary-card-text {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  text-align: center;
}

/* line 155, ../_services.scss */
.work-summary-card-no {
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  color: #ffffff;
  text-align: center;
}

/* line 163, ../_services.scss */
.nav-link {
  padding: 10px 25px !important;
}

/* line 167, ../_services.scss */
.nav-tabs {
  border: 1px solid #275f91;
  border-radius: 5px;
}

/* table styling */
/* line 174, ../_services.scss */
.set-table-height tr th,
.set-table-height tr td {
  padding: 30px 15px !important;
}

@media (min-width: 1024px) {
  /* line 179, ../_services.scss */
  .set-table-height tr th,
  .set-table-height tr td {
    padding: 30px 30px !important;
  }
}
/* line 185, ../_services.scss */
.track-detail-table tr th {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  text-align: left;
  vertical-align: middle;
}

/* line 194, ../_services.scss */
.set-table-height tr th,
.set-table-height tr td {
  padding: 30px 15px !important;
}

@media (min-width: 1024px) {
  /* line 200, ../_services.scss */
  .set-table-height tr th,
  .set-table-height tr td {
    padding: 30px 30px !important;
  }
}
/* line 206, ../_services.scss */
.track-detail-table tr td {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #000000;
  text-align: left;
  vertical-align: middle;
}

/* line 215, ../_services.scss */
.pagination .page-item {
  margin-left: 10px;
}

/* line 219, ../_services.scss */
.pagination .page-item a {
  color: black !important;
  font-weight: 600;
}

/* line 224, ../_services.scss */
.pagination .page-link:focus {
  color: #0165c3 !important;
  background-color: white;
  border: 1px solid #0165c3;
  outline: 0;
  box-shadow: none !important;
}

/* line 232, ../_services.scss */
.pagination .prev-link img {
  padding: 3px 0px;
  transform: rotate(180deg);
}

/* line 236, ../_services.scss */
.pagination .next-link img {
  padding: 3px 0px;
}

/* line 240, ../_services.scss */
.pagination .disabled .page-link {
  background-color: #f4f4f4 !important;
}

/* line 1, ../_bulkUploads.scss */
.add-btn {
  width: 200px !important;
  background-color: #0E0E52 !important;
  border-radius: 5px !important;
  color: white !important;
  padding: 10px !important;
}

/* line 9, ../_bulkUploads.scss */
.bulk-table table tr th {
  color: #444444;
  padding: 20px !important;
  font-weight: 600;
}

/* line 15, ../_bulkUploads.scss */
.bulk-table table tr td {
  color: #444444;
  padding: 20px !important;
}

/* line 20, ../_bulkUploads.scss */
.bulk-sidebar {
  background-color: white;
  padding: 20px;
}

@media (max-width: 768px) {
  /* line 26, ../_bulkUploads.scss */
  .bulk-sidebar {
    padding: 10px;
    margin-top: 20px;
  }
}
/* line 32, ../_bulkUploads.scss */
.dark-heading {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #444444;
}

/* line 39, ../_bulkUploads.scss */
.bulk-aside-para {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #AAAAAA;
}

/* line 47, ../_bulkUploads.scss */
.download-wrap {
  padding: 20px 0px;
}

/* line 51, ../_bulkUploads.scss */
.blue-table-element {
  color: #275F91 !important;
}

/*file css*/
/* line 57, ../_bulkUploads.scss */
.wrapper {
  padding: 0px;
}

/* line 61, ../_bulkUploads.scss */
.box {
  position: relative;
  width: 100%;
}

/* line 66, ../_bulkUploads.scss */
.bu-box {
  background: #ffffff;
}

/* line 70, ../_bulkUploads.scss */
.box-header {
  color: #444;
  display: block;
  padding: 10px;
  position: relative;
  border-bottom: 1px solid #f4f4f4;
  margin-bottom: 10px;
}

/* line 79, ../_bulkUploads.scss */
.box-tools {
  position: absolute;
  right: 10px;
  top: 5px;
}

/* line 85, ../_bulkUploads.scss */
.dropzone-wrapper {
  border: none;
  color: #92b0b3;
  position: relative;
  height: 280px;
}

/* line 92, ../_bulkUploads.scss */
.dropzone-desc {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  text-align: center;
  width: 100%;
  top: 50px;
  font-size: 16px;
}

/* line 103, ../_bulkUploads.scss */
.dropzone,
.dropzone:focus {
  position: absolute;
  outline: none !important;
  width: 100%;
  height: 150px;
  cursor: pointer;
  opacity: 0;
}

/* line 113, ../_bulkUploads.scss */
.dropzone-wrapper:hover,
.dropzone-wrapper.dragover {
  background: none;
}

/* line 118, ../_bulkUploads.scss */
.preview-zone {
  text-align: center;
  display: none;
}

/* line 123, ../_bulkUploads.scss */
.preview-zone .box {
  box-shadow: none;
  border-radius: 0;
  margin-bottom: 0;
}

/* line 1, ../_ddex.scss */
.profile-pic {
  margin-bottom: -50px;
  border: 10px solid white;
  border-radius: 100px;
}

/* line 7, ../_ddex.scss */
.dd-content-wrapper {
  padding: 0px 0px 50px 0px;
}

/* line 11, ../_ddex.scss */
.inner-wrap {
  padding: 0px;
}

/* line 15, ../_ddex.scss */
.apply-ddex-text {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #0E0E52;
}

/* line 22, ../_ddex.scss */
textarea {
  width: 100%;
  background-color: white;
  border: 1px solid #eee !important;
  border-radius: 5px;
}

/* line 29, ../_ddex.scss */
textarea:focus-visible {
  border-color: #0E0E52 !important;
}

@media (max-width: 768px) {
  /* line 34, ../_ddex.scss */
  .profile-pic {
    margin-bottom: 10px;
  }
}
/* line 40, ../_ddex.scss */
.nav-link {
  color: #c4c4c4;
}

/* line 44, ../_ddex.scss */
.nav-link span {
  position: static !important;
}

/* line 48, ../_ddex.scss */
.dd-nav-tabs {
  float: none !important;
}

/* line 52, ../_ddex.scss */
.nav {
  display: -webkit-inline-flex !important;
  background-color: white;
  border-bottom: 1px solid #efefef;
}

/* line 58, ../_ddex.scss */
.dd-nav {
  width: 100%;
  margin-top: 20px;
  margin-bottom: -1px;
}

/* line 64, ../_ddex.scss */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #0E0E52;
  background-color: white;
  font-family: 'Lato';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #0E0E52;
}

/* line 76, ../_ddex.scss */
.nav-pills .nav-link.active {
  border-bottom: 4px solid #0E0E52;
}

/* line 81, ../_ddex.scss */
.edit-profile-form p {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #444444;
}

/* line 89, ../_ddex.scss */
.form-cover {
  border: 1px solid rgba(196, 196, 196, 0.2);
  padding: 20px 0px;
  margin-bottom: 20px;
}

/* line 95, ../_ddex.scss */
label {
  display: block;
}

/* line 100, ../_ddex.scss */
.field {
  width: 100%;
}

/* line 104, ../_ddex.scss */
.pass-field {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  /* line 109, ../_ddex.scss */
  .field {
    margin-bottom: 20px;
  }

  /* line 113, ../_ddex.scss */
  .sec-1 {
    margin-top: 30px;
  }

  /* line 117, ../_ddex.scss */
  .edit-pass {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (min-width: 768px) {
  /* line 124, ../_ddex.scss */
  .sec-gap {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
/* line 130, ../_ddex.scss */
.update-changes {
  background: #0E0E52;
  border-radius: 5px;
  padding: 8px 20px !important;
  margin-top: 20px;
}

/* line 137, ../_ddex.scss */
.edit-pass-form p {
  padding-left: 10px;
}

/* line 141, ../_ddex.scss */
.edit-pass-form .update-changes {
  margin-top: 0px !important;
}

/* line 145, ../_ddex.scss */
.agree-chk {
  display: flex;
  align-items: center;
}

/* line 150, ../_ddex.scss */
.agree-chk-input {
  margin-right: 10px;
  padding: 10px !important;
  border-color: #eee !important;
}

/* line 156, ../_ddex.scss */
.agree-chk-label {
  vertical-align: middle;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #AFAFAF;
}

/* line 164, ../_ddex.scss */
.agree-chk-link {
  color: #3CA4C6;
}

/* line 1, ../_work-detail.scss */
.wr-body {
  font-family: 'Lato' !important;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  color: #444444;
}

/* line 13, ../_work-detail.scss */
.wd-header {
  background: white;
  padding: 20px 0px;
  margin-bottom: 50px;
}

/* line 19, ../_work-detail.scss */
.lock input {
  background: url("../../img/icon_lock_tr.svg") no-repeat 10px center !important;
  padding: 12px 39px 12px 10px !important;
  border: solid 1px #eee !important;
  background-position: right 8px bottom 8px !important;
}

/* line 26, ../_work-detail.scss */
.save-btn {
  width: 80px;
  height: 40px;
  background: #0E0E52;
  border-radius: 5px;
  color: white;
}

/* line 34, ../_work-detail.scss */
.add-work p {
  color: #0e0e52;
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 768px) {
  /* line 41, ../_work-detail.scss */
  .add-work {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  /* line 46, ../_work-detail.scss */
  .info-added p {
    margin-bottom: 20px;
  }
}
/* line 51, ../_work-detail.scss */
.info-added p {
  color: #3ca4c6;
}

/* line 55, ../_work-detail.scss */
.nav-link span {
  position: static !important;
}

/* line 63, ../_work-detail.scss */
.nav {
  display: -webkit-inline-flex !important;
  background-color: white;
}

@media (min-width: 991px) {
  /* line 71, ../_work-detail.scss */
  .main-class-wrapper {
    padding-right: 100px;
    padding-left: 100px;
  }

  /* line 76, ../_work-detail.scss */
  .wd-header {
    padding-right: 100px;
    padding-left: 100px;
  }
}
/* line 82, ../_work-detail.scss */
.header-inner {
  padding-top: 0px !important;
}

/* line 86, ../_work-detail.scss */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #0E0E52;
  background-color: white;
}

/* line 92, ../_work-detail.scss */
.nav-pills .nav-link.active {
  border-bottom: 4px solid #0E0E52;
}

/* line 100, ../_work-detail.scss */
.field-wrapper input,
.field-wrapper textarea,
.field-wrapper select {
  margin-bottom: 20px;
  width: 100%;
}

/* line 107, ../_work-detail.scss */
.work-details-wrap {
  padding: 30px 40px;
  background-color: white;
}

/* line 112, ../_work-detail.scss */
.work-details-wrap p {
  font-size: 16px;
  font-weight: 600;
  line-height: 19.2px;
  color: #0E0E52;
}

/* line 119, ../_work-detail.scss */
.wd-form-cover {
  border: 1px solid rgba(196, 196, 196, 0.2);
  padding: 20px !important;
  margin-bottom: 20px;
}

/* line 125, ../_work-detail.scss */
.h-6 {
  font-size: 16px;
  color: #275F91;
  padding-top: 15px;
  border-bottom: solid 1px #f2f2f2;
  font-weight: 700;
  line-height: 32px;
}

/* line 134, ../_work-detail.scss */
.three-boxes {
  margin: 20px 0px;
}

/* line 138, ../_work-detail.scss */
.three-boxes input {
  width: 100%;
}

/* line 142, ../_work-detail.scss */
.three-boxes select {
  width: 100%;
}

@media (max-width: 768px) {
  /* line 147, ../_work-detail.scss */
  .three-boxes div {
    margin: 10px 0px;
  }

  /* line 151, ../_work-detail.scss */
  .three-boxes div.react-select div {
    margin: 0 !important;
  }

  /* line 155, ../_work-detail.scss */
  .radio-btn {
    margin-top: 10px;
  }
}
/* .card-boxes{
 display: inline-flex;
} */
/* line 165, ../_work-detail.scss */
.card-box {
  border: 1px solid rgba(196, 196, 196, 0.23);
  text-align: center;
  padding: 20px;
  margin-right: 20px;
  height: 250px;
  border-radius: 5px;
}

/* line 174, ../_work-detail.scss */
.card-box:hover {
  border: 1px solid #0E0E52 !important;
}

/* line 178, ../_work-detail.scss */
.card-box .hover-state-card-icon {
  -webkit-filter: grayscale(100%);
  filter: contrast(20%) grayscale(100%) brightness(1.5);
}

/* line 183, ../_work-detail.scss */
.card-box:hover .hover-state-card-icon {
  -webkit-filter: none;
  filter: none;
}

/* line 188, ../_work-detail.scss */
.card-box h4 {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 10px;
  margin-top: 24px;
  color: #aaaaaa !important;
}

/* line 197, ../_work-detail.scss */
.card-box:hover .card-heading {
  color: black !important;
}

/* line 201, ../_work-detail.scss */
.card-box .learn-more {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  margin-bottom: 24px;
  color: #aaaaaa;
}

/* line 212, ../_work-detail.scss */
.card-box:hover .learn-more {
  color: #AAAAAA;
}

/* line 216, ../_work-detail.scss */
.card-box .Available {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  margin-bottom: 20px;
  color: #aaaaaa;
}

/* line 227, ../_work-detail.scss */
.card-box:hover .Available {
  color: #275F91;
}

/* line 231, ../_work-detail.scss */
.card-box a {
  padding: 12px 62px;
  background-color: #aaaaaa;
  border-radius: 5px;
  color: white;
  margin-top: 20px;
  width: 100%;
}

/* line 240, ../_work-detail.scss */
.card-box:hover a.start-btn {
  background-color: #0E0E52;
}

@media (max-width: 1200px) {
  /* line 245, ../_work-detail.scss */
  .card-box a {
    padding: 12px 30px;
  }
}
@media (max-width: 768px) {
  /* line 251, ../_work-detail.scss */
  .card-box {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
/* line 258, ../_work-detail.scss */
.heading {
  margin-bottom: 20px;
}

/* line 262, ../_work-detail.scss */
.side-bar {
  background-color: white;
  padding: 30px 20px;
  margin-left: 20px;
}

@media (max-width: 768px) {
  /* line 269, ../_work-detail.scss */
  .side-bar {
    margin-top: 50px;
    margin-left: 0px;
  }
}
/* @media(min-width:991px){
    .work-details-wrap {
        width: 60%;
        float: left;
    }
    .side-bar{
        width:38%;
        float: left;
        margin-left: 20px;
    }
}
@media(max-width:991px){
    .work-details-wrap {
        width: 100%;
        float: none;
    }
    .side-bar{
        width:100%;
        float: none;
        margin-top: 20px;
    }
} */
/* line 299, ../_work-detail.scss */
.back-arrow {
  margin-bottom: 20px;
}

/* line 303, ../_work-detail.scss */
.text-icon-wrap {
  display: inline-flex;
  margin-bottom: 10px;
}

/* line 308, ../_work-detail.scss */
.text-icon-wrap a {
  float: right;
}

/* line 312, ../_work-detail.scss */
.text-icon-wrap p {
  font-family: 'Lato' !important;
  font-style: normal;
  font-weight: 500 !important;
  font-size: 16px !important;
  line-height: 19px !important;
  color: #444444 !important;
  margin-left: 5px !important;
}

/* line 322, ../_work-detail.scss */
.input-area textarea {
  width: 100%;
  border-radius: 5px;
}

/* line 327, ../_work-detail.scss */
.input-area .ql-editor p {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}
/* line 331, ../_work-detail.scss */
.input-area .ql-editor p strong {
  font-weight: bolder;
}
/* line 334, ../_work-detail.scss */
.input-area .ql-editor p em {
  font-style: italic;
}

/* line 339, ../_work-detail.scss */
.export-btn {
  margin-top: 50px;
  text-align: center;
  margin-bottom: 40px;
}

/* line 345, ../_work-detail.scss */
.export-btn a {
  background: #0E0E52;
  border-radius: 5px;
  font-family: 'Lato';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  color: #FFFFFF;
  padding: 15px 15px;
}

/* line 358, ../_work-detail.scss */
.add-item-btn {
  width: 100% !important;
  background-color: #0E0E52 !important;
  border-radius: 5px !important;
  color: white !important;
  padding: 9px 12px !important;
}

@media (max-width: 991px) {
  /* line 367, ../_work-detail.scss */
  .side-bar {
    padding: 10px;
  }

  /* line 371, ../_work-detail.scss */
  .work-details-wrap {
    padding: 10px;
  }
}
/* line 376, ../_work-detail.scss */
.form-check {
  margin-top: 2px;
}

/* line 380, ../_work-detail.scss */
.progress {
  height: 6px;
  width: 200px;
  float: right;
  margin-top: 8px;
}

@media (max-width: 768px) {
  /* line 388, ../_work-detail.scss */
  .progress {
    margin-bottom: 20px;
  }
}
/* line 393, ../_work-detail.scss */
.form-control {
  border: 1px solid #0e0e52 !important;
}

/* line 397, ../_work-detail.scss */
.nav-item button {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #444444;
}

/* line 419, ../_work-detail.scss */
.form-check {
  border: 2px solid #275f91 !important;
  padding-left: 0px;
  border-radius: 5px;
}

/* line 425, ../_work-detail.scss */
.radio-btn-s {
  background-color: white;
  color: #0E0E52 !important;
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  padding: 12px;
  border: none !important;
  border-radius: 5px;
}

/* line 439, ../_work-detail.scss */
.popup-heading {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #444444;
}

/* line 449, ../_work-detail.scss */
.modal-body input[type="text"] {
  width: 100%;
  /*  background: #eee;
border-radius: 5px; */
}

/* line 455, ../_work-detail.scss */
.modal-body .form-check .form-check-input {
  margin-left: 0.5em;
  margin-right: 0.5em;
  background-color: rgba(196, 196, 196, 0.19) !important;
}

/* line 461, ../_work-detail.scss */
.modal-body .form-check {
  border: none !important;
  padding-left: 0px;
  border-radius: none;
  margin-top: 20px;
}

/* line 468, ../_work-detail.scss */
.modal-body .writer-save-btn {
  width: 103.65px;
  height: 45.56px;
  background: #0E0E52;
  border-radius: 5px;
  padding: 14px;
}

/* line 476, ../_work-detail.scss */
.modal-body .record-save-btn {
  width: 164px !important;
  height: 46px !important;
}

/* line 481, ../_work-detail.scss */
.record-popover .buttons {
  padding-top: 20px !important;
}

/* line 485, ../_work-detail.scss */
.modal-body .record-popover {
  margin-top: 20px;
}

/* line 489, ../_work-detail.scss */
.record-popover input[type="text"] {
  height: 60px;
}

/* line 494, ../_work-detail.scss */
.form-check-input:checked[type=checkbox] {
  background: url("../../img/check.svg") no-repeat left top;
  background-color: rgba(196, 196, 196, 0.19);
}

/* line 499, ../_work-detail.scss */
.form-check-input {
  padding: 10px 10px;
}

/* line 504, ../_work-detail.scss */
.form-check-label {
  padding: 5px 7px;
}

/* line 509, ../_work-detail.scss */
.add-record-label {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #444444;
  margin-bottom: 20px;
}

/*documeent tab*/
/* line 523, ../_work-detail.scss */
.dropdown-toggle::after {
  content: none;
}

/* line 528, ../_work-detail.scss */
.wd-add-new-btn {
  width: 95px !important;
}

/* line 532, ../_work-detail.scss */
.dropdown-release .dropdown-menu.show {
  border: 1px solid black !important;
  box-shadow: #AAAAAA !important;
}

/* line 537, ../_work-detail.scss */
.documnets-wrap {
  background-color: white;
  padding: 30px;
}

@media (max-width: 425px) {
  /* line 543, ../_work-detail.scss */
  .documnets-wrap {
    padding: 10px;
  }
}
/* line 558, ../_work-detail.scss */
.nav-tabs {
  border: none !important;
  border-radius: none !important;
}

/* line 563, ../_work-detail.scss */
.nav-tabs .nav-link {
  border: 1px solid rgba(170, 170, 170, 0.32);
}

@media (max-width: 375px) {
  /* line 568, ../_work-detail.scss */
  .nav-tabs .nav-link {
    padding: 10px 20px;
  }
}
/* line 573, ../_work-detail.scss */
.parentTabs .nav-tabs {
  margin-left: 20px;
}

/* line 578, ../_work-detail.scss */
.nav-li {
  padding: 0%;
  width: 100%;
  justify-content: end;
}

@media (max-width: 768px) {
  /* line 586, ../_work-detail.scss */
  .btn-wrap {
    text-align: center;
  }

  /* line 590, ../_work-detail.scss */
  .sortby-wrap {
    margin: 20px 0px;
  }

  /* line 594, ../_work-detail.scss */
  .nav-li {
    justify-content: center;
  }
}
/* line 599, ../_work-detail.scss */
.document-table {
  width: 100%;
  overflow-y: auto;
  margin-top: 50px;
}

/* line 606, ../_work-detail.scss */
.document-table tr {
  border-bottom: 1px solid #eee !important;
}

/* line 610, ../_work-detail.scss */
.document-table table td {
  padding: 20px !important;
  font-family: 'Lato';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  color: #AAAAAA;
}

/* line 623, ../_work-detail.scss */
.document-table table th {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #444444;
  background-color: white !important;
  padding: 20px !important;
}

/* line 634, ../_work-detail.scss */
.table-heading {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #444444;
  margin-bottom: 10px;
}

/* line 643, ../_work-detail.scss */
.fa-folder {
  font-size: 22px;
  margin-right: 5px;
}

/* line 649, ../_work-detail.scss */
.create-folder-btn {
  width: 91px;
  background: #0E0E52;
  border-radius: 5px;
  padding: 10px;
}

/*file css*/
/* line 659, ../_work-detail.scss */
.wrapper {
  padding: 0px;
}

/* line 663, ../_work-detail.scss */
.box {
  position: relative;
  width: 100%;
}

/* line 668, ../_work-detail.scss */
.wd-box {
  background: #ffffff;
}

/* line 672, ../_work-detail.scss */
.box-header {
  color: #444;
  display: block;
  padding: 10px;
  position: relative;
  border-bottom: 1px solid #f4f4f4;
  margin-bottom: 10px;
}

/* line 681, ../_work-detail.scss */
.box-tools {
  position: absolute;
  right: 10px;
  top: 5px;
}

/* line 687, ../_work-detail.scss */
.dropzone-wrapper {
  border: none;
  color: #92b0b3;
  position: relative;
  height: 280px;
}

/* line 694, ../_work-detail.scss */
.dropzone-desc {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  text-align: center;
  width: 100%;
  top: 50px;
  font-size: 16px;
}

/* line 705, ../_work-detail.scss */
.dropzone,
.dropzone:focus {
  position: absolute;
  outline: none !important;
  width: 100%;
  height: 150px;
  cursor: pointer;
  opacity: 0;
}

/* line 715, ../_work-detail.scss */
.dropzone-wrapper:hover,
.dropzone-wrapper.dragover {
  background: none;
}

/* line 720, ../_work-detail.scss */
.preview-zone {
  text-align: center;
  display: none;
}

/* line 725, ../_work-detail.scss */
.preview-zone .box {
  box-shadow: none;
  border-radius: 0;
  margin-bottom: 0;
}

/* line 732, ../_work-detail.scss */
.add-new-link {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #0E0E52;
}

/* line 739, ../_work-detail.scss */
.form-control:focus {
  box-shadow: none !important;
}

/* line 743, ../_work-detail.scss */
.work-language-select {
  margin-top: 10px;
  margin-bottom: 20px;
}

/* line 748, ../_work-detail.scss */
.select-locked {
  margin-bottom: 20px;
}

/* line 1, ../_edit-contact.scss */
.form-check .form-check-input {
  padding: 10px !important;
}

/* line 5, ../_edit-contact.scss */
.form-check {
  border: none !important;
  padding-left: 20px !important;
  border-radius: 0 !important;
}

/* line 11, ../_edit-contact.scss */
.form-check-input {
  width: auto !important;
}

/* line 15, ../_edit-contact.scss */
.check-border {
  border: 1px solid #aaaaaa !important;
}

/* line 19, ../_edit-contact.scss */
.form-check-roles .form-check-input {
  margin-left: 0 !important;
}

/* line 27, ../_edit-contact.scss */
.select-creator-chk-heading {
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
  color: #000000;
  margin-bottom: 20px;
}

/* line 35, ../_edit-contact.scss */
.add-alias-btn {
  width: 194px !important;
}

/* line 39, ../_edit-contact.scss */
.countrySelect {
  margin-bottom: 20px;
  margin-top: 20px;
}

/* line 44, ../_edit-contact.scss */
.form-edit-label {
  padding-left: 8px;
  padding-top: 11px;
}

/* line 49, ../_edit-contact.scss */
.form-ec-label {
  padding-left: 8px;
}

@media only screen and (max-width: 40em) {
  /* line 4, ../_temp_queries.scss */
  .loginContent {
    width: 100%;
    overflow-x: hidden;
  }
  /* line 7, ../_temp_queries.scss */
  .loginContent .logo {
    width: 70%;
  }
  /* line 11, ../_temp_queries.scss */
  .loginContent .loginForm, .loginContent .recoveryForm {
    text-align: left;
    padding: 21px;
  }
  /* line 15, ../_temp_queries.scss */
  .loginContent .loginForm .recoveryForm a, .loginContent .recoveryForm .recoveryForm a {
    margin: 30px 20px 0;
  }
  /* line 19, ../_temp_queries.scss */
  .loginContent .loginForm .btnSubmit, .loginContent .recoveryForm .btnSubmit {
    position: fixed;
    right: 0;
    bottom: 10px;
    z-index: 3;
    width: 100px;
  }
  /* line 27, ../_temp_queries.scss */
  .loginContent .loginForm .btnContainer, .loginContent .recoveryForm .btnContainer {
    padding-right: 10px;
    text-align: right;
  }
}
/* line 110, ../screen.scss */
.section-header h1,
.section-header h2,
.section-header h3 {
  text-transform: uppercase;
}

/* line 116, ../screen.scss */
label {
  line-height: 1.4;
}

/* line 120, ../screen.scss */
.popup-form button.confirm, .popup-form-extended button.confirm {
  position: relative !important;
  margin-top: 0 !important;
  float: right !important;
  margin-top: 0px;
}

/* line 127, ../screen.scss */
button.save {
  margin-right: 30px;
  font-family: gotham-light, sans-serif;
  height: 46px;
  text-align: center;
  color: #fff;
  background: #307599;
  background: -webkit-linear-gradient(left, #347094, #59a0aa);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #347094, #59a0aa);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #347094, #59a0aa);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #347094, #59a0aa);
  /* Standard syntax */
  border: none;
  width: 120px;
  margin-top: 4px;
  font-size: 20px;
  border-radius: 5px;
  cursor: pointer;
}

/* line 154, ../screen.scss */
.album-modal .modal-body {
  height: 100%;
  width: 100%;
  position: initial;
  left: 0;
  top: 0;
  margin: 0;
}
/* line 162, ../screen.scss */
.album-modal .modal-body .title-block {
  display: inline-block;
}
/* line 164, ../screen.scss */
.album-modal .modal-body .title-block h3 {
  margin: 0;
}

/* line 170, ../screen.scss */
.manage-user .modal-body {
  height: 100% !important;
  width: 100%;
  position: initial;
  left: 0;
  top: 0;
  margin: 0;
}

/* line 181, ../screen.scss */
.modal-body .error {
  margin: 14px 0;
  display: block;
}
/* line 185, ../screen.scss */
.modal-body .errors .error {
  margin: 14px 0;
}

/* line 190, ../screen.scss */
.contact-info-wrapper .edit {
  padding-left: 12px;
  font-size: 15px;
}
/* line 194, ../screen.scss */
.contact-info-wrapper .edit:hover {
  text-decoration: none;
}

/* line 201, ../screen.scss */
.form-group.master-recording contact-info {
  margin-top: 10px;
}
/* line 205, ../screen.scss */
.form-group.popup-quarter {
  width: 20%;
  float: left;
  padding-right: 2%;
}
/* line 210, ../screen.scss */
.form-group.popup-third {
  width: 30%;
  float: left;
  padding-right: 2%;
}
/* line 215, ../screen.scss */
.form-group.popup-half {
  width: 45%;
  float: left;
  padding-right: 2%;
}
/* line 220, ../screen.scss */
.form-group.two-thirds-width {
  width: 70%;
}
/* line 223, ../screen.scss */
.form-group.popup-two-thirds-width {
  width: 60%;
  float: left;
  padding-right: 2%;
}
/* line 228, ../screen.scss */
.form-group.popup-full-width {
  width: 90%;
  float: left;
  padding-right: 2%;
}

/* line 235, ../screen.scss */
.popup-link {
  position: absolute;
  left: 80px;
  top: 30px;
}

/* line 241, ../screen.scss */
.plan-feature-unavailable {
  text-decoration: line-through;
}

/* line 245, ../screen.scss */
.ReactModal__Overlay {
  z-index: 10000;
}

/* line 249, ../screen.scss */
.clear:after {
  clear: both;
  content: "";
  display: table;
}

/* line 255, ../screen.scss */
.centered {
  text-align: center;
}

/* line 259, ../screen.scss */
.danger {
  color: #a94442;
}

/* line 263, ../screen.scss */
.link {
  color: #0099ff;
  cursor: pointer;
  text-decoration: underline;
}

/* line 268, ../screen.scss */
.link:hover {
  color: #00B7FF;
}

/* line 272, ../screen.scss */
.link--disabled {
  color: #999;
  cursor: default;
  text-decoration: none;
}

/* line 277, ../screen.scss */
.link--disabled:hover {
  color: #999;
}

/* line 281, ../screen.scss */
.no_data {
  margin: 60px;
  text-align: center;
}

@media only screen and (min-width: 1101px) {
  /* line 288, ../screen.scss */
  .popup-form button.confirm, .popup-form-extended button.confirm {
    margin-right: 30% !important;
    margin-left: 30% !important;
  }
}
/* line 295, ../screen.scss */
.col-xs-5th,
.col-sm-5th,
.col-md-5th,
.col-lg-5th {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

/* line 305, ../screen.scss */
.col-xs-5th {
  width: 20%;
  float: left;
}

@media (min-width: 768px) {
  /* line 311, ../screen.scss */
  .col-sm-5th {
    width: 20%;
    float: left;
  }
}
@media (min-width: 992px) {
  /* line 318, ../screen.scss */
  .col-md-5th {
    width: 20%;
    float: left;
  }
}
@media (min-width: 1200px) {
  /* line 325, ../screen.scss */
  .col-lg-5th {
    width: 20%;
    float: left;
  }
}
