@charset "UTF-8";

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */




.half {
  float: left;
  width: 100%;
  padding: 0 1em;
}

@media only screen and (max-width: 768px) {

  .half {
    padding: 0;
  }
}


/* Acordeon styles */
.tab {
  position: relative;
  margin-bottom: 1px;
  width: 100%;
  color: #fff;
  overflow: hidden;
}
.tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.tab label {
  position: relative;
  display: block;
  padding: 0 0 0 1em;
  background: white;
  color: #000;
  font-weight: bold;
  line-height: 3;
  /*cursor: pointer;*/
}
.blue label {
  background: #2980b9;
}
.tab-content {
  max-height: 0;
  overflow: hidden;
  background: white;
  color: black;
  -webkit-transition: max-height .35s;
  -o-transition: max-height .35s;
  transition: max-height .35s;
}
.blue .tab-content {
  background: #3498db;
}
.tab-content p {
  margin: 1em;
}
/* :checked */
/* Deactivate description and biography
.tab input:checked ~ .tab-content {
  max-height: 100vh;
}
*/
.tab input ~ .tab-content {
  max-height: 100vh;
}
/* Icon */
.tab label::after {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 3em;
  height: 3em;
  line-height: 3;
  text-align: center;
  -webkit-transition: all .35s;
  -o-transition: all .35s;
  transition: all .35s;
}
.tab input[type=checkbox] + label::after {
  content: "+";
}

.tab input[type=radio] + label::after {
  content: "\25BC";
}

.tab input[type=checkbox]:checked + label::after {
  transform: rotate(315deg);
}

.tabs-details .half .tab label{
  cursor: pointer;
  border-bottom: 1px solid #000;
}

.ytiuyt::after{
  transform: rotate(180deg);
}
.ytiuyt{
  color: #d50000 !important;
}



/*
.tab input[type=radio]:checked + label::after {
  transform: rotateX(180deg);
}
*/
.tabs-details .half .tab .tab-content{
  display: none;
}



html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */

body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

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

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */

/**
 * Remove the gray background color from active links in IE 10.
 */

