.profile-infos__nickname .verified {
    position: relative;
    display: inline-block;
    margin-left: 0px;
    top: 4px;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    border: 2px solid #5ec735;
    color: #fff;
}

.profile-infos__nickname .verified i {
    position: absolute;
    top: 1px;
    padding: 0;
    left: 3px;
    color: #fff;
    font-size: 20px;
    opacity: 1;
}

.private-label {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    background-color: #e22929;
    color: #fff;
    z-index: 1;
    text-align: center;
}

.cta-button:hover {
    cursor: pointer;
    box-shadow: none;
    -webkit-box-shadow: none;
}

.profile-full__profile-infos .online-indicator {
    margin-top: 8px;
}

.profile-full__profile-infos .online-indicator__bullet {
    width: 14px;
    height: 14px;
}


.upload {
  cursor: pointer;
  position: relative;
}
.upload .image {
  color: #B4B8C1;
  stroke: none;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}
.upload .circle {
  display: block;
  stroke: #EDEEF1;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
  width: 164px;
  height: 164px;
  opacity: 0;
  transition: all .2s ease;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.upload .circle .active {
  stroke: #67C38A;
  stroke-dasharray: 502.65;
  stroke-dashoffset: 502.65;
  transition: all 4s ease;
}
.upload:before {
  content: '';
  border-radius: 12px;
  background: rgba(180, 184, 193, 0.3);
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}
.upload .image, .upload:before {
  display: block;
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  left: 50%;
  top: 50%;
  position: absolute;
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
  transition: all 0.5s cubic-bezier(0.51, 0.92, 0.24, 1.15);
}
.upload:not(.do):hover .image {
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  color: #67C38A;
}
.upload:not(.do):hover:before {
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  background: rgba(103, 195, 138, 0.3);
}
.upload.do .image {
  color: #67C38A;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  -webkit-animation: bounce 1s infinite ease;
          animation: bounce 1s infinite ease;
}
.upload.do:before {
  background: rgba(103, 195, 138, 0.3);
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  -webkit-animation: bounceAlt 1s infinite ease;
          animation: bounceAlt 1s infinite ease;
}
.upload.do .circle {
  opacity: 1;
}
.upload.do .circle .active {
  stroke-dashoffset: 0;
}
.upload.animateEnd .image, .upload.animateEnd:before {
  -webkit-animation: none;
          animation: none;
}
.upload.animateEnd .image {
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}
.upload.animateEnd:before {
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
}
.upload.animateEnd .circle {
  opacity: 0;
  transition-delay: 0s;
}
.upload.animateEnd .circle .active {
  stroke-dasharray: 502.65;
  stroke-dashoffset: 502.65;
}

@-webkit-keyframes bounce {
  50% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
}

@keyframes bounce {
  50% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
}
@-webkit-keyframes bounceAlt {
  50% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
}
@keyframes bounceAlt {
  50% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
}


.dragBorder{
    border-color:#67c38a !important;
}

.file-input {
  display: inline-block;
  text-align: left;
  background: none;
  padding: 16px;
  width: 450px;
  position: relative;
  border-radius: 3px;
}

.file-input > [type='file'] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 10;
  cursor: pointer;
}

.file-input > .button {
  display: inline-block;
  cursor: pointer;
  background: #eee;
  padding: 8px 16px;
  border-radius: 2px;
  margin-right: 8px;
}

.file-input:hover > .button {
  background: #5fbe83;
  color: white;
}

.file-input > .label {
  color: #333;
  white-space: nowrap;
  opacity: .3;
}

.file-input.-chosen > .label {
  opacity: 1;
}



.upload__files {
  display: flex;
  flex-flow: row wrap;
  margin: 10px 0 0;
  padding: 0;
  width: 100%;
}
.upload__files *:nth-child(3n) {
  margin-right: 0;
}

