.detect-block {
    position: absolute;
    background: #fff;
    z-index: 111;
    color: #000;
    border-radius: 10px;
    padding: 20px 20px 20px;
    font-size: 13px;
    line-height: 18px;
    bottom: calc(100% + 1px);
    border: 3px solid #bababa;
    margin: 0 0 10px 0;
    width: 330px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}

.detect-block .btn-close {
    position: absolute;
    left: 10px;
    top: 10px;
    cursor: pointer;
    height: 10px;
    width: 10px;
}

.detect-block .btn-close:after,
.detect-block .btn-close:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 2px;
    height: 14px;
    background: #96979f;
}

.detect-block .btn-close:before {
    transform: rotate(45deg);
}

.detect-block .btn-close:after {
    transform: rotate(-45deg);
}

.detect-block.shown {
    display: block;
}

.detect-block .title {
    font-size: 14px;
    line-height: 1.2;
    color: #4e4e4e;
    margin-bottom: 10px;
    font-weight: 500;
}

.detect-block .title .link-icon-base:before {
    margin-right: 2px;
    margin-left: 4px;
}

.detect-block .text {
    font-size: 12px;
    line-height: 16px;
    margin: 0 0 5px 0;
    color: #767676;
}

.detect-block .btn-action {
    background: #30af62;
    color: #fff;
    display: block;
    width: 100%;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    padding: 10px 4px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    text-align: center;
    text-decoration: none;
    margin: 10px 0 8px 0;
    position: relative;
    z-index: 2;
}

@media (min-width: 1025px) {
    .detect-block .btn-action:hover {
        animation: pulse-green 1s;
    }
}

.detect-block .btn-action:after {
    content: "";
    background: url(../images/tpd-half-thumbsup.svg) no-repeat;
    width: 50px;
    height: 50px;
    background-size: contain;
    position: absolute;
    right: -22px;
    top: -8px;
    z-index: 1;
}

.detect-block .btn-cancel {
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    cursor: pointer;
    position: relative;
    z-index: 2;
    color: #ff9701;
}

.detect-block:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    margin: auto;
    border-width: 15px 12px 0 15px;
    border-color: #bababa transparent transparent transparent;
}

.detect-block:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    top: 100%;
    left: 0;
    right: 0;
    margin: auto;
    border-width: 10px 10px 0 10px;
    border-color: #fff transparent transparent transparent;
}

@media (max-width: 1150px) {
    .detect-block {
        width: 250px;
        padding: 19px 16px;
    }
    .detect-block .title {
        font-size: 11px;
        line-height: 11px;
    }
    .detect-block .text {
        font-size: 10px;
        line-height: 10px;
    }
    .detect-block .btn-action {
        font-size: 11px;
    }
    .detect-block .btn-action:after {
        left: 90%;
    }
    .detect-block .btn-cancel {
        font-size: 11px;
        line-height: 11px;
    }
}

@media (max-width: 991px) {
    .detect-block {
        display: none !important;
    }
}

#main_container {
    padding: 0 5px;
    margin: 0 -5px;
    display: -ms-grid;
    display: grid;
    row-gap: 10px;
    column-gap: 8px;
    -ms-grid-rows: initial;
    grid-template-rows: initial;
    -ms-grid-columns: repeat(4, 1fr);
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas: initial;
    grid-auto-flow: row dense;
    grid-auto-rows: 1px;
    grid-auto-columns: initial;
}

@media (max-width: 991px) {
    #main_container {
        display: flex;
        display: -ms-flexbox;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0 40px;
    }
    #main_container .category-container {
        width: 100%;
        margin-bottom: 8px;
    }
}

#main_container.loading + .loader {
    display: inline-block;
}

.loader {
    display: none;
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 200px);
}

@media (max-width: 991px) {
    .loader {
        top: calc(100% + 150px);
    }
}

@media (max-width: 768px) {
    .loader {
        top: calc(100% + 100px);
    }
}

@media (max-width: 576px) {
    .loader {
        top: calc(100% + 50px);
    }
}

@media (max-width: 480px) {
    .loader {
        top: calc(100% + 30px);
    }
}

.link-details-review a,
.category-desc a {
    color: #2eaf61 !important;
}