a {
  background: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */

a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */

/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */

abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */

b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */

dfn {
  font-style: italic;
}

/**
 * Address styling not present in IE 8/9.
 */

mark {
  background: #ff0;
  color: #000;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Remove margin
 */

figure {
  margin: 0;
}

/**
 * Address differences between Firefox and other browsers.
 */

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */

/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */

/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */

button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */

button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */

button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */

input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */

textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */

optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */

/**
 * Remove most spacing between table cells.
 */

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

td,
th {
  padding: 0;
}

/* Blockquote
   ========================================================================== */

blockquote {
  margin: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
button {
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-size: 16px;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
  color: #333;
}

.pure-g.gutters > [class*=pure-u] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0em 0.5em;
}

.button,
.button--search,
.button--filter,
.button--border {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 6px 24px;
  min-height: 24px;
  text-align: center;
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 0.71428571rem;
  font-weight: 300;
  text-decoration: none;
  background: #333333;
  color: #fff;
  border: 1px solid #1a1919;
  border-color: transparent;
  text-transform: uppercase;
  outline: 0;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: all 0.33s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.33s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.button:hover,
.button--search:hover,
.button--filter:hover,
.button--border:hover,
.button:active,
.button--search:active,
.button--filter:active,
.button--border:active {
  background: #F1831D;
  color: #fff;
  border: 1px solid #ce6a0d;
  border-color: transparent;
}

.button--search {
  background: #d60053;
  color: #fff;
  border: 1px solid #a3003f;
  border-color: transparent;
  padding: 3px 18px;
  font-size: 1.71428571rem;
}

.button--search:hover,
.button--search:active {
  background: #333333;
  color: #fff;
  border: 1px solid #333333;
  text-decoration: none;
}

.button--clear {
  background-color: transparent;
  color: rgba(0, 0, 0, 0.2);
  font-size: 23px;
}

.button--clear:hover,
.button--clear:active {
  background-color: transparent;
  color: rgba(0, 0, 0, 0.8);
}

.button--filter {
  background: #d60053;
  color: #fff;
  border: 1px solid #a3003f;
  border-color: transparent;
}

.button--filter:hover,
.button--filter:active {
  background: #333333;
  color: #fff;
  border: 1px solid #333333;
  text-decoration: none;
}

.button--border {
  background-color: transparent;
  color: #fff;
  padding: 6px 18px;
  border: 1px solid currentColor;
}

.button--border:hover,
.button--border:active {
  background: #fff;
  color: #333333;
  border: 1px solid currentColor;
  text-decoration: none;
}

.button--lg {
  padding: 12px 36px;
}

.button--sm {
  padding: 6px 12px;
}

.button--aproved {
  padding: 4px 24px;
  background-color: #77BC1F;
  font-size: 16px;
  font-weight: 500;
}

.button--aproved:hover {
  background-color: #5b9018;
}

.button--actived {
  padding: 4px 24px;
  background-color: #F1831D;
  font-size: 16px;
  font-weight: 500;
}

.button--actived:hover {
  background-color: #ce6a0d;
}

.button--rejected {
  padding: 6px 24px;
  background-color: #D50000;
  font-size: 16px;
  font-weight: 500;
}

.button--rejected:hover {
  background-color: #a20000;
}

.text-green {
  color: #77BC1F;
}

.text-pink {
  color: #d60053;
}

.bg-green {
  background-color: #77BC1F;
}

.bg-pink {
  background-color: #d60053;
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  margin-bottom: 24px;
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.04);
          box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  will-change: transform;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: all 0.33s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.33s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  cursor: pointer;
}

.card:hover {
  -webkit-transform: scale(1.02, 1.02);
          transform: scale(1.02, 1.02);
  -webkit-box-shadow: -10px 10px 50px 0 rgba(24, 30, 36, 0.1);
          box-shadow: -10px 10px 50px 0 rgba(24, 30, 36, 0.1);
}

.card:hover .card__thumb::after {
  opacity: .6;
}

.card:hover .card__like {
  opacity: 1;
}

.card:hover .overlay .button,
.card:hover .overlay .button--search,
.card:hover .overlay .button--filter,
.card:hover .overlay .button--border {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
}

.card__thumb {
  width: 100%;
  height: 360px;
  position: relative;
  overflow: hidden;
}

.card__thumb::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  -webkit-transition: opacity 0.33s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: opacity 0.33s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  opacity: 0;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: top;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.card__like {
  position: absolute;
  right: 12px;
  top: 12px;
  color: #fff;
  font-size: 0.85714286rem;
  z-index: 999;
  font-size: 30px;
  opacity: 0;
  -webkit-transition: all 0.33s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.33s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.card__like:hover {
  color: #d60053;
}

.card__like.is-active {
  color: #d60053;
}

.card__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 18px 12px;
}

.card__title {
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.5;
  margin: 0;
  text-overflow: ellipsis;
}

.card__subtitle {
  text-align: left;
  font-size: 14px;
  font-weight: 100;
  line-height: 1.3;
  margin: 0;
  text-overflow: ellipsis;
  max-height: 38px;
  overflow: hidden;
}

.card .overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
}

.card .overlay .button,
.card .overlay .button--search,
.card .overlay .button--filter,
.card .overlay .button--border {
  -webkit-transition: all 0.33s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.33s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  opacity: 0;
}

.music {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.music__list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
  font-weight: 400;
}

.music__list audio {
  width: 100%;
  -webkit-box-shadow: -2px -1px 4px rgba(0, 0, 0, 0.2);
          box-shadow: -2px -1px 4px rgba(0, 0, 0, 0.2);
}

.music__list .icon {
  margin-right: 18px;
}

.music__list span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 12px 7px;
}

.music__list time {
  color: #39C;
}

.t-uppercase {
  text-transform: uppercase;
}

.filter {
  -webkit-transition: opacity 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: opacity 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.filter.sticky {
  position: fixed;
  background-color: #fff;
}

.filter .display-view {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.filter .display-view__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 1.71428571rem;
  position: relative;
  -webkit-transition: opacity 0.33s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: opacity 0.33s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  opacity: 1;
}

.filter .display-view__item:hover {
  opacity: .4;
}

.filter .display-view__item.is-active {
  color: #d60053;
  opacity: 1;
}

.filter .content {
  padding: 18px 0;
  border-bottom: 1px solid #BBBABA;
}
/* Is component scoped now
.filter-inuse ul {
  list-style: none;
}

.filter-inuse ul li {
  padding: 2px 4px;
  margin-left: 5px;
}

.filter-inuse ul li button {
  position: relative;
  background-color: #39C;
  color: white;
  border: none;
  height: 17px;
  width: 17px;
  text-align: center;
  border-radius: 50%;
}

.filter-inuse ul li button i {
  position: absolute;
  font-size: 10px;
  color: white;
  top: 3px;
  left: 5px;
}
*/
.form__fieldset {
  margin-bottom: 5px;
}

.form__label::after {
  content: "\25BC";
  display: block;
  width: 12px;
  height: 100%;
  position: absolute;
  right: 6px;
  bottom: -35px;
  color: #39C;
  z-index: 3;
}

.form__datepicker {
  width: 100% !important;
}

.form__datepicker > input {
  height: 35px !important;
  border-color: #39C;
}

.form--search {
  background-color: #fff;
}


.form--search input {
  background-color: #fff !important;
  color: #39C;
  font-size: 15px;
  font-weight: bold;
  width: 100%;
  height: 50px;
  border: 2px solid #fff;
  /*border-radius: 4px;*/
  padding: 8px 20px;
  -webkit-transition: border-color .2s;
  transition: border-color .2s;
  outline: none;
  z-index: 2;
}

.form--search input::-webkit-input-placeholder {
  color: #BBBABA;
}

.form--filter label {
  text-align: left;
  font-size: 10px;
}

.form--filter select {
  border: 1px solid #39C;
  color: #39C;
  padding: 8px 12px;
}
/*
.form--filter .select2-container--disabled .select2-selection {
  border: 1px solid #BBBABA !important;
}

.form--filter .select2-container--default .select2-selection--multiple {
  border: 1px solid #39C;
}

.form--filter .select2-container--default .select2-selection--single {
  border: 1px solid #39C;
}

.form--filter .select2-container--default .select2-selection--single .select2-selection__arrow {
  visibility: hidden;
}
*/
.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
}

