/* Global */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #1E1E1E;
  font-size: 16px;
  line-height: 140%;
  font-weight: 400;
}

a {
  color: #85D0F0;
}
a:hover, a:active {
  color: #85D0F0;
}

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

p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
}

ul, ol {
  font-size: 16px;
  line-height: 24px;
  padding-left: 18px;
}

.section-ld {
  padding: 50px 0;
}
.section-ld-hero-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .section-ld-hero-title {
    font-size: 32px;
  }
}
.section-ld-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  margin-bottom: 8px;
}
.section-ld-desc {
  font-size: 20px;
  line-height: 120%;
  margin-bottom: 20px;
}
.section-ld-50 {
  padding: 50px 0;
}
.section-ld-box {
  background: linear-gradient(180deg, #ECE9E6 0%, #FFFFFF 100%);
  padding: 50px 60px;
  border-radius: 32px;
  gap: 20px 0;
}
@media (max-width: 768px) {
  .section-ld-box {
    padding: 30px;
  }
}
.section-ld-ul {
  list-style: none;
  padding-left: 40px;
}
.section-ld-ul li {
  position: relative;
  padding: 8px 0;
}
.section-ld-ul li::before {
  content: "";
  display: block;
  background-image: url(../images/icons/shaun_dating_white_check.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 10px;
  left: -26px;
}
.section-ld-ul-hosting {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 60px;
  padding: 0;
}
.section-ld.section-intro {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #D31027 0%, #EA384D 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  color: #FFFFFF;
  min-height: 400px;
  display: flex;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 150px;
}
.section-ld.section-intro .slick-dots li button {
  line-height: 1;
}
@media (max-width: 768px) {
  .section-ld.section-intro {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.logo img {
  max-height: 62px;
  max-width: 100%;
}

.text-blue {
  color: #85D0F0 !important;
  text-decoration: none !important;
}

/* Button */
.btn-base {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 35px;
  border-radius: 100px;
  outline: none;
  text-decoration: none;
  transition: all 0.15s ease-in-out;
}
.btn-base-icon {
  line-height: 0;
  transition: all 0.15s ease-in-out;
}
.btn-base-icon img {
  width: 16px;
  height: 16px;
}
.btn-base:hover {
  text-decoration: none;
}
.btn-base:hover .btn-base-icon {
  transform: translateX(2px);
}
@media (max-width: 768px) {
  .btn-base {
    padding: 12px 25px;
  }
}

.btn-size-md {
  font-size: 16px;
  line-height: 22px;
  padding: 10px 30px;
}

.btn-size-sm {
  padding: 10px 30px;
  font-size: 12px;
  line-height: 1;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-filled-black {
  background: linear-gradient(90deg, #152331 0%, #000000 100%);
  border: 1px solid #000;
  color: #fff !important;
}

.btn-filled-black:hover, .btn-filled-black:focus, .btn-filled-black:active {
  background: linear-gradient(90deg, #152331 0%, #000000 100%);
  border-color: #3d3d4e;
  color: #fff !important;
}

.btn-filled-blue {
  background-color: #85D0F0;
  border: 1px solid #85D0F0;
  color: #000;
}

.btn-filled-blue:hover, .btn-filled-blue:focus, .btn-filled-blue:active {
  background-color: #66C7F4;
  border-color: #66C7F4;
  color: #000;
}

.btn-filled-white {
  background-color: #fff;
  border: 1px solid #fff;
  color: #000;
}

.btn-filled-white:hover, .btn-filled-white:focus, .btn-filled-white:active {
  background-color: #eee;
  border: 1px solid #eee;
  color: #000;
}

.btn-outlined-black {
  background-color: transparent;
  border: 1px solid #000;
  color: #333333;
}

.btn-outlined-black:hover, .btn-outlined-black:focus, .btn-outlined-black:active {
  background-color: transparent;
  border: 1px solid #000;
  color: #333333;
}

.btn-outlined-white {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.btn-outlined-white:hover, .btn-outlined-white:focus, .btn-outlined-white:active {
  background-color: #fff;
  border: 1px solid #fff;
  color: #000;
}

.btn-group-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.btn-group-wrap .btn-base {
  min-width: 200px;
}
@media (max-width: 768px) {
  .btn-group-wrap .btn-base {
    min-width: 150px;
  }
}
@media (max-width: 768px) {
  .btn-group-wrap {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 18px;
  }
  .section-ld {
    padding: 30px 0;
  }
  .section-ld-title {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 15px;
  }
  .section-ld-desc {
    font-size: 18px;
  }
  .section-ld-sub-title {
    font-size: 22px;
  }
}
.post-item {
  margin-bottom: 20px;
}

.section-loadmore {
  text-align: center;
}

#mini-cart-count {
  position: fixed;
  right: 0;
  top: 190px;
  background-color: #ccc;
  padding: 10px;
  z-index: 100000;
  border-radius: 5px 0 0 5px;
  box-shadow: 0 6px 10px 0 rgba(40, 47, 98, 0.2);
}
#mini-cart-count a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
}
#mini-cart-count a .icon_cart {
  display: inline-block;
  background: url(../images/cart.png) no-repeat center;
  width: 26px;
  height: 22px;
  margin-right: 3px;
}
#mini-cart-count a .amount {
  display: inline-block;
}

.product-detail-section {
  border: 1px solid #E0E0E0;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}
.product-detail-section-header {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.product-detail-section-header-thumb {
  width: 150px;
  flex-shrink: 0;
}
.product-detail-section-header-thumb img {
  max-width: 100%;
  border-radius: 10px;
}
@media (max-width: 375px) {
  .product-detail-section-header-thumb {
    width: 100%;
  }
}
.product-detail-section-header-content {
  width: 100%;
}
.product-detail-section-header-content-name {
  font-size: 21px;
  line-height: 25px;
  margin-bottom: 20px;
}
.product-detail-section-header-content-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.product-detail-section-header-content-middle-price {
  font-size: 38px;
  line-height: 46px;
  color: #EB5757;
}
.product-detail-section-header-content-middle-btn-wrap {
  display: flex;
  gap: 10px;
}
.product-detail-section-header-content .product_meta {
  display: none;
}
@media (max-width: 375px) {
  .product-detail-section-header {
    flex-direction: column;
  }
}

.woocommerce div.product .product-detail-section .woocommerce-tabs ul.tabs {
  padding: 0;
  margin: 0 0 10px 0;
}
.woocommerce div.product .product-detail-section .woocommerce-tabs ul.tabs li {
  border: none;
  padding: 0;
  background-color: transparent;
  margin: 0;
}
.woocommerce div.product .product-detail-section .woocommerce-tabs ul.tabs li::before, .woocommerce div.product .product-detail-section .woocommerce-tabs ul.tabs li::after {
  content: none !important;
}
.woocommerce div.product .product-detail-section .woocommerce-tabs ul.tabs li a {
  padding: 15px 10px;
  font-weight: 400;
}
.woocommerce div.product .product-detail-section .woocommerce-tabs ul.tabs li.active a {
  font-weight: 700;
  line-height: 24px;
  border-bottom: 2px solid #000;
}
.woocommerce div.product .product-detail-section .woocommerce-tabs ul.tabs::before, .woocommerce div.product .product-detail-section .woocommerce-tabs ul.tabs::after {
  content: none !important;
}

.widget-area {
  margin-bottom: 30px;
}
.widget-area-box-wrap {
  border: 1px solid #E0E0E0;
  padding: 20px;
  border-radius: 10px;
  height: 100%;
}
.widget-area-box-wrap .payments-list {
  justify-content: flex-start;
}
.widget-area-box-wrap .payments-list-item img {
  max-height: 45px;
}

#aboutSlider .about-slider-item {
  margin-bottom: 20px;
}
#aboutSlider .about-slider-item .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#aboutSlider .about-slider-item .about-logo {
  margin-bottom: 15px;
}
#aboutSlider .slick-dots {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex !important;
  justify-content: center;
}
#aboutSlider .slick-dots li {
  margin: 0 7.5px;
}
#aboutSlider .slick-dots li button {
  background: transparent;
  padding: 0;
  box-shadow: none;
  width: 16px;
  height: 16px;
}
#aboutSlider .slick-dots li button::before {
  content: "";
  display: block;
  background: #3C3C3C;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  opacity: 1;
}
#aboutSlider .slick-dots li.slick-active button:before {
  background: #00E4D3;
}
#aboutSlider > .about-slider-item + .about-slider-item {
  display: none;
}

