@import"https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap";
:root {
    --d4d-color: #854cc9;
    --header-height: 50px;
    --footer-height: 55px;
    --option-width-half: 33px;
    --dark-color: #f7f7f7;
    --hf-color: #282729;
    --right-ad-width: 16vw
}

img.logo {
    width: 100%;
    margin-left: 5px;
    max-width: 48px;
    max-height: 48px;
    margin-left: 5px;
    margin-right: 5px;
    transform: scale(0.9);
    object-fit: scale-down;
    transition: transform .3s
}

img.logo:hover {
    transform: scale(1)
}

img.icon {
    height: 18px
}

header.container {
    direction: rtl;
    z-index: 2;
    width: 100vw;
    display: flex;
    position: fixed;
    background: #fff;
    align-items: center;
    transition: transform .5s;
    height: var(--header-height);
    justify-content: space-between;
    box-shadow: 0 1px 8px -3px rgba(67, 52, 52, .5)
}

header.container:lang(ar) {
    direction: ltr;
}

header.container .left {
    width: 100%;
    display: flex;
    max-width: 620px;
    align-items: center;
    justify-content: space-between
}

div#page-options {
    display: flex;
}

header.container .search {
    direction: ltr;
    width: 75vw;
    max-width: 300px;
    margin-right: 5px;
    position: relative
}

header.container .right {
    display: flex;
    margin-right: 5px;
    margin-left: 5px;
    align-items: center;
    justify-content: flex-end
}

header.container .right .home {
    display: flex;
    align-items: center;
    direction: ltr;
}

header.container .right .home:lang(ar) {
    direction: rtl;
}

header.container .right .home .icon:lang(ar) {
    transform: scaleX(-1);
}

.full-screen header.container {
    transform: translateY(-120%)
}

header .center a.option {
    padding-left: 2px;
    padding-right: 2px
}

header .right .text {
    padding-left: 5px
}

.change-country {
    display: flex;
    color: #000;
    margin: 0px 20px;
    align-items: center
}

.change-country .current {
    display: flex;
    margin: 0px 4px;
    font-size: 10px;
    line-height: 6px;
    align-items: center;
    flex-direction: column
}

.flag {
    height: 20px;
    border-radius: 4px;
    border: 1px solid #80808030
}

.current-country {
    display: flex;
    font-size: 13px;
    font-weight: 600;
    align-items: center;
    font-family: "Open Sans"
}

.current-country img {
    margin-right: 10px
}

.arrow-down {
    width: 8px;
    height: 8px;
    border-right: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(45deg)
}

.theme-dark {
    transition: all .50s;
}

.theme-dark .theme-selector img.dark {
    display: none
}

.theme-dark .search-block input[type=search] {
    color: var(--dark-color);
    background: #292929;
    transition: all .50s
}

.theme-light {
    transition: all .5s
}

.theme-light .theme-selector {
    color: #e0e0e0;
    background: #101010
}

.theme-light .theme-selector img.light {
    display: none
}

.theme-selector {
    left: 0;
    top: 85px;
    z-index: 10;
    width: 105px;
    height: 30px;
    color: #000;
    position: fixed;
    cursor: pointer;
    background: #e0e0e0;
    box-sizing: border-box;
    padding: 0px 0px 0px 5px;
    border-radius: 0px 25px 25px 0px;
    transition: filter .3s, transform .3s
}

.theme-selector:lang(ar) {
    right: 0;
    left: unset;
}

.theme-selector .text {
    top: 50%;
    font-weight: 500;
    position: relative;
    transform: translateY(-50%)
}

.theme-selector img {
    top: 50%;
    right: 2px;
    width: 18px;
    height: 18px;
    padding: 5px;
    border-radius: 50%;
    position: absolute;
    background: #fff;
    transform: translateY(-50%)
}

.full-screen .theme-selector {
    transform: translateX(-100%)
}

div#theme-selector:hover {
    filter: drop-shadow(0px 0px 6px #e0e0e0)
}

:lang(ar) .theme-selector {
    right: 0;
    padding: 0px 5px 0px 0px;
    border-radius: 25px 0px 0px 25px
}

:lang(ar) .theme-selector img {
    right: unset;
    left: 2px
}

.btn {
    display: flex;
    color: #000;
    font-size: 15px;
    margin: 0px 7px;
    font-weight: 600;
    padding: 5px 25px;
    line-height: 24px;
    border-radius: 36px;
    align-items: center;
    background: #e9e9e9;
    font-family: "Open Sans", sans-serif
}