.form--underline .text-input {
  font-size: 1rem;
  padding: 24px 6px;
  color: #fff !important;
}

.form--underline .text-input::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
  font-size: 1rem;
}

.form--underline .text-input:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
  font-size: 1rem;
}

.form--underline .text-input::-ms-input-placeholder {
  color: #fff;
  opacity: 1;
  font-size: 1rem;
}

.form--underline .text-input::placeholder {
  color: #fff;
  opacity: 1;
  font-size: 1rem;
}

.form--underline::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
}

.form .text-input {
  width: 100%;
  background: transparent;
}

.form .text-input__label {
  display: none;
}

@-webkit-keyframes autofill {
  to {
    background: transparent;
  }
}

.form input:-webkit-autofill {
  -webkit-animation-name: autofill;
  -webkit-animation-fill-mode: both;
}

.form--inverted .text-input {
  padding: 24px 6px;
}

.form--inverted .text-input::-webkit-input-placeholder {
  color: #BBBABA;
  opacity: 1;
  font-size: 1rem;
}

.form--inverted .text-input:-ms-input-placeholder {
  color: #BBBABA;
  opacity: 1;
  font-size: 1rem;
}

.form--inverted .text-input::-ms-input-placeholder {
  color: #BBBABA;
  opacity: 1;
  font-size: 1rem;
}

.form--inverted .text-input::placeholder {
  color: #BBBABA;
  opacity: 1;
  font-size: 1rem;
}

.stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  list-style: none;
  margin: 8px 0;
}

.stars__item {
  color: #ccc;
}

.stars__item.is-active {
  color: #FDE450;
}

.tags {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tags__item {
  float: left;
  margin-bottom: 1px;
  border: 1px solid currentColor;
  color: #aaa;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 10px;
  margin-right: 4px;
}

.tags__item:hover {
  color: #e54;
}

.carousel {
  margin-left: -12px;
  margin-right: -12px;
}

.carousel__item {
  padding: 0 12px;
  position: relative;
  cursor: pointer;
  height: 270px;
}

.carousel__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.carousel__item-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center, center;
}

.carousel__overlay {
  width: 30px;
  height: 30px;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  top: 24px;
  left: 24px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 50%;
  color: #333;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.carousel__title {
  width: calc(100% - 24px);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  position: absolute;
  bottom: 0;
  padding: 0 12px;
}

.cl-social {
  background: #fff;
  -webkit-box-shadow: -2px -1px 4px rgba(0, 0, 0, 0.08);
          box-shadow: -2px -1px 4px rgba(0, 0, 0, 0.08);
  color: #575757;
  padding: 6px 24px;
  border-radius: 2px;
  width: 100%;
}

.cl-social__title {
  font-weight: 100;
  font-size: 20px;
  text-transform: uppercase;
}

.cl-social__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.cl-social__media__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.cl-social__media__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #3372df;
  color: #fff;
  border-radius: 50%;
  margin-right: 6px;
  cursor: pointer;
  -webkit-transition: all 0.22s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.22s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.cl-social__media__link:hover {
  background-color: #333;
  color: #fff;
}

.tabs {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  background-color: #333;
  margin-top:0px;
}

.tabs__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  cursor: pointer;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tabs__item a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0;
  width: 100%;
  padding: 12px;
}

@media only screen and (max-width: 619px) {
  .tabs__item a span {
    display: none;
  }
}

.tabs__item .icon {
  font-size: 24px;
}

.tabs__item.is-active {
  background-color: #d50000;
}

.formrequest__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 18px 12px;
}

.formrequest__title {
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.5;
  margin: 10px;
  text-overflow: ellipsis;
}

.formrequest .form__textarea,
.formrequest .form__input {
  border: 1px solid #BBBABA;
  color: #333333;
}

.formrequest .form__label:after {
  content: '';
}

.v--modal {
  z-index: 99999;
}

.header--simple {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: fixed !important;
  background: none !important;
  min-height: auto !important;

  /*
  background: #cfd5dd !important;
  -webkit-box-shadow: 2px 0 4px rgba(0, 0, 0, 0.5);
          box-shadow: 2px 0 4px rgba(0, 0, 0, 0.5);
  */
  padding: 0;
  z-index: 911 !important;
}

