.card_item, .card_sizer {
  width: 100%;
  max-width: 280px;
}
.card_sizer {
  position: absolute;
}
.card_item {
  box-shadow: -1px 3px 14px rgba(209, 213, 223, 0.4196078431);
  border-radius: 20px;
  overflow: hidden;
  background: white;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 20px;
}
.card_item_cover_image {
  position: relative;
  cursor: pointer;
}
.card_item_cover_image .cover_image_hover {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  top: 0;
  align-items: flex-end;
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(244, 129, 78, 0.64) 0%, rgba(232, 54, 135, 0.64) 100%);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s visibility ease-in-out, 0.3s opacity ease-in-out;
}
.card_item_cover_image .cover_image_hover .cover_play {
  opacity: 0.64;
  width: 70px;
  height: 70px;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.card_item_cover_image .cover_image_hover .cover_play > img {
  width: 100%;
  height: 100%;
}
.card_item_cover_image .cover_image_hover .actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: inherit;
  padding: 10px;
  justify-content: flex-start;
}
.card_item_cover_image .cover_image_hover .actions > span {
  font-size: 1rem;
  color: #333333;
  font-weight: normal;
  word-break: break-word;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  margin-left: 5px;
}
.card_item_cover_image .cover_image_hover .actions .actions-icon {
  width: 25px;
  height: 25px;
}
.card_item_cover_image .cover_image_hover .actions .actions-icon > img {
  width: 100%;
  height: 100%;
}
.card_item_cover_image .cover_image_hover .separator-v.white {
  height: 25px;
  margin: 0 5px;
}
.card_item_cover_image:hover .cover_image_hover {
  opacity: 1;
  visibility: visible;
}
.card_item_cover_image .img_box {
  padding-top: 100%;
}
.card_item_cover_image .img_box img,
.card_item_cover_image .img_box picture {
  width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  height: unset;
}
.card_item_top {
  background-color: #ec94a0;
  width: 100%;
  transition: 0.5s background-color ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 30px;
}
.card_item_top.featured, .card_item_top:hover {
  background-color: #e83687;
}
.card_item_top a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.card_item_top p {
  font-size: 20px;
  font-weight: bold;
  margin-left: 10px;
  padding: 5px 0;
  color: white;
}
.card_item_profile {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 80%;
}
.card_item_profile > img,
.card_item_profile picture {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 12px;
  overflow: hidden;
}
.card_item_profile > img img,
.card_item_profile picture img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card_item_profile_group {
  padding: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.card_item_profile_name {
  display: flex;
  justify-content: start;
  align-items: center;
}
.card_item_profile_name p {
  margin-right: 5px;
  font-size: 14px;
  color: #333333 !important;
  font-weight: bold;
  word-break: break-all;
}
.card_item_profile_name img {
  width: 15px;
  height: 15px;
}
.card_item_love {
  width: 30px;
  height: 30px;
  max-width: 20%;
  border-radius: 50%;
  position: relative;
  background-color: #e1e5ee;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: 0.5s background-color ease-in-out;
}
.card_item_love:hover {
  background-color: #fec4b0;
}
.card_item_love:hover .default {
  opacity: 0;
  z-index: -1;
}
.card_item_love:hover .red {
  opacity: 1;
  z-index: 1;
}
.card_item_love img {
  width: 15px;
  height: auto;
  position: absolute;
  display: flex;
  transition: 0.2s opacity ease;
}
.card_item_love img.red {
  opacity: 0;
  z-index: -1;
}
.card_item_love img.default {
  opacity: 1;
  z-index: 1;
}
.card_item_love.favorite {
  background-color: #fec4b0;
}
.card_item_love.favorite img.red {
  opacity: 1;
  z-index: 1;
}
.card_item_love.favorite img.default {
  opacity: 0;
  z-index: -1;
}
.card_item_info {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.card_item_info > p {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.5;
}
.card_item_info_contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 15px;
}
.card_item_info_contact_wsp {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
}
.card_item_info_contact_wsp img {
  margin-right: 10px;
  display: inline-flex;
}
.card_item_info_contact_wsp a {
  color: #333333;
  font-weight: bold;
  font-size: 16px;
  display: inline-flex;
  word-wrap: break-word;
  padding-right: 5px;
}
.card_item_info_tags {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 0 10px 10px;
  justify-content: flex-start;
  gap: 3px;
}
.card_item_info_tags_item {
  background-color: #95a1bb;
  color: white;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  border-radius: 5px;
  padding: 7px;
  margin: 0;
  max-width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
}
.card_item_info_tags_item:first-child {
  margin-left: 0;
}
.card_item_info_tags_item:last-child {
  margin-right: 0;
}
.card_item_info_tags_item.tag_active {
  background: #e83687;
  color: white;
}
.card_item mark {
  padding: 0 2.5px;
  margin: 0 -2.5px;
  font-weight: 700;
  background: #e83687;
  color: #fff;
}
.card_m .card_item_cover_image {
  width: 100%;
}
.card_m .card_item_cover_image .img_box {
  padding-top: 75% !important;
}
.card_m .card_item_info_contact {
  display: none;
}
.card_premium {
  background: #f7f19d;
}
.card_premium .card_item_info_tags_item.tag_active {
  background: #e83687;
  color: white;
}

p.card_item_info_price {
  color: #333333;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 0;
}

.load_more {
  text-align: center;
}
.load_more .medio {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  margin: 32px 0;
}
.load_more .medio span {
  margin-bottom: 20px;
}
.load_more .medio p {
  font-size: 1.375rem;
  color: #333333;
  font-weight: normal;
  word-break: break-word;
  margin-top: 15px;
}

.announce_yourself {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.announce_yourself .medio {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  margin: 0;
}
.announce_yourself .medio span {
  margin-bottom: 20px;
}
.announce_yourself .medio p {
  font-size: 1.375rem;
  color: #333333;
  font-weight: normal;
  word-break: break-word;
  margin-top: 15px;
}

.cards-line {
  width: 90%;
  max-width: 1280px;
  position: relative;
  margin: 0 auto 1rem;
  border: 1px solid #fec4b0;
}
.cards-line.small {
  width: 100px;
}

#region-cards-content,
#profiles-content,
#cards-content,
#show-vip {
  padding: 0 20px;
  position: relative;
}
#region-cards-content .cards_group,
#profiles-content .cards_group,
#cards-content .cards_group,
#show-vip .cards_group {
  width: 100%;
  position: relative;
  max-width: 1800px;
  flex-flow: column;
}
#region-cards-content .cards_group .cards-line,
#region-cards-content .cards_group p.block_description,
#profiles-content .cards_group .cards-line,
#profiles-content .cards_group p.block_description,
#cards-content .cards_group .cards-line,
#cards-content .cards_group p.block_description,
#show-vip .cards_group .cards-line,
#show-vip .cards_group p.block_description {
  width: calc(90% + 40px);
}
#region-cards-content .cards_group p.block_description,
#profiles-content .cards_group p.block_description,
#cards-content .cards_group p.block_description,
#show-vip .cards_group p.block_description {
  max-width: 1280px;
  position: relative;
  margin: 2rem auto 0.2rem;
  text-align: left;
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  flex-flow: row;
  align-items: flex-start;
  justify-content: flex-start;
}
#region-cards-content .cards_group p.block_description:first-child,
#profiles-content .cards_group p.block_description:first-child,
#cards-content .cards_group p.block_description:first-child,
#show-vip .cards_group p.block_description:first-child {
  margin-top: 0.2rem;
}
#region-cards-content .cards_group p.block_description img,
#profiles-content .cards_group p.block_description img,
#cards-content .cards_group p.block_description img,
#show-vip .cards_group p.block_description img {
  width: 25px;
  height: 25px;
  margin-right: 5px;
}
#region-cards-content .cards_group .columns-fluid,
#profiles-content .cards_group .columns-fluid,
#cards-content .cards_group .columns-fluid,
#show-vip .cards_group .columns-fluid {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