.btn .arrow-down {
    margin: 0px 0px 4px 10px
}

.btn.active {
    color: #fff;
    background: linear-gradient(51.63deg, #7F00FF -17.7%, #E100FF 95.83%)
}

.header-menu {
    display: flex
}

.header-menu .dropdown {
    display: flex
}

.header-menu .dropdown .list {
    transition: filter linear 300ms;
    filter: opacity(0) drop-shadow(0px 0px 0px #00000000)
}

.header-menu .dropdown .cover {
    top: 50px;
    width: 150px;
    height: 15px;
    position: absolute
}

.header-menu .dropdown .btn::before {
    filter: opacity(0);
    transition: filter linear 300ms
}

.header-menu .dropdown:hover>.list {
    height: auto;
    padding: 12px;
    margin-top: 40px;
    background: #fff;
    border-radius: 10px;
    filter: opacity(1) drop-shadow(0px 0px 16px #00000040)
}

.header-menu ul.list {
    height: 0;
    display: flex;
    overflow: hidden;
    position: absolute
}

.header-menu ul.list li {
    margin-right: 20px;
    list-style-type: none
}

.header-menu ul.list li a {
    color: #000;
    font-size: 13px;
    font-weight: 400;
    line-height: 30px;
    font-family: "Open Sans", sans-serif
}

.header-menu .dropdown:hover .btn::before,
.country-container:hover::before {
    top: 41px;
    content: "";
    z-index: 100000;
    filter: opacity(1);
    position: absolute;
    transform: rotate(270deg);
    border-left: 15px solid #fff;
    border-top: 15px solid #ff000000;
    border-bottom: 15px solid #00000000
}

.country-container:hover::before {
    margin-left: 50px
}

.country-popup label,
.country-popup a {
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
    font-family: Open Sans
}

.dropdown .list ul {
    padding-inline-start: 20px
}

.country-popup {
    height: 0px;
    right: 10px;
    width: 190px;
    display: flex;
    margin-top: 10px;
    overflow: hidden;
    position: absolute;
    background: #fff;
    border-radius: 10px;
    flex-direction: column;
    box-sizing: border-box;
    justify-content: space-between;
    transition: filter linear 300ms;
    filter: opacity(0) drop-shadow(0px 0px 0px #00000040)
}

.country-container:hover>.country-popup {
    height: 180px;
    padding: 34px 15px 15px 15px;
    filter: opacity(1) drop-shadow(0px 0px 16px #00000040)
}

.country-popup hr {
    width: 100%;
    border: 1px solid #ddd
}

.country-popup a {
    font-size: 13px;
    color: #214de9;
    font-family: Open Sans
}

.country-popup .option {
    display: flex
}

.open-menu {
    width: 32px;
    height: 32px;
    display: flex;
    color: #000;
    font-size: 20pt;
    align-items: center;
    justify-content: center;
    transform: rotate(90deg)
}

.side-menu aside {
    top: 0;
    right: 0;
    width: 250px;
    height: 100vh;
    position: fixed;
    padding: 25px 15px;
    background: #f5f5f5;
    box-sizing: border-box;
    transform: translateX(100%);
    transition: transform ease-in 300ms;
    filter: opacity(1) drop-shadow(0px 0px 0px #00000040)
}

.side-menu .menu-item {
    display: flex;
    padding: 5px 0px;
    align-items: center
}

.side-menu .menu-item>a {
    color: #000;
    font-size: 13px;
    font-weight: 400;
    padding: 0px 10px
}

.side-menu.active aside {
    transform: translateX(0%);
    filter: opacity(1) drop-shadow(0px 0px 16px #00000040)
}

.hide {
    top: 5px;
    right: 10px;
    position: absolute
}

.search-block {
    border-radius: 25px;
    overflow: hidden;
    height: 34px;
    margin: 0px 10px 0px 10px;
    position: relative;
    border-right: none
}

.search-block input[type=search] {
    top: 50%;
    z-index: 1;
    width: 100%;
    height: 34px;
    outline: none;
    color: #000;
    font-size: 10pt;
    position: absolute;
    border-radius: 25px;
    background: #f3f3f3;
    text-overflow: ellipsis;
    padding: 0px 33px 0px 10px;
    transform: translateY(-50%);
    border: 1.5px solid #dbdbdb
}

.search-block button {
    background: var(--d4d-color);
    outline: none;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    right: 0;
    z-index: 1;
    position: absolute
}

.search-block.mobile {
    position: fixed;
    right: 0;
    width: 100vw;
    top: 50px;
    background: #fff;
    transition: all .5s
}

.search-block.suggestion-available {
    border-bottom: none
}

:lang(ar) .search-block input[type=search] {
    padding: 0px 10px 0px 38px;
    right: 0;
    direction: rtl;
}

#search-button .lens {
    width: 14px;
    height: 14px;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid #fff
}

:lang(ar) #search-button .lens {
    transform: translate(-50%, -50%) rotate(90deg)
}

#search-button .reflection {
    border: 2px solid #fff;
    border-radius: 50%;
    border-left: 2px;
    border-right: 0px;
    border-bottom: 0px;
    position: absolute;
    top: 2px;
    right: 2px;
    width: 8px;
    height: 5px;
    transform: rotate(45deg)
}

#search-button .handle {
    position: absolute;
    width: 6px;
    height: 2px;
    background: #fff;
    top: 14px;
    transform: rotate(41deg);
    left: 12px;
    border-radius: 0px 1px 1px 0px
}

:lang(ar) .search-block button {
    right: unset;
    left: 0
}

.theme-dark .search-block button {
    background-color: #a800ca
}

.search-block button:hover {
    cursor: pointer
}

.category-suggestion {
    top: 25px;
    height: 0;
    opacity: 0;
    z-index: -1;
    display: flex;
    overflow: hidden;
    margin-left: 10px;
    position: absolute;
    background: #fff;
    box-sizing: border-box;
    flex-direction: column;
    width: calc(100% - 17px);
    padding: 0px 0px 0px 0px;
    transition: opacity .5s;
    border-radius: 0 0 10px 10px;
    box-shadow: 0px 3px 9px #000
}

.category-suggestion:lang(ar) {
    direction: rtl;
}

.category-suggestion a {
    color: #000;
    padding: 5px 10px;
    line-height: 30px;
    border-bottom: 1px dotted #ccc
}

.category-suggestion a:nth-child(1) {
    padding-top: 15px
}

.category-suggestion a:hover {
    background-color: #e2e2e2;
    transition: background-color .3s
}

.category-suggestion a .product-category {
    color: #740088
}

.category-suggestion.active {
    height: auto;
    opacity: 1;
    z-index: 0
}

.theme-dark .category-suggestion {
    background: #313131;
}

.theme-dark .category-suggestion a:hover {
    color: #000
}

.theme-dark .category-suggestion a:hover .product-category {
    color: #de1fff
}

.theme-dark .category-suggestion a {
    color: #fff
}

.theme-dark .category-suggestion a .product-category {
    color: #f4b5ff
}

.theme-dark .category-suggestion a .product-count {
    font-style: italic
}

.download-app {
    display: flex
}

.download-app a {
    height: 32px;
    margin: 0px 4px
}

.download-app img {
    height: 32px
}

footer.container {
    bottom: 0;
    z-index: 3;
    width: 100%;
    display: flex;
    color: #fff;
    position: fixed;
    align-items: center;
    justify-content: center;
    transition: transform .5s;
    height: 55px;
    background: #bf38ea;
    box-shadow: 0px -1px 4px 0px #3a3a3a3d;
    transition: all .60s;
}

.theme-light footer.container {
    background: #bf38ea
}

.full-screen footer.container {
    transform: translateY(300%)
}

footer.container .right {
    right: 10px;
    /* color: #e2c4fe; */
    /* color: #000; */
    color: white;
    position: absolute
}

.theme-light footer.container .right {
    color: black;
}

footer.container .right,
footer.container a {
    font-size: 12px;
    font-family: Open Sans
}

footer.container a {
    /* color: #6495ed */
    color: var(--d4d-color);
}

footer.container .navigation {
    display: flex
}

footer.container .navigation a {
    padding: 0px 9px
}

footer.container .page-number {
    display: flex;
    align-items: center;
    padding: 0px 7px
}

footer.container .page-number,
footer.container #current_page {
    font-size: 20px;
    font-weight: bold;
    font-family: Open Sans
}

footer.ad-slot-320x50 {
    bottom: 0;
    width: 100%;
    height: 50px;
    z-index: 3;
    position: fixed;
    max-height: 50px;
}

.theme-light footer.container {
    background: white;
    color: black;
}

footer.container {
    bottom: 0;
    width: 100%;
    display: flex;
    color: white;
    position: fixed;
    align-items: center;
    transition: transform 0.5s;
    background: var(--hf-color);
    height: var(--footer-height);
    justify-content: space-between;
    box-shadow: 0px -1px 4px 0px #3a3a3a3d;
    padding-left: 3px;
    transition: all .60s;
}

.page-number {
    margin-left: calc(50% - var(--right-ad-width)/2);
    width: auto;
    color: #faff00;
    background: #6d6d6db3;
    text-align: center;
    padding: 5px;
    font-size: 9pt;
    border-radius: 4px 4px 0px 0px;
    z-index: 1;
    bottom: 50px;
    position: fixed;
    transform: translateX(-50%);
    transition: transform 0.5s;
}

.client .page-number {
    /* bottom: 0px; */
}

.share-box {
    left: 50%;
    bottom: 0px;
    z-index: -1;
    height: 30px;
    position: fixed;
    background: #fff;
    padding: 5px 5px 0px 5px;
    border-radius: 5px 5px 0px 0px;
    box-shadow: 0px 0px 8px 0px rgba(67, 52, 52, .5)
}

.share-box a {
    padding-left: 4px;
    padding-right: 4px
}

.share-box .icon,
header .icon {
    transition: filter .2s, transform .2s
}

.share-box .icon:hover,
header .icon:hover {
    transform: scale(1.3);
    filter: drop-shadow(0px 0px 2px gray)
}

.full-screen .share-box {
    display: none
}

.share-box.active {
    z-index: 1;
    transition: transform .5s;
    transform: translateY(-55px)
}

.right-ad {
    right: 0;
    display: flex;
    position: fixed;
    max-width: 300px;
    min-width: 160px;
    align-items: center;
    background: #ebebeb;
    flex-direction: column;
    justify-content: center;
    top: 80px;
    width: 16vw;
    height: calc(100vh - (var(--header-height) + var(--footer-height)))
}

.right-ad .dyn-placement {
    width: 100%;
    position: relative;
    height: calc(100% - 115px)
}

.client .right-ad {
    display: none
}

.theme-dark .right-ad {
    background: #fff
}

.outlet {
    width: 90%;
    z-index: 1;
    padding: 12px;
    position: relative;
    border-radius: 5px;
    background: #fff;
    box-sizing: border-box;
    margin: 75px 0px 40px 0px
}

.outlet img {
    top: -25px;
    width: 50px;
    height: 50px;
    padding: 5px;
    border-radius: 50%;
    position: absolute;
    object-fit: contain;
    background: #fff;
    left: calc(50% - 25px);
    box-sizing: border-box;
    border: 1px solid #e5e5e5
}

.outlet h1 {
    font-size: 15px;
    font-weight: bold;
    font-style: normal;
    font-family: Open Sans
}

.outlet h2 {
    font-size: 13px;
    font-family: Open Sans
}

.outlet h3 {
    font-size: 12px;
    color: #5c5c5c;
    font-family: Open Sans
}

* {
    font-family: "Poppins", sans-serif;
    font-size: 9pt
}

:lang(ar) * {
    text-align: right
}

body {
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0
}

p {
    margin-block-end: unset;
    margin-inline-end: unset;
    margin-block-start: unset;
    margin-inline-start: unset
}

a {
    text-decoration: none
}

figure {
    margin-left: 211.943px;
    margin-block-end: unset;
    margin-inline-end: unset;
    margin-block-start: unset;
    margin-inline-start: unset
}

.option .menu-text {
    display: none
}

main.carousel {
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    position: fixed;
    background: #1b1b1b;
    transition: height .5s;
    border: 1px solid #b1b1b1;
    transition: all .60s;
}

.user main.carousel {
    width: calc(100vw - var(--right-ad-width) - 3px)
}

.client main.carousel {
    width: 100vw
}

.overlay {
    display: none
}

.full-screen-ad {
    position: fixed;
    display: block;
    background-color: #e9e9e9f2;
    width: calc(100% - var(--right-ad-width) - 2px);
    /* height: 1000px; */
    height: 100%;
    /* height: calc(100% - (values.$header-height + values.$footer-height)); */
    /* top: 80px; */
    transform: translateX(-100%)
}

.active.full-screen-ad {
    transform: translateX(0%);
    height: 100%;
}

.full-screen-ad .center {
    display: flex;
    width: calc(100% - (120px));
    top: 50%;
    left: 60px;
    position: relative;
    justify-content: center;
    flex-wrap: wrap;
    transform: translateY(-50%)
}

.full-screen-ad .fixed-ads {
    width: 100vw;
    height: 100vh;
    background: #ffffff57;
    margin: 3px;
    max-width: 336px;
    min-width: 200px;
    max-height: calc((100vh/2) - 120px)
}

.full-screen-ad h1 {
    width: 100%;
    text-align: center;
    font-size: 15px;
    font-weight: 500
}

.full-screen-ad .skip-block {
    width: 100%;
    margin-top: 20px
}

.full-screen-ad .skip-block a {
    background: radial-gradient(#66bd21, #0a3a09);
    display: block;
    text-align: center;
    font-size: 20px;
    box-sizing: border-box;
    position: absolute;
    color: #fff;
    width: 150px;
    bottom: 18%;
    padding: 5px 15px 5px 15px;
    border-radius: 25px;
    box-shadow: 0 0 7px #c30000;
    left: 50%;
    transform: translateX(-50%)
}

.full-screen-ad .skip-block a:hover {
    background: radial-gradient(#e8457d, #980737)
}

.full-screen-ad .button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    position: absolute;
    background: #d920b1e6;
    transform: translateY(-50%);
    top: calc(50% + 1px)
}

.full-screen-ad .button.close-ad {
    right: 12px;
    top: 100px;
    background: radial-gradient(#66bd21, #0a3a09)
}

.full-screen-ad .button.close-ad:lang(ar) {
    left: 12px;
    top: 100px;
    background: radial-gradient(#66bd21, #0a3a09)
}

.full-screen-ad .button small {
    left: 50%;
    position: absolute;
    font-size: 20pt;
    color: #fff;
    top: 50%;
    transform: translate(-50%, -50%)
}

.full-screen-ad .button:hover {
    cursor: pointer;
    background: #d920b1
}

.full-screen-ad .button.left {
    left: 11px;
    display: none;
}

.full-screen-ad .button.right {
    right: 12px;
    display: none;
}

.full-screen-ad .button div {
    border-bottom: 4px solid #fff;
    width: 15px;
    border-left: 4px solid #fff;
    height: 15px;
    top: 50%;
    position: absolute
}

.full-screen-ad .button.left div {
    transform: translate(-50%, -50%) rotate(45deg);
    right: 0%
}

.full-screen-ad .button.right div {
    transform: translate(-50%, -50%) rotate(225deg);
    left: 44%
}

.theme-light main.carousel {
    background: #fff
}

.full-screen main.carousel {
    height: calc(var(--vh, 1vh) * 100)
}

.d4d-color {
    color: var(--d4d-color)
}

.carousel-cell {
    width: 100%;
    height: calc(100%)
}

.carousel-cell img,
.carousel-cell picture {
    display: block;
    max-width: 100%;
    max-height: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity .3s, -webkit-transform .3s, transform .3s, -webkit-filter .3s, filter .3s;
    transition: opacity .3s, transform .3s, filter .3s
}

.carousel-cell.is-selected img,
.carousel-cell.is-selected picture {
    height: 100%;
    -webkit-transform: scale(1);
    transform: scale(1)
}

.carousel-cell-small {
    margin: 0px 5px 0px 5px
}

.zoom-cover,
.zoom-holder,
.image-container {
    width: 100%;
    height: 100%
}

.image-container {
    display: flex;
    width: max-content;
    border: 1px solid #efecec
}

.image-container-small {
    display: flex;
    height: 200px
}

.image-container-small img {
    height: 200px
}

.client .ad-slot-320x50 {
    display: none
}

.gads-center {
    position: relative;
    left: 50%;
    transform: translateX(-50%)
}

.gads-320x50 {
    height: 50px;
    max-height: 50px;
    width: 100%;
    max-width: 1000px;
    position: absolute
}

.gads-auto {
    width: 100%;
    height: 100%;
    max-height: 600px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.gads-auto-square {
    width: 100%;
    height: 100%
}

.watermark {
    position: fixed;
    background: #0000007a;
    text-align: center;
    color: #fff;
    width: 100%;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    font-size: 32px
}

.preview-container {
    left: 5%;
    opacity: 1;
    z-index: 1;
    width: 90%;
    padding: 5px;
    height: 200px;
    display: none;
    overflow: hidden;
    background: #fff;
    position: absolute;
    bottom: var(--footer-height);
    border-radius: 0px 0px 5px 5px;
    box-shadow: 0 7px 8px -3px rgba(67, 52, 52, .5)
}

.close:hover {
    cursor: pointer;
    border-color: #287d00;
    color: #287d00
}

.close {
    top: 0;
    position: absolute;
    width: 25px;
    height: 25px;
    background: #fff;
    margin-top: 3%;
    border: 1px solid #000;
    border-radius: 50%;
    right: 5px
}

.close .icon {
    height: auto;
    width: auto;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    margin-left: unset;
    cursor: pointer
}

.preview-container .close span {
    font-weight: bolder
}

#offer-previews .page:hover {
    cursor: pointer
}

.d-none {
    display: none !important
}

.context-menu {
    position: fixed;
    width: auto;
    height: auto;
    background: #f5f5f5f7;
    z-index: 2;
    box-shadow: 2px 3px 10px 0px #000;
    border-radius: 3px;
    flex-direction: column;
    padding: 10px;
    display: none
}

.context-menu span {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 14px;
    line-height: 32px;
    cursor: default
}

.context-menu hr {
    border: 1px solid #b9b9b9;
    width: calc(100% - 10px);
    margin-left: 5px
}

.context-menu span:hover {
    background: #8686c7;
    border-radius: 3px;
    animation: mouse-hover-color .5s forwards
}

.fade-status {
    z-index: 1;
    width: auto;
    height: auto;
    position: fixed;
    background: #dcddec;
    padding: 10px;
    border-radius: 22px;
    box-shadow: 0px 0px 12px #1010109c;
    display: none
}

.popup {
    position: fixed;
    width: calc(100% - 20px);
    height: 100%;
    background: #ffffffde;
    z-index: 1;
    top: 50%;
    max-width: 400px;
    max-height: 400px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    border-radius: 10px;
    box-shadow: 0 0 16px 3px rgba(67, 52, 52, .3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: none
}

.popup header {
    border-radius: 10px 10px 0px 0px;
    box-shadow: 0px 0px 1px 0px #000;
    padding-left: 15px;
    box-sizing: border-box;
    height: 50px;
    position: absolute;
    width: 100%
}

.popup .close {
    margin-top: 12px;
    right: 12px
}

:lang(ar) .popup .close {
    left: 10px;
    right: unset
}

:lang(ar) .popup h3 {
    margin-right: 10px
}

.popup .body {
    position: absolute;
    margin-top: 50px;
    width: 100%
}

.popup .body>* {
    text-align: center;
    line-height: 25px
}

.popup .body>h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal
}

.popup .para {
    font-size: medium
}

:lang(ar) .popup .icon {
    margin-left: unset
}

.popup .icon:hover {
    animation: unset
}

.half-circle {
    left: 7px;
    top: 7px;
    width: 20px;
    height: 20px;
    border: 5px solid #fff;
    border-radius: 50%;
    border-bottom-color: transparent;
    border-left-color: #fff;
    position: absolute;
    animation: spin linear 1s infinite reverse
}

.page-loader {
    background: var(--d4d-color);
    position: fixed;
    top: 50%;
    box-shadow: 0 0 4px 2px #df3fff;
    width: 44px;
    height: 44px;
    border-radius: 50%
}

.page-loader.single {
    left: 50%;
    transform: translate(-50%, -50%)
}

.page-loader.left {
    left: 25%;
    transform: translate(-25%, -50%);
    display: none
}

.page-loader.right {
    transform: translate(-25%, -50%);
    right: 25%;
    display: none
}

.fade-out-long {
    display: block;
    opacity: 0;
    animation: fade-out-plain 4s forwards
}

.fade-out {
    opacity: 0;
    width: 0;
    height: 0;
    transition: all .5s
}

.fade-in {
    opacity: 1;
    transition: opacity 1s
}

@media only screen and (min-width: 501px) {
    #view-options {
        display: none
    }
    .option .round {
        display: unset
    }
}

@media only screen and (max-width: 500px) {
    footer.ad-slot-320x50 {
        z-index: 1;
    }
    #product-search {
        width: 0;
        padding: 0px 0px 0px 0px;
        transition: all .6s
    }
    #search-block.active #product-search {
        width: 100%;
        padding: 0px 33px 0px 10px
    }
     :lang(ar) #search-block.active #product-search {
        padding: 0px 10px 0px 33px
    }
    .search-block.active {
        transition: all .5s
    }
     :lang(ar) #product-search.active {
        padding: 0px 10px 0px 33px
    }
    header.container {
        grid-template-columns: [left] minmax(32px, calc(50% - var(--option-width-half))) [search] 7fr [right] 1fr minmax(min-content, min-content)
    }
    header.container .center {
        right: 5px;
        width: auto;
        height: auto;
        bottom: 50px;
        display: flex;
        position: fixed;
        flex-direction: column
    }
    header.container .search {
        width: 60vw
    }
    header .center a.option {
        width: 40px;
        height: 40px;
        margin: 5px;
        bottom: 5px;
        right: 5px;
        position: absolute;
        box-sizing: border-box;
        transition: bottom .3s cubic-bezier(0.85, -0.41, 0.61, 0.1), filter .3s
    }
    .option .round {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        position: relative;
        background: var(--d4d-color);
        filter: drop-shadow(0px 0px 2px var(--d4d-color))
    }
    .active.center a.option .round {
        filter: drop-shadow(0px 0px 2px var(--d4d-color))
    }
    .center a.option.item-main {
        right: 0
    }
    .center a.option.item-main .round {
        width: 50px;
        height: 50px;
        right: 0;
        position: absolute
    }
    .active.center a.option.item-1 {
        bottom: 160px
    }
    .active.center a.option.item-2 {
        bottom: 110px
    }
    .active.center a.option.item-3 {
        bottom: 60px
    }
    .option div {
        font-size: 15pt;
        top: 50%;
        position: relative;
        transform: translateY(-50%) rotate(135deg);
        transition: transform .3s;
        text-align: center;
        color: #fff
    }
    .option .menu-text {
        position: absolute;
        width: max-content;
        right: calc(100% + 5px);
        top: 50%;
        transform: translateY(-50%);
        background: #000000a3;
        color: #fff;
        padding: 5px 10px 5px 10px;
        border-radius: 5px;
        filter: drop-shadow(0px 0px 2px black)
    }
    .active .option .menu-text {
        display: block
    }
    .active.center .option div {
        transform: translateY(-50%) rotate(0deg)
    }
    .center img.icon {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        filter: invert(1)
    }
    .overlay {
        background: #ffffff00;
        display: block;
        transition: background .3s cubic-bezier(0.85, -0.41, 0.61, 0.1), filter .3s
    }
    .active.overlay {
        background: #ffffffbd;
        position: fixed;
        width: 100%;
        height: 100%
    }
    .center .fixed-ads:nth-child(2) {
        display: none
    }
    .full-screen-ad .button.left,
    .full-screen-ad .button.right {
        display: none
    }
    .full-screen-ad .center {
        width: 100%;
        left: 0
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(360deg)
    }
}