.header--simple .nav {
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  position: relative;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background: transparent !important;
}

.header--simple .logo img {
  max-height:55px;
  width: initial;
}

.header .langs {
  display: none !important;
  max-width: 120px;
}

.header .langs li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.header .langs li a {
  margin-bottom: 0;
}

.search {
  background-color: #fbfbfb;
  padding-bottom: 24px;
}

.hideMobile a {
  color: white;
}

.search__banner {
  background: url("/assets/images/search-bg.png") center no-repeat;
  width: 100%;
  /*height: 50vh;*/
  min-height: 360px;
  overflow: hidden;
  position: relative;
  top: 0;
  background-attachment: fixed;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  /*-webkit-box-shadow: 0px -1px 15px -1px rgba(0, 0, 0, 0.55);
  box-shadow: 0px -1px 15px -1px rgba(0, 0, 0, 0.55);*/
}

.search__banner::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: .4;
  z-index: 1;
}
/*
@media only screen and (max-width: 768px) {
  .search__banner {
    height: -webkit-fill-available;
  }
}
*/
.search__filter {
  width: 100%;
  z-index: 99;
  position: relative;
}

.search__filter .display-view {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.search__filter .display-view__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 32px;
  height: 32px;
  font-size: 24px;
  position: relative;
}

.search__filter .display-view__item.is-active {
  color: #d60053;
}

.search__filter .content {
  padding: 18px 0;
  border-bottom: 1px solid #ddd;
}

.search__count strong {
  font-weight: 500;
}

.search__result {
  margin-top: 10px;
  padding: 24px 0;
}



@media only screen and (max-width: 619px) {
  .search__result .card__thumb {
    height: 35vh;
  }

  .search__result .gutters {
    -webkit-flex-flow: wrap;
  }
  
}

.search .typeartist-buttons {
  position: absolute;
  font-weight: bold;
  /*top: -60px;*/
  margin-bottom: -1px;
  display: flex;
}

@media only screen and (max-width: 619px) {
  .search .typeartist-buttons {
    position: inherit;
  }
}

@media only screen and (min-width: 620px) {
  .search .typeartist-buttons {
    position: inherit;
  }
}

.search .typeartist-buttons button {
  outline: none;
  /*background-color: #39C;*/
  color: white;
  width: 100%;
  height: 50px;
  border: none;
  /*border-right: 1px solid rgba(0, 0, 0, 0.15);*/
  /*border-top-right-radius: 12px;*/
}


.search .typeartist-buttons button.selected {
  background-color: #fff;
  color: #333333;
  position: relative;
}

.search .typeartist-buttons button.selected:after {
  content: ' ';
  position: absolute;
  bottom: -10px;
  left: -1px;
  right: -1px;
  height: 10px;
  background-color: #fff;
}

@media only screen and (max-width: 619px) {
  .search .typeartist-buttons button.selected {
    background-color: #fff;
  }
}

@media only screen and (min-width: 620px) {
  .search .typeartist-buttons button.selected {
    background-color: #fff;
  }
}

.search .typeartist-buttons button:hover:not(.selected) {
  background-color: #2782af;
}


@media only screen and (max-width: 619px) {
  .search .typeartist-buttons button {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    border-right: none;
  }
}

@media only screen and (min-width: 620px) {
  .search .typeartist-buttons button {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    border-right: none;
  }
}

.search .typeartist-buttons__img {
  width: 100%;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 75%;
}

.search .typeartist-buttons__text {
  font-size: 15px;
  padding-left: 3px;
}

.search .button.button--filter,
.search .button--filter.button--search,
.search .button--filter,
.search .button--filter.button--border {
  min-height: 35px;
}

.search .button.button--clearfilter,
.search .button--clearfilter.button--search,
.search .button--clearfilter.button--filter,
.search .button--clearfilter.button--border {
  min-height: 35px;
}

.search .tags {
  overflow: hidden;
  height: 52px;
}

.search .card__subtitle--price {
  color: #3372df;
  font-weight: 900;
  margin: 5px 0;
  float: left;
}

.limiter .back-icon {
  padding-right: 20px;
  background: url("/assets/images/icons/triangle-left.png") center no-repeat;
}

.form--search .custom-select {
  text-align: center;
  font-weight: bold;
  text-align-last:center;
  background: url("/assets/images/icons/triangle-down.png") no-repeat right;
  -webkit-appearance: none;
  background-position-x: 90%;
}

/* Style override for advanced search filters */
.clear-select .select2-container--default .select2-selection--single {
  background-color: #d7d7d7 !important;
  border: none !important;
}

.clear-select .select2-container--default .select2-selection--single .select2-selection__arrow {

  background: url("/assets/images/icons/triangle-down.png") no-repeat right;
  background-position-y: 15px;
}

.clear-select .select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 20px;
}


.clear-select .select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.mx-input-append {
  display: none;
}

