.badge.lazy {
  background-image: none;
}

.favbadge {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 32px;
  height: 32px;
  background: url(../images/cat-icons.png) 0 -85px no-repeat;
  display: none;
}

.rightCat a:hover .favbadge {
  background-position-y: -123px;
}

.yt_icon {
  position: absolute;
  top: 40px;
  right: 10px;
  background-size: contain;
}
.yt_icon.hd {
  background-image: url(../images/icon_hd.png);
  background-size: contain;
  width: 43px;
  height: 41px;
}
@media screen and (max-width: 1199px) {
  .yt_icon.hd {
    width: 26px;
    height: 25px;
  }
}
@media screen and (max-width: 767px) {
  .yt_icon.hd {
    width: 26px;
    height: 25px;
  }
}
.yt_icon.yt {
  background-image: url(../images/icon_youtube.png);
  background-size: contain;
  width: 46px;
  height: 30px;
}
@media screen and (max-width: 1199px) {
  .yt_icon.yt {
    width: 26px;
    height: 17px;
  }
}
@media screen and (max-width: 767px) {
  .yt_icon.yt {
    width: 26px;
    height: 17px;
  }
}

@keyframes pulse-blue {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 27, 173, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 74, 173, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 74, 173, 0);
  }
}
@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(51, 217, 178, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(51, 217, 178, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(51, 217, 178, 0);
  }
}
@keyframes showNSlideUp {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes animateStickyHeader {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.sort__drop {
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translate(-50%, 10px);
  display: flex;
  flex-wrap: wrap;
  width: 126px;
  padding: 15px;
  border-radius: 5px;
  background-color: #ffffff;
  backface-visibility: hidden;
  transition: opacity 0.35s ease-in-out, visibility 0.35s ease-in-out, transform 0.35s ease-in-out;
}
@media screen and (max-width: 1023px) {
  .sort__drop {
    position: relative;
    top: 5px;
    left: -20px;
    width: 100vw;
    transform: unset;
    padding: 10px 0 10px;
    border-radius: 0;
  }
}
@media screen and (device-width: 320px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape) {
  .sort__drop {
    max-height: calc(var(--vh, 1vh) * 100 - 70px);
    overflow: auto;
  }
}
@media screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
  .sort__drop {
    max-height: calc(var(--vh, 1vh) * 100 - 70px);
    overflow: auto;
  }
}
@media screen and (min-device-width: 414px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
  .sort__drop {
    max-height: calc(var(--vh, 1vh) * 100 - 70px);
    overflow: auto;
  }
}
.sort__drop.is-open {
  z-index: 1650;
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition: opacity 0.35s ease-in-out, visibility 0.35s ease-in-out, transform 0.35s ease-in-out;
}
@media screen and (max-width: 1023px) {
  .sort__drop.is-open {
    transform: unset;
  }
}
.sort__drop:after {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px;
  border-color: transparent transparent #fff transparent;
}
@media screen and (max-width: 1023px) {
  .sort__drop:after {
    top: -10px;
    left: 35px;
    transform: unset;
    border-width: 7px;
  }
}
.sort__drop-link {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 100%;
  max-width: 25%;
  min-height: 35px;
  padding-left: 2px;
  padding-right: 2px;
  color: #081b49;
  font-size: 16px;
  font-weight: 700;
  transition: color 0.35s ease-in-out;
}
@media screen and (max-width: 1023px) {
  .sort__drop-link {
    max-width: 14.2857142857%;
  }
}
.sort__drop-link:hover {
  color: #004eb4;
  transition: color 0.35s ease-in-out;
}
.sort__drop-link.is-active {
  text-decoration: underline;
  color: #004eb4;
  transition: color 0.35s ease-in-out;
}
.sort__drop-inner {
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  overflow: hidden;
  overflow-y: auto;
  position: absolute;
  left: 100%;
  top: 90px;
  width: 358px;
  border-radius: 5px;
  /*min-height: calc(46px * 4);*/
  /*max-height: calc(46px * 4);*/
  background-color: #939cb2;
  transition: opacity 0.35s ease-in-out, visibility 0.35s ease-in-out, transform 0.35s ease-in-out;
}
@media screen and (max-width: 1023px) {
  .sort__drop-inner {
    position: relative;
    top: 10px;
    left: 0;
    width: calc(100vw + 10px);
    height: 0;
    min-height: unset;
    max-height: unset;
    transform: unset;
    border-radius: 0;
  }
}
.sort__drop-inner.is-open {
  opacity: 1;
  visibility: visible;
  height: auto;
  transform: translateX(0);
  transition: opacity 0.35s ease-in-out, visibility 0.35s ease-in-out, transform 0.35s ease-in-out;
}
.sort:hover > .sort__drop, .sort.is-open > .sort__drop {
  z-index: 1650;
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition: opacity 0.35s ease-in-out, visibility 0.35s ease-in-out, transform 0.35s ease-in-out;
}
@media screen and (max-width: 1023px) {
  .sort:hover > .sort__drop, .sort.is-open > .sort__drop {
    transform: unset;
  }
}
@media screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
  .sort:hover > .sort__drop, .sort.is-open > .sort__drop {
    max-height: calc(100vh - 64px);
    overflow: auto;
  }
}
@media screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .sort:hover > .sort__drop, .sort.is-open > .sort__drop {
    max-height: calc(100vh - 64px);
    overflow: auto;
  }
}
@media screen and (max-width: 1023px) and (orientation: landscape) {
  .sort:hover > .sort__drop, .sort.is-open > .sort__drop {
    max-height: calc(100vh - 64px);
    overflow: auto;
  }
}
@media screen and (max-width: 767px) {
  .sort:hover > .sort__drop, .sort.is-open > .sort__drop {
    max-height: calc(100vh - 64px);
    overflow: auto;
  }
}
.sort__collapse {
  position: relative;
  display: flex;
  flex-direction: column;
}
.sort__collapse:not(:last-of-type) .sort__collapse-toggle {
  border-bottom: 1px solid #bac4dd;
}
.sort__collapse-toggle {
  display: flex;
  height: 46px;
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.35s ease-in-out;
}
.sort__collapse-toggle:hover, .sort__collapse-toggle.is-active {
  background-color: #778098;
  transition: background-color 0.35s ease-in-out;
}
.sort__collapse-toggle:hover > div > span, .sort__collapse-toggle.is-active > div > span {
  color: #c7f228;
  transition: color 0.35s ease-in-out;
}
.sort__collapse-toggle:hover .icon-font, .sort__collapse-toggle.is-active .icon-font {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease-in-out, visibility 0.35s ease-in-out;
}
.sort__collapse-toggle > div {
  display: flex;
  align-items: center;
  height: 100%;
}
.sort__collapse-toggle > div:nth-of-type(1), .sort__collapse-toggle > div:nth-of-type(3) {
  justify-content: center;
  width: 50px;
}
.sort__collapse-toggle > div:nth-of-type(1) {
  border-right: 1px solid #bac4dd;
}
.sort__collapse-toggle > div:nth-of-type(2) {
  flex: 1;
  min-width: 1px;
  max-width: 100%;
  padding-left: 12px;
}
.sort__collapse-toggle span {
  color: #dbe2f1;
  font-size: 16px;
  font-weight: 700;
  transition: color 0.35s ease-in-out;
}
.sort__collapse-toggle img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 30px;
  margin-right: 7px;
}
.sort__collapse-toggle p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  transition: color 0.35s ease-in-out;
}
.sort__collapse-toggle p b, .sort__collapse-toggle p span {
  color: #0a3e83;
}
.sort__collapse-toggle .icon-font {
  opacity: 0;
  visibility: hidden;
  color: #ffffff;
  transform: rotate(-90deg);
  font-size: 16px;
  transition: opacity 0.35s ease-in-out, visibility 0.35s ease-in-out;
}
@media screen and (max-width: 1023px) {
  .sort__collapse-toggle .icon-font {
    opacity: 1;
    visibility: visible;
  }
}
.sort__collapse-title .icon-category {
  width: 30px;
  height: 30px;
  margin-right: 7px;
  background-color: #000;
  border-radius: 50%;
  background-size: 24px 24px;
  background-position: center;
}
.sort__collapse-body {
  overflow: hidden;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 90px;
  padding: 10px;
  background-color: #262e45;
}
.sort__collapse-body.is-open {
  display: flex;
}
.sort__collapse-body .site_free {
  outline: none;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 145px;
  height: 50px;
  margin-right: 5px;
  box-shadow: none;
  border: 2px solid #004aac;
  border-radius: 5px;
  background-color: transparent;
  transition: background-color 0.35s ease-in-out;
}
.sort__collapse-body .site_free:hover {
  background-color: #004aac;
  transition: background-color 0.35s ease-in-out;
}
.sort__collapse-body .site_free span {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
}
.sort__collapse-body img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  height: auto;
}