.contact-address {
  position: relative;
  padding-left: 36px;
  background-position: 2px 4px;
  background-repeat: no-repeat;
}
.contact-address.vn-address {
  background-image: url(https://moosocial.com/wp-content/themes/mooblogs/img/flag-vn.jpg);
}
.contact-address.en-address {
  background-image: url(https://moosocial.com/wp-content/themes/mooblogs/img/flag-en.jpg);
}

.single-product .section-single-title,
.single-product .section-single-thumbnail {
  display: none;
}

.row-404 {
  background-color: #85D0F0;
  border-radius: 10px;
}

.shadow-box {
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 20px;
  border-radius: 10px;
  font-size: 16px;
  line-height: 24px;
  color: #333;
}

.slicewp-field-wrapper input {
  height: calc(1.5em + 0.75rem + 2px);
}

.slicewp-field-wrapper input,
.slicewp-field-wrapper textarea {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.slicewp-field-wrapper input:focus,
.slicewp-field-wrapper textarea:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.slicewp-field-wrapper input:disabled, .slicewp-field-wrapper input[readonly],
.slicewp-field-wrapper textarea:disabled,
.slicewp-field-wrapper textarea[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

div.bbp-template-notice li, div.bbp-template-notice p {
  font-size: 16px;
}

#bbpress-forums {
  font-size: 16px;
}

.slicewp-button-primary {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: center;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 100px;
  transition: all 0.15s ease-in-out;
}

#bbpress-forums fieldset.bbp-form {
  border-color: #ced4da;
  border-radius: 10px;
}

#bbpress-forums fieldset.bbp-form label {
  margin-bottom: 0.5rem;
}

#bbpress-forums fieldset.bbp-form input[type=password], #bbpress-forums fieldset.bbp-form input[type=text], #bbpress-forums fieldset.bbp-form select {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

#bbpress-forums div.bbp-the-content-wrapper .wp-editor-container {
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

#bbpress-forums div.bbp-the-content-wrapper textarea.bbp-the-content {
  font-family: inherit;
  border-radius: 0.25rem;
  font-size: 1rem;
}

