#fix-header {
  height: 70px;
  overflow: hidden;
  max-height: 0;
  display: flex;
  align-items: center;
  position: fixed;
  background: rgb(255, 255, 255);
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.4s;
  z-index: 999;
}

#fix-header .lft {
  font-size: 18px;
  font-weight: 600;
}

#fix-header .rgt {
  color: #212121;
  font-size: 18px;
  font-weight: 900;
}

#fix-header .fix-header-item-1 {
  margin-right: 58px;
}

#fix-header .fix-header-item-2 {
  margin-right: 28px;
}

#fix-header .btn {
  border-radius: 3px;
  height: 40px;
  padding: 0 16px;
  font-size: 18px;
  font-weight: 400;
}

@media (max-width: 1600px) {

  h2,
  .h2 {
    font-size: 36px;
  }

  #tech-spec .item .tit {
    font-size: 18px;
  }

  #tech-spec .item p {
    font-size: 16px;
  }

  #pro-guide {
    padding-top: 120px;
  }

  #fix-header .lft {
    font-size: 16px
  }

  #fix-header {
    height: 60px;

  }

  #fix-header .btn {
    height: 32px;
    padding: 0 12px;
    font-size: 16px;

  }

  #fix-header .lft {
    font-size: 16px
  }

  #fix-header {
    height: 60px;

  }

  #fix-header .btn {
    height: 32px;
    padding: 0 12px;
    font-size: 16px;

  }

  #fix-header .fix-header-item-1 {
    height: 40px
  }
}
main {
  background: #f3fbfe;
}

@media (min-width:1600px) {
 main .container {
    max-width: 1544px;
  }
}

@-webkit-keyframes btn-outline-white-bg-animate {
  0% {
    background: transparent;
  }
  100% {
    background: #fff;
  }
}

@keyframes btn-outline-white-bg-animate {
  0% {
    background: transparent;
  }
  100% {
    background: #fff;
  }
}
@-webkit-keyframes move-in {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes move-in {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@-webkit-keyframes move-out {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(200%);
    transform: translateX(200%);
  }
}
@keyframes move-out {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(200%);
    transform: translateX(200%);
  }
}
@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5);
    opacity: 0;
  }
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
    animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
  }
}
@keyframes zoom-in {
  0% {
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5);
    opacity: 0;
  }
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
    animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
  }
}
.modal-content {
  background-color: #fff !important;
  border-radius: 10px !important;
  border: 6.929px solid #fff !important;
}
.modal-content iframe {
  border-radius: 10px;
}

