html,
body{
  height:100%;
}

body{
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

.tplsingle{
  flex:1 0 auto;
  background:#fff;
}

.site-footer{
  margin-top:auto;
}

.header{
  box-shadow:
    0 1px 0 rgba(0,0,0,0.025),
    0 3px 10px rgba(0,0,0,0.03);
}

.tplsingle__inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.tplsingle__top{
  padding: 25px 0 14px;
}

.tplsingle__crumbs{
  font-size: 12px;
  color: rgba(0,0,0,.45);
  display:flex;
  gap:8px;
  align-items:center;
  margin:0 0 10px;
}

.tplsingle__crumbs a{
  color:inherit;
  text-decoration:none;
  transition: color .25s var(--ease);
}

.tplsingle__crumbs a:hover{
  color: rgba(139,30,63,.72);
}

.tplsingle__h1{
  margin:0;
  font-size:18px;
  line-height:1.4;
  font-weight:600;
  color: rgba(0,0,0,.86);
}

.tplsingle__hero{
  padding: 8px 0 60px;
}

.tplsingle__layout{
  display:grid;
  grid-template-columns: 2.55fr 1fr;
  gap: 34px;
  align-items:stretch;
}

.tplsingle__visual{
  height:100%;
}

.tplsingle__preview{
  display:block;
  position:relative;
  height:100%;
  min-height:100%;
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  transition:
    transform .35s var(--ease),
    box-shadow .35s var(--ease);
}

.tplsingle__preview img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1);
  transition: transform .7s var(--ease), filter .35s var(--ease);
}

.tplsingle__preview::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0);
  transition: background .35s var(--ease);
  z-index:1;
  pointer-events:none;
}

.tplsingle__preview::after{
  content:"Live Demo";
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%, calc(-50% + 10px));
  padding: 10px 18px;
  background:#fff;
  color:#111;
  font-size:13px;
  font-weight:600;
  opacity:0;
  transition:
    opacity .35s var(--ease),
    transform .35s var(--ease);
  z-index:2;
  pointer-events:none;
}

@media (any-hover:hover){
  .tplsingle__preview:hover{
    transform: translateY(-2px);
  }

  .tplsingle__preview:hover img{
    transform: scale(1.035);
  }

  .tplsingle__preview:hover::before{
    background: rgba(0,0,0,.18);
  }

  .tplsingle__preview:hover::after{
    opacity:1;
    transform: translate(-50%, -50%);
  }
}

@media (any-hover:none){
  .tplsingle__preview::before{
    background: rgba(0,0,0,0);
  }

  .tplsingle__preview::after{
    opacity:0;
    transform: translate(-50%, calc(-50% + 10px));
  }
}

.tplsingle__sidebar{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.tplsingle__box{
  background:var(--left-bg);
  padding:18px 18px 20px;
}

.tplsingle__pricebox{
  padding-top:16px;
}

.tplsingle__priceRow + .tplsingle__priceRow{
  margin-top:14px;
}

.tplsingle__num{
  font-size:22px;
  line-height:1;
  font-weight:500;
  color:rgba(0,0,0,.86);
  margin-bottom:4px;
  text-align:right;
}

.tplsingle__price{
  font-size:32px;
  line-height:1;
  font-weight:500;
  color:rgba(0,0,0,.86);
  margin-bottom:4px;
}

.tplsingle__priceLabel{
  font-size:13px;
  line-height:1.45;
  color:rgba(0,0,0,.72);
}

.tplsingle__priceActions{
  display:flex;
  gap:22px;
  align-items:center;
  margin-top:22px;
}

.tplsingle__boxTitle{
  margin:0 0 14px;
  font-size:14px;
  line-height:1.4;
  font-weight:600;
  color:rgba(0,0,0,.84);
}

.tplsingle__list{
  margin:0;
  padding:0 0 0 10px;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:7px;
}

.tplsingle__list li{
  font-size:13px;
  line-height:1.5;
  color:rgba(0,0,0,.72);
}

.tplsingle__tabsSec{
  padding: 0 0 60px;
}

.tpltabs__nav{
  display:flex;
  gap:44px;
  align-items:center;
  border-bottom: 1px solid rgba(0,0,0,.08);
  margin-bottom:28px;
  overflow:auto;
}

.tpltabs__btn{
  position:relative;
  border:0;
  background:transparent;
  padding:0 0 14px;
  font-size:15px;
  line-height:1.4;
  font-weight:500;
  color:rgba(0,0,0,.7);
  cursor:pointer;
  white-space:nowrap;
  transition: color .25s var(--ease);
}

.tpltabs__btn::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:2px;
  background:#8B1E3F;
  transform:scaleX(0);
  transform-origin:left center;
  transition: transform .3s var(--ease);
}

.tpltabs__btn:hover{
  color:rgba(0,0,0,.86);
}

.tpltabs__btn.is-active{
  color:rgba(0,0,0,.88);
}

.tpltabs__btn.is-active::after{
  transform:scaleX(1);
}

.tpltabs__panels{
  position:relative;
}

