a, img{
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
a,
.btn,
.overlay{
  transition: all .3s ease;
}
.loader{
  width: 100%;
  height: 100%;
  z-index: 10000;
  background-color: rgba(255,255,255,.6);
  transition: all .2s ease;
  pointer-events: all;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
}
.loader .lds-ellipsis{
  display: inline-block;
  width: 64px;
  height: 64px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -32px;
  margin-top: -32px;
}

.loader-content{
  width: 100%;
  height: 100%;
  z-index: 5000;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: block;
}
.loader-content-relative{
  position: relative;
  height: 160px;
}

.content_edit_image{
  height: 64px;
  position: relative;
}
.content_edit_image .loader-content-relative {
    height: 64px;
    width: 64px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -32px;
    margin-top: -32px;
}

.btn_trash {
  font-size: 20px;
  line-height: 1.5;
  border-radius: 6px;
  padding: 2px;
  width: 44px;
}

#message-loader{
    height: 64px;
    width: 64px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -32px;
    margin-top: -32px;
}

.loader-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width:50px;
  height:50px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.3);
  margin-left: -25px;
  margin-top: -25px;
}

.loader-line-mask {
  position: absolute;
  left: 50%;
  top: 50%;
  width:25px;
  height:50px;
  margin-left: -25px;
  margin-top: -25px;
  overflow: hidden;
  -webkit-transform-origin: 25px 25px;
  transform-origin: 25px 25px;
  -webkit-mask-image: -webkit-linear-gradient(top, rgba(0,0,0,1), rgba(0,0,0,0));
  animation: rotate 1s infinite linear;
}
.loader-line {
  width:50px;
  height:50px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,1);
}


.loader-circle.medio {
  width:35px;
  height:35px;
  margin-left: -17.5px;
  margin-top: -17.5px;
}
.loader-line-mask.medio {
  width:17.5px;
  height:35px;
  margin-left: -17.5px;
  margin-top: -17.5px;
  -webkit-transform-origin: 17.5px 17.5px;
  transform-origin: 17.5px 17.5px;
}
.loader-line.medio {
  width:35px;
  height:35px;
}

.loader-circle.mini {
  width:25px;
  height:25px;
  margin-left: -12.5px;
  margin-top: -12.5px;
}
.loader-line-mask.mini {
  width:12.5px;
  height:25px;
  margin-left: -12.5px;
  margin-top: -12.5px;
  -webkit-transform-origin: 12.5px 12.5px;
  transform-origin: 12.5px 12.5px;
}
.loader-line.mini {
  width:25px;
  height:25px;
}

.loader-circle.color {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}
.loader-line-mask.color {
  -webkit-mask-image: -webkit-linear-gradient(top, rgba(0,0,0,1), rgba(0,0,0,0));
}
.loader-line.color {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0,1);
}


@keyframes rotate {
  0%   {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}
}
@keyframes fade {
  0%   {opacity: 1;}
  50% {opacity: 0.25;}
}
@keyframes fade-in {
  0%   {opacity: 0.6; }
  50%   {opacity: 0.8; }
  100% {opacity: 0.6; }
}


.lds-ellipsis div {
  position: absolute;
  top: 27px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #000000;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis.lw div {
  background: #ffffff;
}
.lds-ellipsis div:nth-child(1) {
  left: 6px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 6px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 26px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 45px;
  animation: lds-ellipsis3 0.6s infinite;
}



.lds-ellipsis.mini div {
  position: absolute;
  top: 1px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #000000;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis.mini div {
  background: #ffffff;
}
.lds-ellipsis.mini div:nth-child(1) {
  left: 1px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis.mini div:nth-child(2) {
  left: 1px;
  animation: lds-ellipsismini2 0.6s infinite;
}
.lds-ellipsis.mini div:nth-child(3) {
  left: 14px;
  animation: lds-ellipsismini2 0.6s infinite;
}
.lds-ellipsis.mini div:nth-child(4) {
  left: 26px;
  animation: lds-ellipsis3 0.6s infinite;
}


@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(19px, 0);
  }
}

@keyframes lds-ellipsismini2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(13px, 0);
  }
}

.loader-content-relative .lds-ellipsis {
  display: inline-block;
  width: 64px;
  height: 64px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -32px;
  margin-top: -32px;
}

.download-list{
  margin: 0 !important;
  background: #f2f2f2;
  border-radius: 6px;
  border: 1px solid #ebeef1;
}
.download-list li:hover{
  background: #ffffff;
}

.download-list li:first-child{
  border-radius: 6px 6px 0 0;
}

.download-list li:last-child{
  border-radius: 0 0 6px 6px;
}

.download-list li:only-child{
  border-radius: 6px;
}
.download-list .fileuploader-item:last-child {
    margin-bottom: 0px !important;
}
.emojione {
  font-size: inherit !important;
  height: 2ex !important;
  width: 2.1ex !important;
  min-height: 18px !important;
  min-width: 18px !important;
  display: inline-block !important;
  margin: -.4ex .10em .2ex !important;
  line-height: normal !important;
}


.full-center{
  display: flex;
  min-height: calc(100vh - 150px);
}
.full-center .ui-block{
  width: 100%;
}
.full-center.mrl{
  margin-right: -10px;
  margin-left: -10px;
}
.full-center.w100{
  display: flex;
  min-height: 100vh;
}
.content-full-center{
  display: flex;
  flex-direction: column;
  width: 100%;
}

.content-full-center.text-danger{
  color: #de5d5d;
  text-transform: uppercase;
  text-align: center;
  font-size: 14px;
}
.content-full-center.text-success{
  color: #83bb64;
  text-transform: uppercase;
  text-align: center;
  font-size: 14px;
}
.content-full-center.text-info{
  color: #2e8fda;
  text-transform: uppercase;
  text-align: center;
  font-size: 14px;
}

.teacher.style-2 .btn-secondary{
  border: 2px solid #e6e6e6 !important;
  border-radius: 6px !important;
  padding: 4px 10px 4px 4px !important;
}
.teacher.style-2.has-error .btn-secondary{
  border-color: #de5d5d !important;
}
.teacher.style-2.has-success .btn-secondary{
  border-color: #a5dc86 !important;
}

.bootstrap-select.teacher.style-2 li.selected a{
  padding: 8px !important;
}

img.emojione {
  /* prevent img stretch */
  width: auto;
}
.title_wait{
  font-size: 14px;
  color: #de5d5d;
  font-weight: 600;
}
.title_wait i{
  font-size: 19px;
  vertical-align: sub;
}

.title_paid{
  font-size: 14px;
  color: #7db160;
  font-weight: 600;
}
.title_paid i{
  font-size: 19px;
  vertical-align: sub;
}

table .title_wait{
  font-size: 12px !important;
  color: #de5d5d !important;
  font-weight: 600 !important;
  margin-top: 4px;
}
table .title_paid{
  font-size: 12px !important;
  color: #7db160 !important;
  font-weight: 600 !important;
  margin-top: 4px;
}
table .title_wait i{
  font-size: 16px;
  vertical-align: bottom;
}
table .title_paid i{
  font-size: 16px;
  vertical-align: bottom;
}

span.disabled {
  font-weight: 600;
  color: #b0b3c7;
  font-size: 14px;
}
#zipcode-loader,
#zipcode_send-loader,
#email-loader,
#username-loader,
#coupon-loader{
  position: relative;
  right: 45px;
  float: right;
  bottom: 27px;
}
#installment-loader,
#promotion_installment-loader,
#promotion_installment_2-loader,
#promotion_installment_3-loader,
#promotion_installment_4-loader{
  position: relative;
  right: 64px;
  float: right;
  bottom: 27px;
}

.w-l div{
  position: absolute;
  right: 22px;
  top: 6px;
}

.loader-feed{
  position: relative;
  height: 50px;
}
.c-large{
  margin: -40px -64px !important
}

.new-offer {
  width: 500px;
}

.new-offer .btn {
  margin-bottom: 0px;
}

#items_offer .product-price {
  margin-right: 0;
}
.bg-variation .no-text .size_close,
.bg-variation .no-text .size_close:hover {
  right: -8px;
}
.bg-variation.bg-ext{
  padding-top: 6px;
  border-radius: 6px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}  
.bg-variation.bg-ext .size_close{
  right: 6px;
  top: -6px;
}
.bg-variation.bg-ext .size_close i {
  padding: 10px;
  font-size: 21px;
}
.mini-link{
  text-transform: uppercase;
  font-size: 11px;
  margin-top: 1px;
}
.mini-link:hover{
  text-decoration: underline;
}
.ui-block {
  background-color: #fff;
  position: relative;
  height: 100%;
}
.col-border{
  border-left: 1px solid #e6e6e6;
}

.ui-block.col-border{
  border-left: 1px solid #e6e6e6;
}
.ui-block.col-border-r{
  border-right: 1px solid #e6e6e6;
}

.ui-block .ui-block-title:last-child {
    border-bottom: 0;
}

.modal-dialog.ui-block {
    background-color: #fff !important;
    border-radius: 6px !important;
    border: 1px solid #e6e6e6 !important;
    margin-bottom: 15px !important;
    position: relative !important;
    height: auto !important;
}

.image_qr{
  border: 1px solid #e6e6e6;
  border-radius: 6px;
}

#content-element .btn{
  margin-bottom: 0px;
}

.new_message{
  line-height: 40px;
}
.new_message .author-thumb {
  text-align: center;
  font-size: 28px;
}
.new_message .notification-event{
  margin-top: 10px;
}


.element.ui-block-title {
  padding: 14px;
    line-height: 1;
    border: 1px solid #e6e6e6 !important;
    display: table;
    width: 100%;
    position: relative;
    border-radius: 6px 6px 0 0;
    text-transform: uppercase;
    margin-top: 12px;
    background: #fff;
}


.element.order.ui-block-title {
  border-radius: 6px !important;
}
.element.ui-block-title .title {
  font-size: 0.812rem;
  text-transform: uppercase;
}

.element.ui-block-title .product-del {
  position: absolute;
  font-size: 20px;
  padding: 10px;
  top: 0;
  right: 0;
  color: #888888 !important;
  border-radius: 0 5px 0 0;
}

.element.ui-block-title .movedownlink {
  position: absolute;
  font-size: 20px;
  padding: 10px;
  top: 0;
  right: 0;
  color: #888888 !important;
  border-radius: 0 5px 0 0;
}

.element.ui-block-title .moveuplink {
  position: absolute;
  font-size: 20px;
  padding: 10px;
  top: 0;
  right: 40px;
  color: #888888 !important;
  border-radius: 0;
}

.element.ui-block-title .product-del:hover,
.element.ui-block-title .movedownlink:hover,
.element.ui-block-title .moveuplink:hover {
  color: #000000 !important;
  background-color: #f2f2f2;
}
.recordsArray{
  cursor: move;
}
.recordsArray:last-child .movedownlink{
  pointer-events: none;
  opacity: 0.6;
}
.recordsArray:first-child .moveuplink{
  pointer-events: none;
  opacity: 0.6;
}

#div_episodes {
  padding-left: 10px;
}

#order-element {
  padding-left: 18px;
}
#div_episodes .col-md-4 {
  padding-right: 10px;
  padding-left: 0px;
  height: 215px;
  margin-bottom: 15px;
  float: left;
}
#div_episodes .ui-block {
  margin-bottom: 0px !important;
}
#div_episodes .post-content{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#div_episodes .post-thumb img{
  background-position: center;
  background-size: cover;
}

.sortable-box-placeholder {
  background-color: #f5f5f5;
  box-shadow: #e6e6e6 0px 0px 0px 1px inset;
  position: relative;
  border-radius: 6px;
  margin-right: 10px;
  height: 215px;
  margin-bottom: 15px;
  float: left;
}

.sortable-box-placeholder.round-all {
  background-color: #f5f5f5 !important;
  box-shadow: #e6e6e6 0px 0px 0px 1px inset !important;
  position: relative !important;
  border-radius: 6px !important;
  height: 42px !important;
  margin-bottom: 12px !important;
  float: left !important;
}

#order-element .col-sm-12 {
  padding-left: 0px !important;
  height: 42px !important;
  margin-bottom: 12px !important;
  float: left !important;
}

.recordsArray .ui-block-title{
  margin-top: 0;
  margin-bottom: 12px;
}

.sortable-box-placeholder *,
.sortable-box-placeholder-teacher * {
  visibility:hidden;
}

.sortable-box-placeholder-teacher {
  background-color: #f5f5f5;
  box-shadow: #e6e6e6 0px 0px 0px 1px inset;
  position: relative;
  border-radius: 6px;
  margin-right: 10px;
  height: 379px;
  margin-bottom: 0px;
  float: left;
}

#div_teacher {
  padding-left: 10px;
}

#calendar{
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
#calendar_weekdays div{
  display:inline-block;
  vertical-align:top;
}
#calendar_content, #calendar_weekdays, #calendar_header{
  position: relative;
  width: 100%;
  overflow: hidden;
  float: left;
  z-index: 10;
}
#calendar_weekdays div, #calendar_content div{
  width:40px;
  height: 40px;
  overflow: hidden;
  text-align: center;
  background-color: #ffffff;
  color: #333333;
  font-size: 16px;
  border-bottom: 1px solid #efefef;
}
#calendar_content div{
  float: left;
  color: #666666;
  background-color: #f9f9f9;
  font-weight: 600;
  font-family: 'KoHo-Bold';
  border-bottom: 1px solid #efefef;
  border-right: 1px solid #efefef;
  transition: all .3s ease;
}

#calendar_content div:hover{
  background-color: #f2f2f2;
}
#calendar_content div.blank{
  background-color: #ffffff;
  border-right: 1px solid #ffffff;
}
#calendar_content div.blank.last{
  border-bottom: 0;
}
#calendar_content .first:last-child{
  border-right: 1px solid #efefef;
}
#calendar_header, #calendar_content div.today{
  background-color: #000000;
}
#calendar_content div.today{
  color: #FFFFFF;
}
#calendar_header {
    width: 100%;
    height: 70px;
    text-align: center;
    background-color: #333333;
}
#calendar_header strong{
  color: #FFFFFF;
}
#calendar_header h1{
    font-size: 1.5em;
    color: #f8f8f8;
    float:left;
    width:70%;
    padding: 22px 0;
}
#calendar_header .btn_prev{
    color: #FFFFFF;
    float: left;
    width: 15%;
    padding: 24px 0;
    line-height: 20px;
    font-size: 22px;
    text-align: center;
}
#calendar_header .btn_next{
    color: #FFFFFF;
    float: right;
    width: 15%;
    padding: 24px 0;
    line-height: 20px;
    font-size: 22px;
    text-align: center;
}
#calendar_header .btn_prev:hover,
#calendar_header .btn_next:hover{
    background: #444;
}
.copy-wrap{
  position: relative;
}
.copy-feedback {
  display: none;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  line-height: 20px;
  padding: 10px 12px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
  text-align: left;
  background: rgba(255,255,255,0.9);
  border-radius: 6px;
  border: 2px solid #ececec;
  color: #e62e25;
}

.copy-clipboard {
  position: absolute !important;
  right: 5px;
  top: 5px;
  height: 35px;
  line-height: 19px;
  padding: 8px 14px;
  text-align: center;
  color: #ffffff !important;
  background: #444444;
  border-radius: 6px;
  border: none;
  font-size: 12px;
  text-transform: uppercase;
}
.copy-clipboard i{
  margin-right: 6px;
  font-size: 18px;
  vertical-align: bottom;
}

.copy-clipboard:hover,
.copy-clipboard:active {
  color: #ffffff;
  background: #e62e25;
}
#div_teacher .col-md-4 {
  padding-right: 10px;
  padding-left: 0px;
  height: 370px;
  margin-bottom: 30px;
  float: left;
}
#div_teacher .ui-block {
  margin-bottom: 0px !important;
}
#div_teacher .post-content{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#div_teacher .post-thumb img{
  background-position: center;
  background-size: cover;
}

.checkbox label{
  font-size: 14px;
}
.checkbox .checkbox-material {
  top: 0px;
}
.checkbox .checkbox-material .check {
  border-radius: 4px;
}
#div_episodes .col-md-4 .product-del{
  z-index: 99;
  opacity: 0.6;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0 5px 0 0;
}

#div_episodes .col-md-4:hover .product-del{
  z-index: 1000;
  opacity: 1;
  background: rgba(255, 255, 255, 0.8);
}
.product-status{
  font-size: 14px;
  width: 100%;
  color: #ffffff;
}

.product-status i {
  font-size: 18px;
  vertical-align: text-bottom;
}

.hentry.blog-post .product-del{
  z-index: 99;
  opacity: 0.8;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0 5px 0 0;
}

.hentry.blog-post:hover .product-del{
  z-index: 1000;
  opacity: 1;
  background: rgba(255, 255, 255, 0.8);
}




.element.ui-block-content {
  padding: 10px;
  border-top: 0 !important;
  border-left: 1px solid #e6e6e6 !important;
  border-right: 1px solid #e6e6e6 !important;
  border-bottom: 1px solid #e6e6e6 !important;
  border-radius: 0 0 6px 6px !important;
  background: #fff;
}

.element.ui-block-content .photo-item.edit-product,
.element.ui-block-content .photo-item.altered-product {
    margin-bottom: 0;
}
.element.ui-block-content .photo-item.edit-product .element_img,
.element.ui-block-content .photo-item.altered-product .element_img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.element.ui-block-content .photo-item .product-del{
  z-index: 99;
  opacity: 0.5;
  background: rgba(0, 0, 0, 0.2);
  color: #fff !important;
  border-radius: 0 6px 0 0;
}

.element.ui-block-content .photo-item:hover .product-del{
  z-index: 1000;
  opacity: 1;
  background: rgba(0, 0, 0, 0.6);
  color: #fff !important;
}

.element-text.ui-block-content {
  padding: 0;
  background: #fff;
}

.element-text.ui-block-content .cke_inner {
  border-top: 0 !important;
  border-left: 1px solid #e6e6e6 !important;
  border-right: 1px solid #e6e6e6 !important;
  border-bottom: 1px solid #e6e6e6 !important;
  border-radius: 0 0 6px 6px !important;
}


.ui-block-title {
    padding: 15px 23px 15px;
    line-height: 1;
    border-bottom: 1px solid #e6e6e6;
    border-top: 1px solid #e6e6e6;
    display: table;
    width: 100%;
    position: relative;
    border-radius: 4px 4px 0 0;
    font-size: 12px;
    text-transform: uppercase;
}
  .ui-block-title .more {
    padding-left: 25px;
    text-align: right;
    width: 16px; }
  .ui-block-title > * {
    margin-bottom: 0;
    display: table-cell;
    vertical-align: middle; }
  .ui-block-title.ui-block-title-small {
    padding: 10px 25px; }
    .ui-block-title.ui-block-title-small .title {
      font-size: 9px;
      text-transform: uppercase;
      color: #9a9fbf; }
  .ui-block-title:first-child {
    border-top: none; }
  .ui-block-title .btn {
    display: inline-block;
    margin-bottom: 0; }
    .ui-block-title .btn + * {
      margin-left: 20px; }
  .ui-block-title.inline-items .more {
    float: right;
    margin-top: 6px;
    padding-left: 0; }
  .ui-block-title + .ui-block-title {
    border-bottom: none; }
  .ui-block-title .icon-add {
    margin-right: 0; }

#accordion + .ui-block-title {
  border-top: none;
  border-bottom: none; }

.ui-block-content {
  padding: 24px 23px 23px; }

.has-error #span_cm_total,
.has-error #div_cm_total{
  color: #de5d5d;
  font-weight: bold;
}
.checkbox .has-error,
.checkbox .has-error a,
.checkbox .has-error strong{
  color: #e62f25;
}
.checkbox .has-error .checkbox-material .check{
  border: 1px solid #e62f25;
}

.mt0 {
  margin-top: 0px;
}
.mt5 {
  margin-top: 5px;
}
.mt10 {
  margin-top: 10px;
}
.mt15 {
  margin-top: 15px;
}
.mt20 {
  margin-top: 20px;
}
.mt25 {
  margin-top: 25px;
}
.mt30 {
  margin-top: 30px;
}
.mt35 {
  margin-top: 35px;
}
.mt40 {
  margin-top: 40px;
}
.mt45 {
  margin-top: 45px;
}


