@charset "UTF-8";
/*
 *  Owl Carousel - Core
 */
[data-mb=slider],
.-mobile-slider,
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
[data-mb=slider] .owl-stage,
.-mobile-slider .owl-stage,
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
[data-mb=slider] .owl-stage:after,
.-mobile-slider .owl-stage:after,
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
[data-mb=slider] .owl-stage-outer,
.-mobile-slider .owl-stage-outer,
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
[data-mb=slider] .owl-wrapper,
[data-mb=slider] .owl-item,
.-mobile-slider .owl-wrapper,
.-mobile-slider .owl-item,
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
[data-mb=slider] .owl-item,
.-mobile-slider .owl-item,
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
[data-mb=slider] .owl-item img,
.-mobile-slider .owl-item img,
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
[data-mb=slider] .owl-nav.disabled,
[data-mb=slider] .owl-dots.disabled,
.-mobile-slider .owl-nav.disabled,
.-mobile-slider .owl-dots.disabled,
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
[data-mb=slider] .owl-nav .owl-prev,
[data-mb=slider] .owl-nav .owl-next,
[data-mb=slider] .owl-dot,
.-mobile-slider .owl-nav .owl-prev,
.-mobile-slider .owl-nav .owl-next,
.-mobile-slider .owl-dot,
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
[data-mb=slider] .owl-nav button.owl-prev,
[data-mb=slider] .owl-nav button.owl-next,
[data-mb=slider] button.owl-dot,
.-mobile-slider .owl-nav button.owl-prev,
.-mobile-slider .owl-nav button.owl-next,
.-mobile-slider button.owl-dot,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
}
[data-mb=slider].owl-loaded,
.-mobile-slider.owl-loaded,
.owl-carousel.owl-loaded {
  display: block;
}
[data-mb=slider].owl-loading,
.-mobile-slider.owl-loading,
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
[data-mb=slider].owl-hidden,
.-mobile-slider.owl-hidden,
.owl-carousel.owl-hidden {
  opacity: 0;
}
[data-mb=slider].owl-refresh .owl-item,
.-mobile-slider.owl-refresh .owl-item,
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
[data-mb=slider].owl-drag .owl-item,
.-mobile-slider.owl-drag .owl-item,
.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
[data-mb=slider].owl-grab,
.-mobile-slider.owl-grab,
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
[data-mb=slider].owl-rtl,
.-mobile-slider.owl-rtl,
.owl-carousel.owl-rtl {
  direction: rtl;
}
[data-mb=slider].owl-rtl .owl-item,
.-mobile-slider.owl-rtl .owl-item,
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

select.bs-select-hidden,
select.selectpicker {
  display: none !important;
}

.bootstrap-select {
  width: 100%;
  width: 100% \0 ;
  /*IE9 and below*/
  position: relative;
  /*  &:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
      width: $width-default;
    }*/
  /*    .dropdown-toggle:focus {
          outline: thin dotted #333333 !important;
          outline: 5px auto -webkit-focus-ring-color !important;
          outline-offset: -2px;
      }*/
}
.bootstrap-select > .dropdown-toggle {
  width: 100%;
  padding-right: 25px;
  z-index: 1;
}
.bootstrap-select > .dropdown-toggle.bs-placeholder, .bootstrap-select > .dropdown-toggle.bs-placeholder:hover, .bootstrap-select > .dropdown-toggle.bs-placeholder:focus, .bootstrap-select > .dropdown-toggle.bs-placeholder:active {
  color: #999;
}
.bootstrap-select > select {
  position: absolute !important;
  bottom: 0;
  left: 50%;
  display: block !important;
  width: 0.5px !important;
  height: 100% !important;
  padding: 0 !important;
  opacity: 0 !important;
  border: none;
}
.bootstrap-select > select.mobile-device {
  top: 0;
  left: 0;
  display: block !important;
  width: 100% !important;
  z-index: 2;
}
.has-error .bootstrap-select .dropdown-toggle, .error .bootstrap-select .dropdown-toggle {
  border-color: #b94a48;
}
.bootstrap-select.fit-width {
  width: auto !important;
}

.bootstrap-select.form-control {
  margin-bottom: 0;
  padding: 0;
  border: none;
}
.bootstrap-select.form-control:not([class*=col-]) {
  width: 100%;
}
.bootstrap-select.form-control.input-group-btn {
  z-index: auto;
}
.bootstrap-select.form-control.input-group-btn:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

.bootstrap-select.btn-group:not(.input-group-btn), .bootstrap-select.btn-group[class*=col-] {
  float: none;
  display: inline-block;
  margin-left: 0;
}
.bootstrap-select.btn-group.dropdown-menu-right, .bootstrap-select.btn-group[class*=col-].dropdown-menu-right, .row .bootstrap-select.btn-group[class*=col-].dropdown-menu-right {
  float: right;
}
.form-inline .bootstrap-select.btn-group, .form-horizontal .bootstrap-select.btn-group, .form-group .bootstrap-select.btn-group {
  margin-bottom: 0;
}
.form-group-lg .bootstrap-select.btn-group.form-control, .form-group-sm .bootstrap-select.btn-group.form-control {
  padding: 0;
}
.form-group-lg .bootstrap-select.btn-group.form-control .dropdown-toggle, .form-group-sm .bootstrap-select.btn-group.form-control .dropdown-toggle {
  height: 100%;
  font-size: inherit;
  line-height: inherit;
  border-radius: inherit;
}
.form-inline .bootstrap-select.btn-group .form-control {
  width: 100%;
}
.bootstrap-select.btn-group.disabled,
.bootstrap-select.btn-group > .disabled {
  cursor: not-allowed;
}
.bootstrap-select.btn-group.disabled:focus,
.bootstrap-select.btn-group > .disabled:focus {
  outline: none !important;
}
.bootstrap-select.btn-group.bs-container {
  position: absolute;
  height: 0 !important;
  padding: 0 !important;
}
.bootstrap-select.btn-group.bs-container .dropdown-menu {
  z-index: 1060;
}
.bootstrap-select.btn-group .dropdown-toggle .filter-option {
  display: inline-block;
  overflow: hidden;
  width: 100%;
  text-align: left;
}
.bootstrap-select.btn-group .dropdown-toggle .caret {
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -2px;
  vertical-align: middle;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.bootstrap-select.btn-group .dropdown-toggle::after {
  display: none;
}
.bootstrap-select.btn-group[class*=col-] .dropdown-toggle {
  width: 100%;
}
.bootstrap-select.btn-group .dropdown-menu {
  min-width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bootstrap-select.btn-group .dropdown-menu.inner {
  position: static;
  float: none;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
.bootstrap-select.btn-group .dropdown-menu li {
  position: relative;
}
.bootstrap-select.btn-group .dropdown-menu li.active small {
  color: #fff;
}
.bootstrap-select.btn-group .dropdown-menu li.disabled a {
  cursor: not-allowed;
}
.bootstrap-select.btn-group .dropdown-menu li a {
  cursor: pointer;
  user-select: none;
}
.bootstrap-select.btn-group .dropdown-menu li a.opt {
  position: relative;
  padding-left: 2.25em;
}
.bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
  display: none;
}
.bootstrap-select.btn-group .dropdown-menu li a span.text {
  display: inline-block;
}
.bootstrap-select.btn-group .dropdown-menu li small {
  padding-left: 0.5em;
}
.bootstrap-select.btn-group .dropdown-menu .notify {
  position: absolute;
  bottom: 5px;
  width: 96%;
  margin: 0 2%;
  min-height: 26px;
  padding: 3px 5px;
  background: whitesmoke;
  border: 1px solid #e3e3e3;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  pointer-events: none;
  opacity: 0.9;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bootstrap-select.btn-group .no-results {
  padding: 3px;
  background: #f5f5f5;
  margin: 0 5px;
  white-space: nowrap;
}
.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {
  position: static;
}
.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {
  position: static;
  top: auto;
  margin-top: -1px;
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
  position: absolute;
  display: inline-block;
  right: 15px;
  margin-top: 5px;
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
  margin-right: 34px;
}

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle {
  z-index: 1061;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
  content: "";
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(204, 204, 204, 0.2);
  position: absolute;
  bottom: -4px;
  left: 9px;
  display: none;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  position: absolute;
  bottom: -4px;
  left: 10px;
  display: none;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
  bottom: auto;
  top: -3px;
  border-top: 7px solid rgba(204, 204, 204, 0.2);
  border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
  bottom: auto;
  top: -3px;
  border-top: 6px solid white;
  border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
  right: 12px;
  left: auto;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
  right: 13px;
  left: auto;
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before, .bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after {
  display: block;
}

.bs-searchbox,
.bs-actionsbox,
.bs-donebutton {
  padding: 4px 8px;
}

.bs-actionsbox {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bs-actionsbox .btn-group button {
  width: 50%;
}

.bs-donebutton {
  float: left;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bs-donebutton .btn-group button {
  width: 100%;
}

.bs-searchbox + .bs-actionsbox {
  padding: 0 8px 4px;
}
.bs-searchbox .form-control {
  margin-bottom: 0;
  width: 100%;
  float: none;
}

/* Ion.RangeSlider
// css version 2.0.3
// © 2013-2014 Denis Ineshin | IonDen.com
// ===================================================================================================================*/
/* =====================================================================================================================
// RangeSlider */
.irs {
  position: relative;
  display: block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.irs-line {
  position: relative;
  display: block;
  overflow: hidden;
  outline: none !important;
}

.irs-line-left, .irs-line-mid, .irs-line-right {
  position: absolute;
  display: block;
  top: 0;
}

.irs-line-left {
  left: 0;
  width: 11%;
}

.irs-line-mid {
  left: 9%;
  width: 82%;
}

.irs-line-right {
  right: 0;
  width: 11%;
}

.irs-bar {
  position: absolute;
  display: block;
  left: 0;
  width: 0;
}

.irs-bar-edge {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
}

.irs-shadow {
  position: absolute;
  display: none;
  left: 0;
  width: 0;
}

.irs-slider {
  position: absolute;
  display: block;
  cursor: default;
  z-index: 1;
}

.irs-slider.type_last {
  z-index: 2;
}

.irs-min {
  position: absolute;
  display: block;
  left: 0;
  cursor: default;
}

.irs-max {
  position: absolute;
  display: block;
  right: 0;
  cursor: default;
}

.irs-from, .irs-to, .irs-single {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  cursor: default;
  white-space: nowrap;
}

.irs-grid {
  position: absolute;
  display: none;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 22px;
}

.irs-with-grid .irs-grid {
  display: block;
}

.irs-grid-pol {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 0.0625rem;
  height: 0.5rem;
  background: #333333;
}
.irs-grid-pol.small {
  height: 0.25rem;
}

.irs-grid-text {
  position: absolute;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  text-align: center;
  font-size: 14px;
  line-height: 14px;
  padding: 0 3px;
  color: #818181;
}
.irs-grid-text:last-child {
  color: transparent;
  font-size: 0;
  line-height: 0;
}
.irs-grid-text:last-child::before {
  display: block;
  content: "+";
  font-size: 14px;
  line-height: 14px;
  color: #818181;
}

.irs-disable-mask {
  position: absolute;
  display: block;
  top: 0;
  left: -1%;
  width: 102%;
  height: 100%;
  cursor: default;
  background: rgba(0, 0, 0, 0);
  z-index: 2;
}

.irs-disabled {
  opacity: 0.4;
}

.lt-ie9 .irs-disabled {
  filter: alpha(opacity=40);
}

.irs-hidden-input {
  position: absolute !important;
  display: block !important;
  top: 0 !important;
  left: 0 !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  outline: none !important;
  z-index: -9999 !important;
  background: none !important;
  border-style: solid !important;
  border-color: transparent !important;
}

.irs {
  height: 22px;
  margin: 0 45px;
}
.irs > .irs {
  margin: 0;
}

.irs-with-grid {
  height: 53px;
}

.irs-line {
  height: 4px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff;
  border-radius: 4px;
}

.irs-bar {
  height: 4px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #f54da3;
}

.irs-shadow {
  height: 1px;
  top: 34px;
  background: #000;
  opacity: 0.15;
}

.lt-ie9 .irs-shadow {
  filter: alpha(opacity=15);
}

.irs-grid {
  margin-top: 20px;
  padding-top: 5px;
  border-top: 1px dashed #474747;
}

.irs-slider {
  width: 22px;
  height: 22px;
  top: 0;
  background-color: #ffffff;
  border: 1px solid #f7dcdc;
  border-radius: 50%;
  cursor: pointer;
}

.irs-slider.state_hover, .irs-slider:hover {
  background-position: 0 -150px;
}

.irs-min, .irs-max {
  display: none;
}

.irs-single {
  display: none;
}

.irs-from {
  left: -45px !important;
}

.irs-to {
  left: auto !important;
  right: -45px;
}

.qq-uploader {
  position: relative;
  width: 100%;
}

.qq-upload-button {
  display: block;
  width: 175px;
  padding: 0 15px;
  text-align: center;
  color: #f54da3;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 7px;
  border: 1px solid #f54da3;
  height: 40px;
  line-height: 38px;
  margin: 0 auto;
}

.qq-upload-button-hover {
  background-color: #f54da3;
  color: #ffffff;
}

.qq-upload-button-focus {
  outline: 1px dotted #000000;
}

.qq-upload-drop-area, .qq-upload-extra-drop-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 30px;
  z-index: 2;
  background: #f7dcdc;
  text-align: center;
}

.qq-upload-drop-area span {
  display: block;
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -8px;
  font-size: 16px;
}

.qq-upload-extra-drop-area {
  position: relative;
  margin-top: 50px;
  font-size: 16px;
  padding-top: 30px;
  height: 20px;
  min-height: 40px;
}

.qq-upload-drop-area-active {
  background: #FF7171;
}

.qq-upload-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
  height: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.qq-upload-list li {
  margin: 0;
  display: block;
  position: relative;
  height: 100%;
  overflow: hidden;
  color: #ffffff;
}

.qq-upload-file, .qq-upload-spinner, .qq-upload-size,
.qq-upload-cancel, .qq-upload-retry, .qq-upload-failed-text,
.qq-upload-delete, .qq-upload-pause, .qq-upload-continue {
  margin-right: 12px;
  display: inline;
}

.qq-upload-spinner {
  display: inline-block;
  background: url("../images/fineuploader/loading.gif");
  width: 15px;
  height: 15px;
  vertical-align: text-bottom;
}

.qq-drop-processing {
  display: block;
  text-align: center;
}

.qq-drop-processing > span:not(.qq-drop-processing-spinner) {
  display: block;
  margin-bottom: 5px;
}

.qq-drop-processing-spinner {
  display: inline-block;
  background: url("../images/fineuploader/processing.gif");
  width: 24px;
  height: 24px;
  vertical-align: text-bottom;
}

.qq-upload-delete, .qq-upload-pause, .qq-upload-continue {
  display: inline;
}

.qq-upload-retry, .qq-upload-delete, .qq-upload-cancel,
.qq-upload-pause, .qq-upload-continue {
  color: #000000;
}

.qq-upload-size, .qq-upload-cancel, .qq-upload-retry,
.qq-upload-delete, .qq-upload-pause, .qq-upload-continue {
  font-size: 12px;
  font-weight: normal;
}

.qq-upload-failed-text {
  display: none;
  font-style: italic;
  font-weight: bold;
}

.qq-upload-failed-icon {
  display: none;
  width: 15px;
  height: 15px;
  vertical-align: text-bottom;
}

.qq-upload-fail .qq-upload-failed-text {
  display: inline;
}

.qq-upload-retrying .qq-upload-failed-text {
  display: inline;
  color: #D60000;
}

.qq-progress-bar {
  display: block;
  background: #f54da3;
  width: 0%;
  height: 15px;
  border-radius: 6px;
  margin-bottom: 3px;
}

.qq-total-progress-bar {
  height: 25px;
  border-radius: 9px;
}

.qq-total-progress-bar-container {
  margin: 9px;
}

INPUT.qq-edit-filename {
  position: absolute;
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.qq-upload-file.qq-editable {
  cursor: pointer;
}

.qq-edit-filename-icon.qq-editable {
  display: inline-block;
  cursor: pointer;
}

INPUT.qq-edit-filename.qq-editing {
  position: static;
  margin-top: -5px;
  margin-right: 10px;
  margin-bottom: -5px;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.qq-edit-filename-icon {
  display: none;
  background: url("../images/fineuploader/edit.gif");
  width: 15px;
  height: 15px;
  vertical-align: text-bottom;
  margin-right: 5px;
}

.qq-hide {
  display: none;
}

/* <dialog> element styles */
.qq-uploader DIALOG {
  display: none;
}

.qq-uploader DIALOG[open] {
  display: block;
}

.qq-uploader DIALOG {
  display: none;
}

.qq-uploader DIALOG[open] {
  display: block;
}

.qq-uploader DIALOG .qq-dialog-buttons {
  text-align: center;
  padding-top: 10px;
}

.qq-uploader DIALOG .qq-dialog-buttons BUTTON {
  margin-left: 5px;
  margin-right: 5px;
}

.qq-uploader DIALOG .qq-dialog-message-selector {
  padding-bottom: 10px;
}

.qq-uploader DIALOG::backdrop {
  background-color: rgba(0, 0, 0, 0.7);
}

.jq-ry-container {
  position: relative;
  padding: 0 5px;
  line-height: 0;
  display: block;
  cursor: pointer;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  direction: ltr;
}
.jq-ry-container[readonly=readonly] {
  cursor: default;
}
.jq-ry-container > .jq-ry-group-wrapper {
  position: relative;
  width: 100%;
}
.jq-ry-container > .jq-ry-group-wrapper > .jq-ry-group {
  position: relative;
  line-height: 0;
  z-index: 10;
  white-space: nowrap;
}
.jq-ry-container > .jq-ry-group-wrapper > .jq-ry-group > svg {
  display: inline-block;
}
.jq-ry-container > .jq-ry-group-wrapper > .jq-ry-group.jq-ry-rated-group {
  width: 0;
  z-index: 11;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

html.lb-disable-scrolling {
  overflow: hidden;
  /* Position fixed required for iOS. Just putting overflow: hidden; on the body is not enough. */
  position: fixed;
  height: 100vh;
  width: 100vw;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;
  /* Image border */
  border: 4px solid white;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../images/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==");
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../images/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../images/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../images/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

html {
  height: 100%;
  padding: 0;
  margin: 0;
}

body {
  min-height: 100%;
  padding: 0;
  margin: 0;
  font-family: "Lato", Arial, Helvetica, Sans serif;
  font-size: 14px;
  text-rendering: optimizeLegibility;
  background-color: #ffffff;
  color: #211d22;
}
body.nav-open, body.search-open {
  overflow-y: hidden;
}

.wrapper {
  position: relative;
  width: 97%;
  max-width: 1392px;
  min-width: 319px;
  padding-left: 6px;
  padding-right: 6px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1039px) {
  .wrapper {
    width: 100%;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -6px;
  margin-left: -6px;
}

header.row {
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.col {
  padding-left: 6px;
  padding-right: 6px;
  position: relative;
  flex: 0 0 100%;
  max-width: 100%;
}
.col.-full {
  max-width: 100%;
}
.col.-half {
  max-width: 50%;
}

.bg-gray {
  background-color: #f2f2f2;
}

.bg-purple {
  background-color: #361042;
  color: #f7dcdc;
}

.bg-light-1 {
  background-color: #fbf7f0;
}
.header-sec + .bg-light-1 {
  padding-top: 50px;
}

a {
  color: #361042;
  text-decoration: none;
  outline: 0;
  outline-style: none;
  transition: all 0.3s ease 0s;
}
a:focus, a:active {
  outline: 0;
  outline-style: none;
  box-shadow: none;
}
a:hover {
  color: #f54da3;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  background-color: transparent;
  padding: 0;
  margin: 0;
  border: 0 none;
  outline: 0;
  outline-style: none;
  font-family: "Lato", Arial, Helvetica, Sans serif;
  cursor: pointer;
}
button:focus, button:active {
  outline: 0;
  outline-style: none;
  box-shadow: none;
}

.btn {
  border: 0 none;
  padding: 0 20px;
  margin: 0;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer;
  text-align: center;
  color: #211d22;
  transition: none;
  outline: 0;
  outline-style: none;
  transition: all 0.3s ease 0s;
}
.btn:focus, .btn:active {
  outline: 0;
  outline-style: none;
  box-shadow: none;
}
.btn.btn-default {
  background-color: #f54da3;
  color: #ffffff;
}
.btn.btn-default:hover {
  background-color: #d00c70;
  color: #ffffff;
}
.btn.btn-dropdown {
  color: #361042;
  background-color: transparent;
}
.btn.btn-dropdown .caret {
  color: #f54da3;
  vertical-align: middle;
  font-size: 15px;
  margin-top: -2px;
}
.show .btn.btn-dropdown .caret {
  color: #f54da3;
}
.btn.btn-dropdown:hover {
  color: #f54da3;
}
.btn.btn-header {
  color: #361042;
  border: 1px solid #f54da3;
}
.btn.btn-header .svg-inline--fa {
  color: #f54da3;
  margin-right: 3px;
}
.btn.btn-pink {
  background-color: #f54da3;
  color: #ffffff;
}
.btn.btn-pink:hover {
  background-color: #f21d8a;
  color: #ffffff;
}
.btn.btn-white {
  background-color: #ffffff;
  color: #f54da3;
  border: 1px solid #f54da3;
  height: 40px;
  line-height: 38px;
}
.btn.btn-white:hover {
  background-color: #f54da3;
  color: #ffffff;
}
.btn.btn-cookie {
  height: 45px;
  line-height: 43px;
  padding: 0 30px;
  border: 1px solid #f54da3;
  border-radius: 5px;
  color: #f54da3;
  margin-bottom: 10px;
}
.btn.btn-cookie:hover {
  background-color: #f54da3;
  color: #ffffff;
}
.btn.btn-back {
  height: 39px;
  border: 1px solid #712f85;
  border-radius: 7px;
  background-color: transparent;
  color: #712f85;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  width: 230px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
.btn.btn-back .line {
  height: 1px;
  background-color: #f54da3;
  flex: 0 0 20px;
}
.btn.btn-back .sub-label {
  flex: 0 0 120px;
  white-space: normal;
  line-height: 1.2;
  text-align: right;
}
.btn.btn-back:hover {
  color: #f54da3;
  border-color: #f54da3;
}
.btn.btn-border {
  height: 40px;
  line-height: 38px;
  border: 1px solid #f54da3;
  color: #f54da3;
  background-color: transparent;
}
.btn.btn-border:hover {
  color: #ffffff;
  background-color: #f54da3;
}
.btn.btn-simple {
  background-color: transparent;
  color: #f54da3;
  font-weight: 700;
}
.btn.btn-simple:hover {
  color: #d00c70;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  list-style-image: none;
}
ul.inline-list {
  font-size: 0;
}
ul.inline-list li {
  display: inline-block;
  font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Lato", Arial, Helvetica, Sans serif;
  font-size: 27px;
  font-weight: 400;
  display: block;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  h1, h2, h3, h4, h5, h6 {
    font-size: 36px;
  }
}

.bold {
  font-weight: 700;
}

.highlight {
  color: #f54da3;
}

[data-mb=drop] {
  position: relative;
}
.active [data-mb=drop]::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 19px;
  z-index: 11;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 16px 15px;
  border-color: transparent transparent #f7dcdc transparent;
}

.dropdown-menu {
  border-radius: 0;
  background-color: #361042;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
}
.dropdown-menu a {
  padding: 0 10px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  display: block;
  text-transform: uppercase;
}
.dropdown-menu a:hover {
  background-color: #f54da3;
}
.dropdown-menu.dropdown-menu-right a {
  text-align: right;
}

.tabs-nav {
  display: flex;
}
.tabs-nav li {
  flex: 0 0 auto;
}
.tabs-nav li a {
  font-size: 15px;
  color: #7e7e7e;
  padding: 0 10px;
  text-align: center;
}
.tabs-nav li a .sub-label {
  vertical-align: middle;
}
.tabs-nav li a.active, .tabs-nav li a:hover {
  color: #ffffff;
}
.tabs-nav li a.active .icon-circle, .tabs-nav li a:hover .icon-circle {
  color: #f54da3;
  border-color: #f54da3;
}

.static-col {
  flex-basis: 100%;
}
.static-col p {
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 10px;
}
.static-col h1, .static-col h2, .static-col h3, .static-col h4, .static-col h5, .static-col h6 {
  color: #7e7e7e;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 15px;
}
.static-col ul li {
  position: relative;
  padding-left: 25px;
  height: 34px;
  line-height: 34px;
}
.static-col ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 10px;
  width: 10px;
  background-color: #f54da3;
}

.alert, .messages, .notification {
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  clear: both;
  font-size: 15px;
  width: 100%;
}
.alert.info, .messages.info, .notification.info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
.alert.alert, .messages.alert, .notification.alert {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
.alert.error, .messages.error, .notification.error {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
.alert.success, .messages.success, .notification.success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
.alert p, .messages p, .notification p {
  margin: 0;
}

.tab-wrapper {
  display: none;
  flex-basis: 100%;
}
.tab-wrapper.active {
  display: block;
}

table {
  width: 100%;
  margin-bottom: 10px;
}
table tr {
  border-bottom: 1px solid #f2f2f2;
}
table th {
  font-weight: 600;
  padding: 10px;
}
table td {
  padding: 10px;
  font-size: 15px;
}

.simple-list li.active a {
  color: #f54da3;
  font-weight: 500;
}

iframe {
  border: 0 none;
}

.desktop.-show {
  display: none;
}
@media (min-width: 1040px) {
  .desktop.-show {
    display: block;
  }
}
.desktop.-hide {
  display: block;
}
@media (min-width: 1040px) {
  .desktop.-hide {
    display: none;
  }
}

.tabs-nav li a {
  display: block;
  font-size: 14px;
  height: 34px;
  line-height: 34px;
  padding: 0 15px;
  position: relative;
  color: #ffffff;
  text-transform: uppercase;
}
.tabs-nav li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #161616;
  transition: height 0.3s ease 0s, background-color 0.3s ease 0s;
  height: 0;
}
.tabs-nav li a.active::after, .tabs-nav li a:hover::after {
  height: 3px;
  background-color: #f54da3;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

::selection {
  color: #ffffff;
  background-color: rgba(245, 77, 163, 0.9);
}

button.btn-selectpicker,
button.btn-selectpicker.form-control,
input[type=text],
input[type=text].form-control,
input[type=number],
input[type=number].form-control,
input[type=search],
input[type=search].form-control,
input[type=password],
input[type=password].form-control,
input[type=email],
input[type=email].form-control,
input[type=color],
input[type=color].form-control,
select,
select.form-control,
textarea,
textarea.form-control {
  width: 100%;
  padding: 0 10px;
  border-radius: 0;
  height: 45px;
  line-height: 44px;
  border-style: solid;
  border-color: #f54da3;
  border-width: 0 0 1px 0;
  background-color: transparent;
  color: #211d22;
  font-size: 14px;
  outline: 0;
  outline-style: none;
}
button.btn-selectpicker:focus, button.btn-selectpicker:active,
button.btn-selectpicker.form-control:focus,
button.btn-selectpicker.form-control:active,
input[type=text]:focus,
input[type=text]:active,
input[type=text].form-control:focus,
input[type=text].form-control:active,
input[type=number]:focus,
input[type=number]:active,
input[type=number].form-control:focus,
input[type=number].form-control:active,
input[type=search]:focus,
input[type=search]:active,
input[type=search].form-control:focus,
input[type=search].form-control:active,
input[type=password]:focus,
input[type=password]:active,
input[type=password].form-control:focus,
input[type=password].form-control:active,
input[type=email]:focus,
input[type=email]:active,
input[type=email].form-control:focus,
input[type=email].form-control:active,
input[type=color]:focus,
input[type=color]:active,
input[type=color].form-control:focus,
input[type=color].form-control:active,
select:focus,
select:active,
select.form-control:focus,
select.form-control:active,
textarea:focus,
textarea:active,
textarea.form-control:focus,
textarea.form-control:active {
  outline: 0;
  outline-style: none;
  box-shadow: none;
}
button.btn-selectpicker:-moz-placeholder,
button.btn-selectpicker.form-control:-moz-placeholder,
input[type=text]:-moz-placeholder,
input[type=text].form-control:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=number].form-control:-moz-placeholder,
input[type=search]:-moz-placeholder,
input[type=search].form-control:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=password].form-control:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=email].form-control:-moz-placeholder,
input[type=color]:-moz-placeholder,
input[type=color].form-control:-moz-placeholder,
select:-moz-placeholder,
select.form-control:-moz-placeholder,
textarea:-moz-placeholder,
textarea.form-control:-moz-placeholder {
  opacity: 1;
  color: #787578;
}
button.btn-selectpicker::-moz-placeholder,
button.btn-selectpicker.form-control::-moz-placeholder,
input[type=text]::-moz-placeholder,
input[type=text].form-control::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=number].form-control::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=search].form-control::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=password].form-control::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=email].form-control::-moz-placeholder,
input[type=color]::-moz-placeholder,
input[type=color].form-control::-moz-placeholder,
select::-moz-placeholder,
select.form-control::-moz-placeholder,
textarea::-moz-placeholder,
textarea.form-control::-moz-placeholder {
  opacity: 1;
  color: #787578;
}
button.btn-selectpicker:-ms-input-placeholder,
button.btn-selectpicker.form-control:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder,
input[type=text].form-control:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=number].form-control:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=search].form-control:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=password].form-control:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=email].form-control:-ms-input-placeholder,
input[type=color]:-ms-input-placeholder,
input[type=color].form-control:-ms-input-placeholder,
select:-ms-input-placeholder,
select.form-control:-ms-input-placeholder,
textarea:-ms-input-placeholder,
textarea.form-control:-ms-input-placeholder {
  opacity: 1;
  color: #787578;
}
button.btn-selectpicker::-webkit-input-placeholder,
button.btn-selectpicker.form-control::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
input[type=text].form-control::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=number].form-control::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=search].form-control::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=password].form-control::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=email].form-control::-webkit-input-placeholder,
input[type=color]::-webkit-input-placeholder,
input[type=color].form-control::-webkit-input-placeholder,
select::-webkit-input-placeholder,
select.form-control::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
textarea.form-control::-webkit-input-placeholder {
  opacity: 1;
  color: #787578;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button,
input[type=number].form-control::-webkit-inner-spin-button,
input[type=number].form-control::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

textarea,
textarea.form-control {
  height: auto;
  min-height: 120px;
  resize: vertical;
  line-height: 1.2;
  padding: 10px;
  border-width: 1px;
  border-radius: 5px;
}
textarea.-small,
textarea.form-control.-small {
  min-height: 45px;
  border-width: 0 0 1px 0;
  border-radius: 0;
  padding: 14px 10px;
  display: block;
  max-width: 100%;
}

select[multiple],
select[multiple].form-control {
  height: 150px;
}

input.hidden-field {
  display: none;
}

.form-col form,
.form-col .pseudo-form {
  display: flex;
  flex-flow: row wrap;
  max-width: 700px;
  margin: 0 auto;
}
.form-col form > .row,
.form-col .pseudo-form > .row {
  flex-basis: 100%;
}

.form-block.-edit-profile {
  display: flex;
  width: 100%;
}

.form-item {
  flex: 0 1 auto;
  margin-bottom: 15px;
  position: relative;
}
.form-item.-full {
  flex-basis: 100%;
}
.form-item.-half {
  flex-basis: 50%;
}
.form-item.-link {
  flex-basis: 100%;
  text-align: center;
}
.form-item.-link a {
  display: block;
  color: #f54da3;
  font-weight: 700;
  font-size: 13px;
}
.form-item.-link a:hover {
  color: #f87dbc;
}
.form-item.-link a + a, .form-item.-link a + .btn {
  margin-top: 10px;
}
.form-item.-actions {
  flex-basis: 100%;
  margin-bottom: 0;
  font-size: 0;
}
.form-item.-actions .btn {
  font-size: 13px;
  height: 40px;
  line-height: 40px;
}
.form-item.-actions .btn + .btn {
  margin-left: 10px;
}
.form-item > label, .form-item:not(.-smallradio) > .label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #211d22;
  line-height: 1;
  text-transform: uppercase;
}
.form-item > label .sub-label, .form-item > .label .sub-label {
  text-transform: none;
  color: #f54da3;
  padding: 0 5px;
}
.form-item > label.-tip, .form-item > .label.-tip {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
}