.copyright-message {
    line-height: 1.8em;
    font-size: 17px;
    color: #4e4e4e;
    padding: 0;
    border: none;
    position: relative;
    background-color: #00add9;
    background-image: linear-gradient(to bottom, #00ccff 0%, #017acf 41%, #017acf 100%);
}

.copyright-message a {
    color: #ffba01;
}

.copyright-message .inner-footer {
    margin: 0px auto;
    max-width: 1150px;
    padding: 15px 10px 25px;
    margin-top: 50px;
    position: relative;
}

@media (max-width: 1400px) {
    .copyright-message .inner-footer {
        max-width: 1020px;
    }
}

.copyright-message .inner-footer .copyright-message-headline {
    margin-bottom: 10px;
    font-size: 24px;
    color: #fff;
    font-weight: 500;
}

.copyright-message .inner-footer .copyright-message-headline img {
    height: 45px;
    vertical-align: middle;
}

.copyright-message .inner-footer p img {
    height: 35px;
    vertical-align: middle;
}

@media (max-width: 991px) {
    .copyright-message .inner-footer .copyright-message-headline img,
    .copyright-message .inner-footer p img {
        height: 28px;
    }
}

.copyright-message .inner-footer p {
    margin-bottom: 26px;
    color: #ffffff;
}

.copyright-message.with-bg {
    margin-top: 32%;
}

@media (max-width: 991px) {
    .copyright-message.with-bg {
        margin-top: 35%;
    }
}

.copyright-message.with-bg > img,
.copyright-message.with-bg > svg {
    position: absolute;
    display: inline-block;
    width: 100%;
    max-width: initial;
    margin: 0px auto;
    bottom: calc(100% - 1px);
    left: 50%;
    transform: translateX(-50%);
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .copyright-message.with-bg > img,
    .copyright-message.with-bg > svg {
        transform: none;
        left: 0;
        height: 28vw;
        bottom: calc(100% - 2px);
    }
}

.copyright-message.with-bg .animation-wrapper {
    position: relative;
    width: 100%;
    padding-top: 37%;
    overflow: hidden;
}

.scroll-to-next {
    border: 1px solid #ec7621;
    position: fixed;
    top: 50%;
    margin: -18px 0 0 0;
    right: 5px;
    z-index: 99;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: #ff9701;
}

.scroll-to-next:before {
    content: '';
    width: 18px;
    height: 24px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(../images/icons/w-icon-arrow-down.svg) no-repeat;
    background-size: contain;
    background-position: center;
}

.scroll-to-next.to-top {
    transform: rotate(180deg);
}

@media (min-width: 992px) {
    .scroll-to-next {
        display: none;
    }
}

@media (max-width: 991px) {
    footer.w-margin .copy-text {
        margin-bottom: 80px;
    }
}

.bottom-fixed-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 49;
    background: #fff;
    padding: 13px 0 12px;
}

@media screen and (min-width: 992px) {
    .bottom-fixed-buttons {
        display: none;
    }
}

.bottom-fixed-buttons .bottom-site-info {
    text-align: center;
    z-index: 101;
    margin: 5px;
    border-radius: 5px;
    position: relative;
    border-radius: 10px;
    background-color: #ff9701;
}

.bottom-fixed-buttons .bottom-site-info .link-holder {
    padding: 15px 6px;
    display: flex;
    display: -ms-flexbox;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-decoration: none;
}

.bottom-fixed-buttons .bottom-site-info .dude {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    margin: -10px 0 0 0;
    position: relative;
    top: 5px;
}

.bottom-fixed-buttons .bottom-site-info .link-text-holder {
    overflow: hidden;
    margin: 0 6px;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #fff;
}

.bottom-fixed-buttons .bottom-site-info .link-text {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    line-height: 22px;
}

.bottom-fixed-buttons .bottom-site-info .btn-icon {
    background: url(../images/icons/w-icon-arrow-right.svg) no-repeat;
    background-size: cover;
    width: 33px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 5px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.bottom-fixed-buttons .btn-site {
    margin: 5px;
}

@media screen and (min-width: 992px) {
    .bottom-fixed-buttons .btn-site {
        display: none;
    }
}

.bottom-fixed-buttons .btn-main {
    margin: 5px;
}

@media screen and (min-width: 992px) {
    .bottom-fixed-buttons .btn-main {
        display: none;
    }
}

.bottom-fixed-buttons li {
    -ms-flex: 0 0;
    flex: 0 0;
    width: 33%;
    padding: 0 3px;
    display: inline-block;
}

.bottom-fixed-buttons ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding: 0 10px;
}