.clear-select .select2-container--default .select2-selection--multiple {
  background-color: #d7d7d7 !important;
  border: none !important;
}

.clear-select .select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: black !important;
}


.clear-select .select2-container .select2-selection--single .select2-selection__rendered {
  padding-top: 10px;
  font-weight: bold;
}

.clear-select .select2-container .select2-search--inline .select2-search__field {
  text-align: center !important;
}

.clear-select .select2-container--default .select2-search--inline .select2-search__field {
  color: black !important;
}

.clear-select .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: black !important;
}

.mx-input {
  background-color: transparent !important;
  border: none !important;
  text-align: center;
}

.mx-input-append {
  background-color: #d7d7d7 !important;
}
/* End */


@media only screen and (max-width: 619px) {
  .profile-body header {
    background: #cfd5dd !important;
  }

  .cookie-consent {
    height: 115px;
  }
}

.profile {
  width: 100%;
  min-height: 320px !important;
  background-position: 0 !important;
}

.profile nav {
  background-color: #333;
}

nav {
  width: 100% !important;
  left: 0 !important;
  top: 0 !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 5px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

nav i {
  background-color: #fff !important;
}

nav .logo {
  max-width: 120px;
  padding: 12px 0 !important;
}

nav .logo img {
  width: 100%;
}

nav .burguer::before,
nav .burguer::after {
  background-color: #fff;
}

.profile-body .app-store-actions {
  display: none;
}

.artist-profile {
  padding: 0;
}

.artist-profile > .content {
  /* top: -35px; */
}

.artist-profile__header,
.artist-profile__services,
.artist-profile__cache,
.artist-profile__schedule,
.artist-profile__photos,
.artist-profile__social,
.artist-profile__tags,
.artist-profile__videos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  -webkit-box-shadow: -2px -1px 4px rgba(0, 0, 0, 0.2);
          box-shadow: -2px -1px 4px rgba(0, 0, 0, 0.2);
  color: #333;
  /* margin-bottom: 12px; */
  width: 100%;
  z-index: 998;
  padding: 24px;
}

.artist-profile__videos, .artist-profile__photos{
  min-height: 300px;
}

.tabs-details{
  margin-bottom: 15px;
}

.artist-profile__header{
  min-height: 353px;

}

@media only screen and (max-width: 619px) {
  .artist-profile__header {
    margin-top: -325px;
  }
}

.artist-profile__videos .carousel__overlay {
  position: absolute;
  top: calc(50% - 15px);
  left: calc(50% - 15px);
}

.artist-profile__header {
  padding: 0 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.artist-profile__title {
  text-transform: uppercase;
  color: #D50000;
  font-size: 22px;
  padding-bottom: 6px;
}

.artist-profile__title .icon {
  margin-right: 12px;
}

.artist-profile__subtitle {
  text-transform: uppercase;
  font-size: 1.14285714rem;
  font-weight: 700;
  padding-bottom: 6px;
  margin-bottom: 0;
  line-height: 1;
}

.artist-profile__biography {
  margin-top: 330px;
  width: 100%;
  text-align: center;
  color: #333;
}

.artist-profile__infos {
  border-top: 1px solid #BBBABA;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  padding: 12px 0;
}

.artist-profile__infos__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #D50000;
}

.artist-profile__infos__icon {
  font-size: 22px;
}

.artist-profile__cover {
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 270px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.artist-profile__picture {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 4px solid #fff;
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: translateY(calc(270px - 50%));
          transform: translateY(calc(270px - 50%));
  z-index: 99;
}

.artist-profile__picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.artist-profile__name {
  font-size: 1.71428571rem;
  line-height: 1;
  margin-bottom: 0;
  font-weight: 700;
  /* color: #3372df; */
  text-transform: uppercase;
}

.artist-profile__local {
  font-size: 1.14285714rem;
  line-height: 1.4;
  font-weight: 500;
}

.artist-profile__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.artist-profile__actions__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: #fff;
  width: 48px;
  height: 48px;
  font-size: 1.14285714rem;
  color: #D50000;
  -webkit-transition: all 0.22s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.22s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  border-radius: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 6px;
}

.artist-profile__actions__item:hover {
  background-color: #D50000;
  color: #fff;
}

.artist-profile__cache {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #39C;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  color: #fff;
}

.artist-profile__cache .artist-profile__title {
  color: #fff;
  margin-bottom: 0;
}

.artist-profile__schedule {
  padding-top: 26px;
  padding-bottom: 26px;
  background-color: #D50000;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}

.artist-profile__schedule .artist-profile__title {
  color: #fff;
}

.artist-profile__schedule p {
  margin: 0;
}

.artist-profile__services ul {
  list-style-type: none;
  padding: 0;
}

.artist-profile__services p {
  margin-bottom: 0;
}

.artist-profile__right {
  /* padding-left: 24px; */
}

@media only screen and (max-width: 619px) {
  .artist-profile__right {
    padding: 0;
    margin: 0;
  }

 
}

@media only screen and (min-width : 992px) {
  #profile-share{
    padding-left:33px;
  }
  body .layui-m-layer .layui-m-layer-footer{
    right:144px !important;
    left: auto !important;
    width:294px !important;

  }

}