.tpltabs__panel{
  color:rgba(0,0,0,.72);
  font-size:15px;
  line-height:1.7;
  opacity:0;
  transform:translateY(8px);
  transition: opacity .28s var(--ease), transform .28s var(--ease);
  display:none;
}

.tpltabs__panel.is-active{
  display:block;
  opacity:1;
  transform:translateY(0);
}

.tpltabs__title{
  margin:0 0 18px;
  font-size:22px;
  font-weight:500;
  line-height:1.35;
  color:var(--text);
}

.tpltabs__sub{
  margin:26px 0 12px;
  font-size:18px;
  font-weight:500;
  line-height:1.35;
  color:var(--text);
}

.tpltabs__panel p{
  margin:0 0 10px;
  color:var(--muted);
  line-height:1.58;
  font-size:15px;
}

.tpltabs__panel strong{
  font-weight:600;
}

.tpltabs__pageList{
  margin: 0 0 18px 20px;
  padding:0;
  columns:2;
  column-gap:40px;
}

.tpltabs__pageList li{
  margin: 0 0 8px;
  break-inside:avoid;
  color:var(--muted);
  line-height:1.55;
  font-size:15px;
}

.tplsteps{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.tplsteps__item{
  display:grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap:18px;
  align-items:start;
}

.tplsteps__num{
  font-size:40px;
  line-height:1;
  font-weight:700;
  color:rgba(0,0,0,.16);
}

.tplsteps__content h3{
  margin:0 0 6px;
  font-size:16px;
  line-height:1.4;
  font-weight:600;
  color:rgba(0,0,0,.84);
}

.tplsteps__content p{
  margin:0;
}

.tplsingle__faq{
  padding: 0 0 70px;
}

.tplsingle__faq .tplseo__faq{
  margin-top:0;
}

.tplrelated{
  padding: 0 0 120px;
}

.tplrelated__title{
  margin:0 0 26px;
  font-size:22px;
  line-height:1.35;
  font-weight:500;
  color:var(--text);
}

.tplrelated__grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:26px;
}

.tplrelated .tplitem{
  opacity:1;
  transform:none;
}

.tplrelated .tplitem__ph{
  height:335px;
}

.tplrelated .tplitem__overlay{
  background: rgba(0,0,0,0);
}

.tplrelated .tplitem__demo{
  opacity: 0;
  transform: translateY(10px);
}

@media (any-hover:hover){
  .tplitem__btn:hover span{
    transform: translateY(-100%);
  }

  .tplitem__btn:hover::after{
    top: 0;
  }

  .tplrelated .tplitem__card:hover{
    transform: translateY(-3px);
    box-shadow: 0 0 0 1px rgba(0,0,0,.10), 0 14px 40px rgba(0,0,0,.08);
  }

  .tplrelated .tplitem__card:hover .tplitem__ph img{
    transform: scale(1.05);
  }

  .tplrelated .tplitem__card:hover .tplitem__overlay{
    background: rgba(0,0,0,.25);
  }

  .tplrelated .tplitem__card:hover .tplitem__demo{
    transform: translateY(0);
    opacity: 1;
  }
}

@media (any-hover:none){
  .tplrelated .tplitem__overlay{
    background: rgba(0,0,0,0) !important;
  }

  .tplrelated .tplitem__demo{
    opacity: 0 !important;
    transform: translateY(10px) !important;
  }
}

@media (max-width: 1200px){
  .tplsingle__layout{
    grid-template-columns: 1.35fr 1fr;
    gap:26px;
  }

  .tplrelated__grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px){
  .tplsingle__hero{
    padding: 8px 0 40px;
  }

  .tplsingle__layout{
    grid-template-columns: 1fr;
    gap:24px;
  }

  .tplsingle__sidebar{
    gap:14px;
  }

  .tplsingle__price{
    font-size:28px;
  }

  .tpltabs__title,
  .tplrelated__title,
  .tplseo__faq h4{
    font-size:18px;
  }

  .tpltabs__sub{
    font-size:16px;
  }

  .tpltabs__pageList{
    columns:1;
  }

  .tplrelated{
    padding:0 0 60px;
  }

  .tplrelated__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tplrelated .tplitem__ph{
    height:280px;
  }
}

@media (max-width: 599px){
  .tplsingle__top{
    padding:22px 0 12px;
  }

  .tplsingle__h1{
    font-size:17px;
  }

  .tplsingle__box{
    padding:16px;
  }

  .tplsingle__priceActions{
    gap:18px;
    flex-wrap:wrap;
  }

  .tpltabs__nav{
    gap:22px;
    margin-bottom:22px;
  }

  .tpltabs__btn{
    font-size:13px;
    padding-bottom:12px;
  }

  .tpltabs__panel p,
  .tpltabs__pageList li{
    font-size:14px;
  }

  .tplsteps__item{
    grid-template-columns: 46px minmax(0, 1fr);
    gap:14px;
  }

  .tplsteps__num{
    font-size:30px;
  }

  .tplrelated__grid{
    grid-template-columns: 1fr;
  }
}