.bottom-fixed-buttons .item-link {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.bottom-fixed-buttons .item-ico {
    height: 32px;
    width: 32px;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.bottom-fixed-buttons .item-ico img {
    height: 30px;
}

.bottom-fixed-buttons .item-ico .inline-icon {
    transform: scale(0.9999);
}

.bottom-fixed-buttons .item-ico .link-icon-base:before {
    transform: scale(1.9999);
}

.bottom-fixed-buttons .item-title {
    margin-top: 9px;
    color: #000;
    white-space: nowrap;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    font-size: 12px;
}

.bottom-fixed-buttons .item-title .link-icon {
    width: 12px;
    height: 12px;
    margin-left: 3px;
}

.bottom-fixed-buttons .link-icon {
    color: #a6a7ae;
    display: inline-block;
    vertical-align: middle;
    fill: currentColor;
    width: 22px;
    height: 22px;
    position: relative;
    background: url(../images/icons/gray-icon-forward-link.svg) no-repeat;
    background-size: contain;
    margin-left: auto;
}

.link-header {
    position: relative;
    color: #fff;
    font-size: 39px;
    padding: 5px 5px 5px 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin: 0 0 5px 0;
}

.link-header:after {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    display: inline-block;
    width: 100%;
    height: 3px;
    border-radius: 1px;
    /*background-color: #635d74;*/
}

.link-header .inline-icon {
    margin: -5px 5px 0 0;
}

@media (max-width: 576px) {
    .link-header .inline-icon {
        margin: 0;
    }
}

.link-header .link-header-back {
    display: none !important;
}

.link-header h2,
.link-header h1 {
    font-size: 26px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 500;
    color: #767676;
}

@media (max-width: 991px) {
    .link-header h2,
    .link-header h1 {
        font-size: 20px;
        font-weight: 500;
    }
}

/* main styles */
/* grid thumbs styles */
.thumb-1 {
    -ms-grid-row-span: 91;
    grid-row-end: span 91;
}

.thumb-2 {
    -ms-grid-row-span: 67;
    grid-row-end: span 67;
}

.thumb-3 {
    -ms-grid-row-span: 53;
    grid-row-end: span 53;
}

.thumb-4 {
    -ms-grid-row-span: 38;
    grid-row-end: span 38;
}

.thumb-5 {
    -ms-grid-row-span: 27;
    grid-row-end: span 27;
}

.thumb-6 {
    -ms-grid-row-span: 19;
    grid-row-end: span 19;
}

[data-column="1"] {
    grid-column: 1/1;
}

[data-column="2"] {
    grid-column: 2/2;
}

[data-column="3"] {
    grid-column: 3/3;
}

[data-column="4"] {
    grid-column: 4/4;
}

/* grid thumbs styles */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    #main_container {
        display: flex;
        display: -ms-flexbox;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 0 -5px;
        min-height: 500px;
    }
    #main_container .category-container {
        width: calc(25% - 10px);
        margin: 0 5px 10px;
    }
}

@media all and (-ms-high-contrast: none) and (max-width: 991px), (-ms-high-contrast: active) and (max-width: 991px) {
    #main_container .category-container {
        width: 100%;
    }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    #main_container .col-md-3 {
        padding: 0 5px;
        width: 25%;
    }
    #main_container .col-md-3 .category-container {
        width: 100%;
        margin: 0 0 10px;
    }
}

@media all and (-ms-high-contrast: none) and (max-width: 991px), (-ms-high-contrast: active) and (max-width: 991px) {
    #main_container .col-md-3 {
        width: 100%;
    }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .main-container .category-container {
        width: 100%;
        margin-bottom: 10px;
    }
    .main-container .category-container .category-wrapper {
        height: 100%;
    }
}

@supports (-ms-ime-align: auto) and (-webkit-text-stroke: initial) {
    #main_container {
        display: flex;
        display: -ms-flexbox;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 0 -5px;
        min-height: 500px;
    }
    #main_container .category-container {
        width: calc(25% - 10px);
        margin: 0 5px 10px;
    }
    @media (max-width: 991px) {
        #main_container .category-container {
            width: 100%;
        }
    }
    #main_container .col-md-3 {
        padding: 0 5px;
        width: 25%;
    }
    #main_container .col-md-3 .category-container {
        width: 100%;
        margin: 0 0 10px;
    }
    @media (max-width: 991px) {
        #main_container .col-md-3 {
            width: 100%;
        }
    }
    .main-container .category-container {
        width: 100%;
        margin-bottom: 10px;
    }
    .main-container .category-container .category-wrapper {
        height: 100%;
    }
}

/**
 * * ==================================================
 * * others.css (micromodal.css)
 * * ==================================================
 */

 /* Micromodal */

.micromodal {
  color: #000;
}

.micromodal hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #d8d8d8;
}

.micromodal p {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.4;
}

.micromodal .color-bold {
  font-weight: 600;
}

.micromodal .color-primary {
  color: #ff8c01;
}

.micromodal .color-secondary {
  color: #8c8d96;
}

.micromodal .color-success {
  color: #2eaf61;
}

.micromodal .color-error {
  color: #f60000;
}

.micromodal .text-center {
  text-align: center;
}

.micromodal .btn {
  padding: 18px 31px;
  border-radius: 10px;
  text-align: center;
  line-height: 1;
  transition:
    opacity .2s ease,
    background-color .2s ease;
}

.micromodal .btn-primary {
  background-color: #ff8C01;
  color: #fff;
}