#show-cards-content {
  width: 100%;
  padding: 0;
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}

.msg-no-cards {
  width: 90%;
  overflow: hidden;
  padding: 40px 0;
  max-width: 1640px;
  margin: 0 auto 2rem;
  box-shadow: 0px 10px 30px rgba(209, 213, 223, 0.5019607843);
}
.msg-no-cards h3 {
  text-align: center;
}

@media screen and (min-width: 1441px) {
  .columns-fluid {
    padding: 0px 40px 5px;
    gap: 20px;
  }
}
@media screen and (max-width: 1440px) {
  .columns-fluid {
    padding: 0 40px 5px;
  }
}
@media screen and (max-width: 1024px) {
  .columns-fluid {
    -moz-columns: 1;
         columns: 1;
  }
  .card_item_profile_group,
  .card_item_info,
  .card_item_info_tags {
    padding-right: 15px;
    padding-left: 15px;
  }
  .card_item_cover_image .cover_image_hover {
    bottom: 0;
    right: 0;
    top: unset;
    width: auto;
    opacity: 1;
    height: auto;
    visibility: visible;
    border-radius: 20px 0px 0px 0px;
  }
  .card_item_cover_image .cover_image_hover .cover_play {
    display: none;
  }
  .card_item_cover_image .cover_image_hover .actions {
    padding: 15px 17px 5px 17px;
  }
  .card_item_cover_image .cover_image_hover .actions > span:first-child, .card_item_cover_image .cover_image_hover .actions > span:last-child .comments, .card_item_cover_image .cover_image_hover .actions > .nm {
    display: none;
  }
  .card_item_cover_image .cover_image_hover .actions .separator-v.white:first-child {
    display: none;
  }
  .card_item_cover_image .cover_image_hover .actions .actions-icon {
    width: 25px;
    height: 25px;
  }
  .card_item_cover_image .cover_image_hover .actions > span {
    margin-left: 7px;
  }
  .card_s_mobile .cover_image_hover {
    display: none;
  }
}
@media screen and (max-width: 615px) {
  #show-vip .cards_group .columns-fluid,
  #cards-content .cards_group .columns-fluid {
    padding: 0 0 10px !important;
    width: 100% !important;
  }
  .card_s_mobile .card_item_info_contact {
    display: none;
  }
  .card_s_mobile.card_item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .card_s_mobile .card_item_profile_group,
  .card_s_mobile .card_item_info,
  .card_s_mobile .card_item_info_tags {
    width: calc(100% - 107px);
    padding-right: 14px;
    padding-left: 10px;
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 10px;
  }
  .card_s_mobile .card_item_cover_image {
    position: absolute;
    top: calc(50% + 17px);
    transform: translateY(-50%);
    left: 14px;
  }
  .card_s_mobile .card_item_cover_image img {
    width: 97px;
    height: 120px;
  }
  .card_s_mobile .card_item_profile > img {
    display: none;
  }
  .card_s_mobile.card_premium .card_item_info_tags_item:first-child {
    display: none;
  }
  .card_s_mobile .card_item_profile_name p {
    text-shadow: none;
    color: #333333;
  }
  .card_s_mobile .card_item_info_tags {
    margin-bottom: 15px;
  }
  .card_item,
  .card_sizer {
    width: 100%;
    max-width: unset;
  }
  .card_item {
    margin: 0 auto;
    margin-bottom: 10px;
    position: relative;
    cursor: pointer;
  }
  .card_item_cover_image img {
    width: 100%;
    height: 316px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
  .card_item_profile > img {
    box-shadow: 0 0 0 3px white;
  }
  .card_item_profile_group {
    position: absolute;
    padding: 10px;
  }
  .card_item_info > p {
    line-height: initial;
    font-size: 14px;
  }
  .card_item.card_m {
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    min-height: 150px;
  }
  .card_item.card_m .card_item_profile_group {
    position: relative;
    max-width: calc(100% - 130px);
    padding: 10px 5px 5px 10px;
  }
  .card_item.card_m .card_item_cover_image {
    width: 130px;
    height: 100%;
    position: absolute;
    left: 0;
    border-radius: 5px;
    overflow: hidden;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card_item.card_m .card_item_cover_image .img_box {
    padding-top: 132.222% !important;
  }
  .card_item.card_m .card_item_cover_image .cover_image_hover {
    display: none;
  }
  .card_item.card_m .card_item_info, .card_item.card_m .card_item_info_tags {
    width: 100%;
    max-width: calc(100% - 130px);
  }
  .card_item.card_m .card_item_info {
    padding: 5px !important;
    padding-left: 10px !important;
  }
  .card_item.card_m .card_item_info_tags {
    padding-right: 5px;
    padding-left: 10px;
  }
  .card_item.card_m .card_item_info_tags .card_item_info_tags_item {
    padding: 5px !important;
    font-size: 10px;
    margin: 0;
  }
  .load_more .medio {
    margin-bottom: 40px;
    margin-top: 0;
  }
  .load_more .medio p {
    text-align: center;
    font-size: 18px;
    max-width: 400px;
  }
}
@media screen and (max-width: 400px) {
  .announce_yourself .btn_primary {
    width: 100%;
    padding: 1rem;
  }
}