.bbp-submit-wrapper button {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  display: inline-block;
  border-radius: 100px;
  transition: all 0.15s ease-in-out;
  padding: 10px 30px;
  background-color: #000;
  border: 1px solid #000;
  color: #fff !important;
  text-decoration: none !important;
}
.bbp-submit-wrapper button:focus {
  outline: none;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.font-weight-semibold {
  font-weight: 600 !important;
}

.feature-item-box {
  background-color: #F5F5F5;
  color: #303030;
  padding: 36px 48px;
  border-radius: 48px;
  gap: 16px;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.feature-item-box:hover {
  color: #303030;
  text-decoration: none;
}
@media (min-width: 992px) {
  .feature-item-box-image {
    flex: 0 0 515px;
    max-width: 515px;
  }
}
.feature-item-box-content {
  flex: 1;
}
.feature-item-box-content-name {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  margin-bottom: 15px;
}
.feature-item-box-content-desc p {
  margin-bottom: 15px;
}
.feature-item-box-content-desc ul {
  list-style: none;
  padding-left: 34px;
  margin: 0;
}
.feature-item-box-content-desc ul li {
  position: relative;
  padding: 4px 0;
}
.feature-item-box-content-desc ul li::before {
  content: "";
  display: block;
  background-image: url(../images/icons/shaun_dating_green_check.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 6px;
  left: -32px;
}
.feature-item-box:nth-of-type(even) {
  flex-direction: row-reverse;
}
.feature-item-box:last-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .feature-item-box {
    flex-direction: column !important;
  }
}

/* Header */
#header {
  background-color: #000000;
}
#header.headerScrolling {
  top: -100px !important;
}
#header .header-cont {
  height: 100px;
  justify-content: space-between;
  display: flex;
  align-items: center;
}
#header .header-cont .logo {
  color: #fff;
}
#header .header-cont .header-menu-list {
  display: flex;
  align-items: center;
  gap: 10px;
}
#header .header-cont .header-menu-list li.menu-item {
  position: relative;
  display: block;
}
#header .header-cont .header-menu-list li.menu-item a {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
}
#header .header-cont .header-menu-list li.menu-item.current-menu-item > a, #header .header-cont .header-menu-list li.menu-item.current-menu-parent > a, #header .header-cont .header-menu-list li.menu-item:hover > a {
  border-radius: 10px;
  background: linear-gradient(180deg, #D31027 0%, #EA384D 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  color: #fff;
}
#header .header-cont .header-menu-list li.menu-item.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
#header .menu-mobile {
  z-index: 99999999;
  position: fixed;
  background-color: rgba(50, 50, 50, 0.9);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
#header .menu-mobile .mobile-cont {
  display: block;
  width: 320px;
  background-color: #000;
  position: relative;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  z-index: 9999;
  padding: 15px 20px;
  left: -320px;
  transition: all 0.3s ease-in-out;
  overflow: auto;
}
#header .menu-mobile .mobile-cont .header-menu .main-header-menu {
  display: block;
  width: 100%;
  height: inherit;
}
#header .menu-mobile .mobile-cont .header-menu .main-header-menu .header-menu-list {
  flex-direction: column;
  align-items: unset;
}
#header .menu-mobile .mobile-cont .header-menu .main-header-menu .header-menu-list li.menu-item {
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (max-width: 350px) {
  #header .menu-mobile .mobile-cont {
    width: 280px;
  }
}
#header .menu-mobile.show {
  opacity: 1;
  visibility: inherit;
}
#header .menu-mobile.show .mobile-cont {
  left: 0;
}
#header .menu-mobile-btn {
  display: block;
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
}
#header .menu-mobile-btn .line {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  margin-bottom: 6px;
}
#header .menu-mobile .logo {
  display: block;
  margin-bottom: 20px;
}
#header .menu-mobile .btn-close {
  position: absolute;
  right: 20px;
  top: 20px;
  color: black;
  font-size: 30px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#header .menu-mobile .header-menu-list {
  flex-direction: column;
  flex-direction: column;
  align-items: flex-start;
}
#header .header-menu-list .sub-menu li.menu-item.current-menu-item a, #header .header-menu-list .sub-menu li.menu-item:hover a {
  border-radius: 0;
}
@media (min-width: 992px) {
  #header .header-menu-list .sub-menu {
    margin: 0;
    padding: 0;
    position: absolute;
    min-width: 250px;
    top: calc(100% + 10px);
    right: 0;
    background-color: #000;
    box-shadow: 0 4px 6px -1px #eee, 0 2px 4px -2px #eee;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    list-style: none;
  }
  #header .header-menu-list .sub-menu::before {
    content: "";
    position: absolute;
    display: block;
    bottom: 100%;
    width: 100%;
    height: 10px;
  }
}
@media (max-width: 991px) {
  #header .header-menu-list .sub-menu li.menu-item.current-menu-item a, #header .header-menu-list .sub-menu li.menu-item:hover a {
    border-radius: 10px;
  }
}

