/* =========================================================
   GeilTubeXXX skin — plum / magenta accent (not DeutschPorno red)
   Accent: #9d174d  |  Page: #faf5f7  |  Cards: white + shadow
   ========================================================= */
:root{
  --bb-red:#9d174d;
  --bb-red-hot:#db2777;
  --bb-red-link:#831843;
  --bb-bg:#faf5f7;
  --bb-card:#fff;
  --bb-text:#1f1318;
  --bb-muted:#5c4a52;
  --bb-shadow:0 0 10px rgba(157,23,77,.14);
}
html,body{height:100%;}
body{
  padding-top:0!important;
  background-color:var(--bb-bg)!important;
  color:var(--bb-text);
  font-family:'Roboto',Arial,Helvetica,sans-serif;
  font-weight:300;
  font-size:14.5px;
  -webkit-font-smoothing:subpixel-antialiased;
}
a{color:var(--bb-red-link);}
a:hover{color:var(--bb-red);}

/* ---- Header (white bar, red accents) ---- */
.bb-header{
  position:relative;
  z-index:100;
  background:#fff;
  box-shadow:var(--bb-shadow);
  padding:14px 0;
  margin-bottom:18px;
}
.bb-header__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  position:relative;
}
.bb-header__logo img{
  height:36px;
  width:auto;
  max-width:200px;
  display:block;
}
.bb-brand{
  display:inline-flex;
  align-items:center;
  text-decoration:none!important;
  line-height:1;
  min-height:36px;
}
/* Brand painted via CSS only — not in H1 / schema / title text nodes */
.bb-brand[data-brand]::before{
  content:attr(data-brand);
  font-family:'Roboto',Arial,sans-serif;
  font-weight:700;
  font-size:22px;
  letter-spacing:.02em;
  color:var(--bb-red);
  white-space:nowrap;
}
.bb-brand[data-brand]:hover::before{
  color:var(--bb-red-hot);
}
.bb-brand__text{
  font-family:'Roboto',Arial,sans-serif;
  font-weight:700;
  font-size:22px;
  letter-spacing:.02em;
  color:var(--bb-red);
  white-space:nowrap;
}
.bb-brand:hover .bb-brand__text{
  color:var(--bb-red-hot);
}
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
.bb-header__nav{
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:wrap;
  margin:0;
  padding:0;
  list-style:none;
}
.bb-header__nav a{
  display:block;
  padding:8px 12px;
  color:#333;
  font-weight:400;
  font-size:14px;
  text-decoration:none;
  border-radius:3px;
  transition:background .2s,color .2s;
}
.bb-header__nav a:hover,
.bb-header__nav a.is-active{
  color:#fff;
  background:var(--bb-red);
}
.bb-header__search{
  flex:1 1 220px;
  max-width:380px;
}
.bb-header__search .form-control{
  border:1px solid #ddd;
  border-radius:3px 0 0 3px;
  height:38px;
  box-shadow:none;
}
.bb-header__search .btn{
  background:var(--bb-red);
  border-color:var(--bb-red);
  color:#fff;
  border-radius:0 3px 3px 0;
  height:38px;
  padding:0 16px;
  font-weight:500;
}
.bb-header__search .btn:hover{
  background:var(--bb-red-hot);
  border-color:var(--bb-red-hot);
}
.bb-header__toggle{
  display:none;
  background:transparent;
  border:0;
  width:44px;
  height:44px;
  padding:0;
  color:var(--bb-red);
  font-size:28px;
  line-height:1;
  cursor:pointer;
  z-index:220;
  position:relative;
}
.bb-header__nav-close-row{
  display:none;
}
.bb-header__mobile-search{
  display:none;
  margin-top:12px;
}
@media (max-width:991px){
  .bb-header__toggle{display:inline-flex;align-items:center;justify-content:center;}
  .bb-header__logo{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
  }
  .bb-header__search{display:none;}
  .bb-header__nav{
    display:none;
    position:fixed;
    top:0;left:0;bottom:0;
    width:280px;
    max-width:86vw;
    background:#fff;
    box-shadow:var(--bb-shadow);
    flex-direction:column;
    align-items:stretch;
    padding:0 0 24px;
    z-index:210;
    overflow:auto;
    margin:0;
    list-style:none;
  }
  .bb-header.is-nav-open .bb-header__nav{display:flex;}
  .bb-header__nav-close-row{
    display:flex!important;
    align-items:center;
    justify-content:space-between;
    padding:14px 12px;
    border-bottom:1px solid #eee;
    position:sticky;
    top:0;
    background:#fff;
    z-index:2;
  }
  .bb-header__nav-title{
    font-weight:700;
    font-size:16px;
    color:#222;
  }
  .bb-header__nav-close{
    width:44px;
    height:44px;
    border:0;
    background:transparent;
    color:var(--bb-red);
    font-size:32px;
    line-height:1;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:3px;
  }
  .bb-header__nav-close:hover,
  .bb-header__nav-close:focus{
    background:rgba(176,65,65,.1);
  }
  .bb-header__nav > li:not(.bb-header__nav-close-row) > a{
    padding:14px 16px;
    border-bottom:1px solid #eee;
    display:block;
  }
  .bb-header__mobile-search{display:block;}
  .bb-nav-backdrop{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:200;
    cursor:pointer;
    -webkit-tap-highlight-color:transparent;
  }
  .bb-header.is-nav-open .bb-nav-backdrop{display:block;}
  body.bb-nav-locked{
    overflow:hidden;
    touch-action:none;
  }
}