.payment-form-items-col input[type=text],
.payment-form-items-col input[type=number],
.payment-form-items-col > label,
.payment-form-items-col > .label {
  max-width: 100% !important;
}
@media (min-width: 960px) {
  .payment-form-items-col input[type=text],
.payment-form-items-col input[type=number],
.payment-form-items-col > label,
.payment-form-items-col > .label {
    max-width: 280px !important;
  }
}
.payment-form-items-col.-half {
  max-width: 100% !important;
}
@media (min-width: 600px) {
  .payment-form-items-col.-half {
    max-width: 50% !important;
  }
}
.payment-form-items-col.-third {
  flex-basis: 100%;
}
@media (min-width: 364px) {
  .payment-form-items-col.-third {
    flex-basis: 50% !important;
  }
}
@media (min-width: 1040px) {
  .payment-form-items-col.-third {
    flex-basis: 33.333334%;
  }
}

.new-message-col.-third {
  flex-basis: 100% !important;
}
.new-message-col.-third button.btn-selectpicker,
.new-message-col.-third button.btn-selectpicker.form-control,
.new-message-col.-third input[type=text],
.new-message-col.-third input[type=text].form-control,
.new-message-col.-third input[type=number],
.new-message-col.-third input[type=number].form-control,
.new-message-col.-third input[type=search],
.new-message-col.-third input[type=search].form-control,
.new-message-col.-third input[type=password],
.new-message-col.-third input[type=password].form-control,
.new-message-col.-third input[type=email],
.new-message-col.-third input[type=email].form-control,
.new-message-col.-third input[type=color],
.new-message-col.-third input[type=color].form-control,
.new-message-col.-third select,
.new-message-col.-third select.form-control,
.new-message-col.-third textarea,
.new-message-col.-third textarea.form-control {
  max-width: 100% !important;
}
@media (min-width: 1040px) {
  .new-message-col.-third button.btn-selectpicker,
.new-message-col.-third button.btn-selectpicker.form-control,
.new-message-col.-third input[type=text],
.new-message-col.-third input[type=text].form-control,
.new-message-col.-third input[type=number],
.new-message-col.-third input[type=number].form-control,
.new-message-col.-third input[type=search],
.new-message-col.-third input[type=search].form-control,
.new-message-col.-third input[type=password],
.new-message-col.-third input[type=password].form-control,
.new-message-col.-third input[type=email],
.new-message-col.-third input[type=email].form-control,
.new-message-col.-third input[type=color],
.new-message-col.-third input[type=color].form-control,
.new-message-col.-third select,
.new-message-col.-third select.form-control,
.new-message-col.-third textarea,
.new-message-col.-third textarea.form-control {
    max-width: 280px !important;
  }
}
.new-message-col.-third > label,
.new-message-col.-third > .label {
  max-width: 100% !important;
}
@media (min-width: 600px) {
  .new-message-col.-third {
    flex-basis: 50% !important;
  }
}

.add-offer-items-col.-third, .payment-form-items-col.-third {
  flex-basis: 100% !important;
}
.add-offer-items-col.-third button.btn-selectpicker,
.add-offer-items-col.-third button.btn-selectpicker.form-control,
.add-offer-items-col.-third input[type=text],
.add-offer-items-col.-third input[type=text].form-control,
.add-offer-items-col.-third input[type=number],
.add-offer-items-col.-third input[type=number].form-control,
.add-offer-items-col.-third input[type=search],
.add-offer-items-col.-third input[type=search].form-control,
.add-offer-items-col.-third input[type=password],
.add-offer-items-col.-third input[type=password].form-control,
.add-offer-items-col.-third input[type=email],
.add-offer-items-col.-third input[type=email].form-control,
.add-offer-items-col.-third input[type=color],
.add-offer-items-col.-third input[type=color].form-control,
.add-offer-items-col.-third select,
.add-offer-items-col.-third select.form-control,
.add-offer-items-col.-third textarea,
.add-offer-items-col.-third textarea.form-control, .payment-form-items-col.-third button.btn-selectpicker,
.payment-form-items-col.-third button.btn-selectpicker.form-control,
.payment-form-items-col.-third input[type=text],
.payment-form-items-col.-third input[type=text].form-control,
.payment-form-items-col.-third input[type=number],
.payment-form-items-col.-third input[type=number].form-control,
.payment-form-items-col.-third input[type=search],
.payment-form-items-col.-third input[type=search].form-control,
.payment-form-items-col.-third input[type=password],
.payment-form-items-col.-third input[type=password].form-control,
.payment-form-items-col.-third input[type=email],
.payment-form-items-col.-third input[type=email].form-control,
.payment-form-items-col.-third input[type=color],
.payment-form-items-col.-third input[type=color].form-control,
.payment-form-items-col.-third select,
.payment-form-items-col.-third select.form-control,
.payment-form-items-col.-third textarea,
.payment-form-items-col.-third textarea.form-control {
  max-width: 100% !important;
}
@media (min-width: 1040px) {
  .add-offer-items-col.-third button.btn-selectpicker,
.add-offer-items-col.-third button.btn-selectpicker.form-control,
.add-offer-items-col.-third input[type=text],
.add-offer-items-col.-third input[type=text].form-control,
.add-offer-items-col.-third input[type=number],
.add-offer-items-col.-third input[type=number].form-control,
.add-offer-items-col.-third input[type=search],
.add-offer-items-col.-third input[type=search].form-control,
.add-offer-items-col.-third input[type=password],
.add-offer-items-col.-third input[type=password].form-control,
.add-offer-items-col.-third input[type=email],
.add-offer-items-col.-third input[type=email].form-control,
.add-offer-items-col.-third input[type=color],
.add-offer-items-col.-third input[type=color].form-control,
.add-offer-items-col.-third select,
.add-offer-items-col.-third select.form-control,
.add-offer-items-col.-third textarea,
.add-offer-items-col.-third textarea.form-control, .payment-form-items-col.-third button.btn-selectpicker,
.payment-form-items-col.-third button.btn-selectpicker.form-control,
.payment-form-items-col.-third input[type=text],
.payment-form-items-col.-third input[type=text].form-control,
.payment-form-items-col.-third input[type=number],
.payment-form-items-col.-third input[type=number].form-control,
.payment-form-items-col.-third input[type=search],
.payment-form-items-col.-third input[type=search].form-control,
.payment-form-items-col.-third input[type=password],
.payment-form-items-col.-third input[type=password].form-control,
.payment-form-items-col.-third input[type=email],
.payment-form-items-col.-third input[type=email].form-control,
.payment-form-items-col.-third input[type=color],
.payment-form-items-col.-third input[type=color].form-control,
.payment-form-items-col.-third select,
.payment-form-items-col.-third select.form-control,
.payment-form-items-col.-third textarea,
.payment-form-items-col.-third textarea.form-control {
    max-width: 280px !important;
  }
}
.add-offer-items-col.-third .bootstrap-select.btn-group > .dropdown-toggle, .payment-form-items-col.-third .bootstrap-select.btn-group > .dropdown-toggle {
  font-size: 14px;
}
.add-offer-items-col.-third > label,
.add-offer-items-col.-third > .label, .payment-form-items-col.-third > label,
.payment-form-items-col.-third > .label {
  max-width: 100% !important;
}
@media (min-width: 600px) {
  .add-offer-items-col.-third, .payment-form-items-col.-third {
    flex-basis: 50% !important;
  }
}
@media (min-width: 1040px) {
  .add-offer-items-col.-third, .payment-form-items-col.-third {
    flex-basis: 33.333334% !important;
  }
}