#review-modal-html {
  background: rgba(0, 0, 0, 0.2);
  overflow: auto;
  padding: 120px 12px 12px;
  z-index: 99;
  display: none;
}
#review-modal-html .review-modal {
  height: 75vh;
  max-width: 750px;
  padding: 32px 0 73px;
  border-radius: 12px;
  border: 2px solid #e3e7f1;
  -webkit-box-shadow: 0 6px 8px 0 rgba(215, 218, 227, 0.25);
  box-shadow: 0 6px 8px 0 rgba(215, 218, 227, 0.25);
}
#review-modal-html .review-modal h3 {
  font-size: 28px;
  line-height: 120%;
}
#review-modal-html .review-modal .sub {
  font-size: 16px;
  font-weight: 600;
}
#review-modal-html .review-modal .btn {
  min-width: 136px;
}
#review-modal-html .review-modal .close-btn {
  right: 16px;
  top: 16px;
}
#review-modal-html .review-modal .review-form {
  margin-top: 28px;
}
#review-modal-html.show {
  display: block;
}
#review-modal-html.show .review-modal {
  -webkit-animation: zoom-in 0.2s 0.2s ease both;
  animation: zoom-in 0.2s 0.2s ease both;
}
#review-modal-html.show .form-box {
  padding-right: 20px;
  padding-left: 20px;
}
#review-modal-html.show .form-box::-webkit-scrollbar {
  width: 10px;
  background: #fff;
}
#review-modal-html.show .form-box::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.19);
  border-radius: 222px;
}
#review-modal-html .submit-box {
  padding: 8px 20px;
  position: absolute;
  width: 100%;
  bottom: 0;
  right: 0;
  border-radius: 0 0 12px;
  border-top: 1px solid #e3e7f1;
}
#review-modal-html .tooltip-text {
  padding: 10px 20px;
  color: #fff;
  position: absolute;
  left: 50%;
  bottom: 100%;
  -webkit-box-shadow: -5px -5px 15px rgba(48, 54, 61, 0.2);
  box-shadow: -5px -5px 15px rgba(48, 54, 61, 0.2);
  background: #222;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-50%, -20px);
  -ms-transform: translate(-50%, -20px);
  transform: translate(-50%, -20px);
  -webkit-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  border-radius: 8px;
  word-break: keep-all;
  white-space: nowrap;
  font-size: 1rem;
  line-height: 1.5;
}
#review-modal-html .tooltip-text::after {
  content: "";
  top: 100%;
  left: 50%;
  border: solid transparent;
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: transparent;
  border-top-color: #222;
  border-width: 10px;
  margin-left: -10px;
}
#review-modal-html .tooltips-list svg {
  color: #d8dfe2;
}
#review-modal-html .tooltips-list.active svg {
  color: #ffcf1b;
}
#review-modal-html .tooltips-list:hover .tooltip-text {
  pointer-events: auto;
  opacity: 1;
  -webkit-transform: translate(-50%, -10px);
  -ms-transform: translate(-50%, -10px);
  transform: translate(-50%, -10px);
  visibility: visible;
}
#review-modal-html .refresh-box {
  width: 30px;
  height: 30px;
  background: #d8dfe2;
  cursor: pointer;
}
@media (min-width: 576px) {

  #review-modal-html .review-modal .btn {
    min-width: 208px;
  }
}
@media (min-width: 768px) {
  #review-modal-html .review-modal {
    height: 85vh;
    padding: 32px 0 90px;
  }
  #review-modal-html .form-box {
    padding-right: 24px;
    padding-left: 24px;
  }
  #review-modal-html .form-box::-webkit-scrollbar {
    width: 10px;
  }
  #review-modal-html .submit-box {
    padding: 16px 24px;
    border-radius: 0 0 24px;
    border-top: 2px solid #e3e7f1;
  }
  #review-modal-html .review-modal h3 {
    font-size: 36px;
  }
  #review-modal-html .review-modal .sub {
    font-size: 18px;
  }
  #review-modal-html .captcha-pic {
    width: 215px;
    height: 50px;
  }
  #review-modal-html .refresh-box {
    width: 50px;
    height: 50px;
  }
}

.swal2-container .swal2-header {
  padding: 2em 1.8em 0;
}

.swal2-container .swal2-title {
  color: #000;
  font-size: 20px;
  margin-bottom: 0;
}

.swal2-container .swal2-styled.swal2-confirm {
  background-color: #6b57ff;
  border-radius: 80px;
  min-width: 160px;
}

.section-1 {
  padding: 60px 0;
  background: url("https://images.tenorshare.com/img-2023/tp-bg.png") #ebf2f6 center/1920px no-repeat;
  background-size: cover;
}
@media (min-width: 1920px) {
  .section-1 {
    background: url("https://images.tenorshare.com/img-2023/tp-bg.png") #ebf2f6 center/100% no-repeat;
  }
}
.section-1 .h2-title {
  margin-bottom: 12px;
  /* max-width: 270px; */
  max-width: 342px;
}
@media (min-width:992px) {
  .section-1 .h2-title {
    margin-bottom: 24px;
    max-width: 1200px;
  }
}
.section-1 .star-box {
  margin-bottom: 29px;
}
.section-1 .star-box .star-text {
  font-size: 24px;
  font-weight: 800;
  line-height: normal;
}
.section-1 .star-list {
  position: relative;
  width: 140px;
  height: 24px;
}
.section-1 .star-list .avgstar,
.section-1 .star-list .userstar {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 140px;
  height: 29px;
}