/* Header Mobile*/
@media (min-width: 992px) {
  #header .menu-mobile-btn {
    display: none;
  }
}
@media (max-width: 991px) {
  #header .main-header-menu-desktop {
    display: none;
  }
  #header .header-menu-list .sub-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 1;
    visibility: visible;
    padding-top: 10px;
  }
}
.header-section-noti {
  background: linear-gradient(90deg, #00F5A0 0%, #00D9F5 100%);
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
  text-align: center;
  color: #000000;
  padding: 10px 15px;
}

.video-header-wrap {
  position: relative;
  padding-bottom: 56.25%;
}
.video-header-wrap iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

/* Footer */
.footer-main {
  background-color: #F2F2F2;
}
.footer-main-container {
  border-bottom: 1px solid #333333;
  padding-bottom: 20px;
}
.footer-main .logo {
  color: #FF473E;
}
.footer-main .col-footer .footer-title {
  margin-bottom: 5px;
  font-weight: 700;
  line-height: 30px;
}
.footer-main .col-footer .menu-sub-menu-footer-container {
  margin-bottom: 5px;
}
.footer-main .col-footer .social-menu-list {
  display: flex;
  gap: 10px;
}
.footer-main .col-footer .social-menu-list-item img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.footer-main .col-footer .contacts-list {
  display: flex;
  gap: 10px;
}
.footer-main .menu-footer-list {
  margin-bottom: 5px;
}
.footer-main .menu-footer-list li a, .footer-main .menu-footer-list li span {
  font-size: 16px;
  line-height: 30px;
  color: #000;
}
.footer-main .sub-menu-footer .container {
  padding-top: 20px;
}
.footer-main .sub-menu-footer-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 5px;
}
.footer-main .sub-menu-footer-list li {
  padding: 0 8px;
  position: relative;
}
.footer-main .sub-menu-footer-list li a {
  font-size: 16px;
  line-height: 30px;
  color: #000;
}
.footer-main .sub-menu-footer-list li:not(:last-child)::after {
  content: ".";
  position: absolute;
  right: -2.5px;
  bottom: 4px;
}

.form-custom .wpcf7 form .wpcf7-response-output {
  margin: 15px 0;
}

.form-custom form span.wpcf7-not-valid-tip {
  bottom: -22px;
  left: 0;
}

.form-custom input, .form-custom select {
  width: 100%;
  height: 50px;
  background: #FFFFFF;
  border: 1px solid #CACDCF;
  padding: 5px 10px;
}

.form-custom textarea {
  border: 1px solid #CACDCF;
  width: 100%;
}