/* Override old bootstrap fixed navbar leftovers */
.navbar.fixed-top{display:none!important;}

/* ---- Page container ---- */
.container{
  max-width:1280px;
}
.bb-main{
  padding-bottom:28px;
}

/* ---- Section titles (was blue bar .row.h) ---- */
.row.h,
div.h{
  margin:18px 0 14px!important;
  padding:10px 14px!important;
  background:#fff!important;
  color:var(--bb-text)!important;
  border:0!important;
  border-radius:3px!important;
  box-shadow:var(--bb-shadow)!important;
}
.row.h h1,.row.h h2,div.h h1,div.h h2{
  margin:0;
  font-size:20px;
  font-weight:500;
  color:var(--bb-text)!important;
  line-height:1.3;
}
.bg-dark{
  background-color:var(--bb-red)!important;
}

/* ---- Video cards → BigBoss video-unit look ---- */
.portfolio-item{
  margin-bottom:14px;
}
.portfolio-item .card{
  background:var(--bb-card)!important;
  border:0!important;
  border-radius:3px!important;
  overflow:hidden;
  box-shadow:var(--bb-shadow);
  transition:background .25s,color .25s;
  position:relative;
}
.portfolio-item .card > a{
  display:block;
  position:relative;
  overflow:hidden;
  background:#111;
}
.portfolio-item .card-img-top{
  width:100%;
  height:auto;
  max-height:none!important;
  aspect-ratio:16/10;
  object-fit:cover;
  display:block;
  margin:0;
}
.portfolio-item .card-body{
  padding:6px 0 8px!important;
  position:relative;
}
/* Duration badge: classic tube style — bottom-right on thumbnail */
.portfolio-item .card > a .time,
.portfolio-item .time{
  position:absolute!important;
  top:auto!important;
  left:auto!important;
  right:8px!important;
  bottom:8px!important;
  float:none!important;
  margin:0!important;
  height:auto!important;
  max-width:none!important;
  width:auto!important;
  background:rgba(0,0,0,.75)!important;
  color:#fff!important;
  font-size:12px!important;
  font-weight:600!important;
  line-height:1!important;
  padding:4px 7px!important;
  border-radius:3px!important;
  text-transform:none!important;
  z-index:3;
  letter-spacing:.02em;
  pointer-events:none;
}
.portfolio-item .text_on_img{
  background:transparent!important;
  color:var(--bb-text)!important;
  height:auto!important;
  min-height:36px;
  max-height:44px;
  padding:4px 10px 6px!important;
  margin:0!important;
  border-radius:0!important;
  line-height:1.25!important;
  font-size:15px!important;
  overflow:hidden;
}
.portfolio-item .text_on_img .title,
.portfolio-item .text_on_img h1.title,
.portfolio-item .text_on_img h2.title{
  color:var(--bb-text)!important;
  font-size:15px!important;
  font-weight:500!important;
  line-height:1.25!important;
  white-space:normal!important;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  margin:0;
}
/* Keep dark titles on tap — style.css forces white :hover (sticky on mobile) */
.portfolio-item .text_on_img a,
.portfolio-item .text_on_img .title a,
.portfolio-item .text_on_img a:link,
.portfolio-item .text_on_img a:visited,
.portfolio-item .text_on_img a:hover,
.portfolio-item .text_on_img a:focus,
.portfolio-item .text_on_img a:active,
.portfolio-item .text_on_img .title a:hover,
.portfolio-item .text_on_img .title a:focus,
.portfolio-item .text_on_img .title a:active{
  color:var(--bb-text)!important;
  text-decoration:none!important;
}
/* Red hover only on real pointer devices (not sticky mobile tap) */
@media (hover:hover) and (min-width:990px){
  .portfolio-item .card:hover{
    background:var(--bb-red)!important;
    color:#fff!important;
  }
  .portfolio-item .card:hover .text_on_img,
  .portfolio-item .card:hover .text_on_img a,
  .portfolio-item .card:hover .text_on_img a:hover,
  .portfolio-item .card:hover .text_on_img a:focus,
  .portfolio-item .card:hover .text_on_img a:active,
  .portfolio-item .card:hover .title,
  .portfolio-item .card:hover .title a{
    color:#fff!important;
  }
}
@media (max-width:989px){
  .portfolio-item .text_on_img{
    font-size:16px!important;
    min-height:42px;
    max-height:48px;
    padding:6px 10px 8px!important;
  }
  .portfolio-item .text_on_img .title,
  .portfolio-item .text_on_img h1.title,
  .portfolio-item .text_on_img h2.title,
  .portfolio-item .text_on_img a,
  .portfolio-item .text_on_img .title a{
    font-size:16px!important;
    line-height:1.3!important;
    font-weight:500!important;
  }
}

