@charset "UTF-8";
:root.light {
  --prim-blue:#0071f0;
  --blue:#0091ea;
  --tr-prim-blue:#00b0ff;
  --tr-blue:#ecf5fe;
  --tr-grey:#f7f7f7;
  --mid-grey:#eee;
  --grey:#808080;
  --text-prim:#333;
  --text-second:#4d4d4f;
  --text-hint:#6f6f6f;
  --bg:#fbfbfb;
  --border-color:#95959536;
  --footer-bg:#f6f6f6;
  --header-bg:#ffffffb3;
  --title-color:#424953;
  --header-button-bg:#444;
  --header-color:#65676b;
  --header-bg:#fcfdff;
  --bg-blue:#ebf4ff;
}
:root.dark {
  --prim-blue:#3394ff;
  --blue:#00b0ff;
  --tr-prim-blue:#00b0ff;
  --tr-blue:#2d343d;
  --tr-grey:#242629;
  --mid-grey:#444547;
  --grey:#a9a9a9;
  --text-prim:#e0e0e0;
  --text-second:#ddd;
  --text-hint:#a7a7a7;
  --bg:#212121;
  --border-color:#95959536;
  --footer-bg:#363638;
  --header-bg:#030303a6;
  --title-color:#e6e6e6;
  --header-button-bg:#2c2d2e;
  --header-color:#bfbfbf;
  --header-bg:#232323;
  --bg-blue:#102540;
}
html,
body {
  margin:0;
  width:100%;
  min-height:100%;
  height:100%;
  direction:rtl;
  font-family: "CustomFont";
  color:var(--text-prim);
  -ms-text-size-adjust:100%;
  -webkit-text-size-adjust:100%;
  -webkit-tap-highlight-color:rgba(0,0,0,0);
  scroll-behavior:smooth;
  background:var(--bg);
}
body.font-loaded,
body.font-loaded h1,
body.font-loaded h2,
body.font-loaded h3,
body.font-loaded p {
    font-family: "CustomFont";
}
*,
:after,
:before {
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}
::-webkit-scrollbar {
  height:4px;
}
::-webkit-scrollbar-track {
  background:var(--bg);
}
::-webkit-scrollbar-thumb {
  background:var(--text-hint);
  border:3px solid var(--bg);
  border-radius:10px;
}
a,
a:hover,
a:focus,
a:active {
  text-decoration:none;
  cursor:pointer;
  color:var(--blue);
}
img {
  max-width:100%;
  height:auto;
}
.download-btn-local {
    display: inline-block;
    margin-top: 35px;
    padding: 0.5rem 0 0.5rem 0;
    width: 70%;
    font-size: 13px;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.6);
    animation: glow 1.5s infinite alternate ease-in-out;
}
.btn {
  cursor:pointer;
  border:0;
  outline:0;
  min-width:max-content;
}
.btn-download {
  background-color:var(--prim-blue);
  box-shadow:0 3px 1px -2px rgba(0,0,0,.2);
  height:43px;
  border-radius:10px;
  font-weight:bold;
  padding:9px 30px;
  margin:0 0 5px;
  font-size:18px;
  color:#ffffff!important;
  float:left;
  text-align:center;
  white-space:nowrap;
  max-width:100%;
  width:100%;
  font-family: "CustomFont";
  border:0;
}
.btn-download-intro {
  color:#fff!important;
  font-family: "CustomFont";
  font-weight:bold;
  font-size:20px;
  background-color:var(--prim-blue);
  width:270px;
  height:60px;
  border-radius:50px;
  cursor:pointer;
  display:block;
  margin:35px auto 20px;
}
.btn-download-intro:hover {
  background-color:#006de0;
}
@media(max-width:991px) {
  .btn-download-intro {
    font-size:19px;
    width:270px;
    height:50px;
    margin:30px auto 15px;
  }
}
.btn-download-intro span {
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
}
.btn-download-intro i {
  font-size:24px;
  margin-left:5px;
  -webkit-animation:bounce 2s infinite 2s;
  animation:bounce 2s infinite 2s;
}
.btn-solid-sm {
  display:inline-block;
  color:#fff!important;
  text-decoration:none;
  transition:all .2s;
  background-color:var(--prim-blue);
  margin:0 5px;
  padding:5px 20px;
  font-size:15px;
  border-radius:12px;
  font-family: "CustomFont";
  line-height:30px;
}
.btn-download-header {
    font-family: "CustomFont";
  font-weight:700;
  text-decoration:none;
  border-radius:25px;
  font-size:13px;
  display:flex;
  color:#c20000!important;
  transition:all .2s;
  min-width:max-content;
  border:0;
  background-color:var(--prim-blue);
  cursor:pointer;
  height:40px;
  width:120px;
  justify-content:center;
  align-items:center;
}
.btn-download-header:hover {
  background-color:#006de0;
}
@media(max-width:359) {
  .btn-download-header {
    padding:0 10px;
    font-size:12px;
  }
}
.btn-download-header i {
  font-size:18px;
  margin-left:5px;
}
.btn-solid-lg {
  color:#fff!important;
  border:0;
  background-color:var(--prim-blue);
  cursor:pointer;
  width:110px;
  font-size:14px;
  height:33px;
  border-radius:12px;
  line-height:32px;
  margin:0;
  padding:0;
  display:inline-block;
  text-align:center;
}
body.font-loaded .btn,
body.font-loaded .btn-solid-lg,
body.font-loaded .btn-download,
body.font-loaded .btn-download-header,
body.font-loaded .btn-download-intro {
    font-family: "CustomFont";
}
.btn-solid-lg span {
  display:inline-block;
}
.btn-all-apps {
  padding:0 10px 0 20px;
  min-width:0;
  font-size:15px;
  font-weight:400;
  line-height:2;
  color:var(--blue);
  float:left;
  position:relative;
}
.btn-all-apps:after {
  content:"›";
  font-size:27px;
  display:inline-block;
  position:absolute;
  left:0;
  top:50%;
  width:14px;
  height:14px;
  margin-top:-6px;
  line-height:14px;
  font-weight:bold;
}
.btn-all-apps:hover {
  background-color:rgba(201,240,255,.4196078431);
}
.more-app {
  text-align:center;
  display:flex;
  justify-content:center;
  margin-bottom:30px;
  margin-top:10px;
}
.btn-show-more {
  font-family: "CustomFont";
  font-weight:400;
  white-space:nowrap;
  vertical-align:middle;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
  border:1px solid transparent;
  -webkit-transition:all .2s ease-in-out;
  -o-transition:all .2s ease-in-out;
  transition:all .2s ease-in-out;
  min-width:64px;
  line-height:36px;
  padding:0 16px;
  border-radius:4px;
  background-color:var(--prim-blue);
  color:#fff;
  font-size:14px;
  text-align:center;
  cursor:pointer;
  border-radius:12px;
  min-width:100px;
}
.expand-btn {
  cursor:pointer;
  color:var(--blue);
  text-align:center;
  font-weight:bold;
  margin:10px auto 20px;
  position:relative;
  display:inline-block;
  padding-left:20px;
}
.expand-btn:after {
  content:"›";
  font-size:27px;
  display:inline-block;
  position:absolute;
  left:0;
  top:50%;
  width:14px;
  height:14px;
  margin-top:-6px;
  line-height:14px;
  font-weight:bold;
  transform:rotate(-90deg);
  -webkit-transform:rotate(-90deg);
  -moz-transform:rotate(-90deg);
  -ms-transform:rotate(-90deg);
  -o-transform:rotate(-90deg);
}
.expand-btn.expanded:after {
  transform:rotate(90deg);
  -webkit-transform:rotate(90deg);
  -moz-transform:rotate(90deg);
  -ms-transform:rotate(90deg);
  -o-transform:rotate(90deg);
}