.section-2 {
  padding: 60px 0;
  background: rgb(243, 251, 254);
}
.section-2 .star-list {
  position: relative;
  width: 140px;
  height: 24px;
}
.section-2 .star-list .avgstar,
.section-2 .star-list .userstar {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 140px;
  height: 29px;
}
.section-2 .tab-box {
  padding: 8px 16px;
  background: #fff;
}
@media (min-width:992px) {
  .section-2 .tab-box {
    padding: 12px 30px;
  }
}
@media (min-width:1600px) {
  .section-2 .tab-box {
    padding: 17px 32px;
  }
}
.section-2 .tab-box .tab-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
}
@media (min-width:992px) {
  .section-2 .tab-box .tab-title {
    font-size: 18px;
    line-height: 150%;
  }
}
@media (min-width:1600px) {
  .section-2 .tab-box .tab-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 130%;
  }
}
.section-2 .tab-content {
  margin-top: 24px;
}
@media (min-width:992px) {
  .section-2 .tab-content {
    margin-top: 40px;
  }
}
@media (min-width:1600px) {
  .section-2 .tab-content {
    margin-top: 60px;
  }
}
.section-2 .tab-content .reviews-title {
  margin-bottom: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(216, 223, 226, 0.8);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
@media (min-width:992px) {
  .section-2 .tab-content .reviews-title {
    font-size: 20px;
    font-weight: 500;
  }
}
@media (min-width:1600px) {
  .section-2 .tab-content .reviews-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 130%;
  }
}
@media (min-width:992px) {
  .section-2 .tab-content .influencer-reviews-box::after {
    content: "";
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
  }
  main{
    min-height: 860px;
  }
}