/* ---- Tag cloud ---- */
.tagcloud{
  background:#fff;
  box-shadow:var(--bb-shadow);
  padding:14px 16px;
  border-radius:3px;
  margin-bottom:24px;
}
.tagcloud a{
  color:var(--bb-red-link)!important;
  margin-right:12px;
  line-height:26px;
  text-decoration:underline;
  text-decoration-color:rgba(142,40,40,.35);
  text-underline-offset:2px;
}
.tagcloud a:hover{
  color:var(--bb-red)!important;
  text-decoration-color:currentColor;
}
.tagcloud a.big{font-size:22px;font-weight:500;}
.tagcloud a.medium{font-size:16px;}
.tagcloud a.smoll{font-size:13px;}

/* ---- Pagination ---- */
.pagination .page-link{
  color:#fff!important;
  background:var(--bb-text)!important;
  border-color:#333!important;
}
.pagination .page-item.active .page-link{
  background:var(--bb-red)!important;
  border-color:var(--bb-red)!important;
}
.pagination .page-link:hover{
  background:var(--bb-red-hot)!important;
  border-color:var(--bb-red-hot)!important;
}

/* ---- Buttons ---- */
.btn-primary{
  background-color:var(--bb-red)!important;
  border-color:var(--bb-red)!important;
}
.btn-primary:hover{
  background-color:var(--bb-red-hot)!important;
  border-color:var(--bb-red-hot)!important;
}

/* ---- Video page chrome ---- */
.video-bottom-content{
  background:var(--bb-red)!important;
  border-radius:0 0 3px 3px;
}
.dp-player .plyr{
  --plyr-color-main: #9d174d;
}
.dp-player .plyr--video .plyr__control.plyr__control--overlaid{
  background:var(--bb-red);
}
.dp-player .plyr--video .plyr__control.plyr__control--overlaid:hover{
  background:var(--bb-red-hot);
}

/* ---- Rating bar (modern thumbs up/down) ---- */
.video-bottom-content{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:56px;
  height:auto!important;
  padding:10px 14px!important;
  padding-bottom:10px!important;
}
.video-bottom-content .left{
  flex:1;
  min-width:0;
}
.video-likes.dp-rating,
#ajaxRating{
  display:flex;
  align-items:center;
  gap:14px;
  float:none!important;
}
.dp-rating__actions{
  display:flex;
  align-items:center;
  gap:8px;
  flex-shrink:0;
}
.dp-rating__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  padding:0;
  border:2px solid rgba(255,255,255,.35);
  border-radius:50%;
  background:rgba(255,255,255,.14);
  color:#fff;
  cursor:pointer;
  line-height:1;
  -webkit-appearance:none;
  appearance:none;
  transition:background .15s ease,border-color .15s ease,transform .1s ease;
}
.dp-rating__btn:hover{
  background:rgba(255,255,255,.24);
  border-color:rgba(255,255,255,.65);
}
.dp-rating__btn:active{
  transform:scale(.94);
}
.dp-rating__btn--up.is-active,
.dp-rating__btn--up:focus-visible{
  background:rgba(34,197,94,.4);
  border-color:#4ade80;
}
.dp-rating__btn--down.is-active,
.dp-rating__btn--down:focus-visible{
  background:rgba(239,68,68,.4);
  border-color:#f87171;
}
.dp-rating__btn--up:hover{
  border-color:#4ade80;
}
.dp-rating__btn--down:hover{
  border-color:#f87171;
}
.dp-rating__icon{
  display:block;
  pointer-events:none;
}
.dp-rating__stats{
  color:#fff;
  line-height:1.15;
  float:none!important;
  margin:0!important;
}
.dp-rating__percent{
  display:block;
  font-size:22px;
  font-weight:800;
  font-family:Arial,Helvetica,sans-serif;
}
.dp-rating__count{
  margin:2px 0 0;
  padding:0;
  font-size:11px;
  font-weight:600;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:rgba(255,255,255,.88);
  font-family:Arial,Helvetica,sans-serif;
}
#ajaxRating.is-loading{
  opacity:.75;
  pointer-events:none;
}
.video-bottom-content .left a{
  width:auto!important;
  height:auto!important;
  border-radius:0!important;
  background:transparent!important;
  float:none!important;
  line-height:normal!important;
}