@media only screen and (min-width: 500px) {
  .mobileshow  {
  display: none !important;}
}

  .light-gray{
    min-height: 350px;
  }

  



.artist-profile__options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /* margin-bottom: 12px; */
}

.artist-profile__options__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px;
  -webkit-box-shadow: -2px -1px 4px rgba(0, 0, 0, 0.2);
          box-shadow: -2px -1px 4px rgba(0, 0, 0, 0.2);
  background-color: #D50000;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 1px;
}

.artist-profile__options__item:hover {
  background-color: #333;
}

.artist-profile__options__item .icon {
  font-size: 24px;
  margin-right: 12px;
}

@media only screen and (max-width: 619px) {
  .artist-profile__options {
    display: none;
  }
}

.artist-profile__categories > li span {
  font-weight: 600;
}

.artist-profile__categories > li > ul {
  margin-left: 30px;
  list-style: circle;
}

.artist-profile__footerbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  background-color: #BBBABA;
  z-index: 3;
  -webkit-box-shadow: 0px -1px 23px -1px rgba(0, 0, 0, 0.55);
  box-shadow: 0px -1px 23px -1px rgba(0, 0, 0, 0.55);
}

.artist-profile__footerbar button,
.artist-profile__footerbar a {
  background: #D50000;
  border: none;
  color: #fff;
  padding: 10px;
  width: 100%;
  font-weight: 500;
  text-align: center;
  border-right: 1px solid #fff;
}

@media only screen and (max-width: 619px) {
  .artist-profile__footerbar {
    display: block;
  }
}

.artist-profile .social p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.artist-profile .social p a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

.artist-profile .social svg {
  color: #D50000;
  font-size: 30px;
  margin-right: 10px;
}

.artist-profile .modal-overlay {
  z-index: 999;
}

.artist-profile .tns-ovh > .tns-nav {
  text-align: center;
}

.artist-profile .tns-ovh > .tns-nav button {
  background-color: white;
  border: 1px solid #39C;
  border-radius: 50%;
  height: 15px;
  width: 15px;
  margin: 0 1px;
}

.artist-profile .tns-ovh > .tns-nav button.tns-nav-active {
  background-color: #39C;
}

.profile-aproval {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 24px;
}