@media (min-width:1600px) {
  main{
    min-height: 960px;
  }
}
.section-2 .nav-link {
  padding: 0;
}
.section-2 .nav-link.active .tab-box {
  border-radius: 6px;
  color: #fff;
  background: #f50;
}
.section-2 .list {
  margin-top: 24px;
}
.section-2 .list .item {
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(216, 223, 226, 0.8);
}
.section-2 .list .item:last-of-type {
  /* margin-bottom: 0; */
}
.section-2 .list .item .star-text {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.section-2 .list .item .pho {
  max-width: 24px;
}
.section-2 .list .item .review-item-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
}
@media (min-width:1600px) {
  .section-2 .list .item .review-item-title {
    font-size: 20px;
  }
}
.section-2 .list .item .desc {
  color: #6b6b6b;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
@media (min-width:1600px) {
  .section-2 .list .item .desc {
    font-size: 18px;
  }
}
.section-2 .list .item .author {
  color: #212121;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.section-2 .list .item .time {
  color: #9c9c9c;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
}
@media (min-width:992px) {
  .section-2 .list .item .time {
    font-size: 14px;
  }
}
.section-2 .list .item .media-reviews-img {
  width: 85px;
}
@media (min-width:992px) {
  .section-2 .list .item .media-reviews-img {
    width: 120px;
  }
}
@media (min-width:1600px) {
  .section-2 .list .item .media-reviews-img {
    width: 170px;
  }
}
.section-2 .media-reviews-box .list .item .desc {
  margin-bottom: 0;
}
.section-2 .video-box {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(216, 223, 226, 0.8);
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}
@media (min-width:992px) {
  .section-2 .video-box {
    padding-bottom: 32px;
    flex-basis: 32%;
    border-bottom: 0;
  }
}
@media (min-width:1600px) {
  .section-2 .video-box {
    padding-bottom: 40px;
    flex-basis: 30%;
  }
}
.section-2 .video-box .video {
  margin-top: 40px;
  margin-bottom: 12px;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  background: transparent;
}
@media (min-width:992px) {
  .section-2 .video-box .video {
    margin-top: 0;
  }
}
.section-2 .video-box .video img {
  position: absolute;
  border: none;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.section-2 .video-box .video .video-play {
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}
.section-2 .video-box:first-of-type .video {
  margin-top: 16px;
}
@media (min-width:992px) {
  .section-2 .video-box:first-of-type .video {
    margin-top: 0;
  }
}
.section-2 .video-box .video-title {
  font-size: 16px;
  font-weight: 400;
  color: #000;
}
@media (min-width:1600px) {
  .section-2 .video-box .video-title {
    font-size: 20px;
  }
}
.section-2 .video-box .video-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  color: #848484;
}
@media (min-width:992px) {
  .section-2 .product-group {
    position: absolute;
    height: 100%;
    left: 0;
  }
}
@media (min-width:1600px) {
  .section-2 .video-box .video-text {
    font-size: 14px;
  }
}
.section-2 .product-group .product-box {
  margin-top: 80px;
  padding: 40px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 8px;
  z-index: 90;
  -webkit-filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.04));
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.04));
  /* stylelint-disable-next-line no-descending-specificity */
}
@media (min-width:992px) {
  .section-2 .product-group .product-box {
    margin-top: 90px;
    max-width: 258px;
    padding: 28px 28px 24px;
    /* top: 6%;  */
    top: 10%;
  }
}
@media (min-width:1600px) {
  .section-2 .product-group .product-box {
    margin-top: 126px;
    max-width: 316px;
    padding: 40px;
  }
}
.section-2 .product-group .product-box .star-text {
  font-size: 24px;
  font-weight: 800;
  line-height: normal;
}
.section-2 .product-group .product-box .img-box {
  max-width: 64px;
  text-align:center;
}
.section-2 .product-group .product-box .img-box img{
  width:100%;
}
.section-2 .product-group .product-box .download-btn,
.section-2 .product-group .product-box .buy-btn {
  --tilt: 30px;
  overflow: hidden;
  position: relative;
  min-width: 200px;
}
@media (min-width:1600px) {
  .section-2 .product-group .product-box .download-btn,
  .section-2 .product-group .product-box .buy-btn {
    min-width: 222px;
  }
  .section-2 .product-group .product-box .img-box {
    max-width: 80px;
  }
}
.section-2 .product-group .product-box .download-btn :nth-of-type(1),
.section-2 .product-group .product-box .buy-btn :nth-of-type(1) {
  position: relative;
  z-index: 2;
}
.section-2 .product-group .product-box .download-btn::before,
.section-2 .product-group .product-box .buy-btn::before {
  -webkit-animation: move-out 0.3s ease;
  animation: move-out 0.3s ease;
  background: #fff;
  -webkit-clip-path: polygon(0 0, calc(100% - var(--tilt)) 0, 100% 50%, calc(100% - var(--tilt)) 100%, 0 100%);
  clip-path: polygon(0 0, calc(100% - var(--tilt)) 0, 100% 50%, calc(100% - var(--tilt)) 100%, 0 100%);
  content: "";
  height: 100%;
  left: calc(-100% - var(--tilt));
  position: absolute;
  top: 0;
  width: calc(100% + var(--tilt));
  z-index: 1;
}
.section-2 .product-group .product-box .download-btn:hover,
.section-2 .product-group .product-box .buy-btn:hover {
  color: #f50;
}
.section-2 .product-group .product-box .download-btn:hover::before,
.section-2 .product-group .product-box .buy-btn:hover::before {
  -webkit-animation: move-in 0.3s ease forwards;
  animation: move-in 0.3s ease forwards;
}
.section-2 .product-group .product-box .buy-btn {
  /* stylelint-disable-next-line no-descending-specificity */
}
.section-2 .product-group .product-box .buy-btn::before {
  background: #212121;
  top: -1px;
  height: 103%;
}
.section-2 .product-group .product-box .buy-btn:hover {
  color: #fff;
  background-color: #fff;
}
.section-2 .page-turn {
  margin-top: 60px;
}
.section-2 .page-turn .page {
  margin: 0 10px;
  text-decoration: none;
}
.section-2 .page-turn .page.actived {
  padding: 3px 8px;
  border-radius: 50%;
  color: #f3fbfe;
  background: #212121;
}
@media (min-width:992px) {
  .section-2 .tab-group {
    -ms-flex-preferred-size: 68%;
    flex-basis: 68%;
  }
}
@media (min-width:1600px) {
  .section-2 .tab-group {
    -ms-flex-preferred-size: 76%;
    flex-basis: 76%;
  }
}