.offer-box .form-box .form-items-col {
  flex: 0 1 auto;
}
.offer-box .form-box .form-items-col.-two-third, .offer-box .form-box .form-items-col.-third {
  padding: 30px;
}
@media (min-width: 1000px) {
  .offer-box .form-box .form-items-col.-two-third, .offer-box .form-box .form-items-col.-third {
    flex-basis: 66.66%;
  }
}
.offer-box .form-box .form-items-col.-two-third.-third, .offer-box .form-box .form-items-col.-third.-third {
  flex-basis: 100%;
}
@media (min-width: 1000px) {
  .offer-box .form-box .form-items-col.-two-third.-third, .offer-box .form-box .form-items-col.-third.-third {
    flex-basis: 33.33%;
  }
}

.form-items-col {
  flex: 0 1 auto;
  position: relative;
}
.form-items-col.-full {
  flex-basis: 100%;
}
.form-items-col.-half {
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .form-items-col.-half {
    flex-basis: 50%;
  }
}
.form-items-col.-third {
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .form-items-col.-third {
    flex-basis: 50%;
  }
}
@media (min-width: 1040px) {
  .form-items-col.-third {
    flex-basis: 33.333334%;
  }
}
.form-items-col.-two-third {
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .form-items-col.-two-third {
    flex-basis: 50%;
  }
}
@media (min-width: 1040px) {
  .form-items-col.-two-third {
    flex-basis: 66.666667%;
  }
}
.form-items-col.-base-470 {
  flex-basis: 470px;
}
.form-items-col.-anons-text {
  flex-basis: 100%;
}
.form-items-col > label,
.form-items-col > .label {
  font-size: 16px;
  margin-bottom: 30px;
}
.form-items-col .form-item {
  margin-bottom: 40px;
}
.form-items-col .form-item button.btn-selectpicker,
.form-items-col .form-item button.btn-selectpicker.form-control,
.form-items-col .form-item input[type=text],
.form-items-col .form-item input[type=text].form-control,
.form-items-col .form-item input[type=number],
.form-items-col .form-item input[type=number].form-control,
.form-items-col .form-item input[type=search],
.form-items-col .form-item input[type=search].form-control,
.form-items-col .form-item input[type=password],
.form-items-col .form-item input[type=password].form-control,
.form-items-col .form-item input[type=email],
.form-items-col .form-item input[type=email].form-control,
.form-items-col .form-item input[type=color],
.form-items-col .form-item input[type=color].form-control,
.form-items-col .form-item select,
.form-items-col .form-item select.form-control,
.form-items-col .form-item textarea,
.form-items-col .form-item textarea.form-control {
  max-width: 280px;
}
.form-items-col .form-item .bootstrap-select.btn-group > .dropdown-toggle {
  font-size: 14px;
}
.form-items-col .form-item > label,
.form-items-col .form-item > .label {
  max-width: 280px;
}

.captcha {
  display: block;
  position: relative;
}
.captcha img {
  position: absolute;
  top: 0;
  left: 0;
  height: 34px;
  width: auto;
}
input[type=text].form-control.captcha-input {
  padding-left: 120px;
}

.radio {
  display: block;
}
.radio label {
  position: relative;
  margin-bottom: 0;
}
.radio label input[type=radio] {
  position: absolute;
  width: 0;
  height: 0;
  visibility: hidden;
}
.radio label .sub-label {
  position: relative;
  padding-left: 40px;
  display: block;
  line-height: 30px;
}
.radio label .sub-label::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border: 1px solid #f54da3;
  border-radius: 50%;
}
.radio label .sub-label::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  background-color: #522061;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease 0s;
}
.radio label input[type=checkbox]:checked + .sub-label::after,
.radio label input[type=radio]:checked + .sub-label::after {
  opacity: 1;
}
.radio label a {
  color: #f54da3;
}
.radio label a:hover {
  color: #f87dbc;
}

.checkbox {
  display: block;
}
.checkbox .tip-box {
  margin-left: 5px;
}
.checkbox label {
  position: relative;
  margin-bottom: 0;
}
.checkbox label input[type=checkbox] {
  position: absolute;
  width: 0;
  height: 0;
  visibility: hidden;
}
.checkbox label .sub-label {
  position: relative;
  padding-left: 40px;
  display: block;
}
.checkbox label .sub-label::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border: 1px solid #f54da3;
  border-radius: 5px;
}
.checkbox label .sub-label::after {
  content: url("../images/icon-checked.svg");
  display: block;
  position: absolute;
  top: 53%;
  left: 7px;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease 0s;
}
.checkbox label input[type=checkbox]:checked + .sub-label::after,
.checkbox label input[type=radio]:checked + .sub-label::after {
  opacity: 1;
}
.checkbox label a {
  color: #f54da3;
}
.checkbox label a:hover {
  color: #f87dbc;
}

.bootstrap-select.btn-group select {
  display: none !important;
}
.bootstrap-select.btn-group > .dropdown-toggle {
  position: relative;
  font-size: 20px;
}
.bootstrap-select.btn-group > .dropdown-toggle .caret {
  color: #f54da3;
}
.bootstrap-select.btn-group .dropdown-menu {
  background-color: #ffffff;
}
.bootstrap-select.btn-group .dropdown-menu.inner {
  display: block;
  max-height: 299px !important;
}
.bootstrap-select.btn-group .dropdown-menu.show {
  display: block;
}
.bootstrap-select.btn-group .dropdown-menu a {
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  text-transform: none;
}
.bootstrap-select.btn-group .dropdown-menu a:hover {
  color: #333333;
  background-color: #f2f2f2;
}

.input-tooltip {
  display: block;
  position: relative;
}
.input-tooltip .info-tip {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #f54da3;
  color: #361042;
  font-family: "Lato", Arial, Helvetica, Sans serif;
  font-size: 14px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  cursor: pointer;
}
.input-tooltip input,
.input-tooltip select {
  padding-right: 28px;
}

input.light-text {
  color: #eee;
}

.top-bar {
  display: none;
  position: relative;
  z-index: 51;
}
@media (min-width: 768px) {
  .top-bar {
    display: block;
  }
}
@media (min-width: 1040px) {
  .top-bar {
    padding: 10px 0;
  }
}
.top-bar .row {
  justify-content: flex-end;
}
@media (min-width: 1040px) {
  .top-bar .row {
    justify-content: space-between;
  }
}

.top-links-col {
  flex: 0 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
}
.top-links-col > a:not(.top-link) {
  display: block;
  margin-right: 20px;
}
@media (min-width: 1200px) {
  .top-links-col > a:not(.top-link) {
    margin-right: 50px;
  }
}
@media (max-width: 1039px) {
  .top-links-col.-top-links {
    display: none;
  }
}