/* ---- Video meta (duration / views) ---- */
.video-bottom-content .right{
  flex-shrink:0;
}
.dp-video-meta{
  display:flex;
  align-items:center;
  gap:18px;
  color:#fff;
}
.dp-video-meta__item{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:14px;
  font-weight:600;
  font-family:Arial,Helvetica,sans-serif;
  white-space:nowrap;
}
.dp-video-meta__icon{
  flex-shrink:0;
  opacity:.9;
}

/* ---- Footer ---- */
.bb-footer,
footer.py-5.bg-dark{
  background:#fff!important;
  color:#444!important;
  box-shadow:var(--bb-shadow);
  margin-top:24px;
  padding:28px 0!important;
}
.bb-footer a,
footer.py-5.bg-dark a,
footer .text-white a{
  color:var(--bb-red-link)!important;
  text-decoration:underline;
  text-decoration-color:rgba(142,40,40,.35);
  text-underline-offset:2px;
}
.bb-footer a:hover,
footer.py-5.bg-dark a:hover{
  color:var(--bb-red)!important;
  text-decoration-color:currentColor;
}
footer .text-white,
.bb-footer p{
  color:var(--bb-muted)!important;
}

/* ---- Misc ---- */
.bottom_btn{
  background-color:var(--bb-red)!important;
  border-color:#831843!important;
}
.morelink{border-top-color:var(--bb-red)!important;color:var(--bb-red)!important;}
@media (max-width:570px){
  .portfolio-item .card a{height:auto!important;}
  .portfolio-item .card-img-top{height:auto!important;min-height:180px;}
}