@font-face {
    font-family: "CustomFont";
    src: url("font/IRANSansWeb.woff2"), format("woff2");
}

[class^=myket-icon-],
[class*=" myket-icon-"] {
    font-family: "CustomFont" !important;
    /* speak:never; */
    font-style:normal;
    font-weight:normal;
    font-variant:normal;
    text-transform:none;
    line-height:1;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}
.myket-icon-thumbs-down:before {
  content:"";
}
.myket-icon-thumbs-up:before {
  content:"";
}
.myket-icon-downloadv2:before {
  content:"";
}
.myket-icon-aparat:before {
  content:"";
}
.myket-icon-apps:before {
  content:"";
}
.myket-icon-arrow:before {
  content:"";
}
.myket-icon-cloud:before {
  content:"";
}
.myket-icon-comments:before {
  content:"";
}
.myket-icon-developers:before {
  content:"";
}
.myket-icon-download:before {
  content:"";
}
.myket-icon-english:before {
  content:"";
}
.myket-icon-envelope:before {
  content:"";
}
.myket-icon-farsi:before {
  content:"";
}
.myket-icon-games:before {
  content:"";
}
.myket-icon-instagram:before {
  content:"";
}
.myket-icon-linkedin:before {
  content:"";
}
.myket-icon-location:before {
  content:"";
}
.myket-icon-movies:before {
  content:"";
}
.myket-icon-phone:before {
  content:"";
}
.myket-icon-search:before {
  content:"";
}
.myket-icon-series:before {
  content:"";
}
.myket-icon-star:before {
  content:"";
}
.myket-icon-telegram:before {
  content:"";
}
.myket-icon-twitter:before {
  content:"";
}
.myket-icon-user:before {
  content:"";
}
.text-center {
  text-align:center;
}
.text-left {
  text-align:left;
}
.text-right {
  text-align:right;
}
.ltr {
  direction:ltr;
}
.text-justify {
  text-align:justify;
}
.text-bold {
  font-weight:700;
}
.float-right {
  float:right;
}
.float-left {
  float:left;
}
.position-relative {
  position:relative;
}
.text-blue {
  color:var(--blue);
}
.text-danger {
  color:#d9534f;
}
.text-success {
  color:#008000;
}
.dn,
.hide {
  display:none!important;
}
.show {
  display:block!important;
}
.fluid-flex-child {
  flex-grow:1;
  min-width:0;
}
.d-lg {
  display:none!important;
}
@media(max-width:991px) {
  .d-lg {
    display:block!important;
  }
}
.d-md {
  display:none!important;
}
@media(max-width:767px) {
  .d-md {
    display:block!important;
  }
}
.h-md {
  display:none!important;
}
@media(min-width:768px) {
  .h-md {
    display:block!important;
  }
}
.container {
  width:100%;
  max-width:1400px;
  margin-right:auto;
  margin-left:auto;
  display:block;
}
@media(min-width:1400px) {
  .container {
    padding-right:30px;
    padding-left:30px;
  }
}
@media(max-width:1399px) {
  .container {
    padding-right:80px;
    padding-left:80px;
  }
}
@media(max-width:1199px) {
  .container {
    padding-right:40px;
    padding-left:40px;
  }
}
@media(max-width:991px) {
  .container {
    padding-right:30px;
    padding-left:30px;
  }
}
@media(max-width:767px) {
  .container {
    padding-right:15px;
    padding-left:15px;
  }
}
.flexibale {
  display:flex;
  align-items:center;
  justify-content:center;
}
@media(max-width:767px) {
  .flexibale {
    display:block;
  }
}
.breadcrump {
  margin-bottom:10px;
  font-size:12px;
}
.breadcrump label {
  font-weight:bold;
  padding-left:7px;
}
.breadcrump a {
  display:inline-block;
  color:var(--prim-blue);
  position:relative;
  padding-left:20px;
}
.breadcrump a:not(.last-item):after {
  content:"->";
  font-size:10px;
  font-family: "CustomFont";
  display:inline-block;
  position:absolute;
  left:0;
  top:50%;
  width:14px;
  height:14px;
  margin-top:-7px;
  line-height:14px;
  color:var(--text-prim);
  cursor:default;
}
footer {
  background-color:var(--footer-bg);
  text-align:right;
  padding:20px 0 15px;
  color:var(--text-second);
  font-weight:300;
}
@media(max-width:991px) {
  footer {
    display:flex;
  }
}
footer .container {
  display:block;
}
@media(min-width:1200px) {
  footer .container {
    max-width:1400px;
    padding:0 15px;
  }
}
@media(max-width:1199px) {
  footer .container {
    max-width:100%;
    width:100%;
  }
}
footer .about {
  max-width:820px;
}
@media(max-width:1199px) {
  footer .about {
    max-width:100%;
  }
}
footer .about p:first-child {
  font-weight:bold;
  font-size:16px;
}
@media(max-width:575px) {
  footer .about p:first-child {
    font-weight:bold;
    line-height:1.5;
    text-align:justify;
  }
}
footer .about p:last-child {
  font-size:15px;
  line-height:24px;
  font-weight:300;
  margin-bottom:20px;
}
@media(max-width:575px) {
  footer .about p:last-child {
    margin-bottom:30px;
  }
}
footer .footer-inner-wrapper {
  display:flex;
}
@media(max-width:991px) {
  footer .footer-inner-wrapper {
    display:table;
  }
}
footer .link-part {
  width:50%;
  float:right;
}
@media(max-width:991px) {
  footer .link-part {
    width:100%;
  }
}
footer .link-part ul {
  width:50%;
  float:right;
  padding:0;
  margin-top:10px;
}
footer .link-part ul li {
  list-style-type:none;
  line-height:40px;
}
@media(max-width:575px) {
  footer .link-part ul li {
    line-height:45px;
  }
}
footer .link-part a {
  font-size:16px;
  color:var(--text-second);
}
@media(max-width:991px) {
  footer .link-part a {
    font-weight:500;
  }
}
@media(max-width:575px) {
  footer .link-part a {
    font-weight:500;
    font-size:15px;
  }
}
@media(max-width:359) {
  footer .link-part a {
    font-size:14px;
  }
}
footer hr {
  border-color:var(--border-color);
}
footer .support {
  display:inline-block;
  width:25%;
  border:0;
  padding:0;
}
@media(max-width:1199px) {
  footer .support {
    width:28%;
  }
}
@media(max-width:991px) {
  footer .support {
    width:50%;
  }
}
@media(max-width:575px) {
  footer .support {
    width:100%;
    margin-bottom:20px;
  }
}
footer .support .support-title {
  font-size:16px;
  font-weight:bold;
  margin:15px 0 25px;
  text-align:right!important;
}
@media(max-width:991px) {
  footer .support .support-title {
    margin:15px 0;
  }
}
@media(max-width:575px) {
  footer .support .support-title {
    text-align:center!important;
  }
}
footer .support .contact-info {
  font-size:16px;
  line-height:35px;
  display:flex;
  font-weight:500;
  margin-bottom:10px;
  align-items:baseline;
}
@media(max-width:991px) {
  footer .support .contact-info {
    line-height:40px!important;
  }
}
@media(max-width:575px) {
  footer .support .contact-info {
    text-align:center;
    display:block;
    margin-bottom:0;
  }
}
footer .support .contact-info i {
  margin-left:10px;
  color:#808183;
  font-size:20px;
}
@media(max-width:575px) {
  footer .support .contact-info i {
    display:none;
  }
}
footer .support .footer-social {
  margin-top:15px;
  text-align:right!important;
}
@media(max-width:575px) {
  footer .support .footer-social {
    text-align:center!important;
  }
}
footer .support .footer-social a {
  width:45px;
  height:45px;
  display:inline-block;
  border-radius:50%;
  background-color:#808080;
  margin-left:2px;
  color:#fff;
  font-size:25px;
  text-align:center;
  overflow:hidden;
}
footer .support .footer-social i {
  line-height:44px;
}
footer .support .footer-social i.myket-icon-aparat {
  font-size:30px;
}
footer .support .footer-social i.myket-icon-linkedin {
  font-size:27px;
  line-height:40px;
}
footer .support .footer-social i.myket-icon-instagram {
  padding-right:1px;
}
footer .support .footer-social i.myket-icon-telegram {
  font-size:24px;
  padding-right:2px;
}
footer .namad {
  width:25%;
  float:right;
  text-align:center;
  margin-top:10px;
}
@media(max-width:1199px) {
  footer .namad {
    width:22%;
  }
}
@media(max-width:991px) {
  footer .namad {
    width:50%;
    padding:0 10px;
  }
}
@media(max-width:575px) {
  footer .namad {
    width:100%;
    padding:0;
  }
}
footer .namad img {
  cursor:pointer;
}
footer .namad img:first-child {
  width:125px;
  height:136px;
  display:inline-block;
}
@media(max-width:991px) {
  footer .namad img:first-child {
    width:121px;
    height:132px;
  }
}
footer .namad img:last-child {
  width:136px;
  height:136px;
  display:inline-block;
}
@media(max-width:991px) {
  footer .namad img:last-child {
    width:132px;
    height:132px;
  }
}
footer .cprinfo {
  text-align:center;
  font-size:15px;
  margin-top:15px;
}
footer .cprinfo a {
  color:var(--text-second);
  font-weight:bold;
}
footer .cprinfo a:hover {
  color:var(--text-second);
}
.light footer .link-part a:hover {
  color:#272727;
}
.dark footer .link-part a:hover {
  color:#fff;
}
main {
  padding:110px 0 0;
  min-height:calc(100vh - 161px);
  margin:auto;
  width:100%;
}
@media(max-width:767px) {
  main {
    padding:90px 0 0;
  }
}
.recommended-header {
  margin:10px 3px auto;
}
@media(max-width:767px) {
  .recommended-header {
    margin:auto -5px;
  }
}
.recommended-header .recommended-header-title {
  width:100%;
  display:inline-block;
}
.recommended-header .title {
  font-size:21px;
  font-weight:bold;
  word-break:break-word;
  line-height:1.5;
  float:right;
}
.recommended-header .titlespan {
  margin:5px auto;
}
.recommended-header .recommended-description {
  text-align:justify;
  line-height:1.6;
  letter-spacing:-.3px;
  margin-bottom:20px;
  margin-top:-10px;
  font-size:15px;
}
.listscroll {
  width:auto;
  white-space:nowrap;
  overflow-x:hidden;
  margin:auto -10px 25px 0;
  padding:0 1px;
}
.listscroll::-webkit-scrollbar {
  height:0;
  background:transparent;
}
@media(max-width:767px) {
  .listscroll {
    width:auto;
    white-space:nowrap;
    overflow-x:auto;
  }
}
.list-app {
  height:auto;
  width:155px;
  cursor:pointer;
  display:inline-block;
  vertical-align:top;
  white-space:normal;
  margin:0 4.5px 10px 4.5px;
  border-radius:5px;
  padding:10px 5px;
  transition:all .25s linear;
  text-align:center;
}
@media(max-width:767px) {
  .list-app {
    width:135px;
  }
}
@media(max-width:575px) {
  .list-app {
    width:100px;
  }
}
.list-app img {
  max-width:100%;
  width:145px;
  height:145px;
  display:block;
  margin-right:auto;
  margin-left:auto;
  border-radius:16px;
}
@media(max-width:767px) {
  .list-app img {
    width:125px;
    height:125px;
  }
}
@media(max-width:575px) {
  .list-app img {
    width:90px;
    height:90px;
  }
}
.list-app:hover {
  box-shadow:0 2px 4px 0 rgba(154,154,154,.8);
  background-color:var(--tr-grey);
}
.list-app .app-name {
  padding-left:5px;
  padding-right:5px;
  text-align:right;
  color:var(--text-second);
  max-width:165px;
  margin-top:10px;
  margin-bottom:0;
  overflow:hidden;
  font-size:14px;
  font-weight:300;
  line-height:1.4;
  height:40px;
  white-space:normal;
  text-overflow:unset;
}
.list-app .app-group {
  margin-bottom:0;
  margin-top:2px;
  padding-right:5px;
  padding-left:5px;
  font-size:12px;
  color:var(--text-hint);
  text-align:right;
  overflow:hidden;
  height:20px;
  line-height:19px;
}
.dark .list-app:hover {
  box-shadow:0 2px 4px 0 rgba(10,10,10,.8);
}
.download-dismissable-dialog {
  position:fixed;
  bottom:0;
  height:155px;
  width:100%;
  background-color:#f8f8f8;
  padding:15px;
  text-align:center;
  border-top-left-radius:25px;
  border-top-right-radius:25px;
  z-index:10;
  box-shadow:0 -1px 5px #7e7e7e;
  line-height:1.45;
  font-size:13px;
  border:1px solid #ccc;
  border-bottom:0;
  background:linear-gradient(180deg,#f3f5f9,#ebefff);
  display:none;
}
.download-dismissable-dialog div {
  position:relative;
}
.download-dismissable-dialog img {
  width:70px;
  height:70px;
  margin-top:-47px;
  padding:9px;
  background-color:#eee;
  border-radius:16px;
  border:2px solid #fff;
  background:linear-gradient(210deg,#f3f5f9,#ccd1e7);
}
.download-dismissable-dialog button {
  padding:11px 15px;
  margin:15px auto 17px;
  background-color:#07f;
  color:#fff;
  border-radius:12px;
  display:block;
  width:175px;
  font-weight:bold;
  box-shadow:0 2px 5px #666;
  font-size:16px;
  border:0;
  font-family: "CustomFont";
}
.download-dismissable-dialog button:hover {
  box-shadow:0 3px 6px #515050;
  color:#fff;
}
.download-dismissable-dialog p {
  margin-bottom:15px;
  font-size:14px;
  line-height:1.5;
  color:var(--prim-text);
  font-weight:bold;
}
.download-dismissable-dialog .dismiss-btn {
  position:absolute;
  top:-5px;
  left:-5px;
  width:30px;
  height:30px;
  background-color:var(--mid-grey);
  color:var(--text-second);
  cursor:pointer;
  font-size:24px;
  border-radius:50%;
}
.dark .download-dismissable-dialog {
  background:linear-gradient(210deg,#2d2d2f,#022d47);
  border-color:#1a1a1a;
  box-shadow:0 -1px 5px #060606;
}
.dark .download-dismissable-dialog button {
  box-shadow:0 2px 5px #000;
}
.dark .download-dismissable-dialog img {
  border:2px solid #625f5f;
  background:#00263d;
}
body {
  font-size:14.4px;
  line-height:2;
}
main {
  padding:80px;
  overflow:hidden;
}
@media(max-width:1199px) {
  main {
    padding:80px 30px;
  }
}
@media(max-width:767px) {
  main {
    padding:15px;
    padding-top:80px;
  }
}
.topmenu {
  position:fixed;
  width:100%;
  z-index:10;
  background:var(--bg);
  padding:10px 0;
  box-shadow:0 2px 1px 1px rgba(0,0,0,.06);
  display:block;
}
.topmenu .icon {
  float:right;
  margin-right:100px;
  width:120px;
  height:38px;
}
@media(min-width:1200px) {
  .topmenu .icon {
    margin-right:80px;
  }
}
@media(max-width:1199px) {
  .topmenu .icon {
    margin-right:30px;
  }
}
@media(max-width:767px) {
  .topmenu .icon {
    margin-right:15px;
  }
}
.topmenu .icon img {
  width:120px;
  height:38px;
}
.topmenu .search {
  float:left;
  margin-left:100px;
  margin-top:5px;
}
@media(min-width:1200px) {
  .topmenu .search {
    margin-left:80px;
  }
}
@media(max-width:1199px) {
  .topmenu .search {
    margin-left:30px;
  }
}
@media(max-width:767px) {
  .topmenu .search {
    margin-left:15px;
  }
}
.topmenu .search a {
  color:var(--prim-blue);
}
.topmenu .search .searchIcon {
  width:22px;
  height:22px;
  vertical-align:middle;
}
.topmenu.mobile-app-install {
  padding:0;
}
.topmenu.mobile-app-install .download-link {
  display:inline;
}
@media(max-width:767px) {
  .topmenu.mobile-app-install .download-link .app-title-wrapper {
    display:flex;
  }
  .topmenu.mobile-app-install .download-link .app-title-wrapper img {
    width:47px;
    height:47px;
    margin:8px 15px;
    border-radius:4px;
    float:right;
  }
  .topmenu.mobile-app-install .download-link .app-title-wrapper label {
    width:158px;
    margin:10px 0;
    float:right;
    align-self:center;
    max-height:45px;
    overflow:hidden;
    color:var(--text-prim);
    font-size:16px;
    line-height:44px;
  }
  .topmenu.mobile-app-install .download-link .btn-download {
    margin:13px 15px 10px;
    padding:4px 31px;
    height:auto;
    width:auto;
    font-weight:normal;
  }
}
.loading-btn {
  display:flex;
  justify-content:center;
  align-items:center;
  display:none;
}
.loading-btn#loadingbtnmob {
  margin:8px 6.5px;
}
.loading-btn i {
  border:3px solid rgba(243,243,243,0);
  border-radius:50%;
  border-top:3px solid #fff;
  width:20px;
  height:20px;
  -webkit-animation:spin 1.2s linear infinite;
  animation:spin 1.2s linear infinite;
  margin-left:5px;
}
@media(max-width:991px) and (min-width:769px) {
  .first-section {
    display:flex;
    align-items:center;
  }
}
.right-section {
  float:right;
  width:calc(30% - 6px);
  overflow:hidden;
  background-color:#efefef;
  margin:0 3px;
  border-radius:8px;
  padding:15px;
}
@media(max-width:1199px) {
  .right-section {
    width:calc(35% - 6px);
  }
}
@media(max-width:991px) {
  .right-section {
    margin:0;
    padding:15px;
    width:100%;
    margin-top:0;
  }
}
@media(max-width:767px) {
  .right-section {
    padding:0;
    background:var(--bg);
  }
}
.left-section {
  margin-right:31%;
  margin-top:15px;
  line-height:2;
}
@media(max-width:1199px) {
  .left-section {
    margin-right:36%;
  }
}
@media(max-width:991px) {
  .left-section {
    width:100%;
    margin-right:0;
  }
}
.logo-title-install-wrapper .logo-title-wrapper {
  display:flex;
  align-items:center;
  padding:5px 0 20px;
}
.logo-title-install-wrapper .logo-title-wrapper .appImage {
  padding:0;
  max-width:90vw;
  margin:0 1px 0 15px;
  width:110px;
  height:110px;
  float:right;
}
.logo-title-install-wrapper .logo-title-wrapper .appImage img {
  border-radius:8px;
}
.logo-title-install-wrapper .logo-title-wrapper h1 {
  line-height:1.4;
  margin-bottom:10px;
  font-size:20px;
}
.logo-title-install-wrapper .logo-title-wrapper h2 {
  font-size:13px;
}
.logo-title-install-wrapper .install-wrapper {
  display:flex;
  margin-bottom:20px;
}
.logo-title-install-wrapper .install-wrapper .btn-download {
  padding-top:3px;
}
@media(max-width:991px) and (min-width:769px) {
  .logo-title-install-wrapper .install-wrapper .btn-download {
    max-width:270px;
    margin:auto;
  }
}
@media(max-width:991px) and (min-width:769px) {
  .logo-title-install-wrapper {
    width:50%;
    float:right;
    padding-left:15px;
  }
  .logo-title-install-wrapper .logo-title-wrapper {
    display:block;
  }
  .logo-title-install-wrapper .logo-title-wrapper .appImage {
    width:100%;
    text-align:center;
    margin-bottom:15px;
  }
  .logo-title-install-wrapper .logo-title-wrapper h1,
  .logo-title-install-wrapper .logo-title-wrapper h2 {
    text-align:center;
  }
}
@media(max-width:991px) and (min-width:769px) {
  .tbl-app-detail {
    width:50%;
    float:right;
  }
}
.tbl-app-detail table {
  width:calc(100% - 10px);
  margin:0 auto;
  table-layout:fixed;
  border-collapse:collapse;
  background-color:transparent;
  font-size:13px;
}
@media(max-width:1199px) {
  .tbl-app-detail table {
    margin-bottom:0;
  }
}
@media(max-width:991px) {
  .tbl-app-detail table {
    width:100%;
    margin:0 auto 20px;
    table-layout:fixed;
  }
}
.tbl-app-detail table tr:nth-child(odd) {
  background-color:var(--bg);
}
@media(max-width:767px) {
  .tbl-app-detail table tr:nth-child(odd) {
    background-color:#f6f6f6;
  }
}
.tbl-app-detail table tr td {
  width:55%;
  height:40px;
  text-align:right;
  padding:10px;
}
.tbl-app-detail table tr td:first-child {
  font-weight:bold;
  width:45%;
}
.gallery-wrapper {
  margin-top:0;
}
.gallery-wrapper .inner-div {
  position:relative;
  width:100%;
  overflow:hidden;
}
.gallery-wrapper .inner-div ul {
  padding-right:0;
  white-space:nowrap;
  width:100%;
  overflow-x:auto;
  -ms-overflow-style:none;
  scrollbar-width:none;
  margin:0;
}
.gallery-wrapper .inner-div ul::-webkit-scrollbar {
  display:none;
}
.gallery-wrapper .inner-div ul li {
  display:inline;
}
.gallery-wrapper .inner-div ul li img {
  border-radius:10px;
  cursor:pointer;
  margin-right:3px;
  margin-left:3px;
}
.gallery-wrapper .inner-div span {
  background-color:rgba(255,255,255,.6);
  overflow:hidden;
  position:absolute;
  bottom:50%;
  font-size:30px;
  color:var(--text-second);
  display:none;
  margin-bottom:-25px;
  cursor:pointer;
  height:50px;
  width:42px;
  font-family: "CustomFont";
  line-height:50px;
}
.gallery-wrapper .inner-div span#slideRight {
  right:0;
  padding-left:12px;
}
.gallery-wrapper .inner-div span#slideLeft {
  left:0;
  padding-right:12px;
}
.editor-notes-wrapper {
  float:right;
  overflow:hidden;
  clear:both;
  border-radius:8px;
}
@media(min-width:992px) {
  .editor-notes-wrapper {
    margin:15px 0;
    padding:15px 30px;
  }
}
.editor-notes-wrapper .title {
  font-weight:bold;
  word-break:break-word;
  line-height:1.5;
  margin:0;
  text-align:center;
  padding-bottom:15px;
  font-size:18px;
  height:70px;
}
.editor-notes-wrapper .title img {
  bottom:-17px;
  position:relative;
  height:46px;
  width:17px;
}
.editor-notes-wrapper .title img:first-child {
  transform:scaleX(-1);
}
.editor-notes-wrapper .description {
  margin:10px auto;
  line-height:1.8;
}
.breadcrump {
  margin-bottom:5px;
}
.restricted-app-description {
  background-color:#fafad2;
  font-size:14px;
  line-height:1.7;
  margin:10px 0;
  padding:20px;
  border-radius:8px;
  text-align:justify;
  color:#580000;
}
@media(max-width:767px) {
  .restricted-app-description {
    clear:both;
  }
}
.restricted-app-myket-wrapper {
  background-color:#d9edf7;
  padding:10px 20px 25px;
  margin:10px 0;
  border-radius:8px;
}
@media(max-width:767px) {
  .restricted-app-myket-wrapper {
    clear:both;
  }
}
.restricted-app-myket-wrapper p {
  text-align:justify;
}
.restricted-app-myket-wrapper .flex {
  align-items:center;
  justify-content:space-between;
  display:flex;
}
@media(max-width:991px) {
  .restricted-app-myket-wrapper .flex {
    display:inline-block;
    width:100%;
  }
}
.restricted-app-myket-wrapper .flex .myket-logo {
  align-items:center;
  display:flex;
}
@media(max-width:991px) {
  .restricted-app-myket-wrapper .flex .myket-logo {
    width:100%;
    justify-content:center;
    display:flex;
  }
}
.restricted-app-myket-wrapper .flex .myket-logo img {
  height:45px;
  width:140px;
  vertical-align:middle;
}
.restricted-app-myket-wrapper .flex .myket-items {
  margin-right:10px;
}
@media(max-width:991px) {
  .restricted-app-myket-wrapper .flex .myket-items {
    margin:20px auto;
    width:100%;
    justify-content:center;
    display:flex;
  }
}
.restricted-app-myket-wrapper .flex .myket-items .myket-item {
  float:right;
  font-size:13px;
  width:75px;
  text-align:center;
  color:var(--text-prim);
}
@media(max-width:1200px) and (min-width:992px) {
  .restricted-app-myket-wrapper .flex .myket-items .myket-item {
    font-size:12px;
    width:60px;
  }
}
.restricted-app-myket-wrapper .flex .myket-items .myket-item img {
  font-size:20px;
  width:30%;
  margin:auto auto 2px;
  display:block;
}
@media(max-width:991px) {
  .restricted-app-myket-wrapper .flex .myket-download {
    width:100%;
    justify-content:center;
    display:flex;
  }
}
.restricted-app-myket-wrapper .flex .myket-download .btn-download {
  padding:5px 30px;
  box-shadow:0 2px 5px #999;
  height:45px;
  max-width:250px;
  border:0;
}
@media(max-width:1199px) {
  .restricted-app-myket-wrapper .flex .myket-download .btn-download {
    font-size:17px;
  }
}
.restricted-app-myket-wrapper .flex .myket-download .btn-download:hover {
  box-shadow:0 2px 5px var(--text-second);
}
.description-wrapper {
  margin-bottom:20px;
  text-align:justify;
  letter-spacing:-.3px;
}
.description-wrapper .video-wrapper {
  width:100%;
  margin:auto;
  margin-top:15px;
  max-width:350px;
  max-height:240px;
}
.description-wrapper .video-wrapper video#appVideo {
  width:100%;
  max-height:200px;
  border-radius:8px;
}
.description-wrapper .video-wrapper iframe {
  width:100%;
  height:200px;
  border:0;
  border-radius:8px;
}
.description-wrapper .video-wrapper p {
  text-align:center;
  margin-top:0;
  font-weight:800;
  font-size:13px;
  height:13px;
}
.description-wrapper .faq-header {
  margin-top:30px;
  font-size:21px;
  font-weight:bold;
  word-break:break-word;
  line-height:1.5;
  margin:0;
}
.description-wrapper .faq-question {
  display:block;
}
.description-wrapper .whats-new {
  padding:16px;
}
.user-review-wrapper .rating-title {
  margin:10px auto 15px;
  align-content:center;
}
.user-review-wrapper .rating-title .title {
  display:inline-block;
  margin:0 0 0 5px;
}
.user-review-wrapper .rating-title .total-rating {
  float:left;
  position:relative;
  padding-right:20px;
}
.user-review-wrapper .rating-title .total-rating:before {
  position:absolute;
  right:0;
  content:"★";
  color:var(--blue);
  font-size:20px;
  line-height:30px;
}
.user-review-wrapper .rating-wrapper .rate-item {
  display:flex;
  flex-direction:row;
  align-items:center;
}
.user-review-wrapper .rating-wrapper .rate-item .label {
  display:inline-block;
  line-height:1.5;
  font-size:15px;
  display:flex;
  flex-direction:row;
  align-items:center;
  white-space:nowrap;
  color:#8a8a8a;
  justify-content:space-between;
  width:38px;
  padding-left:.5rem;
  position:relative;
  padding-right:20px;
}
.user-review-wrapper .rating-wrapper .rate-item .label:before {
  position:absolute;
  right:0;
  content:"★";
  color:var(--blue);
  font-size:20px;
  line-height:30px;
}
.user-review-wrapper .rating-wrapper .rate-item .progress {
  background-color:#eff0f5;
  border-radius:5px;
  height:10px;
  position:relative;
  overflow:hidden;
  width:100%;
  display:block;
}
.user-review-wrapper .rating-wrapper .rate-item .progress span {
  background-color:#8993a4;
  height:10px;
  border-radius:5px;
  position:absolute;
}
.user-review-wrapper .comment-wrapper {
  margin-bottom:25px;
}
.user-review-wrapper .comment-wrapper .comment-box {
  margin:10px auto;
  background-color:var(--mid-grey);
  border-radius:5px;
  padding:15px;
}
.user-review-wrapper .comment-wrapper .comment-box span {
  display:inline-block;
  line-height:1.5;
  font-size:15px;
}
.user-review-wrapper .comment-wrapper .comment-box .avatar-wrapper {
  display:flex;
  position:relative;
}
.user-review-wrapper .comment-wrapper .comment-box .avatar-wrapper .avatar {
  border-radius:50%;
  width:45px;
  height:45px;
  margin-left:10px;
}
.user-review-wrapper .comment-wrapper .comment-box .avatar-wrapper .rating-stars {
  color:var(--blue);
  font-size:20px;
  line-height:30px;
  display:block;
}
.user-review-wrapper .comment-wrapper .comment-box .avatar-wrapper .date {
  left:0;
  position:absolute;
  top:14px;
}
.user-review-wrapper .comment-wrapper .comment-box p {
  text-align:justify;
  white-space:pre-wrap;
  word-wrap:break-word;
}
.user-review-wrapper .comment-wrapper .comment-box .comment-reaction img {
  width:15px;
  height:15px;
}
.user-review-wrapper .comment-wrapper .comment-box .comment-reaction img.thumbs-up {
  margin:0 0 0 5px;
}
.user-review-wrapper .comment-wrapper .comment-box .comment-reaction img.thumbs-down {
  margin:0 10px -3px 5px;
}
.banner-wrapper {
  margin-top:30px;
  margin-bottom:30px;
}
.banner-wrapper .title {
  font-size:21px;
  font-weight:bold;
  word-break:break-word;
  line-height:1.5;
  margin:0;
  margin-bottom:15px;
}
.banner-wrapper .banner-item-wrapper {
  overflow-x:auto;
  white-space:nowrap;
  width:100%;
  height:140px;
  overflow-y:hidden;
  -ms-overflow-style:none;
  scrollbar-width:none;
}
@media(max-width:1199px) {
  .banner-wrapper .banner-item-wrapper {
    -ms-overflow-style:none;
    scrollbar-width:none;
  }
}
.banner-wrapper .banner-item-wrapper::-webkit-scrollbar {
  display:none;
}
.banner-wrapper .banner-item-wrapper .banner-item {
  display:inline-block;
  padding:0 5px;
}
.banner-wrapper .banner-item-wrapper .banner-item a {
  height:100%;
  display:inline-block;
}
.banner-wrapper .banner-item-wrapper .banner-item img {
  width:231px;
  height:130px;
  border-radius:8px;
}
.gallery-modal {
  display:none;
  position:fixed;
  left:0;
  top:0;
  width:100%;
  height:100%;
  overflow:auto;
  background-color:#000;
  background-color:rgba(0,0,0,.5);
  z-index:100;
}
.gallery-modal img {
  margin:auto;
  display:block;
  height:auto;
  max-width:100%;
  max-height:90%;
}
.gallery-modal .close {
  position:absolute;
  top:15px;
  right:16px;
  color:var(--tr-grey);
  font-size:40px;
  font-weight:bold;
  transition:.3s;
  background:rgba(85,85,85,.8392156863);
  border-radius:117px;
  line-height:1;
  width:43px;
  padding-top:4px;
  text-align:center;
}
.gallery-modal .close:hover,
.gallery-modal .close:focus {
  color:#f00;
  cursor:pointer;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform:rotate(0deg);
  }
  100% {
    -webkit-transform:rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform:rotate(0deg);
  }
  100% {
    transform:rotate(360deg);
  }
}
footer .container {
  margin:auto;
  padding-top:0;
  padding-bottom:0;
}
footer .about p:last-child {
  line-height:26px!important;
}
footer .support .contact-info {
  align-items:normal!important;
}
.dark .topmenu {
  background:#000!important;
  box-shadow:0 2px 1px 1px rgba(0,0,0,.2);
}
.dark .right-section {
  background-color:#4f4f4f;
}
.dark .topApp-title img,
.dark .editor-notes-wrapper .title img {
  filter:invert(1);
}
.dark .gallery-wrapper span {
  background-color:rgba(30,30,30,.6);
}
.dark .restricted-app-description {
  background-color:#ffebe0;
  color:#450000;
}
.dark .restricted-app-myket-wrapper {
  background-color:#3b4b53;
}
.dark .restricted-app-myket-wrapper .myket-item img {
  filter:invert(1);
}
.dark .restricted-app-myket-wrapper .btn-download {
  box-shadow:0 2px 5px #353a3d;
}
.dark .user-review-wrapper .rating-wrapper .progress {
  background-color:#5d5d5d;
}
.dark .user-review-wrapper .rating-wrapper .progress span {
  background-color:#b1b8c5;
}
.dark .user-review-wrapper .comment-wrapper .thumbs-up,
.dark .user-review-wrapper .comment-wrapper .thumbs-down {
  filter:invert(1);
}
.dark .close {
  background:rgba(183,183,183,.8392156863);
}
@media(max-width:575px){
    .searchPart{
        width:50px
    }
}
@media(max-width:767px) {
  .dark .first-section {
    background-color:var(--bg)!important;
  }
  .dark .tbl-app-detail tr:nth-child(odd) {
    background-color:#2b2c2d;
  }
}