.hdrfav .hdrfavttl {
  background-color: #fc4b15;
  color: #fff;
  text-align: center;
  padding: 3px 15px;
  position: relative;
}
.hdrfav .hdrfavttl:after {
  position: absolute;
  right: 4px;
  top: 5px;
  content: " ";
  display: inline-block;
  background-image: url(../images/arrow-fav.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
}
.hdrfav .favourite_list {
  list-style-type: none;
  padding: 0;
  font-weight: 500;
  margin: 0;
  background: #fff;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 992px) {
  .hdrfav .favourite_list {
    display: none;
    max-height: 152px;
  }
}
.hdrfav .favourite_list li {
  position: relative;
  flex-grow: 1;
  vertical-align: middle;
  border-bottom: 1px solid #070707;
  display: flex;
  align-items: center;
  text-align: left;
  background: #fff;
  padding: 0 10px 0 0;
  margin: 0;
  height: 38px;
}
.hdrfav .favourite_list li:before {
  order: 1;
}
.hdrfav .favourite_list li .id_number {
  margin: 0 5px 0 10px;
  width: 30px;
  text-align: center;
  border: 0;
  font-weight: 400;
  color: #adadad;
  font-size: 14px;
  order: 0;
}
.hdrfav .favourite_list li a, .hdrfav .favourite_list li span {
  color: #113d74;
  display: inline;
  padding: 0;
  font-size: 15px;
  font-family: inherit;
  text-transform: none;
  white-space: nowrap;
}
.hdrfav .favourite_list li .link {
  color: #113d74;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin: 0 20px 0 8px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-transform: capitalize;
  order: 3;
  flex: 1;
}
.hdrfav .favourite_list li .fav_delete {
  cursor: pointer;
  font-size: 18px;
  background: url(../images/icon_delete.png);
  width: 14px;
  height: 16px;
  display: block;
  order: 4;
  margin-right: 15px;
}
.hdrfav .favourite_list li .preview_link {
  height: 16px;
  width: 16px;
  background: url(../images/catIcons2.png);
  background-position: -85px -189px;
  margin-top: 3px;
  order: 5;
}
.hdrfav.open .favourite_list {
  display: block;
}

.lang__flag::before {
  background-image: url("../images/flags.png");
}

.search_results {
  background: #fff;
  box-shadow: 0px 5px 14px 0px rgba(0, 0, 0, 0.75);
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .search_results {
    background: #000;
  }
}
@media screen and (max-width: 767px) {
  .search_results {
    background: #000;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}

.search_result_box {
  overflow: auto;
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .search_result_box {
    background: #000;
    max-height: calc(var(--vh, 1vh) * 100 - 110px);
  }
}
@media screen and (max-width: 767px) {
  .search_result_box {
    background: #000;
    flex: 1;
  }
}

@media screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
  .search_results_box {
    max-height: calc(var(--vh, 1vh) * 100 - 74px);
    min-height: auto;
    overflow: auto;
  }
}

.search_results_top {
  display: flex;
  background: #0a3e83;
  color: #fff;
  align-items: center;
  padding: 5px 5px 5px 0;
}
.search_results_top .top_results {
  padding: 0 25px 0 10px;
  font-size: 18px;
  font-weight: 700;
}
.search_results_top .top_results span {
  font-weight: 350;
}
@media screen and (max-width: 767px) {
  .search_results_top .top_results {
    font-size: 14px;
    padding-right: 5px;
  }
}

.search_results_tags {
  flex: 1;
  overflow: auto;
  white-space: nowrap;
  display: flex;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.search_results_tags::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 767px) {
  .search_results_tags {
    overflow: auto;
  }
}
.search_results_tags .search_category_item {
  text-decoration: none;
  background: #090b27;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 5px;
  margin: 0 2px;
  padding: 4px 13px 4px 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1023px) {
  .search_results_tags .search_category_item {
    padding-right: 3px;
  }
  .search_results_tags .search_category_item span {
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.search_results_tags .search_category_item img {
  max-height: 22px;
  margin-right: 10px;
}
.search_results_tags .search_category_item .icon-category {
  background-color: #000;
  border-radius: 50%;
}
.search_results_tags .search_category_item:before {
  margin-left: 0;
  zoom: 0.8;
}
.search_results_tags .search_category_item:nth-child(5n+1) {
  background: #0677ce;
}
.search_results_tags .search_category_item:nth-child(5n+2) {
  background: #767676;
}
.search_results_tags .search_category_item:nth-child(5n+3) {
  background: #625e73;
}
.search_results_tags .search_category_item:nth-child(5n+4) {
  background: #65a6bb;
}

.search_site_item {
  padding: 5px;
  text-align: center;
  width: 25%;
  max-width: 25%;
  flex: 25% 1;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  .search_site_item {
    width: 33.333334%;
    max-width: 33.333334%;
    flex: 33.333334% 1;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .search_site_item {
    width: 33.333334%;
    max-width: 33.333334%;
    flex: 33.333334% 1;
  }
}
@media screen and (max-width: 767px) {
  .search_site_item {
    width: 50%;
    max-width: 50%;
    flex: 50% 1;
  }
}
.search_site_item_inner {
  cursor: pointer;
}
.search_site_item .title {
  position: relative;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: flex;
  justify-content: center;
  padding: 5px 0;
  color: #0a3e83;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .search_site_item .title {
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .search_site_item .title {
    color: #fff;
  }
}
.search_site_item .title:before {
  position: relative;
  top: 0;
  left: 0;
  border-radius: 12px;
  margin-right: 5px;
}
.search_site_item .title:after {
  display: none;
}
.search_site_item .title span {
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.search_site_item .title img {
  max-width: 100%;
}
.search_site_item .thumb {
  line-height: 0;
  flex: 1;
  display: flex;
  padding-top: 85%;
  position: relative;
}
.search_site_item .thumb:not(.boosted) {
  border-top: 1px solid #9ca4ad;
  border-left: 1px solid #9ca4ad;
  border-right: 1px solid #9ca4ad;
}
.search_site_item .thumb img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  height: 100%;
}
.search_site_item .site_category {
  background: #0a3e83;
  color: #fff;
  font-size: 10px;
  padding: 1px;
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .search_site_item .site_category {
    border-left: 1px solid #9ca4ad;
    border-right: 1px solid #9ca4ad;
    border-bottom: 1px solid #9ca4ad;
  }
}
@media screen and (max-width: 767px) {
  .search_site_item .site_category {
    border-left: 1px solid #9ca4ad;
    border-right: 1px solid #9ca4ad;
    border-bottom: 1px solid #9ca4ad;
  }
}
.search_site_item .site_category a {
  color: #fff;
}
.search_site_item .site_category a:hover, .search_site_item .site_category a:focus {
  color: #fff;
}
.search_site_item .search_item_overlay {
  position: absolute;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  top: 32px;
  bottom: 21px;
  left: 5px;
  right: 5px;
  flex-direction: column;
  z-index: 2;
}
.search_site_item .search_item_overlay a {
  padding: 10px 8px;
  justify-content: center;
  color: #fff;
  background: var(--blue-button-bg, #004aad);
  text-decoration: none;
  border-radius: 5px;
  width: 85%;
  position: relative;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: all 0.2s linear 0s;
}
@media screen and (max-width: 1024px) {
  .search_site_item .search_item_overlay a {
    font-size: 14px;
  }
}
.search_site_item .search_item_overlay a span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search_site_item .search_item_overlay a i {
  transition: all 0.2s linear 0s;
  opacity: 0;
  width: 0;
}
.search_site_item .search_item_overlay a i.right_angle {
  color: #c4f015;
}
.search_site_item .search_item_overlay a i.right_angle:before {
  transform: rotateZ(180deg);
}
.search_site_item .search_item_overlay a:hover i {
  opacity: 1;
  width: 18px;
  padding-left: 10px;
}
.search_site_item .search_item_overlay .link_site {
  background: #c4f015;
  color: #000;
  margin-top: 15px;
}
.search_site_item.boost .search_item_overlay a {
  padding: 8px 0;
}
.search_site_item.boost .search_item_overlay .link_site {
  margin-top: 8px;
}
.search_site_item:hover .search_item_overlay {
  display: flex;
}
@media screen and (max-width: 767px) {
  .search_site_item:hover .search_item_overlay {
    display: none;
  }
}
.search_site_item.touched .search_item_overlay {
  display: flex;
}
@media screen and (max-width: 767px) {
  .search_site_item.touched .search_item_overlay {
    display: flex;
  }
}

.search_pagination {
  text-align: center;
  padding: 10px 0;
}
@media screen and (max-width: 1023px) {
  .search_pagination {
    padding: 0;
  }
}
.search_pagination .item {
  background: #e4e4e4;
  color: #8a8a8a;
  padding: 3px 8px;
  margin: 0 3px;
  display: inline-block;
  cursor: pointer;
}
.search_pagination .item.active {
  background: #07113b;
  color: #d5f34a;
}
.search_pagination .item.prev:after, .search_pagination .item.next:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border: solid #000;
  border-width: 0 2px 2px 0;
}
.search_pagination .item.prev:after {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  margin: 0 -4px 0 0;
}
.search_pagination .item.next:after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  margin: 0 0 0 -4px;
}
.search_pagination .item.prev:hover:after, .search_pagination .item.next:hover:after {
  border-color: #fff;
}

.loading_spinner {
  display: none;
}
.loading_spinner > div {
  display: inline-block;
  width: 8px;
  height: 8px;
  animation: bouncedelay 1.4s infinite ease-in-out;
  border-radius: 100%;
  animation-fill-mode: both;
  background: #0677ce;
}
.loading_spinner .bounce1 {
  animation-delay: -0.32s;
}
.loading_spinner .bounce2 {
  animation-delay: -0.16s;
}

.search_load_more.loading {
  font-size: 0;
  text-indent: 0;
}
.search_load_more.loading .loading_spinner {
  display: block;
}

@keyframes bouncedelay {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
.pagi {
  text-align: center;
  margin: 20px 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .pagi .pages {
    display: none;
  }
}
.pagi span, .pagi a, .pagi a:visited {
  display: inline-block;
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 3px;
  margin: 3px 1px;
  color: #fff;
  border: 1px solid #8896a7;
  background: #8896a7 url(../images/bg-pagi.png) left bottom repeat-x;
  font-family: Arial, san-serif;
}
.pagi span.visible-xs-inline, .pagi a.visible-xs-inline, .pagi a:visited.visible-xs-inline {
  display: none;
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .pagi span, .pagi a, .pagi a:visited {
    font-size: 24px;
    padding: 3px 10px;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) {
  .pagi span, .pagi a, .pagi a:visited {
    font-size: 24px;
    padding: 3px 10px;
    font-weight: 600;
  }
  .pagi span.visible-xs-inline, .pagi a.visible-xs-inline, .pagi a:visited.visible-xs-inline {
    display: inline-block;
  }
}
.pagi span, .pagi a.active {
  border: 1px solid #285183;
  background: #285183 url(../images/bg-pagi-ovr.png) left bottom repeat-x;
  color: #fff;
  text-decoration: none;
}

.mpg-pagenavi {
  display: flex;
  justify-content: center;
  margin: 0 5px;
}
.mpg-pagenavi .page_left {
  display: inline-block;
  overflow-y: hidden;
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .mpg-pagenavi .page_left {
    overflow-x: hidden;
    flex: 0 0 95px;
    white-space: nowrap;
  }
  .mpg-pagenavi .page_left.page_1 {
    flex: 0 0 0;
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .mpg-pagenavi .page_left {
    overflow-x: hidden;
    flex: 0 0 95px;
    white-space: nowrap;
    display: none;
  }
  .mpg-pagenavi .page_left.page_1 {
    flex: 0 0 0;
    display: none;
  }
}
.mpg-pagenavi .page_right {
  display: inline-block;
  overflow-y: hidden;
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .mpg-pagenavi .page_right {
    overflow-x: hidden;
    flex: 0 0 95px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .mpg-pagenavi .page_right {
    overflow-x: hidden;
    flex: 0 0 95px;
    white-space: nowrap;
    display: none;
  }
}
.mpg-pagenavi .page_middle {
  display: inline-block;
  overflow-y: hidden;
  overflow-x: auto;
  white-space: nowrap;
}

.login_container {
  background-color: #0e123c;
  padding: 15px;
}
@media screen and (max-width: 1023px) {
  .login_container {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .login_container {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .login_container .login_top {
    padding: 15px;
    position: relative;
  }
  .login_container .login_top:after {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    content: " ";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 20px 0 20px;
    border-color: #0e123c transparent transparent transparent;
  }
}
@media screen and (max-width: 1023px) and (orientation: landscape) {
  .login_container .login_top {
    max-width: 430px;
    margin: 0 auto;
    text-align: center;
  }
}
.login_container .login_container_inner {
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.login_container .login_container_inner.forgot .info {
  color: #9294ad;
  font-size: 14px;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 1023px) {
  .login_container .login_container_inner.forgot .info {
    font-size: 17px;
    color: #d2d2d2;
  }
}
@media screen and (max-width: 767px) {
  .login_container .login_container_inner.forgot .info {
    margin-bottom: 10px;
  }
}
.login_container .login_container_inner.forgot .info a {
  color: #c7f928;
}
@media screen and (max-width: 1023px) {
  .login_container .login_container_inner.forgot .info a {
    display: block;
    border: 3px solid #003b85;
    color: #fff;
    padding: 10px;
  }
}
.login_container .login_container_inner.forgot .info .status {
  color: #f00;
  font-size: 18px;
  font-weight: 600;
  margin: 15px 0 5px;
  line-height: 25px;
}
.login_container .login_container_inner .info_create_mobile {
  color: #a4a4a4;
  padding: 15px 0;
}
@media screen and (max-width: 1023px) {
  .login_container .login_container_inner .info_create_mobile {
    background: #080915;
    padding: 15px 30px;
    text-align: center;
  }
}
@media screen and (max-width: 1023px) and (orientation: landscape) {
  .login_container .login_container_inner .info_create_mobile {
    max-width: 430px;
    margin: 0 auto;
  }
  .login_container .login_container_inner .info_create_mobile_outer {
    background: #080915;
  }
}
.login_container .login_container_inner .info_create_mobile a {
  color: #c7f928;
}
@media screen and (max-width: 1023px) {
  .login_container .login_container_inner .info_create_mobile a {
    margin-top: 10px;
    display: block;
    border: 3px solid #003b85;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: 600;
  }
}
.login_container .login_form {
  width: 50%;
  padding: 0 70px;
}
@media screen and (max-width: 1023px) {
  .login_container .login_form {
    width: 100%;
    padding: 0;
  }
}
.login_container .login_form input {
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .login_container .login_form input {
    width: 100%;
  }
}
.login_container .login_form .signup {
  color: #c7f928;
  float: left;
}
.login_container .login_form .forgot {
  color: #999999;
}
@media screen and (max-width: 1023px) {
  .login_container .login_form .forgot {
    text-align: center;
    display: block;
    float: none;
    margin-top: 10px;
    color: #3b92ff;
  }
}
.login_container .login_form .already_have {
  color: #999;
  text-align: center;
  margin-top: 15px;
}
@media screen and (max-width: 1023px) {
  .login_container .login_form .already_have {
    color: #d2d2d2;
    line-height: 23px;
  }
}
@media screen and (max-width: 767px) {
  .login_container .login_form .already_have {
    font-size: 12px;
  }
}
.login_container .login_form .already_have a {
  color: #c7f928;
}
@media screen and (max-width: 1023px) {
  .login_container .login_form .already_have a {
    color: #157dff;
  }
}
@media screen and (max-width: 1023px) {
  .login_container .remeber_me {
    text-align: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .login_container .remeber_me input[type=checkbox] {
    width: auto;
    margin-right: 10px;
  }
  .login_container .remeber_me label {
    white-space: nowrap;
  }
}
.login_container .login_banner {
  width: 50%;
}
@media screen and (max-width: 1023px) {
  .login_container .login_banner {
    display: none;
  }
}
.login_container .title {
  text-align: center;
  color: #fff;
  font-size: 34px;
  font-weight: 600;
  margin: 20px 0 40px;
}
@media screen and (max-width: 1023px) {
  .login_container .title {
    font-size: 22px;
    color: #4296ff;
    text-transform: uppercase;
    margin: 0 0 0;
  }
}
.login_container .signup {
  margin: 0;
}
.login_container .top_forgot_text {
  color: #d2d2d2;
}
@media screen and (max-width: 767px) {
  .login_container .top_forgot_text {
    text-align: center;
    padding-top: 10px;
  }
}

.user_container_popup .user_tab_login, .user_container_popup .user_tab_join, .user_container_popup .user_tab_forgot {
  display: none;
  align-items: center;
}
.user_container_popup.login .user_tab_join, .user_container_popup.login .user_tab_forgot {
  display: none;
}
.user_container_popup.login .user_tab_login {
  display: flex;
}
.user_container_popup.join .user_tab_login, .user_container_popup.join .user_tab_forgot {
  display: none;
}
.user_container_popup.join .user_tab_join {
  display: flex;
}
.user_container_popup.forgot .user_tab_join, .user_container_popup.forgot .user_tab_login {
  display: none;
}
.user_container_popup.forgot .user_tab_forgot {
  display: flex;
}

.result-message, .forgot_success {
  display: block;
  padding: 6px 0;
  font-weight: 600;
  text-align: center;
  color: #fff;
}
.result-message.alert-danger, .forgot_success.alert-danger {
  color: #ff6d6d;
}
.result-message .check_folder, .forgot_success .check_folder {
  color: #d1f34b;
}

.is_desktop {
  display: block;
}
@media screen and (max-width: 1023px) {
  .is_desktop {
    display: none;
  }
}

.is_mobile {
  display: none;
}
@media screen and (max-width: 1023px) {
  .is_mobile {
    display: block;
  }
}

@media screen and (max-width: 1023px) {
  .login_bottom {
    background: #000;
  }
}

.login_panel {
  background: #fff;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}
.login_panel ul {
  font-family: gloria hallelujah, cursive;
  color: #d6ff23;
  background: #0e478d;
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #0e478d), color-stop(100%, #0a3365));
  background: linear-gradient(to bottom, #0e478d 0%, #0a3365 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0e478d",endColorstr="#0a3365",GradientType=0);
  padding: 10px 10px 0;
  margin: 25px 0 0;
  text-align: center;
  font-size: 28px;
  border-bottom: 8px solid #90b0ca;
  list-style-type: none;
}
@media screen and (max-width: 1023px) {
  .login_panel ul {
    font-size: 16px;
  }
}
.login_panel ul li {
  width: 50%;
  text-align: center;
  display: inline-block;
  padding: 10px 15px;
}
.login_panel ul li.active {
  background: #90b0ca;
}
.login_panel ul a {
  color: #fff !important;
  text-transform: uppercase;
}
.login_panel .tab-content {
  background: #fff;
}

.signup_tip_conainer {
  padding-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
}
.signup_tip_conainer .signup_tip {
  width: 33.3333334%;
  color: #0a3862;
  text-align: left;
  position: relative;
  padding: 0 25px 0 80px;
  margin-top: 15px;
  font-size: 22px;
  display: inline-block;
  font-weight: 700;
  line-height: 28px;
  text-transform: uppercase;
  border-right: 2px solid #eaeaea;
}
.signup_tip_conainer .signup_tip i {
  background: url(../images/green_tick.png);
  width: 50px;
  height: 50px;
  display: inline-block;
  position: absolute;
  left: 20px;
  top: 0;
}

.cleanlogin-container {
  padding: 15px;
}
@media screen and (max-width: 1023px) {
  .cleanlogin-container {
    padding: 35px 30px 15px;
  }
}
@media screen and (max-width: 1023px) and (orientation: landscape) {
  .cleanlogin-container {
    margin: 0 auto;
  }
}
.cleanlogin-container .status.alert-danger {
  color: #ff4f4f;
  text-align: center;
  padding-bottom: 15px;
}
.cleanlogin-container .join_button, .cleanlogin-container input[type=submit], .cleanlogin-container .submit {
  width: 100%;
  border: none;
  height: 60px;
  padding: 0;
  font-size: 26px;
  font-weight: 600;
  color: #021b3b;
  text-transform: uppercase;
  cursor: pointer;
  background: #c7f928;
}
@media screen and (max-width: 1023px) {
  .cleanlogin-container .join_button, .cleanlogin-container input[type=submit], .cleanlogin-container .submit {
    font-size: 18px;
    background: #003b85;
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .cleanlogin-container .join_button, .cleanlogin-container input[type=submit], .cleanlogin-container .submit {
    font-size: 15px;
  }
}
.cleanlogin-container form label {
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .cleanlogin-container form label {
    color: #fff;
  }
}
.cleanlogin-container .forgot {
  float: right;
}

.cleanlogin-field {
  margin-bottom: 25px;
  border-radius: 8px;
}
.cleanlogin-field input {
  padding: 15px 25px;
  border-color: #333;
  border-radius: 3px;
  width: 100%;
}
.cleanlogin-field input.error {
  border-color: red;
}

.btn_ajax.loading {
  font-size: 0;
  text-indent: 0;
}
.btn_ajax.loading .loading_spinner {
  display: block;
}

/*.header {
	@import "_components/common/header--view";
}*/
.header-nav-blog:before {
  background-image: url("../images/sprite.png");
  background-position: -34px 0px;
  background-repeat: no-repeat;
  width: 23px;
  height: 22px;
}
@media only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .header-nav-blog:before {
    background-size: 98px 98px;
    background-image: url("../images/sprite@2x.png");
  }
}

.header-nav-email:before {
  background-image: url("../images/sprite.png");
  background-position: -45px -59px;
  background-repeat: no-repeat;
  width: 18px;
  height: 13px;
}
@media only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .header-nav-email:before {
    background-size: 98px 98px;
    background-image: url("../images/sprite@2x.png");
  }
}

.header-nav-folder:before {
  background-image: url("../images/sprite.png");
  background-position: -19px -81px;
  background-repeat: no-repeat;
  width: 15px;
  height: 14px;
}
@media only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .header-nav-folder:before {
    background-size: 98px 98px;
    background-image: url("../images/sprite@2x.png");
  }
}

.header-nav-home:before {
  background-image: url("../images/sprite.png");
  background-position: -22px -59px;
  background-repeat: no-repeat;
  width: 18px;
  height: 16px;
}
@media only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .header-nav-home:before {
    background-size: 98px 98px;
    background-image: url("../images/sprite@2x.png");
  }
}

.header-nav-info:before {
  background-image: url("../images/sprite.png");
  background-position: -88px 0px;
  background-repeat: no-repeat;
  width: 10px;
  height: 23px;
}
@media only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .header-nav-info:before {
    background-size: 98px 98px;
    background-image: url("../images/sprite@2x.png");
  }
}

.header-nav-livesex:before {
  background-image: url("../images/sprite.png");
  background-position: -34px -27px;
  background-repeat: no-repeat;
  width: 23px;
  height: 21px;
}
@media only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .header-nav-livesex:before {
    background-size: 98px 98px;
    background-image: url("../images/sprite@2x.png");
  }
}

.header-nav-meetfuck:before {
  background-image: url("../images/sprite.png");
  background-position: 0px 0px;
  background-repeat: no-repeat;
  width: 29px;
  height: 22px;
}
@media only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .header-nav-meetfuck:before {
    background-size: 98px 98px;
    background-image: url("../images/sprite@2x.png");
  }
}

.header-nav-megaphone:before {
  background-image: url("../images/sprite.png");
  background-position: 0px -59px;
  background-repeat: no-repeat;
  width: 17px;
  height: 17px;
}
@media only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .header-nav-megaphone:before {
    background-size: 98px 98px;
    background-image: url("../images/sprite@2x.png");
  }
}

.header-nav-porncoupons:before {
  background-image: url("../images/sprite.png");
  background-position: 0px -27px;
  background-repeat: no-repeat;
  width: 22px;
  height: 27px;
}
@media only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .header-nav-porncoupons:before {
    background-size: 98px 98px;
    background-image: url("../images/sprite@2x.png");
  }
}

.header-nav-porngames:before {
  background-image: url("../images/sprite.png");
  background-position: -62px -22px;
  background-repeat: no-repeat;
  width: 16px;
  height: 21px;
}
@media only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .header-nav-porngames:before {
    background-size: 98px 98px;
    background-image: url("../images/sprite@2x.png");
  }
}

.header-nav-pornstars:before {
  background-image: url("../images/sprite.png");
  background-position: 0px -81px;
  background-repeat: no-repeat;
  width: 14px;
  height: 17px;
}
@media only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .header-nav-pornstars:before {
    background-size: 98px 98px;
    background-image: url("../images/sprite@2x.png");
  }
}

.header-nav-videos:before {
  background-image: url("../images/sprite.png");
  background-position: -62px 0px;
  background-repeat: no-repeat;
  width: 21px;
  height: 17px;
}
@media only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .header-nav-videos:before {
    background-size: 98px 98px;
    background-image: url("../images/sprite@2x.png");
  }
}

.icon-nav-folder {
  width: 17px;
}
.icon-nav-blog {
  width: 23px;
}
.icon-nav-videos {
  width: 22px;
}
.icon-nav-pornstars {
  width: 17px;
}
.icon-nav-porncoupons {
  width: 22px;
}
.icon-nav-porngames {
  width: 22px;
}
.icon-nav-sex {
  width: 34px;
}
.icon-nav-livesex {
  width: 22px;
}
.icon-nav-info {
  width: 24px;
}
.icon-nav-mail {
  width: 22px;
}
.icon-nav-megaphone {
  width: 20px;
}

@font-face {
  font-family: "iconFont";
  src: url("../fonts/iconFont.eot");
  src: url("../fonts/iconFont.eot?#iefix") format("eot"), url("../fonts/iconFont.woff2") format("woff2"), url("../fonts/iconFont.woff") format("woff"), url("../fonts/iconFont.ttf") format("truetype"), url("../fonts/iconFont.svg#iconFont") format("svg");
}
.icon-sun:before, .icon-star:before, .icon-star-fill:before, .icon-sort:before, .icon-search:before, .icon-point:before, .icon-play-button:before, .icon-pause:before, .icon-out:before, .icon-moon:before, .icon-like:before, .icon-left-arrow:before, .icon-key:before, .icon-enter:before, .icon-delete:before, .icon-close:before, .icon-arrow-angle:before {
  font-family: "iconFont", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
}

.icon-arrow-angle:before {
  content: "\e001";
}

.icon-close:before {
  content: "\e002";
}

.icon-delete:before {
  content: "\e003";
}

.icon-enter:before {
  content: "\e004";
}

.icon-key:before {
  content: "\e005";
}

.icon-left-arrow:before {
  content: "\e006";
}

.icon-like:before {
  content: "\e007";
}

.icon-moon:before {
  content: "\e008";
}

.icon-out:before {
  content: "\e009";
}

.icon-pause:before {
  content: "\e00a";
}

.icon-play-button:before {
  content: "\e00b";
}

.icon-point:before {
  content: "\e00c";
}

.icon-search:before {
  content: "\e00d";
}

.icon-sort:before {
  content: "\e00e";
}

.icon-star-fill:before {
  content: "\e00f";
}

.icon-star:before {
  content: "\e010";
}

.icon-sun:before {
  content: "\e011";
}

.modal_age {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.modal_age .modal_inner {
  padding: 4rem 2rem;
  background: #000;
  box-shadow: 0 0 40px 5px rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  border: 1px solid #313131;
  text-align: center;
  max-width: 820px;
}
.modal_age .modal_inner .title {
  font-size: 2.5rem;
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  color: #fff;
}
.modal_age .modal_inner p {
  font-size: 1.25rem;
  margin: 0;
  color: #ccc;
}
.modal_age .modal_inner .btn {
  margin-top: 3rem;
  font-size: 1.25rem;
  width: 20rem;
  max-width: 100%;
  padding: 1rem;
  color: #fff;
  font-weight: 400;
  background: #1f1f1f;
  border: none;
  cursor: pointer;
}
.modal_age .modal_inner .btn.btn_in {
  background: #2caf61;
  width: auto;
}
.modal_age .modal_inner .btn.btn_exit {
  background: #666;
  color: #fff;
  width: auto;
}
.modal_age_p {
  line-height: 1.7;
}
.modal_age_buttons {
  gap: 25px;
}

.cookieBanner {
  background: rgba(27, 27, 27, 0.85);
  text-align: center;
  height: 25px;
  width: 100%;
  position: fixed;
  bottom: 0;
  vertical-align: middle;
  z-index: 100;
  line-height: 25px;
  font-size: 0.7rem;
  color: #fff;
}
.cookieBanner button {
  border: 0;
  background: #d5f34a;
  color: #000;
  border-radius: 5px;
  vertical-align: middle;
  font-weight: 400;
  margin-left: 20px;
  font-size: 0.7rem;
  padding: 4px 10px;
  cursor: pointer;
}

.go-top {
  position: fixed;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  z-index: 14;
  height: 48px;
  width: 48px;
  border-radius: 3px;
  cursor: pointer;
  --button-size: 44px;
  --border-width: 3px;
  --button-color: #007bff;
  --border-color: #ffffff;
  transition: transform 0.2s ease;
  width: var(--button-size);
  height: var(--button-size);
  top: calc(50% - var(--button-size) / 2);
  right: calc((100vw - var(--container-width)) / 4 - var(--button-size) / 2);
  transform: rotate(0deg);
  background-color: var(--button-color);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.go-top svg {
  width: 100%;
  height: 100%;
}
.go-top::before {
  content: "";
  position: absolute;
  top: 3%;
  left: 3%;
  width: 94%;
  height: 94%;
  border-radius: 50%;
  border: var(--border-width) solid var(--border-color);
  clip-path: circle(50%);
  -webkit-mask-image: conic-gradient(var(--border-color) calc(var(--percent) * 100%), transparent 0);
          mask-image: conic-gradient(var(--border-color) calc(var(--percent) * 100%), transparent 0);
}
.go-top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 6px 12px #007bff;
  transition: opacity 0.5s ease, visibility 0.5s ease, box-shadow 0.5s ease;
}
.go-top:active::after {
  opacity: 1;
  visibility: visible;
  box-shadow: 0 0 0 0 #007bff;
  transition: 0s;
}
.go-top:hover {
  background-color: rgba(167, 167, 167, 0.3);
}
@media screen and (max-width: 991.98px) {
  .go-top {
    left: calc(50% - 21px);
    top: auto;
    bottom: 8px;
  }
}
.go-top.scroll-to-top {
  transform: rotate(180deg);
}
.go-top .scroll-progress-bar {
  stroke: #fff;
  stroke-dasharray: var(--circ);
  stroke-dashoffset: var(--offset);
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

@media screen and (max-width: 991.98px) {
  .home .go-top {
    right: 29px;
    margin-right: -21px;
    left: auto;
    bottom: 150px;
  }
  .archive.category .go-top {
    left: calc(75% - 21px);
  }
  .single-sites .go-top.right {
    left: calc(75% - 21px);
  }
  .page-template-page-categories .go-top {
    left: calc(75% - 21px);
  }
  .tax-category-tag .go-top {
    left: calc(75% - 21px);
  }
}
body.chatbot_active .go-top {
  display: none;
}

.light .footer__nav a:hover {
  color: #000;
}

.footer {
  display: flex;
  flex-direction: column;
  z-index: 2;
  background: var(--footer-bg);
}
.footer__wrapper-1 {
  display: flex;
  padding-top: 45px;
}
@media screen and (max-width: 767px) {
  .footer__wrapper-1 {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.footer__wrapper-2 {
  display: flex;
  align-items: center;
  min-height: 55px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #081b49;
}
@media screen and (max-width: 767px) {
  .footer__wrapper-2 {
    margin-top: 0;
  }
}
.footer__container {
  padding-bottom: 30px;
}
.footer__container-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .footer__container {
    padding-bottom: 0;
  }
}
.footer__title {
  padding-bottom: 10px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .footer__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer__title {
    font-size: 14px;
  }
}
.footer__desc {
  padding-bottom: 30px;
  color: #4b4e6b;
  line-height: 1.8;
  font-size: 16px;
}
@media screen and (max-width: 1023px) {
  .footer__desc {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .footer__desc {
    font-size: 12px;
  }
}
.footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4099f9;
  font-size: 16px;
}
@media screen and (max-width: 1023px) {
  .footer__nav {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav {
    flex-wrap: wrap;
  }
}
.footer__nav p {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer__nav p {
    font-size: 0;
  }
}
.footer__nav a {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #4099f9;
  line-height: 2.273;
  padding: 0 10px;
  transition: color 0.35s ease-in-out;
}
@media screen and (max-width: 1023px) {
  .footer__nav a {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav a {
    display: flex;
    align-items: center;
    min-height: 25px;
    font-size: 12px;
  }
}
.footer__nav a:hover {
  color: #ffffff;
  transition: color 0.35s ease-in-out;
}
.footer__nav-item {
  display: flex;
}
.footer__nav-item span {
  margin-left: 15px;
  margin-right: 15px;
  font-size: 16px;
  color: rgb(70, 128, 202);
  line-height: 2.273;
}
@media screen and (max-width: 1023px) {
  .footer__nav-item span {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav-item span {
    font-size: 0;
  }
}
.footer__nav-link {
  font-size: 16px;
  color: rgb(70, 128, 202);
  line-height: 2.273;
  transition: color 0.35s ease-in-out;
}
@media screen and (max-width: 1023px) {
  .footer__nav-link {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav-link {
    display: flex;
    align-items: center;
    min-height: 25px;
    font-size: 12px;
  }
}
.footer__nav-link:hover {
  color: #ffffff;
  transition: color 0.35s ease-in-out;
}
.footer__jobs {
  text-align: center;
  font-size: 14px;
  padding: 15px 0 0;
}
.footer__jobs-a {
  color: #ccc;
}
.footer__jobs-a:hover {
  color: #4099f9;
}

@media screen and (max-width: 767px) {
  .user_page_1 .footer__wrapper-1 {
    padding-top: 0;
  }
}

.footer_b {
  padding: 5px 0 15px 0;
}
.footer_b.nopadding {
  padding: 0 0 15px;
  background: transparent;
}
.footer_b_title {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 22px;
  padding: 15px 15px 10px;
}
.footer_b_title a {
  color: #fff;
}
.footer_b_title:hover, .footer_b_title:focus {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer_b_title {
    font-size: 14px;
    line-height: 20px;
    padding: 7px 15px;
    justify-content: center;
  }
}
.footer_b_title:before {
  display: inline-block;
  content: " ";
  background-image: url("../images/mpg-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .footer_b_title:before {
    display: none;
    width: 48px;
    height: 48px;
  }
}
.footer_b_top {
  background: #1e559a;
  border-radius: 8px;
}
.footer_b_top img {
  width: 100%;
  border: 8px;
}
.footer_b_inner {
  padding: 0 10px 10px 10px;
}
.footer_b_link {
  --animation-rgb-value: 46, 175, 91;
  display: flex;
  margin-top: 8px;
  border-radius: 8px;
  background: #2eaf61;
  color: #fff;
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .footer_b_link {
    font-size: 14px;
    line-height: 20px;
    padding: 4px 10px;
  }
}
.footer_b_link:focus {
  color: #fff;
}
.footer_b_link:hover {
  color: #fff;
  animation: pulse 1s infinite;
}
.footer_b_img_holder {
  border-top: none;
  display: block;
  margin: 0 auto 0 0;
  border-radius: 0 0 10px 10px;
  font-size: 0;
  overflow: hidden;
  position: relative;
  padding-top: 72.41758242%;
}
.footer_b_img_holder img {
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.floating_bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  background: #2a2b31;
  text-align: center;
  z-index: 12;
  display: none;
}
@media screen and (max-width: 767px) {
  .floating_bar {
    display: block;
  }
}
@media screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
  .floating_bar {
    line-height: 45px;
  }
}
@media screen and (min-device-width: 414px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
  .floating_bar {
    line-height: 45px;
  }
}
.floating_bar a, .floating_bar span {
  color: #fff;
}
.floating_bar a {
  font-size: 16px;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
  .floating_bar a {
    line-height: 45px;
  }
}
@media screen and (min-device-width: 414px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
  .floating_bar a {
    line-height: 45px;
  }
}
.floating_bar a i {
  position: absolute;
  height: 70px;
  width: 70px;
  right: 0;
  top: 0;
  background: #3a8300;
  background: linear-gradient(to bottom, #3a8300 0%, #327200 60%, #245100 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#3a8300",endColorstr="#245100",GradientType=0 );
}
@media screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
  .floating_bar a i {
    height: 45px;
  }
}
@media screen and (min-device-width: 414px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
  .floating_bar a i {
    height: 45px;
  }
}
.floating_bar a i b {
  width: 100%;
  height: 100%;
  content: " ";
  display: block;
  background: url(../images/icon_review_floating.png) no-repeat;
  background-position: center;
}
@media screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
  .floating_bar a i b {
    background-size: auto 35px;
  }
}
@media screen and (min-device-width: 414px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
  .floating_bar a i b {
    background-size: auto 35px;
  }
}
.floating_bar .out-link {
  position: absolute;
  bottom: 100%;
  width: 100%;
  height: 30px;
  color: #fff;
  background: #2eaf61;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  gap: 10px;
}
.floating_bar .out-link .visit_icon {
  margin-left: 5px;
  width: 16px;
  height: 16px;
}
.floating_bar .item-link {
  width: 100%;
  text-align: center;
  position: relative;
}
.floating_bar .item-link .iconCat::before {
  margin: 0;
}
.floating_bar .item-counter {
  position: absolute;
  left: calc(50% + 20px);
  color: #fff;
}
.floating_bar .item-ico {
  height: 33.5px;
  width: 33.5px;
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}
.floating_bar .item-ico svg {
  width: 100%;
  height: 100%;
}
.floating_bar .item-title {
  font-size: 12px;
}
.floating_bar .icon-category {
  height: 33px;
}
.floating_bar ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 5px 10px;
}
.floating_bar li {
  width: 33.33%;
}

.footer_description h2 {
  padding-bottom: 10px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .footer_description h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer_description h2 {
    font-size: 14px;
  }
}
.footer_description h3 {
  padding-bottom: 10px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .footer_description h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer_description h3 {
    font-size: 14px;
  }
}
.footer_description p {
  padding-bottom: 30px;
  color: #d7d7d7;
  line-height: 1.8;
  font-size: 16px;
  margin: 0;
}
@media screen and (max-width: 1023px) {
  .footer_description p {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .footer_description p {
    font-size: 12px;
  }
}
.footer_description:not(.show_all) p:first-of-type {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  height: 120px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .footer_description:not(.show_all) p:first-of-type {
    height: 85px;
  }
}
.footer_description:not(.show_all) .p1:nth-child(n+3) {
  display: none;
}
.footer_description .btn_show_more {
  text-align: center;
  padding: 10px 0 40px;
  font-weight: 600;
  color: var(--heading-small-color, #000);
}
.footer_description .btn_show_more-text {
  cursor: pointer;
}
.footer_description .btn_show_more-text svg {
  fill: var(--heading-small-color, #000);
}
.footer_description.show_all .btn_show_more {
  display: none;
}

.light .footer__nav a {
  color: #014293;
}
.light .footer__title {
  color: #576576;
}
.light .footer_description h2 {
  color: #000;
}
.light .footer_description h3 {
  color: #000;
}
.light .footer_description p {
  color: #576576;
}
.light .footer_description a {
  color: #014293;
}
.light .floating_bar {
  background: #fff;
}
.light .floating_bar a, .light .floating_bar span {
  color: #000;
}
.light .floating_bar .out-link {
  color: #fff;
}
.light .footer__jobs-a {
  color: #014293;
}

#login_popup {
  position: fixed;
  display: flex;
  width: 100%;
  height: 0;
  top: 100%;
  opacity: 0;
  left: 0;
  z-index: 100000;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  flex-shrink: 0;
  flex-basis: auto;
  flex-grow: unset;
  align-items: center;
  transition: all 0.8s;
}
#login_popup.is-open {
  height: 100%;
  top: 0;
  opacity: 1;
}
#login_popup .login_container {
  background-color: #0e123c;
  padding: 15px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  #login_popup .login_container {
    width: 90%;
  }
  #login_popup .login_container .user_tab_login {
    width: 100%;
  }
}
#login_popup .login_popup_close {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #login_popup .login_popup_close img {
    width: 25px;
    height: 25px;
  }
}
/*# sourceMappingURL=maps/misc.css.map */