.form-custom input[type=submit] {
  max-width: 125px;
  padding: 12px 35px;
  font-size: 16px;
  line-height: 24px;
  background-color: #FFFFFF;
  border: 1px solid #FF473E;
  color: #FF473E;
  text-align: center;
  display: inline-block;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.form-custom input[type=submit]:hover {
  background-color: #FF473E;
  color: #fff;
}

.form-footer input[type=email] {
  max-width: 250px;
  float: left;
}

.form-footer .your-email {
  float: left;
  margin-right: 10px;
}

.row-footer {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
@media (max-width: 991px) {
  .row-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.build-list {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.build-list-item {
  display: flex;
  gap: 10px 24px;
  padding: 10px;
}
.build-list-item-img {
  flex-shrink: 0;
}
.build-list-item-img img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}
.build-list-item-content-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 4px;
}
@media (max-width: 575px) {
  .build-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.build-image {
  flex: 0.4;
}
@media (max-width: 768px) {
  .build-image {
    display: none;
  }
}

.build-wrap {
  padding-top: 50px;
  padding-bottom: 25px;
  display: flex;
  gap: 10px 24px;
}

.key-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.key-list-item {
  background-color: #F5F5F5;
  padding: 36px;
  border-radius: 16px;
  transition: box-shadow 0.25s;
}
.key-list-item-icon {
  display: flex;
  align-items: flex-end;
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}
.key-list-item-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.key-list-item-name {
  font-weight: 600;
  margin-bottom: 8px;
}
.key-list-item:hover {
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .key-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }
}
@media (max-width: 575px) {
  .key-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 10px;
  }
}

.techstacks-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.techstacks-list-item {
  flex-shrink: 0;
}

.platforms-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}
.platforms-list-item {
  padding: 50px;
  border-radius: 16px;
}
.platforms-list-item--gray {
  grid-column: span 2/span 2;
  background: linear-gradient(180deg, #ECE9E6 0%, #FFFFFF 100%);
}
@media (max-width: 768px) {
  .platforms-list-item--gray {
    grid-column: span 1/span 1;
  }
}
.platforms-list-item--pink {
  background: linear-gradient(180deg, #FFF4F4 0%, #FFFFFF 100%);
}
.platforms-list-item--green {
  background: linear-gradient(180deg, #F0F9E8 0%, #FFFFFF 100%);
}
@media (max-width: 768px) {
  .platforms-list-item {
    padding: 25px;
  }
}
@media (max-width: 768px) {
  .platforms-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 15px;
  }
}

ul.ul-check {
  list-style: none;
  padding-left: 26px;
}
ul.ul-check li {
  position: relative;
  padding: 4px 0;
}
ul.ul-check li::before {
  content: "";
  display: block;
  background-image: url(../images/icons/shaun_dating_check.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 8px;
  left: -26px;
}

.section-try-platform-box {
  background: linear-gradient(180deg, #ECE9E6 0%, #FFFFFF 100%);
  border-radius: 32px;
  padding: 50px;
}
@media (max-width: 768px) {
  .section-try-platform-box-image {
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .section-try-platform-box {
    padding: 30px;
  }
}

.showcases-list {
  gap: 15px 0;
}
.showcases-list-item-thumb {
  margin-bottom: 8px;
  text-align: center;
}
.showcases-list-item-website {
  display: block;
  font-weight: 600;
  text-align: center;
  color: #1E1E1E;
  text-decoration: none;
}
.showcases-list-item-website:hover {
  color: #1E1E1E;
}

.faqs-list-item {
  border-bottom: 1px solid #BDBDBD;
  padding-bottom: 20px;
  margin-bottom: 20px;
  color: #1E1E1E;
}
.faqs-list-item-question {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #1E1E1E;
  font-weight: 600;
}
.faqs-list-item-question:hover {
  color: #000;
  text-decoration: none;
}
.faqs-list-item-answer {
  margin-top: 12px;
}

.section-slider-wrap {
  background: url(../images/home/shaunsocial-macbook-air.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 1.68/1;
}
.section-slider-wrap .slick-dots li {
  width: 10px;
  margin: 0 6px;
}
.section-slider-wrap .slick-dots li button:before {
  width: 10px;
  height: 10px;
  background-color: #D9D9D9;
  opacity: 1;
}
.section-slider-wrap .slick-dots li.slick-active button:before {
  background-color: #000;
}
.section-slider-wrap img.slick-slide {
  aspect-ratio: 1.68/1;
  transform: scale(0.7);
  object-fit: cover;
}

.package-list.row {
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: -10px;
}
.package-list.row .package-item {
  padding: 0 15px;
  display: flex;
  text-align: left;
  margin-bottom: 30px;
}
.package-list.row .package-item .package-item-wrapper {
  background-color: #fff;
  border: 2px solid #D9D9D9;
  color: #1E1E1E;
  border-radius: 20px;
  padding: 24px 24px 90px;
  width: 100%;
  position: relative;
}
.package-list.row .package-item .package-item-wrapper-recommend {
  border-color: #0088FF;
}
.package-list.row .package-item .package-item-wrapper-recommend .package-item-name {
  padding-right: 100px;
}
.package-list.row .package-item .package-item-wrapper .package-item-name {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: bold;
}
.package-list.row .package-item .package-item-wrapper .package-item-name a {
  color: #000;
  text-decoration: none;
}
.package-list.row .package-item .package-item-wrapper .package-item-short-desc {
  margin-bottom: 10px;
}
.package-list.row .package-item .package-item-wrapper .package-item-price {
  display: inline-block;
  font-weight: bold;
  font-size: 56px;
  line-height: 73px;
  margin: 0 5px 0 0;
}
.package-list.row .package-item .package-item-wrapper .price-tag {
  font-size: 16px;
  line-height: 19px;
}
.package-list.row .package-item .package-item-wrapper .package-item-desc {
  margin-top: 20px;
}
.package-list.row .package-item .package-item-wrapper .package-item-desc ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.package-list.row .package-item .package-item-wrapper .package-item-desc ul li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
}
.package-list.row .package-item .package-item-wrapper .package-item-desc ul li::before {
  content: "";
  background-image: url(../images/icons/shaun_dating_check.png);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 2px;
  left: 0;
}
.package-list.row .package-item .package-item-wrapper .package-item-btn-wrap-cus {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
}
.package-list.row .package-item .package-item-wrapper .package-item-btn-wrap-cus .wc-forward {
  display: none;
}
.package-list.row .package-item .package-item-wrapper .package-action {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.package-list.row .package-item .package-item-wrapper .package-action a {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  padding: 8px 10px;
  background-color: transparent;
  border: 1px solid #000;
  color: #000;
  border-radius: 100px;
  text-decoration: none;
}
.package-list.row .package-item .package-item-wrapper .package-action a.active {
  background-color: #000;
  color: #fff;
}
.package-list.row .package-item .package-item-wrapper .package-item-badge {
  background-color: #0088FF;
  color: #fff;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 20px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  padding: 10px;
  position: absolute;
  top: 0;
  right: 0;
}

.multi-channel-support-section {
  background-color: #F4F4F4;
  padding: 70px 50px;
  border-radius: 20px;
}
.multi-channel-support-section-badge {
  background-color: #219653;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  border-radius: 5px;
  padding: 10px;
  display: inline-block;
  margin-bottom: 10px;
}

.payments-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.payments-list-item img {
  max-height: 50px;
}

.cloud-nav-pills {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  gap: 20px;
}
.cloud-nav-pills.nav-pills .nav-link {
  appearance: none;
  font-size: 16px;
  font-weight: 400;
  padding: 11px 40px;
  background-color: transparent;
  border: 1px solid #000;
  color: #000;
  border-radius: 100px;
  min-width: 200px;
  outline: none;
}
.cloud-nav-pills.nav-pills .nav-link.active {
  background-color: #000;
  color: #fff;
}

.form-select-quantity {
  gap: 10px;
}

.product-detail-section-header-content .single_variation {
  margin-bottom: 10px;
}
.product-detail-section-header-content .variations_form {
  margin-bottom: 0 !important;
}

.pricing-benefit-list {
  margin-left: -25px;
  margin-right: -25px;
  margin-bottom: -40px;
}
.pricing-benefit-list-item {
  margin-bottom: 40px;
  padding: 0 25px;
}
.pricing-benefit-list-item-content {
  background-color: #F5F5F5;
  padding: 24px;
  border-radius: 16px;
  height: 100%;
  transition: box-shadow 0.3s;
}
.pricing-benefit-list-item-content-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.pricing-benefit-list-item-content-name {
  font-weight: 700;
}
.pricing-benefit-list-item-content-list {
  list-style: none;
  padding-left: 26px;
}
.pricing-benefit-list-item-content-list li {
  position: relative;
  padding: 8px 0;
}
.pricing-benefit-list-item-content-list li::before {
  content: "";
  display: block;
  background-image: url(../images/icons/shaunsocial-check.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 12px;
  left: -26px;
}
.pricing-benefit-list-item-content:hover {
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .pricing-benefit-list-item {
    padding: 0 10px;
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .pricing-benefit-list {
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: -15px;
  }
}

.section-ld .table-shaun {
  border: 1px solid #D9D9D9;
  border-radius: 16px;
  padding: 24px;
}
.section-ld .table-shaun table thead th {
  background-color: #000000;
  color: #F3F3F3;
  font-weight: 700;
  padding: 14px 10px !important;
}
.section-ld .table-shaun table thead th:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.section-ld .table-shaun table thead th:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.section-ld .table-shaun table tbody tr {
  border-bottom: 1px solid #D9D9D9;
}
.section-ld .table-shaun table tbody tr:last-child {
  border-bottom: none;
}
.section-ld .table-shaun table tbody tr td {
  padding: 14px 10px !important;
}

.package-compare-table {
  overflow-x: auto;
}
.package-compare-table table {
  width: 100%;
  white-space: nowrap;
}
.package-compare-table-header {
  background-color: #F5F5F5;
  color: #303030;
}
.package-compare-table-header th {
  padding: 14px 10px;
  font-weight: 700;
  width: 25%;
}
.package-compare-table-header th:first-child {
  position: sticky;
  left: 0;
  text-align: left;
  min-width: 140px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  background-color: #F5F5F5;
}
.package-compare-table-header th:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.package-compare-table-body-row {
  border-bottom: 1px solid #D9D9D9;
}
.package-compare-table-body td {
  padding: 14px 10px;
}
.package-compare-table-body td:first-child {
  position: sticky;
  left: 0;
  text-align: left;
  min-width: 140px;
  background-color: #fff;
}
.package-compare-table-body-col-icon {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
}
.package-compare-table-body-col-icon-check {
  background-image: url(../images/icons/shaun_dating_green_circle.png);
}
.package-compare-table-body-col-icon-uncheck {
  background-image: url(../images/icons/shaun_dating_red_close.png);
}
@media (max-width: 768px) {
  .package-compare-table {
    font-size: 14px;
  }
}

.demos-list {
  display: flex;
  gap: 10px;
  margin-bottom: 50px;
}
.demos-list-item {
  flex: 1;
}
.demos-list-item-wrap {
  background-color: #fff;
  border: 1px solid #E0E0E0;
  padding: 20px;
  border-radius: 10px;
}

.section-demo {
  position: relative;
}
.section-demo::after {
  content: "";
  background: #85D0F0;
  position: absolute;
  width: 100%;
  height: 38%;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 575px) {
  .section-demo::after {
    height: 25%;
  }
}

.apps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.apps-list-item img {
  max-height: 50px;
  max-width: 100%;
}
@media (max-width: 768px) {
  .apps-list {
    gap: 10px;
  }
}

.feature-tabs.nav-tabs {
  border: none;
  justify-content: center;
  gap: 20px;
}
.feature-tabs.nav-tabs .nav-link {
  background-color: transparent;
  border: 1px solid #000;
  color: #333;
  border-radius: 100px;
  font-size: 16px;
  line-height: 24px;
  padding: 15px 40px;
  text-align: center;
  min-width: 150px;
}
.feature-tabs.nav-tabs .nav-link.active {
  background-color: #000;
  color: #fff;
}
@media (max-width: 768px) {
  .feature-tabs.nav-tabs .nav-link {
    padding: 12px 25px;
    min-width: 130px;
  }
}
@media (max-width: 768px) {
  .feature-tabs.nav-tabs {
    gap: 10px;
  }
}

.feature-tabs-list-item {
  margin: 50px 0;
}
.feature-tabs-list-item-title {
  margin-top: 30px;
  margin-bottom: 10px;
}
.feature-tabs-list-item-desc {
  font-size: 15px;
  line-height: 20px;
  color: #333;
}
@media (max-width: 768px) {
  .feature-tabs-list-item {
    margin-bottom: 30px;
  }
}

.section-ld .header-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.section-ld .woocommerce-MyAccount-navigation {
  width: 250px;
}
.section-ld .woocommerce-MyAccount-navigation .my-account-wrap {
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.section-ld .woocommerce-MyAccount-navigation .my-account-wrap .my-account-nav li {
  margin-bottom: 10px;
}
.section-ld .woocommerce-MyAccount-navigation .my-account-wrap .my-account-nav li a {
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  text-decoration: none;
}
.section-ld .woocommerce-MyAccount-navigation .my-account-wrap .my-account-nav li.is-active a {
  border-bottom: 1px solid #000;
}
.section-ld .woocommerce-MyAccount-navigation .my-account-wrap .my-account-nav .my-account-nav-header {
  margin-bottom: 10px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .section-ld .woocommerce-MyAccount-navigation {
    width: 100%;
  }
}
.section-ld .woocommerce-MyAccount-content {
  width: calc(100% - 270px);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 20px;
  border-radius: 10px;
  font-size: 16px;
  line-height: 24px;
  color: #333;
}
.section-ld .woocommerce-MyAccount-content a {
  color: #333;
  text-decoration: underline;
}
.section-ld .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions .btn-base {
  margin-right: 5px;
}
@media (max-width: 768px) {
  .section-ld .woocommerce-MyAccount-content {
    width: 100%;
  }
}
.section-ld form .form-row label {
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
}
.section-ld form .form-group {
  margin-bottom: 10px;
}
.section-ld table {
  color: #000;
  border-collapse: collapse !important;
  border: none !important;
  margin: 0;
  border-radius: 0;
}
.section-ld table thead th {
  border: none;
  background-color: #F2F2F2;
}
.section-ld table tr:not(.no-border) {
  border-bottom: 1px solid #ccc;
}
.section-ld table td, .section-ld table th {
  padding: 10px !important;
  border-top: none !important;
  font-weight: 400;
}
.section-ld table td a, .section-ld table th a {
  text-decoration: none;
  font-weight: 700;
}
.section-ld .woocommerce-address-fields, .section-ld .woocommerce-billing-fields, .section-ld .woocommerce-additional-fields, .section-ld .woocommerce-shipping-fields {
  display: flex;
  flex-wrap: wrap;
}
.section-ld .woocommerce-address-fields__field-wrapper, .section-ld .woocommerce-billing-fields__field-wrapper, .section-ld .woocommerce-additional-fields__field-wrapper, .section-ld .woocommerce-shipping-fields__field-wrapper {
  width: 100%;
  margin-right: -5px;
  margin-left: -5px;
}
.section-ld .woocommerce-address-fields .form-row, .section-ld .woocommerce-billing-fields .form-row, .section-ld .woocommerce-additional-fields .form-row, .section-ld .woocommerce-shipping-fields .form-row {
  padding: 0 5px !important;
  margin-bottom: 10px;
  width: 100% !important;
}
.section-ld .woocommerce-address-fields .form-row-first, .section-ld .woocommerce-address-fields .form-row-last, .section-ld .woocommerce-billing-fields .form-row-first, .section-ld .woocommerce-billing-fields .form-row-last, .section-ld .woocommerce-additional-fields .form-row-first, .section-ld .woocommerce-additional-fields .form-row-last, .section-ld .woocommerce-shipping-fields .form-row-first, .section-ld .woocommerce-shipping-fields .form-row-last {
  width: 50% !important;
}
.section-ld .woocommerce-address-fields .form-row .woocommerce-input-wrapper, .section-ld .woocommerce-billing-fields .form-row .woocommerce-input-wrapper, .section-ld .woocommerce-additional-fields .form-row .woocommerce-input-wrapper, .section-ld .woocommerce-shipping-fields .form-row .woocommerce-input-wrapper {
  display: block;
  width: 100%;
}
.section-ld .woocommerce-address-fields .form-row .woocommerce-input-wrapper input, .section-ld .woocommerce-billing-fields .form-row .woocommerce-input-wrapper input, .section-ld .woocommerce-additional-fields .form-row .woocommerce-input-wrapper input, .section-ld .woocommerce-shipping-fields .form-row .woocommerce-input-wrapper input {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.section-ld .woocommerce-address-fields .form-row .woocommerce-input-wrapper textarea, .section-ld .woocommerce-billing-fields .form-row .woocommerce-input-wrapper textarea, .section-ld .woocommerce-additional-fields .form-row .woocommerce-input-wrapper textarea, .section-ld .woocommerce-shipping-fields .form-row .woocommerce-input-wrapper textarea {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.section-ld .woocommerce-address-fields .form-row .woocommerce-input-wrapper .select2-container--default, .section-ld .woocommerce-billing-fields .form-row .woocommerce-input-wrapper .select2-container--default, .section-ld .woocommerce-additional-fields .form-row .woocommerce-input-wrapper .select2-container--default, .section-ld .woocommerce-shipping-fields .form-row .woocommerce-input-wrapper .select2-container--default {
  vertical-align: unset;
}
.section-ld .woocommerce-address-fields .form-row .woocommerce-input-wrapper .select2-container--default .select2-selection--single, .section-ld .woocommerce-billing-fields .form-row .woocommerce-input-wrapper .select2-container--default .select2-selection--single, .section-ld .woocommerce-additional-fields .form-row .woocommerce-input-wrapper .select2-container--default .select2-selection--single, .section-ld .woocommerce-shipping-fields .form-row .woocommerce-input-wrapper .select2-container--default .select2-selection--single {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 4px 10px 4px 4px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.section-ld .woocommerce-address-fields .form-row .woocommerce-input-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow, .section-ld .woocommerce-billing-fields .form-row .woocommerce-input-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow, .section-ld .woocommerce-additional-fields .form-row .woocommerce-input-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow, .section-ld .woocommerce-shipping-fields .form-row .woocommerce-input-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 5px;
}
.section-ld .woocommerce-address-fields .screen-reader-text, .section-ld .woocommerce-billing-fields .screen-reader-text, .section-ld .woocommerce-additional-fields .screen-reader-text, .section-ld .woocommerce-shipping-fields .screen-reader-text {
  height: auto;
  position: unset !important;
  width: 100%;
  clip: unset;
  overflow: auto;
  margin: 0 0 5px 0;
  clip-path: unset;
}
@media (max-width: 768px) {
  .section-ld {
    width: 100%;
  }
}

.section-form-page {
  border: 1px solid #E0E0E0;
  padding: 30px;
  border-radius: 10px;
  background-color: #ffffff;
  max-width: 768px;
  margin: auto;
  font-size: 16px;
  color: #000000;
  font-weight: normal;
}
.section-form-page-head {
  font-size: 20px;
  line-height: 26px;
  color: #000000;
  margin-bottom: 10px;
}
.section-form-page-title {
  padding: 10px;
  background-color: #F2F2F2;
}

.cloud-checkout-box {
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 20px;
  border-radius: 10px;
}

.hostings-list {
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: -20px;
}
.hostings-list-item {
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
}
.hostings-list-item-wrap {
  border: 1px solid #D9D9D9;
  color: #1E1E1E;
  font-size: 14px;
  border-radius: 16px;
  position: relative;
}
.hostings-list-item-wrap-badge {
  background-color: #0088FF;
  color: #FFFFFF;
  border-top-right-radius: 14px;
  border-bottom-left-radius: 20px;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  position: absolute;
  top: 0;
  right: 0;
}
.hostings-list-item-wrap-top {
  padding: 25px;
  background-color: #fff;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.hostings-list-item-wrap-top-title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}
.hostings-list-item-wrap-top-price span {
  font-weight: 600;
  color: #0088FF;
}
.hostings-list-item-wrap-top-duration {
  margin-bottom: 8px;
}
.hostings-list-item-wrap-top .btn-base {
  font-size: 14px;
  border-radius: 8px;
  padding-top: 7px;
  padding-bottom: 7px;
}
.hostings-list-item-wrap-body {
  background-color: #F5F5F5;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  padding: 20px 25px;
}
.hostings-list-item-wrap-body-ul {
  list-style: none;
  padding-left: 25px;
}
.hostings-list-item-wrap-body-ul li {
  position: relative;
  padding: 6px 0;
}
.hostings-list-item-wrap-body-ul li::before {
  content: "";
  display: block;
  background-image: url(../images/icons/shaun_dating_blue_check.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 12px;
  left: -26px;
}

.section-screenshot-list {
  display: flex;
  justify-content: center;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.teams-list-item {
  display: flex;
  align-items: center;
  margin-top: 100px;
}
.teams-list-item-avatar {
  width: 200px;
  flex-shrink: 0;
}
.teams-list-item-avatar img {
  max-width: 100%;
  border-radius: 100%;
}
.teams-list-item-body {
  padding: 0 15px 0 50px;
}
.teams-list-item-body-name {
  font-size: 38px;
  line-height: 46px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .teams-list-item-body-name {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 10px;
  }
}
.teams-list-item-body-position {
  font-size: 21px;
  line-height: 25px;
  color: #EB5757;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .teams-list-item-body-position {
    margin-bottom: 10px;
  }
}
.teams-list-item-body-desc {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .teams-list-item-body {
    padding: 10px;
  }
}
@media (max-width: 768px) {
  .teams-list-item {
    flex-direction: column;
    text-align: center;
    margin-top: 30px;
  }
}

.addons-list {
  margin: 0 -10px;
}
.addons-list-item {
  padding: 10px;
}
.addons-list-item-wrapper {
  display: flex;
  padding: 20px;
  border-radius: 10px;
  gap: 20px;
  border: 1px solid #DDDDDD;
  height: 100%;
}
.addons-list-item-wrapper-thumb {
  width: 150px;
  flex-shrink: 0;
}
.addons-list-item-wrapper-thumb img {
  max-width: 100%;
  border-radius: 10px;
}
@media (max-width: 1200px) {
  .addons-list-item-wrapper-thumb {
    width: 150px;
  }
}
.addons-list-item-wrapper-content {
  color: #000;
  width: 100%;
}
.addons-list-item-wrapper-content-name {
  font-size: 21px;
  line-height: 25px;
  color: #000;
  margin-bottom: 20px;
  display: block;
}
.addons-list-item-wrapper-content-name:hover {
  color: #000;
}
.addons-list-item-wrapper-content-desc {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.addons-list-item-wrapper-content-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.addons-list-item-wrapper-content-footer-price {
  font-size: 38px;
  font-weight: 700;
  line-height: 46px;
  color: #EB5757;
}

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