a .icon-holder {
  color: #f54da3;
  margin-right: 5px;
/*  position: relative ;*/
  display: inline-block;
  vertical-align: middle;
  width: 28px;
}
@media (min-width: 1200px) {
  a .icon-holder {
    margin-right: 15px;
  }
}
a .icon-holder svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.top-link {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
@media (min-width: 1040px) {
  .top-link + .top-link {
    margin-left: 15px;
  }
}
@media (min-width: 1200px) {
  .top-link + .top-link {
    margin-left: 25px;
  }
}
.top-link .sub-label {
  display: inline-block;
  vertical-align: middle;
}

.ucp-col {
  flex-basis: auto;
}
@media (max-width: 479px) {
  .ucp-col {
    position: static;
  }
}
.ucp-col .dropdown-menu {
  margin: 0;
  border: 0 none;
}
.ucp-col .dropdown-menu a {
  height: 24px;
  line-height: 24px;
  font-size: 13px;
}

.btn-ucp-trigger {
  height: 32px;
  line-height: 32px;
  width: 32px;
  background-color: #712f85;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  display: block;
  padding: 0;
}
@media (min-width: 900px) {
  .btn-ucp-trigger {
    display: none;
  }
}
.btn-ucp-trigger svg {
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
}

.ucp-list {
  font-size: 0;
}
@media (max-width: 900px) {
  .ucp-list {
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #f7dcdc;
    box-shadow: 0 2px 4px rgba(54, 16, 66, 0.25);
    width: 320px;
    padding: 35px 25px;
    margin-top: 30px;
    z-index: 2;
    display: none;
  }
  .active .ucp-list {
    display: block;
  }
}
@media (max-width: 479px) {
  .ucp-list {
    left: 0;
    width: auto;
    margin-top: 20px;
  }
}
.ucp-list li {
  display: block;
}
@media (max-width: 767px) {
  .ucp-list li:not(:last-child) {
    margin-bottom: 25px;
  }
}
@media (min-width: 768px) {
  .ucp-list li {
    display: inline-block;
    vertical-align: top;
  }
  .ucp-list li + li {
    margin-left: 15px;
  }
}

.btn.btn-add {
  border: 1px solid #f2c7c7;
  height: 50px;
  line-height: 48px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.15px;
  text-transform: uppercase;
  padding: 0;
  border-radius: 5px;
  background-color: #ffffff;
  text-align: left;
  display: block;
}
@media (min-width: 900px) {
  .btn.btn-add {
    border-color: #f7dcdc;
    display: inline-block;
  }
}
@media (min-width: 1040px) {
  .btn.btn-add {
    height: 58px;
    line-height: 56px;
  }
}
.btn.btn-add .icon-holder {
  width: auto;
  padding: 0 10px;
  margin-right: 0;
  font-size: 18px;
  height: 48px;
  line-height: 48px;
  width: 48px;
  border-right: 1px solid #f2c7c7;
  transition: all 0.3s ease 0s;
  vertical-align: top;
}
@media (min-width: 768px) {
  .btn.btn-add .icon-holder {
    border-color: #f7dcdc;
  }
}
@media (min-width: 1040px) {
  .btn.btn-add .icon-holder {
    height: 56px;
    line-height: 56px;
    width: 56px;
  }
}
.btn.btn-add .btn-label {
  padding: 0 10px;
}
@media (min-width: 768px) {
  .btn.btn-add .btn-label {
    padding: 0 15px;
  }
}
@media (min-width: 1040px) {
  .btn.btn-add .btn-label {
    padding: 0 20px;
  }
}
.btn.btn-add:hover {
  background-color: #f54da3;
  color: #ffffff;
}
.btn.btn-add:hover .icon-holder {
  color: #ffffff;
}

.btn.btn-login {
  display: block;
  height: 50px;
  line-height: 50px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  background: #f54da3;
  background: -moz-linear-gradient(-45deg, #f54da3 0%, #361042 100%);
  background: -webkit-linear-gradient(-45deg, #f54da3 0%, #361042 100%);
  background: linear-gradient(135deg, #f54da3 0%, #361042 100%);
}
.btn.btn-login:hover {
  background: #dc348a;
  background: -moz-linear-gradient(-45deg, #dc348a 0%, #1d0029 100%);
  background: -webkit-linear-gradient(-45deg, #dc348a 0%, #1d0029 100%);
  background: linear-gradient(135deg, #dc348a 0%, #1d0029 100%);
}
@media (min-width: 768px) {
  .btn.btn-login {
    display: inline-block;
  }
}
@media (min-width: 1040px) {
  .btn.btn-login {
    height: 58px;
    line-height: 58px;
  }
}
@media (max-width: 767px) {
  .btn.btn-login {
    padding: 0 12px;
  }
}

.btn.btn-dropdown.btn-ucp {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  height: 27px;
  line-height: 27px;
}
.btn.btn-dropdown.btn-ucp .avatar {
  position: relative;
  overflow: hidden;
  display: block;
  margin-right: 5px;
  height: 21px;
  width: 21px;
  border-radius: 50%;
  border: 2px solid #f54da3;
  margin-top: -2px;
}
.btn.btn-dropdown.btn-ucp .avatar img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  max-width: none;
}
.btn.btn-dropdown.btn-ucp .svg-inline--fa {
  color: #f54da3;
}

.lang-box .btn-dropdown {
  font-size: 14px;
  padding: 0;
}
.lang-box .btn-dropdown .btn-label {
  display: inline-block;
  vertical-align: top;
  margin-right: 15px;
}
.lang-box .btn-dropdown .lang-flag {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.lang-box .btn-dropdown .lang-flag > img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  max-width: none;
}
.lang-box .lang-dropdown {
  margin-top: 0;
  min-width: 51px;
  border: 0 none;
}
.lang-box .lang-dropdown li.active a {
  background-color: #f21d8a;
}
.lang-box .lang-dropdown li a {
  font-size: 12px;
  text-align: center;
}
.lang-box .lang-dropdown li a:hover {
  background-color: #f54da3;
}

.main-header {
  position: relative;
  z-index: 50;
}
@media (max-width: 1039px) {
  .main-header {
    margin-bottom: 10px;
  }
}

.main-header > .wrapper > .row {
  align-items: center;
}
@media (min-width: 1040px) {
  .main-header > .wrapper > .row {
    justify-content: space-between;
  }
}

.logo-col {
  flex-basis: auto;
  display: flex;
  align-items: center;
}
@media (max-width: 1039px) {
  .logo-col {
    flex: 1 0 auto;
  }
}
.logo-col a {
  display: block;
  height: 50px;
  line-height: 50px;
  max-width: 114px;
}
@media (min-width: 768px) {
  .logo-col a {
    max-width: 183px;
  }
}
@media (min-width: 1040px) {
  .logo-col a {
    height: 73px;
    line-height: 73px;
  }
}
@media (min-width: 1040px) {
  .logo-col a img {
    width: 100%;
  }
}
@media (max-width: 1039px) {
  .logo-col a img {
    max-height: 100%;
    width: auto;
  }
}

.site-title-col {
  flex: 1 0 auto;
}
@media (max-width: 799px) {
  .site-title-col {
    order: -1;
    flex: 1 0 100%;
    margin-bottom: 10px;
    margin-top: -26px;
  }
}
@media (max-width: 767px) {
  .site-title-col {
    margin-top: 12px;
    text-align: center;
  }
}
.site-title-col h1 {
  display: block;
  color: #f54da3;
  font-size: 12px;
  letter-spacing: 0.12px;
}

.nav-col {
  position: static;
}
@media (min-width: 1040px) {
  .nav-col {
    flex-basis: 100%;
  }
}
@media (max-width: 1039px) {
  .nav-col {
    flex-basis: 0;
    padding: 0;
  }
  .nav-col .nav-inner-col {
    position: fixed;
    top: 110px;
    left: 0;
    width: 0;
    bottom: 0;
    z-index: 50;
    background-color: rgba(0, 0, 0, 0.6);
    transition: width 0.3s ease 0s;
  }
  .nav-open .nav-col .nav-inner-col {
    width: 100%;
  }
}

.main-nav {
  display: none;
  flex-flow: row nowrap;
  justify-content: center;
}
@media (min-width: 1040px) {
  .main-nav {
    display: flex;
  }
}
.main-nav .nav-elem {
  flex: 0 0 0;
  position: relative;
}
@media (max-width: 1039px) {
  .main-nav .nav-elem {
    display: flex;
    flex-flow: row wrap;
    flex: 0 0 auto;
  }
}
@media (min-width: 1040px) {
  .main-nav .nav-elem:hover > a {
    color: #f54da3;
  }
}
.main-nav .nav-elem.active > a {
  color: #f54da3;
}
.main-nav .nav-elem > a {
  display: block;
  position: relative;
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  color: #211d22;
}
@media (max-width: 1039px) {
  .main-nav .nav-elem > a {
    flex-grow: 1;
  }
}
@media (min-width: 1470px) {
  .main-nav .nav-elem > a {
    padding: 0 25px;
  }
}
@media (min-width: 1040px) {
  .main-nav .nav-elem > a {
    font-size: 20px;
    height: 65px;
    line-height: 65px;
  }
}
.main-nav .nav-elem > a .sub-label {
  display: inline-block;
}
.main-nav .nav-elem.-links {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f54da3;
}
.main-nav .nav-elem.-ucp-guest {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 20px;
  margin-bottom: 10px;
  border-bottom: 1px solid #f54da3;
}

.mobile-nav {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  width: 320px;
  height: 100%;
  background-color: #fbf7f0;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  left: -321px;
  transition: left 0.3s ease 0s;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 1040px) {
  .mobile-nav {
    display: none;
  }
}
.nav-open .mobile-nav {
  left: 0;
}
.mobile-nav > li > a {
  display: block;
  height: 45px;
  line-height: 45px;
  font-size: 20px;
  color: #712f85;
  padding: 0 25px;
}
.mobile-nav > li [data-mb=expand] {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-nav > li [data-mb=expand] .fa-caret-down {
  color: #f54da3;
  font-size: 15px;
}

.mobile-sub-nav {
  transition: height 0.3s ease 0s;
  overflow: hidden;
}
.mobile-sub-nav > .inner-nav {
  background-color: #ffffff;
  border-left: 5px solid #f54da3;
  padding: 15px 0;
}
.mobile-sub-nav a {
  display: block;
  padding: 0 20px;
  font-size: 16px;
  color: #211d22;
  height: 35px;
  line-height: 35px;
}

.search-sec {
  background-color: #fbf7f0;
  padding: 20px 0 30px;
}
@media (min-width: 768px) {
  .search-sec {
    padding: 20px 0 30px;
  }
}
.search-sec.-index {
  background-color: #e5a5a8;
  padding: 20px 0 30px;
}
@media (min-width: 768px) {
  .search-sec.-index {
    padding: 97px 0;
    background-image: url("../images/search-bg.jpg");
    background-size: auto;
    background-repeat: no-repeat;
    background-position: top;
  }

  .search-sec.-index .advansed-search{
    margin-bottom: -60px;
  }
}

.search-col {
  flex: 1 0 100%;
}

.search-header {
  display: block;
  margin-bottom: 10px;
  text-align: center;
  font-size: 27px;
  color: #211d22;
}
@media (min-width: 768px) {
  .search-header {
    font-size: 36px;
  }
}
.-index .search-header {
  color: #fbf7f0;
}

.offer-list-search-box, .offer-list-search-links {
  max-width: 610px !important;
}

.search-box {
  max-width: 980px;
  margin: 0 25px;
  background-color: #ffffff;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 35px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
@media (min-width: 480px) {
  .search-box {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) {
  .search-box {
    margin: 0 auto;
  }
}
.search-box .form-item,
.other-filters .form-item{
  padding: 0 15px;
  flex: 1 0 100%;
  min-width: 0;
}
@media (min-width: 480px) {
  .search-box .form-item {
    text-align: center;
  }
}
@media (min-width: 800px) {
  .search-box .form-item {
    flex-basis: auto;
    margin-bottom: 0;
  }
  .search-box .form-item.-submit {
    flex: 0 0 86px;
  }
}
.search-box .form-item.-radio,
.other-filters .form-item.-radio{
  display: flex;
  flex-flow: row nowrap;
}
@media (min-width: 480px) {
  .other-filters .form-item.-radio {
    align-items: center;
    justify-content: center;
  }
}

.other-filters .form-item.-smallradio{
  display: flex;
  flex-flow: row nowrap;
}

.other-filters .smallradio-filter {
  display: flex;
  margin-top: 20px;
  margin-right: 20px;
  margin-left: 15px;
}

@media (max-width: 799px) and (min-width: 480px) {
  .search-box .form-item.-radio,
  .other-filters .form-item.-radio{
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .search-box .form-item.-radio,
  .other-filters .form-item.-radio{
    flex-flow: column nowrap;
    margin-bottom: 0;
  }
}
.search-box .form-item.-radio .radio,
.other-filters .form-item.-radio .radio{
  margin-bottom: 20px;
}
.other-filters .form-item.-smallradio .radio + .radio{
  margin-left: 10px;
}
@media (min-width: 480px) {
  .search-box .form-item.-radio .radio,
  .other-filters .form-item.-radio .radio{
    margin-bottom: 0;
  }
}
@media (min-width: 480px) {
  .search-box .form-item.-radio .radio + .radio,
  .other-filters .form-item.-radio .radio + .radio,
  .other-filters .form-item.-smallradio .radio + .radio{
    margin-left: 30px;
  }
}
@media (max-width: 479px) {
  .search-box .form-item.-submit {
    margin-bottom: -40px;
    text-align: right;
  }
}
.search-box .btn.btn-search {
  height: 56px;
  line-height: 56px;
  width: 56px;
  text-align: center;
  background: #fb84d0;
  background: -moz-linear-gradient(-45deg, #fb84d0 0%, #ec3b96 100%);
  background: -webkit-linear-gradient(-45deg, #fb84d0 0%, #ec3b96 100%);
  background: linear-gradient(135deg, #fb84d0 0%, #ec3b96 100%);
  color: #ffffff;
  border-radius: 50%;
  font-size: 15px;
  padding: 0 10px;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}
.search-box .btn.btn-search:hover {
  box-shadow: 1px 1px 5px rgba(236, 59, 150, 0.5);
}
.search-box .btn.btn-search svg {
  vertical-align: middle;
  display: inline-block;
  margin-top: -5px;
}
.search-box .bootstrap-select.btn-group > .dropdown-toggle {
  padding-left: 0;
}

.search-links {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  max-width: 980px;
  margin: 10px auto 10px;
  padding: 0 25px;
}
@media (min-width: 480px) {
  .search-links {
    justify-content: flex-end;
    margin: 20px auto 0;
  }
}
@media (max-width: 480px) {
  .search-links a {
    display: none;
  }
}
.search-links > .sub-label {
  flex: 1 0 100%;
  margin-top: 0;
  text-align: center;
}
@media (min-width: 480px) {
  .search-links > .sub-label {
    margin-top: 0;
    text-align: left;
    flex: 1 0 0;
  }
}
.search-links > a {
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 700;
  color: #f54da3;
}
.search-links > a:hover {
  color: #d00c70;
}
@media (max-width: 479px) {
  .search-links > a {
    order: -1;
  }
}
.-index .search-links > a {
  color: #fbf7f0;
}
.-index .search-links > a:hover {
  color: #f54da3;
}
.search-links .mobile-trigger {
  display: block;
}
@media (min-width: 480px) {
  .search-links .mobile-trigger {
    display: none;
  }
}
.search-links .mobile-trigger [data-mb=expand] {
  display: inline-block;
  height: 21px;
  line-height: 21px;
}
.search-links .mobile-trigger [data-mb=expand] .icon-holder {
  border: 1px solid #f7dcdc;
  border-radius: 5px;
  height: 21px;
  line-height: 21px;
  width: 21px;
}
.search-links .mobile-trigger [data-mb=expand] .icon-holder svg {
  width: 7px;
}
.search-links .mobile-trigger [data-mb=expand] .sub-label {
  vertical-align: middle;
}

@media (min-width: 768px) {
  .offer-list-search-sec {
    padding: 40px 0 !important;
  }
}

.search-sep {
  display: none;
  height: 1px;
  background-color: #ffffff;
  margin-top: 20px;
  margin-bottom: 30px;
}
@media (min-width: 480px) {
  .search-sep {
    display: block;
  }
}

.search-fiters-col {
  display: flex;
  align-items: stretch;
  flex-flow: row wrap;
  overflow: hidden;
}
.search-fiters-col > .inner-col {
  display: block;
  max-width: 100%;
}

@media (max-width: 479px) {
  .search-fiters-col > .inner-col {
    padding-top: 20px;
    padding-bottom: 40px;
    position: relative;
  }
  .search-fiters-col > .inner-col::before {
    content: "";
    position: absolute;
    top: 40px;
    left: -6px;
    right: -6px;
    height: 1px;
    background-color: #ffffff;
  }
}

.search-fiters {
  display: flex;
  flex-flow: row wrap;
}
@media (max-width: 479px) {
  .search-fiters {
    padding: 0 10px;
  }
}
.search-fiters.-filters {
  flex: 1 0 100%;
  min-width: 0;
  align-items: center;
}
@media (min-width: 1040px) {
  .search-fiters.-filters {
    flex: 1 0 0;
  }
}
.search-fiters.-reset {
  flex: 1 0 100%;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 20px;
}
@media (min-width: 480px) {
  .search-fiters.-reset {
    justify-content: flex-end;
    margin-bottom: 20px;
  }

  .search-fiters.-reset a + a{
    margin-left: 20px;
  }
}
@media (min-width: 1040px) {
  .search-fiters.-reset {
    margin-top: 0;
    flex: 0 0 15%;
  }
}
.search-fiters.-reset a {
  font-weight: 700;
  color: #f54da3;
}
.search-fiters.-reset a:hover {
  color: #d00c70;
}
@media (min-width: 480px) {
  .search-fiters.-reset [data-mb=expand] {
    display: none;
  }
}
.search-fiters.-reset [data-mb=expand] .icon-holder {
  width: auto;
}

.rande-filter {
  flex: 1 0 100%;
  min-width: 0;
  max-width: 450px;
  flex-flow: row wrap;
  margin: 15px;
  display:flex;
}
@media (min-width: 480px) {
  .rande-filter {
    flex-wrap: nowrap;
  }
}
@media (min-width: 768px) {
  .rande-filter {
    flex: 1 0 auto;
  }
}
@media (max-width: 799px) {
  .rande-filter:nth-child(2) {
    padding-right: 0;
  }
}
.rande-filter .label {
  flex: 1 0 100%;
  margin-bottom: 15px;
}
@media (min-width: 480px) {
  .rande-filter .label {
    flex: 0 0 90px;
    margin-right: 15px;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .rande-filter .label {
    flex: 0 0 auto;
  }
}
.rande-filter .irs {
  flex: 1 0 0;
  min-width: 0;
}

.checkbox-filter {
  flex: 1 0 0;
  min-width: 0;
  margin-bottom: 20px;
  margin-top: 20px;

}
@media (max-width: 479px) {
  .checkbox-filter {
    flex: 1 0 100%;
    min-width: 0;
    margin-top: 20px;
  }
}

.category-filter {
  flex: 1 0 0;
  min-width: 0;
  margin-bottom: 20px;
  margin-right: 20px;
}

.keyword-filter {
  flex: 1 0 30%;
  min-width: 0;
  margin: 15px;

}

@media (max-width: 820px) {
  .keyword-filter {
    flex: 1 0 100%;
    min-width: 0;
    margin: 10px;
  }
}


.keyword-filter input[type=text] {
  height: 66px;
  line-height: 38px;
  background-color: transparent;
  border: 1px solid #f54da3;
  border-radius: 4px;
}
.keyword-filter input[type=text]:-moz-placeholder {
  opacity: 1;
  color: #211d22;
  opacity: 0.5;
}
.keyword-filter input[type=text]::-moz-placeholder {
  opacity: 1;
  color: #211d22;
  opacity: 0.5;
}
.keyword-filter input[type=text]:-ms-input-placeholder {
  opacity: 1;
  color: #211d22;
  opacity: 0.5;
}
.keyword-filter input[type=text]::-webkit-input-placeholder {
  opacity: 1;
  color: #211d22;
  opacity: 0.5;
}
@media (max-width: 479px) {
  .keyword-filter input[type=text] {
    padding: 0;
  }
}

.other-filters {
  flex: 1 0 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin-top: 5px;
  justify-content: center;
}

.other-filters .checkbox {
  flex: 1 0 100%;
  margin-top: 10px;
  margin-left: 15px;
}
@media (min-width: 480px) {
  .other-filters .checkbox {
    padding-left: 10px;
    flex: 0 0 auto;
  }
}

.trigger-col {
  flex: 0 0 0;
  display: flex;
  align-items: center;
}
@media (min-width: 1040px) {
  .trigger-col {
    display: none;
  }
}
.trigger-col .btn-trigger-nav {
  height: 45px;
  line-height: 43px;
  border-radius: 5px;
  border: 1px solid #f7dcdc;
  width: 45px;
  padding: 0;
}
.trigger-col .btn-trigger-nav .btn-label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  height: 24px;
  line-height: 24px;
  width: 30px;
  margin-top: 0;
}
.trigger-col .btn-trigger-nav span:not(.btn-label) {
  height: 4px;
  display: block;
  position: relative;
  width: 30px;
  background: #eb3a95;
  background: -moz-linear-gradient(left, #eb3a95 0%, #fb84d0 100%);
  background: -webkit-linear-gradient(left, #eb3a95 0%, #fb84d0 100%);
  background: linear-gradient(to right, #eb3a95 0%, #fb84d0 100%);
  border-radius: 20em;
}
.trigger-col .btn-trigger-nav span:not(.btn-label):nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: opacity 0.15s ease 0s;
  transition-delay: 0.15s;
}
.trigger-col .btn-trigger-nav span:not(.btn-label):first-child, .trigger-col .btn-trigger-nav span:not(.btn-label):last-child {
  content: "";
  height: 4px;
  display: block;
  width: 30px;
  background: #eb3a95;
  background: -moz-linear-gradient(left, #eb3a95 0%, #fb84d0 100%);
  background: -webkit-linear-gradient(left, #eb3a95 0%, #fb84d0 100%);
  background: linear-gradient(to right, #eb3a95 0%, #fb84d0 100%);
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s ease 0s, top 0.3s ease 0s;
}
.trigger-col .btn-trigger-nav span:not(.btn-label):last-child {
  top: auto;
  bottom: 0;
}
.nav-open .trigger-col .btn-trigger-nav span:not(.btn-label):nth-child(2) {
  opacity: 0;
  transition: none;
  transition-delay: 0;
}
.nav-open .trigger-col .btn-trigger-nav span:not(.btn-label):first-child, .nav-open .trigger-col .btn-trigger-nav span:not(.btn-label):last-child {
  top: 50%;
  margin-top: -2px;
}
.nav-open .trigger-col .btn-trigger-nav span:not(.btn-label):first-child {
  transform: rotate(-45deg);
  background: #eb3a95;
  background: -moz-linear-gradient(right, #eb3a95 0%, #fb84d0 100%);
  background: -webkit-linear-gradient(right, #eb3a95 0%, #fb84d0 100%);
  background: linear-gradient(to left, #eb3a95 0%, #fb84d0 100%);
}
.nav-open .trigger-col .btn-trigger-nav span:not(.btn-label):last-child {
  transform: rotate(45deg);
}
.trigger-col .btn-trigger-search {
  display: block;
  height: 32px;
  line-height: 32px;
  width: 32px;
  background-color: #712f85;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  padding: 0;
}
@media (min-width: 767px) {
  .trigger-col .btn-trigger-search {
    display: none;
  }
}

.btn-trigger-search .icon-holder{
margin-top: 20px;
text-align: center;
}

.trigger-col .btn-trigger-search .icon-holder {
  margin-right: 0;
  width: auto;
}
.trigger-col .btn-trigger-search svg {
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
}

.footer-sec {
  background-color: #fbf7f0;
  padding: 30px 0;
}

.footer-list-col {
  display: none;
}
@media (min-width: 768px) {
  .footer-list-col {
    display: block;
    flex: 1 0 100%;
    margin-bottom: 15px;
    flex-basis: 50%;
  }
}
@media (min-width: 1040px) {
  .footer-list-col {
    flex-basis: 20%;
  }
  .footer-list-col.-shortcut {
    flex-basis: 40%;
  }
}

.footer-list-header {
  color: #f54da3;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.footer-list-header .sub-label {
  flex: 0 0 auto;
}
.footer-list-header .line {
  flex: 1 0 0;
  min-width: 0;
  height: 1px;
  background-color: #f7dcdc;
  margin-left: 12px;
  margin-top: 3px;
}

.footer-list {
  display: flex;
  flex-flow: row wrap;
}
.footer-list li {
  flex: 1 0 100%;
  margin-bottom: 15px;
}
.-shortcut .footer-list li {
  flex-basis: 50%;
}
.footer-list a {
  display: block;
  color: #211d22;
}
.footer-list a:hover {
  color: #f54da3;
}

.footer-sep {
  height: 1px;
  display: block;
  background-color: #f7dcdc;
  margin-top: 30px;
  margin-bottom: 30px;
}

.copy-col {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

.footer-logo {
  display: none;
}
@media (min-width: 768px) {
  .footer-logo {
    display: block;
    flex: 0 0 95px;
  }
}

.copy-box {
  flex: 1 0 100%;
  min-width: 0;
  text-align: center;
  font-size: 12px;
}
@media (min-width: 768px) {
  .copy-box {
    flex-basis: 0;
    padding-right: 95px;
  }
}

.title-col {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.title-col h1, .title-col h2, .title-col h3, .title-col h4, .title-col h5, .title-col h6 {
  display: inline-block;
  position: relative;
}
.title-col.-sub h1, .title-col.-sub h2, .title-col.-sub h3, .title-col.-sub h4, .title-col.-sub h5, .title-col.-sub h6 {
  font-size: 27px;
}
.title-col.-line {
  flex: 1 0 100%;
}
.title-col.-line h1, .title-col.-line h2, .title-col.-line h3, .title-col.-line h4, .title-col.-line h5, .title-col.-line h6 {
  flex: 0 0 auto;
  max-width: 100%;
  min-width: 0;
}
.title-col.-line .title-line {
  flex: 1 0 0;
  height: 1px;
  background-color: #f7dcdc;
  margin-left: 30px;
}
.title-col.-line .btn {
  flex: 0 0 0;
  text-transform: uppercase;
  padding: 0 30px;
  font-size: 10px;
  font-weight: 700;
}
.title-col.-center {
  flex: 1 0 100%;
  justify-content: center;
}
.title-col.-index {
  justify-content: center;
}
.title-col.-index .index {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #712f85;
  color: #f7dcdc;
  font-size: 11px;
  font-weight: 700;
  margin-right: 20px;
  border-radius: 50%;
}
.title-col.-index h1, .title-col.-index h2, .title-col.-index h3, .title-col.-index h4, .title-col.-index h5, .title-col.-index h6 {
  font-size: 20px;
  font-weight: 400;
}

.filter-link {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  color: #f54da3;
  font-weight: 400;
  opacity: 0.4;
}
@media (min-width: 1040px) {
  .filter-link {
    margin-right: 10px;
  }
}
@media (min-width: 1200px) {
  .filter-link {
    margin-right: 30px;
  }
}
@media (max-width: 1039px) {
  .filter-link:first-child {
    margin-bottom: 20px;
  }
}
.filter-link:hover {
  opacity: 1;
}
.filter-link.active {
  opacity: 1;
  font-weight: 700;
}

.message-link {
  display: inline-block;
  opacity: 1;
  color: #f54da3;
  font-weight: 700;
  margin: 17px;
  margin-bottom: 0;
}
@media (min-width: 402px) {
  .message-link {
    margin: 20px 10px 20px 20px;
  }
}
.message-link .icon-holder {
  margin: 0;
}
.message-link .-circle {
  border: 1px solid #f7dcdc;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  padding: 0 4.6px;
  margin-right: 5px;
}

.header-filter {
  flex: 1 0 0;
  margin-bottom: 20px;
  position: static;
  text-align: right;
}
@media (min-width: 480px) {
  .header-filter {
    position: relative;
  }
}
.header-filter > .inner-col {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
}
@media (max-width: 1039px) {
  .header-filter > .inner-col {
    display: none;
    background-color: #f7dcdc;
    box-shadow: 0 2px 4px rgba(54, 16, 66, 0.25);
    padding: 20px 25px 35px;
    position: absolute;
    top: 100%;
    right: 6px;
    width: 320px;
    margin-top: 20px;
    z-index: 10;
    flex-flow: column-reverse nowrap;
  }
}
@media (max-width: 479px) {
  .header-filter > .inner-col {
    left: 0;
    right: 0;
    width: auto;
    margin-top: 0;
  }
}
.header-filter .btn.btn-dropdown {
  height: 38px;
  line-height: 37px;
  border-bottom: 1px solid #361042;
  padding: 0 10px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #361042;
  font-size: 14px;
}
.header-filter .btn.btn-dropdown .caret {
  color: #361042;
}
@media (min-width: 1040px) {
  .header-filter .btn.btn-dropdown {
    border-color: #f54da3;
    color: #211d22;
  }
  .header-filter .btn.btn-dropdown .caret {
    color: #f54da3;
  }
}
.header-filter .dropdown-menu a {
  height: 24px;
  line-height: 24px;
  font-size: 13px;
}
.header-filter .filter-box {
  flex: 0 0 auto;
}
.header-filter .filter-box:not(:first-child) {
  margin-bottom: 25px;
}
@media (min-width: 1040px) {
  .header-filter .filter-box:not(:first-child) {
    margin-bottom: 0;
  }
  .header-filter .filter-box + .filter-box {
    margin-left: 12px;
  }
}
@media (min-width: 1040px) {
  .header-filter .filter-box.-select {
    flex-basis: 180px;
  }
}
@media (min-width: 1200px) {
  .header-filter .filter-box.-select {
    flex-basis: 218px;
  }
}
.header-filter .filter-box.-links {
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 1040px) {
  .header-filter .filter-box.-links {
    flex-flow: row nowrap;
  }
}
.header-filter .btn-filter-trigger {
  display: inline-block;
  position: relative;
  padding: 0;
  border: 1px solid #f54da3;
  border-radius: 5px;
  height: 45px;
  line-height: 43px;
  width: 45px;
  text-align: center;
}
@media (min-width: 1040px) {
  .header-filter .btn-filter-trigger {
    display: none;
  }
}
.header-filter .btn-filter-trigger .icon-holder {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: -3px;
}
.header-filter.active > .inner-col {
  display: flex;
}
.header-filter.active .btn-filter-trigger::after {
  margin-top: 10px;
}

.newest-sec,
.content-sec,
.dates-sec {
  padding-top: 60px;
  padding-bottom: 38px;
}

.offer-item-col-left {
  display: flex;
  flex-wrap: wrap;
}
.offer-item-col-left .offer-item-col-left-img {
  flex-basis: 100%;
}
.offer-item-col-left .offer-item-col-left-img div {
  position: relative;
  max-width: 310px;
  margin: 0 auto;
}
@media (max-width: 580px) {
  .offer-item-col-left .offer-item-col-left-img div {
    max-width: 100%;
  }
}
.offer-item-col-left .offer-item-col-left-img img {
  width: 100%;
}
@media (min-width: 864px) {
  .offer-item-col-left .offer-item-col-left-img {
    flex-basis: 33.33%;
  }
}
.offer-item-col-left .offer-item-col-left-text {
  flex-basis: 100%;
  padding: 20px 0;
  position: relative;
}
.offer-item-col-left .offer-item-col-left-text .show-full-link {
  position: relative;
  padding: 0;
  padding-top: 10px;
}
@media (min-width: 864px) {
  .offer-item-col-left .offer-item-col-left-text .show-full-link {
    position: absolute;
    bottom: 0;
  }
}
@media (min-width: 864px) {
  .offer-item-col-left .offer-item-col-left-text {
    flex-basis: 66.66%;
    padding: 0;
    padding-left: 30px;
  }
  .offer-item-col-left .offer-item-col-left-text div {
    margin-bottom: 50px;
  }
}

.offer-items-col-right .row div {
  padding-top: 5px;
  padding-bottom: 5px;
  width: 35%;
}
.offer-items-col-right .row div:last-child {
  color: #522061;
  width: 65%;
}
@media (min-width: 1000px) {
  .offer-items-col-right .row div:last-child {
    text-align: right;
  }
}

.item-col {
  margin-bottom: 40px;
  width: 100%;
  max-width: 33.3333333333%;
}
@media (min-width: 768px) {
  .item-col {
    margin-bottom: 12px;
    max-width: 20%;
  }
}
@media (min-width: 1040px) {
  .item-col {
    max-width: 12.5%;
  }
}
.item-col a {
  display: block;
  position: relative;
  color: #fbf7f0;
}
.item-col a:hover .image > img {
  transform: translateY(-50%) scale(1.2);
}
.item-col .image {
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  padding-top: 135.4037267081%;
}
.item-col .image::before {
  content: "";
  position: absolute;
  top: 43.5779816514%;
  bottom: 0;
  left: 0;
  right: 0;
  background: -moz-linear-gradient(top, rgba(245, 77, 163, 0) 0%, rgba(245, 77, 163, 0.6) 100%);
  background: -webkit-linear-gradient(top, rgba(245, 77, 163, 0) 0%, rgba(245, 77, 163, 0.6) 100%);
  background: linear-gradient(to bottom, rgba(245, 77, 163, 0) 0%, rgba(245, 77, 163, 0.6) 100%);
  z-index: 1;
}
.item-col .image > img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
  transition: transform 0.3s ease 0s;
}
.item-col .item-name {
  display: block;
  font-size: 16px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .item-col .item-name {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  .item-col .item-name {
    color: #361042;
  }
}
.item-col .item-info {
  margin-top: 10px;
  display: block;
}
@media (min-width: 768px) {
  .item-col .item-info {
    position: absolute;
    bottom: 42px;
    left: 12px;
    right: 12px;
    z-index: 2;
  }
}
.item-col .item-stats {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 15px;
  margin-top: 5px;
}
@media (max-width: 767px) {
  .item-col .item-stats {
    color: #712f85;
    margin-top: 5px;
  }
}
.item-col .item-icons {
  position: absolute;
  bottom: 6px;
  left: 12px;
  right: 12px;
  z-index: 2;
  display: block;
}
@media (min-width: 768px) {
  .item-col .item-icons {
    padding-top: 6px;
    border-top: 1px solid rgba(251, 247, 240, 0.3);
  }
}
.item-col .item-icons .icon-holder {
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
  margin-right: 0;
}
.item-col .item-icons .icon-holder + .icon-holder {
  margin-left: 6px;
}
.item-col .item-icons .icon-holder.-premium svg, .item-col .item-icons .icon-holder.-circle svg {
  width: 20px;
}
.owl-item .item-col {
  max-width: 100%;
}

.vip-sec {
  background-color: #361042;
  padding-top: 30px;
  padding-bottom: 38px;
}
.vip-sec .title-col h1, .vip-sec .title-col h2, .vip-sec .title-col h3, .vip-sec .title-col h4, .vip-sec .title-col h5, .vip-sec .title-col h6 {
  color: #f7dcdc;
}
@media (min-width: 1040px) {
  .vip-sec .header-filter .btn.btn-dropdown {
    color: #f54da3;
  }
}
.vip-sec .item-col .item-name {
  color: #ffffff;
}
.vip-sec .item-col .item-stats {
  color: #fbf7f0;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 0;
}
.pagination a {
  color: #ffffff;
  font-weight: 900;
  padding: 0 10px;
  height: 25px;
  line-height: 25px;
  min-width: 25px;
}
.pagination a:hover {
  background-color: #f54da3;
}
.pagination span {
  font-weight: 900;
  padding: 0 10px;
  height: 25px;
  line-height: 25px;
  min-width: 25px;
  background-color: #f54da3;
}

.more-sec {
  height: 1px;
}
.more-sec:not(.-vip) {
  background-color: #f54da3;
}

.show-more-col {
  text-align: center;
  position: relative;
}
.show-more-col .btn {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  width: 172px;
  position: relative;
  bottom: 50%;
  z-index: 2;
}

.dates-sec,
.info-sec {
  background-color: #fbf7f0;
}

.info-sec {
  padding-top: 10px;
  padding-bottom: 30px;
}

.info-index-col {
  max-width: 1220px;
  margin: 0 auto;
  font-size: 12px;
  color: #361042;
  line-height: 25px;
  letter-spacing: 0.12px;
}

.-expand {
  overflow: hidden;
  position: relative;
  height: 0;
  transition: height 0.3s ease 0s;
}
.-expand::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25px;
  background: -moz-linear-gradient(top, rgba(251, 247, 240, 0) 0%, #fbf7f0 50%);
  background: -webkit-linear-gradient(top, rgba(251, 247, 240, 0) 0%, #fbf7f0 50%);
  background: linear-gradient(to bottom, rgba(251, 247, 240, 0) 0%, #fbf7f0 50%);
  opacity: 1;
  transition: opacity 0.3s ease 0s;
}
.-expand.open::before {
  opacity: 0;
}

.expand-trigger-col {
  flex: 1 0 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}

[data-mb=expand] {
  flex: 0 0 auto;
  color: #f54da3;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  padding: 0 10px;
}
[data-mb=expand] .sub-label {
  margin-right: 12px;
}
[data-mb=expand]:hover {
  color: #d00c70;
}
[data-mb=expand].active .fa-caret-down {
  transform: rotate(180deg);
}

[data-expand] {
  overflow: hidden;
  transition: height 0.3s ease 0s;
}

.cookie-box {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  z-index: 999;
}

.cookie-col {
  max-width: 1220px;
  margin: 0 auto;
  text-align: center;
}
.cookie-col p {
  font-size: 12px;
  color: #361042;
  margin: 20px 0;
}

.-mobile-slider {
  width: auto;
}

.owl-dots {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.owl-dots button.owl-dot {
  flex: 0 0 12px;
  height: 12px;
  display: block;
  margin: 0 5px 5px;
  border-radius: 50%;
  background-color: #f7dcdc;
}
.owl-dots button.owl-dot.active {
  background-color: #f54da3;
}

.anons-sec .bg-purple {
  padding-top: 35px;
  padding-bottom: 50px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .anons-info-sec .title-col.-sub,
  .anons-reviews-sec .title-col.-sub {
    padding-left: 25px;
    padding-right: 25px;
  }

  .anons-sec .bg-purple {
    padding-top: 15px;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
}

.anons-reviews-sec .title-col {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .anons-reviews-sec .title-col {
    flex-wrap: wrap;
  }
  .anons-reviews-sec .title-col .title-line {
    display: none;
  }
  .anons-reviews-sec .title-col .header-button {
    flex: 1 0 100%;
    margin-top: 15px;
  }
}

.back-col {
  flex: 1 0 100%;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .back-col {
    flex: 0 0 0;
    margin-bottom: 35px;
  }
}
@media (max-width: 767px) {
  .back-col .btn.btn-back {
    width: 100%;
  }
}

.content-actions-col {
  flex: 1 0 0;
  margin-bottom: 10px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .content-actions-col {
    justify-content: flex-end;
    margin-bottom: 35px;
  }
}

.action-link {
  display: block;
  color: #f54da3;
  text-align: center;
}
.action-link:hover {
  color: #f87dbc;
}
.action-link .icon-holder {
  display: block;
  height: 40px;
  line-height: 38px;
  width: 40px;
  border: 1px solid #712f85;
  margin: 0 auto 10px;
  text-align: center;
  border-radius: 50%;
  font-size: 16px;
}
@media (min-width: 768px) {
  .action-link .icon-holder {
    display: inline-block;
    margin: 0 10px 0 0;
  }
}
.action-link .sub-label {
  white-space: nowrap;
}
.action-link + .action-link {
  margin-left: 15px;
}

.content-gallery-col {
  flex: 1 0 100%;
  margin-bottom: 20px;
  float: left;
  clear: both;
  margin-right: 3.5%;
  max-width: 50%;
  width: 50%;
  padding: 0 25px;
  z-index: 100;
}

.content-info.content-text {
  margin-left: auto;
  border: none;
  max-width: 100%;
}

.content-info.content-text ._bordered {
  border: 1px solid #522061;
  border-width: 0 0 1px 0;
  padding: 2px;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .content-gallery-col {
    max-width: 45%;
    margin-bottom: 35px;
  }
}
@media (min-width: 1040px) {
  .content-gallery-col {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .content-gallery-col {
    margin: 0 auto;
    float: none;
    min-width: 100%;
  }
  .content-info.content-text {
    border-width: 1px;
    border-radius: 10px;
  }
}

.content-gallery {
  display: none;
  position: relative;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .content-gallery {
    display: block;
    max-width: 400px;
  }
}

.content-photo {
  display: block;
  height: 50px;
  line-height: 50px;
  background-color: rgba(245, 77, 163, 0.44);
  color: #ffffff;
  padding: 0 20px;
  border-radius: 10px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 2;
}
.content-photo .icon-holder {
  color: #ffffff;
  margin-top: -6px;
  margin-right: 10px;
  width: 24px;
}
.content-photo:hover {
  background-color: #f54da3;
  color: #ffffff;
}
@media (max-width: 767px) {
  .content-photo {
    bottom: auto;
    left: auto;
    top: 10px;
    right: 10px;
  }
}
.content-photo.-mobile {
  display: block;
}
@media (min-width: 768px) {
  .content-photo.-mobile {
    display: none;
  }
}

.content-video {
  display: block;
  height: 50px;
  line-height: 50px;
  background-color: rgba(245, 77, 163, 0.44);
  color: #ffffff;
  padding: 0 10px;
  border-radius: 10px;
  position: absolute;
  bottom: 10px;
  left: 20px;
  z-index: 2;
}
.content-video .icon-holder {
  color: #ffffff;
  margin-top: -3px;
  margin-right: 10px;
  width: 24px;
}
.content-video:hover {
  background-color: #f54da3;
  color: #ffffff;
}
@media (max-width: 767px) {
  .content-video {
    bottom: auto;
    left: auto;
    top: 10px;
    right: 10px;
  }
}
.content-video.-mobile {
  display: block;
}
@media (min-width: 768px) {
  .content-video.-mobile {
    display: none;
  }
}

.zoom-image {
  display: block;
  height: 40px;
  line-height: 40px;
  width: 40px;
  background-color: rgba(245, 77, 163, 0.44);
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  font-size: 15px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
}
.zoom-image .icon-holder {
  margin: 0;
  width: auto;
  margin-top: -4px;
}
.zoom-image:hover {
  background-color: #f54da3;
}

.content-image {
  display: block;
  position: relative;
  height: 0;
  overflow: hidden;
  padding-top: 132.5%;
  background-color: #140619;
}
.content-image > a > img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transition: opacity 0.3s ease 0s;
  opacity: 0;
}
.loading-img .loader {
  opacity: 1;
}

.loading-img .ball-triangle-path {
  position: relative;
  transform: translate(-30px, -30px);
  width: 50px;
  height: 50px;
}
.loading-img .ball-triangle-path > div {
  animation-fill-mode: both;
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #f54da3;
}
.loading-img .ball-triangle-path > div:nth-child(1) {
  z-index: 4;
  left: 0;
  top: 50px;
  animation-name: ball-triangle-path;
  animation-delay: 0;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.loading-img .ball-triangle-path > div:nth-child(2) {
  z-index: 3;
  width: 8px;
  height: 8px;
  opacity: 0.8;
  left: 1px;
  top: 51px;
  animation-name: ball-triangle-path;
  animation-delay: 50ms;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.loading-img .ball-triangle-path > div:nth-child(3) {
  z-index: 2;
  width: 6px;
  height: 6px;
  opacity: 0.6;
  left: 2px;
  top: 52px;
  animation-name: ball-triangle-path;
  animation-delay: 100ms;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.loading-img .ball-triangle-path > div:nth-child(4) {
  z-index: 1;
  width: 4px;
  height: 4px;
  opacity: 0.4;
  left: 3px;
  top: 53px;
  animation-name: ball-triangle-path;
  animation-delay: 150ms;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.loading-img .ball-triangle-path > div:nth-child(5) {
  z-index: 4;
  left: 0;
  top: 0;
  animation-name: ball-triangle-path-2;
  animation-delay: 0;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.loading-img .ball-triangle-path > div:nth-child(6) {
  z-index: 3;
  width: 8px;
  height: 8px;
  opacity: 0.8;
  left: 1px;
  top: 1px;
  animation-name: ball-triangle-path-2;
  animation-delay: 50ms;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.loading-img .ball-triangle-path > div:nth-child(7) {
  z-index: 2;
  width: 6px;
  height: 6px;
  opacity: 0.6;
  left: 2px;
  top: 2px;
  animation-name: ball-triangle-path-2;
  animation-delay: 100ms;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.loading-img .ball-triangle-path > div:nth-child(8) {
  z-index: 1;
  width: 4px;
  height: 4px;
  opacity: 0.4;
  left: 3px;
  top: 3px;
  animation-name: ball-triangle-path-2;
  animation-delay: 150ms;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.loading-img .ball-triangle-path > div:nth-child(9) {
  z-index: 4;
  left: 50px;
  top: 0;
  animation-name: ball-triangle-path-3;
  animation-delay: 0;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.loading-img .ball-triangle-path > div:nth-child(10) {
  z-index: 3;
  width: 8px;
  height: 8px;
  opacity: 0.8;
  left: 51px;
  top: 1px;
  animation-name: ball-triangle-path-3;
  animation-delay: 50ms;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.loading-img .ball-triangle-path > div:nth-child(11) {
  z-index: 2;
  width: 6px;
  height: 6px;
  opacity: 0.6;
  left: 52px;
  top: 2px;
  animation-name: ball-triangle-path-3;
  animation-delay: 100ms;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.loading-img .ball-triangle-path > div:nth-child(12) {
  z-index: 1;
  width: 4px;
  height: 4px;
  opacity: 0.4;
  left: 53px;
  top: 3px;
  animation-name: ball-triangle-path-3;
  animation-delay: 150ms;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.loading-img .ball-triangle-path > div:nth-child(13) {
  z-index: 4;
  left: 50px;
  top: 50px;
  animation-name: ball-triangle-path-4;
  animation-delay: 0;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.loading-img .ball-triangle-path > div:nth-child(14) {
  z-index: 3;
  width: 8px;
  height: 8px;
  opacity: 0.8;
  left: 51px;
  top: 51px;
  animation-name: ball-triangle-path-4;
  animation-delay: 50ms;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.loading-img .ball-triangle-path > div:nth-child(15) {
  z-index: 2;
  width: 6px;
  height: 6px;
  opacity: 0.6;
  left: 52px;
  top: 52px;
  animation-name: ball-triangle-path-4;
  animation-delay: 100ms;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.loading-img .ball-triangle-path > div:nth-child(16) {
  z-index: 1;
  width: 4px;
  height: 4px;
  opacity: 0.4;
  left: 53px;
  top: 53px;
  animation-name: ball-triangle-path-4;
  animation-delay: 150ms;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes ball-triangle-path {
  12.5% {
    -webkit-transform: translate(18px, -25px);
    transform: translate(18px, -25px);
  }
  25% {
    -webkit-transform: translate(0, -50px);
    transform: translate(0, -50px);
  }
  37.5% {
    -webkit-transform: translate(25px, -32px);
    transform: translate(25px, -32px);
  }
  50% {
    -webkit-transform: translate(50px, -50px);
    transform: translate(50px, -50px);
  }
  62.5% {
    -webkit-transform: translate(32px, -25px);
    transform: translate(32px, -25px);
  }
  75% {
    -webkit-transform: translate(50px, 0);
    transform: translate(50px, 0);
  }
  87.5% {
    -webkit-transform: translate(25px, -18px);
    transform: translate(25px, -18px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes ball-triangle-path-2 {
  12.5% {
    -webkit-transform: translate(25px, 18px);
    transform: translate(25px, 18px);
  }
  25% {
    -webkit-transform: translate(50px, 0);
    transform: translate(50px, 0);
  }
  37.5% {
    -webkit-transform: translate(32px, 25px);
    transform: translate(32px, 25px);
  }
  50% {
    -webkit-transform: translate(50px, 50px);
    transform: translate(50px, 50px);
  }
  62.5% {
    -webkit-transform: translate(25px, 32px);
    transform: translate(25px, 32px);
  }
  75% {
    -webkit-transform: translate(0, 50px);
    transform: translate(0, 50px);
  }
  87.5% {
    -webkit-transform: translate(18px, 25px);
    transform: translate(18px, 25px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes ball-triangle-path-3 {
  12.5% {
    -webkit-transform: translate(-18px, 25px);
    transform: translate(-18px, 25px);
  }
  25% {
    -webkit-transform: translate(0, 50px);
    transform: translate(0, 50px);
  }
  37.5% {
    -webkit-transform: translate(-25px, 32px);
    transform: translate(-25px, 32px);
  }
  50% {
    -webkit-transform: translate(-50px, 50px);
    transform: translate(-50px, 50px);
  }
  62.5% {
    -webkit-transform: translate(-32px, 25px);
    transform: translate(-32px, 25px);
  }
  75% {
    -webkit-transform: translate(-50px, 0);
    transform: translate(-50px, 0);
  }
  87.5% {
    -webkit-transform: translate(-25px, 18px);
    transform: translate(-25px, 18px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes ball-triangle-path-4 {
  12.5% {
    -webkit-transform: translate(-25px, -18px);
    transform: translate(-25px, -18px);
  }
  25% {
    -webkit-transform: translate(-50px, 0);
    transform: translate(-50px, 0);
  }
  37.5% {
    -webkit-transform: translate(-32px, -25px);
    transform: translate(-32px, -25px);
  }
  50% {
    -webkit-transform: translate(-50px, -50px);
    transform: translate(-50px, -50px);
  }
  62.5% {
    -webkit-transform: translate(-25px, -32px);
    transform: translate(-25px, -32px);
  }
  75% {
    -webkit-transform: translate(0, -50px);
    transform: translate(0, -50px);
  }
  87.5% {
    -webkit-transform: translate(-18px, -25px);
    transform: translate(-18px, -25px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.gallery-thumbs {
  position: relative;
  margin: 0 -6px;
}
@media (min-width: 768px) {
  .gallery-thumbs {
    max-width: 412px;
  }
}
.gallery-thumbs .owl-nav {
  display: none;
}
@media (min-width: 768px) {
  .gallery-thumbs .owl-nav {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px;
    margin-top: 20px;
  }
  .gallery-thumbs .owl-nav button.owl-prev {
    padding-left: 30px;
  }
  .gallery-thumbs .owl-nav button.owl-prev::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: 1px;
    width: 20px;
    background-color: #f54da3;
  }
  .gallery-thumbs .owl-nav button.owl-next {
    padding-right: 30px;
  }
  .gallery-thumbs .owl-nav button.owl-next::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    height: 1px;
    width: 20px;
    background-color: #f54da3;
  }
  .gallery-thumbs .owl-nav button.owl-prev,
.gallery-thumbs .owl-nav button.owl-next {
    color: #f54da3;
    display: block;
    position: relative;
  }
  .gallery-thumbs .owl-nav button.owl-prev:hover,
.gallery-thumbs .owl-nav button.owl-next:hover {
    color: #f87dbc;
  }
  .gallery-thumbs .owl-nav button.owl-prev.disabled,
.gallery-thumbs .owl-nav button.owl-next.disabled {
    color: #712f85;
  }
  .gallery-thumbs .owl-nav button.owl-prev.disabled::before,
.gallery-thumbs .owl-nav button.owl-next.disabled::before {
    background-color: #712f85;
  }
}
.gallery-thumbs .owl-dots {
  display: none;
}
@media (max-width: 767px) {
  .gallery-thumbs .owl-dots {
    display: flex;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
  }
}

.item-gallery {
  padding: 0 6px;
}
.item-gallery a {
  display: block;
  position: relative;
  overflow: hidden;
  height: 0;
  padding-top: 133.3333333333%;
}
@media (min-width: 768px) {
  .item-gallery a {
    opacity: 0.2;
  }
  .item-gallery a:hover {
    opacity: 0.6;
  }
}
@media (max-width: 767px) {
  .item-gallery a {
    pointer-events: none;
  }
}
.item-gallery a > img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
}
.item-gallery.active a {
  opacity: 1;
}

.gallery-counter {
  display: none;
}
@media (min-width: 768px) {
  .gallery-counter {
    display: block;
    text-align: center;
    color: #f7dcdc;
    font-weight: 700;
    margin-top: -21px;
  }
  .gallery-counter .sep, .gallery-counter .counter {
    color: #522061;
  }
}

.content-info-col {
  flex: 1 0 100%;
  max-width: 33.333334%;
  margin-bottom: 35px;
}
.content-info-col.-mobile {
  margin-bottom: 5px;
}

.content-info-wrapper {
  flex-basis: 66.666667%;
}

.content-info-col.-desc {
  max-width: 100%;
}

@media (max-width: 1039px) {
  .content-info-wrapper {
    flex-basis: 100%;
  }

  .content-info-col.-desc, .content-info-col.-info {
    max-width: 100%;
  }
}


@media (max-width: 767px) {
  .content-info-col {
    padding: 0 25px;
  }
}

.content-actions-col.-mobile {
  margin-bottom: -50px;
  justify-content: flex-end;
}

.content-name {
  max-width: 400px;
  margin: 0 auto 40px;
}

.content-name.-desc-name {
  max-width: 100%;
}

.content-name.-mobile {
  max-width: 100%;
  margin: 0;
}
@media (min-width: 768px) {
  .content-name {
    margin-bottom: 65px;
  }
}
.content-name h1, .content-name h2, .content-name h3, .content-name h4, .content-name h5, .content-name h6 {
  display: block;
  margin-bottom: 10px;
}

.content-name.-mobile h1, .content-name.-mobile h2, .content-name.-mobile h3, .content-name.-mobile h4, .content-name.-mobile h5, .content-name.-mobile h6 {
  display: block;
  margin-bottom: 0px;
}

.-hidden {
  display: none;
}

.content-location {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

.content-location span{
  padding-top: 10px;
  width: 100%;
}

@media (min-width: 768px) {
  .content-location {
    flex-wrap: nowrap;
  }
}
.content-location > .sub-label {
  color: #fbf7f0;
  font-size: 20px;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .content-location > .sub-label {
    flex: 1 0 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.content-location .content-map {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  color: #f54da3;
}

.content-location .content-map.-mobile {
  display: inline-block;
}
.content-location .content-map .icon-holder {
  width: 24px;
  margin-right: 10px;
}
.content-location .content-map:hover {
  color: #f87dbc;
}

.content-desc {
  max-width: 100%;
  margin: 0 auto;
}
.content-desc > .label {
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.content-text {
  margin-top: 8px;
  padding: 10px;
  display: block;
  font-size: 16px;
  line-height: 26px;
}

.content-info {
  max-width: 400px;
  margin-left: auto;
  border: 1px solid #522061;
  border-radius: 10px;
}
@media (max-width: 1039px) {
  .content-info {
    margin-right: auto;
  }
}
.content-info .label {
  font-weight: 700;
}
.content-contact {
  display: none;
  flex-flow: row wrap;
  align-items: center;
}
@media (min-width: 768px) {
  .content-contact {
    display: flex;
    border-bottom: 1px solid #522061;
    padding: 20px 30px;
  }
}
.content-contact.-mobile {
  display: none;
}
@media (max-width: 767px) {
  .content-contact.-mobile {
    display: flex;
    padding-top: 15px;
  }
  .content-contact.-mobile .contact-elem.-cam {
    flex: 1 0 100%;
    margin-top: 15px;
  }
}
.content-contact .label {
  flex: 0 0 0;
  margin-right: 10px;
}
.content-contact .contact-elem {
  flex: 1 0 0;
}
.content-contact .contact-elem.-phone {
  color: #f54da3;
  font-size: 20px;
}
@media (max-width: 1249px) and (min-width: 1040px) {
  .content-contact .contact-elem.-cam {
    flex: 1 0 100%;
    margin-top: 15px;
  }
}
.content-contact .btn.btn-border {
  font-size: 10px;
  text-transform: uppercase;
}

.content-hours,
.contant-prices {
  padding: 25px 30px;
}
.content-hours .label,
.contant-prices .label {
  display: block;
  margin-bottom: 15px;
  font-size: 11px;
}

.content-hours {
  border-bottom: 1px solid #522061;
}

.stat-elem {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.stat-elem .sub-label {
  font-size: 16px;
  line-height: 24px;
}
.stat-elem .sub-desc {
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
}

.sub-info-col {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .sub-info-col {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.sub-info-box {
  flex: 1 0 100%;
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .sub-info-box {
    flex-basis: 0;
  }
}
.sub-info-box.-info {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .sub-info-box.-info {
    max-width: 500px;
    margin-right: 20px;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .sub-info-box.-tags {
    max-width: 720px;
  }
}
.sub-info-box .label {
  flex: 1 0 100%;
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #f54da3;
  margin-bottom: 10px;
}

.sub-info-items {
  flex: 1 0 50%;
}
@media (min-width: 768px) {
  .sub-info-items {
    flex: 0 0 250px;
  }
}

.sub-info-elem {
  display: block;
  line-height: 33px;
  color: #787578;
}
.sub-info-elem .desc {
  color: #211d22;
}

.tags-box {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -5px;
}
.tags-box .tag {
  flex: 0 0 0;
}

.tag {
  display: inline-block;
  height: 35px;
  line-height: 35px;
  padding: 0 24px;
  border-radius: 20em;
  background-color: #f54da3;
  color: #ffffff;
  margin: 0 5px 10px;
  white-space: nowrap;
}

.review-col {
  flex: 1 0 100%;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .review-col {
    max-width: 600px;
  }
  .review-col > .inner-col {
    max-width: 500px;
  }
}
@media (max-width: 767px) {
  .review-col {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.review-col .review-header {
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .review-col .review-header {
    flex-wrap: nowrap;
  }
}
.review-col .review-header .avatar {
  flex: 0 0 72px;
}
.review-col .review-header .avatar a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  background-color: #f7dcdc;
}
.review-col .review-header .avatar a > img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
}
.review-col .review-header .submitter {
  flex: 1 0 0;
}
.review-col .review-header .submitter a {
  color: #211d22;
  font-weight: 700;
  margin-bottom: 5px;
}
.review-col .review-header .submitter a:hover {
  color: #f54da3;
}
.review-col .review-header .submitter .date {
  display: block;
  color: #787578;
  font-size: 12px;
}
.review-col .review-header .rating {
  flex: 1 0 100%;
  padding-left: 72px;
}
@media (min-width: 768px) {
  .review-col .review-header .rating {
    flex: 0 0 118px;
  }
}
.review-col .review-header .rating [data-mb=rate] {
  padding: 0;
}
.review-col .review-content {
  display: block;
  color: #787578;
  line-height: 33px;
}
@media (min-width: 768px) {
  .review-col .review-content {
    padding-left: 72px;
  }
}

.contact-sticky {
  display: flex;
  flex-flow: row nowrap;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease 0s;
  z-index: 50;
}
.contact-sticky.active {
  height: 75px;
}
@media (min-width: 768px) {
  .contact-sticky {
    display: none;
  }
}
.contact-sticky a {
  flex: 1 0 50%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  height: 75px;
  color: #ffffff;
  font-weight: 700;
}
.contact-sticky a:first-child {
  background-color: #f54da3;
}
.contact-sticky a:last-child {
  background-color: #b546d8;
}
.contact-sticky a .sub-label {
  margin-left: 20px;
}

@media (min-width: 1040px) {
  .login-sec {
    background-image: url("../images/bg-login.png");
    background-size: cover;
    background-repeat: no-repeat;
  }
  .login-sec.-dim {
    background-image: url("../images/bg-login-dim.png");
  }
}
@media (min-width: 1600px) {
  .login-sec {
    background-position: 85% center;
    background-size: contain;
  }
}

.login-col {
  flex: 1 0 100%;
  padding-top: 5%;
  padding-bottom: 5%;
}
.login-col > .inner-col {
  max-width: 520px;
  border-radius: 10px;
  background-color: rgba(113, 47, 133, 0.25);
  padding: 20px;
  position: relative;
}
@media (min-width: 500px) {
  .login-col > .inner-col {
    padding: 70px 50px;
  }
}
@media (max-width: 1039px) {
  .login-col > .inner-col {
    margin: 0 auto;
  }
}
.login-col.-wide > .inner-col {
  max-width: 690px;
}
.login-col.-signup > .inner-col {
  padding-bottom: 74px;
}
.login-col .form-item:not(.col) {
  max-width: 420px;
}
.login-col .form-item > label,
.login-col .form-item > .label {
  color: #712f85;
  font-size: 11px;
  font-weight: 700;
}
.login-col .form-item:not(.-actions) {
  margin-bottom: 40px;
}
.login-col .form-item.-links {
  margin-top: -25px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
.login-col .form-item.-links a {
  color: #f54da3;
}
.login-col .form-item.-links a:hover {
  color: #f87dbc;
}
@media (max-width: 479px) {
  .login-col .form-item.-links .checkbox {
    flex: 1 0 100%;
    margin-bottom: 10px;
  }
}
@media (min-width: 480px) {
  .login-col .form-item.-actions {
    text-align: left;
  }
}
.login-col .form-item .btn {
  min-width: 100%;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
}
@media (min-width: 480px) {
  .login-col .form-item .btn {
    min-width: 140px;
  }
}
.login-col .form-item .sep {
  color: #712f85;
  font-size: 14px;
  display: block;
  vertical-align: middle;
  padding: 10px 0;
  text-align: center;
}
@media (min-width: 480px) {
  .login-col .form-item .sep {
    padding: 0 30px;
    display: inline-block;
  }
}
.login-col .checkbox {
  color: #712f85;
}

.login-header {
  margin-bottom: 50px;
}
.login-header h1, .login-header h2, .login-header h3, .login-header h4, .login-header h5, .login-header h6 {
  color: #ffffff;
  font-size: 27px;
}

.login-info {
  display: block;
  margin-bottom: 40px;
}
.login-info h1, .login-info h2, .login-info h3, .login-info h4, .login-info h5, .login-info h6 {
  font-size: 20px;
  font-weight: 400;
  color: #fbf7f0;
  margin-bottom: 10px;
}
.login-info p {
  font-size: 16px;
  line-height: 31px;
}

.signup-list {
  display: flex;
  flex-flow: row wrap;
}
.signup-list li {
  flex: 1 0 100%;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 0 30px;
}
@media (min-width: 768px) {
  .signup-list li {
    flex-basis: 50%;
  }
}
.signup-list .icon-holder {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #712f85;
  color: #f54da3;
  border-radius: 50%;
  margin-right: 20px;
}

.signup-action {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.signup-action a {
  display: block;
  background-color: #f54da3;
  color: #fbf7f0;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  line-height: 59px;
  padding: 0 15px;
  border-radius: 0 0 10px 10px;
}
.signup-action a:hover {
  background-color: #d00c70;
}

.signup-form {
  display: block;
}
@media (min-width: 1040px) {
  .signup-form {
    width: 66.666667%;
  }
}

.signup-col {
  flex: 1 0 100%;
}
@media (min-width: 768px) {
  .signup-col {
    flex-basis: 50%;
  }
}

.add-anons-sec {
  border-bottom: 1px solid #ffffff;
}

.anons-steps-col {
  flex: 1 0 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
}

.anons-step {
  flex: 0 0 auto;
  text-align: center;
  padding: 0 10px;
  margin-bottom: 15px;
}
@media (min-width: 480px) {
  .anons-step {
    padding: 0 15px;
  }
}
@media (min-width: 1200px) {
  .anons-step {
    padding: 0 30px;
  }
}
@media (min-width: 768px) {
  .anons-step {
    margin-bottom: 0;
  }
}
.anons-step .index {
  display: block;
  margin: 0 auto 15px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: rgba(113, 47, 133, 0.1);
  color: #522061;
  font-size: 14px;
  font-weight: 700;
}
@media (min-width: 900px) {
  .anons-step .index {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}
.anons-step .sub-label {
  font-size: 11px;
  font-weight: 700;
  color: #712f85;
  text-transform: uppercase;
  line-height: 14px;
}
.anons-step .desc {
  color: #522061;
  font-size: 16px;
  line-height: 25px;
  display: none;
}
@media (min-width: 900px) {
  .anons-step .desc {
    white-space: nowrap;
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .anons-step .desc {
    display: block;
  }
}
.anons-step.active .index {
  background-color: #f54da3;
  color: #f7dcdc;
}
.anons-step.active .desc,
.anons-step.active .sub-label {
  color: #f54da3;
}
.anons-step.done .index {
  background-color: #f54da3;
  color: #ffffff;
}
.anons-step.done .index svg {
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
}
.anons-step.done .desc,
.anons-step.done .sub-label {
  color: #f54da3;
}

.add-anons-box {
  display: block;
  margin-bottom: 90px;
}
.add-anons-box .form-box-checkbox .form-item {
  flex-basis: 100%;
  max-width: 100%;
}
@media (min-width: 960px) {
  .add-anons-box .form-box-checkbox .form-item {
    flex-basis: 50%;
    max-width: 50%;
  }
}
.add-anons-box .form-item.-actions {
  margin-top: 50px;
  margin-bottom: 50px;
}
.add-anons-box .btn.btn-simple {
  padding: 0 25px;
}
.add-anons-box .btn.btn-default {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  min-width: 225px;
}
.add-anons-box .info-box {
  max-width: 100%;
}

.anons-category, .radio-payment {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

@media (max-width: 1163px) {
  .add-offer-radio-payment {
    justify-content: center !important;
  }
}

.radio-payment {
  justify-content: center;
  margin-bottom: 40px;
}
.radio-payment .checkbox label {
  margin-bottom: 10px;
}
.radio-payment .checkbox .tip-box {
  margin-left: 0;
}
@media (min-width: 459px) {
  .radio-payment .checkbox .tip-box {
    margin-left: 5px;
  }
}
@media (min-width: 960px) {
  .radio-payment {
    justify-content: left;
  }
}

.radio-box, .radio-payment-box {
  display: block;
  padding: 0 10px;
  margin-bottom: 10px;
}
.radio-box label, .radio-payment-box label {
  display: block;
  position: relative;
}
.radio-box label .sub-label, .radio-payment-box label .sub-label {
  display: block;
  min-width: 150px;
  text-align: center;
  height: 45px;
  line-height: 43px;
  color: #712f85;
  font-size: 16px;
  border: 1px solid #f7dcdc;
  border-radius: 10px;
  cursor: pointer;
}
.radio-box label input[type=radio], .radio-payment-box label input[type=radio] {
  display: none;
}
.radio-box label input[type=radio]:checked + .sub-label, .radio-payment-box label input[type=radio]:checked + .sub-label {
  color: #fbf7f0;
  border-color: #f54da3;
  background-color: #f54da3;
}

@media (max-width: 1163px) {
  .add-offer-payment-col-first {
    flex: 0 1 100% !important;
    margin-right: 0 !important;
  }
}

.form-items-payment-col-first {
  flex: 1 0 100%;
  margin-bottom: 40px;
}
@media (min-width: 960px) {
  .form-items-payment-col-first {
    flex: 0 1 25%;
    margin-right: 60px;
  }
}
@media (min-width: 1163px) {
  .form-items-payment-col-first {
    margin-right: 0;
  }
}
@media (min-width: 1428px) {
  .form-items-payment-col-first {
    margin-right: 75px;
  }
}
.form-items-payment-col-first .payment-summary {
  background-color: #f7dcdc;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.11px;
  padding: 26px 25px;
}
.form-items-payment-col-first .payment-summary .value {
  border-radius: 50%;
  border: 1px solid #fff;
  width: 170px;
  height: 170px;
  margin: 40px auto;
  position: relative;
}
.form-items-payment-col-first .payment-summary .value > div {
  min-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.form-items-payment-col-first .payment-summary .value > div .amount {
  font-size: 78px;
  vertical-align: middle;
}
.form-items-payment-col-first .payment-summary .value > div .currency {
  font-size: 38px;
  vertical-align: text-bottom;
}

.form-items-payment-col-second {
  flex: 1 0 50%;
}
.form-items-payment-col-second .payment-options-title {
  margin-bottom: 20px;
}
.form-items-payment-col-second .payment-options-title h4 {
  font-size: 20px;
}
.form-items-payment-col-second .payment-options {
  margin-bottom: 30px;
  max-width: 800px;
  margin: 0 auto;
}
.form-items-payment-col-second .form-item-payment-sms {
  font-size: 16px;
  margin: 0 auto;
}
.form-items-payment-col-second .form-item-payment-sms p {
  text-align: center;
}
@media (min-width: 960px) {
  .form-items-payment-col-second .form-item-payment-sms {
    max-width: 100%;
  }
  .form-items-payment-col-second .form-item-payment-sms p {
    text-align: left;
  }
}
.form-items-payment-col-second .form-item-payment-sms .form-item-payment-sms-info .form-item, .form-items-payment-col-second .form-item-payment-sms .row .form-items-col .form-item {
  padding: 0 5px;
}
.form-items-payment-col-second .form-item-payment-sms .sub-label {
  display: block;
  height: 80px;
  text-align: center;
  color: #f54da3;
  font-size: 16px;
  border: 1px solid #f7dcdc;
  border-radius: 10px;
  max-width: 100%;
  font-weight: bold;
  padding: 15px 0;
}
.form-items-payment-col-second .form-item-payment-sms .sub-label .label {
  color: #000;
  font-weight: 400;
}
.form-items-payment-col-second .form-item-payment-sms .payment-sms-box {
  justify-content: center;
}
@media (min-width: 960px) {
  .form-items-payment-col-second .form-item-payment-sms .payment-sms-box {
    justify-content: left;
  }
}
.form-items-payment-col-second .form-item-payment-sms .payment-sms-box .radio-payment-box {
  padding: 0;
  margin: 10px;
}
@media (max-width: 499px) {
  .form-items-payment-col-second .form-item-payment-sms .payment-sms-box .radio-payment-box {
    min-width: 43%;
  }
}
.form-items-payment-col-second .form-item-payment-sms .add-anons-info-box {
  max-width: 423px !important;
}

.form-box .info-box {
  margin-bottom: 40px;
}

.info-box .sub-label {
  color: #f54da3;
  font-weight: 400;
  margin-left: 10px;
  cursor: pointer;
}

.info-box.add-anons-info-box {
  margin-left: auto;
  margin-right: 0;
}

@media (min-width: 500px) {
  .form-items-payment-col-second .form-item-payment-sms .add-anons-info-box {
    min-width: 423px !important;
  }
}
.form-items-payment-col-second .form-item-payment-sms .info-box {
  max-width: 100%;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 30px;
}
.form-items-payment-col-second .form-item-payment-sms .info-box p {
  max-width: 347px;
  margin: 10px auto;
}
.form-items-payment-col-second .form-item-payment-sms .info-box .btn-download {
  min-width: 233px;
  margin-bottom: 0;
  margin: 10px auto;
}
@media (min-width: 682px) {
  .form-items-payment-col-second .form-item-payment-sms .info-box {
    max-width: 100%;
  }
  .form-items-payment-col-second .form-item-payment-sms .info-box p {
    text-align: left;
  }
}
@media (min-width: 768px) {
  .form-items-payment-col-second .form-item-payment-sms .info-box {
    max-width: 100%;
  }
  .form-items-payment-col-second .form-item-payment-sms .info-box p {
    text-align: center;
  }
}
@media (min-width: 832px) {
  .form-items-payment-col-second .form-item-payment-sms .info-box p {
    text-align: left;
  }
}
@media (min-width: 960px) {
  .form-items-payment-col-second .form-item-payment-sms .info-box {
    margin-left: 22px;
    min-width: 666px;
  }
  .form-items-payment-col-second .form-item-payment-sms .info-box p {
    margin-right: 5%;
  }
}

.user-box {
  padding: 40px !important;
  flex: 0 0 100%;
}
@media (min-width: 822px) {
  .user-box {
    padding: 100px !important;
  }
}
.user-box .btn {
  text-transform: uppercase;
  width: 100%;
  max-width: 210px;
  padding: 0;
  font-size: 10px;
  letter-spacing: 0.82px;
  font-weight: 700;
}
.user-box .btn.btn-search{
  height: 56px;
  line-height: 56px;
  width: 56px;
  text-align: center;
  background: #fb84d0;
  background: -moz-linear-gradient(-45deg, #fb84d0 0%, #ec3b96 100%);
  background: -webkit-linear-gradient(-45deg, #fb84d0 0%, #ec3b96 100%);
  background: linear-gradient(135deg, #fb84d0 0%, #ec3b96 100%);
  color: #ffffff;
  border-radius: 50%;
  font-size: 15px;
  padding: 0 10px;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}
.user-box > .row {
  justify-content: space-between;
}
.user-box .user-messages-col .title-col, .user-box .user-ads-col .title-col {
  margin-bottom: 20px !important;
}
.user-box .user-messages-col h4, .user-box .user-ads-col h4 {
  font-size: 16px !important;
}
.user-box .user-messages-col .row, .user-box .user-ads-col .row {
  margin-bottom: 0 !important;
}
@media (min-width: 968px) {
  .user-box .user-messages-col .row, .user-box .user-ads-col .row {
    max-width: 602px;
  }
}
.user-box .user-messages-col .row > .form-item, .user-box .user-ads-col .row > .form-item {
  flex-basis: 100%;
  margin-bottom: 0;
}
.user-box .user-messages-col .row > .form-item .btn-item, .user-box .user-ads-col .row > .form-item .btn-item {
  text-align: center;
}
@media (min-width: 600px) {
  .user-box .user-messages-col .row > .form-item .btn-item, .user-box .user-ads-col .row > .form-item .btn-item {
    text-align: right;
  }
}
.user-box .user-messages-col .row .text-box textarea, .user-box .user-ads-col .row .text-box textarea {
  max-width: 100%;
  min-height: 223px;
  margin-bottom: 20px;
}
@media (min-width: 968px) {
  .user-box .user-messages-col .row .text-box textarea, .user-box .user-ads-col .row .text-box textarea {
    max-width: 600px;
  }
}
.user-box .user-messages-col .row .btn.btn-default, .user-box .user-ads-col .row .btn.btn-default {
  max-width: 200px;
}
.user-box .user-message .row {
  max-width: 100%;
  margin: 0 auto;
}
.user-box .user-message .row .message-item {
  background: rgba(255, 255, 255, 0.5);
  min-height: 222px;
  max-height: 225px;
  border-radius: 10px;
}
.user-box .user-message .row .message-item .message-item-text {
  font-size: 16px;
  padding: 30px;
}
.user-box .form-item-password > div {
  position: relative;
}
@media (min-width: 968px) {
  .user-box .form-item-password > div {
    max-width: 280px;
  }
}
.user-box .form-item-password a {
  position: absolute;
  right: 0;
  top: 7px;
}
.user-box .user-settings-col .user-account-settings-row {
  margin-bottom: 0 !important;
}
.user-box .user-settings-col .user-account-settings-row .btn.btn-default {
  text-transform: uppercase;
  max-width: 172px;
  letter-spacing: 0.82px;
  font-weight: 700;
  color: #fff;
}
.user-box .user-settings-col .user-account-settings-row .info-box {
  flex: 33%;
  margin-left: 20px;
  margin-top: 30px;
  margin: 30px 0 30px 20px;
}
@media (min-width: 1376px) {
  .user-box .user-settings-col .user-account-settings-row .info-box {
    margin-left: -50px;
  }
}
.user-box .user-settings-col .user-account-settings-row .user-delete-account-form-item {
  margin-bottom: 30px;
}
.user-box .user-settings-col .user-delete-account-row {
  display: flex !important;
  flex-direction: column-reverse;
}
@media (min-width: 600px) {
  .user-box .user-settings-col .user-delete-account-row {
    flex-direction: inherit;
  }
}
.user-box .user-settings-col .btn-box {
  max-width: 172px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .user-box .user-settings-col .btn-box {
    margin: 0;
  }
}
.user-box .user-settings-col .btn {
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
  color: #211d22;
  padding: 0 10px;
}
.user-box .nav-messages {
  margin-bottom: 25px;
}
@media (min-width: 559px) {
  .user-box .nav-messages {
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
  }
  .user-box .nav-messages ul {
    margin-bottom: 0;
  }
}
.user-box .nav-messages ul {
  margin-bottom: 20px;
}
.user-box .nav-messages ul li {
  list-style-type: none;
  display: inline-block;
  padding: 10px 20px 10px 0;
}
.user-box .nav-messages ul li .active {
  color: #f54da3;
}
.user-box .nav-messages ul li .active:hover {
  color: #d00c70;
}
.user-box .user-col.-left {
  flex-basis: 100%;
}
@media (min-width: 968px) {
  .user-box .user-col.-left {
    flex-basis: 24%;
    margin-right: 30px;
    min-width: 230px;
  }
}
.user-box .user-col.-right {
  flex-basis: 100%;
}
.user-box .user-col.-right .row {
  margin-bottom: 30px;
  display: grid;
}
.user-box .user-col.-right .row .btn-border {
  margin: 0 auto;
}
@media (min-width: 514px) {
  .user-box .user-col.-right .row {
    display: flex;
  }
  .user-box .user-col.-right .row .btn-border {
    margin: 0;
  }
}
.user-box .user-col.-right .title-col {
  margin-bottom: 40px;
}
.user-box .user-col.-right .title-col h2 {
  font-size: 27px;
}
@media (min-width: 968px) {
  .user-box .user-col.-right {
    flex-basis: 66%;
  }
}
.user-box .user-col.-right .form-box {
  padding: 50px 10px 10px;
  max-width: 200px;
  text-align: center;
}
.user-box .user-col.-right .form-box p {
  margin-top: 40px;
  padding: 0 10px;
  color: #f7dcdc;
}
.user-box .user-col.-right .item-col {
  width: 100%;
  max-width: 25%;
  margin: 0 auto 10px;
  min-width: 200px;
}
@media (min-width: 514px) {
  .user-box .user-col.-right .item-col {
    min-width: 33.33%;
    margin: 0;
  }
}
@media (min-width: 642px) {
  .user-box .user-col.-right .item-col {
    min-width: 25%;
    margin: 0;
  }
}
@media (min-width: 967px) {
  .user-box .user-col.-right .item-col {
    max-width: 21.822%;
  }
}
.user-box .user-col.-right .user-offers-table h2 {
  font-size: 16px;
  margin-bottom: 20px;
}
.user-box .user-col.-right .user-offers-col {
  max-width: 25%;
  min-width: 280px;
}
.user-box .user-col.-right .user-offers-col.premium a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/premium-bg.png") no-repeat;
  z-index: 3;
}
.user-box .user-col.-right .user-offers-col.premium a::after {
  content: "ogłoszenie premium";
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  position: absolute;
  font-size: 9px;
  letter-spacing: 0.05px;
  line-height: 11px;
  top: 18px;
  left: 18px;
  width: 75px;
  height: 75px;
  transform: rotate(-45deg);
  z-index: 4;
}
@media (min-width: 514px) {
  .user-box .user-col.-right .user-offers-col {
    min-width: 140px;
  }
}
.user-box .user-col.-right .user-offers-col .image {
  padding-top: 65%;
}
.user-box .user-col.-right .user-offers-col .image:before {
  display: none;
}

@media (min-width: 564px) {
  .user-box .user-col.-right .user-offers-table {
    margin-left: 10px !important;
  }
}
.user-box .user-col.-right .user-anons-table, .user-box .user-col.-right .user-offers-table, .user-box .user-col.-right .user-message-table {
  flex: 40%;
  overflow-x: auto;
}
@media (min-width: 564px) {
  .user-box .user-col.-right .user-anons-table, .user-box .user-col.-right .user-offers-table, .user-box .user-col.-right .user-message-table {
    margin-left: 50px;
  }
}
.user-box .user-col.-right .user-anons-table table .tooltip, .user-box .user-col.-right .user-offers-table table .tooltip, .user-box .user-col.-right .user-message-table table .tooltip {
  cursor: default;
  margin-top: 10px;
  margin-left: 5px;
}
.user-box .user-col.-right .user-anons-table table .tooltip .arrow::before, .user-box .user-col.-right .user-offers-table table .tooltip .arrow::before, .user-box .user-col.-right .user-message-table table .tooltip .arrow::before {
  border-bottom-color: #712f85;
  border-top-color: #712f85;
}
.user-box .user-col.-right .user-anons-table table .tooltip .tooltip-inner, .user-box .user-col.-right .user-offers-table table .tooltip .tooltip-inner, .user-box .user-col.-right .user-message-table table .tooltip .tooltip-inner {
  background-color: #712f85;
}
.user-box .user-col.-right .user-anons-table table th, .user-box .user-col.-right .user-offers-table table th, .user-box .user-col.-right .user-message-table table th {
  text-transform: uppercase;
  font-size: 11px;
  color: #361042;
  border-bottom: 2px solid #361042;
}
.user-box .user-col.-right .user-anons-table table td, .user-box .user-col.-right .user-offers-table table td, .user-box .user-col.-right .user-message-table table td {
  font-size: 14px;
  color: #787578;
  vertical-align: text-top;
}
.user-box .user-col.-right .user-anons-table table td, .user-box .user-col.-right .user-offers-table table td, .user-box .user-col.-right .user-message-table .unread {
  font-size: 14px;
  color: black;
  vertical-align: text-top;
  font-weight: bold;
}
@media (max-width: 744px) {
  .user-box .user-col.-right .user-anons-table table td:last-child, .user-box .user-col.-right .user-offers-table table td:last-child, .user-box .user-col.-right .user-message-table table td:last-child {
    white-space: nowrap;
  }
}
.user-box .user-col.-right .user-anons-table table th, .user-box .user-col.-right .user-anons-table table td, .user-box .user-col.-right .user-offers-table table th, .user-box .user-col.-right .user-offers-table table td, .user-box .user-col.-right .user-message-table table th, .user-box .user-col.-right .user-message-table table td {
  padding: 10px 5px;
}
@media (min-width: 1154px) {
  .user-box .user-col.-right .user-anons-table table th, .user-box .user-col.-right .user-anons-table table td, .user-box .user-col.-right .user-offers-table table th, .user-box .user-col.-right .user-offers-table table td, .user-box .user-col.-right .user-message-table table th, .user-box .user-col.-right .user-message-table table td {
    padding: 10px 15px;
  }
}
.user-box .user-col.-right .user-anons-table table th span, .user-box .user-col.-right .user-anons-table table td span, .user-box .user-col.-right .user-offers-table table th span, .user-box .user-col.-right .user-offers-table table td span, .user-box .user-col.-right .user-message-table table th span, .user-box .user-col.-right .user-message-table table td span {
  padding: 0 5px;
}
.user-box .user-col.-right .user-anons-table table th a, .user-box .user-col.-right .user-anons-table table td a, .user-box .user-col.-right .user-offers-table table th a, .user-box .user-col.-right .user-offers-table table td a, .user-box .user-col.-right .user-message-table table th a, .user-box .user-col.-right .user-message-table table td a {
  color: #f54da3;
}
.user-box .user-col.-right .user-anons-table table th a:hover, .user-box .user-col.-right .user-anons-table table td a:hover, .user-box .user-col.-right .user-offers-table table th a:hover, .user-box .user-col.-right .user-offers-table table td a:hover, .user-box .user-col.-right .user-message-table table th a:hover, .user-box .user-col.-right .user-message-table table td a:hover {
  color: #d00c70;
}
.user-box .user-col.-right .user-message-table {
  margin-left: 0;
}
@media (max-width: 744px) {
  .user-box .user-col.-right .user-message-table td:nth-child(3) {
    max-width: 130px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
}
.user-box .user-anons-col .btn {
  white-space: normal;
  line-height: 20px;
  padding: 10px 5px;
  height: auto;
}
@media (min-width: 514px) {
  .user-box .user-fav-ads .row .item-col, .user-box .user-no-fav-ads .row .item-col, .user-box .user-anons-col .row .item-col {
    margin: 3px auto;
    min-width: 32%;
    max-width: 200px;
  }
}
@media (min-width: 532px) {
  .user-box .user-fav-ads .row .item-col, .user-box .user-no-fav-ads .row .item-col, .user-box .user-anons-col .row .item-col {
    margin: 3px;
    min-width: 32%;
    max-width: 24% !important;
  }
}
@media (min-width: 681px) {
  .user-box .user-fav-ads .row .item-col, .user-box .user-no-fav-ads .row .item-col, .user-box .user-anons-col .row .item-col {
    min-width: 24%;
  }
}
@media (min-width: 968px) {
  .user-box .user-fav-ads .row .item-col, .user-box .user-no-fav-ads .row .item-col, .user-box .user-anons-col .row .item-col {
    min-width: 32%;
  }
}
@media (min-width: 1144px) {
  .user-box .user-fav-ads .row .item-col, .user-box .user-no-fav-ads .row .item-col, .user-box .user-anons-col .row .item-col {
    min-width: 24%;
  }
}
.user-box .user-fav-ads .btn, .user-box .user-no-fav-ads .btn, .user-box .user-anons-col .btn {
  line-height: 20px;
  white-space: normal;
  padding-top: 5px;
  margin: 10px 0;
}
.user-box .user-ads-col .form-box {
  padding-top: 30px !important;
}
.user-box .user-ads-col .form-box p {
  margin-top: 20px !important;
}
.user-box .user-ads-col .btn {
  color: #f54da3;
  font-size: 11px;
  letter-spacing: 0.06px;
}
.user-box .user-ads-col .row {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.user-box .user-ads-col .row .item-col {
  margin-bottom: 15px;
  padding: 6px;
}
@media (min-width: 967px) {
  .user-box .user-ads-col .row .item-col {
    max-width: 25%;
  }
}
@media (min-width: 768px) {
  .user-box .user-ads-col .row .item-col .item-info {
    bottom: 15px;
  }
}
.user-box .user-ads-col .row .item-col .item-info .item-stats span {
  font-size: 14px;
}
.user-box .user-ads-col .row .item-col .item-info .item-stats span:last-child {
  float: right;
}
.user-box .user-ads-col .row .item-col h2 {
  text-align: center;
  font-size: 20px;
  padding: 22px 10px;
}
.user-box .user-hidden-profiles .btn {
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.82px;
}
.user-box .user-praises-col .user-praise {
  margin-bottom: 20px !important;
}
@media (max-width: 641px) {
  .user-box .user-praises-col .user-praise .user-praise-left {
    width: 100%;
    max-width: 25%;
    margin: 0 auto;
    min-width: 200px;
  }
}
.user-box .user-praises-col .user-praise .user-praise-right {
  max-width: 100%;
  font-size: 14px;
  color: #787578;
}
@media (min-width: 642px) {
  .user-box .user-praises-col .user-praise .user-praise-right {
    max-width: 75%;
    padding-left: 20px;
  }
}
@media (min-width: 968px) {
  .user-box .user-praises-col .user-praise .user-praise-right {
    max-width: 72%;
    padding-left: 10px;
  }
}
@media (min-width: 1083px) {
  .user-box .user-praises-col .user-praise .user-praise-right {
    max-width: 75%;
    padding-left: 20px;
  }
}
@media (min-width: 1280px) {
  .user-box .user-praises-col .user-praise .user-praise-right {
    padding-left: 40px;
  }
}
.user-box .user-praises-col .user-praise .user-praise-right .user-praise-info {
  display: flex;
}
.user-box .user-praises-col .user-praise .user-praise-right .user-praise-info .user-praise-info-logo {
  position: absolute;
}
.user-box .user-praises-col .user-praise .user-praise-right .user-praise-info .user-praise-profile-container {
  max-width: 100%;
  padding-left: 70px;
}
.user-box .user-praises-col .user-praise .user-praise-right .user-praise-info .user-praise-profile-container p {
  margin-bottom: 0;
}
.user-box .user-praises-col .user-praise .user-praise-right .user-praise-info .user-praise-profile-container .user-praise-profile-info {
  position: relative;
}
.user-box .user-praises-col .user-praise .user-praise-right .user-praise-info .user-praise-profile-container .user-praise-profile-info .user-praise-profile-name {
  font-weight: bold;
  color: #000;
}
.user-box .user-praises-col .user-praise .user-praise-right .user-praise-info .user-praise-profile-container .user-praise-profile-info .user-praise-profile-date {
  margin-bottom: 25px;
}
.user-box .user-praises-col .user-praise .user-praise-right .user-praise-info .user-praise-profile-container .user-praise-rating {
  margin-bottom: 20px;
  margin-left: -70px;
}
@media (min-width: 375px) {
  .user-box .user-praises-col .user-praise .user-praise-right .user-praise-info .user-praise-profile-container .user-praise-rating {
    position: absolute;
    margin: 0;
    top: 0;
    right: 0;
    margin-bottom: 0;
  }
}
.user-box .user-praises-col .user-praise .user-praise-right .user-praise-info .user-praise-profile-container .user-praise-text {
  margin-left: -70px;
  letter-spacing: 0.07px;
  line-height: 27px;
}
@media (min-width: 642px) {
  .user-box .user-praises-col .user-praise .user-praise-right .user-praise-info .user-praise-profile-container .user-praise-text {
    margin-left: 0;
  }
}
.user-box .form-box {
  padding: 40px 30px;
}
.user-box .form-box a.active {
  font-weight: bold;
}
.user-box .form-box a.active span {
  color: #000;
}
.user-box .form-box a:hover span {
  color: #f54da3;
  transition: all 0.3s ease 0s;
}
.user-box .form-box ul li {
  padding: 5px;
}
.user-box .form-box ul li span {
  float: right;
  color: #f7dcdc;
}
.user-box .user-menu {
  margin-bottom: 30px;
}
.user-box .user-menu .title-col h2 {
  color: #f54da3;
  font-weight: 700;
}

.offer-box {
  flex: 0 0 100%;
}
.offer-box .form-box {
  margin-bottom: 10px;
  padding: 0;
}
.offer-box .form-box .row {
  margin: 0;
}
.offer-box .form-box .premium-offer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background: url("../images/premium-bg.png") no-repeat;
  z-index: 3;
}
.offer-box .form-box .premium-offer::after {
  content: "ogłoszenie premium";
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  position: absolute;
  font-size: 9px;
  letter-spacing: 0.05px;
  line-height: 11px;
  top: 18px;
  left: 18px;
  width: 75px;
  height: 75px;
  transform: rotate(-45deg);
  z-index: 4;
}
.offer-box .form-box .offer-items-col {
  font-size: 16px;
}
.offer-box .form-box .offer-items-col:first-child {
  padding-bottom: 0;
}
@media (min-width: 864px) {
  .offer-box .form-box .offer-items-col:first-child {
    padding-bottom: 30px;
  }
}
@media (min-width: 1000px) {
  .offer-box .form-box .offer-items-col:first-child {
    border-right: 1px solid #f7dcdc;
  }
}
.offer-box .form-box .offer-items-col:last-child {
  padding-top: 0;
}
@media (min-width: 1000px) {
  .offer-box .form-box .offer-items-col:last-child {
    padding-top: 30px;
  }
}
.offer-box .offer-pages ul {
  font-size: 0;
  text-align: center;
}
.offer-box .offer-pages ul li {
  display: inline-block;
  font-size: 16px;
}
.offer-box .offer-pages ul li a {
  padding: 6px;
}
.offer-box .offer-pages ul li a.active {
  color: #f54da3;
}
.offer-box .offer-pages ul li .icon-holder {
  margin: 0;
}

.radio-payment-box {
  display: block;
  margin: 0 10px 10px;
  padding: 0;
  min-width: 100%;
}
@media (min-width: 500px) {
  .radio-payment-box {
    min-width: 33.33%;
  }
}
@media (min-width: 894px) {
  .radio-payment-box {
    min-width: 150px;
  }
}
@media (min-width: 960px) {
  .radio-payment-box {
    min-width: 33.33%;
  }
}
@media (min-width: 1165px) {
  .radio-payment-box {
    min-width: 150px;
  }
}
@media (min-width: 1325px) {
  .radio-payment-box {
    min-width: 180px;
  }
}
.radio-payment-box label .sub-label {
  padding: 10px 0;
  display: block;
  height: 120px;
  text-align: center;
  color: #f54da3;
  font-size: 16px;
  border: 1px solid #f7dcdc;
  border-radius: 10px;
  cursor: pointer;
  max-width: 100%;
}
@media (min-width: 500px) {
  .radio-payment-box label .sub-label {
    padding: 30px 0;
    height: 160px;
  }
}
.radio-payment-box input[type=radio] {
  display: none;
}
.radio-payment-box input[type=radio]:checked + .sub-label {
  color: #f54da3 !important;
  background-color: rgba(245, 77, 163, 0.05) !important;
  border: 1px solid #f54da3;
}

.btn-back-home {
  padding: 0 !important;
}

.add-anons-box-end .form-box {
  padding: 0;
}
.add-anons-box-end .form-box .row {
  margin: 0;
}

.add-photo-upload {
  margin-top: 15px;
  max-width: 100%;
}
.add-photo-upload .qq-uploader, .add-photo-upload .qq-uploader-inner {
  max-width: 100% !important;
}
@media (min-width: 1040px) {
  .add-photo-upload {
    max-width: 280px;
  }
}

.form-box {
  border: 1px solid #f7dcdc;
  border-radius: 5px;
  display: block;
  margin-bottom: 10px;
  padding: 25px;
}
@media (min-width: 768px) {
  .form-box {
    padding: 40px 100px;
  }
}
.form-box .add-anons-items-end {
  padding: 70px 50px;
  text-align: center;
}
.form-box .add-anons-items-end .title-col {
  display: block;
}
@media (min-width: 768px) {
  .form-box .add-anons-items-end {
    padding: 50px 70px;
    text-align: left;
  }
  .form-box .add-anons-items-end .title-col {
    display: flex;
  }
}
@media (min-width: 900px) {
  .form-box .add-anons-items-end {
    padding: 100px;
    max-width: 100%;
  }
}
.form-box .add-anons-items-end:first-child {
  border-bottom: 1px solid #f7dcdc;
}
@media (min-width: 768px) {
  .form-box .add-anons-items-end:first-child {
    border-right: 1px solid #f7dcdc;
    border-bottom: 0;
  }
}
.form-box .add-anons-items-end p {
  font-size: 16px;
  max-width: 372px;
  margin: 0 auto;
}
@media (min-width: 926px) {
  .form-box .add-anons-items-end p {
    margin: 0;
  }
}
.form-box .add-anons-items-end .add-anons-items-end-center {
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fbf7f0;
  position: absolute;
  color: #fff;
  padding: 27px 37.5px;
  vertical-align: middle;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  font-size: 26px;
  box-shadow: 0 0 0 5px #f7dcdc;
}
@media (min-width: 768px) {
  .form-box .add-anons-items-end .add-anons-items-end-center {
    left: -50px;
    transform: translateY(-50%);
    top: 50%;
  }
}
.form-box .title-col.-sub h1, .form-box .title-col.-sub h2, .form-box .title-col.-sub h3, .form-box .title-col.-sub h4, .form-box .title-col.-sub h5, .form-box .title-col.-sub h6 {
  font-size: 20px;
}
.form-box .info-text {
  color: #787578;
  line-height: 1.2;
}
.form-box .radio label .sub-label {
  display: inline-block;
}
.form-box .radio label .sub-label + .tip-box {
  margin-left: 10px;
}

.tip-box {
  display: inline-block;
  position: relative;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-weight: 700;
  border-radius: 50%;
  background-color: #712f85;
  color: #ffffff;
}

.email-tip-box {
  color: #361042;
  width: 18px;
  height: 18px;
  line-height: 18px;
  background-color: #f54da3;
  font-size: 14px;
}

.form-item.-work-hour {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.form-item.-work-hour > label {
  flex: 0 0 150px;
  margin-right: 45px;
}

.form-item-inner-col {
  margin-bottom: 15px;
}

.hours-from-to {
  flex: 1 0 100%;
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 15px;
  margin-right: -5px;
  margin-left: -5px;
}
@media (min-width: 880px) {
  .hours-from-to {
    margin-right: 60px;
    margin-left: 0;
    margin-bottom: 0;
    flex: 0 0 190px;
  }
}
.hours-from-to label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  display: block;
}

.hours-from,
.hours-to {
  padding: 0 5px;
  flex: 1 0 50%;
}

.hours-full {
  flex: 0 0 220px;
  display: flex;
  justify-content: space-between;
}

@media (min-width: 1270px) {
  .week-switch {
    margin-left: 60px;
  }
}
@media (max-width: 1269px) {
  .week-switch {
    flex: 1 0 100%;
    order: -1;
    margin-bottom: 10px;
  }
}
.week-switch a {
  font-size: 12px;
  font-weight: 400;
  color: #f54da3;
}
.week-switch a:hover {
  color: #d00c70;
}

.week-full,
.week-days {
  display: none;
}
.week-full.show,
.week-days.show {
  display: block;
}

.anons-text-box {
  display: block;
  margin-bottom: 5px;
}

.anons-text-trigger a {
  color: #f54da3;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.anons-text-trigger a .on {
  display: inline;
}
.anons-text-trigger a .off {
  display: none;
}
.anons-text-trigger a.collapsed .on {
  display: none;
}
.anons-text-trigger a.collapsed .off {
  display: inline;
}

.qq-add-offer-uploader-inner {
  height: 220px !important;
}

.anons-text-collapse, .add-offer-collapse {
  margin-top: 15px;
}

.form-items-col .form-item .anons-text-collapse textarea,
.form-items-col .form-item .add-offer-collapse textarea,
.form-items-col .form-item .anons-text-collapse textarea.form-control {
  display: block;
  max-width: 100%;
  min-height: 380px;
}

.form-box .form-item .add-offer-collapse textarea {
  display: block;
  max-width: 100%;
  min-height: 380px;
}

.photo-upload-info .label {
  display: block;
  margin-bottom: 10px;
  color: #211d22;
  font-size: 16px;
}
.photo-upload-info ul {
  display: block;
  margin-bottom: 40px;
}
.photo-upload-info ul li {
  display: block;
  position: relative;
  padding-left: 16px;
  color: #787578;
  font-size: 14px;
  margin-bottom: 15px;
}
.photo-upload-info ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #211d22;
}

.info-box {
  border-radius: 5px;
  border: 1px solid #712f85;
  position: relative;
  display: block;
  padding: 20px 30px;
  color: #712f85;
  font-size: 14px;
  line-height: 21px;
  max-width: 475px;
  margin: 14px 0 0 14px;
}
.info-box::before {
  content: "i";
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  color: #f7dcdc;
  background-color: #f54da3;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
  position: absolute;
  top: -14px;
  left: -14px;
}
.info-box a {
  color: #f54da3;
}
.info-box a:hover {
  color: #f87dbc;
}

.upload-label {
  display: block;
  margin-bottom: 15px;
  max-width: 360px;
  text-align: center;
  color: #712f85;
  font-size: 16px;
}

.photo-upload .qq-uploader {
  max-width: 360px;
}
.qq-gallery {
  position: relative;
  min-height: 200px;
  max-height: 490px;
  overflow-y: auto;
  width: inherit;
  border-radius: 6px;
  border: 1px dashed #CCC;
  background-color: #FAFAFA;
  padding: 20px;
}
.photo-upload .qq-uploader-inner {
  display: block;
  position: relative;
  max-width: 360px;
  height: 340px;
  background-color: #fbf7f0;
  margin-top: 30px;
}

.qq-upload-success {
  margin-top: 30px;
  border-radius: 5px;
  border: 1px dashed #f54da3;
  background-color: #fbf7f0;
}
.photo-upload .qq-uploader-inner::before {
  content: "";
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #f7dcdc;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.photo-upload .qq-uploader-inner::after {
  content: url("../images/icon-photo-2.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.photo-upload .qq-upload-status-text-selector {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 10px;
  background-color: rgba(245, 77, 163, 0.8);
  z-index: 2;
}
.photo-upload .qq-thumbnail-selector {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  max-width: none;
  height: 100%;
}

.hello-page {
  background: url("../images/hello-bg.jpg") no-repeat;
  background-size: cover;
}
.hello-page .hello-col {
  max-width: 520px;
  position: relative;
  height: 100vh;
  border-radius: 10px;
}
.hello-page .hello-col .form-box {
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-bottom: 0;
  border: none;
}
.hello-page .hello-col .form-box .form-item.-top {
  padding: 40px 3.75rem;
  padding-bottom: 30px;
  margin-bottom: 0;
  border-bottom: 1px solid #f7dcdc;
}
.hello-page .hello-col .form-box .form-item.-top .logo-col {
  margin-bottom: 40px;
}
.hello-page .hello-col .form-box .form-item.-top .hello-info {
  color: #361042;
}
.hello-page .hello-col .form-box .form-item.-top .hello-info .hello-text p {
  font-size: 16px;
  line-height: 32px;
}
.hello-page .hello-col .form-box .form-item.-top .hello-info .hello-text p:first-child {
  letter-spacing: 0.11px;
  font-size: 20px;
}
.hello-page .hello-col .form-box .form-item.-bottom {
  margin-bottom: 0;
  padding: 40px 60px;
}
.hello-page .hello-col .form-box .form-item.-bottom > a {
  letter-spacing: 0.82px;
  text-transform: uppercase;
  width: 140px;
}
.hello-page .hello-col .form-box .form-item.-bottom > a:first-child {
  margin-right: 20px;
}
@media (max-width: 768px) {
  .hello-page {
    background: #fff;
  }
  .hello-page .hello-col {
    max-width: 100%;
  }
  .hello-page .hello-col .form-box {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
  }
  .hello-page .hello-col .form-box .form-item.-top {
    padding: 30px 40px;
  }
  .hello-page .hello-col .form-box .form-item.-top .hello-info .hello-text p {
    font-size: 12.5px;
    line-height: 21px;
  }
}
@media (max-width: 768px) and (max-width: 425px) {
  .hello-page .hello-col .form-box .form-item.-top .hello-info .hello-text p {
    font-size: 13px;
    line-height: 19px;
  }
}
@media (max-width: 768px) {
  .hello-page .hello-col .form-box .form-item.-top .hello-info .hello-text p:first-child {
    font-size: 16px;
    line-height: 25px;
  }
}
@media (max-width: 768px) and (max-width: 425px) {
  .hello-page .hello-col .form-box .form-item.-top .hello-info .hello-text p:first-child {
    font-size: 14px;
    line-height: 21px;
  }
}
@media (max-width: 768px) and (max-width: 425px) {
  .hello-page .hello-col .form-box .form-item.-top {
    padding: 20px 30px;
  }
}
@media (max-width: 768px) {
  .hello-page .hello-col .form-box .form-item.-bottom {
    padding: 25px 40px;
    text-align: center;
  }
}
@media (max-width: 768px) and (max-width: 425px) {
  .hello-page .hello-col .form-box .form-item.-bottom {
    padding: 20px 30px;
  }
  .hello-page .hello-col .form-box .form-item.-bottom > a {
    width: 100%;
  }
  .hello-page .hello-col .form-box .form-item.-bottom > a:first-child {
    margin-bottom: 15px;
  }
}

.warning-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(68, 68, 68, 0.55);
  padding: 20px;
  z-index: 100
}

.warning-content {
  display: block;
  flex: 1 0 100%;
  max-width: 655px;
  padding: 30px 30px 40px;
  background-color: #ffffff;
  color: #444444;
  box-shadow: 0px 0px 20px rgba(68, 68, 68, 0.8);
  border-radius: 20px;
  max-height: 90%;
  overflow-y: auto
}

.warning-header {
  display: block;
  margin-bottom: 20px;
  text-align: center
}

.warning-header h1,
.warning-header h2,
.warning-header h3,
.warning-header h4,
.warning-header h5,
.warning-header h6 {
  font-weight: 900;
  font-size: 40px;
  line-height: 60px;
  text-transform: uppercase;
  color: #FF5E3A;
  letter-spacing: 0.05em
}

.warning-header .sub-label {
  font-weight: 900;
  font-size: 19px;
  line-height: 40px;
  letter-spacing: 0.05em;
  text-transform: capitalize
}

.warning-body {
  display: block;
  margin-bottom: 20px
}

.warning-body p {
  font-size: 13px;
  line-height: 19px;
  letter-spacing: 0.05em
}

.warning-body a {
  color: #FF5E3A;
  text-decoration: underline
}

.warning-body a:hover {
  color: #FF7F62
}

.warning-footer {
  text-align: center
}

.warning-footer .btn.btn-blue {
  width: 100%;
  max-width: 290px;
  height: 55px;
  line-height: 53px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em
}
@media (max-width: 468px){
  .warning-header h1, .warning-header h2, .warning-header h3, .warning-header h4, .warning-header h5, .warning-header h6 {font-size: 27px;line-height: 37px;}
  .warning-body p {font-size: 12px;line-height: 18px;}
  .warning-header .sub-label {font-weight: 400;font-size: 17px;}
  .warning-header {margin-bottom: 10px;}
  .warning-footer .btn.btn-blue {height: 50px;line-height: 50px;font-size: 18px;}
}

.select2-selection {
  line-height: 38px;
}

.select2-dropdown {
  background-color: #361042;
  border: 1px solid rgba(0,0,0,0.15);
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}


.select2-results__option {
  padding: 0 10px;
  color: #ffffff;
  height: 24px;
  line-height: 24px;
  font-size: 13px;
  font-weight: 400;
  display: block;
  text-transform: uppercase;

}

.select2-container--default .select2-search--dropdown .select2-search__field {
  color: #fff;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #f54da3;
}
.select2-container--default .select2-selection--single {
  background-color:transparent;
  border: 1px solid transparent;
  border-radius: 4px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #f54da3;
  color: white;
}
.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #F586BF;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #f54da3;
  height: 38px;
  line-height: 37px;
  border-bottom: 1px solid #f54da3;
  padding: 0 10px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 14px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #f54da3 transparent transparent transparent;
  border-style: solid;
  border-width: 7px 5px 0 5px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container .select2-selection--single {
  color: #f54da3;
}
.form-item .select2-selection--multiple {
  border-color: #f54da3;
  border-style: solid;
  border-width: 1px;
  background-color:transparent;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: #f54da3;
  border-style: solid;
  border-width: 1px;
}
.form-item  .select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #f54da3;
  border: 1px solid #f54da3;
  color: #ffffff;
}

.form-item  .select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
  color: #ffffff;
}

.form-item.-services .select2-container {
  width: 250px !important;
 }

@media (min-width: 514px) {
  .form-item.-services .select2-container {
    width: 495px !important;
  }
}
@media (min-width: 532px) {
  .form-item.-services .select2-container {
    width: 500px !important;
  }
}
@media (min-width: 681px) {
  .form-item.-services .select2-container {
    width: 650px !important;
  }
}
@media (min-width: 968px) {
  .form-item.-services .select2-container {
    width: 950px !important;
  }
}
@media (min-width: 1144px) {
  .form-item.-services .select2-container {
    width: 1100px !important;
  }
}

.filter {
  margin: 15px;
  flex: 1 0 30%;
}

@media (max-width: 820px) {
  .filter {
    margin: 10px;
    flex: 1 0 100%;
  }
}

.filter .select2-selection--multiple {
  border-color: #f54da3;
  border-style: solid;
  border-width: 1px;
  background-color:transparent;
}

.filter  .select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #f54da3;
  border: 1px solid #f54da3;
  color: #ffffff;
}

.filter  .select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
  color: #ffffff;
}

.filter .select2-container {
  width: 100% !important;
}


/* THUMBNAILS GRID
  ------------------------- */
.thumbs ul {
  margin: 0 -4px;
}
.thumbs ul li, .thumbs ul .thumb-item {
  display: block;
  float: left;
  width: 172px;
  height: 128px;
  margin: 0 3px 14px 4px;
  font-size: 12px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.thumbs ul li label.radio, .thumbs ul .thumb-item label.radio {
  font-size: 12px;
  line-height: 22px;
  width: 100%;
  text-align: left;
}
.thumbs ul li label.radio i, .thumbs ul .thumb-item label.radio i {
  top: -1px;
}
.thumbs ul li .thumb, .thumbs ul .thumb-item .thumb {
  display: block;
  max-width: 100%;
  max-height: 104px;
  margin: 0 auto;
}
.thumbs ul li .options, .thumbs ul .thumb-item .options {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  font-size: 20px;
  background: rgba(255, 255, 255, 0.5);
  -moz-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.thumbs ul li .options .option-inline, .thumbs ul .thumb-item .options .option-inline {
  font-size: 20px;
  color: #fff;
}
.thumbs ul li .options a.option-inline:hover, .thumbs ul .thumb-item .options a.option-inline:hover {
  color: #e55c5c;
}

.thumbs ul li .options .option, .thumbs ul .thumb-item .options .option {
  font-size: 20px;
  color: #fff;
  display: block;
}
.thumbs ul li .options a.option:hover, .thumbs ul .thumb-item .options a.option:hover {
  color: #e55c5c;
}
.thumbs ul li a, .thumbs ul .thumb-item a {
  font-size: 11px;
  color: #e55c5c;
  position: relative;
  display: inline-block;
}
.thumbs img {
  border: 1px solid #d0d0d0;
}
.thumbs.grid-approve ul li {
  margin-bottom: 7px;
  width: 175px;
  padding: 2px;
  border: 1px solid #ddd;
  background: #fff;
}
.thumbs.grid-approve ul li a {
  display: block;
  text-align: center;
}
.thumbs.grid-approve ul li img {
  display: block;
  margin: 0 auto;
  max-height: 114px;
}
.thumbs:after {
  clear: both;
  display: block;
  height: 0;
  content: "";
  visibility: hidden;
}

.color-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../images/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.ads-nav {
  justify-content: center;
  margin-top: 20px;
  width: 100%;
}

.ads-nav ul{
  padding: 0;
  list-style-type: none;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0px;
  text-align: center;
}

.ads-navigation li {
  padding: 0;
  list-style-type: none;
  justify-content: center;
  flex-wrap: wrap;
  display: inline-block;
  font-size: 16px;
}

.ads-nav ul li a {
   padding: 6px;
 }

.ads-nav ul li a .active {
   color:  #f54da3;
}

.ads-nav .ads-navigation .active {
  color:  #f54da3;
}

span.required-error {
    display: none;
    position: absolute;
    top: -20px;
    right: calc(100% - 280px);
    color: #fff;
    border-radius: 4px;
    background: rgba(0,0,0,0.7);
    align-items: center;
    padding: 5px 10px;
}

span.required-error:after {
    position: absolute;
    content: '';
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid rgba(0,0,0,0.7);
}

.content-item__tooltip {
  position: absolute;
  z-index: 1000;
  background-color: #712f85;
  opacity: 0.95;
  padding: 15px;
  color: #fff;
  width: 180px;
}
.content-item__tooltip span {
  display: block;
}
.content-item__tooltip .item-info.-top {
  margin-bottom: 25px;
}
.content-item__tooltip .item-info.-bottom {
  font-size: 13px;
}
.content-item__tooltip .item-info.-bottom span {
  font-weight: 400;
}
.content-item__tooltip .item-info.-bottom span > span {
  display: inline-block;
  font-weight: 700;
}
.content-item__tooltip .item-info .item-name {
  font-size: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1.2;
}
.content-item__tooltip .item-info .item-stats {
  font-size: 14px;
  font-weight: 700;
  line-height: 15px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(251, 247, 240, 0.3);
  margin-top: 5px;
}
.content-item__tooltip .item-info.-bottom .-title{
  color: #f7dcdc;
  margin-bottom: 5px;
}

.content-item__tooltip .item-info.-bottom .-content{
  color: #ffffff;
  margin-left: 5px;
}

.item-col.col a {
  border: 3px solid transparent;
}

.item-col.col a:hover {
  border-radius: 0;
  border-style: solid;
  border-color: #f54da3;
}

.step-icon{
    position:relative;
    margin-top: 30% !important;
}



.mlm14 {
	margin-left:-14px !important;
}

/*# sourceMappingURL=styles.css.map */