@keyframes fade-out-plain {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@media only screen and (max-width: 768px) {
    footer.ad-slot-320x50 {
        z-index: 1;
    }
    .preview-container {
        display: block;
        background: #000000b8;
        width: calc(100vw - 10px);
        left: 50%;
        transform: translateX(-50%);
        overflow-y: scroll;
        z-index: 11
    }
    .preview-container.fade-in {
        height: 100%;
        /* height: calc(100vh - 80px) */
    }
    #offer-previews {
        display: flex;
        flex-wrap: wrap;
        padding-top: 20%;
        justify-content: center
    }
    .carousel-cell-small {
        margin: 5px 5px 0px 5px;
        width: calc((100vw / 2) - 20px);
        max-width: 150px
    }
    .image-container-small img {
        width: calc((100vw / 2) - 20px);
        max-width: 150px;
        object-fit: scale-down
    }
    .close {
        top: 10%;
    }
}

@media only screen and (max-width: 1024px) {
    footer.ad-slot-320x50 {
        z-index: 1;
    }
}

@media only screen and (max-width: 999px) {
    .user main.carousel {
        width: calc(100vw)
    }
    .right-ad {
        display: none
    }
    .active.full-screen-ad {
        width: 100%
    }
}

@keyframes changeBackgroundColor {
    0% {
        background-color: #001F3F;
    }
    50% {
        background-color: #FF4136;
    }
    100% {
        background-color: #001F3F;
    }
}


/*# sourceMappingURL=detail-page.css.map */