.mb0 {
  margin-bottom: 0px;
}
.mb5 {
  margin-bottom: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb25 {
  margin-bottom: 25px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb35 {
  margin-bottom: 35px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb45 {
  margin-bottom: 45px;
}



.ml0 {
  margin-left: 0px;
}
.ml5 {
  margin-left: 5px;
}
.ml10 {
  margin-left: 10px;
}
.ml15 {
  margin-left: 15px;
}
.ml20 {
  margin-left: 20px;
}
.ml25 {
  margin-left: 25px;
}
.ml30 {
  margin-left: 30px;
}
.ml35 {
  margin-left: 35px;
}
.ml40 {
  margin-left: 40px;
}
.ml45 {
  margin-left: 45px;
}



.mr0 {
  margin-right: 0px;
}
.mr5 {
  margin-right: 5px;
}
.mr10 {
  margin-right: 10px;
}
.mr15 {
  margin-right: 15px;
}
.mr20 {
  margin-right: 20px;
}
.mr25 {
  margin-right: 25px;
}
.mr30 {
  margin-right: 30px;
}
.mr35 {
  margin-right: 35px;
}
.mr40 {
  margin-right: 40px;
}
.mr45 {
  margin-right: 45px;
}


.verification{
  font-weight: bolder;
}

.verification i{
  font-size: 16px;
  vertical-align: text-bottom;
}

.content-username{
  display: block;
  position: absolute;
  width: 100%;
  z-index: 110;
}
.content-mention{
  display: block;
  position: absolute;
  width: 100%;
  z-index: 110;
}

@media (max-width: 1200px) {
  .responsive-flex1200 .ui-block-title {
    display: flex;
    flex-direction: column; }
    .responsive-flex1200 .ui-block-title > * {
      margin-bottom: 10px; }
    .responsive-flex1200 .ui-block-title .points {
      text-align: left; }
  .responsive-flex1200 .btn + * {
    margin-left: 0; }
  .responsive-flex1200 .w-search {
    width: auto; }
  .responsive-flex1200 .w-select {
    padding: 0; } }

@media (max-width: 860px) {
  .responsive-flex .w-search {
    width: auto; } }

@media (max-width: 768px) {
  .responsive-flex .ui-block-title {
    display: flex;
    flex-direction: column; }
    .responsive-flex .ui-block-title > * {
      margin-bottom: 10px; }
    .responsive-flex .ui-block-title .points {
      text-align: left; }
  .responsive-flex .block-btn {
    text-align: left;
    padding-right: 0; }
  .responsive-flex .more {
    padding-left: 0; }
  .responsive-flex .photo-gallery {
    position: relative;
    right: auto;
    order: 5;
    left: -26px;
    bottom: -29px;
    top: auto; }
    .responsive-flex .photo-gallery.nav-tabs .nav-item {
      border-top: 1px solid #e6e6e6;
      text-align: center; }
  .responsive-flex .w-search {
    width: auto; }
  .responsive-flex .bootstrap-select.without-border.btn-group .dropdown-toggle .filter-option {
    text-align: left; }
  .responsive-flex .align-right {
    text-align: left; }
    .responsive-flex .align-right * {
      display: block; }
    .responsive-flex .align-right > * + * {
      margin-top: 15px; }
    .responsive-flex .align-right .btn {
      margin-left: 0; }
  .responsive-flex .ui-block-title .btn + * {
    margin-left: 0; } }

@media (max-width: 480px) {
  .ui-block-content.display-flex.content-around {
    flex-direction: column; }
    .ui-block-content.display-flex.content-around > * {
      margin-bottom: 15px; } }

@media (max-width: 320px) {
  .ui-block-title .btn + .btn {
    margin-left: 0;
    margin-top: 15px; } }


.footer_links {
    margin-top: -4px;
    margin-bottom: 8px;
}
.footer_links a{
  color: #888888;
  font-size: 13px;
  margin-left: 13px;
}
.footer_links a i{
  font-size: 16px;
  vertical-align: text-top;
}
.footer_links a:hover{
  color: #000000;
  text-decoration: underline;
}

.notification-icon .uau.space-i-circle-check{
  color: #83bb64 !important;
}
.notification-icon .uau.space-i-circle-cross{
  color: #000000 !important;
}
.coupon_disabled,
.coupon_disabled:hover{
  opacity: 0.8 !important;
  background-color: #f7f0f0 !important;
}

.coupon .form-control {
  border-radius: 6px 0 0 6px !important;
  border-right: 0 !important;
  padding: 18px 0px 2px 18px !important;
}
.coupon .btn {
  border-radius: 0 6px 6px 0 !important;
  margin-left: 0px !important;
  margin-top: -1px !important;
  padding: 15.5px !important;
}
.coupon_price{
  clear: both;
  width: 100%;
  margin-left: 0 !important;
  margin-top: 4px;
  color: #83bb64;
}
.btn {
  color: #fff;
  margin-bottom: 15px;
  position: relative; }
  .btn:hover {
    color: #fff;}

  .btn.disabled, .btn:disabled {
    background-color: #cdcfda;
    cursor: default;
    pointer-events: none;
     }
.btn.inverted.disabled {
  border-color: #cdcfda !important;
  color: #cdcfda !important;
}
.btn-transparent {
  background-color: transparent; }

button:hover {
  cursor: pointer; }

.btn-icon-left i {
  font-size: 12px;
  margin-right: 10px; }

.btn-lg i {
  font-size: 16px; }

@media (max-width: 1080px) {
  .btn-lg {
    padding: 1rem; } }

.btn-md {
  padding: 1rem 3.5rem;
  font-size: 0.75rem;
  border-radius: 0.3rem; }

@media (max-width: 1080px) {
  .btn-md {
    padding: .6rem .5rem; } }

.btn-md-2 {
  padding: 13px 24px;
    font-size: 12px;
  border-radius: 100px; }

.btn-md-s {
  padding: 13px 14px;
    font-size: 12px;
  border-radius: 100px; }

.explore_midia .ui-block-title{
  padding: 0;
}
.product-content .btn-control {
  border-radius: 100%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    padding: 0;
    fill: #fff;
    font-size: 27px;
    margin-top: 25px;
    margin-left: 10px;
}
.product-content .btn-control:first-child {
    margin-left: 0px;
}

.crop-wrapper .cropit-preview-background{
    opacity:.2;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
    filter:alpha(opacity=20)
}
.crop-wrapper .cropit-preview{
    position:relative;
}
.crop-wrapper .cropit-preview .spinner{
    opacity:0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter:alpha(opacity=0);
    -webkit-transition:opacity 1s;
    -moz-transition:opacity 1s;
    -o-transition:opacity 1s;
    -ms-transition:opacity 1s;
    transition:opacity 1s
}
.crop-wrapper .cropit-preview.cropit-image-loading .spinner{
    opacity:1;
    -ms-filter:none;
    filter:none
}
.crop-wrapper .cropit-preview.cropit-image-loaded .cropit-preview-image-container{
    cursor:move
}

.crop-wrapper .controls-wrapper{
    position:relative;
}

.crop-wrapper .controls-wrapper .slider-wrapper.disabled{
    opacity:.4;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    filter:alpha(opacity=40)
}
.crop-wrapper .controls-wrapper .slider-wrapper *{
    vertical-align:middle
}
.crop-wrapper .controls-wrapper .slider-wrapper .small-image{
    font-size:16px
}
.crop-wrapper .controls-wrapper .slider-wrapper .large-image{
    font-size:24px
}
.crop-wrapper .controls-wrapper .slider-wrapper .cropit-image-zoom-input{
    width:130px;
    margin:0 20px;
}
.crop-wrapper .controls-wrapper .slider-wrapper .cropit-image-zoom-input.custom{
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    height:5px;
    background:#eee;
    -webkit-border-radius:5px;
    border-radius:5px;
    outline:none;
}
.crop-wrapper .controls-wrapper .slider-wrapper .cropit-image-zoom-input.custom::-moz-range-track{
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    height:5px;
    background:#eee;
    -webkit-border-radius:5px;
    border-radius:5px;
    outline:none
}
.crop-wrapper .controls-wrapper .slider-wrapper .cropit-image-zoom-input.custom::-webkit-slider-thumb{
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    width:15px;
    height:15px;
    background:#888;
    -webkit-border-radius:50%;
    border-radius:50%;
    -webkit-transition:background 0.25s;
    -moz-transition:background 0.25s;
    -o-transition:background 0.25s;
    -ms-transition:background 0.25s;
    transition:background 0.25s;
}
.crop-wrapper .controls-wrapper .slider-wrapper .cropit-image-zoom-input.custom::-webkit-slider-thumb:hover,
.crop-wrapper .controls-wrapper .slider-wrapper .cropit-image-zoom-input.custom::-webkit-slider-thumb:active{
    background:#bbb
}
.crop-wrapper .controls-wrapper .slider-wrapper .cropit-image-zoom-input.custom::-moz-range-thumb{
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    width:15px;
    height:15px;
    background:#888;
    -webkit-border-radius:50%;
    border-radius:50%;
    -webkit-transition:background 0.25s;
    -moz-transition:background 0.25s;
    -o-transition:background 0.25s;
    -ms-transition:background 0.25s;
    transition:background 0.25s;
}
.crop-wrapper .controls-wrapper .slider-wrapper .cropit-image-zoom-input.custom::-moz-range-thumb:hover,
.crop-wrapper .controls-wrapper .slider-wrapper .cropit-image-zoom-input.custom::-moz-range-thumb:active{
    background:#bbb
}
.crop-wrapper{
    height:100%;
    min-height:640px;
    position:relative;
}
.crop-wrapper.post{
    height:100%;
    min-height:480px;
    position:relative;
}
.crop-wrapper.episode{
  height:100%;
  min-height:480px;
  position:relative;
}
.crop-wrapper input {
  display: inline-block;
  width: 100%;
  padding: 0;
}
.crop-wrapper img {
  max-width: none;
}
.crop-wrapper .preview-wrapper{
    position:absolute;
    top:50%;
    left:50%;
    -webkit-transform:translate(-50%,-50%);
    -moz-transform:translate(-50%,-50%);
    -o-transform:translate(-50%,-50%);
    -ms-transform:translate(-50%,-50%);
    transform:translate(-50%,-50%);
}
.crop-wrapper .preview-wrapper .cropit-preview{
    width:450px;
    height:564px;
    background: #fff;
    box-shadow: 0px 0px 0px 2px #b6b6c1;
}
.crop-wrapper.cover .preview-wrapper .cropit-preview{
    width:450px;
    height:141px;
    background: #fff;
    box-shadow: 0px 0px 0px 2px #b6b6c1;
}

.crop-wrapper.post .preview-wrapper .cropit-preview{
    width:450px;
    height:291px;
    background: #fff;
    box-shadow: 0px 0px 0px 2px #b6b6c1;
}
.crop-wrapper.episode .preview-wrapper .cropit-preview{
  width:450px;
  height:253px;
  background: #fff;
  box-shadow: 0px 0px 0px 2px #b6b6c1;
}
.crop-wrapper .preview-wrapper .controls-wrapper{
    margin-top:20px;
    text-align:center
}
.btn-control {
      border-radius: 8px;
    width: 40px;
    height: 40px;
    line-height: 46px;
    padding: 0;
    fill: #fff;
    font-size: 18px; }
  .btn-control:hover {
    opacity: 1; }
  .btn-control .more-dropdown {
    top: auto;
    bottom: 100%; }
    .btn-control .more-dropdown li {
      line-height: 1.3;
      font-size: 12px; }

  .photo-album-item-wrap .btn-control > i {
    font-size: 28px; }
  .btn-control.has-i {
    font-size: unset; }
    .btn-control.has-i > i {
      font-size: 15px; }

.btn-control-small {
  width: 34px;
  height: 34px;
  line-height: 34px; }
  .btn-control-small > i {
    font-size: 16px; }

.btn-more {
  margin: 40px auto;
  text-align: center;
  display: block;
}

.btn-border {
  border: solid 2px; }

.btn-border-think {
  border: solid 1px; }
.btn-social i{
  font-size: 20px !important;
  vertical-align: baseline !important;
}
.control-block-button {
  position: absolute; }
  .control-block-button .btn-control {
    margin-right: 20px;
    margin-bottom: 0;
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    padding: 10px; }
    .control-block-button .btn-control:last-child {
      margin-right: 0; }
    .control-block-button.left {
      right: -4px;
      bottom: 68px;
    }
    .control-block-button.left .btn-control {
      border-radius: 100px;
      width: 38px;
      height: 38px;
      line-height: 38px;
      padding: 0px;
      color: #fff;
      font-size: 14px;
      min-width: 38px;
    }

    .control-block-button.left .btn-control > i {
      font-size: 20px;
      margin-left: 0px;
      vertical-align: text-bottom;
    }
    .control-block-button .btn-control .olymp-settings-icon {
      width: 17px;
      height: 21px; }
    .control-block-button .btn-control .olymp-happy-face-icon {
      width: 21px;
      height: 21px; }
    .control-block-button .btn-control .olymp-chat---messages-icon {
      width: 23px;
      height: 20px; }
    .control-block-button .btn-control .olymp-star-icon {
      height: 20px;
      width: 20px; }
    .control-block-button .btn-control .olymp-happy-faces-icon {
      height: 22px;
      width: 22px; }
.fixedbar {
  height: 100%;
  position: -webkit-sticky;
  position: sticky;
}
.fixedbar_s {
  position: -webkit-sticky;
  position: sticky;
  top: 110px;
  height: calc(100% - 110px);
  z-index: 1;
  bottom: 0;
}
.embed-container {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%;border-radius: 4px;
}
.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
.btn-purple {
  background-color: #7c5ac2; }
.btn-purple.inverted {
  border: 2px solid #7c5ac2;
  background: #fff;
  color: #7c5ac2;
}
.btn-purple.btn-sm.inverted {
  padding: 0.3767rem 1.2rem;
  font-size: 12px;
}
.btn-blue {
  background-color: #38a9ff; }
.btn-blue.inverted {
  border: 2px solid #38a9ff;
  background: #fff;
  color: #38a9ff;
}
.btn-blue.btn-sm.inverted {
  padding: 0.3767rem 1.2rem;
  font-size: 12px;
}

.btn-breez {
  background-color: #a5dc86; }

.btn-green {
  background-color: #83bb64; }

.btn-green.inverted {
  border: 2px solid #83bb64;
  background: #fff;
  color: #83bb64;
}
.btn-green.btn-sm.inverted {
  padding: 0.3767rem 1.2rem;
  font-size: 12px;
}

.btn-c-green.inverted {
  border: 2px solid #888888;
  background: #fff;
  color: #888888;
  margin-bottom: 0px;
  line-height: 20px;
  margin-top: 1px;
}
.btn-c-green.inverted:hover {
  border: 2px solid #83bb64;
  background: #fff;
  color: #83bb64;
}

.btn-c-green.inverted i{
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  vertical-align: sub;
  display: inline-block;
  margin-right: 4px;
}
.btn-c-green.inverted i:before{
  font-family: "uauspace-icon";
  content: "\e004";
}

.btn-c-green.inverted:hover i:before{
  font-family: "uauspace-icon";
  content: "\5f";
}


.btn-d-green.inverted {
  border: 2px solid #83bb64;
  background: #83bb64;
  color: #ffffff;
  margin-bottom: 0px;
  line-height: 20px;
  margin-top: 1px;
}
.btn-d-green.inverted:hover {
  border: 2px solid #83bb64;
  background: #83bb64;
  color: #ffffff;
}

.btn-d-green.inverted i{
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  vertical-align: sub;
  display: inline-block;
  margin-right: 4px;
}
.btn-d-green.inverted i:before{
  font-family: "uauspace-icon";
  content: "\5f";
}

.btn-primary.inverted {
  border: 2px solid #000000;
  background: #fff;
  color: #000000;
}
.btn-primary.btn-sm.inverted {
  padding: 0.3767rem 1.2rem;
  font-size: 12px;
}
.btn-grey {
  background-color: #444444; }

.btn-grey-light {
  background-color: #888888; }

.btn-grey-lighter {
  background-color: #9a9fbf; }

.btn-breez-light {
  background-color: #2aebcb; }

.btn-yellow {
  background-color: #ffdc1b; }

.btn-smoke {
  background-color: #e6e6e6; }

.btn-bg-secondary {
  background-color: #3f4257; }


.btn-light-bg {
  color: #444444; }
.btn-light-bg:hover {
  color: #444444; }

.alert-danger {
  color: #ffffff;
  background-color: #de5d5d;
  border: 0;
  text-transform: uppercase;
}

.alert-success {
  color: #ffffff;
  background-color: #83bb64;
  border: 0;
  text-transform: uppercase;
}

.alert-info {
  color: #ffffff;
  background-color: #67ace4;
  border: 0;
  text-transform: uppercase;
}

.alert-warning {
  color: #ffffff;
  background-color: #f8bb86;
  border: 0;
  text-transform: uppercase;
}

.alert a{
  color: #888888;
  background: #fff;
  padding: 4px 12px;
  border-radius: 100px;
  margin-left: 4px;
}
.alert a:hover,
.alert a:active{
  color: #555555;
}

i.uau.text-danger {
  font-size: 14px;
  vertical-align: text-top;
  color: #000000 !important;
}
.text-sep.btn i{
  padding-left: 12px;
}
.notification-list a.btn {
    margin-bottom: 0px;
    margin-left: 5px;
    margin-right: 5px;
}
.btn-market {
  text-transform: none;
  text-align: left;
  padding: 13px 23px;
  background-color: #000; }
  .btn-market .icon {
    margin-right: 5px;
    height: 35px;
    width: 35px; }
  .btn-market > * {
    display: inline-block;
    vertical-align: middle; }
  .btn-market .text {
    overflow: hidden; }
  .btn-market span {
    display: block; }
  .btn-market .sup-title {
    font-size: 9px;
    font-weight: 700; }
  .btn-market .title {
    font-size: 18px;
    font-weight: 500; }
  .btn-market:after {
    box-shadow: 10px 0 15px 0 rgba(18, 25, 33, 0.3); }
  .btn-market + .btn-market {
    margin-left: 20px; }

.with--icon {
  text-align: left; }
  .with--icon .icon {
    margin-right: 12px;
    height: 35px;
    width: 35px;
    fill: #fff; }
  .with--icon > * {
    display: inline-block;
    vertical-align: middle; }
  .with--icon .text {
    overflow: hidden; }
  .with--icon span {
    display: block; }
  .with--icon .sup-title {
    font-size: 8px;
    font-weight: 700; }
  .with--icon .title {
    font-size: 14px;
    font-weight: 700; }
  .with--icon:after {
    box-shadow: 10px 0 15px 0 rgba(18, 25, 33, 0.3); }
  .with--icon.btn-md .icon {
    margin-right: 15px;
    height: 22px;
    width: 22px; }

.icon-add {
  position: relative;
  display: inline-block;
  margin-right: 12px;
  vertical-align: middle; }
  .icon-add:after {
    content: '\f067';
    display: block;
    position: absolute;
    right: -4px;
    top: -4px;
    color: inherit;
    font-size: 7px;
    font-family: 'FontAwesome'; }
  .icon-add.without-text {
    margin-right: 0; }

.icon-minus {
  position: relative;
  display: inline-block;
  vertical-align: middle; }
  .icon-minus:after {
    content: '\f068';
    display: block;
    position: absolute;
    right: -4px;
    top: -4px;
    color: inherit;
    font-size: 7px;
    font-family: 'FontAwesome'; }

.big_play:hover{
  transition: all 0.2s ease-in-out;
  opacity: .9;
}
.accept-request {
  display: inline-block;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.5rem;
  font-size: 0.688rem;
  border-radius: 0.25rem;
  transition: all 0.2s ease-in-out;
  background-color: #38a9ff;
  color: #fff;
  fill: #fff; }
  .accept-request:hover, .accept-request:focus {
    color: #fff;
    fill: #fff;
    opacity: .9; }
  .accept-request + .accept-request {
    margin-left: 8px; }
  .accept-request svg {
    width: 20px;
    height: 20px; }

.request-del {
  background-color: #9a9fbf; }

.btn--half-width {
  width: 30%; }

.xhidden {
  display: none !important;
}
.back-to-top {
  position: fixed;
  z-index: 20;
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: block;
  fill: #fff;
  stroke: inherit;
  
  bottom: 10px;
  right: 85px;
  cursor: pointer;
  box-shadow: 0 0 10px 0 rgba(63, 66, 87, 0.4);
  border-radius: 100%;
  background-color: #000000;
  text-align: center; }
  .back-to-top.hidden {
    opacity: 0; }
  .back-to-top .back-icon {
    height: 20px;
    width: 20px; }

@media (max-width: 768px) {
  .back-to-top {
    width: 40px;
    height: 40px;
    line-height: 40px;
    right: 10px; }
    .back-to-top .back-icon {
      height: 15px;
      width: 15px; } }

@media (max-width: 410px) {
  .btn-market + .btn-market {
    margin-left: 0; } }

@media (max-width: 360px) {
  .btn-control .more-dropdown {
    top: 100%;
    bottom: auto; } }

label.control-label {
  color: #888888;
  text-transform: uppercase;
}

.form-group.label-floating textarea {
  padding: 1.3rem 1.1rem .2rem; }

input, .form-control {
  color: #444444;
  line-height: inherit;
  font-size: .875rem;
  background: #fff;
  outline: none; }


.edit-product img{
  border-radius: 4px;
}
.photo-item.edit-product {
  position: relative;
  padding: 0;
  margin-bottom: 1.4rem;
}
.photo-item.edit-product .overlay {
  bottom: 0;
  right: 0;
}
.photo-item.edit-product .content{
  position: absolute;
  opacity: 1;
  text-align: center;
  margin: -20px -20px;
  top: 50%;
  left: 50%;
}

.photo-item.edit-product .content .btn-control {
  margin-bottom: 0px;
  float: none;
  line-height: 42px;
}
.photo-item.edit-product .content .btn-control > i {
  font-size: 24px;
}
.photo-item.edit-product .content .h5{
  color: #444444;
  display: block;
  margin-top: 20px;
  margin-bottom: 0;
}
.photo-item.edit-product:active{
  opacity: 0.6;
}


.altered-product img{
  border-radius: 4px;
}
.photo-item.altered-product {
  position: relative;
  padding: 0;
  margin-bottom: 1.4rem;
}
.photo-item.altered-product .overlay {
  bottom: 0;
  right: 0;
}
.photo-item.altered-product .content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.photo-item.altered-product .content .h5{
  color: #ffffff;
  display: block;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 57px;
  font-size: 14px;
}
.photo-item.altered-product:active{
  opacity: 0.6;
}

.author-thumb .overlay {
  bottom: 0;
  right: 0;
}

.author-thumb .content{
  position: absolute;
  opacity: 0;
  text-align: center;
  margin: -10px -30.80px;
  top: 50%;
  left: 50%;
  
}

.author-thumb .content .h5{
  color: #444444;
  display: block;
  margin-top: 0;
  margin-bottom: 0;
}
.author-thumb .content .title {
  color: #fff;
  display: block;
  margin-bottom: 0;
}


.author-cover .btn{
  position: absolute;
  opacity: 0;
  text-align: center;
  top: 25px;
  left: 25px;
  z-index: 10;
  
}
.author-cover .top-header-thumb{
  opacity: 1;
  
}
.author-cover .btn i{
  font-size: 16px;
  vertical-align: bottom;
  margin-right: 4px;
}
.author-cover:hover .btn{
  opacity: 1;
}
.author-cover:hover .top-header-thumb{
  opacity: 0.9;
}

.edit-product img.img-add{
  border: 2px dashed #e0dfdf;
  background: #f9f9f9;
  transition: all .3s ease;
}

.photo-item.edit-product:hover  img.img-add{
  background: #f1f1f1;
}

.has-success .form-control-success,
.has-error .form-control-danger {
  background-image: none; }
.form-group.with-icon-right .form-control, .form-group.with-icon-right input, .form-group.with-icon-right textarea {
  padding-right: 60px; }

.label-floating .form-control, .label-floating input, .label-floating select {
  padding: 1.3rem 0.8rem .4rem;
  line-height: 1.8; }

.label-floating textarea.form-control {
  padding: 1.5rem 0.8rem .2rem; }

.label-floating.with-icon .form-control, .label-floating.with-icon input, .label-floating.with-icon textarea {
  padding-left: 70px; }

.has-success .form-control,
.has-success #datetimepicker,
.has-success #datetimepicker_2,
.has-success #datetimepicker_d,
.has-success #datetimepicker_lot_start,
.has-success #datetimepicker_lot_end,
.has-success #birthday,
.has-success .dropdown-toggle {
    border-color: #a5dc86 !important;
}
.has-error .form-control,
.has-error #datetimepicker,
.has-error #datetimepicker_2,
.has-error #datetimepicker_d,
.has-error #datetimepicker_lot_start,
.has-error #datetimepicker_lot_end,
.has-error #birthday,
.has-error .dropdown-toggle{
    border-color: #de5d5d !important;
}

.date-dropdowns{
  display: flex;
  flex-wrap: wrap;
}
.select-control {
  height: 45px !important;
  margin-right: 5px !important;
  flex: 0 0 calc(33.33333% - 4px) !important;
  max-width: calc(33.33333% - 4px) !important;
}
.select-control:last-child {
  margin-right: 0px !important;
  flex: 0 0 calc(33.33333% - 2px) !important;
  max-width: calc(33.33333% - 2px) !important;
}
.item_blocked{
  opacity: 0.6;
  pointer-events:none;
}
.item_blocked.blured{
  filter:blur(2px);
}
.min-10 .form-group{
  width: 10%;
  float: left;
  padding-right: 10px;
  padding-left: 0px;
}

.modal .ui-block-title{
  border-top: 0px;
}
.modal .ui-block-content {
  border-radius: 0 0 4px 4px;
}
.modal .radio {
  margin-bottom: 4px;
  background: #fff;
  padding: 0;
  border: 1px solid #e7edf6;
  border-radius: 6px;
}
.modal .payment-methods-list .radio label {
  display: block;
  padding: 10px 10px 10px 35px;
}
.modal .payment-methods-list .radio label span {
  left: 10px;
  top: 10px;
}
.min-10 .form-group.normal{
  width: 28%;
}
.min-10 .form-group.label-floating{
  width: 12%;
  float: left;
  padding-right: 10px;
  padding-left: 0px;
}
.min-10 .form-group .btn-control{
  margin-top: 10px;
  padding-right: 0px;
  width: 30px;
  height: 30px;
  line-height: 38px;
}
.min-10 .input-group-addon {
  padding: 0 0.1rem;
  right: 12px;
  top: 2px;
  height: 20px;
}

.min-12 .form-group{
  width: 19%;
  float: left;
  padding-right: 10px;
  padding-left: 0px;
}
.min-12 .form-group.first{
  width: 22.5%;
}
.min-12 .form-group.normal{
  width: 32%;
}
.min-12 .form-group.label-floating{
  width: 15%;
  float: left;
  padding-right: 10px;
  padding-left: 0px;
}
.min-12 .form-group .btn-control{
  margin-top: 10px;
  padding-right: 0px;
  width: 30px;
  height: 30px;
  line-height: 38px;
}
.min-12 .input-group-addon {
  padding: 0 0.1rem;
  right: 12px;
  top: 2px;
  height: 20px;
}


.min-10 .has-success:after,
.min-12 .has-success:after,
.min-10 .has-error:after,
.min-12 .has-error:after{
  right: 20px;
}
.with-title-decoration .heading-title.no-text {
  height: 15px;
}

.with-title-decoration .heading-title.no-text:before,
.with-title-decoration .heading-title.no-text:after {
    background: none;
}

.rounded{
  border-radius: 6px;
}
.rounded-4{
  border-radius: 4px;
}
.range {
  width: 20%;
  text-align: center;
  padding: 10px 10px 0px 10px;
  margin: 10px auto 25px auto;
}
.range-style {
  color: #fff;
  border-radius: 100%;
  width: 100px;
  height: 100px;
  text-align: center;
  margin: 0 auto;
  font-size: 40px;
  line-height: 112px;
}
.range-title {
  margin-top: 8px;
  font-size: 13px;
  color: #444444;
  font-weight: bold;
}
.cke_inner{
  border: 1px solid #e6e6e6 !important;
  border-radius: 6px !important;
}
.cke_top{
  border-radius: 6px 6px 0px 0px !important;
}
.cke_bottom{
  border-radius: 0px 0px 6px 6px !important;
}
.item-absolute{
  position: absolute;
}
.range-facebook {
  background: #3d5998;
}
.range-twitter {
  background: #01aced;
}
.range-instagram {
  background: #262626;
}
.range-youtube {
  background: #ff2c05;
}
.bg-color {
  background: #ffffff;
}
.bg-color:nth-child(odd) {
  background: #f2f2f2;
}

.btn-stock{
  margin-bottom: 0;
  margin-top: 20px;
  padding: 0.8rem 1.2rem;
}

.btn-stock i{
  margin-right: 4px;
}

.bg-variation:nth-child(odd) {
  background: #f8f8f8;
}
.bg-variation.bg-ext:hover {
  background: #f4f4f4;
}
.demo-table tbody tr:nth-child(odd) td {
  background-color: #f4fbff;
}

.bg-variation.bg-ext.bg-ext-success:hover,
.bg-variation.bg-ext.bg-ext-success {
  background: #f2f9f0 !important;
  padding-top: 6px !important;
  border-radius: 6px !important;
}

.bg-variation-modules {
  border: 1px solid #ebf0f7;
  border-radius: 6px;
  margin-bottom: 20px;
}
.bg-variation-modules:hover {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #dfe0e8;
}

.bg-variation-modules .no-text .size_close,
.bg-variation-modules .no-text .size_close:hover {
  right: -8px;
}
.bg-variation-modules .no-text .size_edit,
.bg-variation-modules .no-text .size_edit:hover {
  right: 20px;
}

.col-bg {
    background: #f6f7f9;
    padding: 10px 10px 4px 10px;
    border-top: 1px solid #ebf0f7;
    border-radius: 0 0 6px 6px;
}
.alcance-social span{
  margin-bottom: 5px;
}
.w-personal-info .space-facebook {
  color: #3d5998;
  font-size: 17px;
  vertical-align: text-top;
}
.w-personal-info .space-twitter {
  color: #01aced;
  font-size: 17px;
  vertical-align: text-top;
}
.w-personal-info .space-i-instagram {
  color: #262626;
  font-size: 17px;
  vertical-align: text-top;
}
.w-personal-info .space-social-youtube {
  color: #ff2c05;
  font-size: 17px;
  vertical-align: text-top;
}







.embed-container {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%;
}
.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}

.size_close,
.size_close:hover{
  position: absolute;
  background: transparent;
  width: 33px;
  height: 33px;
  right: 0;
  text-align: center;
}
.size_close i {
  height: 100%;
  padding: 8px;
  font-size: 18px;
}


.size_edit,
.size_edit:hover{
  position: absolute;
  background: transparent;
  width: 33px;
  height: 33px;
  right: 0;
  text-align: center;
}
#div_episodes .col-md-4 .size_edit{
  right: 34px;
  border-radius: 0 !important;
}
.size_edit i {
  height: 100%;
  padding: 8px;
  font-size: 18px;
}

.btn_edit{
  color: #888888 !important;
  background: transparent;
  width: 33px;
  height: 33px;
  text-align: center;
}

.btn_edit:hover{
  color: #444444 !important;
}
.btn_edit i {
  height: 100%;
  padding: 4px;
  font-size: 18px;
}
select.form-control {
  padding-left: .875rem; }

.form-group.with-icon i {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50px;
  text-align: center;
  line-height: 3.5rem;
  border-right: 1px solid #e6e6e6;
  font-size: 20px; }
.form-group.with-icon i.fa {
  font-size: 24px;
}

.form-group.with-icon input {
  padding-left: 70px; }

.form-group.with-button button {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 35px;
  text-align: center;
  line-height: 100%;
  color: #fff;
  fill: #fff;
  background-color: #d7d9e5;
  border: none; }

.form-group.with-button input {
  padding-right: 50px;
  padding-left: 15px; }

.label-floating.with-icon label.control-label,
.label-placeholder.with-icon label.control-label {
  left: 70px; }

.date-time-picker input {
  position: relative;
  z-index: 5; }

.input-group-addon {
  position: absolute;
  right: 0;
  top: 0;
  background-color: transparent;
  border: none;
  height: 100%;
  z-index: 20; }


.input-group-addon i {
  color: #9a9fbf;
  font-size: 12px;
}


.input-group-addon.date_picker {
  position: absolute;
  right: -4px;
  top: 0;
  background-color: transparent;
  border: none;
  height: 100%;
  z-index: 20; }


.input-group-addon.date_picker i {
  color: #666666;
  font-size: 24px;
}

.post-additional-info .fa {
  font-size: 22px;
  margin-top: 10px;
  color: #444444;
}
.input-group-addon.edit_username i {
  font-size: 22px;
  margin-top: 4px;
}
.input-group-addon.view_pass i {
  font-size: 24px;
    margin-top: 17px;
    color: #888888;
    margin-right: -4px;
}
.input-group-addon.input_icon i {
  font-size: 17px;
  margin-top: 4px;
}
.input-group-addon a:hover i {
  color: #444444;
}
.custom-control-description {
  padding-left: 7px;
  color: #888888;
  line-height: 2; }





.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: 'KoHo-SemiBold', -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  filter: alpha(opacity=0);
  opacity: 0;

  line-break: auto;
}
.tooltip.in {
  filter: alpha(opacity=90);
  opacity: .9;
}
.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}
.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}
.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}
.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #3f4257;
  border-radius: 4px;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #3f4257;
}
.tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #3f4257;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #3f4257;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #3f4257;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #3f4257;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #3f4257;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #3f4257;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #3f4257;
}


.tooltip-inner {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500; }

.tooltip-secondary .tooltip-inner {
  background-color: #3f4257; }

.tooltip-primary .tooltip-inner {
  background-color: #000000; }

.tooltip-completed .tooltip-inner {
  background-color: #a5dc86; }

.togglebutton {
  vertical-align: middle;
  margin-bottom: 20px; }

.togglebutton, .togglebutton label, .togglebutton input, .togglebutton .toggle {
  user-select: none; }

.togglebutton label {
  cursor: pointer;
  color: rgba(0, 0, 0, 0.26); }

.form-group.is-focused .togglebutton label, .form-group.has-bootstrap-select .togglebutton label,
.form-group.is-focused .togglebutton label:hover, .form-group.is-focused .togglebutton label:focus {
  color: #333; }

fieldset[disabled] .form-group.is-focused .togglebutton label {
  color: rgba(0, 0, 0, 0.26); }

.togglebutton label input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0; }

.togglebutton label .toggle {
  text-align: left; }

.togglebutton h6 {
  margin-left: 80px;
  padding-top: 4px;
}

.jcrop-keymgr{
  visibility: hidden;
}
.togglebutton label .toggle,
.togglebutton label input[type=checkbox][disabled] + .toggle {
  content: "";
  display: inline-block;
  width: 66px;
  height: 30px;
  background-color: rgba(80, 80, 80, 0.7);
  border-radius: 15px;
  margin-right: 0;
  transition: background 0.3s ease;
  vertical-align: middle; }

.togglebutton label .toggle:after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 26px;
  background-color: #FFFFFF;
  border-radius: 20px;
  position: relative;
  left: 3px;
  top: 3px;
  transition: left 0.3s ease, background 0.3s ease, box-shadow 0.1s ease;
  text-align: center; }

.togglebutton label input[type=checkbox][disabled] + .toggle:after, .togglebutton label input[type=checkbox][disabled]:checked + .toggle:after {
  background-color: #BDBDBD; }

.togglebutton label input[type=checkbox] + .toggle:active:after, .togglebutton label input[type=checkbox][disabled] + .toggle:active:after {
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 0, 0, 0.1); }

.togglebutton label input[type=checkbox]:checked + .toggle:after {
  left: 39px; }

.togglebutton label input[type=checkbox]:checked + .toggle {
  background-color: #000000; }

.togglebutton.blue label input[type=checkbox]:checked + .toggle {
  background-color: #38a9ff; }

.togglebutton label input[type=checkbox]:checked + .toggle:active:after {
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(156, 39, 176, 0.1); }

.description-toggle {
  display: table;
  width: 100%;
  margin-bottom: 30px; }
  .description-toggle > * {
    display: table-cell;
    vertical-align: middle; }
  .description-toggle .togglebutton {
    text-align: right; }
  .description-toggle p {
    margin-bottom: 0; }

.add-field {
  display: table;
  color: #888888;
  fill: #888888;
  margin-bottom: 1rem;
  line-height: 100%; }
  .add-field svg {
    margin-right: 10px;
    width: 12px;
    height: 12px; }
  .add-field > * {
    display: table-cell;
    vertical-align: middle; }

.switcher-block {
  margin: 19px 0;
  display: table;
  width: 100%; }
  .switcher-block .title {
    font-size: 13px; }
  .switcher-block > * {
    margin-bottom: 0;
    display: table-cell;
    vertical-align: middle; }
    .switcher-block > *:last-child {
      text-align: right; }


.file-upload {
  position: relative;
  display: inline-block; }
  .file-upload:hover {
    cursor: pointer; }

.file-upload__label {
  background-color: #3f4257;
  display: block;
  color: #fff;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.812rem;
  border-radius: 0.25rem;
  transition: all 0.2s ease-in-out; }
  .file-upload__label:hover {
    cursor: pointer;
    background-color: #000000; }
  .file-upload__label.bg-green:hover, .file-upload__label.bg-blue:hover, .file-upload__label.bg-breez:hover {
    background-color: #000000; }

.file-upload__input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  font-size: 0;
  width: 0 !important;
  height: 0 !important;
  opacity: 0;
  padding: 0; }
  .file-upload__input:hover {
    cursor: pointer; }

.subscribe-form {
  margin: 40px 0 20px; }
  .subscribe-form .form-group {
    flex: 1 0 auto;
    margin-bottom: 0; }
  .subscribe-form .form-control {
    width: 100%; }

.list--styled {
  margin: 35px 0; }
  .list--styled li {
    color: #444444;
    display: flex;
    align-items: center; }
    .list--styled li + li {
      margin-top: 30px; }
  .list--styled i {
    color: #000000;
    font-size: 20px;
    margin-right: 17px; }
  .list--styled.small-icon i {
    font-size: 8px; }
  .list--styled.smallest-icon i {
    font-size: 6px; }
  .list--styled.icon-blue i {
    color: #38a9ff; }

.search-form {
  padding: 50px 40px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 34px 0 rgba(63, 66, 87, 0.1); }
  .search-form .form-group {
    flex: 1 0 auto;
    margin-bottom: 0; }
  .search-form .form-control {
    width: 100%; }
  .search-form > * + * {
    margin-left: -5px; }
  .search-form .btn {
    border-radius: 0 5px 5px 0; }

.radio {
  margin-bottom: 8px; }

.radio label {
  cursor: pointer;
  padding-left: 25px;
  position: relative; }
.radio label:hover {
  color: #000;
}
.radio label span {
  display: block;
  position: absolute;
  left: 0px;
  top: 0;
  transition-duration: 0.2s; }

.radio label .circle {
  border: 1px solid #dde0e9;
  height: 18px;
  width: 18px;
  border-radius: 100%; }

.radio label .check {
  height: 18px;
  width: 18px;
  border-radius: 100%;
  background-color: #000000;
  -webkit-transform: scale3d(0, 0, 0);
  -moz-transform: scale3d(0, 0, 0);
  -o-transform: scale3d(0, 0, 0);
  -ms-transform: scale3d(0, 0, 0);
  transform: scale3d(0, 0, 0); }

.radio label .check:after {
  display: block;
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.87);
  left: -18px;
  top: -18px;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  z-index: 1;
  opacity: 0;
  margin: 0;
  -webkit-transform: scale3d(1.5, 1.5, 1);
  -moz-transform: scale3d(1.5, 1.5, 1);
  -o-transform: scale3d(1.5, 1.5, 1);
  -ms-transform: scale3d(1.5, 1.5, 1);
  transform: scale3d(1.5, 1.5, 1); }

.radio input[type=radio] {
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
  display: none; }

.radio input[type=radio]:checked ~ .check, .radio input[type=radio]:checked ~ .circle {
  opacity: 1; }

.radio input[type=radio]:checked ~ .check {
  background-color: #000000; }

.radio input[type=radio]:checked ~ .circle {
  border-color: #000000; }

.radio input[type=radio]:checked ~ .check {
  -webkit-transform: scale3d(0.45, 0.45, 1);
  -moz-transform: scale3d(0.45, 0.45, 1);
  -o-transform: scale3d(0.45, 0.45, 1);
  -ms-transform: scale3d(0.45, 0.45, 1);
  transform: scale3d(0.45, 0.45, 1); }

.radio input[type=radio][disabled] ~ .check, .radio input[type=radio][disabled] ~ .circle {
  opacity: 0.26; }

.radio input[type=radio][disabled] ~ .check {
  background-color: #000000; }

.radio input[type=radio][disabled] ~ .circle {
  border-color: #000000; }

@keyframes rippleOn {
  0% {
    opacity: 0; }
  50% {
    opacity: 0.2; }
  100% {
    opacity: 0; } }

@keyframes rippleOff {
  0% {
    opacity: 0; }
  50% {
    opacity: 0.2; }
  100% {
    opacity: 0; } }

.checkbox {
  margin-bottom: 1rem; }

.checkbox label {
  cursor: pointer;
  padding-left: 0;
  margin-bottom: 0; }

.form-group.is-focused .checkbox label {
  color: rgba(0, 0, 0, 0.26); }

.form-group.is-focused .checkbox label:hover, .form-group.is-focused .checkbox label:focus {
  color: #333; }

fieldset[disabled] .form-group.is-focused .checkbox label {
  color: rgba(0, 0, 0, 0.26); }

.checkbox input[type=checkbox] {
  opacity: 0;
  position: absolute;
  margin: 0;
  overflow: hidden;
  left: 0;
  pointer-events: none; }

.checkbox .checkbox-material {
  vertical-align: middle;
  position: relative;
  top: 1px;
  padding-right: 5px;
  display: inline-block; }


.checkbox .checkbox-material .check {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #e6e6e6;
  overflow: hidden;
  z-index: 1; }

.checkbox .checkbox-material .check:before {
  position: absolute;
  content: "";
  transform: rotate(45deg);
  display: block;
  margin-top: -3px;
  margin-left: 7px;
  width: 0;
  height: 0;
  background: red;
  box-shadow: 0 0 0 0 inset;
  -webkit-animation: checkbox-off 0.3s forwards;
  -moz-animation: checkbox-off 0.3s forwards;
  -o-animation: checkbox-off 0.3s forwards;
  -ms-animation: checkbox-off 0.3s forwards;
  animation: checkbox-off 0.3s forwards; }

.checkbox input[type=checkbox]:focus + .checkbox-material .check:after {
  opacity: 0.2; }

.checkbox input[type=checkbox]:checked + .checkbox-material .check {
  background: #000000; }

.checkbox input[type=checkbox]:checked + .checkbox-material .check:before {
  color: #FFFFFF;
  box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
  -webkit-animation: checkbox-on 0.3s forwards;
  -moz-animation: checkbox-on 0.3s forwards;
  -o-animation: checkbox-on 0.3s forwards;
  -ms-animation: checkbox-on 0.3s forwards;
  animation: checkbox-on 0.3s forwards; }

.checkbox.clicked input[type=checkbox]:checked + .checkbox-material:before {
  -webkit-animation: rippleOn 500ms;
  -moz-animation: rippleOn 500ms;
  -o-animation: rippleOn 500ms;
  -ms-animation: rippleOn 500ms;
  animation: rippleOn 500ms; }

.checkbox.clicked input[type=checkbox]:checked + .checkbox-material .check:after {
  -webkit-animation: rippleOn 500ms forwards;
  -moz-animation: rippleOn 500ms forwards;
  -o-animation: rippleOn 500ms forwards;
  -ms-animation: rippleOn 500ms forwards;
  animation: rippleOn 500ms forwards; }

.checkbox.clicked input[type=checkbox]:not(:checked) + .checkbox-material:before {
  -webkit-animation: rippleOff 500ms;
  -moz-animation: rippleOff 500ms;
  -o-animation: rippleOff 500ms;
  -ms-animation: rippleOff 500ms;
  animation: rippleOff 500ms; }

.checkbox.clicked input[type=checkbox]:not(:checked) + .checkbox-material .check:after {
  -webkit-animation: rippleOff 500ms;
  -moz-animation: rippleOff 500ms;
  -o-animation: rippleOff 500ms;
  -ms-animation: rippleOff 500ms;
  animation: rippleOff 500ms; }

fieldset[disabled] .checkbox, fieldset[disabled] .checkbox input[type=checkbox],
.checkbox input[type=checkbox][disabled] ~ .checkbox-material .check,
.checkbox input[type=checkbox][disabled] + .circle {
  opacity: 0.5; }

.checkbox input[type=checkbox][disabled] ~ .checkbox-material .check {
  border-color: #000000;
  opacity: .26; }

.checkbox input[type=checkbox][disabled] + .checkbox-material .check:after {
  background-color: rgba(0, 0, 0, 0.87);
  transform: rotate(-45deg); }

@keyframes checkbox-on {
  0% {
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px; }
  50% {
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px; }
  100% {
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px; } }

@keyframes rippleOn {
  0% {
    opacity: 0; }
  50% {
    opacity: 0.2; }
  100% {
    opacity: 0; } }

@keyframes rippleOff {
  0% {
    opacity: 0; }
  50% {
    opacity: 0.2; }
  100% {
    opacity: 0; } }

.error-box {
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  padding: 30px;
  text-align: center;
  position: absolute;
  right: -135px;
  bottom: 70%;
  width: 270px;
  z-index: 999; }
  .error-box .danger {
    margin: 0 auto 20px;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 37px;
    text-align: center;
    border-radius: 100%;
    background-color: #de5d5d; }
    .error-box .danger svg {
      fill: #fff;
      width: 12px;
      height: 12px; }
  .error-box .title {
    margin-bottom: 13px; }
  .error-box p {
    font-size: 13px;
    color: #888888; }


@media (max-width: 860px) {
  .search-form {
    padding: 25px; } }

@media (max-width: 360px) {
  .subscribe-form .btn {
    margin-left: -5px;
    border-radius: 0 5px 5px 0; }
  .search-form {
    padding: 0; } }


.fixed-sidebar {
  position: fixed;
  z-index: 22;
  width: 70px;
  min-height: 1000vh; }
  .fixed-sidebar .logo {
    height: 70px; }
  .fixed-sidebar .ui-block-title {
    margin: 15px 0; }
    .fixed-sidebar .ui-block-title:first-child {
      margin-top: 0; }
  .fixed-sidebar .search-friend svg {
    height: 20px;
    width: 20px; }
    .fixed-sidebar .search-friend svg:hover {
      fill: #000000; }
  .fixed-sidebar .ui-block-title a {
    margin-left: 20px;
    text-transform: uppercase;
    font-size: 9px;
    padding: 0; }
    .fixed-sidebar .ui-block-title a + a {
      float: right;
      color: #444444; }
  .fixed-sidebar .mCustomScrollbar {
    max-height: 100vh;
    overflow: hidden; }
  .fixed-sidebar .ps > .ps__scrollbar-y-rail, .fixed-sidebar .ps:hover > .ps__scrollbar-y-rail {
    opacity: 0;
    z-index: -1;
    visibility: hidden; }
  .fixed-sidebar.open .fixed-sidebar-left {
    transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
    .fixed-sidebar.open .fixed-sidebar-left.sidebar--small {
      transform: translateX(-100%); }
    .fixed-sidebar.open .fixed-sidebar-left.sidebar--large {
      transform: translateX(0);
      transition-delay: .3s; }
  .fixed-sidebar.open .fixed-sidebar-right {
    transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
    .fixed-sidebar.open .fixed-sidebar-right.sidebar--small {
      transform: translateX(100%); }
    .fixed-sidebar.open .fixed-sidebar-right.sidebar--large {
      transform: translateX(0);
      transition-delay: .3s; }
  .fixed-sidebar.right {
    top: 70px;
    z-index: 20;
    right: 0;
    min-height: 100%; }
    .fixed-sidebar.right .mCustomScrollbar {
      max-height: calc(100vh - 210px); }

.fixed-sidebar-left {
  position: absolute;
  height: 100%;
  background-color: #fff;
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  box-shadow: 0 0 34px 0 rgba(63, 66, 87, 0.1); }
  .fixed-sidebar-left.sidebar--small {
    width: 70px;
    transition-delay: .3s; }
    .fixed-sidebar-left.sidebar--small .left-menu a {
      padding: 14px 0 14px 25px;
      display: block; }
  .fixed-sidebar-left.sidebar--large {
    width: 270px;
    transform: translateX(-100%); }

.sidebar--large .logo img {
  margin-right: 20px; }

.sidebar--large .search-friend {
  padding: 0;
  border-top: 1px solid #e6e6e6; }

.sidebar--large .olympus-chat {
  padding: 30px 15px 15px 50px; }
  .sidebar--large .olympus-chat svg, .sidebar--large .olympus-chat i {
    float: right; }

.sidebar--large .chat-users li {
  padding: 13px 25px; }

.sidebar--large .chat-users .more-icons li {
  padding: 0; }

.fixed-sidebar-right {
  position: absolute;
  border-left: 1px solid #e6e6e6;
  z-index: 20;
  right: 0;
  top: 0;
  bottom: 70px;
  background-color: #fff;
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  padding-bottom: 140px;
  box-shadow: 0 0 34px 0 rgba(63, 66, 87, 0.1); }
  .fixed-sidebar-right.sidebar--small {
    width: 70px;
    transition-delay: .3s; }
  .fixed-sidebar-right.sidebar--large {
    width: 270px;
    transform: translateX(100%); }

.logo {
  background-color: #000000;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 15px; }
  .logo img {
    float: left;
     }
  .logo .logo-title {
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
    color: inherit;
     }
  .logo:hover {
    color: #fff; }

  .left-menu .left-menu-title {
    
    font-weight: 700; }
  .left-menu .left-menu-icon {
    fill: #9A9FBF;
    
    margin-right: 25px; }
  .left-menu .olymp-weather-icon {
    width: 26px; }
  .left-menu .olymp-happy-faces-icon {
    width: 23px; }
  .left-menu svg {
    width: 20px; }
  .left-menu a {
    padding: 15px 24px 15px 15px;
    display: flex;
    align-items: center;
    color: #666666;
    font-weight: 500;
    text-transform: uppercase;
    background-color: #f7f7f7;
    font-family: 'KoHo-Bold';
  }
  .left-menu a:hover {
    color: #000000;
  }


  .left-menu .subcard a {
    padding: 12px 24px 12px 40px;
    display: flex;
    align-items: center;
    color: #949494;
    font-weight: 500;
    text-transform: uppercase;
    background-color: #f9f9f9;
    font-family: 'KoHo-Medium';
  }
  .left-menu .subcard a:hover {
    color: #000000;
  }

  .left-menu .subcard a.collapsed{
    background-color: #ffffff;
  }

  .left-menu .subcard .your-profile-menu li a {
      font-size: 13px;
      padding: 10px 14px 10px 40px;
      color: #888888;
      background-color: #ffffff;
      display: block;
      text-transform: initial;
      font-family: 'KoHo-Regular';
  }
  .left-menu .subcard .your-profile-menu li a:hover {
    color: #555555;
    background-color: #f9f9f9;
  }
  .left-menu .subcard .your-profile-menu li a.active,
  .left-menu .subcard .your-profile-menu li a.active:hover {
      color: #ffffff;
      background-color: #000000;
      font-family: 'KoHo-Bold';
  }
  

  .left-menu .subcard .card-header i.plus-minus {
    float: right;
    transition: all .3s ease;
    font-size: 14px;
    right: 10px;
    position: absolute;
}



.left-menu .card-header i.plus-minus {
    float: right;
    transition: all .3s ease;
    font-size: 17px;
    right: 10px;
    position: absolute;
}
.left-menu .card-header i.plus-minus:before {
    font-family:"FontAwesome";
    content: "\f28e";
    font-weight: normal;
    font-style: normal;
}
.list .card-header i.plus-minus:before {
  font-family:"FontAwesome";
  content: "\f28e";
  font-weight: normal;
  font-style: normal;
}


.card-header .collapsed i.plus-minus:before{
  font-family:"FontAwesome";
  content: "\f2c2";
  font-weight: normal;
  font-style: normal;
}

.card-header i.fa {
  font-size: 20px;
  margin-right: 6px;
}

.card-header i.fa-shopping-cart {
  font-size: 22px;
  margin-right: 5px;
}

.left-menu .your-profile-menu {
    padding: 0;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 0;
}
.left-menu .your-profile-menu li a {
    font-size: 13px;
    padding: 10px 14px;
    color: #888888;
    background-color: #ffffff;
    display: block;
    text-transform: initial;
    font-family: 'KoHo-Regular';
}
.left-menu .your-profile-menu li a:hover {
  color: #555555;
  background-color: #f9f9f9;
}
.left-menu .your-profile-menu li a.active,
.left-menu .your-profile-menu li a.active:hover {
    color: #ffffff;
    background-color: #000000;
    font-family: 'KoHo-Bold';
}
.left-menu .your-profile-menu li a i {
    display: none;
}
.left-menu .your-profile-menu li a.done i {
    float: right;
    transition: all .3s ease;
    font-size: 18px;
    right: 20px;
    position: absolute;
    color: #a3d78d;
    display: inline-block;
}

.birthday-item {
  padding: 10px 15px;
}
.birthday-item .birthday-author-name .h6{
  margin-bottom: 0;
}
.birthday-item .birthday-date {
  font-size: 12px;
}
.birthday-item .btn {
  margin-bottom: 0;
  float: right;
}
.profile-completion {
  padding: 15px 25px 25px;
   }
  .profile-completion .skills-item-info {
    font-size: 14px; }

.chat-users {
  margin-bottom: 0; }
  .chat-users li {
    padding: 13px 20px;
    cursor: pointer; }
  .chat-users .author-thumb {
    margin-right: 8px; }
    .chat-users .author-thumb .icon-status {
      border-color: #fff; }
  .chat-users .author-name {
    font-size: 12px; }
  .chat-users .status {
    text-transform: uppercase;
    font-size: 8px;
    font-weight: 700;
    display: block; }
  .chat-users .more {
    float: right;
    margin-top: 7px; }
    .chat-users .more:hover .more-icons {
      visibility: visible;
      opacity: 1;
      right: 100%; }

.more-icons {
  position: absolute;
  right: -100%;
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  
  padding: 10px 25px 10px 10px;
  width: 160px;
  bottom: -17px; }
  .more-icons li {
    display: inline-block;
    fill: #c2c5d9;
    padding: 0; }
    .more-icons li:hover {
      fill: #9a9fbf; }
    .more-icons li + li {
      margin-left: 20px; }
  .more-icons svg {
    width: 22px;
    height: 20px; }

.olympus-chat {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px 22px;
  background-color: #7c5ac2;
  fill: #fff;
  height: 70px; }
  .olympus-chat .olympus-chat-title {
    text-transform: uppercase;
    color: #fff;
    margin-right: 40px;
    margin-bottom: 0; }

.search-friend {
  position: absolute;
  bottom: 70px;
  left: 0;
  width: 100%;
  box-shadow: 0 -50px 45px -3px rgba(255, 255, 255, 0.7);
  padding: 25px;
  background-color: #fff; }
  .search-friend input {
    padding: .5rem 1.1rem;
    font-size: 12px; }
  .search-friend .form-group {
    margin: 15px 20px;
    max-width: 150px; }
  .search-friend a {
    fill: #9a9fbf; }
  .search-friend a + a {
    margin-left: 13px; }

.accordion-menu .card-header {
  padding: 0; }

.accordion-menu .card-header a > .olymp-dropdown-arrow-icon {
  margin-left: 15px;
  margin-top: 4px; }

.accordion-menu .card-header svg {
  margin-top: 0; }

.accordion-menu .card-header a {
  color: inherit;
  font-size: 13px; }

@media (max-width: 768px) {
  .fixed-sidebar.right {
    display: none; }
  .fixed-sidebar.right.fixed-sidebar-responsive {
    display: block; }
  .fixed-sidebar.right.fixed-sidebar-responsive {
    top: 0;
    z-index: 30;
    min-height: 70px;
    height: 70px; }
  .fixed-sidebar-right {
    position: relative;
    bottom: auto;
    box-shadow: none;
    padding-bottom: 70px;
    border-left: none; }
  .fixed-sidebar .mCustomScrollbar {
    max-height: calc(100vh - 70px); } }

.skills-item {
  margin-bottom: 20px; }
  .skills-item .skills-item-meter {
    padding: 0;
    width: 100%;
    border-radius: 10px;
    background-color: #ebecf2;
    position: relative;
    height: 6px; }

.skills-item-info {
  margin-bottom: 16px;
  color: #444444;
  font-size: 12px; }
  .skills-item-info .skills-item-count {
    float: right; }

.skills-item-meter-active {
  position: relative;
  height: 100%;
  display: inline-block;
  border-radius: 10px;
  opacity: 0;
  transition: all .2s ease;
  top: -8px; }
  .skills-item-meter-active.skills-animate {
    animation: skills-animated 1.2s ease-out; }
  .skills-item-meter-active.skills-animate-opacity {
    animation: skills-animated-opacity .2s ease-out; }

@keyframes skills-animated {
  0% {
    width: 0; } }

@keyframes skills-animated-opacity {
  100% {
    opacity: 1; } }

.reviews{
  padding: 23px 25px 25px 25px;
}
.friend-header-thumb {
  border-bottom: 1px solid #e6e6e6;
  overflow: hidden; }
  .friend-header-thumb img {
    width: 100%; }

.friend-item {
  border-radius: 4px;
  overflow: hidden; }
  .friend-item .control-block-button {
    position: relative; }
  .friend-item .swiper-container {
    padding-bottom: 40px; }
  .friend-item .btn-control {
    margin-bottom: 0;
    margin-right: 14px; }
  .friend-item.fav-page .friend-about {
    text-align: center; }

.friend-item-content {
  padding: 25px;
  text-align: center;
  position: relative; }
  .friend-item-content .more {
    z-index: 5;
    position: absolute;
    right: 15px;
    top: 50px;
    font-size: 16px;
    padding: 10px; }

.friend-avatar {
  position: relative;
  margin-bottom: 0px; }
  .friend-avatar .author-thumb {
    margin: 0 auto;
    height: 94px;
    width: 94px;
    margin-bottom: 10px; }
    .friend-avatar .author-thumb img {
      border: 0;
      width: 94px;
    height: 94px; }

.friend-count {
  margin-top: 20px;
  margin-bottom: 0px; }

.friend-count-item {
  display: inline-block;
  margin-right: 25px; }
  .friend-count-item .title {
    color: #888888;
    margin-bottom: 0.5rem; }
  .friend-count-item .h6 {
    margin-bottom: 0; }
  .friend-count-item:last-child {
    margin-right: 0; }

.friend-about {
  text-align: left;
  margin-bottom: 30px;
  font-size: 13px; }

.friend-since > *:first-child {
  font-size: 11px; }







.post__mail{
  text-transform: lowercase !important;
}
.post__author-name{
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  text-transform: lowercase !important;
}

.post__author-name{
  color: #666666;
}
.post__author-name:hover{
  color: #9ca0b5;
}



.post__author-name.user{
  color: #257fc3;
}
.post__author-name.user:hover{
  color: #1d6fad;
}

.post__author-name.vendedor{
  color: #000000;
}
.post__author-name.vendedor:hover{
  color: #cc3f30;
}

.post__author-name.influenciador{
  color: #7baf5e;
}
.post__author-name.influenciador:hover{
  color: #68984e;
}

.post__author-name.fotografo{
  color: #7b54cc;
}
.post__author-name.fotografo:hover{
  color: #6c4caf;
}

.author-name.user{
  color: #257fc3;
}
.author-name.vendedor{
  color: #000000;
}
.author-name.influenciador{
  color: #7baf5e;
}
.author-name.fotografo{
  color: #7b54cc;
}

.account_type{
  font-size: 16px;
}

.comments-list .post__author-name{
  font-size: 14px;
}

.code_tracking{
  color: #000000;
}
.code_tracking:hover{
  color: #cc3f30;
  text-decoration: underline;
}

.more-dropdown {
  display: block;
  position: absolute;
  top: 100%;
  right: 0;
  width: 180px;
  visibility: hidden;
  opacity: 0;
  text-align: left;
  padding: 0px;
  z-index: 2000;
  transition: opacity .4s ease; }
  .more-dropdown ul {
    padding: 15px 25px;
    margin-bottom: 0; }
  .more-dropdown li a > * {
    display: inline-block;
    vertical-align: middle; }
  .profile-menu li .more-dropdown,
  .item-post .more-dropdown {
    background-color: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    text-transform: uppercase; }

  .profile-menu li .more-dropdown a,
  .item-post .more-dropdown a {
    padding: 13px;
    color: #888888;
    width: 100%;
    font-size: 14px;
    border-bottom: 1px solid #e6e6e6;
    display: block; }
    .more-dropdown a.btn-sm {
      padding: 0.5rem 1.7rem;
      font-size: 0.688rem;
      line-height: 1.5;
    }
      
      .profile-menu .more-dropdown li:first-child a,
      .item-post .more-dropdown li:first-child a {
        border-radius: 4px 4px 0px 0px;
      }
      
      .profile-menu .more-dropdown li:last-child a,
      .item-post .more-dropdown li:last-child a {
        border-bottom: 0;
        border-radius: 0px 0px 4px 4px;
      }

      .profile-menu .more-dropdown li:only-child a,
      .item-post .more-dropdown li:only-child a {
      border-radius: 4px 4px 4px 4px;
    }

    .profile-menu .more-dropdown a:hover,
    .item-post .more-dropdown a:hover {
      color: #555555;
      background-color: #f2f2f2; }

.more:hover .more-dropdown {
  visibility: visible;
  opacity: 1;
}
.save_div{
  margin-top: 20px;
  margin-bottom: -16px;
  margin-left: 0px;
}
.more {
  position: relative;
  
  color: #888888;
  fill: #c0c4d8; }

.more-with-triangle:before {
  position: absolute;
  display: inline-block;
  content: '';
  top: -7px;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #fff;
  right: 25px; }

.more-with-triangle.triangle-bottom-right:before {
  top: auto;
  bottom: -7px;
  right: 15px;
  border-bottom: none;
  border-top: 7px solid #fff; }

.more-with-triangle.triangle-top-center:before {
  margin-right: -3px;
  right: 50%; }

.more-with-triangle.triangle-top-left:before {
  right: auto;
  left: 15px; }

.friend-groups .friend-item-content {
  padding: 25px; }
  .friend-groups .friend-item-content .more {
    top: 0;
    right: 10px; }

.friend-groups .friend-avatar {
  margin-top: 0; }
  .friend-groups .friend-avatar .author-thumb {
    width: 120px;
    height: 120px;
    border-radius: 100px;
    line-height: 120px;
    background-color: #d7d9e5;
    margin-bottom: 20px;
    overflow: hidden; }
    .friend-groups .friend-avatar .author-thumb img {
      border: none; }

.friend-groups .country {
  font-size: 11px; }

.friend-groups .friends-harmonic {
  display: inline-block;
  margin-bottom: 35px; }

.friend-groups .control-block-button {
  margin-bottom: 15px; }

.create-group {
  background-color: transparent;
  border: 2px dashed #e6e6e6;
  position: relative; }
  .create-group .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center; }
    .create-group .content .btn-control {
      margin-right: 0;
      margin-bottom: 15px; }
      .create-group .content .btn-control svg {
        width: 20px;
        height: 20px; }
  .create-group .author-name {
    font-size: 14px; }


@media (max-width: 640px) {
  .create-group .content {
    position: relative;
    transform: none;
    top: auto;
    left: auto;
    margin: 30px auto; } }


.swiper-pagination-bullet {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #fff;
  margin: auto 10px;
  border-radius: 50%;
  cursor: pointer;
  
  border: 2px solid #d9dbe7; }
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #000000;
    border-color: transparent; }

.pagination-primary .page-link:focus, .pagination-primary .page-link:hover {
  background-color: #000000; }

.pagination-primary .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #000000; }

.swiper-pagination {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0); }

.pagination-bottom {
  padding-bottom: 30px; }
  .pagination-bottom .swiper-pagination {
    bottom: 10px; }

.btn-next, .btn-prev, .btn-next-without, .btn-prev-without {
  position: absolute;
  display: inline-block;
  z-index: 999;
  color: #fff;
  top: 50%;
  transform: translate(0, -50%);
  background: rgba(0, 0, 0, 0.3);
  width: 30px;
  height: 30px;
  border-radius: 100%;
  overflow: hidden;
  text-align: center;
}
.btn-next:hover, .btn-prev:hover, .btn-next-without:hover, .btn-prev-without:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
}

.btn-next i, .btn-next-without i {
  padding: 4px;
  margin-left: 1px;
  font-size: 22px;
}
.btn-prev i, .btn-prev-without i {
  padding: 4px;
  margin-left: -2px;
  font-size: 22px;
}

.btn-next, .btn-next-without {
  right: 20px;
}
.btn-prev, .btn-prev-without {
  left: 20px;
}

.slider-slides {
  position: absolute;
  bottom: -200px;
  width: 100%;
  text-align: center; }
  .slider-slides .slides-item {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-right: 10px;
    border-radius: 4px;
    overflow: hidden; }
    .slider-slides .slides-item .overlay {
      opacity: 1;
      background: rgba(43, 45, 59, 0.6); }
    .slider-slides .slides-item:last-child {
      margin-right: 0; }
    .slider-slides .slides-item.slide-active .overlay {
      opacity: 0; }

.single-post-slider {
  position: relative;
  margin: 40px 0;
  padding-bottom: 100px; }
  .single-post-slider .slider-slides {
    bottom: 0; }
  .single-post-slider .btn-next, .single-post-slider .btn-prev {
    fill: #9a9fbf; }
    .single-post-slider .btn-next:hover, .single-post-slider .btn-prev:hover {
      fill: #000000; }
  .single-post-slider .btn-next {
    right: 0; }
  .single-post-slider .btn-prev {
    left: 0; }
  .single-post-slider .slider-slides .slides-item {
    border-radius: 0;
    margin-right: 22px; }
    .single-post-slider .slider-slides .slides-item:last-of-type {
      margin-right: 0; }
  .single-post-slider .swiper-slide img {
    width: 100%; }


@media (max-width: 1080px) {
  .slider-slides {
    display: none; }
  .single-post-slider .slider-slides {
    display: block; } }

@media (max-width: 800px) {
  .single-post-slider .slider-slides .slides-item {
    width: 40px;
    height: 40px; }
  .single-post-slider {
    padding-bottom: 50px; } }

@media (max-width: 560px) {
  .single-post-slider .slider-slides .slides-item {
    width: 20px;
    height: 20px; } }

@media (max-width: 460px) {
  .single-post-slider .slider-slides .slides-item {
    width: 15px;
    height: 15px; }
  .single-post-slider .btn-next, .single-post-slider .btn-prev {
    display: none; } }

.pagination {
  margin-top: 40px;
  margin-bottom: 40px;
  justify-content: center !important; }
  .pagination li {
    font-size: 12px;
    font-weight: 700;
    padding: 0 4px; }
  .pagination a,
  .pagination span {
    border-radius: 4px; }

.pagination--small {
  margin-top: 15px;
  margin-bottom: 15px; }
  .pagination--small a {
    padding: 0.25rem .45rem;
    font-size: 8px; }

.landing-content {
  color: #fff;
  margin-bottom: 30px; }
  .landing-content > *:first-child {
    font-weight: 300; }
  .landing-content > *:last-child {
    margin-bottom: 0; }
  .landing-content > * {
    color: inherit;
    margin-bottom: 45px; }

.main-header.main-header-fullwidth {
  width: 100%;
  max-width: 100%; }

.main-header.main-landing {
  width: 100%;
  max-width: 100%; }
  .main-header.main-landing .logo {
    text-align: center;
    display: block;
    background-color: transparent;
    font-size: 7px;
    margin-bottom: 60px; }
    .main-header.main-landing .logo img {
      float: none;
      display: inline-block;
      margin: 0 auto 10px; }
    .main-header.main-landing .logo .logo-title {
      font-size: 18px;
      font-weight: 700; }
  .main-header.main-landing h1 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 40px; }
  .main-header.main-landing p {
    margin-bottom: 60px; }

.img-rocket {
  position: absolute;
  bottom: 160px;
  right: 30%; }

.landing-item {
  text-align: center;
  margin-bottom: 50px; }
  .landing-item .title {
    font-weight: 700; }
  .landing-item .full-block {
    z-index: 999; }
  .landing-item .landing-item-thumb {
    position: relative;
    margin-bottom: 25px;
    box-shadow: 0 0 34px 0 rgba(63, 66, 87, 0.3); }
    .landing-item .landing-item-thumb img {
      width: 100%; }
    .landing-item .landing-item-thumb .btn {
      margin-bottom: 0;
      position: absolute;
      opacity: 0;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      max-width: 90%; }
    .landing-item .landing-item-thumb .new {
      display: block;
      position: absolute;
      right: 5px;
      top: 5px;
      width: 50px;
      height: 50px;
      border-radius: 100%;
      background-color: #000000;
      color: #fff;
      line-height: 50px;
      text-align: center;
      text-transform: uppercase;
      font-size: 14px;
      font-weight: 700; }
  .landing-item:hover .overlay {
    opacity: 1; }
  .landing-item:hover .btn {
    opacity: 1; }

.landing-main-content {
  text-align: center;
  margin: 80px 0; }
  .landing-main-content svg {
    fill: #000000;
    margin-bottom: 30px; }
  .landing-main-content .btn {
    margin: 40px 0; }
  .landing-main-content .title {
    font-weight: 300;
    margin-bottom: 30px; }


@media (max-width: 800px) {
  .img-rocket {
    right: 5px; }
  .landing-content > * {
    margin-bottom: 20px; } }

@media (max-width: 420px) {
  .img-rocket {
    bottom: 60px; } }

.registration-login-form {
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  background-color: #fff;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  min-height: 700px; }
  .registration-login-form .nav-tabs {
    float: left;
    display: block;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0; }
  .registration-login-form .nav-item {
    margin-bottom: 0;
    height: 50%;
    display: table; }
    .registration-login-form .nav-item:last-child .nav-link {
      border-bottom: 0; }
  .registration-login-form .nav-link {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    padding: 25px;
    color: #c0c4d8;
    fill: #c0c4d8;
    background-color: #f2f2f2;
    height: 100%;
    display: table-cell;
    vertical-align: middle; }
    .registration-login-form .nav-link.active {
      fill: #000000;
      background-color: #fff;
      border-color: #e6e6e6; }
    .registration-login-form .nav-link svg {
      width: 21px;
      height: 21px; }
  .registration-login-form .tab-content {
    overflow: hidden; }
  .registration-login-form .content {
    padding: 35px 25px; }
  .registration-login-form .title {
    padding: 25px;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 0; }
  .registration-login-form p {
    margin-bottom: 0;
    font-size: 13px; }
  .registration-login-form .remember {
    margin: 35px 0 25px; }

.remember {
  margin-bottom: 1rem; }
  .remember .checkbox {
    display: inline-block;
    margin-bottom: 0; }
  .remember a {
    line-height: 2; }
  .remember .forgot {
    float: right;
    color: #888888;
   }
   .remember .forgot:hover {
    color: #000000;
  }

.or {
  position: relative;
  width: 100%;
  height: 1px;
  margin: 1rem 0 2rem 0;
  background-color: #e6e6e6; }
  .or:after {
    content: 'OU';
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 0 25px;
    font-size: 10px;
    z-index: 5; }


@media (max-width: 1023px) {
  .registration-login-form {
    padding-top: 71px;
    padding-left: 0; }
  .registration-login-form .nav-tabs {
    bottom: auto;
    height: auto;
    width: 100%; }
  .registration-login-form .nav-item {
    height: 100%;
    display: block;
    width: 50%;
    float: left;
    text-align: center; }
  .registration-login-form .nav-link {
    display: block; }
  .registration-login-form .nav-item:last-child .nav-link {
    border-bottom: 1px solid #e6e6e6; } }

.main-header {
  padding: 74px 0 0px 0;
  margin: 0;
  position: relative; }

@keyframes sideupscroll {
  0% {
    transform: translate3D(0%, 0%, 0); }
  50% {
    transform: translate3D(-50%, 0, 0); }
  100% {
    transform: translate3D(-100%, 0, 0); } }
  .main-header.main-header-has-header-standard {
    padding-top: 0; }

.img-bottom {
  position: relative;
  display: block;
  margin: 10px auto 0;
  margin-bottom: -70px; }

.main-header-content {
  color: #fff;
  text-align: center; }
  .main-header-content > * {
    color: inherit; }
  .main-header-content > *:first-child {
    font-weight: 300;
    margin-bottom: 20px; }
  .main-header-content p {
    font-weight: 400;
    margin-bottom: 0; }


@media (max-width: 768px) {
  .main-header {
    max-width: 100%; } }

.items-round-little {
  color: #fff;
  font-weight: 700;
  font-size: 10px;
  text-align: center;
  width: 19px;
  height: 19px;
  line-height: 19px;
  border-radius: 100%;
  margin-left: 12px; }
  .items-round-little:hover {
    color: #fff; }

.your-profile-menu {
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 0; }
  .your-profile-menu li a {
    font-size: 12px;
    padding: 8px 0;
    color: #888888;
    display: block;
    text-transform: uppercase; }
  .your-profile-menu li a.active,
  .your-profile-menu li a.active:hover {
    color: #000000;
    font-weight: 700;
  }
    .your-profile-menu li a:hover {
      color: #444444; }

.profile-settings-responsive {
  width: 250px;
  min-height: 100vh;
  position: fixed;
  top: 70px;
  transform: translateX(-100%);
  z-index: 20;
  background-color: #fff;
  
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 0 34px 0 rgba(63, 66, 87, 0.1); }
  .profile-settings-responsive .fa-angle-left {
    display: none; }
  .profile-settings-responsive.open {
    transform: translateX(0); }
    .profile-settings-responsive.open .fa-angle-right {
      display: none; }
    .profile-settings-responsive.open .fa-angle-left {
      display: block; }
  .profile-settings-responsive .ps > .ps__scrollbar-y-rail {
    opacity: 0;
    visibility: hidden;
    z-index: -4444; }
  .profile-settings-responsive .mCustomScrollbar {
    max-height: calc(100vh - 70px); }

.profile-settings-open {
  cursor: pointer;
  position: absolute;
  left: 100%;
  top: -webkit-calc(50% - 25px);
  top: calc(50% - 25px);
  background-color: #fff;
  -webkit-box-shadow: 1px 0 3px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 0 3px rgba(0, 0, 0, 0.2);
  border-radius: 0 100px 100px 0;
  line-height: 1;
  padding: 20px 8px 20px 8px;
  font-size: 20px; }




.label{
  display: inline-block;
  padding: 4px 6px;
  font-size: 12px;
  line-height: 12px;
  color: #fff;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 4px;
  margin: 2px 0;
  float: left;
}
a.label:focus,a.label:hover{
    color:#fff;
    text-decoration:none;
    cursor:pointer
}
.label:empty{
    display:none
}
.btn .label{
    position:relative;
    top:-1px
}
.label-info{
    background-color:#000000;
}
.label-info[href]:active{
    opacity: 0.6;
}


@media (max-width: 768px) {
  .profile-settings-responsive {
    visibility: visible;
    opacity: 1; }
  .responsive-display-none {
    display: none; } }


.notification-list {
  margin-bottom: 0; }
  .notification-list .selectize-dropdown-content > *, .notification-list li {
    padding: 8px;
    color: #888888;
    border-bottom: 1px solid #e6e6e6;
    display: inline-block;
    position: relative;
    background-color: #fff;
    width: 100%; }

    .notification-list .selectize-dropdown-content > *.un-read, .notification-list li.un-read {
      background-color: #f2f2f2;
    }

    .notification-list .selectize-dropdown-content > *:first-child {
      border-radius: 5px 5px 0 0;
    }
    .notification-list .selectize-dropdown-content > *:last-child {
      border-radius: 0 0 5px 5px;
    }
    .notification-list.friend-requests li {
      border: 1px solid #e6e6e6;
      border-bottom: 0;
    }
    .notification-list.friend-requests li:last-child {
      border-radius: 0 0 5px 5px;
      border-bottom: 1px solid #e6e6e6;
    }
    .notification-list.friend-requests li:first-child {
      border-radius: 5px 5px 0 0;    }
    .notification-list.friend-requests li:only-child {
      border-radius: 5px 5px 5px 5px;
    }
    .notification-list .selectize-dropdown-content > *:only-child {
      border-radius: 5px 5px 5px 5px;
    }

    .notification-list .selectize-dropdown-content > * > *, .notification-list li > * {
      margin-bottom: 0;
      display: inline-block;
      vertical-align: middle;
      color: #888888;
       }

    .popup-chat .ui-block-title {
      text-transform: none;
    }


    .notification-list .selectize-dropdown-content > * .h6, .notification-list li .h6 {
      color: #888888; }
    .notification-list .selectize-dropdown-content > *:hover, .notification-list li:hover {
      color: #555555;
      background-color: #f2f2f2;
    }

    .notification-list li.active,
    .notification-list li.active:hover {
      color: #555555;
      background-color: #f2f2f2;
    }


      .notification-list .selectize-dropdown-content > * .h6.vendedor, .notification-list li .h6.vendedor{
        color: #000000;
      }
    .notification-list .selectize-dropdown-content > :hover .h6, .notification-list li:hover .h6 {
      color: #555555; }
    .notification-list .selectize-dropdown-content > :hover .h6.vendedor, .notification-list li:hover .h6.vendedor{
        color: #cc3f30;
    }
      .notification-list .selectize-dropdown-content > *:hover .more, .notification-list li:hover .more {
        opacity: 1; }
    
  .notification-list .selectize-dropdown-content > * {
    cursor: pointer; }
    .notification-list .selectize-dropdown-content > *:last-child {
      border-bottom: none; }
  .notification-list .notification-friend {
    display: inline-block; }
  .notification-list .comment-photo {
    margin: 30px 0 0 60px;
    max-width: 280px;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center; }
    .notification-list .comment-photo span {
      background-color: #f5f7fb;
      padding: 0 15px; }
  .notification-list .author-thumb {
    height: 28px;
    width: 28px; }
  .notification-list .author-thumb img {
    height: 28px;
    width: 28px; }

  .notification-list.desktop_list .author-thumb {
    height: 34px;
    width: 34px;
    float: left;
    margin-right: 6px; }
  .notification-list.desktop_list .author-thumb img {
    height: 34px;
    width: 34px; }
  .notification-list .notification-event {
    padding-left: 6px; }
  .notification-list .h6 {
    font-size: 15px; }
  .notification-list .notification-link {
    color: #000000; }
  .notification-list .notification-icon {
    color: #d7d9e5;
    fill: #d7d9e5;
    float: right;
    margin-top: 10px; }
    .notification-list .notification-icon svg {
      width: 22px;
      height: 20px; }
  .notification-list .more {
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 10px;
    color: #d6d9e6;
    opacity: 0; }
    .notification-list .more i + i {
      margin-left: 5px; }
    .notification-list .more svg + i {
      margin-left: 5px; }
    .notification-list .more i + svg {
      margin-left: 5px; }
    .notification-list .more svg + svg {
      margin-left: 5px; }

.notification-friend {
  margin-bottom: 0; }


.new_message_ui.ui-block-content{
  padding: 0 !important;
}

.new_message_ui.ui-block-content .notification-list li:last-child{
  border-bottom: 0 !important;
  border-radius: 0 0 5px 5px !important;
}

.new_message_ui.ui-block-content .chat-message .author-thumb {
    width: 50px !important;
}

.new_message_ui.ui-block-content .chat-message .notification-event {
  margin-top: 10px !important;
}

.chat-message .notification-event {
  width: 80%;
  font-size: 12px;
  float: left; }

.chat-message .notification-friend {
  display: block;
  margin-bottom: 4px;
}

.chat-message li > * {
  vertical-align: top; }

.chat-message li a {
    width: 100%;
}
.chat-message .author-thumb {
  width: 20%;
  height: 40px;
  float: left; }
.chat-field .chat-message .author-thumb {
  width: 20%;
  height: 40px;
  float: left; }

.chat-field  .chat-message .notification-event {
  width: 80%;
  font-size: 12px;
  float: left; }
.chat-message .author-thumb img {
  height: 40px;
  width: 40px;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.3); }
.chat-message li.chat-group .author-thumb {
  border-radius: 0; }
  .chat-message li.chat-group .author-thumb img {
    width: 16px;
    height: 16px;
    float: left;
    margin-right: 2px;
    margin-bottom: 2px;
    border-radius: 100%;
    overflow: hidden; }

.chat-message li.chat-group .last-message-author {
  color: #444444;
  font-weight: 700; }

.chat-message li.message-unread {
  background-color: #f7f9fc; }
  .chat-message li.message-unread .notification-icon {
    fill: #9a9fbf; }

.chat-field {
  border-left: 1px solid #e6e6e6; }
  .chat-field .mCustomScrollbar {
    overflow: hidden;
    max-height: 450px; }
  .chat-field .ps > .ps__scrollbar-y-rail, .chat-field .ps:hover > .ps__scrollbar-y-rail {
    opacity: 0;
    z-index: -1;
    visibility: hidden; }
  .chat-field textarea {
    border-radius: 0;
    border-right: 0;
    border-left: 0; }

.chat-message-field .notification-event {
  max-width: 90%; }

.chat-message-field li {
  border-bottom: none; }
  .chat-message-field li:hover {
    background-color: transparent; }

.chat-message-field .chat-message-item {
  float: left;
  margin-top: 10px;
  font-size: 13px; }

.chat-message-field .notification-date {
  font-size: 10px;
  float: right;
  margin-top: 0; }

.chat-message-field .notification-friend {
  float: left;
  width: 60%; }

.added-photos {
  float: left;
  margin-top: 20px; }
  .added-photos img {
    border-radius: 10px;
    margin-right: 8px;
    margin-bottom: 15px; }
    .added-photos img:last-child {
      margin-right: 0; }
  .added-photos .photos-name {
    display: block;
    font-size: 10px; }

.add-options-message {
  padding: 0px;
  float: left;
  width: 100%; }
  .add-options-message a {
    margin-bottom: 0;
    float: right; }
    .add-options-message a + a {
      margin-right: 15px; }
  .add-options-message .options-message {
    color: #c2c5d9;
    fill: #c2c5d9;
    position: relative;
    display: inline-block;
    cursor: pointer;
    vertical-align: middle; }
    .add-options-message .options-message + .options-message {
      margin-left: 35px; }
    .add-options-message .options-message svg {
      width: 24px;
      height: 18px; }
  .add-options-message .more-dropdown {
    width: 215px;
    top: auto;
    bottom: 20px;
    right: -20px;
    padding: 8px; }
    .add-options-message .more-dropdown a {
      padding: 0; }
    .add-options-message .more-dropdown li {
      float: left;
      padding: 4px; }

.smile-block:hover .more-dropdown {
  opacity: 1;
  visibility: visible; }

.smile-block li a {
  opacity: .7; }

.smile-block li:hover a {
  opacity: 1; }

.icon-status {
  width: 6px;
  height: 6px;
  border-radius: 100%;
  display: inline-block;
  margin-right: 8px; }
  .icon-status.online {
    background-color: #32e4cd; }
  .icon-status.away {
    background-color: #ffd52f; }
  .icon-status.disconected {
    background-color: #ff4f60; }
  .icon-status.status-invisible {
    background-color: #cbdfee; }

.friend-requests .notification-icon {
  margin-top: 11px; }

.friend-requests .notification-friend {
  display: block; }

.friend-requests .accepted .notification-friend {
  display: inline-block; }

.friend-requests .accepted .notification-link {
  color: #00b7ff; }

.friend-requests .accepted .notification-icon {
  margin-top: 10px; }

.friend-requests .chat-message-item {
  font-size: 12px; }

.follow-item {
  padding: 20px;
  height: 80px; }
  .follow-item .author-thumb {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    float: left;
  }

.follow-item div.author-name {
  overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 65%;
    float: left;
    margin-top: 0;
}
.lottery-loader {
  width: 100%;
  height: 8px;
  position: absolute;
  margin-left: -10px;
}
.lottery-username {
  width: 100%;
  height: 20px;
  font-size: 18px;
  text-align: center;
  position: absolute;
  margin-left: -10px;
}
.lottery-username span{
  font-weight: bold;
}
.lottery-loader-bar {
  height: 8px;
  border-radius: 100px;
  background-color: #e6e6e6;
}

.lottery-loader-bar-value {
  height: 8px;
  border-radius: 100px;
  background-color: #000000;
}
.lottery-loader-bar-value.success {
  background-color: #83bb64;
}
  .follow-item .follow-date {
    font-size: 12px; }
  .follow-item .btn {
    margin-bottom: 0;
    float: right;
    margin-top: 0px; }
  .follow-item.badges .author-thumb {
    width: 38px;
    height: 38px;
    margin-right: 25px; }
  .follow-item.badges .follow-date {
    font-size: 13px; }
  .follow-item.badges .skills-item {
    min-width: 220px;
    display: block;
    float: right;
    margin-bottom: 0;
    margin-top: 18px; }
    @media (max-width: 999px) {
      .follow-item.badges .skills-item {
        float: none; } }
  .follow-item.badges .skills-item-meter-active {
    background: linear-gradient(to right, #ff613a, #ff9432); }

.label-avatar {
  position: absolute;
  top: -1px;
  right: -4px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 100%;
  overflow: hidden; }


@media (max-width: 980px) {
  .col-xl-5.col-lg-6.col-md-12.col-sm-12.col-xs-12.padding-r-0 {
    padding-right: 10px; }
  .col-xl-7.col-lg-6.col-md-12.col-sm-12.col-xs-12.padding-l-0 {
    padding-left: 10px; } }

@media (max-width: 480px) {
  .add-options-message .options-message + .options-message {
    margin-left: 15px; }
  .add-options-message button {
    float: none;
    margin-left: 0;
    display: block;
    margin-top: 10px; }
  .add-options-message button + button {
    margin-right: 0; }
  .notification-list .notification-event {
    max-width: 75%; } }

@media (max-width: 420px) {
  .follow-item.badges .author-thumb {
    margin-right: 0;
    margin-bottom: 15px;
    display: block; }
  .follow-item .btn {
    float: none;
    margin-top: 15px;
    display: block; } }

@media (max-width: 360px) {
  .notification-list .notification-event {
    max-width: 60%; }
  .chat-message-field .notification-date {
    float: none;
    margin-top: 5px; }
  .chat-message-field .notification-friend {
    float: none; } }

.popup-chat {
  border-left: 1px solid #e6e6e6; }
  .popup-chat .mCustomScrollbar {
    overflow: hidden;
    max-height: 450px; }
  .popup-chat .ps > .ps__scrollbar-y-rail, .popup-chat .ps:hover > .ps__scrollbar-y-rail {
    opacity: 0;
    z-index: -1;
    visibility: hidden; }
  .popup-chat .ui-block-title {
    padding: 16px; }
  .popup-chat .more {
    width: auto;
    font-size: 14px;
    text-align: right;
 }
    .popup-chat .more i + i {
      margin-left: 15px; }
    .popup-chat .more svg + i {
      margin-left: 15px; }
    .popup-chat .more i + svg {
      margin-left: 15px; }
    .popup-chat .more svg + svg {
      margin-left: 15px; }
  .popup-chat .notification-event {
    padding-left: 10px;
    width: 84%; }
  .popup-chat .chat-message-item {
    padding: 8px 12px;
    background-color: #eeeeee;
    margin-top: 0;
    border-radius: 6px;
    margin-bottom: 4px;
    font-size: 14px; }
  .popup-chat .notification-date {
    float: left;
    clear: both; }
  .popup-chat .me .notification-date {
    float: right;
    clear: both; }
  .popup-chat .author-thumb {
    width: 40px;
    height: 40px; }
  .popup-chat .chat-message-field li {
    overflow: hidden;
    padding: 10px 10px 0px 10px; }



    .popup-chat .chat-message-field li:last-child {
      margin-bottom: 10px; }
    .popup-chat .chat-message-field li.me .chat-message-item {
      background-color: #000000;
      color: #fff; }
    .popup-chat .chat-message-field li.me .author-thumb {
      float: right; }
    .popup-chat .chat-message-field li.me .chat-message-item {
      float: right; }
    .popup-chat .chat-message-field li.me .notification-event {
      float: right;
      padding-left: 0;
      padding-right: 10px; }

    #scroll-message{
      max-height: 440px;
      overflow: auto;
    }


  .popup-chat .add-options-message {
    position: absolute;
    right: 20px;
    bottom: 15px;
    width: auto;
    padding: 0; }
    .popup-chat .add-options-message .options-message + .options-message {
      margin-left: 15px; }
  .popup-chat .form-group.label-floating textarea.form-control {
    border-left: 0;
    border-right: 0;
    border-bottom: 0; }
  .popup-chat .form-group {
    margin-bottom: 0; }
  .popup-chat textarea {
    min-height: 60px;
    height: 60px;
    
    border-radius: 0;
    border-left: 0;
    border-bottom: 1px solid #e6e6e6;
    border-right: 0;
    border-top: 1px solid #e6e6e6; }
    .popup-chat textarea:focus {
      min-height: 100px; }

.popup-chat-responsive {
  position: fixed;
  right: 0;
  top: 0;
  transform: translateY(-100%);
  max-width: 300px;
  opacity: 1;
  visibility: visible;
  display: block;
  
  margin-bottom: 0;
  z-index: 999;
  max-height: 50vh; }
  .popup-chat-responsive .mCustomScrollbar {
    overflow: hidden;
    max-height: 150px; }
  .popup-chat-responsive.open-chat {
    bottom: auto;
    top: 0;
    transform: translateY(0); }
.ui-block-lottery{
  padding-bottom: 63px;
}

.ui-block-lottery .post-additional-lottery{
  float: right;
  margin-top: 20px;
  width: 100%;
}

@media (max-width: 768px) {
  .popup-chat-responsive {
    opacity: 1;
    visibility: visible;
    display: block; } }


body {
  overflow-x: hidden; }
  body:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(43, 45, 59, 0.9);
    opacity: 0;
    transition: opacity .3s ease;
    z-index: -999; }
  body.overlay-enable:before {
    opacity: .8;
    z-index: 500; }
  body.body--fixed {
    position: fixed;
    width: 100%; }

.window-popup {
  max-width: calc(100% - 40px); }
  .window-popup .icon-close {
    opacity: 1;
    margin-top: 0;
    margin-right: 0; }
  .window-popup .icon {
    fill: #888888;
    float: right;
    margin-top: 7px;
    padding: 0; }
  .window-popup .input-group-addon .icon {
    margin-top: 0; }
  .window-popup .form-group {
    margin-bottom: 25px; }
  .window-popup .form-group.with-button button {
    width: 50px;
    border-radius: 0 5px 5px 0; }
  .window-popup .olymp-computer-icon {
    width: 22px;
    height: 20px; }

.fav-page-popup {
  width: 470px; }
  .fav-page-popup button {
    margin-bottom: 0; }
  .fav-page-popup .form-group.label-floating .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    color: #000000; }

.icon-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 18px;
  z-index: 10;
}

.modal .icon-close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 20px;
  z-index: 10;
  background: #ffffff;
  padding: 14px 18px 14px;
  border-radius: 0 5px 0 0;
}
.modal .icon-close:hover {
  background-color: #f2f2f2;
}
.icon-edit {
  position: absolute;
  top: 15px;
  right: 44px;
  font-size: 16px;
  z-index: 10;
}
.update-header-photo {
  width: 770px; }

.upload-photo-item {
  display: inline-block;
  vertical-align: middle;
  width: 49%;
  padding: 50px;
  text-align: center;
  fill: #c2c5d9;
  border-left: 1px solid #e6e6e6; }
  .upload-photo-item:first-child {
    border-right: none; }
  .upload-photo-item h6, .upload-photo-item .h6 {
    margin-bottom: 0; }
  .upload-photo-item svg {
    margin-bottom: 30px;
    width: 22px;
    height: 20px; }
  .upload-photo-item span {
    font-size: 11px;
    color: #888888; }
  .upload-photo-item:hover {
    fill: #000000;
    background-color: #f2f2f2; }

.choose-from-my-photo {
  width: 670px; }
.choose-from-my-photo .ui-block-content{
  background: #f2f2f2;
}

.ui-block-content.advantage{
  padding: 0;
}
  .choose-from-my-photo .ui-block-title {
    position: relative; }
    .choose-from-my-photo .ui-block-title .nav-tabs {
      display: flex;
      border-bottom: none; }
  .choose-from-my-photo .nav-tabs {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%; }
  .choose-from-my-photo .nav-tabs .nav-link {
    border-radius: 0;
    padding: 18px 25px;
    fill: #c2c5d9;
    background-color: #f2f2f2;
    border-color: #e6e6e6;
    border-top-color: transparent;
    border-right: none;
    height: 100%; }
    .choose-from-my-photo .nav-tabs .nav-link.active {
      fill: #000000;
      background-color: #fff; }
    .choose-from-my-photo .nav-tabs .nav-link svg {
      width: 18px;
      height: 20px; }
  .choose-from-my-photo .btn {
    margin-bottom: 0px; }
    .choose-from-my-photo .btn + .btn {
      margin-left: 10px; }

.choose-photo-item {
  position: relative;
  border-radius: 4px;
  width: 20%;
  float: left;
  padding: 0 10px 10px 0;
}

.choose-photo-item.influencer{
  width: 100%;
  padding: 0 0 10px 0;
}
  .choose-photo-item img {
    max-width: 100%;
    width: 100%; }
  .choose-photo-item:last-child {
    margin-right: 0; }
  .choose-photo-item .radio {
    position: relative;
    margin-bottom: 0;
    border: 1px solid #e6e6e6;
    border-radius: 4px; }
    .choose-photo-item .radio label {
      padding-left: 0;
      margin-bottom: 0;
      width: 100%; }
      .choose-photo-item .radio label span {
        position: absolute;
        top: 10px;
        right: 10px;
        left: auto; }

.choose-photo-item .checkbox {
  position: relative;
  margin-bottom: 0;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
}
.choose-photo-item .checkbox img {
  border-radius: 4px;
}
.choose-photo-item .checkbox label {
  padding-left: 0;
  margin-bottom: 0;
  width: 100%;
}

.choose-photo-item .checkbox .checkbox-material .check{
  background: #ffffff;
}

.choose-photo-item .checkbox label span {
  position: absolute;
  top: 4px;
  left: 4px;
}
.choose-photo-item .checkbox .text {
  padding: 5px 5px 2px 5px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.choose-photo-item.influencer .checkbox .text {
  padding: 8px 0px 0px 35px;
    text-align: left;
    overflow: hidden;
    text-overflow: inherit;
    white-space: inherit;
    font-size: 15px;
    font-weight: 700;
}

.choose-photo-item.influencer.buy .checkbox{
  padding: 10px;
}
.choose-photo-item.influencer.buy .checkbox .text {
  padding: 0;
}
.choose-photo-item.influencer.buy .checkbox p {
  padding: 4px 0px;
}
.choose-photo-item.influencer.buy .checkbox .product-price{
  margin-bottom: 8px;
  padding: 0px;
}
.choose-photo-item.influencer.buy .checkbox .btn{
  margin-bottom: 0;
}
.choose-photo-item.influencer.buy .checkbox .btn i{
  padding-left: 12px;
}

.choose-photo-item.influencer .checkbox p {
  padding: 4px 10px;
  text-align: justify;
  margin-bottom: 0;
}
.choose-photo-item.influencer .checkbox .form-group {
    position: relative;
    margin-bottom: 0px;
    padding: 0px;
}

.choose-photo-item.influencer .checkbox .form-control{
    border-radius: 0;
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
}
.choose-photo-item.influencer img{
    border-radius: 4px 4px 0 0;
}
.checkbox .checkbox-material:before {
  top: 4px;
  left: 4px;
}

.choose-photo-item.influencer .checkbox.bgs{
  background: #f2f2f2;
}

.choose-photo-item.influencer .checkbox:hover {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
}

.choose-photo-item .circle {
    background-color: #fff; }

.slide-photo-item {
  position: relative;
  border-radius: 4px;
  width: 18.4%;
  float: left;
  border: 1px solid #e6e6e6;
  padding: 0;
  margin-right: 10px;
  margin-bottom: 10px;
  background: #fff;
}
.slide-photo-item img {
  max-width: 100%;
  width: 100%;
}
.slide-photo-item:last-child {
  margin-right: 0;
}
.slide-photo-item .text {
  padding: 4px 5px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


figcaption {
  padding: 20px 25px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #444444; }
  figcaption a {
    color: #444444; }
    figcaption a:hover {
      color: #000000; }
  figcaption span {
    font-size: 10px;
    color: #888888;
    font-weight: 400;
    display: block; }

figure {
  margin: 0; }

.blog-post-popup {
  width: 770px; }
  .blog-post-popup .post p {
    padding: 0 15px; }
  .blog-post-popup .post-thumb {
    position: relative; }
  .blog-post-popup .overlay {
    opacity: 1; }
  .blog-post-popup .post-title {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 20; }
  .blog-post-popup .mCustomScrollbar {
    overflow: hidden;
    max-height: 365px; }
  .blog-post-popup .ps > .ps__scrollbar-y-rail, .blog-post-popup .ps:hover > .ps__scrollbar-y-rail {
    display: none; }

.open-photo-popup {
  width: 970px;
  border: none; }
  .open-photo-popup .mCustomScrollbar {
    overflow: hidden;
    max-height: 140px; }
  .open-photo-popup .ps > .ps__scrollbar-y-rail, .open-photo-popup .ps:hover > .ps__scrollbar-y-rail {
    display: none; }

.open-photo-thumb {
  padding: 55px 0;
  background-color: #000; }
  .open-photo-thumb .photo-item {
    margin: 0;
    border-radius: 0;
    padding: 0;
    display: block; }
    .open-photo-thumb .photo-item .overlay {
      bottom: 0;
      right: 0;
          box-shadow: inset 0px -100px 60px -30px rgba(0, 0, 0, 0.5);
          border-radius: 0;
          background: transparent; }
    .open-photo-thumb .photo-item img {
      border-radius: 0; }
    .open-photo-thumb .photo-item:hover .tag-friends {
      opacity: 1; }
  .open-photo-thumb .tag-friends {
    position: absolute;
    top: 25px;
    right: 55px;
    opacity: 0;
    
    fill: #fff; }
    .open-photo-thumb .tag-friends svg {
      width: 20px;
      height: 20px; }

.open-photo-popup-v2 {
  width: 1200px;
  display: flex; }
  .open-photo-popup-v2 .open-photo-thumb {
    width: 66.66%;
    float: left;
    z-index: 10; }
  .open-photo-popup-v2 .open-photo-content {
    width: 33%;
    float: left; }
  .open-photo-popup-v2 .post-additional-info .comments-shared {
    margin-top: 0; }
  .open-photo-popup-v2 .mCustomScrollbar {
    max-height: 180px; }

.create-photo-album {
  width: 770px; }
#edit-title .create-photo-album {
  width: 550px !important; }
  .create-photo-album .photo-album-item.create-album {
    min-height: 200px; }
  .create-photo-album .more {
    padding: 10px 13px;
    fill: #9a9fbf; }
    .create-photo-album .more a {
      font-size: 12px;
      display: inline-block;
      margin-bottom: 0; }
    .create-photo-album .more svg {
      margin-right: 5px; }
  .create-photo-album .olymp-happy-face-icon {
    width: 20px;
    height: 20px;
    fill: #9a9fbf;
    position: absolute;
    top: 10px;
    left: 15px; }
  .create-photo-album textarea {
    border-radius: 0;
    border-right: 0;
    border-left: 0;
    font-size: 12px; }
    .create-photo-album .btn + .btn {
      margin-left: 20px; }
  .create-photo-album .more-dropdown {
    width: 260px;
    right: auto;
    left: 0;
    padding: 0; }
    .create-photo-album .more-dropdown input {
      border: 0;
      border-bottom: 1px solid #e6e6e6;
      font-size: 12px; }
  .create-photo-album .author-thumb {
    margin-right: 10px; }
  .create-photo-album .author-title {
    margin-bottom: 0; }
.control-icon .author-thumb a:first{
    height: 30px;
    display: inline-block;
    margin-top: 3px;
}

.registration-login-form-popup {
  width: 470px; }
  .registration-login-form-popup .registration-login-form {
    margin-bottom: 0; }

.edit-widget {
  width: 470px; }
  .edit-widget .custom-control-indicator {
    width: 18px;
    height: 18px; }
  .edit-widget .custom-control {
    margin-right: 0;
    padding-left: 20px; }

.add-option {
  display: block;
  margin: 30px 0;
  color: #888888; }
  .add-option svg {
    fill: #888888;
    margin-right: 12px;
    width: 14px;
    height: 14px; }
  .add-option span {
    line-height: 1; }

.create-friend-group {
  width: 470px; }
  .create-friend-group .more-dropdown {
    width: 300px;
    top: 70px;
    right: -301px;
    visibility: visible;
    opacity: 1;
    padding: 0; }
    .create-friend-group .more-dropdown a {
      display: inline-block;
      margin-bottom: 0; }
    .create-friend-group .more-dropdown input {
      border: 0;
      border-bottom: 1px solid #e6e6e6;
      font-size: 12px; }
    .create-friend-group .more-dropdown .form-group {
      margin-bottom: 0; }
    .create-friend-group .more-dropdown li {
      padding: 9px 0; }
  .create-friend-group .icon:hover {
    fill: #000000; }
  .create-friend-group .icon.check {
    fill: #38a9ff; }
  .create-friend-group .icon svg {
    width: 14px;
    height: 12px; }
  .create-friend-group .author-thumb {
    margin-right: 10px; }
  .create-friend-group .olymp-happy-face-icon {
    width: 20px;
    height: 20px;
    fill: #9a9fbf;
    position: absolute;
    top: 19px;
    right: 15px; }
  .create-friend-group .bootstrap-select.form-control {
    border-radius: 4px;
    border: 1px solid #e6e6e6; }
  .create-friend-group .bootstrap-select.style-2 > .dropdown-toggle {
    padding: 1.1rem; }
  .create-friend-group .form-group.label-floating .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    color: #38a9ff; }
  .create-friend-group .dropdown-menu {
    top: auto;
    bottom: -100%;
    left: calc(100% + 25px); }
  .create-friend-group.create-friend-group-add-friends .bootstrap-select.style-2 .dropdown-menu {
    display: block;
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    box-shadow: none;
    border-radius: 0 0 0.25rem 0.25rem;
    border: none; }
  .create-friend-group.create-friend-group-add-friends .bootstrap-select.style-2 > .dropdown-toggle {
    display: none; }

.faqs-popup {
  width: 470px; }
  .faqs-popup .collapse {
    padding: 0 0 0.75rem;
    margin-bottom: 0; }
    .faqs-popup .collapse p {
      margin-bottom: 0; }
  .faqs-popup .card {
    padding: 1px 1.5rem;
    border-top: 1px solid #e6e6e6; }
  .faqs-popup .card-header {
    padding: 1.5rem 0;
    border-bottom: none; }
    .faqs-popup .card-header a {
      font-size: 13px; }
    .faqs-popup .card-header i {
      margin-top: 3px; }
  .faqs-popup .card:first-child {
    border-top: none; }

.playlist-popup {
  width: 100%;
  max-width: 100%;
  top: 0 !important;
  left: 0;
  transform: none;
  height: 100vh;
  position: fixed;
  visibility: hidden;
  opacity: 0;
  z-index: 999; }
  .playlist-popup.open {
    visibility: visible;
    opacity: 1; }
  .playlist-popup .icon-close {
    top: auto;
    right: 25px;
    bottom: 75px;
    fill: #000000; }

.create-event {
  width: 470px; }
  .create-event .icon-close {
    margin-top: 0;
    margin-right: 0; }
  .create-event .more-dropdown {
    width: 300px;
    top: 70px;
    right: -301px;
    visibility: visible;
    opacity: 1;
    padding: 0; }
    .create-event .more-dropdown a {
      display: inline-block;
      margin-bottom: 0; }
    .create-event .more-dropdown input {
      border: 0;
      border-bottom: 1px solid #e6e6e6;
      font-size: 12px; }
    .create-event .more-dropdown .form-group {
      margin-bottom: 0; }
    .create-event .more-dropdown li {
      padding: 9px 0; }
    .create-event .more-dropdown svg {
      width: 14px;
      height: 14px; }
  .create-event .author-thumb {
    margin-right: 10px; }
  .create-event .icon:hover {
    fill: #000000; }
  .create-event .icon.check {
    fill: #a5dc86; }
  .create-event .olymp-happy-face-icon {
    width: 20px;
    height: 20px;
    fill: #9a9fbf;
    position: absolute;
    top: 19px;
    right: 15px; }
  .create-event .bootstrap-select.style-2.form-control {
    border-radius: 4px;
    border: 1px solid #e6e6e6; }
  .create-event .bootstrap-select.style-2 > .dropdown-toggle {
    padding: 1.1rem;
    padding-right: 40px;
    border: none; }
    .create-event .bootstrap-select.style-2 > .dropdown-toggle:after {
      display: none; }
  .create-event .form-group.label-floating .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    color: #a5dc86; }
  .create-event .bootstrap-select.style-2 .dropdown-menu {
    top: auto;
    bottom: -100%;
    left: calc(100% + 24px); }
  .create-event .bootstrap-select li.selected a {
    background-color: #a5dc86; }
  .create-event .bs-searchbox {
    padding: 0; }
    .create-event .bs-searchbox input {
      border-radius: 0;
      border-width: 0 0 1px 0; }

.event-private-public {
  width: 770px; }
  .event-private-public .mCustomScrollbar {
    overflow: hidden;
    max-height: 365px; }
  .event-private-public .ps > .ps__scrollbar-y-rail, .event-private-public .ps:hover > .ps__scrollbar-y-rail {
    display: none; }

.private-event-head {
  margin-bottom: 20px; }
  .private-event-head img {
    margin-right: 14px; }
  .private-event-head .author-date .event-title {
    line-height: 1;
    margin-bottom: 0; }
  .private-event-head .event__date {
    font-size: 12px; }
  .private-event-head .more {
    float: right;
    font-size: 16px;
    margin-right: 10px; }
  .private-event-head .more-dropdown a:hover {
    color: #a5dc86; }

.event-description {
  padding-left: 30px;
  border-left: 1px solid #e6e6e6;
  margin-bottom: 40px; }
  .event-description .event-description-title {
    font-weight: 700;
    margin-bottom: 40px; }
  .event-description .place {
    margin-bottom: 20px; }
  .event-description .friends-harmonic {
    margin-bottom: 35px; }

.relative {
  position: relative;
  top: auto;
  left: auto;
  transform: none; }

.edit-my-poll-popup {
  width: 770px;
  border: none; }
  .edit-my-poll-popup .control-block-button {
    top: 20px;
    right: -17px; }
  .edit-my-poll-popup .edit-my-poll-head {
    border-radius: 4px 4px 0 0;
    padding: 35px 60px;
    display: flex;
    align-items: center; }
    .edit-my-poll-popup .edit-my-poll-head .poll-img {
      margin-left: auto; }
  .edit-my-poll-popup .head-content {
    color: #fff; }
    .edit-my-poll-popup .head-content .title {
      margin-bottom: 20px;
      color: inherit; }
    .edit-my-poll-popup .head-content svg {
      fill: #fff; }
  .edit-my-poll-popup .place span {
    position: relative; }
    .edit-my-poll-popup .place span + span {
      padding-left: 17px;
      margin-left: 12px; }
      .edit-my-poll-popup .place span + span:after {
        content: "/";
        display: block;
        position: absolute;
        left: 0;
        top: 0; }
  .edit-my-poll-popup .edit-my-poll-content {
    padding: 35px 60px; }
    .edit-my-poll-popup .edit-my-poll-content h3 {
      margin: 40px 0; }

.modal.show .modal-dialog {
  display: block !important; }

.modal.show .modal-dialog.open-photo-popup-v2 {
  display: flex !important; }

.popup-write-rewiev {
  width: 470px; }


@media (max-width: 1080px) {
  .icon-close {
    right: 50%;
    margin-right: -9px; }
  .open-photo-popup-v2 {
    display: block; }
  .open-photo-popup-v2 .open-photo-thumb {
    width: 100%;
    float: none; }
  .open-photo-popup-v2 .open-photo-content {
    width: 100%;
    float: none; }
  .create-friend-group .dropdown-menu {
    bottom: auto;
    left: 0;
    top: 100%; }
  .create-friend-group .bootstrap-select.style-2 > .dropdown-toggle {
    padding-right: 2.5rem; }
  .create-event .bootstrap-select.style-2 .dropdown-menu {
    top: 100%;
    bottom: auto;
    left: 0; } }

@media (max-width: 1024px) {
  .playlist-popup {
    display: none; } }

@media (max-width: 768px) {
  .icon-close {
    right: 50%;
    margin-right: -9px; }
  .choose-from-my-photo .ui-block-title .title {
    width: 50%; }
  .choose-from-my-photo .nav-tabs .nav-link {
    height: 100%;
    display: flex; }
  .choose-from-my-photo .nav-tabs .nav-item {
    width: auto; }
  .choose-from-my-photo .nav-tabs .nav-link svg {
    margin: auto; }
  .create-photo-album .btn + .btn {
    margin-left: 0;
    float: none; }
  .create-photo-album .btn {
    width: 100%;
    margin: 10px 0; }
  .choose-from-my-photo .btn {
    width: 45%; }
  .photo-album-item.create-album .btn-control {
    width: 50px; }
  .blog-post-popup .post p {
    padding: 0; } }

@media (max-width: 480px) {
  .choose-photo-item {
    width: 50%; }
  .private-event-head .more {
    float: none; }
  .upload-photo-item {
    padding: 10px; }
  .choose-from-my-photo .btn {
    width: 100%; }
  .upload-photo-item svg {
    margin-bottom: 10px; }
  .remember a {
    float: none;
    display: block; }
  .pagination a,
  .pagination span {
    padding: 10px; }
  .notification-list.friend-requests .notification-icon {
    float: none;
    display: block;
    margin-top: 10px; }
  .choose-from-my-photo .btn {
    margin-bottom: 10px; }
  .choose-from-my-photo .btn + .btn {
    margin-left: 0; }
  .choose-photo-item {
    padding: 0 5px 5px 0; }
  .blog-post-popup .post .post-title {
    display: none; } }

@media (max-width: 360px) {
  .choose-photo-item {
    width: 100%; }
  .private-event-head .more {
    float: none;
    display: block; }
  .private-event-head img {
    display: block;
    margin-right: 0;
    margin-bottom: 15px; }
  .event-private-public .post__author img {
    display: block;
    margin-bottom: 10px; } }


.w-search {
  width: 340px; }
  .w-search .form-group {
    margin-bottom: 0; }
  .w-search input {
    padding: 13px 15px;
    font-size: 12px; }
  .w-search svg {
    height: 15px;
    width: 15px; }

.w-personal-info {
  margin-bottom: 0;
  text-transform: uppercase; }
  .w-personal-info li {
    padding: 0 0 15px 0; }
    .w-personal-info li .title {
      color: #444444;
      font-weight: bold;
      margin-right: 30px;
      float: left;
      width: 30%; }
    .w-personal-info li .text {
      color: #888888;
      display: block;
      overflow: hidden; }
    .w-personal-info li .date {
      display: block;
      font-size: 11px;
      color: #bdc0ce;
      font-weight: 500;
      margin-bottom: 15px; }
  .w-personal-info a:hover {
    color: #000000; }
    .w-personal-info a.btn:hover {
      color: #ffffff; }
  .w-personal-info.item-block .title {
    margin-right: 0;
    float: none;
    width: auto; }

.widget + .widget {
  margin-top: 35px; }

.w-personal-info .item-color{
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 100px;
  border: 1px solid #eaeef3;
  display: inline-block;
  text-align: center;
  vertical-align: bottom;
}
.widget p {
  font-size: 13px; }

.account-settings a.active,
.account-settings a.active:hover {
    color: #000000;
}
.sales .crumina-heading{
  text-transform: uppercase;
  margin-bottom: 15px;
}
.social-item {
  font-size: 11px;
  color: #fff;
  padding: 7px 15px;
  display: block;
  border-radius: 3px;
  margin-bottom: 15px;
  text-align: center; }
  .social-item i {
    font-size: 12px;
    margin-right: 10px; }
  .social-item:hover {
    color: #fff;
    opacity: .9; }

.w-socials .title {
  margin-bottom: 20px; }

.w-select {
  width: 250px;
  padding: 0 20px 0 0; }
.w-select.w-search {
    width: 350px;
 }
  .w-select .bootstrap-select > .dropdown-toggle {
    padding: 10px 15px;
    font-size: 12px;
    height: 43px;
    margin-bottom: 0;
    border-radius: 6px; }
  .w-select .form-group {
    margin-bottom: 0;
    min-width: 180px; }
  .w-select .title {
    float: left;
    line-height: 40px;
    margin-right: 15px; }

@media (max-width: 1400px) {
  .w-select .form-group {
    min-width: unset; } }

.w-contacts #map {
  width: 100%;
  height: 200px;
  margin-bottom: 15px; }

.w-contacts ul {
  padding: 0 25px; }
  .w-contacts ul li {
    padding: 15px 0; }
  .w-contacts ul .title {
    margin-right: 0;
    float: none;
    width: auto;
    color: #444444;
    font-weight: 500; }
  .w-contacts ul .text {
    color: #888888;
    display: block;
    overflow: hidden; }

#map {
  width: 100%; }

.w-faved-page {
  height: 100px;
  margin: 0 0 -8px -15px; }

.w-faved-page li {
  margin: 0 0 0 19px;
  float: left;
  width: 75px;
}

.w-faved-page li img {
  width: 75px;
  height: 75px;
  border-radius: 100%;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.35);
}

.w-faved-page li a.title {
  float: left;
  color: #888888;
  font-size: 12px;
  margin-top: 4px;
  width: 75px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}

.w-faved-page li a.title:hover {
  color: #000000;
}



.w-faved-page.followers li {
  margin: 0 0 16px 16px;
  float: left;
  width: 54px;
}

.w-faved-page.followers li img {
  width: 54px;
  height: 54px;
  border-radius: 100%;
}

.all-users {
  line-height: 34px;
  text-align: center;
  color: #fff;
  background-color: #000000;
  font-size: 10px;
  font-weight: 800; }
  .all-users a {
    color: inherit;
    display: block; }


.w-twitter li {
  padding: 25px;
  border-bottom: 1px solid #e6e6e6; }
  .w-twitter li:last-child {
    border-bottom: none; }

.w-twitter .author a {
  line-height: 1; }

.w-twitter .author-name {
  display: block;
  font-weight: 700;
  color: #444444; }

.w-twitter .group {
  font-size: 11px;
  color: #888888; }

.author-name.verified:after {
    content: "\5e";
    font-family: "uauspace-icon";
    width: 16px;
    height: 16px;
    line-height: 17px;
    border-radius: 100%;
    font-size: 9px;
    background-color: #1ab2ef;
    color: #fff;
    text-align: center;
    margin-left: 3px;
    display: inline-block;
    bottom: 24px;
    position: absolute;
}

.author-name.fn.verified:after {
    content: "\5e";
    font-family: "uauspace-icon";
    width: 15px;
    height: 15px;
    line-height: 16px;
    border-radius: 100%;
    font-size: 9px;
    background-color: #1ab2ef;
    color: #fff;
    text-align: center;
    margin-left: 3px;
    display: inline-block;
    position: relative;
    top: -1px;
}

.country.verified:after {
    content: "\5e";
    font-family: "uauspace-icon";
    width: 14px;
    height: 14px;
    line-height: 15px;
    border-radius: 100%;
    font-size: 9px;
    background-color: #1ab2ef;
    color: #fff;
    text-align: center;
    margin-left: 3px;
    display: inline-block;
    position: absolute;
    bottom: 2px;
}
.w-twitter .author-folder {
  margin-bottom: 12px; }
  .w-twitter .author-folder > * {
    display: inline-block;
    vertical-align: middle; }
  .w-twitter .author-folder img {
    margin-right: 8px; }

.w-twitter .link-post {
  color: #38bff1; }

.w-twitter .post__date {
  font-size: 12px; }


.w-last-photo {
  margin-bottom: 0;
  overflow: hidden; }
  .w-last-photo li {
    width: 33.33%;
    float: left;
    padding: 0 4px 4px 0;
    overflow: hidden; }
  .w-last-photo img {
    width: 100%;
    border-radius: 3px; }

  .w-playlist li a {
      padding: 13px;
    color: #888888;
    width: 100%;
    font-size: 14px;
    border-bottom: 1px solid #e6e6e6;
    text-align: left; }

  .product-content .w-playlist li:first-child a {
    border-radius: 4px 4px 0px 0px; }
.collapse_content{
  padding: 1rem;
  min-height: 92px;
  border-bottom: 1px solid #e6e6e6;
}
.collapse_content p{
  color: #888888;
  text-align: left;
}
.variation_color{
  width: 20px;
  height: 20px;
  display: inline-block;
  border-radius: 100%;
  float: right;
  margin-right: 10px;
}
    .w-playlist li:last-child a {
    border-bottom: 0;
    border-radius: 0px 0px 3px 3px; }
  .w-playlist li:first-child a {
    border-radius: 3px 3px 0px 0px; }
  .w-playlist li > * {
    display: inline-block;
    vertical-align: middle; }
  .w-playlist li a:hover {
    color: #555555;
    background-color: #f2f2f2; }


.w-playlist li a.active,
.w-playlist li a.active:hover {
    color: #ffffff;
    background-color: #000000; }

.w-playlist .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  fill: #fff;
  color: #fff;
  width: 14px;
  height: 16px;
  opacity: 0; }
  .w-playlist .play-icon svg {
    width: 16px;
    height: 16px; }

.w-playlist .composition-time {
  position: relative;
  float: right;
  font-size: 11px;
  font-weight: 500; }

.w-playlist time {
  
  margin-right: 10px; }

.w-playlist .more {
  position: absolute;
  left: 0;
  opacity: 0;
  top: 0; }

.w-playlist .more-dropdown li {
  padding: 0; }
  .w-playlist .more-dropdown li:hover a {
    color: #83bb64; }

.w-playlist.without-cover .overlay {
  display: none; }

.w-playlist.without-cover .playlist-thumb img {
  display: none; }

.w-playlist.without-cover .play-icon {
  opacity: 1;
  fill: #444444; }

.w-playlist.without-cover li:hover .play-icon {
  fill: #83bb64; }

.playlist-thumb {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 12px;
  margin-bottom: 12px;
  float: left; }

.product-content h6{
  display: block !important;
}
.composition-name {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #444444; }

.composition-author {
  display: block;
  font-size: 11px;
  color: #888888; }

.playlist-popup-table {
  width: 100%; }
  .playlist-popup-table td {
    padding: 25px 12px; }
    .playlist-popup-table td:first-child {
      padding-left: 30px; }
    .playlist-popup-table td:last-child {
      padding-right: 30px; }
  .playlist-popup-table thead {
    background-color: rgba(43, 45, 59, 0.6); }
    .playlist-popup-table thead th {
      font-size: 9px;
      font-weight: 700;
      padding: 12px;
      color: #9a9fbf; }
      .playlist-popup-table thead th:first-child {
        padding-left: 25px; }
      .playlist-popup-table thead th:last-child {
        padding-right: 25px; }
  .playlist-popup-table tbody tr:nth-child(odd) {
    background-color: rgba(43, 45, 59, 0.8); }
  .playlist-popup-table tbody tr:nth-child(even) {
    background-color: rgba(43, 45, 59, 0.6); }
  .playlist-popup-table tbody tr:hover .play-icon {
    fill: #fff; }
  .playlist-popup-table .play-icon {
    fill: #9a9fbf; }
    .playlist-popup-table .play-icon svg {
      width: 23px;
      height: 23px; }
  .playlist-popup-table .playlist-thumb {
    margin-right: 0; }
  .playlist-popup-table .composition-name {
    color: #fff;
    font-size: 14px; }
  .playlist-popup-table .composition-author {
    font-size: 12px; }
  .playlist-popup-table .album-composition, .playlist-popup-table .release-year, .playlist-popup-table .composition-time {
    font-weight: 500;
    font-size: 12px;
    color: #fff; }
  .playlist-popup-table .release-year, .playlist-popup-table .composition-time, .playlist-popup-table .released, .playlist-popup-table .duration, .playlist-popup-table .spotify, .playlist-popup-table .remove {
    text-align: center; }
  .playlist-popup-table .composition-icon {
    color: #83bb64;
    font-size: 22px; }
  .playlist-popup-table .remove-icon {
    fill: #9a9fbf; }
    .playlist-popup-table .remove-icon svg {
      width: 20px;
      height: 20px; }
    .playlist-popup-table .remove-icon:hover {
      fill: #000000; }


.w-friend-pages-added li > * {
  vertical-align: top; }

.w-friend-pages-added li:hover {
  background-color: transparent; }

.w-friend-pages-added .author-thumb {
  height: 28px;
  width: 28px;
}
.w-friend-pages-added .author-thumb img{
  background-size: cover;
}
.w-friend-pages-added.notification-list li {
  padding: 4px 4px 2px 4px !important;
}

.w-friend-pages-added .notification-event {
  padding-left: 8px;
  max-width: 70%;
  padding-top: 5px; }

.w-friend-pages-added .notification-friend {
  font-size: 14px; }

.w-friend-pages-added .chat-message-item {
  font-size: 11px; }


@media (max-width: 768px) {
  .w-friend-pages-added.notification-list.friend-requests .notification-icon {
    float: right; } }

.w-create-fav-page {
  padding: 25px;
  background-color: #000000; }
  .w-create-fav-page svg {
    fill: #fff; }
  .w-create-fav-page .olymp-star-icon {
    width: 20px;
    height: 20px; }
  .w-create-fav-page .more {
    float: right;
    color: #ffbfb0;
    fill: #ffbfb0; }
  .w-create-fav-page .icons-block {
    margin-bottom: 80px; }
  .w-create-fav-page .content {
    color: #fff; }
    .w-create-fav-page .content span {
      font-size: 10px; }
    .w-create-fav-page .content .title {
      line-height: 1.1;
      font-weight: 400;
      color: inherit;
      margin-bottom: 20px; }
  .w-create-fav-page .btn {
    margin-bottom: 0; }

.page-description {
  border: 1px solid #e6e6e6;
  background-color: #fff;
  margin-bottom: 25px;
  border-radius: 4px;
  overflow: hidden; }
  .page-description .icon {
    padding: 15px 18px;
    fill: #fff;
    background-color: #9a9fbf;
    border-right: 1px solid #e6e6e6;
    display: inline-block;
    vertical-align: middle;
    margin-right: 25px; }
    .page-description .icon svg {
      width: 20px;
      height: 20px; }
  .page-description span {
    vertical-align: middle; }

@media (max-width: 480px) {
  .page-description {
    display: flex;
    align-items: center; } }

.w-birthday-alert {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 25px; }
  .w-birthday-alert .more {
    float: right;
    opacity: .7;
    color: #fff;
    fill: #fff; }
  .w-birthday-alert .icons-block {
    margin-bottom: 35px;
    fill: #fff;
    color: #fff; }
  .w-birthday-alert .olymp-cupcake-icon {
    width: 24px;
    height: 20px; }
  .w-birthday-alert .author-thumb img {
    width: 28px;
    height: 28px;
    border: 2px solid #fff;
    margin-bottom: 12px; }
  .w-birthday-alert .content {
    color: #fff; }
    .w-birthday-alert .content span {
      font-size: 10px;
      margin-bottom: 4px;
      display: block; }
    .w-birthday-alert .content .title {
      line-height: 1.3;
      font-weight: 400;
      color: inherit;
      margin-bottom: 20px;
      font-size: 24px;
      display: block; }
    .w-birthday-alert .content p {
      font-size: 12px; }

.author-thumb {
  display: inline-block;
  position: relative; }
  .author-thumb img {
    border-radius: 100%;
    overflow: hidden;
    max-width: 100%;
    width: 40px;
    height: 40px; }
  .author-thumb .icon-status {
    position: absolute;
    margin-right: 0;
    top: 0;
    left: 0;
    border: 1px solid #3f4257;
    width: 8px;
    height: 8px; }


.w-action {
  padding: 50px 45px 40px;
  text-align: center;
  color: #fff;
  border-radius: 4px; }
  .w-action img, .w-action i {
    margin-bottom: 15px;
    font-size: 35px; }
  .w-action .content span {
    font-size: 10px;
    margin-bottom: 25px;
    display: block;
    text-transform: uppercase; }
  .w-action .content .title {
    font-weight: 400;
    color: inherit;
    margin-bottom: 15px;
    font-size: 24px; }
  .w-action .btn {
    margin-bottom: 0; }

.w-activity-feed .author-thumb {
  height: 28px;
  width: 28px;
  float: left; }
  .w-activity-feed .author-thumb img {
    height: 28px;
    width: 28px; }

.w-activity-feed .notification-event,
.w-activity-feed .notification-friend {
  font-size: 12px; }

.w-activity-feed .notification-event {
  max-width: 85%; }

.w-activity-feed li > * {
  vertical-align: top; }

.w-wethear {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 25px;
  position: relative;
  color: #fff;
  text-align: center;
  background-color: #38a9ff; }
  .w-wethear .olymp-weather-partly-sunny-icon {
    width: 64px;
    height: 65px; }
  .w-wethear .weekly-forecast {
    margin-right: -25px;
    margin-left: -25px;
    position: relative;
    padding: 0 20px; }
    .w-wethear .weekly-forecast li {
      display: inline-block;
      vertical-align: top;
      padding: 15px 3px;
      text-transform: uppercase;
      font-size: 10px;
      font-weight: 700; }
      .w-wethear .weekly-forecast li > * {
        margin-bottom: 8px; }
        .w-wethear .weekly-forecast li > *:last-child {
          margin-bottom: 0; }
      .w-wethear .weekly-forecast li svg {
        height: 22px;
        width: 22px; }
      .w-wethear .weekly-forecast li .olymp-weather-partly-sunny-icon {
        height: 22px;
        width: 22px; }
    .w-wethear .weekly-forecast:before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #fff;
      opacity: .1; }
  .w-wethear .more {
    position: absolute;
    right: 25px;
    top: 20px;
    opacity: .8;
    color: #fff;
    fill: #fff; }
  .w-wethear .temperature-sensor {
    font-size: 60px;
    line-height: 1; }
  .w-wethear > * {
    margin-bottom: 25px; }
    .w-wethear > *:last-child {
      margin-bottom: 0; }
  .w-wethear .max-min-temperature {
    margin-right: 20px; }
    .w-wethear .max-min-temperature span {
      display: block; }
  .w-wethear svg {
    fill: #fff; }
  .w-wethear .climate {
    font-size: 18px; }
  .w-wethear .wethear-now {
    margin-top: 10px; }
  .w-wethear .wethear-now-description span {
    font-size: 11px; }
    .w-wethear .wethear-now-description span > span {
      font-weight: 500; }
    .w-wethear .wethear-now-description span + span {
      margin-left: 15px; }
  .w-wethear .date {
    font-weight: 400;
    color: #fff;
    margin-bottom: 0; }

.swiper-slide-weather {
  border-bottom: 1px solid #e6e6e6; }

.day-wethear-item {
  float: left;
  padding: 25px 0 20px;
  border-right: 1px solid #e6e6e6;
  text-align: center;
  width: 16.5%; }
  .day-wethear-item:last-child {
    border-right: none; }
  .day-wethear-item .title {
    font-size: 12px;
    font-weight: 700;
    color: #444444;
    margin-bottom: 40px; }
  .day-wethear-item .icon {
    fill: #38a9ff;
    margin-bottom: 30px;
    min-height: 54px;
    width: 55px; }
  .day-wethear-item .temperature-sensor {
    font-size: 18px;
    color: #444444;
    margin-bottom: 10px; }
  .day-wethear-item .wethear-now {
    font-weight: 700; }
    .day-wethear-item .wethear-now span {
      font-size: 11px;
      color: #c5c8d8; }
      .day-wethear-item .wethear-now span + span {
        margin-left: 12px; }
    .day-wethear-item .wethear-now .high {
      color: #888888; }

.wethear-content {
  color: #fff;
  text-align: center; }
  .wethear-content .icon {
    fill: #fff;
    margin-bottom: 20px; }
  .wethear-content .temperature-sensor {
    font-size: 84px;
    margin-bottom: 10px;
    line-height: 1; }
  .wethear-content .wethear-now {
    margin-bottom: 15px; }
    .wethear-content .wethear-now span {
      font-size: 13px; }
      .wethear-content .wethear-now span + span {
        margin-left: 12px; }
  .wethear-content .climate {
    font-size: 24px;
    margin-bottom: 15px; }
  .wethear-content .wethear-now-description {
    font-size: 12px; }
    .wethear-content .wethear-now-description > * {
      display: inline-block;
      padding: 0 25px; }
    .wethear-content .wethear-now-description .icon {
      margin-bottom: 10px; }
    .wethear-content .wethear-now-description span {
      font-weight: 700; }

.main-header-wethear {
  padding: 20px 30px 30px; }
  .main-header-wethear .date-and-place {
    position: absolute;
    top: 40px;
    left: 30px;
    color: #fff; }
  .main-header-wethear .date {
    font-size: 16px; }
  .main-header-wethear .place {
    font-size: 11px; }
  .main-header-wethear .wethear-update {
    position: absolute;
    top: 40px;
    right: 30px;
    font-size: 10px;
    color: #fff;
    fill: #fff; }
    .main-header-wethear .wethear-update svg {
      margin-left: 10px;
      width: 12px;
      height: 13px; }
  .main-header-wethear .olymp-weather-partly-sunny-icon {
    width: 64px;
    height: 65px; }
  .main-header-wethear .olymp-weather-wind-icon-header {
    width: 47px;
    height: 34px; }
  .main-header-wethear .olymp-weather-rain-drops-icon {
    width: 47px;
    height: 34px; }
  .main-header-wethear .olymp-weather-thermometer-icon {
    width: 47px;
    height: 34px; }

@media (max-width: 1400px) {
  .w-wethear .weekly-forecast li {
    padding: 15px 1px; } }

@media (max-width: 540px) {
  .day-wethear-item {
    width: 33%; } }

@media (max-width: 480px) {
  .wethear-content {
    margin-top: 100px; } }

@media (max-width: 360px) {
  .day-wethear-item {
    width: 49%; }
  .wethear-content .wethear-now-description > * {
    padding: 0 5px; }
  .main-header-wethear .date-and-place {
    position: relative;
    top: auto;
    left: auto;
    text-align: center;
    margin-bottom: 20px; }
  .main-header-wethear .wethear-update {
    position: relative;
    top: auto;
    right: auto;
    text-align: center; }
  .wethear-content {
    margin-top: 20px; } }

.w-last-video {
  margin-bottom: 0; }
  .w-last-video li {
    position: relative;
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
    display: inline-block; }
    .w-last-video li img {
      max-width: 100%;
      margin: 0 auto;
      display: block; }
    .w-last-video li:last-child {
      margin-bottom: 0; }
    .w-last-video li:hover .overlay {
      opacity: 1; }
    .w-last-video li:hover .video-content {
      opacity: 1;
      bottom: 12px; }
    .w-last-video li:hover .play-video {
      margin-top: -20px; }
    .w-last-video li:hover:after {
      opacity: 1; }
    .w-last-video li:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      box-shadow: inset 0px -120px 55px -30px rgba(0, 0, 0, 0.5);
      opacity: 0;
       }
  .w-last-video time {
    font-size: 10px; }
  .w-last-video .video-content {
    position: absolute;
    bottom: -20px;
    left: 12px;
    color: #fff;
    z-index: 5;
    opacity: 0;
     }
  .w-last-video .title {
    font-size: 12px;
    font-weight: 500;
    line-height: 1; }

.play-video {
  width: 64px;
  height: 64px;
  line-height: 68px;
  background-color: rgba(255, 94, 58, 0.7);
  border: 4px solid #fff;
  border-radius: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  
  outline: none; }
  .play-video svg {
    fill: #fff;
    width: 18px;
    height: 22px;
    margin-right: -2px; }

.play-video--small {
  width: 52px;
  height: 52px;
  line-height: 58px; }

.play-video--mobile {
  width: 42px;
  height: 42px;
  line-height: 50px;
  border-width: 2px; }

.play-gif {
  width: 64px;
  height: 64px;
  line-height: 62px;
  position: absolute;
  border: 2px dashed #fff;
  background-color: rgba(255, 94, 58, 0.7);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  border-radius: 100%;
  text-align: center;
  z-index: 5;
  
  outline: none;
  cursor: pointer;
  text-decoration: none; }

.w-pool {
  margin-bottom: 40px; }
  .w-pool .skills-item-info {
    margin-bottom: 0; }
  .w-pool .radio {
    color: #444444; }
    .w-pool .radio label {
      padding-left: 30px; }
      .w-pool .radio label span {
        left: 0; }
  .w-pool .counter-friends {
    margin: 10px 0; }

.w-badges {
  display: inline-block;
  margin: 0 0 -20px -18px; }
  .w-badges li {
    margin: 0 0 13px 13px;
    float: left;
    width: 38px;
    height: 38px;
    border-radius: 100%;
    position: relative; }

.w-blog-posts {
  margin-bottom: 0; }
  .w-blog-posts .post p {
    margin: 10px 0 15px 0; }
  .w-blog-posts .post__date {
    font-size: 12px; }
  .w-blog-posts li:last-child .post {
    border-bottom: none; }

.w-about .logo {
  background-color: transparent;
  display: block;
  color: inherit;
  overflow: hidden;
  position: relative;
  font-size: 7px;
  margin-bottom: 30px;
  padding: 0; }

.w-about ul {
  margin-bottom: 0; }

.w-about img {
  margin-right: 13px;
  height: 40px; }

.w-about .logo-title {
  margin-top: 10px;
  color: #444444;
  font-size: 18px; }

.w-list a {
  color: #888888;
  padding: 8px 0;
  display: block;
  font-weight: 500;
  position: relative; }
  .w-list a:hover {
    color: #000000; }

.w-list ul {
  margin-bottom: 0; }

.w-featured-topics li + li {
  margin-top: 20px; }

.w-featured-topics .icon {
  float: left;
  margin-right: 10px;
  font-size: 15px;
  color: #ffdc1b; }

.w-featured-topics .content {
  overflow: hidden; }

.w-featured-topics .title {
  font-size: 13px;
  display: block;
  margin-bottom: 5px; }
  .w-featured-topics .title:hover {
    color: #000000; }

.w-featured-topics time {
  font-size: 11px;
  margin-bottom: 5px;
  display: block; }

.w-featured-topics .forums {
  font-size: 11px;
  color: #000000; }

ol {
  counter-reset: list1;
  margin: 0;
  padding-left: 0; }
  ol li {
    list-style: none;
     }

ol li ul li:before {
  display: none; }

ol ol {
  counter-reset: list2;
  margin-top: 10px; }


ol ol li {
  padding-left: 40px; }

.icon-heart{
  margin-top: 6px;
}
.friends-harmonic {
  margin-top: 4px;
  margin-bottom: 0;
  overflow: hidden; }
  .friends-harmonic a {
    width: 28px;
    height: 28px;
    border-radius: 100%;
    overflow: hidden;
    border: 2px solid #fff;
    display: block;
    margin-left: -12px; }
  .friends-harmonic li {
    float: left; }
    .friends-harmonic li:first-child a {
      margin-left: 0; }
  .friends-harmonic .with-text {
    margin-top: 5px;
    margin-left: 15px; }
  .friends-harmonic .all-users {
    line-height: 26px;
    background: transparent !important; 
  }
  .friends-harmonic .all-users a {
    background-color: #000000;
  }
#promotions {
    position: fixed;
    z-index: 21;
}
.content .product-price {
  margin-top: 2px;
  margin-right: 0px;
  margin-bottom: 0px;
}
.post {
  position: relative;
  padding: 15px;
}

  .post p {
    margin: 15px 0 10px 0; }
  .post .control-block-button {
    top: 20px;
    right: -17px; }
  .post.thumb-full-width .post-thumb {
    border-radius: 0;
    margin: 0 -25px 25px; }
  .btn.btn-buy {
    margin-bottom: 0 !important;
    padding: 8px 36px 7px 18px !important;
    font-size: 12px !important;
  }
  .btn-buy i{
    width: 16px;
    height: 16px;
    font-size: 16px;
    position: absolute;
    right: 16px;
  }
  .btn.btn-buy {
    border: 2px solid #000000;
  }
  .btn.btn-buy.inverted {
    border: 2px solid #83bb64;
  }
  .btn.btn-buy.inverted:hover {
    box-shadow: 0px 0px 20px rgba(151, 208, 119, 0.1);
  }
  
  .btn.btn-buy.disabled.inverted {
    border: 2px solid #c2c5d9;
    color: #c2c5d9;
  } 

  .btn.btn-gift{
    margin-bottom: 0 !important;
    font-size: 22px !important;
    border: 2px solid #000000;
    padding: 0px 5.6px 0px 5.62px !important;
    border-radius: 100%;
    width: 37px;
  }
  .btn-gift i{
    width: 21.5px;
    height: 25.5px;
    line-height: 18px;
  }

.advantage .col_one {
  padding: 16px 0 16px 12px;
}

.advantage .col_two {
  border-left: 1px solid #e6e6e6;
  padding: 16px 0 16px 12px;;
  font-weight: 700;
}
.advantage .col_two i{
  font-size: 16px;
  vertical-align: sub;
  margin-right: 4px;
}

.advantage .bg_zz {
  background-color: #f0f2f7;
}
.advantage .bg_zz .col_two {
  border-left: 1px solid #d7dce2;
}
.advantage .row{
  margin-left: 0px;
  margin-right: 0px;
}

.control-links.has-items.active a,
.control-links.has-items.active a:hover{
  color: #000000;
  border-bottom: 2px solid #000000;
}

  .post h1, .post h2, .post h3, .post h4, .post h5, .post h6, .post .h1, .post .h2, .post .h3, .post .h4, .post .h5, .post .h6 {
    display: inline-block; }
    .post h1 + p, .post h2 + p, .post h3 + p, .post h4 + p, .post h5 + p, .post h6 + p, .post .h1 + p, .post .h2 + p, .post .h3 + p, .post .h4 + p, .post .h5 + p, .post .h6 + p {
      margin-top: 10px; }
  .post .post__author-name {
    margin-bottom: 0; }
  .post .more-photos span {
    font-weight: 700; }
  .post.shared-photo .post-thumb {
    border: 1px solid #e6e6e6;
    margin-bottom: 0; }

  .post .post__date a {
    font-weight: 500;
    color: #888888;
    font-size: 12px; }
  .post .post__date a:hover {
    text-decoration: underline; }

.post-block-photo {
  margin-bottom: 20px;
  overflow: hidden; }
  .post-block-photo a, .post-block-photo span {
    float: left;
    overflow: hidden;
    padding: 0 8px 8px 0; }
    .post-block-photo a img, .post-block-photo span img {
      border-radius: 3px;
      width: 100%; }

.more-photos {
  position: relative; }
  .more-photos:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 8px;
    bottom: 8px;
    background-color: #000000;
    opacity: .8;
    border-radius: 3px; }
  .more-photos span {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    font-weight: 700;
    margin-left: -8px; }

.post-thumb {
  border-radius: 4px;
  margin-bottom: 25px;
  overflow: hidden;
  position: relative; }
  .post-thumb img {
    width: 100%; }

.post__author {
  margin-bottom: 4px; }
  .post__author img {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    overflow: hidden;
    margin-right: 10px;
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.35); }
  .post__author .more {
    float: right;
    font-size: 16px;
    margin-right: 0px; }

.post-additional-info {
  padding: 5px 0 0;
  border-top: 1px solid #e6e6e6;
  height: 43px;
   }
  .post-additional-info > * {
    margin-right: 15px; }
    .post-additional-info > *:last-child {
      margin-right: 0; }
  .post-additional-info .comments-shared {
    float: right;
    margin-top:0; }

.comments-shared > * {
  margin-right: 8px; }
  .comments-shared > *:last-child {
    margin-right: 0; }

.comments-shared span {
  color: #888888; }

.post-add-icon {
  fill: #c2c5d9;
  color: #c2c5d9; }
  .post-add-icon > * {
    vertical-align: middle; }
  .post-add-icon i {
    width: 26px;
    height: 26px; 
    font-size: 26px;
    margin-right: 4px;
  }
  .post-add-icon.icon-share i {
    font-size: 24px;
    margin-top: -4px;
  }
  .post-add-icon:hover {
    color: #000000; }
    .post-add-icon:hover span {
      color: #000000; }

.btn {
  transition: all .2s linear;
  transform-style: preserve-3d;
  -webkit-box-shadow: 0 2px 4px rgba(0,0,0,.04), 0 1px 3px rgba(0,0,0,.01);
  box-shadow: 0 2px 4px rgba(0,0,0,.04), 0 1px 3px rgba(0,0,0,.01);
}
.btn:hover{
  -webkit-box-shadow: 0 5px 12px rgba(0,0,0,.08), 0 3px 6px rgba(0,0,0,.06);
  box-shadow: 0 5px 12px rgba(0,0,0,.08), 0 3px 6px rgba(0,0,0,.06);
}
.btn:active{
  -webkit-box-shadow: 0 -2px 8px rgba(0,0,0,.06);
  box-shadow: 0 -2px 8px rgba(0,0,0,.06);
}
.btn.btn-link,
.btn.btn-link:hover{
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.post-add-icon.off:hover {
    color: #c2c5d9; }
    .post-add-icon.off:hover span {
      color: #c2c5d9; }


.names-people-likes {
  font-size: 12px; }
  .names-people-likes a {
    color: #444444;
    font-weight: 700; }

.post-control-button .btn-control {
  display: block;
  margin-bottom: 6px;
  margin-right: 0;
  background-color: #9a9fbf;
  width: 34px;
  height: 34px;
  line-height: 36px; }
  .post-control-button .btn-control.bg-facebook {
    background-color: #2f5b9d; }
    .post-control-button .btn-control.bg-facebook:hover {
      background-color: #2f5b9d; }
  .post-control-button .btn-control.bg-twitter {
    background-color: #38bff1; }
    .post-control-button .btn-control.bg-twitter:hover {
      background-color: #38bff1; }
  .post-control-button .btn-control svg {
    width: 18px;
    height: 18px; }
  .post-control-button .btn-control .olymp-share-icon {
    width: 24px; }
  .post-control-button .btn-control:hover {
    background-color: #000000; }
  .post-control-button .btn-control.featured-post:hover {
    background-color: #ffc923; }

.empty-post {
  height: 600px;
  background-color: #dce1eb;
  opacity: .5; }

.empty-post-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center; }
  .empty-post-content .title {
    font-size: 16px;
    font-weight: 700;
    color: #444444; }
  .empty-post-content span {
    font-size: 11px; }

@media (max-width: 768px) {
  .post-control-button .btn-control {
    display: inline-block; }
  .post .control-block-button {
    right: 20px;
    top: -13px; }
  .post__author .more {
    margin-right: -16px; } }

@media (max-width: 560px) {
  .post-additional-info .comments-shared {
    float: none; }
  .post-additional-info > * {
    margin-right: 0;
    display: block !important; }
    .post-additional-info > * + * {
      margin-top: 10px; } }

.comments-list {
  margin-bottom: 0;
  border-top: 1px solid #e6e6e6; }
  .comments-list li {
    padding: 10px 15px 6px 15px;
    background-color: #f2f2f2;
    position: relative; }
    .comments-list li.has-children {
      padding-bottom: 0; }
  .comments-list .post-add-icon {
    margin-right: 20px; }
  .comments-list .post__author img {
    width: 26px;
    height: 26px; }
  .comments-list.comments-list-course .post__author img {
    width: 33px;
    height: 33px; }
  .comments-list.comments-list-course li{
    border-bottom: 1px solid #e6e6e6;
    padding: 10px 6px 6px 12px;
  }
  .comments-list.comments-list-course li:last-child{
    border-bottom: 0;
    border-radius: 0 0 6px 6px;
  }

  .comments-list.comments-list-course p {
      margin-bottom: 4px;
  }

  .comments-list.style-2 li .post__author img {
    float: left; }
  .comments-list.style-2 .reply {
    margin-right: 20px; }
  .comments-list.style-2 .post__date {
    display: inline-block;
    margin-right: 20px; }
  .comments-list.style-2 .author-date {
    overflow: hidden; }
  .comments-list.style-2 .post__author .more {
    float: none; }
  .comments-list.style-2 .post__author {
    margin-bottom: 0; }
  .comments-list.style-3 li {
    background-color: transparent; }
  .comments-list.style-3 .reply {
    margin-right: 20px;
    color: #000000; }
  .comments-list.style-3 .post__author-thumb {
    margin-right: 20px;
    float: left; }
    .comments-list.style-3 .post__author-thumb img {
      width: 56px;
      height: 56px;
      border-radius: 100%; }
  .comments-list.style-3 .comments-content {
    overflow: hidden; }
  .comments-list.style-3 .children li {
    border-left: none; }
    .comments-list.style-3 .children li:before {
      display: none; }

.children {
  border-top: 1px solid #e6e6e6;
  margin: 25px -15px 0;
  padding-left: 35px; }
  .children li {
    border-left: 1px solid #e6e6e6; }
    .children li:last-child {
      border-bottom: none; }
    .children li:before {
      content: "";
      position: absolute;
      width: 9px;
      height: 9px;
      top: 40px;
      left: -5px;
      background-color: #f2f2f2;
      border-radius: 100%;
      border: 2px solid #c2c5d9;
      z-index: 13; }
  .children.single-children {
    border-top: 0;
    margin: -3px 0 25px;
    padding-left: 0; }
    .children.single-children li {
      padding: 25px;
      position: relative; }
      .children.single-children li:last-child {
        padding-bottom: 0; }

.reply {
  font-size: 12px;
  color: #888888; }

.report {
  font-size: 12px;
  color: #888888; }

.more-comments {
  text-align: center;
    padding: 8px 0;
    font-size: 14px;
    color: #888888;
    display: inline-block;
    font-weight: 600;
    margin: 0 auto;
    width: 100%;
    z-index: 100;
    background: #f5f7fb;
    border-top: 1px solid #e6e6e6;
  }

  .more-comments:hover {
    color: #444444;
    background: #f0f3f7;
  }

.comment-form {
  border-top: 1px solid #e6e6e6; }
  .comment-form .add-options-message {
    position: absolute;
    right: 20px;
    bottom: 15px;
    width: auto;
    padding: 0; }
  .comment-form .post__author {
    margin-bottom: 0;
    display: flex;
    align-items: center; }
    .comment-form .post__author img {
      margin-right: 10px;
      min-width: 28px;
      max-width: 28px;
      height: 28px; }
  .comment-form .form-group {
    margin-bottom: 0;
    width: 100%;
    margin-left: auto; }
  .comment-form textarea {
    min-height: 42px;
    height: 42px;
    transition: all .2s ease;
    border: 0;
    border-radius: 0 0 4px 4px; }
    .comment-form textarea:focus {
      min-height: 100px; }
  .comment-form button {
    float: right;
    margin-bottom: 0;
    margin-top: 15px; }
    .comment-form button + button {
      margin-right: 15px; }

@media (max-width: 768px) {
  .comments-list li {
    padding: 10px; }
  .comments-list.style-3 .post__author-thumb img {
    width: 30px;
    height: 30px; } }

@media (max-width: 480px) {
  .comment-form .form-group {
    width: 80%; } }

.post-video {
  border: 1px solid #e6e6e6;
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  margin: 20px 0; }

.post-video:hover{
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
}
.post-video a {
  width: 100%;
  height: 100%;
  position: relative;
  float: left;
}
  .post-video .video-content {
    padding: 15px 20px;
    overflow: hidden;
    float: right;
    width: 72%; }
    .post-video .video-content .title {
      display: block; }
    .post-video .video-content p {
      margin: 10px 0;
      font-size: 13px;
      color: #888888; }
    .post-video .video-content .link-site {
      font-size: 10px;
      color: #9a9fbf; }
      .post-video .video-content .link-site:hover {
        color: #000000; }
.post-video .product-price {
  margin-bottom: 0px;
}
.video-thumb {
  position: relative;
  float: left;
  width: 28%;
}

.post-video.post-replicate-lottery .video-content {
  float: left;
  width: 72%;
}

.post-video.post-replicate-lottery .video-thumb {
  position: relative;
  float: right;
  width: 28%;
}


.post-lottery .video-thumb {
  position: relative;
  float: right;
  width: 50%;
   }
.post-lottery .video-thumb img {
    width: 100%; }
.post-lottery-product{
  clear: both;
}
.post-lottery-product .title {
      display: block;
      margin-top: 8px;
      margin-bottom: 0; }
.post-lottery-product p {
      margin: 8px 8px 8px 0 !important;
      font-size: 13px;
      color: #888888; }


.post-video.post-lottery .video-content {
  float: left;
  width: 50%;
  padding: 0;
  overflow: unset;
}

.post-video.post-lottery {
    margin: 20px 0 0 0;
}


.post-video.post-lottery .video-content .item-content {
    float: left;
    width: 180px;
    height: 180px;
    margin: -40px -240px;
    padding: 0px;
    position: absolute;
    top: 50%;
    left: 50%;
}
.post-video.post-lottery .video-content .item-content.two_content {
  margin: auto -240px;
}   
.post-video.post-lottery .video-content .item-content-a {
  position: absolute;
  float: left;
  width: calc(50% - 15px);
  padding: 15px 0px;
  text-align: center;
  color: #888888;
  font-size: 13px;
}
.post-video.post-lottery .video-content .item-content-b {
  position: absolute;
  float: left;
  width: calc(50% - 15px);
  padding: 15px;
  text-align: center;
  bottom: 15px;
  color: #c2c5d9;
  font-size: 12px;
}
.post-video.post-lottery a {
  width: 100%;
  height: 30px;
  position: relative;
  float: left;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 17px;
}


.post-video.post-lottery .post-add-icon i {
    width: 26px;
    height: 26px;
    font-size: 26px;
    margin-right: 4px;
}

.post-video.post-lottery .post-add-icon i.checked_lottery {
  font-size: 16px;
  line-height: 16px;
  color: #f5f5f9;
  width: 16px;
  height: 16px;
  margin-left: 5px;
  margin-right: 0px;
}
.post-video.post-lottery .post-add-icon.liked i.checked_lottery {
  color: #83bb64;
}

.post-video.post-lottery .item-content i.big_red_icon {
  color: #000000;
  font-size: 50px;
}
.post-video.post-lottery .item-content i.big_green_icon {
  color: #83bb64;
  font-size: 50px;
}

.post-video.post-lottery .item-content-share {
  position: absolute;
  float: left;
  width: 242px;
  padding: 0px;
  text-align: center;
  bottom: 40px;
  margin-left: 34px;
  font-size: 15px;
  display: none;
}

.post-video.post-lottery .item-content-share .btn-social{
  width: 40px;
  height: 40px;
  position: relative;
  float: left;
  font-size: 15px;
  line-height: 50px;
  text-align: center;
  margin-right: 10px;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 15px;
}
.post-video.post-lottery .item-content-share .btn-purple {
  width: 100%;
  height: 100%;
}
    
.post-video.post-lottery .item-content-share .btn-social:last-child {
  margin-top: 0;
  margin-bottom: 20px;
  margin-right: 0px;
}
.price_package{
  float: left;
  margin-top: 5px;
  margin-right: 10px;
  text-align: right;
}
.text-disabled {
  color: #cdcfda;
}
.btn.text-disabled {
  color: #cdcfda;
}
.btn.text-disabled:hover {
  color: #babcc7;
}
.liked_disabled{
  pointer-events:none !important;
}
.product-image {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  margin: 20px 0;
}
.product-image img {
  width: 100%;
}
.product-image .photo-item {
  padding: 0;
}
.product-content {
    position: absolute;
    top: 0px;
    width: 100%;
    color: #fff;
    z-index: 15;
    display: none;
    padding: 0;
    height: 100%;
    background: rgba(250, 251, 253, 0.8);
}
.author-date i{
  font-size: 12px;
  vertical-align: inherit;
  margin-top: -1px;
  color: #888888;
}
.product-content .title {
  margin-top: 30px;
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
}
.product-content .registration-login-form .title{
  margin-top: 0px;
}
.product-content .registration-login-form {
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.6);
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
    height: 100%;
    min-height: 400px;
}

.product-content .registration-login-form label{
  color: #888888;
}

.product-content .registration-login-form .remember{
  text-align: left;
}

.product-content .registration-login-form .or {
  color: #888888;
}
.product-content .registration-login-form .or:after{
  background-color: rgba(255, 255, 255, 0);
}

.blured-2{
  filter:blur(2px);
  opacity: 0.6;
} 

.blured-4{
  filter:blur(4px);
  opacity: 0.6;
} 

.blured-6{
  filter:blur(6px);
  opacity: 0.6;
} 

.item-content.text-center{
  text-shadow: 0px 0px 6px #fff;
}
.congrats{
  display: none;
}
.btn-bottom{
    bottom: 20px;
    position: absolute;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}
.moreless {
  font-weight: bold;
  color: #888888;
  font-size: 15px;
}
@media (max-width: 480px) {
  .product-image .product-content .title {
    display: none; }
}


.snip_google{
  width:500px;
  font-family: arial,sans-serif;
}

.snip_google_title{
    color: #1a0dab;
    font-size: 18px;
    font-family: arial,sans-serif;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;
    white-space: nowrap;
}
.snip_google_link{
    color: #006621;
    font-size: 14px;
    font-style: normal;
    font-family: arial,sans-serif;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;
    white-space: nowrap;
}
.snip_google_desc{
    color: #545454;
    font-size: 13px;
    font-family: arial,sans-serif;
    line-height: 1.4;
    word-wrap: break-word;
}
.snip_google_desc .seo_desc{
  font-weight: normal;
}
.snip_google_desc span{
    color: #808080;
}


.snip_facebook{
  width:500px;
  height:340px;
  border: 1px solid #dddfe2;
  background: #f2f3f5;
  font-family: system-ui, -apple-system, sans-serif;
}
.snip_facebook_image{
  width:498px;
  height:262px;
  background-size: cover;
  background-position: center;
}

.snip_facebook_content{
  max-height: 78px;
  overflow: hidden;
  margin: 0;
  padding: 10px 12px;
}

.snip_facebook_link{
  color: #606770;
  font-size: 12px;
  line-height: 16px;
  padding: 0;
  text-transform: uppercase;
}
.snip_facebook_title{
  color: #1d2129;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  font-weight: 600;
  overflow: hidden;
  letter-spacing: normal;
}
.snip_facebook_desc{
  color: #606770;
  font-size: 14px;
  line-height: 20px;
  word-break: break-word;
  margin-top: 4px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  white-space: nowrap;
}



.snip_twitter{
  width:500px;
  height:354px;
  border: 1px solid #E1E8ED;
  background: #ffffff;
  border-radius: .42857em;
  box-sizing: border-box;
  overflow: hidden;
  font-size: 14px;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  line-height: 1.3em;
}
.snip_twitter_image{
  width:498px;
  height:250px;
  background-size: cover;
  background-position: center;
}

.snip_twitter_content{
  padding-left: 1em;
  padding-right: 1em;
  padding: .75em;
  box-sizing: border-box;
  text-decoration: none;
}

.snip_twitter_link{
  text-transform: lowercase;
  color: #8899A6;
  max-height: 1.3em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: .32333em;
}
.snip_twitter_title{
  color: #292F33;
  line-height: 1.3em;
  max-height: 1.3em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  margin: 0 0 .15em;
  display: block;
  font-weight: bold;
}
.snip_twitter_desc{
  color: #292F33;
  font-size: 14px;
  max-height: 2.6em;
  overflow: hidden;
  margin-top: .32333em;
  line-height: 1.3em;
}


  .news-feed-form .nav-tabs .nav-link {
    padding: 20px;
    border: none;
    border-bottom: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    border-top-left-radius: 0;
    border-top-right-radius: 0; }
  .news-feed-form .nav-tabs .nav-link:first-child {
    border-top-left-radius: 4px;
     }
  .news-feed-form .nav-tabs .nav-link.active {
    background-color: #fff;
    color: #444444;
    border-bottom: transparent; }
  .news-feed-form .nav-tabs {
    background-color: #f2f2f2;
    border-bottom: 0;
    border-top: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    border-left: 1px solid #e6e6e6;
    border-radius: 5px 5px 0 0; }
  .news-feed-form .nav-link {
    color: #888888;
    font-weight: 700;
  }
  .news-feed-form .nav-link i {
    margin-right: 5px;
    font-size: 20px;
  }

  .news-feed-form .nav-link i.space-social-facebook{
    color: #3c5998;
  }

  .news-feed-form .nav-link i.space-social-twitter{
    color: #01aced;
  }
  
.cat-list-bg-style {
  margin: 50px 0;
  padding: 0;
  list-style: none; }
  .cat-list-bg-style.cat-list__item-bg-blue .cat-list__item {
    display: inline-block; }
    .cat-list-bg-style.cat-list__item-bg-blue .cat-list__item a:hover {
      background-color: #38a9ff; }
    .cat-list-bg-style.cat-list__item-bg-blue .cat-list__item.active {
      background-color: #38a9ff; }

.cat-list__item {
  display: inline-block;
  background-color: #dee4ec;
  margin: 0 10px;
  border-radius: 30px;
  overflow: hidden; }
  .cat-list__item a {
    font-size: 14px;
    color: #888888;
    position: relative;
    text-transform: capitalize;
    
    padding: 10px 20px;
    display: block; }
    .cat-list__item a:hover {
      color: #fff;
      background-color: #000000; }
  .cat-list__item.active {
    background-color: #000000; }
    .cat-list__item.active a {
      color: #fff; }

@media (max-width: 768px) {
  .cat-list-bg-style {
    margin: 30px 0; }
  .cat-list-bg-style.cat-list__item-bg-blue .cat-list__item {
    display: block;
    margin-top: 10px; } }

@media (max-width: 460px) {
  .news-feed-form .nav-tabs .nav-link {
    padding: 12px;
    text-align: center; }
  .news-feed-form .nav-link i {
    display: block;
    margin: 0 auto; } }

.photo-gallery {
  display: flex;
  top: 0;
  right: 65px;
  height: 100%;
  position: absolute;
  border-bottom: 0; }
  .photo-gallery .nav-link {
    border-radius: 0;
    padding: 30px 26px;
    fill: #c2c5d9;
    background-color: #f2f2f2;
    border-color: transparent;
    height: 100%;
    border-right-color: #e6e6e6;
    border-left-color: #e6e6e6;
    border-top-color: transparent; }
    .photo-gallery .nav-link.active {
      fill: #000000;
      background-color: #fff;
      border-top-color: transparent; }
    .photo-gallery .nav-link:hover {
      border-right-color: #e6e6e6;
      border-left-color: #e6e6e6;
      border-top-color: transparent;
      border-bottom-color: transparent; }
    .photo-gallery .nav-link svg {
      width: 18px;
      height: 20px; }
  .photo-gallery.nav-tabs .nav-item {
    margin-bottom: 0;
    max-height: 100%; }
    .photo-gallery.nav-tabs .nav-item + .nav-item {
      margin-left: -1px; }

.block-btn {
  padding-right: 170px; }

.photo-item {
  display: inline-block;
  padding: 0;
  margin-right: -3px;
  position: relative;
 }
  .photo-item .overlay {
    bottom: 12px;
    right: 12px;
    border-radius: 4px; }
  .photo-item img {
    border-radius: 4px;
    width: 100%; }
  .photo-item:last-child {
    margin-right: 0; }
  .photo-item .more {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #fff;
    fill: #fff;
    opacity: 0;
     }
  .photo-item .content {
    position: absolute;
    left: 20px;
    opacity: 0;
     }
    .photo-item .content .title {
      color: #fff;
      display: block;
      margin-bottom: 0; }
    .photo-item .content time {
      font-size: 12px;
      color: #b6bbd7; }
  .photo-item .post-add-icon {
    fill: #fff;
    position: absolute;
    right: 25px;
    bottom: 30px;
    opacity: 0;
     }


.author-thumb:hover .more,
.author-thumb:hover .content,
.author-thumb:hover .post-add-icon,
.author-thumb:hover .overlay,
.photo-item:hover .more,
.photo-item:hover .content,
.photo-item:hover .post-add-icon,
.photo-item:hover .overlay {
  opacity: 1;
}

.photo-album-wrapper {
  margin-right: -12px; }

.photo-album-item-wrap {
  display: inline-block;
  margin-right: -3px;
  padding: 0 12px 12px 0;
  vertical-align: top;
}
.full-width .photo-album-item-wrap {
  display: inline-block;
  margin-right: 0;
  padding: 0;
  vertical-align: top;
}
.photo-album-item {
  position: relative;
  border-radius: 5px;
  border: 1px solid #e6e6e6;
  background-color: #fff; }
  .photo-album-item:last-child {
    margin-right: 0; }
  .photo-album-item .photo-item {
    float: none;
    margin: 0;
    border-radius: 4px 4px 0 0;
    display: block;
    padding: 0; }
    .photo-album-item .photo-item img {
      width: 100%;
      border-radius: 4px 4px 0 0; }
    .photo-album-item .photo-item .overlay {
      bottom: 0;
      right: 0;
      border-radius: 4px 4px 0 0; }
  .photo-album-item .photo-item.fotografo {
    border-radius: 4px;
  }
  .photo-album-item .photo-item.fotografo img {
    border-radius: 4px;
  }
  .photo-album-item .photo-item.fotografo .overlay {
    border-radius: 4px;
  }
  .photo-album-item .content {
    padding: 16px;
    text-align: center; }
  .edit-product .photo-album-item .content {
    padding: 20px;
    text-align: center; }
  .photo-album-item .title {
    display: block;
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
  .photo-album-item .title i {
    font-size: 20px; }
  .photo-album-item .sub-title {
    margin-bottom: 30px;
    display: block; }
  .photo-album-item .friends-harmonic {
    display: inline-block; }
  .photo-album-item.create-album {
    background-color: transparent;
    border: 2px dashed #e6e6e6; }
    .photo-album-item.create-album .content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 90%; }
    .photo-album-item.create-album .btn-control {
      margin-bottom: 20px;
      float: none;
      line-height: 57px; }
    .photo-album-item.create-album svg {
      width: 20px;
      height: 20px; }
  .photo-album-item .form-group {
    margin-bottom: 0; }
    .photo-album-item .form-group > img {
      width: 100%;
      border-radius: 4px 4px 0 0;
      overflow: hidden; }

@media (max-width: 768px) {
  .photo-gallery.nav-tabs .nav-item {
    width: auto; } }

@media (max-width: 480px) {
  .photo-item .post-add-icon {
    right: auto;
    bottom: auto;
    left: 25px;
    top: 25px; }
  .block-btn .btn + .btn {
    margin-left: 0;
    margin-top: 10px; }
  .photo-album-item.create-album .content {
    position: relative;
    transform: none;
    top: auto;
    left: auto;
    width: 100%; } }
.features-product .product-image{
  width: 655px;
}
.features-product .features-product-content{
  width: 332px;
}
.features-product-content {
  display: inline-block;
  background-color: #fff;
  float: left;
  border-radius: 0 4px 4px 0;
}

.features-product {
  display: inline-block;
  margin-bottom: 15px; }
  .features-product .product-image {
    margin: 0;
    display: inline-block;
    border-radius: 4px 0 0 4px;
    float: left; }
    .features-product .product-image img {
      width: 100%; }
  .features-product .mCustomScrollbar {
    max-height: 110px;
    overflow: hidden; }
  .features-product .comments-shared {
    margin-top: 0; }
  .features-product .ps > .ps__scrollbar-y-rail, .features-product .ps:hover > .ps__scrollbar-y-rail {
    display: none; }


.video-item .product-image {
  margin: 0;
  border-radius: 4px 4px 0 0; }

.video-item .title {
  display: block;
  margin-bottom: 0; }

.video-item .more {
  position: absolute;
  right: 25px;
  top: 20px;
  color: #fff;
  fill: #fff;
  opacity: 0;
  z-index: 5; }

.video-item:hover .more, .video-item:hover .play-video, .video-item:hover .overlay {
  opacity: 1; }

@media (max-width: 999px) {
  .features-product {
    display: block; }
    .product-image {
      width: 100%; }
  .features-product-content {
    width: 100%; } }


.event-item {
  padding: 30px;
  border-bottom: 1px solid #e6e6e6; }
  .event-item:last-child {
    border-bottom: 0; }
  .event-item .place {
    font-size: 12px; }
  .event-item .description {
    max-width: 260px;
    font-size: 12px;
    margin-bottom: 0; }
  .event-item .btn {
    margin-bottom: 0; }

.date-event {
  text-align: center; }
  .date-event > * {
    display: block;
    line-height: 1; }
  .date-event .olymp-small-calendar-icon {
    width: 14px;
    height: 18px; }
  .date-event svg {
    margin: 0 auto 5px;
    fill: #c2c5d9; }
  .date-event .day {
    font-size: 14px;
    color: #444444;
    font-weight: 700;
    margin-bottom: 3px; }
  .date-event .month {
    font-size: 9px;
    text-transform: uppercase; }

.event-author .author-thumb {
  margin-right: 12px; }

.event-author .author-name {
  margin-bottom: 0; }

.event-author time {
  font-size: 11px;
  display: block; }

.place svg {
  margin-right: 10px;
  fill: #c6c9db;
  width: 20px;
  height: 20px; }

.place {
  font-size: 11px; }

.no-past-events {
  color: #d7d9e5;
  padding: 65px 30px;
  position: relative;
  margin: 0 auto;
  text-align: center; }
  .no-past-events .control-block-button {
    right: 25px;
    top: -25px;
    z-index: 5; }
  .no-past-events .btn-control svg {
    fill: #fff;
    margin-bottom: 0;
    width: 20px;
    height: 20px; }
  .no-past-events a:hover {
    color: #a5dc86;
    font-weight: 500; }
  .no-past-events svg {
    fill: #d7d9e5;
    margin-bottom: 20px; }
  .no-past-events span {
    font-size: 14px;
    display: block; }

.event-item-table {
  width: 100%; }
  .event-item-table td {
    padding: 25px 12px; }
    .event-item-table td:first-child {
      padding-left: 30px; }
    .event-item-table td:last-child {
      padding-right: 30px; }
  .event-item-table .add-event {
    text-align: right; }
  .event-item-table thead {
    border-bottom: 1px solid #e6e6e6; }
    .event-item-table thead th {
      font-size: 9px;
      font-weight: 700;
      padding: 12px; }
      .event-item-table thead th:first-child {
        padding-left: 25px; }
      .event-item-table thead th:last-child {
        padding-right: 25px; }
  .event-item-table .author-date a {
    color: #a5dc86; }
  .event-item-table .author-date .author-name {
    color: #444444; }

.event-item-table-fixed-width .author-date {
  font-size: 12px; }
  .event-item-table-fixed-width .author-date .author-name {
    font-size: 12px; }

.event-item-table-fixed-width .event-item .btn {
  display: block; }
  .event-item-table-fixed-width .event-item .btn + .btn {
    margin-top: 8px; }

.event-item-table-fixed-width .date-event svg {
  margin: 0 10px 0 0;
  width: 20px;
  height: 20px; }

@media (max-width: 640px) {
  .event-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: calc(100vw - 30px); }
    .event-item .description {
      max-width: 100%; }
    .event-item .friends-harmonic {
      display: inline-block; }
    .event-item .add-event {
      text-align: center; }
  .event-item-table td:last-child {
    padding-right: 12px; }
  .event-item-table td:first-child {
    padding-left: 12px; }
  .date-event.align-left {
    text-align: center; }
  .event-item-table thead {
    display: none; } }

.available-widget {
  padding: 16px 25px;
  display: table;
  width: 100%; }
  .available-widget .custom-control-description {
    color: #444444;
    font-weight: 700; }
  .available-widget .form-group {
    margin-bottom: 0; }
  .available-widget .custom-control {
    margin: 0; }
  .available-widget > * {
    margin-bottom: 0;
    display: table-cell;
    vertical-align: middle; }
  .available-widget .more {
    font-size: 16px;
    padding-left: 25px;
    text-align: right;
    width: 16px; }

.empty-area {
  border: 2px dashed #e6e6e6;
  height: 50px; }
.card_solo {
    border-bottom: 1px solid #e6e6e6 !important;
    border-radius: 0 !important;
}
.card_solo .card-header:last-child a {
    border-bottom: 0 !important;
    border-radius: 0 !important;
}
.profile_all {
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  color: #000000;
}
.profile_all:hover {
  color: #cc3f30;
  text-decoration: underline;
}
.today-events .control-block-button {
  right: 25px;
  top: -25px;
  z-index: 5; }
  .today-events .control-block-button svg {
    width: 20px;
    height: 20px; }
  .today-events .control-block-button .olymp-dropdown-arrow-icon {
    width: 6px;
    height: 4px; }

.today-events .day-event {
  display: block;
  border-top: none; }
  .today-events .day-event .card-header i {
    margin-top: 3px;
    margin-left: 7px;
    float: none;
    vertical-align: bottom; }

.today-events .card.checked .event-time:before {
  border-color: #38a9ff;
  background-color: #ffffff;
}

.today-events .card.error .event-time:before {
  border-color: #000000;
  background-color: #000000;
}

.today-events .event-time {
  position: relative;
}

.today-events .event-time:before {
  content: '';
  width: 11px;
  height: 11px;
  border: 2px solid #a5dc86;
  border-radius: 100%;
  display: block;
  position: absolute;
  left: -30px;
  top: 5px;
  background-color: #a5dc86;
}

.today-events .title {
  position: relative;
  padding-right: 30px; }

.today-events .event-status-icon {
  position: absolute;
  top: 0;
  right: 0;
  fill: #888888; }
  .today-events .event-status-icon.completed {
    fill: #a5dc86; }
  .today-events .event-status-icon.checked {
    fill: #38a9ff; }

.today-events .event-time {
  margin-bottom: 10px; }
  .today-events .event-time time {
    font-size: 12px; }

.today-events.calendar .list {
  margin-top: 0;
  position: relative;
  overflow: visible;
  background: #f9f9f9;
  padding-bottom: 30px;
}

.today-events.calendar .card {
  border-bottom: none;
  padding-left: 25px; }
  .today-events.calendar .card:before {
    display: block;
    content: '';
    width: 1px;
    height: 100%;
    background-color: #e6e6e6;
    position: absolute;
    left: 25px;
    top: 0; }
  .today-events.calendar .card:first-child:before {
    top: 20px; }
  .today-events.calendar .card:last-child:before {
    height: 25px; }
  .today-events.calendar .card:last-child .card-header {
    padding-bottom: 10px;
    border-radius: 0; }
  .today-events.calendar .card:first-child .card-header {
    padding-top: 10px;
    border-radius: 0; }

.today-events.calendar .card-header {
  padding: 10px 25px;
}
.today-events.calendar .card-body {
    flex: none;
    padding: 0 25px;
}
.today-events.calendar .card-header a {
    font-size: 14px;
    padding: 0px;
    border-bottom: 0;
    text-transform: uppercase;
  }
.today-events.calendar .no_content .card-header a {
  pointer-events: none;
}

  .today-events.calendar .card-header a:hover {
    color: #555555;
    background: none;
  }
  .today-events.calendar .card-header .more-dropdown {
    right: auto;
    left: 0; }
    .today-events.calendar .card-header .more-dropdown a {
      font-size: 12px; }
      .today-events.calendar .card-header .more-dropdown a:hover {
        color: #a5dc86; }
  .today-events.calendar .card-header svg {
    margin-top: 0;
    margin-left: 0;
    width: 20px;
    height: 20px; }
  .today-events.calendar .card-header .olymp-dropdown-arrow-icon {
    width: 6px;
    height: 4px;
    margin-left: 5px; }
  .today-events.calendar .card-header .olymp-three-dots-icon {
    width: 16px;
    height: 4px;
    margin-left: 7px; }

  .today-events-thumb {
      position: relative;
      text-align: center;
      padding: 10px;
      color: #fff;
      background: #333;
      border-radius: 8px 8px 0 0;
  }
  .today-events-thumb .day-number {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 5px; }
  .today-events-thumb .day-week {
    font-size: 16px;
    margin-bottom: 5px; }
  .today-events-thumb .month-year {
    font-size: 12px;
    color: #888888; }

.card-header a .olymp-dropdown-arrow-icon {
  width: 6px;
  height: 4px; }

.calendar-events-tabs .nav-item {
  display: inline-block; }
  .calendar-events-tabs .nav-item + .nav-item {
    margin-left: 60px; }

.calendar-events-tabs.nav-tabs {
  border-bottom: none; }
  .calendar-events-tabs.nav-tabs .nav-link {
    padding: 0;
    border: none;
    border-color: transparent;
    font-weight: 700;
    font-size: 14px;
    color: #888888; }
    .calendar-events-tabs.nav-tabs .nav-link.active {
      color: #444444;
      background-color: transparent; }
  .calendar-events-tabs.nav-tabs .items-round-little {
    display: inline-block; }

@media (max-width: 420px) {
  .calendar-events-tabs .nav-item + .nav-item {
    margin-left: 10px; } }

@media (max-width: 320px) {
  .calendar-events-tabs .nav-item {
    display: block; }
  .calendar-events-tabs .nav-item + .nav-item {
    margin-left: 0;
    margin-top: 10px; } }

.monthly-indicator {
  display: inline-block; }
  .monthly-indicator .btn-control {
    float: left;
    margin-bottom: 0;
    margin-right: 15px; }
  .monthly-indicator > .negative {
    transform: rotate(180deg); }
  .monthly-indicator .olymp-stats-arrow {
    width: 18px;
    height: 18px; }
  .monthly-indicator .olymp-happy-face-icon {
    width: 20px;
    height: 20px; }
  .monthly-indicator .olymp-comments-post-icon {
    width: 20px;
    height: 20px; }

.monthly-count {
  font-size: 24px;
  color: #444444;
  overflow: hidden;
  line-height: 1; }
  .monthly-count .indicator {
    font-size: 10px;
    font-weight: 700;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px; }
  .monthly-count .period {
    display: block;
    font-size: 12px;
    color: #888888;
    line-height: 1.5;
    margin-top: 3px; }

.positive {
  color: #a5dc86; }

.negative {
  color: #000000; }

.points {
  font-size: 12px;
  margin-bottom: 30px; }
  .points > span + span {
    margin-left: 15px; }
  .points.points-block {
    margin-bottom: 0; }
    .points.points-block > span {
      display: block; }
      .points.points-block > span + span {
        margin-left: 0;
        margin-top: 15px; }

.statistics-point {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  margin-right: 6px; }

.ui-block-title .points {
  font-size: 9px;
  float: right;
  margin-bottom: 0;
  margin-top: 5px; }

.chart-with-statistic {
  overflow: hidden; }
  .chart-with-statistic .statistics-list-count {
    width: 40%;
    float: left; }
  .chart-with-statistic .chart-js-pie-color {
    width: 60%;
    float: left; }

.statistics-list-count {
  margin-bottom: 0; }
  .statistics-list-count .points {
    margin-bottom: 0; }
  .statistics-list-count .indicator {
    font-size: 10px;
    font-weight: 700;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px; }
  .statistics-list-count .count-stat {
    font-size: 24px;
    color: #444444; }
  .statistics-list-count li {
    margin-bottom: 18px; }
    .statistics-list-count li:last-child {
      margin-bottom: 0; }
  .statistics-list-count.style-2 {
    overflow: hidden; }
    .statistics-list-count.style-2 li {
      text-align: center; }
      .statistics-list-count.style-2 li:first-child {
        float: left;
        margin-left: 50px; }
      .statistics-list-count.style-2 li:last-child {
        float: right;
        margin-right: 50px; }
    .statistics-list-count.style-2 .statistics-point {
      display: block;
      margin: 0 auto 10px; }

.general-statistics {
  font-size: 28px;
  color: #444444;
  text-align: center; }
  .general-statistics span {
    display: block;
    font-size: 12px;
    color: #888888;
    white-space: nowrap; }

.chart-js-pie-color {
  position: relative; }
  .chart-js-pie-color .general-statistics {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }

.world-statistics-img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
  max-width: 70%; }
  .world-statistics-img img {
    width: 100%; }

.country-statistics {
  float: right;
  margin-bottom: 0; }
  .country-statistics li {
    margin-bottom: 20px;
    font-size: 12px; }
    .country-statistics li > * {
      display: inline-block;
      vertical-align: bottom; }
  .country-statistics .count-stat {
    font-weight: 700;
    float: right;
    margin-top: 3px;
    color: #444444; }
  .country-statistics .country {
    margin-right: 30px;
    line-height: 1; }
  .country-statistics img {
    margin-right: 7px;
    position: relative;
    bottom: 2px; }

.monthly-indicator-wrap {
  overflow: hidden; }
  .monthly-indicator-wrap .monthly-indicator {
    margin: 0 25px 30px 0;
    float: left; }

.chart-text {
  text-align: center; }
  .chart-text .title {
    margin-bottom: 10px; }

.circle-pie-chart {
  text-align: center;
  position: relative;
  margin-bottom: 30px; }
  .circle-pie-chart canvas {
    max-width: 180px;
    max-height: 180px; }
  .circle-pie-chart .pie-chart .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 42px;
    color: #444444; }

#us-chart-map {
  margin: 0 auto 35px; }

.chart-js-small-pie {
  width: 90px;
  height: 90px; }

.text-stat {
  text-align: center; }
  .text-stat .count-stat {
    font-size: 32px;
    color: #444444; }
  .text-stat .title {
    font-size: 12px;
    font-weight: 700;
    color: #444444; }
  .text-stat .sub-title {
    font-size: 12px; }

.statistics-slide {
  text-align: center;
  margin-bottom: 80px; }
  .statistics-slide .count-stat {
    font-size: 60px;
    color: #444444;
    margin-bottom: 20px; }
  .statistics-slide .title {
    font-size: 16px;
    font-weight: 700;
    color: #444444;
    margin-bottom: 10px; }
    .statistics-slide .title .c-primary {
      color: #000000; }

@media (max-width: 1200px) {
  .world-statistics-img {
    max-width: 50%;
    display: inline-block;
    vertical-align: middle; }
  .country-statistics {
    vertical-align: middle;
    display: inline-block;
    float: none; } }

@media (max-width: 1080px) {
  .text-stat .count-stat {
    font-size: 16px; }
  .statistics-list-count.style-2 li:first-child {
    margin-left: 20px; }
  .statistics-list-count.style-2 li:last-child {
    margin-right: 20px; } }

@media (max-width: 380px) {
  .world-statistics-img {
    max-width: 100%;
    margin-bottom: 20px; }
  .world-statistics {
    text-align: center; }
  .country-statistics {
    text-align: left; } }

  
.style-2 .author-thumb{
  margin-right: 10px !important;
}
.style-2 .author-thumb img{
  background-size: cover;
}
.style-2 .author-title{
  margin-bottom: 0 !important;
}
.style-2 .selected .author-title{
  color: #fff !important;
}
.list-sales{
  padding: 24px 0px 24px 0px;
}

.list-sales-item{
  padding: 0px 0px 24px 0px;
}
.list-sales-filter{
  padding: 15px 0px 24px 0px;
}
.list-products-filter {
  padding: 12px 23px 23px 23px;
}

.list-sales-filter .form-group {
  margin-left: 12px;
  margin-right: 12px;
  margin-bottom: 12px;
}

.b-action{
  margin-right: 10px;
  margin-left: 10px;
}

.b-action .btn{
  width: 80%;
  text-align: center;
  margin: 0 auto 25px auto;
}
.price {
  color: #83bb64;
}

.btn .uau{
  font-size: 18px;
  line-height: 18px;
  vertical-align: bottom;
}


.btn.btn-control .uau.space-i-plus,
.btn.btn-control .uau.space-i-minus,
.btn.btn-control .uau.space-i-film,
.btn.btn-control .uau.space-i-file-text{
  font-size: 18px;
  line-height: 18px;
  vertical-align: initial;
}

.form-group.contents p{
  font-size: 13px;
  color: #bbbbbb;
}
.form-group.contents label{
  font-size: 15px;
  font-weight: 600;
}

.slider {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.slider.slider-horizontal {
  width: 100%;
  height: 20px;
}
.slider.slider-horizontal .slider-track {
  height: 2px;
  width: 100%;
  margin-top: -2px;
  top: 50%;
  left: 0;
}
.slider.slider-horizontal .slider-selection,
.slider.slider-horizontal .slider-track-low,
.slider.slider-horizontal .slider-track-high {
  height: 100%;
  top: 0;
  bottom: 0;
}
.slider.slider-horizontal .slider-tick,
.slider.slider-horizontal .slider-handle {
  margin-left: -10px;
  margin-top: -8px;
}
.slider.slider-horizontal .slider-tick.triangle,
.slider.slider-horizontal .slider-handle.triangle {
  border-width: 0 10px 10px 10px;
  width: 0;
  height: 0;
  border-bottom-color: #0480be;
  margin-top: 0;
}
.slider.slider-horizontal .slider-tick-label-container {
  white-space: nowrap;
  margin-top: 20px;
}
.slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
  padding-top: 4px;
  display: inline-block;
  text-align: center;
}
.slider.slider-vertical {
  height: 210px;
  width: 20px;
}
.slider.slider-vertical .slider-track {
  width: 10px;
  height: 100%;
  margin-left: -5px;
  left: 50%;
  top: 0;
}
.slider.slider-vertical .slider-selection {
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
}
.slider.slider-vertical .slider-track-low,
.slider.slider-vertical .slider-track-high {
  width: 100%;
  left: 0;
  right: 0;
}
.slider.slider-vertical .slider-tick,
.slider.slider-vertical .slider-handle {
  margin-left: -5px;
  margin-top: -10px;
}
.slider.slider-vertical .slider-tick.triangle,
.slider.slider-vertical .slider-handle.triangle {
  border-width: 10px 0 10px 10px;
  width: 1px;
  height: 1px;
  border-left-color: #0480be;
  margin-left: 0;
}
.slider.slider-vertical .slider-tick-label-container {
  white-space: nowrap;
}
.slider.slider-vertical .slider-tick-label-container .slider-tick-label {
  padding-left: 4px;
}
.slider.slider-disabled .slider-handle {
  background-image: -webkit-linear-gradient(top, #dfdfdf 0%, #bebebe 100%);
  background-image: -o-linear-gradient(top, #dfdfdf 0%, #bebebe 100%);
  background-image: linear-gradient(to bottom, #dfdfdf 0%, #bebebe 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdfdfdf', endColorstr='#ffbebebe', GradientType=0);
}
.slider.slider-disabled .slider-track {
  background-image: -webkit-linear-gradient(top, #e5e5e5 0%, #e9e9e9 100%);
  background-image: -o-linear-gradient(top, #e5e5e5 0%, #e9e9e9 100%);
  background-image: linear-gradient(to bottom, #e5e5e5 0%, #e9e9e9 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe5e5e5', endColorstr='#ffe9e9e9', GradientType=0);
  cursor: not-allowed;
}
.slider input {
  display: none;
}
.slider .tooltip.top {
  margin-top: -36px;
}
.slider .tooltip-inner {
  white-space: nowrap;
}
.slider .hide {
  display: none;
}
.slider-track {
  position: absolute;
  cursor: pointer;
  background: #888888;
  border-radius: 4px;
}
.slider-selection {
  position: absolute;
  cursor: pointer;
  background: #000000;
  border-radius: 0px;
}
.slider-selection.tick-slider-selection {
  background: #000000;
  border-radius: 4px;
}
.slider-track-low,
.slider-track-high {
  position: absolute;
  background: transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
}
.slider-handle {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  filter: none;
  border: 1px solid #d2d6dc;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}
.slider-handle:hover {
  border: 1px solid #b0b4c7;
}
.slider-handle.round {
  border-radius: 50%;
}
.slider-handle.triangle {
  background: transparent none;
}
.slider-handle.custom {
  background: transparent none;
}
.slider-handle.custom::before {
  line-height: 20px;
  font-size: 20px;
  content: '\2605';
  color: #726204;
}
.slider-tick {
  display: none !important;
  opacity: 0 !important;
}
.slider-tick.round {
  border-radius: 50%;
}
.slider-tick.triangle {
  background: transparent none;
}
.slider-tick.custom {
  background: transparent none;
}
.slider-tick.custom::before {
  line-height: 20px;
  font-size: 20px;
  content: '\2605';
  color: #726204;
}
.slider-tick.in-selection {
  display: none !important;
  opacity: 0 !important;
}



.price_result{
  font-size: 18px;
  margin-top: 8px;
  color: #83bb64;
  text-align: center;
}
.forums-table {
  width: 100%;
  border-radius: 0px;
  overflow: hidden;
}
  .forums-table thead {
    background-color: #f2f2f2; }
    .forums-table thead th {
      font-size: 13px;
      font-weight: 600;
      padding: 15px 25px;
      color: #888888;
      text-align: center; }
      .forums-table thead th.forum {
        text-align: left;
        padding: 15px; }
  .forums-table td {
    padding: 15px;
    text-align: center; }
    .forums-table td.forum {
      text-align: left; }
  .forums-table tr {
    border-bottom: 1px solid #e6e6e6;
    border-top: 1px solid #e6e6e6; }
  .forums-table tr:last-child {
    /*border-bottom: 0;*/ }
    .forums-table .btn {
      margin-bottom: 0;
    }
  
  .forums-table tbody tr:hover {
    background: #f9f9f9;
  }


  .forums-table .price {
    color: #83bb64; }
    .forums-table .count:hover {
      color: #000000; }

.forum-item img {
  float: left;
  margin-right: 15px; }

.forum-item .content {
  overflow: hidden; }

.forum-item .title {
  margin-bottom: 0;
}

.forum-item .text {
  margin-bottom: 0;
  font-size: 12px; }

.forum-item .icon {
  font-size: 15px;
  color: #ffdc1b;
  margin-right: 10px;
  float: left; }

.author-freshness .author-thumb {
  display: block;
  margin-bottom: 2px; }
  .author-freshness .author-thumb img {
    width: 24px;
    height: 24px; }

.author-freshness .title {
  display: block;
  font-size: 12px;
  margin-bottom: 0; }
  .author-freshness .title:hover {
    color: #000000; }

.author-freshness .post__author-name{
  display: block;
  font-size: 13px;
  margin-bottom: 0;
}
.list-purchases{
  margin: 0 10px 10px 10px;
}
.list-purchases .list-sales-item {
    padding: 0px !important;
}

.list-purchases .list-sales-item .forums-table tr:last-child {
  border-bottom: 0px !important;
}
.author-freshness time {
  font-size: 11px; }

.sub-forums {
  margin-bottom: 0;
  padding: 5px 0;
  margin-top: 15px;
  display: inline-block;
  border-left: 1px solid #e6e6e6; }
  .sub-forums a {
    font-size: 12px;
    padding: 5px 13px;
    display: block;
    margin-bottom: 0; }
    .sub-forums a:hover {
      color: #000000; }

.author-started {
  display: flex;
  align-items: center;
  margin-top: 10px; }
  .author-started > * + * {
    margin-left: 8px; }
  .author-started span {
    font-size: 12px; }
  .author-started .title {
    margin-bottom: 0;
    font-size: 12px; }
  .author-started .author-thumb img {
    width: 18px;
    height: 18px;
    margin-right: 0; }

@media (max-width: 560px) {
  .forum-item {
    text-align: center; }
    .forum-item img {
      float: none;
      margin-right: 0;
      margin-bottom: 15px; }
  .forums-table thead th,
  .forums-table td {
    padding: 5px; } }

.open-topic-table {
  width: 100%; }
  .open-topic-table thead {
    background-color: #38a9ff; }
    .open-topic-table thead th {
      font-size: 12px;
      font-weight: 700;
      padding: 15px 25px;
      color: #fff; }
      .open-topic-table thead th.author {
        text-align: left; }
  .open-topic-table td {
    padding: 35px 25px; }
  .open-topic-table tr {
    border-bottom: 1px solid #e6e6e6;
    border-top: 1px solid #e6e6e6; }
    .open-topic-table tr:last-child {
      border-bottom: none; }
  .open-topic-table .topic-date {
    padding: 10px 23px;
    background-color: #f2f2f2;
    font-size: 11px; }
  .open-topic-table .author {
    text-align: center; }
  .open-topic-table .author-thumb {
    margin-bottom: 20px; }
    .open-topic-table .author-thumb img {
      width: 80px;
      height: 80px; }
  .open-topic-table .author-name {
    display: block;
    white-space: nowrap; }
    .open-topic-table .author-name:hover {
      color: #000000; }
  .open-topic-table .country {
    font-size: 11px; }
  .open-topic-table .posts {
    vertical-align: top; }

.reply-topic {
  float: right;
  color: #000000;
  font-size: 11px; }

@media (max-width: 640px) {
  .open-topic-table thead th,
  .open-topic-table td {
    padding: 5px; }
  .open-topic-table .author-thumb img {
    width: 40px;
    height: 40px; } }

.blog-post-wrap .blog-post {
  margin-bottom: 30px; }

.blog-post-wrap .ui-block {
  margin-bottom: 30px;
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid #e6e6e6;
  height: auto !important;
  transition: all .3s ease;
}
.blog-post-wrap .ui-block .post-thumb {
  border-radius: 5px 5px 0 0;
  margin-bottom: 0px;
  transition: all .3s ease;
}
.blog-post-wrap .ui-block:hover .post-thumb{
  opacity: 0.8;

}
.blog-post-wrap .ui-block .btn,
.blog-post-wrap .ui-block .btn:active
.blog-post-wrap .ui-block .btn:hover{
  color: #fff;
}

.blog-post-wrap .ui-block .blog-post {
    margin-bottom: 0; }
}

.blog-post .post-thumb {
  border-radius: 4px 4px 0 0;
  margin-bottom: 0; }

.blog-post .post-content {
  padding: 10px; }

.blog-post .post-title {
  display: block;
  margin-bottom: 10px;
  color: #000000;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  white-space: nowrap;
}


.blog-post .author-date {
  text-transform: uppercase;
  font-size: 10px; }

.blog-post .post__date {
  display: inline-block; }

.blog-post .post__author-name {
  font-size: 10px; }

.blog-post .post-additional-info {
  margin-top: 10px; }
  .blog-post .post-additional-info > * {
    margin-right: 0; }

.blog-post .friends-harmonic a {
  border-radius: 0; }

.blog-post .post-additional-info .comments-shared {
  margin-top: 4px; }

.post-category {
  display: inline-block;
  border-radius: 4px;
  padding: 3px 8px;
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  margin-bottom: 10px; }
  .post-category.bg-transparent {
    background-color: transparent;
    color: #000000;
    padding: 0;
    font-size: 10px; }
    .post-category.bg-transparent:hover {
      color: #000000; }
  .post-category:hover {
    color: #fff; }

.blog-post-v1:hover .post-title {
  opacity: 1;
  color: #fff; }

.blog-post-v1 .post-thumb {
  position: relative; }
  .blog-post-v1 .post-thumb:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 -170px 55px -30px rgba(0, 0, 0, 0.8); }

.blog-post-v1 .post-content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3; }

.blog-post-v1 .post-additional-info {
  margin-top: 0;
  border-top: none;
  padding: 20px 25px; }

.blog-post-v1 .post-title {
  color: #fff;
  opacity: .7; }

.blog-post-v1 .author-date {
  color: #888888; }

.blog-post-v1 .post__author-name {
  color: #fff; }

.main-header-post {
  position: relative; }
  .main-header-post img {
    width: 100%; }
  .main-header-post:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 170px 55px -30px rgba(0, 0, 0, 0.8); }

.single-post {
  position: relative; 
  padding: 15px;
  border-bottom: 0;
}
  .single-post h1, .single-post h2, .single-post h3, .single-post h4, .single-post h5, .single-post h6, .single-post .h1, .single-post .h2, .single-post .h3, .single-post .h4, .single-post .h5, .single-post .h6, .single-post p {
    line-height: 1.5; }
  .single-post .control-block-button {
    top: 20px;
    right: -17px; }
  .single-post .post-title {
    font-size: 36px;
    margin-bottom: 35px; }
    .single-post .post-title:hover {
      color: #444444; }
  .single-post .post-thumb {
    border-radius: 0;
    margin: 0 0 20px; }
  .single-post .post__author-name {
    font-weight: 700; }

.single-post-v1 {
  padding: 60px 70px;
  background-color: #fff; }
  .single-post-v1 .post-content-wrap {
    padding: 50px 0;
    overflow: hidden; }
  .single-post-v1 .post-content {
    padding: 0 40px 0 60px;
    overflow: hidden; }
  .single-post-v1 .filter-icons {
    float: left; }
    .single-post-v1 .filter-icons li {
      display: block; }
      .single-post-v1 .filter-icons li + li {
        margin-left: 0;
        margin-top: 25px; }

.author-date .author-thumb {
  margin-right: 13px; }

.author-date.not-uppercase {
  text-transform: none;
  font-size: 12px; }
  .author-date.not-uppercase .post__author-name {
    font-size: 12px;
    font-weight: 400;
    text-transform: none; }

.choose-reaction {
  text-align: center;
  padding: 30px;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6; }
  .choose-reaction .title {
    font-size: 12px;
    margin-bottom: 30px; }
    .choose-reaction .title span {
      color: #444444; }
  .choose-reaction li {
    display: inline-block; }
    .choose-reaction li + li {
      margin-left: 9px; }
    .choose-reaction li img {
      filter: grayscale(100%); }
    .choose-reaction li:hover img {
      filter: grayscale(0%); }
  .choose-reaction.reaction-colored li img {
    filter: grayscale(0);
    opacity: .7; }
  .choose-reaction.reaction-colored li:hover img {
    opacity: 1; }

.filter-icons li {
  display: inline-block;
  opacity: .7;
   }
  .filter-icons li:hover {
    opacity: 1; }
  .filter-icons li + li {
    margin-left: 8px; }

.blog-post-v2 {
  text-align: center; }
  .blog-post-v2 .post__author img {
    width: 28px;
    height: 28px; }
  .blog-post-v2 .post__date {
    display: block;
    font-size: 11px; }
  .blog-post-v2 .author-date {
    text-align: left; }
  .blog-post-v2 .post__author-name {
    margin-bottom: 0; }
  .blog-post-v2 .post-additional-info {
    display: inline-block; }
    .blog-post-v2 .post-additional-info .comments-shared {
      margin-left: 20px; }

.single-post-v2 {
  padding: 40px 0px 20px 0px;
  text-align: center; }
  .single-post-v2 .post-content {
    text-align: left;
    padding: 10px 20px; }
  .single-post-v2 .author-date {
    text-align: left; }

.single-post-additional {
  margin-bottom: 50px; }
  .single-post-additional > * {
    padding: 20px 30px; }
    .single-post-additional > * + * {
      border-left: 1px solid #e6e6e6; }
  .single-post-additional .post__author {
    margin-bottom: 0; }
  .single-post-additional .author_prof {
    font-size: 11px; }
  .single-post-additional a:hover {
    color: #000000; }

.post-date-wrap svg {
  height: 22px;
  fill: #9a9fbf;
  margin-right: 12px; }

.post-date-wrap .post-date {
  text-align: left;
  font-size: 12px; }
  .post-date-wrap .post-date span {
    font-size: 14px;
    display: block; }

.post-date-wrap .date {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 400; }

.post-comments-wrap svg {
  width: 22px;
  fill: #9a9fbf;
  margin-right: 12px; }

.post-comments-wrap .post-comments {
  text-align: left;
  font-size: 12px;
  font-weight: 400; }
  .post-comments-wrap .post-comments span {
    font-size: 11px;
    display: block; }

.post-comments-wrap .comments {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 400; }


#stars .rait-stars li{
  cursor: pointer;
}
.rait-stars li.star > i:before {
  font-family: "FontAwesome";
  content: "\f31b";
  color:#d1d8de;
}

.rait-stars li.star.hover > i:before {
  font-family: "FontAwesome";
  content: "\f318";
  color:#FFCC36;
}

.rait-stars li.star.selected > i:before {
  font-family: "FontAwesome";
  content: "\f318";
  color:#FF912C;
}


.blog-post-v3 {
  display: flex;
  align-items: center; }
  .blog-post-v3 .post-thumb {
    border-radius: 4px 0 0 4px;
    width: 50%; }
    .blog-post-v3 .post-thumb img {
      min-height: 100%; }
  .blog-post-v3 .post-content {
    width: 50%;
    padding: 25px 30px; }
  .blog-post-v3 .post-category {
    border-radius: 0;
    position: absolute;
    left: 0;
    top: 15px; }
  .blog-post-v3 .author-date {
    margin-bottom: 13px; }
  .blog-post-v3 .post-additional-info {
    border-top: none; }
    .blog-post-v3 .post-additional-info .comments-shared {
      float: none;
      margin-left: 22px;
      margin-top: 0; }
  .blog-post-v3.featured-post-item {
    display: block; }
    .blog-post-v3.featured-post-item .post-thumb {
      border-radius: 4px 4px 0 0;
      width: auto; }
    .blog-post-v3.featured-post-item .post-content {
      width: auto;
      padding: 25px; }
    .blog-post-v3.featured-post-item .post-additional-info {
      padding: 0; }

.single-post-v3 {
  padding: 60px 70px; }
  .single-post-v3 .filter-icons {
    display: inline-block;
    margin-left: 25px; }
  .single-post-v3 .post-thumb {
    border-radius: 0;
    margin: 50px -70px; }
  .single-post-v3 .control-block-button {
    float: left;
    position: relative;
    top: auto;
    right: auto; }
    .single-post-v3 .control-block-button > a {
      margin-bottom: 18px; }
    .single-post-v3 .control-block-button .post-add-icon {
      display: block;
      text-align: center; }
      .single-post-v3 .control-block-button .post-add-icon svg {
        margin-right: 0;
        margin-bottom: 5px; }
      .single-post-v3 .control-block-button .post-add-icon span {
        display: block; }
  .single-post-v3 .post-content {
    padding: 0 40px 50px 60px;
    overflow: hidden; }
  .single-post-v3 .video-thumb {
    float: none;
    padding: 65px 0;
    margin: 45px 0; }
    .single-post-v3 .video-thumb img {
      width: auto;
      margin: 0 auto;
      display: block; }
    .single-post-v3 .video-thumb:hover .overlay {
      opacity: 1; }

@media (max-width: 1024px) {
  .single-post .post-title {
    font-size: 30px; }
  .single-post-v1 {
    padding: 30px; }
    .single-post-v1 .post-content {
      padding: 0 20px 0 30px; }
  .single-post-v3 {
    padding: 30px; }
    .single-post-v3 .post-content {
      padding: 0 20px 0 30px; }
    .single-post-v3 .post-thumb {
      border-radius: 0;
      margin: 30px -30px; }
  .single-post-v2 {
    padding: 30px; }
    .single-post-v2 .post-content {
      padding: 10px 0; }
    .single-post-v2 .post-thumb {
      border-radius: 0;
      margin: 0 -30px 50px; }
  .single-post-additional > * {
    padding: 10px; }
  blockquote {
    margin: 1.5em 0;
    padding: 15px 30px 15px 30px; }
    blockquote p::before {
      left: -30px; } }

@media (max-width: 768px) {
  .blog-post .post-control-button .btn-control {
    display: block; }
  .author-date .author-thumb {
    margin-right: 8px; }
  .choose-reaction {
    padding: 15px; }
  .single-post-v1 .post-content-wrap {
    padding: 20px 0; } }

@media (max-width: 560px) {
  .blog-post .post-additional-info .comments-shared {
    float: right; }
  .single-post .post-title {
    font-size: 22px; }
  .blog-post .post-additional-info > * {
    display: inline-block !important;
    margin-top: 0; }
  .single-post-v1 .filter-icons {
    float: none; }
    .single-post-v1 .filter-icons li {
      display: inline-block; }
      .single-post-v1 .filter-icons li + li {
        margin-left: 5px;
        margin-top: 0; }
  .single-post-v1 {
    padding: 10px; }
    .single-post-v1 .post-content {
      padding: 0; }
  .choose-reaction li + li {
    margin-left: 5px; }
  .single-post-additional {
    text-align: left; }
  .single-post-additional.inline-items > * {
    display: block; }
    .single-post-additional.inline-items > * + * {
      border-left: none; }
  .blog-post-v3 {
    display: block; }
    .blog-post-v3 .post-thumb {
      width: auto; }
    .blog-post-v3 .post-content {
      width: auto; }
  .single-post-v3 .video-thumb {
    margin: 20px 0; }
  .single-post-v3 .control-block-button {
    float: none;
    margin-bottom: 20px; }
    .single-post-v3 .control-block-button > a {
      display: inline-block; }
      .single-post-v3 .control-block-button > a + a {
        margin-left: 10px;
        margin-top: 0; }
    .single-post-v3 .control-block-button .btn-control {
      display: inline-block;
      margin-bottom: 0;
      vertical-align: top; }
    .single-post-v3 .control-block-button .post-add-icon {
      display: inline-block;
      margin-bottom: 0; }
  .single-post-v3 .post-content {
    padding: 0; } }

.crumina-clients {
  padding: 85px 0;
  text-align: center; }

.clients-item {
  position: relative;
  display: inline-block; }
  .clients-item:hover img {
    opacity: 1;
    filter: grayscale(0); }
  .clients-item img {
    transition: all .3s linear;
    transform-style: preserve-3d;
    opacity: 0.3;
    filter: grayscale(100%);
    max-width: 100%; }
  .clients-item .clients-images {
    position: relative;
    display: block;
    margin: auto; }

@media (max-width: 1200px) {
  .crumina-clients {
    padding: 40px 0; }
  .clients-item {
    margin-bottom: 20px; } }

.crumina-heading {
  position: relative;
  z-index: 5;
  margin-bottom: 20px; }
  .crumina-heading > *:last-child {
    margin-bottom: 0; }
  .crumina-heading > *:first-child {
    margin-top: 0; }
  .crumina-heading + * {
    margin-top: 25px; }

.heading-title {
  margin-bottom: 30px;
  line-height: 1.3em; }

.heading-text {
  margin-top: 20px;
  line-height: 1.75; }
  .heading-text.small {
    font-size: 14px; }
  .heading-text a {
    font-weight: 700; }

.heading-sup-title {
  color: #000000;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700; }

.with-title-decoration .heading-title {
  position: relative;
  padding-bottom: 15px;
  font-size: 14px;
  display: inline-block;
  }
  .with-title-decoration .heading-title:after, .with-title-decoration .heading-title:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
     }
  .with-title-decoration .heading-title:before {
    height: 2px;
    background-color: #000000;
    width: 100%;
    z-index: 2; }

.buttons_actions .ui-block-title{
  padding: 0;
  border: 0;
}
.crumina-testimonial-item {
  text-align: center; }
  .crumina-testimonial-item .author-thumb {
    height: 98px;
    width: 98px;
    margin: 0 auto 15px; }
    .crumina-testimonial-item .author-thumb img {
      border: 4px solid #fff; }
  .crumina-testimonial-item .rait-stars {
    margin-bottom: 40px; }
    .crumina-testimonial-item .rait-stars .star-icon {
      font-size: 11px;
      color: #ffce08; }
  .crumina-testimonial-item .author-content {
    margin-top: auto;
    margin-bottom: 15px; }
  .crumina-testimonial-item .testimonial-message {
    margin-bottom: 70px; }

.testimonial-header-thumb {
  height: 90px;
  overflow: hidden;
  background-size: cover; }

.testimonial-item-content {
  margin-top: -49px;
  padding: 0 30px 30px;
  display: flex;
  flex-direction: column; }

.crumina-info-box {
  text-align: center; }

.info-box-image {
  margin-bottom: 50px; }

.info-box-wrap .crumina-info-box {
  margin-bottom: 90px; }

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

.crumina-info-box--thumb-left {
  text-align: left;
  display: flex; }
  .crumina-info-box--thumb-left .info-box-image {
    margin-bottom: 0;
    margin-right: 30px; }
  .crumina-info-box--thumb-left .info-box-title {
    margin-bottom: 30px; }

@media (max-width: 768px) {
  .info-box-image {
    margin-bottom: 20px; }
  .info-box-title {
    margin-bottom: 20px; }
  .info-box-wrap .crumina-info-box {
    margin-bottom: 30px; } }

.crumina-counter-item {
  text-align: center;
  position: relative; }
  .crumina-counter-item .counter-numbers {
    font-size: 54px;
    line-height: 1;
    margin-bottom: 40px; }
  .crumina-counter-item .counter-title {
    margin: 0;
    line-height: 1.1; }
  .crumina-counter-item .units {
    display: inline-block; }
    .crumina-counter-item .units div {
      color: #000000;
      display: inline-block; }
  .crumina-counter-item:after {
    content: "";
    display: inline-block;
    height: 50%;
    width: 1px;
    background-color: #dcdde0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%); }
  .crumina-counter-item:last-child:after {
    display: none; }


@media (max-width: 1200px) {
  .crumina-counter-item {
    margin-bottom: 40px; }
  .crumina-counter-item .counter-numbers {
    font-size: 30px;
    margin-bottom: 20px; } }

@media (max-width: 1024px) {
  .crumina-counter-item::after {
    display: none; } }

.crumina-teammembers-item {
  text-align: center; }
  .crumina-teammembers-item:hover img.hover {
    top: 0;
    left: 0;
    transform: scale(2) translate(0, 0);
    opacity: 0;
    filter: grayscale(0);
    visibility: hidden; }
  .crumina-teammembers-item:hover img.main {
    filter: grayscale(0); }

.teammembers-item-prof {
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 30px; }

.teammembers-item-name {
  margin-bottom: 10px;
  display: block;
  font-size: 18px; }

.teammembers-thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  display: inline-block; }
  .teammembers-thumb img {
    transition: all 1s ease-out;
    filter: grayscale(100%);
    display: block;
    margin: 0 auto; }
    .teammembers-thumb img.hover {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%); }

.teammembers-wrap .crumina-teammembers-item {
  margin-bottom: 60px; }

@media (max-width: 768px) {
  .teammembers-wrap .crumina-teammembers-item {
    margin-bottom: 30px; } }


.photo-album-item:hover{
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #dfe0e8;
}



.product-sizes ul{
  margin-bottom: 8px;
}
.product-sizes li {
  display: inline-block;
}

.product-sizes li a {
  width: 35px;
  height: 35px;
  background: #ffffff;
  padding: 7px;
  border-radius: 100px;
  border: 1px solid #e6e6e6;
  display: block;
  color: #888888;
  font-size: 13px;
  text-align: center;
}
.product-sizes li a:hover {
  border: 1px solid #b0b4c7;
  display: block;
}
.product-sizes li a.active,
.product-sizes li a.active:hover {
  border: 1px solid #000000;
  color: #000000;
  box-shadow: 0px 0px 0px 1px #000000;
}

.product-sizes li a.texts {
  width: 100%;
  padding: 7px 15px;
  border-radius: 100px;
}

.product-title{
  font-size: 16px;
  margin: 15px 0 0px 0 !important;
  font-weight: 700;
}
.product-description{
  margin: 6px 0 10px 0 !important;
}
.product-sizes li + li {
    margin-left: 4px;
}

.product-sizes li #element-loader + li {
    margin-left: 6px;
}
#new_image{
  position: absolute;
  z-index: 10;
  display: none;
}
#element-loader .loadermini a {
  position: relative;
  left: -4px;
  float: left;
  top: 4px;
  width: 35px;
  height: 30px;
  background: #ffffff;
  padding: 0px;
  border-radius: 100%;
  border: 1px solid #fff;
  display: block;
  text-align: center;
}
.loader_shipping .loader_mini {
  position: relative;
    height: 40px;
    float: right;
    background: #ffffff;
    padding: 0px;
    display: block;
    text-align: right;
    right: 125px;
    top: -10px;
}

.loader_shipping .loader_mini .loader_text {
  position: absolute;
    height: 40px;
    width: 120px;
    right: -125px;
    top: 11px;
}
.socials i {
  font-size: 22px; }

.socials li {
  display: inline-block; }
  .socials li a {
    width: 40px;
    height: 40px;
    background: #ffffff;
    padding: 8px;
    border-radius: 100%;
    border: 1px solid #e6e6e6;
    display: block; }
  .socials li a:hover {
    border: 1px solid #b0b4c7;
    display: block; }
  .socials li + li {
    margin-left: 20px; }

.socials--round .social-item {
  width: 34px;
  height: 34px;
  border-radius: 100%;
  fill: #fff;
  display: block;
  position: relative;
  opacity: .9; }
  .socials--round .social-item:hover {
    opacity: 1;
  }
  .socials--round .social-item.olympus {
    background-color: #000000; }
  .socials--round .social-item.rss {
    background-color: #f4b459; }
  .socials--round .social-item.mail {
    background: #996DD1; }
  .socials--round .social-item.pinterest {
    background: #cc2127; }
  .socials--round .social-item.googleplus {
    background: #dd4b39; }
  .socials--round .social-item.google {
    background: #dd4b39; }
  .socials--round .social-item.facebook {
    background: #3b5998; }
  .socials--round .social-item.twitter {
    background: #55acee; }
  .socials--round .social-item.amazon {
    background-color: #F69B06; }
  .socials--round .social-item.behance {
    background-color: #2D2D2D; }
  .socials--round .social-item.bing {
    background-color: #FFA616; }
  .socials--round .social-item.creative-market {
    background-color: #8DA741; }
  .socials--round .social-item.deviantart {
    background-color: #1B1B1B; }
  .socials--round .social-item.dribble {
    background-color: #f74881; }
  .socials--round .social-item.dropbox {
    background-color: #0BA4E0; }
  .socials--round .social-item.envato {
    background-color: #6D9C3E; }
  .socials--round .social-item.flickr {
    background-color: #26A9E1; }
  .socials--round .social-item.instagram {
    background-color: #E75351; }
  .socials--round .social-item.kickstarter {
    background-color: #14E06E; }
  .socials--round .social-item.linkedin {
    background-color: #4A8F9E; }
  .socials--round .social-item.medium {
    background-color: #00E56B; }
  .socials--round .social-item.periscope {
    background-color: #3FA4C4; }
  .socials--round .social-item.quora {
    background-color: #F85F62; }
  .socials--round .social-item.reddit {
    background-color: #F05825; }
  .socials--round .social-item.shutterstock {
    background-color: #008EC0; }
  .socials--round .social-item.skype {
    background-color: #00AAF1; }
  .socials--round .social-item.snapchat {
    background-color: #FFED45; }
  .socials--round .social-item.soundcloud {
    background-color: #FF3300; }
  .socials--round .social-item.spotify {
    background-color: #83bb64; }
  .socials--round .social-item.trello {
    background-color: #0079BF; }
  .socials--round .social-item.tumblr {
    background-color: #36465D; }
  .socials--round .social-item.vimeo {
    background-color: #1AB7EA; }
  .socials--round .social-item.vk {
    background-color: #6383A8; }
  .socials--round .social-item.whatsapp {
    background-color: #25D366; }
  .socials--round .social-item.wikipedia {
    background-color: #000000; }
  .socials--round .social-item.wordpress {
    background-color: #21759B; }
  .socials--round .social-item.youtube {
    background-color: #ff2b05; }

.socials--round svg {
  height: 15px;
  width: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

.socials-shared {
  display: flex;
  justify-content: center;
  padding: 60px; }
  .socials-shared .social-item {
    width: 100%;
    padding: 15px 30px;
    margin-bottom: 0; }
    .socials-shared .social-item i {
      font-size: 15px; }
    .socials-shared .social-item + .social-item {
      margin-left: 15px; }

@media (max-width: 560px) {
  .socials-shared {
    padding: 20px; } }

.contact-item-wrap {
  margin-bottom: 30px; }
  .contact-item-wrap:hover .contact-title:after {
    width: 100%; }

.contact-title {
  position: relative;
  padding-bottom: 35px;
  margin-bottom: 50px; }
  .contact-title:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 15%;
    height: 2px;
    background-color: #000000;
    transition: width .3s ease-in-out; }

.contact-item .sub-title {
  font-weight: 400; }

.more i{
  font-size: 19px;
  width: 24px;
  height: 20px;
  text-transform: none;
}
.more.has-items i{
  font-size: 22px;
  vertical-align: text-top;
  margin-top: 4px;
}
.author-content .more{
  position: absolute;
  right: -28px;
  margin-top: 4px;
}

.liked {
  color: #000000 !important;
}

.contact-item a {
  color: #888888;
  display: block; }
  .contact-item a:hover {
    color: #000000; }

.contact-item + .contact-item {
  margin-top: 30px; }

.contact-form-wrap {
  position: relative;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  box-shadow: 0 0 34px 0 rgba(63, 66, 87, 0.1);
  z-index: 2;
  }

.contact-form-thumb {
  position: relative;
  padding: 50px 40px;
  color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  width: 40%; }
  .contact-form-thumb .title {
    color: inherit;
    font-size: 34px;
    margin-bottom: 40px;
    line-height: 1; }
    .contact-form-thumb .title span {
      font-size: 64px;
      display: block; }

.contact-form {
  padding: 40px 40px 30px 40px; }
  .contact-form .btn {
    margin-bottom: 0; }

@media (max-width: 1200px) {
  .contact-form-thumb .title span {
    font-size: 34px; }
  .contact-form-thumb .title {
    margin-bottom: 20px; }
  .contact-form-thumb {
    padding: 30px; }
  .contact-form-wrap .contact-form {
    padding: 30px; } }

@media (max-width: 860px) {
  .contact-form-thumb .title, .contact-form-thumb .title span {
    font-size: 22px; } }

@media (max-width: 600px) {
  .contact-form-wrap {
    flex-direction: column; }
  .contact-form-thumb {
    width: 100%; }
  .contact-form-wrap .contact-form {
    width: 100%; } }

.accordion-faqs .icons-wrap {
  display: inline-block;
  position: relative;
  margin-left: 20px; }
  .accordion-faqs .icons-wrap svg {
    fill: #000000;
    transition: opacity .3s ease; }
  .accordion-faqs .icons-wrap .olymp-plus-icon {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0; }
.accordion-faqs .card {
  background: none;
}
.accordion-faqs .card-header .collapsed .olymp-accordion-close-ico {
  opacity: 0; }

.accordion-faqs .card-header .collapsed .olymp-plus-icon {
  opacity: 1; }

.accordion-faqs .card-header {
  padding: 0;
  border: none;
  border: 0; }
.accordion-faqs .card-header a,
.accordion-faqs .card-header a:hover {
  color: #000000;
  background: none;
  padding: 1rem 0;
  border: 0; }
  .accordion-faqs .card-header a.collapsed{
  color: #888888;
  background: none;
  padding: 1rem 0;
  border: 0; }

  .accordion-faqs .card-header a.collapsed:hover {
  color: #555555;
  background: none;
  padding: 1rem 0;
  border: 0; }

  .accordion-faqs .card-header:first-child {
    border-top: none; }

.accordion-faqs .collapse {
  margin-bottom: 0; }

.accordion-faqs svg {
  width: 12px;
  height: 12px; }

@media (max-width: 600px) {
  .accordion-faqs .card-header {
    padding: 30px 0; }
  .accordion-faqs .collapse {
    margin-bottom: 20px; } }

.table-careers {
  width: 100%; }
  .table-careers li {
    display: table;
    width: 100%;
    padding: 30px 35px;
    border: 1px solid #e6e6e6;
    margin-top: 18px;
    box-shadow: 0 0 34px 0 rgba(63, 66, 87, 0.1);
    border-radius: 4px;
    transition: background-color .3s ease; }
    .table-careers li:hover {
      background-color: #e6e6e6; }
  .table-careers span {
    display: table-cell;
    vertical-align: middle;
    width: 20%; }
    .table-careers span.position, .table-careers span.type {
      color: #444444; }
  .table-careers .head {
    border: none;
    box-shadow: none; }
    .table-careers .head span {
      font-size: 10px;
      text-transform: uppercase; }
    .table-careers .head:hover {
      background-color: transparent; }
  .table-careers .btn {
    margin: 0; }


@media (max-width: 640px) {
  .table-careers li {
    padding: 15px; } }

.follow-instagram {
  display: flex;
  border-radius: 4px;
  overflow: hidden;
  position: relative; }
  .follow-instagram img {
    width: 20%; }
  .follow-instagram .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  .follow-instagram:hover .overlay {
    opacity: 1; }

@media (max-width: 460px) {
  .follow-instagram .btn {
    width: 70%; } }

.help-support-block {
  margin-bottom: 0; }
  .help-support-block .title {
    font-size: 16px;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    padding-left: 28px; }
  .help-support-block .title:last-child {
    margin-bottom: 0px;
  }
    .help-support-block .title .total-topic {
      margin-right: 10px;
      margin-left: -28px; }

    




.help-support-block p {
  margin-left: 28px;
  margin-top: 0px;
  font-size: 12px;
  line-height: 16px;
}

.total-topic {
  position: absolute;
  font-size: 14px;
  border-radius: 200px;
  width: 18px;
  height: 18px;
  background-color: #ffffff;
  text-align: center;
  display: block;
  color: #444444;
  border: 1px solid #444444;
}
.total-topic div{
  background: transparent;
  width: 10px;
  height: 10px;
  margin: 3px;
  border-radius: 100%;
}
.help-support-block .title.active .total-topic div,
.help-support-block .title.active:hover .total-topic div{
  background: #000000;
} 

.help-support-block .title:hover {
  color: #000000;
}
.help-support-block .title:hover .total-topic {
  color: #000000;
  border: 1px solid #000000;
}
.help-support-block .title.active,
.help-support-block .title.active:hover {
  color: #000000;
}
.help-support-block .title.active .total-topic,
.help-support-block .title.active:hover .total-topic {
  color: #000000;
  border: 1px solid #000000;
}





/*boost example*/

.boost_example .icon-share{
  display: inline-block !important;
  vertical-align: middle !important;
}
.boost_example .icon-share:hover{
  color: #c2c5d9 !important;
}
.boost_example .icon-heart {
  margin-top: 0px !important;
}
.boost_example .post-add-icon i {
  width: 20px !important;
  height: 20px !important;
  font-size: 20px !important;
  margin-right: 2px !important;
}

.boost_example .post__author img {
  width: 34px !important;
  height: 34px !important;
  border-radius: 100% !important;
  overflow: hidden !important;
  margin-right: 6px !important;
}

.boost_example .post {
  position: relative !important;
  padding: 8px !important;
}

.boost_example .post .post__date a,
.boost_example .post .post__date a:hover {
  text-decoration: none !important;
  font-size: 11px !important;
}

.boost_example .product-title {
  font-size: 15px !important;
  margin: 6px 0 0px 0 !important;
}

.boost_example .product-description {
  margin: 4px 0 0px 0 !important;
}

.boost_example .post-thumb {
  margin-bottom: 8px !important;
}

.boost_example .post-additional-info {
  padding: 8px 0 0 !important;
  border-top: 1px solid #e6e6e6 !important;
  height: 30px !important;
}

.boost_example .btn.btn-buy {
  margin-bottom: 0 !important;
  padding: 4px 32px 3px 14px !important;
  font-size: 12px !important;
}
.boost_example .btn-buy i {
  width: 12px !important;
  height: 12px !important;
  font-size: 15px !important;
  position: absolute !important;
  right: 14px !important;
}

.boost_example .btn.btn-gift {
  margin-bottom: 0 !important;
  font-size: 17px !important;
  border: 2px solid #000000 !important;
  padding: 0px 3.5px !important;
  border-radius: 100px !important;
}

.boost_example .btn-gift i {
  width: 18px !important;
  height: 18px !important;
  line-height: 12px !important;
}

.boost_example .post-additional-info .comments-shared {
  float: right !important;
  margin-top: -4px !important;
}
.boost_example .product-price span {
  color: #c2c5d9 !important;
  font-size: 11px !important;
}
.boost_example .product-price {
  font-size: 14px !important;
  color: #83bb64 !important;
  margin-bottom: 4px !important;
}



#type_feed .boost_example,
#type_feed_2 .boost_example {
  margin: 0 auto 30px auto;
}


#type_sidebar .boost_example,
#type_sidebar_2 .boost_example {
  width: 80% !important;
  margin: 0 auto 30px auto;
}
#type_sidebar .boost_example .post-thumb,
#type_sidebar_2 .boost_example .post-thumb {
  margin-bottom: 0px !important;
}


#type_related .photo-album-wrapper,
#type_related_2 .photo-album-wrapper {
  width: 65% !important;
  margin: 0 auto 30px auto;
}
#type_related .photo-album-item-wrap,
#type_related_2 .photo-album-item-wrap {
  margin-right: 0 !important;
  padding: 0 !important;
}

#type_feed,
#type_sidebar,
#type_related{
  display: none;
  pointer-events:none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#type_feed_2,
#type_sidebar_2,
#type_related_2{
  display: none;
  pointer-events:none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


.scale_1 {
  transform: scale(0.44) !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  margin: -167px 0 0 -130px !important;
  padding: 0 !important;
}

.scale_2 {
  transform: scale(0.336) !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  margin: 12px 0 0 160px !important;
  padding: 0 !important;
}

.scale_3 {
  transform: scale(0.320) !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  margin: 163px 0 0 -60px !important;
  padding: 0 !important;
  width: 65% !important;
}

.monthselect,
.yearselect,
.hourselect,
.minuteselect,
.ampmselect{
  display: block;
  padding: 1.1rem 1.1rem;
  font-size: .875rem;
  line-height: 1.25;
  color: #464a4c;
  background-color: transparent;
  background-image: none;
  background-clip: padding-box;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  float: left;
  margin-right: 8px;
}
/*boost example*/





.help-support-list li {
  display: flex;
  align-items: flex-start; }
  .help-support-list li svg {
    margin-right: 20px;
    width: 14px;
    height: 14px;
    fill: #9a9fbf;
    position: relative;
    top: 3px; }
  .help-support-list li a {
    font-size: 14px;
    color: #888888; }
  .help-support-list li + li {
    margin-top: 20px; }
  .help-support-list li:hover a {
    color: #444444; }
  .help-support-list li:hover svg {
    fill: #000000; }


.quantity-minus{
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 6px 0 0 6px;
    padding: 14px 10px;
    font-size: 13px;
    text-align: center;
}
.quantity-plus{
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 0 6px 6px 0;
    padding: 14px 10px;
    font-size: 13px;
    text-align: center;
}

.quantity-plus:hover,
.quantity-minus:hover{
    color:#000000;
    border: 1px solid #000000;
}
.quantity-value{
  text-align: center;
}

.quantity-minus i,
.quantity-plus i{
  vertical-align: middle;
}

.help-main-topic .title {
  margin-bottom: 20px; }

.help-main-topic .help-image {
  margin: 40px auto; }

.help-main-topic .single-post-additional {
  margin-bottom: 20px; }

.help-main-topic .single-post-additional > * + * {
  border-left: none;
  margin-left: 30px; }

.help-main-topic .single-post-additional > * {
  padding: 20px 0; }

.user-raiting-choice {
  padding: 35px 0;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  margin-top: 40px;
  display: flex;
  align-items: center;
  font-size: 12px; }
  .user-raiting-choice b {
    margin-left: 5px; }
  .user-raiting-choice a {
    margin-left: 15px;
    opacity: .8; }
    .user-raiting-choice a:hover {
      opacity: 1; }
  .user-raiting-choice span {
    color: #444444;
    margin-left: auto;
    font-weight: 700; }

@media (max-width: 860px) {
  .help-support-block .title {
    margin-bottom: 20px; } }

@media (max-width: 560px) {
  .help-main-topic .single-post-additional > * {
    display: inline-block; }
  .user-raiting-choice {
    display: block;
    padding: 15px 0;
    margin-top: 20px; }
    .user-raiting-choice span {
      display: block;
      margin-top: 15px; } }

@media (max-width: 360px) {
  .help-main-topic .single-post-additional > * {
    display: block; }
  .help-main-topic .single-post-additional > * + * {
    margin-left: 0; } }

.search-help-result-title {
  text-align: center;
  margin-bottom: 100px; }
  .search-help-result-title .count-result {
    color: #000000; }
  .search-help-result-title .search-query {
    font-style: italic;
    color: #888888; }

.search-help-result-list li {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid #e6e6e6; }

.search-help-result-list .title {
  margin-bottom: 40px; }

.search-help-result-list .single-post-additional {
  margin-bottom: 20px; }

.search-help-result-list .single-post-additional > * + * {
  border-left: none;
  margin-left: 30px; }

.search-help-result-list .single-post-additional > * {
  padding: 20px 0; }

.search-help-result-list .post__author img {
  width: 26px;
  height: 26px; }

.user-raiting {
  margin-top: 30px;
  font-size: 12px;
  color: #444444;
  font-weight: 700; }
  .user-raiting img {
    margin-right: 20px; }

.page-404-content {
  text-align: center; }
  .page-404-content img {
    margin-bottom: 70px; }

@media (max-width: 860px) {
  .search-help-result-title {
    margin-bottom: 40px; }
  .search-help-result-list li {
    padding-bottom: 20px;
    margin-bottom: 20px; } }

@media (max-width: 768px) {
  .page-404-content img {
    margin-bottom: 30px; } }

@media (max-width: 560px) {
  .search-help-result-list .title {
    margin-bottom: 20px; }
  .search-help-result-list .single-post-additional > * {
    display: inline-block; } }

@media (max-width: 360px) {
  .search-help-result-list .single-post-additional > * {
    display: block; }
  .search-help-result-list .single-post-additional > * + * {
    margin-left: 0; } }

.shop-product-item {
  margin-bottom: 30px; }
  .shop-product-item .product-thumb {
    display: flex;
    background-color: #f2f4f8;
    margin-bottom: 10px;
    margin-right: 0;
    height: 420px;
    width: auto;
    position: relative; }
  .shop-product-item .product-content {
    display: flex;
    align-items: center; }
    .shop-product-item .product-content .block-price {
      margin-left: auto; }
  .shop-product-item .onsale {
    display: block;
    width: 42px;
    height: 42px;
    border-radius: 100%;
    position: absolute;
    right: 20px;
    top: 20px;
    color: #fff;
    background-color: #000000;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    line-height: 42px; }
  .shop-product-item .product-content .title {
    font-size: 16px;
    transition: opacity .3s ease; }
  .shop-product-item .product-price {
    margin-right: 0;
    font-size: 16px;
    font-weight: 700;
    transition: opacity .3s ease; }
    .shop-product-item .product-price.with-sale {
      color: #000000; }
      .shop-product-item .product-price.with-sale del {
        color: #888888;
        margin-right: 7px; }
  .shop-product-item .rait-stars {
    margin-bottom: 10px; }
  .shop-product-item:hover .in-cart {
    opacity: 1; }
  .shop-product-item:hover .rait-stars {
    opacity: 0; }
  .shop-product-item:hover .product-price {
    opacity: 0; }
  .shop-product-item.product-item-v2 {
    text-align: center; }
    .shop-product-item.product-item-v2 .product-thumb {
      display: block;
      margin-bottom: 30px;
      height: auto;
      padding: 20px; }
      .shop-product-item.product-item-v2 .product-thumb img {
        display: block;
        margin: 10px auto 20px; }
      .shop-product-item.product-item-v2 .product-thumb .btn {
        margin: 0 auto;
        opacity: 0; }
      .shop-product-item.product-item-v2 .product-thumb .rait-stars {
        opacity: 1; }
      .shop-product-item.product-item-v2 .product-thumb .product-price {
        opacity: 1; }
      .shop-product-item.product-item-v2 .product-thumb .block-title, .shop-product-item.product-item-v2 .product-thumb .block-price {
        text-align: left; }
  .shop-product-item:hover .product-thumb .btn {
    opacity: 1; }

.product-category {
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #888888;
  display: block; }

.block-price {
  position: relative; }
  .block-price .in-cart {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    opacity: 0;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    text-align: center;
    background-color: #38a9ff;
    transition: opacity .3s ease; }
    .block-price .in-cart svg {
      fill: #fff;
      height: 22px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }


.product-price {
    font-size: 16px;
    color: #83bb64;
    margin-bottom: 10px;
}
.product-price strong{
    color: #83bb64;
}
.product-price div{
  clear: both;
}
.product-price span{
  color: #c2c5d9;
  font-size: 12px;
  font-weight: normal;
}
.product-price span em{
  color: #c2c5d9;
  font-style: normal;
  text-decoration: line-through;
  font-weight: 400;
}



.shop-product-detail .thumbs-wrap {
  display: flex;
  align-items: flex-start; }

.small-thumbs-wrap {
  margin-right: 10px; }
  .small-thumbs-wrap .small-thumb {
    display: flex;
    width: 80px;
    height: 80px;
    background-color: #f2f4f8; }
    .small-thumbs-wrap .small-thumb img {
      margin: auto; }
    .small-thumbs-wrap .small-thumb + .small-thumb {
      margin-top: 10px; }

.shop-product-detail-thumb {
  height: 560px;
  width: 100%;
  display: flex;
  background-color: #f2f4f8; }
  .shop-product-detail-thumb img {
    margin: auto; }

.shop-product-detail-content p {
  margin-bottom: 50px; }

.shop-product-detail-content .btn {
  margin-bottom: 50px; }

.shop-product-detail-content .main-content-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px; }
  .shop-product-detail-content .main-content-wrap .title {
    margin-bottom: 20px; }

.shop-product-detail-content .product-category {
  font-size: 12px;
  margin-bottom: 20px; }

.shop-product-detail-content .rait-stars .star-icon {
  font-size: 10px; }

.shop-product-detail-content .product-price {
  font-size: 34px; }

.shop-product-detail-content .inputs-wrap {
  display: flex;
  margin-bottom: 50px;
  align-items: center; }
  .shop-product-detail-content .inputs-wrap > * + * {
    margin-left: 20px;
    width: 100%; }
  .shop-product-detail-content .inputs-wrap .form-group {
    margin-bottom: 0; }

.quantity {
  position: relative; }
  .quantity .quantity-minus, .quantity .quantity-plus {
    position: absolute;
    right: 15px;
    top: 0;
    color: #444444;
    font-size: 11px;
    height: 50%;
    width: 20px;
    line-height: 27px; }
  .quantity .quantity-minus {
    top: auto;
    bottom: 0; }

.tags {
  font-size: 12px;
  color: #444444;
  font-weight: 700; }
  .tags li {
    display: inline-block; }
    .tags li:nth-child(2) {
      margin-left: 5px; }
  .tags .tags-item {
    color: #888888;
    font-weight: 400; }
    .tags .tags-item:hover {
      color: #000000; }

.article-number {
  font-size: 12px;
  color: #444444;
  font-weight: 700; }
  .article-number span {
    color: #888888;
    font-weight: 400;
    margin-left: 8px; }

.product-description .nav-tabs {
  border-bottom: none;
  justify-content: center;
  margin-bottom: 80px; }
  .product-description .nav-tabs .nav-link {
    font-weight: 700;
    color: #888888;
    font-size: 14px; }
    .product-description .nav-tabs .nav-link.active {
      color: #444444; }
      .product-description .nav-tabs .nav-link.active .total-topic {
        background-color: #000000; }
    .product-description .nav-tabs .nav-link .total-topic {
      width: 19px;
      height: 19px;
      line-height: 19px;
      background-color: #9a9fbf;
      display: inline-block;
      color: #fff;
      margin-left: 10px; }

.product-description .nav-tabs .nav-link.active, .product-description .nav-tabs .nav-item.show .nav-link {
  border-color: transparent; }

.product-description .nav-tabs .nav-link:focus, .product-description .nav-tabs .nav-link:hover {
  border-color: transparent; }

.product-description .tab-pane > .title {
  margin-bottom: 50px; }

.product-description .tab-pane p {
  margin-bottom: 30px; }

.comments-title-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
}

.comments__item-review {
  padding: 20px 0;
  border-top: 1px solid #e6e6e6; }
  .comments__item-review:last-child {
    border-bottom: 1px solid #e6e6e6; }
  .comments__item-review:first-child {
    margin-top: 20px; }
  .comments__item-review .rait-stars {
    margin-bottom: 10px; }
  .comments__item-review .comment-content {
    margin-bottom: 10px; }
  .comments__item-review .comments__header-review {
    font-size: 12px; }
    .comments__item-review .comments__header-review .comments__author-review a {
      font-weight: 700;
      color: #444444;
      font-style: normal; }
      .comments__item-review .comments__header-review .comments__author-review a:hover {
        color: #000000; }
.comments__item-review .post__author-name {
  font-size: 13px;
}
.comments__body .rait-stars .star-icon {
    font-size: 16px;
    font-style: normal;
}
.form-write-rewiev {
  padding: 25px 30px; }

@media (max-width: 1200px) {
  .quantity .quantity-minus, .quantity .quantity-plus {
    line-height: 22px; } }

@media (max-width: 1024px) {
  .shop-product-detail-thumb {
    height: auto; }
  .shop-product-detail .thumbs-wrap {
    margin-bottom: 40px; } }

@media (max-width: 900px) {
  .product-description .nav-tabs {
    margin-bottom: 40px; }
  .product-description .tab-pane > .title {
    margin-bottom: 30px; }
  .product-description .tab-pane p {
    margin-bottom: 20px; }
  .comments__item-review {
    padding: 30px 0; }
    .comments__item-review:first-child {
      margin-top: 20px; } }

@media (max-width: 768px) {
  .product-description .nav-item {
    width: auto; } }

@media (max-width: 460px) {
  .small-thumbs-wrap .small-thumb {
    width: 50px;
    height: 50px; }
  .shop-product-detail-content .product-price {
    margin-right: 0;
    font-size: 22px; } }

.ovh {
  overflow: hidden; }

.f-left {
  float: left; }

.f-right {
  float: right; }

.f-none {
  float: none; }

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

.align-left {
  text-align: left; }

.align-right {
  text-align: right; }
  .align-right .btn {
    margin-left: 20px; }
  .align-right .w-search {
    display: inline-block; }

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(43, 45, 59, 0.2);
  
  opacity: 0; }
  .overlay.overlay-dark {
    background: rgba(0, 0, 0, 0.2); }
  .overlay.overlay-light {
    background: rgba(250, 251, 253, 0.9);
  }




.add-element {
    display: block;
    width: 100%;
    border-radius: 6px;
    line-height: normal;
    box-sizing: border-box;
}

.add-element .add-element-input {
    display: block;
    padding: 12px 0;
    background: #fff;
    border: 2px dashed #e0dfdf;
    border-radius: 6px;
    text-align: center;
    transition: all .3s ease;
}
.add-element-input {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid transparent;
    border-radius: 6px;
    overflow: hidden;
}

.add-element .add-element-input .add-element-input-inner {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.add-element .add-element-input h3 {
    margin: 0;
    margin-bottom: 39px;
    padding: 0;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: #666666;
    text-transform: uppercase;
    white-space: normal;
    width: 100%;
}
.add-element-input .add-element-input-caption {
    position: relative;
    display: inline-block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-item-align: start;
    align-self: flex-start;
    padding: 11px 16px;
    margin-right: 16px;
    background: #fff;
    border: 1px solid #ebeef1;
    border-radius: 6px;
    color: #e62e25;
    font-weight: 700;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.add-element .add-element-input .btn {
  font-size: 12px;
  margin-bottom: 10px;
}

.table {
  display: table; }

.inline-items > * {
  display: inline-block;
  vertical-align: middle; }

.table-cell {
  display: table-cell;
  vertical-align: middle;
  float: none; }
  @media (max-width: 640px) {
    .table-cell {
      display: block;
      float: left; } }

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

@media (max-width: 480px) {
  .centered-on-mobile {
    text-align: center; } }

.no-padding {
  padding: 0; }

.padding-r-0 {
  padding-right: 0; }

.padding-l-0 {
  padding-left: 0; }

.mt50 {
  margin-top: 50px; }

.no-margin {
  margin: 0; }

.negative-margin-top150 {
  margin-top: -150px; }
  @media (max-width: 1024px) {
    .negative-margin-top150 {
      margin-top: 0; } }

.negative-margin-top50 {
  margin-top: -50px; }

.negative-margin-right150 {
  margin-right: -150px; }
  @media (max-width: 768px) {
    .negative-margin-right150 {
      margin-right: 0; } }

.mobile-margin-25 {
  margin: 0 25px; }

.presentation-margin {
  margin: 40px 0 20px; }

.full-block {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0; 
  z-index: 10;
  cursor: pointer;
  margin-bottom: 0;
  
}
.create-album .full-block:hover {
  background: #e6e6e6;
  opacity: 0.2;
}
.photo-item .product-del{
  z-index: 99;
  opacity: 0.5;
  background: rgba(255, 255, 255, 0.2);
}

.photo-item:hover .product-del{
  z-index: 1000;
  opacity: 1;
  background: rgba(255, 255, 255, 0.6);
}
.full-width {
  width: 100%; }

.full-height {
  height: 100%; }

.display-flex {
  display: flex;
  align-items: center; }
  .display-flex.content-center {
    justify-content: center; }
  .display-flex.content-around {
    justify-content: space-around; }

.inline-block {
  display: inline-block; }

.padding40 {
  padding: 40px; }

.padding80 {
  padding: 80px; }

.bg-violet {
  background-color: #7442ce; }

.bg-primary {
  background-color: #000000; }

.bg-secondary {
  background-color: #3f4257; }

.bg-purple {
  background-color: #7c5ac2; }

.bg-blue {
  background-color: #38a9ff; }

.bg-blue-light {
  background-color: #00b7ff; }

.bg-breez {
  background-color: #a5dc86; }

.bg-breez-light {
  background-color: #2aebcb; }

.bg-grey {
  background-color: #444444; }

.bg-grey-light {
  background-color: #888888; }

.bg-grey-lighter {
  background-color: #9a9fbf; }

.bg-orange {
  background-color: #ff763a; }

.bg-yellow {
  background-color: #ffdc1b; }

.bg-smoke {
  background-color: #e6e6e6; }

.bg-smoke-light {
  background-color: #f2f2f2; }

.bg-green {
  background-color: #83bb64; }

.bg-facebook {
  background-color: #3c5998; }

.bg-twitter {
  background-color: #01aced; }

.bg-instagram {
  background-color: #252525; }

.bg-youtube {
  background-color: #ff2b05; }

.bg-google {
  background-color: #dd4a39; }

.bg-pinterest {
  background-color: #cc2126; }

.bg-flickr {
  background-color: #0063db; }

.bg-whatsapp {
  background-color: #45c455; }

.bg-telegram {
  background-color: #2097c9; }


.text-violet {
  color: #7442ce; }

.text-primary {
  color: #000000; }

.text-secondary {
  color: #3f4257; }

.text-purple {
  color: #7c5ac2; }

.text-blue {
  color: #38a9ff !important; }

.text-blue-light {
  color: #00b7ff; }

.text-breez {
  color: #a5dc86; }

.text-breez-light {
  color: #2aebcb; }

.text-grey {
  color: #444444; }

.text-grey-light {
  color: #888888; }

.text-grey-lighter {
  color: #9a9fbf; }

.text-orange {
  color: #ff763a; }

.text-yellow {
  color: #ffdc1b; }

.text-smoke {
  color: #e6e6e6; }

.text-smoke-light {
  color: #f2f2f2; }

.text-green {
  color: #83bb64; }



.c-primary {
  color: #000000; }

.c-white {
  color: #fff; }

.c-grey {
  color: #888888; }

.c-orange {
  color: #ff763a; }

.c-secondary {
  color: #3f4257; }

.c-yellow {
  color: #ffdc1b; }

.c-purple {
  color: #7c5ac2; }

.c-green {
  color: #83bb64;
  fill: #83bb64; }

.c-facebook {
  color: #3c5998; }

.c-twitter {
  color: #01aced; }

.c-instagram {
  color: #252525; }

.c-youtube {
  color: #ff2b05; }

.c-google {
  color: #dd4a39; }

.c-pinterest {
  color: #cc2126; }

.c-flickr {
  color: #0063db; }

.c-whatsapp {
  color: #45c455; }

.c-telegram {
  color: #2097c9; }

.bold {
  font-weight: 800; }

.weight-normal {
  font-weight: 400; }

.weight-light {
  font-weight: 300; }

.custom-color * {
  color: inherit; }

.flip-button {
  box-sizing: content-box;
  cursor: pointer;
  outline: none;
  padding: 0;
  position: relative;
  -webkit-transform: scale(1) rotate(360deg);
  transform: scale(1) rotate(360deg);
  -webkit-transition: -webkit-transform 150ms cubic-bezier(0.4, 0, 1, 1);
  transition: transform 150ms cubic-bezier(0.4, 0, 1, 1); }

.flip-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  position: relative; }

.flip-icon > * {
  left: 0;
  position: absolute;
  top: -3px;
  -webkit-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); }

.flip-icon svg:last-of-type, .flip-button.active .flip-icon svg:first-of-type {
  opacity: 0;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg); }

.flip-button.active .flip-icon svg:last-of-type {
  opacity: 1;
  visibility: visible;
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg); }


.medium-padding40 {
  padding: 40px 0; }
  @media (max-width: 1024px) {
    .medium-padding40 {
      padding: 45px 0; } }
  @media (max-width: 800px) {
    .medium-padding40 {
      padding: 35px 0; } }
.medium-padding60 {
  padding: 60px 0; }
  @media (max-width: 1024px) {
    .medium-padding60 {
      padding: 45px 0; } }
  @media (max-width: 800px) {
    .medium-padding60 {
      padding: 35px 0; } }
.medium-padding80 {
  padding: 80px 0; }
  @media (max-width: 1024px) {
    .medium-padding80 {
      padding: 45px 0; } }
  @media (max-width: 800px) {
    .medium-padding80 {
      padding: 35px 0; } }

.medium-padding100 {
  padding: 100px 0; }
  @media (max-width: 1024px) {
    .medium-padding100 {
      padding: 50px 0; } }
  @media (max-width: 800px) {
    .medium-padding100 {
      padding: 35px 0; } }

.medium-padding120 {
  padding: 120px 0; }
  @media (max-width: 1024px) {
    .medium-padding120 {
      padding: 50px 0; } }
  @media (max-width: 800px) {
    .medium-padding120 {
      padding: 35px 0; } }

.medium-padding180 {
  padding: 180px 0; }
  @media (max-width: 1024px) {
    .medium-padding180 {
      padding: 60px 0; } }
  @media (max-width: 800px) {
    .medium-padding180 {
      padding: 40px 0; } }

.pb100 {
  padding-bottom: 100px; }
  @media (max-width: 1024px) {
    .pb100 {
      padding-bottom: 50px; } }
  @media (max-width: 800px) {
    .pb100 {
      padding-bottom: 35px; } }

.pt80 {
  padding-top: 80px; }
  @media (max-width: 1024px) {
    .pt80 {
      padding-top: 45px; } }
  @media (max-width: 800px) {
    .pt80 {
      padding-top: 35px; } }

.pt100 {
  padding-top: 100px; }
  @media (max-width: 1024px) {
    .pt100 {
      padding-top: 50px; } }
  @media (max-width: 800px) {
    .pt100 {
      padding-top: 35px; } }

.pb120 {
  padding-bottom: 120px; }
  @media (max-width: 1024px) {
    .pb120 {
      padding-bottom: 50px; } }
  @media (max-width: 800px) {
    .pb120 {
      padding-bottom: 35px; } }

.pt120 {
  padding-top: 120px; }
  @media (max-width: 1024px) {
    .pt120 {
      padding-top: 50px; } }
  @media (max-width: 800px) {
    .pt120 {
      padding-top: 35px; } }

.pb160 {
  padding-bottom: 160px; }
  @media (max-width: 1024px) {
    .pb160 {
      padding-bottom: 60px; } }
  @media (max-width: 800px) {
    .pb160 {
      padding-bottom: 35px; } }

.pt160 {
  padding-top: 160px; }
  @media (max-width: 1024px) {
    .pt160 {
      padding-top: 60px; } }
  @media (max-width: 800px) {
    .pt160 {
      padding-top: 35px; } }

.pb80 {
  padding-bottom: 80px; }
  @media (max-width: 1024px) {
    .pb80 {
      padding-bottom: 45px; } }
  @media (max-width: 800px) {
    .pb80 {
      padding-bottom: 35px; } }

.pb60 {
  padding-bottom: 60px; }
  @media (max-width: 1024px) {
    .pb60 {
      padding-bottom: 40px; } }
  @media (max-width: 800px) {
    .pb60 {
      padding-bottom: 20px; } }

.pt60 {
  padding-top: 60px; }
  @media (max-width: 1024px) {
    .pt60 {
      padding-top: 40px; } }
  @media (max-width: 800px) {
    .pt60 {
      padding-top: 20px; } }

.pb30 {
  padding-bottom: 30px; }

.pt30 {
  padding-top: 30px; }

.mt60 {
  margin-top: 60px; }
  @media (max-width: 800px) {
    .mt60 {
      margin-top: 35px; } }

.mb60 {
  margin-bottom: 60px; }
  @media (max-width: 800px) {
    .mb60 {
      margin-bottom: 35px; } }
[contenteditable=true]:empty:before {
  content: attr(placeholder);
  display: block;
  color: #afb4ce;
}
.mention {
  padding: 0.6rem 0.8rem;
}
.mentions-input-box b {
  font-weight: normal;
  display: initial;
  vertical-align: initial;
}
.mentions-input-box .uau_mention{
  background-color: #e0e3ea;
  border-radius: 2px;
  box-shadow: 0px 0px 0px 1px #e0e3ea;
}
.mentions-input-box {
  position: relative;
  background: #fff;
  border-radius: 4px;
}

.mentions-input-box textarea {
  width: 100%;
  display: block;
  height: 42px;
  padding: 0.6rem 0.8rem;
  font-size: 14px;
  overflow: hidden;
  background: transparent !important;
  position: relative;
  outline: 0;
  resize: none;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}


.mentions-input-box .selectize-dropdown {
  display: none;
  z-index: 10000;
  padding: 0;
  position: absolute;
}

.mentions-input-box .mentions {
  position: absolute;
  left: 1px;
  right: 0;
  top: 1px;
  bottom: 0;
  padding: 0.6rem 0.8rem;
  font-size: 14px;
  color: transparent;
  background: transparent !important;
  overflow: hidden;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.comment-form .mentions-input-box .mentions {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.mentions-input-box .mentions > div {
  color: #fff;
  white-space: pre-wrap;
  width: 100%;
}

.mentions-input-box .mentions > div > span {
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
}

.half-height-bg {
  position: absolute;
  height: 50%;
  left: 0;
  right: 0;
  bottom: 0; }

.withripple {
  position: relative; }

.half-width {
  width: 50%; }

.col-3-width {
  width: 33.33%; }

.col-4-width {
  width: 25%; }

.col-5-width {
  width: 20%; }

.col-5-width .photo-album-item .content {
    padding: 20px 20px 0px;
    text-align: center;
}
.body-bg-white {
  background-color: #ffffff; }

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

.background-contain {
  background-size: contain;
  background-repeat: no-repeat; }

.background-cover {
  background-size: cover; }

@media (max-width: 1200px) {
  .col-4-width {
    width: 33%; } }

@media (max-width: 840px) {
  .col-3-width {
    width: 50%; }
  .col-4-width {
    width: 50%; }
  .half-width {
    width: 100%; } }

@media (max-width: 480px) {
  .col-3-width {
    width: 100%; }
  .col-4-width {
    width: 100%; } }



.product-del{
  color: #888888 !important;
}
.product-del:hover{
  color: #444444 !important;
}

.profile_widget{
  border-radius: 0;
  border: 0;
  margin-bottom: 12px;
  background: none;
}




.profile_widget .ui-block-content{
  padding: 0px;
}
.profile_widget .title{
  padding: 12px 12px 6px 12px;
}

.profile_widget .product-price {
  font-size: 14px;
  margin-bottom: 0;
  margin-right: 0;
}
.profile_widget .product-price span {
  font-size: 11px;
}

.slide-photo-item.in_profile {
  position: relative;
  border-radius: 0;
  width: 20%;
  float: left;
  border: 0;
  padding: 0;
  margin-right: 0;
  margin-bottom: 10px;
  background: none;
  text-align: center;
}

.slide-photo-item.in_profile.influencer {
  width: 33.3333%;
}
.slide-photo-item.in_profile img {
  max-width: 100%;
  width: 100%;
}
.slide-photo-item.in_profile:last-child {
  margin-right: 0;
}
.slide-photo-item.in_profile .text {
  padding: 4px 0px 2px 0px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #444444;
  font-weight: 700;
}

.slide-photo-item.in_profile .full-width:hover .text{
  color: #000000;
}
.swal-icon--error{
    border-color:#de5d5d;
    -webkit-animation:animateErrorIcon .5s;
    animation:animateErrorIcon .5s
}
.swal-icon--error__x-mark{
    position:relative;
    display:block;
    -webkit-animation:animateXMark .5s;
    animation:animateXMark .5s
}
.swal-icon--error__line{
    position:absolute;
    height:5px;
    width:47px;
    background-color:#de5d5d;
    display:block;
    top:37px;
    border-radius:2px
}
.swal-icon--error__line--left{
    -webkit-transform:rotate(45deg);
    transform:rotate(45deg);
    left:17px
}
.swal-icon--error__line--right{
    -webkit-transform:rotate(-45deg);
    transform:rotate(-45deg);
    right:16px
}
@-webkit-keyframes animateErrorIcon{
    0%{
        -webkit-transform:rotateX(100deg);
        transform:rotateX(100deg);
        opacity:0
    }
    to{
        -webkit-transform:rotateX(0deg);
        transform:rotateX(0deg);
        opacity:1
    }
}
@keyframes animateErrorIcon{
    0%{
        -webkit-transform:rotateX(100deg);
        transform:rotateX(100deg);
        opacity:0
    }
    to{
        -webkit-transform:rotateX(0deg);
        transform:rotateX(0deg);
        opacity:1
    }
}
@-webkit-keyframes animateXMark{
    0%{
        -webkit-transform:scale(.4);
        transform:scale(.4);
        margin-top:26px;
        opacity:0
    }
    50%{
        -webkit-transform:scale(.4);
        transform:scale(.4);
        margin-top:26px;
        opacity:0
    }
    80%{
        -webkit-transform:scale(1.15);
        transform:scale(1.15);
        margin-top:-6px
    }
    to{
        -webkit-transform:scale(1);
        transform:scale(1);
        margin-top:0;
        opacity:1
    }
}
@keyframes animateXMark{
    0%{
        -webkit-transform:scale(.4);
        transform:scale(.4);
        margin-top:26px;
        opacity:0
    }
    50%{
        -webkit-transform:scale(.4);
        transform:scale(.4);
        margin-top:26px;
        opacity:0
    }
    80%{
        -webkit-transform:scale(1.15);
        transform:scale(1.15);
        margin-top:-6px
    }
    to{
        -webkit-transform:scale(1);
        transform:scale(1);
        margin-top:0;
        opacity:1
    }
}
.swal-icon--warning{
    border-color:#f8bb86;
    -webkit-animation:pulseWarning .75s infinite alternate;
    animation:pulseWarning .75s infinite alternate
}
.swal-icon--warning__body{
    width:5px;
    height:47px;
    top:10px;
    border-radius:2px;
    margin-left:-2px
}
.swal-icon--warning__body,.swal-icon--warning__dot{
    position:absolute;
    left:50%;
    background-color:#f8bb86;
    -webkit-animation:pulseWarningBG .75s infinite alternate;
    animation:pulseWarningBG .75s infinite alternate
}
.swal-icon--warning__dot{
    width:7px;
    height:7px;
    border-radius:50%;
    margin-left:-3px;
    bottom:-11px
}
@-webkit-keyframes pulseWarning{
    0%{
        border-color:#f8d486
    }
    to{
        border-color:#f8bb86
    }
}
@keyframes pulseWarning{
    0%{
        border-color:#f8d486
    }
    to{
        border-color:#f8bb86
    }
}

@-webkit-keyframes pulseWarningBG{
    0%{
        background-color:#f8d486
    }
    to{
        background-color:#f8bb86
    }
}
@keyframes pulseWarningBG{
    0%{
        background-color:#f8d486
    }
    to{
        background-color:#f8bb86
    }
}
.swal-icon--success{
    border-color:#a5dc86
}
.swal-icon--success:after,.swal-icon--success:before{
    content:"";
    border-radius:50%;
    position:absolute;
    width:60px;
    height:120px;
    background:#fff;
    -webkit-transform:rotate(45deg);
    transform:rotate(45deg)
}
.swal-icon--success:before{
    border-radius:120px 0 0 120px;
    top:-7px;
    left:-33px;
    -webkit-transform:rotate(-45deg);
    transform:rotate(-45deg);
    -webkit-transform-origin:60px 60px;
    transform-origin:60px 60px
}
.swal-icon--success:after{
    border-radius:0 120px 120px 0;
    top:-11px;
    left:30px;
    -webkit-transform:rotate(-45deg);
    transform:rotate(-45deg);
    -webkit-transform-origin:0 60px;
    transform-origin:0 60px;
    -webkit-animation:rotatePlaceholder 4.25s ease-in;
    animation:rotatePlaceholder 4.25s ease-in
}
.swal-icon--success__ring{
    width:80px;
    height:80px;
    border:4px solid hsla(98,55%,69%,.2);
    border-radius:50%;
    box-sizing:content-box;
    position:absolute;
    left:-4px;
    top:-4px;
    z-index:2
}
.swal-icon--success__hide-corners{
    width:5px;
    height:90px;
    background-color:#fff;
    padding:1px;
    position:absolute;
    left:28px;
    top:8px;
    z-index:1;
    -webkit-transform:rotate(-45deg);
    transform:rotate(-45deg)
}
.swal-icon--success__line{
    height:5px;
    background-color:#a5dc86;
    display:block;
    border-radius:2px;
    position:absolute;
    z-index:2
}
.swal-icon--success__line--tip{
    width:25px;
    left:14px;
    top:46px;
    -webkit-transform:rotate(45deg);
    transform:rotate(45deg);
    -webkit-animation:animateSuccessTip .75s;
    animation:animateSuccessTip .75s
}
.swal-icon--success__line--long{
    width:47px;
    right:8px;
    top:38px;
    -webkit-transform:rotate(-45deg);
    transform:rotate(-45deg);
    -webkit-animation:animateSuccessLong .75s;
    animation:animateSuccessLong .75s
}
@-webkit-keyframes rotatePlaceholder{
    0%{
        -webkit-transform:rotate(-45deg);
        transform:rotate(-45deg)
    }
    5%{
        -webkit-transform:rotate(-45deg);
        transform:rotate(-45deg)
    }
    12%{
        -webkit-transform:rotate(-405deg);
        transform:rotate(-405deg)
    }
    to{
        -webkit-transform:rotate(-405deg);
        transform:rotate(-405deg)
    }
}
@keyframes rotatePlaceholder{
    0%{
        -webkit-transform:rotate(-45deg);
        transform:rotate(-45deg)
    }
    5%{
        -webkit-transform:rotate(-45deg);
        transform:rotate(-45deg)
    }
    12%{
        -webkit-transform:rotate(-405deg);
        transform:rotate(-405deg)
    }
    to{
        -webkit-transform:rotate(-405deg);
        transform:rotate(-405deg)
    }
}
@-webkit-keyframes animateSuccessTip{
    0%{
        width:0;
        left:1px;
        top:19px
    }
    54%{
        width:0;
        left:1px;
        top:19px
    }
    70%{
        width:50px;
        left:-8px;
        top:37px
    }
    84%{
        width:17px;
        left:21px;
        top:48px
    }
    to{
        width:25px;
        left:14px;
        top:45px
    }
}
@keyframes animateSuccessTip{
    0%{
        width:0;
        left:1px;
        top:19px
    }
    54%{
        width:0;
        left:1px;
        top:19px
    }
    70%{
        width:50px;
        left:-8px;
        top:37px
    }
    84%{
        width:17px;
        left:21px;
        top:48px
    }
    to{
        width:25px;
        left:14px;
        top:45px
    }
}
@-webkit-keyframes animateSuccessLong{
    0%{
        width:0;
        right:46px;
        top:54px
    }
    65%{
        width:0;
        right:46px;
        top:54px
    }
    84%{
        width:55px;
        right:0;
        top:35px
    }
    to{
        width:47px;
        right:8px;
        top:38px
    }
}
@keyframes animateSuccessLong{
    0%{
        width:0;
        right:46px;
        top:54px
    }
    65%{
        width:0;
        right:46px;
        top:54px
    }
    84%{
        width:55px;
        right:0;
        top:35px
    }
    to{
        width:47px;
        right:8px;
        top:38px
    }
}
.swal-icon--info{
    border-color:#67ace4;
}
.swal-icon--info:before{
    width:5px;
    height:29px;
    bottom:17px;
    border-radius:2px;
    margin-left:-2px
}
.swal-icon--info:after,.swal-icon--info:before{
    content:"";
    position:absolute;
    left:50%;
    background-color:#67ace4;
}
.swal-icon--info:after{
    width:7px;
    height:7px;
    border-radius:50%;
    margin-left:-3px;
    top:19px
}
.swal-icon{
    width:80px;
    height:80px;
    border-width:4px;
    border-style:solid;
    border-radius:50%;
    padding:0;
    position:relative;
    box-sizing:content-box;
    margin:20px auto
}
.swal-icon:first-child{
    margin-top:32px
}
.swal-icon--custom{
    width:auto;
    height:auto;
    max-width:100%;
    border:none;
    border-radius:0
}
.swal-icon img{
    max-width:100%;
    max-height:100%
}
.swal-title{
    color:rgba(0,0,0,.65);
    font-weight:600;
    text-transform:none;
    position:relative;
    display:block;
    padding:13px 16px;
    font-size:22px;
    line-height:normal;
    text-align:center;
    margin-bottom:0
}
.swal-title:first-child{
    margin-top:26px
}
.swal-title:not(:first-child){
    padding-bottom:0
}
.swal-title:not(:last-child){
    margin-bottom:13px
}

.swal-text{
    font-family: 'KoHo-SemiBold', -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: normal;
    color: #888888;
    position:relative;
    float:none;
    line-height:normal;
    vertical-align:top;
    text-align:center;
    display:inline-block;
    margin:0;
    padding:0 10px;
    max-width:calc(100% - 20px);
    overflow-wrap:break-word;
    box-sizing:border-box
}
.swal-text:first-child{
    margin-top:45px
}
.swal-text:last-child{
    margin-bottom:45px
}
.swal-footer{
    text-align:right;
    padding-top:13px;
    margin-top:13px;
    padding:13px 16px;
    border-radius:inherit;
    border-top-left-radius:0;
    border-top-right-radius:0
}
.swal-button-container{
    margin:5px;
    display:inline-block;
    position:relative
}
.swal-button{
    background-color:#83bb64;
    color:#fff;
    border:none;
    box-shadow:none;
    border-radius:6px;
    font-size: 0.812rem;
    padding:10px 24px;
    margin:0;
    cursor:pointer
}
.swal-button[not:disabled]:hover{
    background-color:#78cbf2
}
.swal-button:focus{
    outline:none;
    box-shadow:none;
}
.swal-button[disabled]{
    opacity:.5;
    cursor:default
}
.swal-button::-moz-focus-inner{
    border:0
}
.swal-button--cancel{
    color:#555;
    background-color:#efefef
}
.swal-button--cancel[not:disabled]:hover{
    background-color:#e8e8e8
}

.swal-button--cancel:focus{
    box-shadow:none;
}
.swal-button--danger{
    background-color:#de5d5d
}
.swal-button--danger[not:disabled]:hover{
    background-color:#df4740
}
.swal-button--danger:focus{
    box-shadow:none;
}
.swal-content{
    padding:0 20px;
    margin-top:20px;
    font-size:medium
}
.swal-content:last-child{
    margin-bottom:20px
}
.swal-content__input,.swal-content__textarea{
    -webkit-appearance:none;
    display: block;
    width: 100%;
    background-color: #fff;
    background-image: none;
    background-clip: padding-box;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    color: #444444;
    line-height: inherit;
    font-size: 14px;
    background: #fff;
    outline: none;
    line-height: 1.8;
    padding: 10px 15px;
}
.swal-content__input:focus,.swal-content__textarea:focus{
  outline:none;
  color: #222222;
  background-color: #fff;
  border-color: #c9ced6;
  outline: none;
  box-shadow: 0px 0px 6px rgba(201, 206, 214, 0.4);
}
.swal-content__textarea{
    resize:vertical
}
.swal-button--loading{
    color:transparent
}
.swal-button--loading~.swal-button__loader{
    opacity:1
}
.swal-button__loader{
    position:absolute;
    height:auto;
    width:43px;
    z-index:2;
    left:50%;
    top:50%;
    -webkit-transform:translateX(-50%) translateY(-50%);
    transform:translateX(-50%) translateY(-50%);
    text-align:center;
    pointer-events:none;
    opacity:0
}
.swal-button__loader div{
    display:inline-block;
    float:none;
    vertical-align:baseline;
    width:9px;
    height:9px;
    padding:0;
    border:none;
    margin:2px;
    opacity:.4;
    border-radius:7px;
    background-color:hsla(0,0%,100%,.9);
    transition:background .2s;
    -webkit-animation:swal-loading-anim 1s infinite;
    animation:swal-loading-anim 1s infinite
}
.swal-button__loader div:nth-child(3n+2){
    -webkit-animation-delay:.15s;
    animation-delay:.15s
}
.swal-button__loader div:nth-child(3n+3){
    -webkit-animation-delay:.3s;
    animation-delay:.3s
}
@-webkit-keyframes swal-loading-anim{
    0%{
        opacity:.4
    }
    20%{
        opacity:.4
    }
    50%{
        opacity:1
    }
    to{
        opacity:.4
    }
}
@keyframes swal-loading-anim{
    0%{
        opacity:.4
    }
    20%{
        opacity:.4
    }
    50%{
        opacity:1
    }
    to{
        opacity:.4
    }
}
.swal-overlay{
    position:fixed;
    top:0;
    bottom:0;
    left:0;
    right:0;
    text-align:center;
    font-size:0;
    overflow-y:auto;
    background-color: rgba(0,0,0,.6);
    transition: all .2s ease;
    z-index:10000;
    pointer-events:none;
    opacity:0;
}

.swal-overlay:before{
    content:" ";
    display:inline-block;
    vertical-align:middle;
    height:100%
}
.swal-overlay--show-modal{
    opacity:1;
    pointer-events:auto
}
.swal-overlay--show-modal .swal-modal{
    opacity:1;
    pointer-events:auto;
    box-sizing:border-box;
    will-change:transform
}

.swal-modal{
    width:478px;
    opacity:0;
    pointer-events:none;
    background-color: #fff;
    border: 1px solid #e6e6e6;
    text-align:center;
    border-radius: 4px;
    position:static;
    margin:20px auto;
    display:inline-block;
    vertical-align:middle;
    -webkit-transform:scale(1);
    transform:scale(1);
    -webkit-transform-origin:50% 50%;
    transform-origin:50% 50%;
    z-index:10001;
    transition: all .2s ease;
}
@media (max-width:500px){
    .swal-modal{
        width:calc(100% - 20px)
    }
}


.btn-sm i {
  font-size: 16px;
  vertical-align: text-bottom;
  margin-right: 6px;
}

.video-container {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%;
}
.video-container video, .video-container #ck-video-player {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