.modal-popup-video {
  /* stylelint-disable-next-line no-descending-specificity */
}
.modal-popup-video .download-btn,
.modal-popup-video .buy-btn {
  min-width: 200px;
}/*# sourceMappingURL=index.css.map */
.section-2 .video-box .video-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.section-2 .video-box .video-wrap .btn-videp-play {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  z-index: 10;
  width: 50px;
  height: 50px;
}
.section-2 .video-box .video-wrap::after {
  content: "";
  transition: all 0.2s;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgb(33, 33, 33);
  opacity: 0;
  left: 0;
  top: 0;
  z-index: 9;
}
.section-2 .video-box .video-wrap:hover::after {
  opacity: 0.5;
}
.section-2 .video-box .video-wrap .btn-videp-play img {
  display: none;
}
.section-2 .video-box .video-wrap:hover .btn-videp-play .play-icon {
  display: block;
}
.section-2 .video-box .video-wrap .btn-videp-play .btn-videp-play-circle {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.section-2 .video-box .video-wrap .btn-videp-play .btn-videp-play-circle svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.section-2 .video-box .video-wrap .btn-videp-play .btn-videp-play-circle .circle-in {
  opacity: 0;
  fill: none;
  stroke: rgba(33, 33, 33, 0.16);
  stroke-width: 5px;
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
}
.section-2 .video-box .video-wrap:hover .circle-in {
  opacity: 1;
}
.section-2 .video-box .video-wrap .btn-videp-play .btn-videp-play-circle .circle-out {
  --circle-len: 314.16px;
  fill: none;
  stroke: rgb(255, 255, 255);
  stroke-width: 5px;
  stroke-dasharray: var(--circle-len);
  stroke-dashoffset: var(--circle-len);
}
@keyframes draw {
  to {
    stroke-dashoffset: 0px;
  }
}
.section-2 .video-box .video-wrap:hover .circle-out {
  animation: draw 2s linear infinite;
}
.section-2 .product-group .product-box .product-text{
  color: #212121;
  font-weight:600
}
@media(min-width: 992px){
  .section-2 .product-group .product-box .btn.btn-xl{
    height: 52px;
  }
  .section-2 .tab-group {
    flex-basis: 72.3%;
  }
  .section-2 .video-title {
    overflow:hidden;
    text-overflow:ellipsis;

    display:-webkit-box;

    -webkit-box-orient:vertical;

    -webkit-line-clamp:2;
  }
}
@media(min-width: 1600px){
  .section-2 .product-group .product-box .btn.btn-xl{
    height: 60px;
  }
  .section-2 .tab-group {
    flex-basis: 76%;
  }
}
@media(max-width: 991px){
  .section-1 .h2-title {
    font-size: 32px;
  }
}

/*# sourceMappingURL=how-to.css.map */
.tooltip {
  margin-left: -24px !important;
}
.tooltip .tooltip-arrow::before {
  content: none !important;
}
.tooltip .tooltip-inner {
  background-color: #212121;
  padding: 0.25rem 1.5rem 0.25rem 0.5rem;
}
.tooltip .language-list a {
  color: #a2a7a9;
}
.tooltip .language-list a:hover {
  color: #fff;
}

/* pagination */
[data-toggle="pagination"] {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 0;
}
[data-toggle="pagination"] li {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  margin: 0 4px;
  list-style-type: none;
}
[data-toggle="pagination"] li:hover {
  color: #f50;
}
[data-toggle="pagination"] li.active {
  background: #212121;
  color: #f3fbfe;
  border-radius: 50%;
}
[data-toggle="pagination"] li.prev,
[data-toggle="pagination"] li.next {
  line-height: 38px;
  margin: 0 16px;
  border: 1px solid #000;
  height: 40px;
  border-radius: 8px;
  padding: 0 24px;
  width: auto;
}
[data-toggle="pagination"] li.prev:hover,
[data-toggle="pagination"] li.next:hover {
  color: #fff;
  background: #212121;
  border: 1px solid #f3fbfe;
}