@media only screen and (max-width: 619px) {
  .profile-aproval {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.profile-aproval .button,
.profile-aproval .button--search,
.profile-aproval .button--filter,
.profile-aproval .button--border {
  margin: 12px 24px;
}

@media only screen and (max-width: 619px) {
  .profile-aproval .button,
  .profile-aproval .button--search,
  .profile-aproval .button--filter,
  .profile-aproval .button--border {
    width: 100%;
  }
}

.profile-aproval .button .icon,
.profile-aproval .button--search .icon,
.profile-aproval .button--filter .icon,
.profile-aproval .button--border .icon {
  margin-right: 12px;
  font-size: 20px;
}

.profile-aproval__terms {
  text-align: center;
  font-size: 14px;
}

.profile-aproval__terms a {
  color: #3372df;
}

section.fun-info.dark {
  z-index: 1;
}

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

.clear:after {
  clear: both;
}

/*==========  TEXT DIVIDER  ==========*/

.text-divider {
  position: relative;
  margin-bottom: 24px;
}

.text-divider:after {
  content: "";
  display: block;
  position: absolute;
  width: 40%;
  height: 1px;
  left: 30%;
  bottom: -12px;
}

.text-divider.xlarge {
  margin-bottom: 48px;
}

.text-divider.xlarge:after {
  bottom: -24px;
}

.text-divider.xxlarge {
  margin-bottom: 72px;
}

.text-divider.xxlarge:after {
  bottom: -36px;
}

.text-divider.huge {
  margin-bottom: 72px;
}

.text-divider.huge:after {
  bottom: -36px;
}

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

.min-w-12px {
  min-width: 12px;
}

.min-h-12px {
  min-height: 12px;
}

.my-0 {
  margin-top: 0rem;
  margin-bottom: 0rem;
}

.mx-0 {
  margin-right: 0rem;
  margin-left: 0rem;
}

.mt-0 {
  margin-top: 0rem;
}

.mr-0 {
  margin-right: 0rem;
}

.mb-0 {
  margin-bottom: 0rem;
}

.ml-0 {
  margin-left: 0rem;
}

.py-0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
}

.px-0 {
  padding-right: 0rem;
  padding-left: 0rem;
}

.pt-0 {
  padding-top: 0rem;
}

.pr-0 {
  padding-right: 0rem;
}

.pb-0 {
  padding-bottom: 0rem;
}

.pl-0 {
  padding-left: 0rem;
}

.my-1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.mx-1 {
  margin-right: 1rem;
  margin-left: 1rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mr-1 {
  margin-right: 1rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.ml-1 {
  margin-left: 1rem;
}

.py-1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.px-1 {
  padding-right: 1rem;
  padding-left: 1rem;
}

.pt-1 {
  padding-top: 1rem;
}

.pr-1 {
  padding-right: 1rem;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pl-1 {
  padding-left: 1rem;
}

.my-2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.mx-2 {
  margin-right: 2rem;
  margin-left: 2rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mr-2 {
  margin-right: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.ml-2 {
  margin-left: 2rem;
}

.py-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.px-2 {
  padding-right: 2rem;
  padding-left: 2rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pr-2 {
  padding-right: 2rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.pl-2 {
  padding-left: 2rem;
}

.my-3 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.mx-3 {
  margin-right: 3rem;
  margin-left: 3rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mr-3 {
  margin-right: 3rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.ml-3 {
  margin-left: 3rem;
}

.py-3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.px-3 {
  padding-right: 3rem;
  padding-left: 3rem;
}

.pt-3 {
  padding-top: 3rem;
}

.pr-3 {
  padding-right: 3rem;
}

.pb-3 {
  padding-bottom: 3rem;
}

.pl-3 {
  padding-left: 3rem;
}

.my-4 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.mx-4 {
  margin-right: 4rem;
  margin-left: 4rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mr-4 {
  margin-right: 4rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.ml-4 {
  margin-left: 4rem;
}

.py-4 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.px-4 {
  padding-right: 4rem;
  padding-left: 4rem;
}

.pt-4 {
  padding-top: 4rem;
}

.pr-4 {
  padding-right: 4rem;
}

.pb-4 {
  padding-bottom: 4rem;
}

.pl-4 {
  padding-left: 4rem;
}

.my-5 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.mx-5 {
  margin-right: 5rem;
  margin-left: 5rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mr-5 {
  margin-right: 5rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.ml-5 {
  margin-left: 5rem;
}

.py-5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.px-5 {
  padding-right: 5rem;
  padding-left: 5rem;
}

.pt-5 {
  padding-top: 5rem;
}

.pr-5 {
  padding-right: 5rem;
}

.pb-5 {
  padding-bottom: 5rem;
}

.pl-5 {
  padding-left: 5rem;
}

.my-6 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.mx-6 {
  margin-right: 6rem;
  margin-left: 6rem;
}

.mt-6 {
  margin-top: 6rem;
}

.mr-6 {
  margin-right: 6rem;
}

.mb-6 {
  margin-bottom: 6rem;
}

.ml-6 {
  margin-left: 6rem;
}

.py-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.px-6 {
  padding-right: 6rem;
  padding-left: 6rem;
}

.pt-6 {
  padding-top: 6rem;
}

.pr-6 {
  padding-right: 6rem;
}

.pb-6 {
  padding-bottom: 6rem;
}

.pl-6 {
  padding-left: 6rem;
}

.my-7 {
  margin-top: 7rem;
  margin-bottom: 7rem;
}

.mx-7 {
  margin-right: 7rem;
  margin-left: 7rem;
}

.mt-7 {
  margin-top: 7rem;
}

.mr-7 {
  margin-right: 7rem;
}

.mb-7 {
  margin-bottom: 7rem;
}

.ml-7 {
  margin-left: 7rem;
}

.py-7 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.px-7 {
  padding-right: 7rem;
  padding-left: 7rem;
}

.pt-7 {
  padding-top: 7rem;
}

.pr-7 {
  padding-right: 7rem;
}

.pb-7 {
  padding-bottom: 7rem;
}

.pl-7 {
  padding-left: 7rem;
}

.my-8 {
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.mx-8 {
  margin-right: 8rem;
  margin-left: 8rem;
}

.mt-8 {
  margin-top: 8rem;
}

.mr-8 {
  margin-right: 8rem;
}

.mb-8 {
  margin-bottom: 8rem;
}

.ml-8 {
  margin-left: 8rem;
}

.py-8 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.px-8 {
  padding-right: 8rem;
  padding-left: 8rem;
}

.pt-8 {
  padding-top: 8rem;
}

.pr-8 {
  padding-right: 8rem;
}

.pb-8 {
  padding-bottom: 8rem;
}

.pl-8 {
  padding-left: 8rem;
}

.my-9 {
  margin-top: 9rem;
  margin-bottom: 9rem;
}

.mx-9 {
  margin-right: 9rem;
  margin-left: 9rem;
}

.mt-9 {
  margin-top: 9rem;
}

.mr-9 {
  margin-right: 9rem;
}

.mb-9 {
  margin-bottom: 9rem;
}

.ml-9 {
  margin-left: 9rem;
}

.py-9 {
  padding-top: 9rem;
  padding-bottom: 9rem;
}

.px-9 {
  padding-right: 9rem;
  padding-left: 9rem;
}

.pt-9 {
  padding-top: 9rem;
}

.pr-9 {
  padding-right: 9rem;
}

.pb-9 {
  padding-bottom: 9rem;
}

.pl-9 {
  padding-left: 9rem;
}

/*==========  SIZE WIDTH  ==========*/

.w-full {
  width: 100%;
}

/**************VUEJS MULTIPLESELECT********************/

.search-multi .multiselect__input, .multiselect__single {
  background: none !important; 
  color: black !important;
  font-weight: bold !important;
}
.search-multi .multiselect__tags {
  border: none !important;
  background: #d7d7d7 !important;
}
.search-multi .multiselect__placeholder {
  color: black !important;
  font-weight: bold !important;
}

.search-multi .multiselect__tags {
  font-size: 16px !important;
}
.search-multi .multiselect__single {
  margin-top: 8px !important;
}
.red-background.search-multi .multiselect__tags {
  border: none !important;
  background: #eb5140 !important;
}

.red-background.search-multi .multiselect__input {
  background: none !important; 
  color: white !important;
  font-weight: bold !important;
}
.red-background.search-multi .multiselect__single {
  background: none !important; 
  color: white !important;
  font-weight: bold !important;
}

.search-multi .multiselect .multiselect__content-wrapper {
  max-height: 200px !important;
}

/******************************************************/
/************************COOL BTN*******************************/
a.button-cool-cache{
  display:inline-block;
  padding:0.1em 0.2em;
  margin:0 0.3em 0.3em 0;
  border-radius:0.2em;
  box-sizing: border-box;
  text-decoration:none;
  font-family:'Roboto',sans-serif;
  font-weight:400;
  color:#FFFFFF;
  background-color:#3369ff;
  box-shadow:inset 0 -0.6em 1em -0.35em rgba(0,0,0,0.17),inset 0 0.6em 2em -0.3em rgba(255,255,255,0.15),inset 0 0 0em 0.05em rgba(255,255,255,0.12);
  text-align:center;
  position:relative;
} 

/*
a.button-cool-cache:active{
  box-shadow:inset 0 0.6em 2em -0.3em rgba(0,0,0,0.15),inset 0 0 0em 0.05em rgba(255,255,255,0.12);
}
*/
@media all and (max-width:30em){
  a.button-cool-cache {
    display:block;
    margin:0.4em auto;
  }
}

.button-cool-cache .left-side {
  font-size:1em; 
  border-right:1px solid rgba(255,255,255,0.5); 
  padding-right:0.3em; 
  margin-right:0.3em; 
  vertical-align:middle
}
  
/*****************************************************/

/*

                                           ARREMENDOS   

*/

#profile-url {
  cursor: pointer;
}

.profile-placeholder-images {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.private-profile-notification {
  background-color: #0198CF;
  padding: 15px;
  color: white;
  text-align: center;
  font-weight: bold;
}

.private-profile-notification a {
  background-color: white;
  color: #0198CF;
  padding: 0px 15px;
  border-radius: 5px;
  font-weight: bold;
  margin-left: 10px;
}

.no-data {
  color: #CDCDCD;
  font-weight: bold;
  align-self: center;
  font-size: larger;
}

.btnProfile-description {
  background-color: #a0a5a5 ;
  /* margin-left: 15px; */
  padding: 0.7rem;
  border: none;
  color: white;
}

.btn-success{
  background-color: #7cd1f9 !important;
}




.multiselect__spinner {
  background-color: initial !important;
  width: 100% !important;
  margin-right: 10px !important;
  z-index: 2 !important;
}

.multiselect__spinner:after, .multiselect__spinner:before {
    width: 30px !important;
    height: 30px !important;
    border-width: 5px !important;
}


/* 

                Loader Pages

*/

.wrapperLoader{
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-color: white;
  z-index: 999;
}


.clappyuLoader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
  position:absolute;
  left:0; right:0;
  top:0; bottom:0;
  margin:auto;
  max-width:100%;
  max-height:100%;
  overflow:auto;

}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



/* Mostrar genero de musica no artista numa lista horizontal */ 

.artist-profile__subcategory{
  margin-right: 1rem;
}

.artist-profile__subcategory:before {
	content: '\00a0\2022\00a0\00a0';
	color:#999;
	color:rgba(0,0,0,0.5);
	font-size:11px;
}


/* Correct Blue Approval bar position */ 
@media only screen and (max-width: 768px) {

  .private-profile-notification {
    margin-top: 20% !important;
  }
}

/* Correct max-height de biografias muito grandes */


#tab-content-biography{
  max-height: none;
}

.text-justify {
  text-align: justify !important;
}



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

  .profile-services-container {

    padding: 0 3em;
  }
}

.btn-see-more{

    color: rgb(51, 153, 204, 1);
    width: 100%;

}

.btn-see-more:hover {
    cursor: pointer;
    color: rgb(51, 153, 204, 0.7);
}