/* Inline icons — replaces glyphicons.css on critical path */
.dp-ico{
  display:inline-block;
  width:14px;
  height:14px;
  vertical-align:-2px;
  background:currentColor;
  -webkit-mask:no-repeat center/contain;
  mask:no-repeat center/contain;
}
.dp-ico--thumbs-up{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M8.864 1.046a.5.5 0 0 0-.707 0l-1.42 1.42A6.002 6.002 0 0 0 1 8.5v.5a2 2 0 0 0 2 2h1v4.5a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1V11h1a2 2 0 0 0 2-2v-.5a6.002 6.002 0 0 0-3.443-5.034l-1.42-1.42z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M8.864 1.046a.5.5 0 0 0-.707 0l-1.42 1.42A6.002 6.002 0 0 0 1 8.5v.5a2 2 0 0 0 2 2h1v4.5a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1V11h1a2 2 0 0 0 2-2v-.5a6.002 6.002 0 0 0-3.443-5.034l-1.42-1.42z'/%3E%3C/svg%3E");}
.dp-ico--thumbs-down{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M6.956 14.534a.5.5 0 0 1-.707 0l-1.42-1.42A6.002 6.002 0 0 1 1 8.5v-.5a2 2 0 0 1 2-2h1V1.5a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v4.5h1a2 2 0 0 1 2 2v.5a6.002 6.002 0 0 1-3.443 5.034l-1.42 1.42z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M6.956 14.534a.5.5 0 0 1-.707 0l-1.42-1.42A6.002 6.002 0 0 1 1 8.5v-.5a2 2 0 0 1 2-2h1V1.5a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v4.5h1a2 2 0 0 1 2 2v.5a6.002 6.002 0 0 1-3.443 5.034l-1.42 1.42z'/%3E%3C/svg%3E");}
.dp-ico--heart{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M8 2.748l-.717-.737C5.6 1.08 2.755 2.808 2.755 5.987c0 2.042 1.593 4.243 4.465 6.618 1.053.894 2.195 1.674 3.287 2.262.34.198.748.198 1.088 0 1.092-.588 2.234-1.368 3.287-2.262C15.407 10.23 17 8.028 17 5.987 17 2.808 14.157 1.08 11.717 2.01L8 2.748z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M8 2.748l-.717-.737C5.6 1.08 2.755 2.808 2.755 5.987c0 2.042 1.593 4.243 4.465 6.618 1.053.894 2.195 1.674 3.287 2.262.34.198.748.198 1.088 0 1.092-.588 2.234-1.368 3.287-2.262C15.407 10.23 17 8.028 17 5.987 17 2.808 14.157 1.08 11.717 2.01L8 2.748z'/%3E%3C/svg%3E");}
.dp-ico--trash{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M5.5 5.5A.5.5 0 0 1 6 6v6a.5.5 0 0 1-1 0V6a.5.5 0 0 1 .5-.5zm2.5 0a.5.5 0 0 1 .5.5v6a.5.5 0 0 1-1 0V6a.5.5 0 0 1 .5-.5zm3 .5a.5.5 0 0 0-1 0v6a5.5 0 0 0 1 0V6z'/%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M14.5 3a1 1 0 0 1-1 1H13v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V4h-.5a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1H6a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1h3.5a1 1 0 0 1 1 1v1zM4.118 4 4 4.059V13a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4.059L11.882 4H4.118zM2.5 3V2h11v1h-11z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M5.5 5.5A.5.5 0 0 1 6 6v6a.5.5 0 0 1-1 0V6a.5.5 0 0 1 .5-.5zm2.5 0a.5.5 0 0 1 .5.5v6a.5.5 0 0 1-1 0V6a.5.5 0 0 1 .5-.5zm3 .5a.5.5 0 0 0-1 0v6a.5.5 0 0 0 1 0V6z'/%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M14.5 3a1 1 0 0 1-1 1H13v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V4h-.5a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1H6a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1h3.5a1 1 0 0 1 1 1v1zM4.118 4 4 4.059V13a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4.059L11.882 4H4.118zM2.5 3V2h11v1h-11z'/%3E%3C/svg%3E");}
.dp-ico--time{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M8 3.5a.5.5 0 0 0-1 0V9a.5.5 0 0 0 .252.434l3.5 2a.5.5 0 0 0 .496-.868L8 8.71V3.5z'/%3E%3Cpath fill='%23000' d='M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16zm7-8A7 7 0 1 1 1 8a7 7 0 0 1 14 0z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M8 3.5a.5.5 0 0 0-1 0V9a.5.5 0 0 0 .252.434l3.5 2a.5.5 0 0 0 .496-.868L8 8.71V3.5z'/%3E%3Cpath fill='%23000' d='M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16zm7-8A7 7 0 1 1 1 8a7 7 0 0 1 14 0z'/%3E%3C/svg%3E");}
.dp-ico--eye{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M16 8s-3-5.5-8-5.5S0 8 0 8s3 5.5 8 5.5S16 8 16 8zM1.173 8a13.133 13.133 0 0 1 1.66-2.043C4.12 4.668 5.88 3.5 8 3.5c2.12 0 3.879 1.168 5.168 2.457A13.133 13.133 0 0 1 14.828 8c-.058.087-.122.183-.195.288-.335.48-.83 1.12-1.465 1.755C11.879 11.332 10.119 12.5 8 12.5c-2.12 0-3.879-1.168-5.168-2.457A13.134 13.134 0 0 1 1.172 8z'/%3E%3Cpath fill='%23000' d='M8 5.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5zM4.5 8a3.5 3.5 0 1 1 7 0 3.5 3.5 0 0 1-7 0z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M16 8s-3-5.5-8-5.5S0 8 0 8s3 5.5 8 5.5S16 8 16 8zM1.173 8a13.133 13.133 0 0 1 1.66-2.043C4.12 4.668 5.88 3.5 8 3.5c2.12 0 3.879 1.168 5.168 2.457A13.133 13.133 0 0 1 14.828 8c-.058.087-.122.183-.195.288-.335.48-.83 1.12-1.465 1.755C11.879 11.332 10.119 12.5 8 12.5c-2.12 0-3.879-1.168-5.168-2.457A13.134 13.134 0 0 1 1.172 8z'/%3E%3Cpath fill='%23000' d='M8 5.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5zM4.5 8a3.5 3.5 0 1 1 7 0 3.5 3.5 0 0 1-7 0z'/%3E%3C/svg%3E");}