.preview {
    position: relative;
  background: none;
  padding: 10px 10px 5px;
  margin: 0 10px 10px 0;
  width: 140px;
}
.preview__thumb {
  background: #1b1c21;
  border-radius: 3px;
  height: 100px;
  flex: 0 0 100%;
  margin: 0 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.preview__thumb img,
.preview__thumb video {
  max-width: 100%;
  max-height: 98px;
}
.preview__name, .preview__type {
  display: inline-block;
  font-size: 0.8571rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.preview__name {
  font-weight: 700;
}

.file-upload-promo-wrapper:hover{
    background: none !important;
}


.dropdown-media {
  position: absolute;
  top: 5px;
  left: 3px;
  display: inline-block;
  text-align: left;
  width: 100%;
  z-index: 99;
}

.dropdown-text {
  cursor: pointer;
  position: absolute;
  text-indent: 10px;
  line-height: 32px;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 3px;
  width: 100%;
}

.dropdown-text:after {
  position: absolute;
  right: 6px;
  top: 15px;
  content: '';
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  border-color: #555 transparent transparent transparent;
}

.dropdown-text,
.dropdown-content-media a {
  color: #333;
  font-family: 'Montserrat';
  font-weight: 500;
  border-bottom: 1px solid #fafafa;
  font-size: 12px
}

.dropdown-toggle {
  font-size: 0;
  z-index: 1;
  cursor: pointer;
  position: absolute;
  top: 0;
  border: none;
  padding: 0;
  margin: 0 0 0 1px;
  background: transparent;
  text-indent: -10px;
  height: 100px;
  width: 100%;
}

.dropdown-toggle:focus {
  outline: 0;
}

.dropdown-content-media {
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
  list-style-type: none;
  position: absolute;
  top: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility:hidden;
  border-radius: 3px;
  text-indent: 10px;
  line-height: 32px;
  background: rgba(255,255,255,.85);
  border: 1px solid #fafafa;
  width: 140px;
  height: 140px;
  z-index: 999;
}

.dropdown-content-media a {
  display: block;
}

.dropdown-content-media a:hover {
  background: #fff;
}


.dropdown-toggle:hover ~ .dropdown-text,
.dropdown-toggle:focus ~ .dropdown-text {
  background-color: #e8e8e8;
}

.dropdown-toggle:focus ~ .dropdown-text {
  
  z-index: 2;
}

.dropdown-toggle:focus ~ .dropdown-text:after {
  border-width: 0 4px 5px 4px;
  border-color: transparent transparent #555 transparent;
}

.dropdown-content-media:hover,
.dropdown-toggle:focus ~ .dropdown-content-media {
  opacity: 1;
  visibility:visible;
  top: 0;
}


.switch {
  height: 24px;
  display: block;
  position: relative;
  cursor: pointer;
}
.switch input {
  display: none;
}
.switch input + span {
  padding-left: 50px;
  min-height: 24px;
  line-height: 24px;
  display: block;
  color: #99A3BA;
  position: relative;
  vertical-align: middle;
  white-space: nowrap;
  transition: color .3s ease;
}
.switch input + span:before, .switch input + span:after {
  content: '';
  display: block;
  position: absolute;
  border-radius: 12px;
}
.switch input + span:before {
  top: 0;
  left: 0;
  width: 42px;
  height: 24px;
  background: #E4ECFA;
  transition: all .3s ease;
}
.switch input + span:after {
  width: 18px;
  height: 18px;
  background: #fff;
  top: 3px;
  left: 3px;
  box-shadow: 0 1px 3px rgba(18, 22, 33, 0.1);
  transition: all .45s ease;
}
.switch input + span em {
  width: 8px;
  height: 7px;
  background: #99A3BA;
  position: absolute;
  left: 8px;
  bottom: 7px;
  border-radius: 2px;
  display: block;
  z-index: 1;
  transition: all .45s ease;
}
.switch input + span em:before {
  content: '';
  width: 2px;
  height: 2px;
  border-radius: 1px;
  background: #fff;
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  margin: -1px 0 0 -1px;
}
.switch input + span em:after {
  content: '';
  display: block;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border: 1px solid #99A3BA;
  border-bottom: 0;
  width: 6px;
  height: 4px;
  left: 1px;
  bottom: 6px;
  position: absolute;
  z-index: 1;
  -webkit-transform-origin: 0 100%;
          transform-origin: 0 100%;
  transition: all .45s ease;
  -webkit-transform: rotate(-35deg) translate(0, 1px);
          transform: rotate(-35deg) translate(0, 1px);
}
.switch input + span strong {
  font-weight: normal;
  position: relative;
  display: block;
  top: 1px;
}
.switch input + span strong:before, .switch input + span strong:after {
  font-size: 14px;
  font-weight: 500;
  display: block;
  font-family: Arial;
  -webkit-backface-visibility: hidden;
}
.switch input + span strong:before {
  content: 'Öffentlich';
  transition: all .3s ease .2s;
}
.switch input + span strong:after {
  content: 'Erotik';
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
  color: #5628EE;
  transition: all .3s ease;
  -webkit-transform: translate(2px, 0);
          transform: translate(2px, 0);
}
.switch input:checked + span:before {
  background: rgba(86, 40, 238, 0.35);
}
.switch input:checked + span:after {
  background: #fff;
  -webkit-transform: translate(18px, 0);
          transform: translate(18px, 0);
}
.switch input:checked + span em {
  -webkit-transform: translate(18px, 0);
          transform: translate(18px, 0);
  background: #5628EE;
}
.switch input:checked + span em:after {
  border-color: #5628EE;
  -webkit-transform: rotate(0deg) translate(0, 0);
          transform: rotate(0deg) translate(0, 0);
}
.switch input:checked + span strong:before {
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  -webkit-transform: translate(-2px, 0);
          transform: translate(-2px, 0);
}
.switch input:checked + span strong:after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  transition: all .3s ease .2s;
}

.photo-list__item:hover .photo-list__img_ {
    opacity: 1
}
.photo-list__img {
    position: absolute;
    top: -500px;
    right: -500px;
    bottom: -500px;
    left: -500px;
    margin: auto
}
.photo-list__item--private .photo-list__img,
.photo-list__item--not-moderated .photo-list__img {
    width: 160px;
    height: 160px;
    -webkit-filter: blur(5px);
    filter: blur(5px)
}
.photo-list__link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center
}
.photo-list__video {
    margin: 45px;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    padding: 14px;
    background: rgba(0, 0, 0, .5)
}
.photo-list__item:hover .photo-list__video {
    background: #000
}
.photo-list__action {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    background: rgba(51, 51, 51, .8);
    text-align: center;
    color: #fff;
    white-space: normal
}
.photo-list__action--blue {
    background: rgba(37, 108, 245, .8)
}
.photo-list__action .icon {
    vertical-align: top
}
.photo-list__photo-bar .photo-list__action .icon,
.photo-list__photo-bar .photo-list__action-title {
    opacity: .7
}
.photo-list__photo-bar .photo-list__action--add-photos .icon {
    opacity: .3
}
.photo-list__item:hover .photo-list__action .icon,
.photo-list__item:hover .photo-list__action-title {
    opacity: 1
}
.photo-list__action-bar .photo-list__action,
.photo-list__item--delete .photo-list__action--delete,
.photo-list__item--send .photo-list__action--send,
.photo-list__action--facebook,
.photo-list__action--instagram,
.photo-list__action--private,
.photo-list__action--not-moderated,
.photo-list__action--add-photos {
    display: block
}
.photo-list__action--private {
    z-index: 3;
    background: rgba(112, 55, 192, .7)
}
.photo-list__action-bar .photo-list__action--add-photos {
    background: #1f72f2
}
.photo-list__action-bar .photo-list__action--add-photos:hover {
    background: #1c68d9
}
.photo-list__action-bar .photo-list__action--add-videos,
.photo-list__action-bar .photo-list__action--video-progress {
    background: #3674a9
}
.photo-list__action-bar .photo-list__action--add-videos:hover {
    background: #2e618f
}
.photo-list__photo-bar .photo-list__action--add-photos {
    background: transparent
}
.photo-list__photo-bar .photo-list__action--add-photos:hover {
    background: #bfbfbf
}
.photo-list--video-progress .photo-list__action--video-progress .loader {
    position: relative;
    margin: 17px auto 9px
}
.photo-list__action_ {
    max-width: 100%
}
.photo-list__action-title {
    display: block;
    padding: 10px 5px 0
}
.photo-list__action.photo-list__action--blue .icon,
.photo-list__action--blue .photo-list__action-title {
    opacity: 1
}
.photo-list__nav {
    position: absolute;
    z-index: 2;
    top: 5px;
    right: 10px;
    left: 0;
    cursor: pointer;
    text-align: left;
    white-space: normal
}
.photo-list__nav-action {
    float: right;
    visibility: hidden;
    text-align: right
}
.photo-list__img_:hover + .photo-list__nav > .photo-list__nav-action,
.photo-list__link:hover + .photo-list__nav > .photo-list__nav-action,
.photo-list__nav:hover > .photo-list__nav-action,
.photo-list__nav-action .btn.hovered {
    visibility: visible
}
.photo-list__nav-action .datalist .option {
    font-size: .889em;
    line-height: 1.25
}
.photo-list__default-photo {
    display: inline-block
}
.photo-list__default-photo + .btn {
    margin-left: 7px
}
.photo-list__default-photo:not(.active) .btn.active,
.photo-list__default-photo.active .btn:not(.active) {
    display: none
}
.photo-list__photo-coaching {
    position: absolute;
    z-index: 1;
    right: 10px;
    bottom: 10px;
    left: 10px
}
.photo-list__photo-coaching .photo-coaching {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto
}
.photo-list__photo-coaching .photo-coaching__star {
    position: relative
}
.photo-list__item--send .photo-list__nav,
.photo-list__item--delete .photo-list__nav,
.photo-list__item--delete .photo-list__photo-coaching {
    display: none
}
.photo-list__img_:hover + .photo-list__nav + .photo-list__photo-coaching .photo-coaching__star,
.photo-coaching--sm:hover .photo-coaching__star {
    background-position: 0 -39px
}
.photo-list__photo-coaching .icon {
    position: relative
}
.photo-list__photo-coaching .photo-coaching:after,
.photo-list__photo-coaching .icon:after {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto
}
.photo-list__photo-coaching .icon:after {
    box-shadow: 0 2px 8px 3px rgba(0, 0, 0, .1);
    width: 4px;
    height: 4px
}
.photo-list__photo-coaching .photo-coaching:after {
    box-shadow: 0 0 8px 3px rgba(0, 0, 0, .1);
    width: 100%;
    height: 0
}
.photo-list__private-photo {
    position: absolute;
    z-index: 1;
    bottom: 4px;
    left: 9px
}
.photo-list--grid {
    height: auto;
    min-height: 600px
}
.photo-list--grid .photo-list__action-bar {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 150px
}
.photo-list--grid.photo-list--video .photo-list__action-bar {
    width: 300px
}
.photo-list--grid .photo-list__photo-bar {
    height: auto
}
.photo-list--grid .photo-list__slide {
    display: block;
    white-space: normal;
    -webkit-transform: none !important;
    transform: none !important
}
.photo-list--grid .photo-list__photo-bar .photo-list__item:first-child {
    margin: 0 0 0 150px
}
.photo-list--grid.photo-list--video .photo-list__photo-bar .photo-list__item:first-child {
    margin: 0 0 0 300px
}

#allInterests .container-grid-interest {
  background: #eee;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  width: 60px;
  height: 60px;
  position: relative;
  display: inline-block;
  border-radius: 5px;
  margin-left: 16px;
  margin-top: 0px;
  border-radius: 50%;  
  cursor: pointer;
  overflow: visible;
  margin-bottom: 2rem;
  border: 3px solid transparent;
  transition: border-color 0.3s ease;
}

#allInterests .container-grid-interest.interest-selected {
  border-color: #4caf50;
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.3);
}

#allInterests .container-grid-interest.grayScale {
  filter: grayscale(100%);
  opacity: 0.6;
}

#allInterests .interestName {
  border-radius: 3px;
  width: auto;
  height: 20px;
  background: none;
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  z-index: 4;
  opacity: 1;
  text-align: center;
}
#allInterests .interestAdd{
  opacity: 1;
  bottom: 20px;
}
#allInterests .container-grid-interest:hover .interestName{
  opacity: 1;
}
#allInterests .interestName span{
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  text-align: center !important;
  font-size: 12px;
  line-height: 20px;
  color: black;
  padding: 2px;
}