.micromodal .btn-primary:active {
  background-color: #d77600;
}

@media (min-width: 1025px) {
  .micromodal .btn-primary:hover {
    background-color: #d77600;
  }
}

.micromodal .btn-secondary {
  background-color: #f0f1f5;
  color: #8c8d96;
}

.micromodal .btn-secondary:active {
  background-color: #e4e5e7;
}

@media (min-width: 1025px) {
  .micromodal .btn-secondary:hover {
    background-color: #e4e5e7;
  }
}

.micromodal .btn-success {
  background-color: #29a656;
  color: #fff;
}

.micromodal .btn-success:active {
  background-color: #1e8142;
}

@media (min-width: 1025px) {
  .micromodal .btn-success:hover {
    background-color: #1e8142;
  }
}

.micromodal .inline-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-size: contain;
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .micromodal-overlay {
  animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .micromodal-container {
  animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .micromodal-overlay {
  animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .micromodal-container {
  animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(10px);
}

.micromodal-container {
  width: 100%;
  max-width: 940px;
  max-height: 90vh;
  max-height: calc(var(--vh, 1vh) * 90);
  margin: 0 10px;
  border-radius: 10px;
  overflow-y: auto;
}

.micromodal-content {
  border-radius: 10px;
  background-color: #fff;
}

.micromodal-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 19px 20px;
}

@media (max-width: 991px) {
  .micromodal-header {
    padding: 12px 20px;
  }
}

.micromodal-header+hr {
  margin: 0;
}

.micromodal-header .inline-icon {
  width: 30px;
  height: 30px;
}

.micromodal-title {
  display: flex;
  gap: 14px;
  overflow: hidden;
  font-size: 24px;
}

@media (max-width: 991px) {
  .micromodal-title {
    font-size: 20px;
  }
}

.micromodal-title-text {
  overflow: hidden;
  text-overflow: ellipsis;
}

.micromodal-close {
  display: flex;
  margin-left: auto;
  cursor: pointer;
}

.micromodal-close .icon {
  width: 24px;
  height: 24px;
  fill: #454545;
  transition: fill .2s ease;
  pointer-events: none;
}

.micromodal-close:active .icon {
  fill: #ff8c04;
}

@media (min-width: 1025px) {
  .micromodal-close:hover .icon {
    fill: #ff8c04;
  }
}

.micromodal-body {
  padding: 20px 30px;
}

@media (max-width: 991px) {
  .micromodal-body {
    padding: 20px;
  }
}

.micromodal-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.micromodal-hero p {
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.micromodal-hero p:last-child {
  margin-bottom: 0;
}

.micromodal-hero .micromodal-title {
  margin-bottom: 30px;
  text-align: center;
  font-size: 30px;
}

@media (max-width: 991px) {
  .micromodal-hero .micromodal-title {
    margin-bottom: 20px;
    font-size: 26px;
  }
}

.micromodal-hero .inline-icon {
  margin-bottom: 30px;
}

.micromodal-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  gap: 20px;
}

@media (max-width: 767px) {
  .micromodal-hero-actions {
    margin-bottom: 20px;
  }
}

.micromodal-hero-actions .btn {
  flex-grow: 1;
}

.micromodal-hero-actions .btn-primary {
  font-weight: 600;
}

@keyframes mmfadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes mmfadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes mmslideIn {
  0% {
    transform: translateY(15%);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes mmslideOut {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10%);
  }
}

/* end Micromodal */

/* Age limit modal */

.icon-age-limit-dude-gb {
  background-image: url(/includes/images/icons/age-limit-dude-gb.svg) !important;
}

.icon-age-limit-dude-de {
  background-image: url(/includes/images/icons/age-limit-dude-de.svg) !important;
}

.icon-age-limit-dude-fr {
  background-image: url(/includes/images/icons/age-limit-dude-fr.svg) !important;
}

.icon-age-limit-dude-us {
  background-image: url(/includes/images/icons/age-limit-dude-us.svg) !important;
}

.icon-age-limit-dude-it {
  background-image: url(/includes/images/icons/age-limit-dude-it.svg) !important;
}

.icon-age-limit-dude-ie {
  background-image: url(/includes/images/icons/age-limit-dude-ie.svg) !important;
}

.age-limit-modal .micromodal-body {
  padding-block: 70px;
}

@media (max-width: 767px) {
  .age-limit-modal .micromodal-body {
    padding-block: 30px;
  }
}

.age-limit-modal .micromodal-body .inline-icon {
  width: 234px;
  height: 228px;
}

@media (max-width: 991px) {
  .age-limit-modal .micromodal-body .inline-icon {
    width: 204px;
    height: 198px;
  }
}

/* end Age limit modal */