

@import "./reset.css";
@import "../../components/index.css";

html {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: fixed;
    cursor: default;
    width: 100%;
    height: 100%;
}

a {
    text-decoration: none;
}

/********************************* Toast Styles start **************************************/
      .toast-container {
        position: fixed;
        z-index: 999999;
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: min(360px, calc(100vw - 28px));
        pointer-events: none;
      }
        .toast-container *{
            direction: rtl;
        }
      .toast-container.top-left {
        top: 18px;
        left: 18px;
        align-items: flex-start;
      }

      .toast-container.top-center {
        top: 18px;
        left: 50%;
        transform: translateX(-50%);
        align-items: center;
      }

      .toast-container.top-right {
        top: 18px;
        right: 18px;
        align-items: flex-end;
      }

      .toast-container.bottom-left {
        bottom: 18px;
        left: 18px;
        align-items: flex-start;
        flex-direction: column-reverse;
      }

      .toast-container.bottom-center {
        bottom: 18px;
        left: 50%;
        transform: translateX(-50%);
        align-items: center;
        flex-direction: column-reverse;
      }

      .toast-container.bottom-right {
        bottom: 18px;
        right: 18px;
        align-items: flex-end;
        flex-direction: column-reverse;
      }

      .toast {
        position: relative;
        width: 100%;
        min-height: 94px;
        overflow: hidden;
        pointer-events: auto;
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 16px 16px 16px 44px;
        border-radius: 18px;
        background: var(--toast-bg);
        border: 1px solid var(--toast-border);
        box-shadow: var(--toast-shadow);
        backdrop-filter: blur(16px);
        isolation: isolate;
      }

      .toast::before {
        content: "";
        position: absolute;
        inset-block: 0;
        inset-inline-start: 0;
        width: 4px;
        background: var(--toast-accent, var(--primary));
      }

      .toast.success {
        --toast-accent: var(--success);
        --toast-soft: var(--success-soft);
      }

      .toast.info {
        --toast-accent: var(--info);
        --toast-soft: var(--info-soft);
      }

      .toast.warning {
        --toast-accent: var(--warning);
        --toast-soft: var(--warning-soft);
      }

      .toast.danger {
        --toast-accent: var(--danger);
        --toast-soft: var(--danger-soft);
      }

      .toast.custom {
        --toast-accent: var(--custom);
        --toast-soft: var(--custom-soft);
      }

      .toast-icon {
        width: 54px;
        height: 54px;
        flex: 0 0 54px;
        display: grid;
        place-items: center;
        color: var(--toast-accent);
        border-radius: 999px;
        background: radial-gradient(
          circle,
          var(--toast-soft) 0 58%,
          rgba(255, 255, 255, 0.72) 59% 100%
        );
        border: 1px solid rgba(199, 175, 139, 0.25);
      }

      .toast-icon svg {
        width: 28px;
        height: 28px;
        display: block;
      }

      .toast-content {
        flex: 1;
        min-width: 0;
        text-align: right;
      }

      .toast-title {
        margin: 0 0 6px;
        font-size: 15px;
        font-weight: 900;
        color: var(--toast-text);
      }

      .toast-message {
        margin: 0;
        font-size: 13px;
        line-height: 1.9;
        color: var(--toast-muted);
      }

      .toast-close {
        position: absolute;
        top: 14px;
        left: 14px;
        width: 26px;
        height: 26px;
        border: 0;
        cursor: pointer;
        display: grid;
        place-items: center;
        border-radius: 999px;
        background: transparent;
        color: #a48955;
        font-size: 20px;
        line-height: 1;
        transition:
          background 160ms ease,
          transform 160ms ease;
      }

      .toast-close:hover {
        background: rgba(199, 175, 139, 0.13);
        transform: rotate(90deg);
      }

      .toast-progress {
        position: absolute;
        right: 0;
        bottom: 0;
        height: 3px;
        width: 100%;
        background: var(--toast-accent);
        transform-origin: right center;
        animation: toast-progress linear forwards;
        opacity: 0.75;
      }

      .toast.enter-top-left,
      .toast.enter-bottom-left {
        animation: toast-in-left 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
      }

      .toast.enter-top-right,
      .toast.enter-bottom-right {
        animation: toast-in-right 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
      }

      .toast.enter-top-center {
        animation: toast-in-top 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
      }

      .toast.enter-bottom-center {
        animation: toast-in-bottom 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
      }

      .toast.exit {
        animation: toast-out 220ms ease both;
      }

      .custom-toast-card {
        width: 100%;
        pointer-events: auto;
        padding: 18px;
        border-radius: 22px;
        color: #fff;
        background:
          linear-gradient(
            135deg,
            rgba(104, 2, 151, 0.95),
            rgba(56, 26, 104, 0.95)
          ),
          var(--purple);
        box-shadow: 0 20px 50px rgba(56, 26, 104, 0.22);
        border: 1px solid rgba(255, 255, 255, 0.16);
        animation: toast-in-top 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
      }

      .custom-toast-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        margin-bottom: 10px;
      }

      .custom-toast-title {
        margin: 0;
        font-size: 16px;
        font-weight: 900;
      }

      .custom-toast-text {
        margin: 0;
        color: rgba(255, 255, 255, 0.78);
        line-height: 1.9;
        font-size: 13px;
      }

      .custom-toast-close {
        border: 0;
        cursor: pointer;
        width: 30px;
        height: 30px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.14);
        color: #fff;
        font-size: 18px;
      }
    .toast.gold {
    --toast-accent: var(--primary);
    --toast-soft: rgba(var(--primary-rgb), 0.16);
    }
      @keyframes toast-in-left {
        from {
          opacity: 0;
          transform: translateX(-24px) scale(0.97);
        }
        to {
          opacity: 1;
          transform: translateX(0) scale(1);
        }
      }

      @keyframes toast-in-right {
        from {
          opacity: 0;
          transform: translateX(24px) scale(0.97);
        }
        to {
          opacity: 1;
          transform: translateX(0) scale(1);
        }
      }

      @keyframes toast-in-top {
        from {
          opacity: 0;
          transform: translateY(-20px) scale(0.97);
        }
        to {
          opacity: 1;
          transform: translateY(0) scale(1);
        }
      }

      @keyframes toast-in-bottom {
        from {
          opacity: 0;
          transform: translateY(20px) scale(0.97);
        }
        to {
          opacity: 1;
          transform: translateY(0) scale(1);
        }
      }

      @keyframes toast-out {
        to {
          opacity: 0;
          transform: translateY(-8px) scale(0.96);
        }
      }

      @keyframes toast-progress {
        from {
          transform: scaleX(1);
        }
        to {
          transform: scaleX(0);
        }
      }

      @media (max-width: 720px) {
        .demo-grid {
          grid-template-columns: 1fr;
        }

        /* .toast-container,
        .toast-container.top-left,
        .toast-container.top-center,
        .toast-container.top-right,
        .toast-container.bottom-left,
        .toast-container.bottom-center,
        .toast-container.bottom-right {
          left: 14px;
          right: 14px;
          width: auto;
          transform: none;
          align-items: stretch;
        } */
      }
/********************************* Toast Styles end **************************************/

/********************************* back button **************************************/
.back-btn {
    left: 16px;
    top: 61px;
    position: absolute;
    background-color: #000000c2;
    border-radius: 7px;
    width: 38px;
    height: 38px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transform: rotate(180deg);
}

.elev-btn {
    left: 16px;
    top: 106px;
    position: absolute;
    background-color: #000000c2;
    border-radius: 7px;
    width: 38px;
    height: 38px;
    padding: 3px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

/********************************* back button **************************************/
.landscape-alarm {
    display: none;
}

.buy-shop-alarm {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    background-color: #000000e3;
    color: white;
    padding: 50px;
    border-radius: 7px;
    z-index: 888;
    direction: rtl;
    font-size: 11pt;
    white-space: nowrap;
    margin: 10px;
    line-height: 25px;
    text-align: center;
    transition: .7s;
}

.buyAlarm-anim {
    animation: buyAlarm ease 5s 1s;
}

@keyframes buyAlarm {
    50%, 100% {
        top: 50%;
        transform: translateY(-50%) translateX(-50%);
        opacity: 1;
    }
}

.navigating-alert {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
    font-size: 20pt;
    opacity: 0;
    color: white;
    padding: 50px;
    z-index: -1;
}

.navAlert-anim {
    animation: navAlert ease 2s forwards;
}

@keyframes navAlert {
    to {
        opacity: 1;
    }
}

.nav-bg {
    background-color: #00000096 !important;
}

.gotit {
    background-color: black;
    color: var(--golden);
    font-size: 16pt;
    margin-top: 50px;
    border-radius: 7px;
    padding: 7px 30px;
    box-shadow: 4px 5px 15px 0px rgb(54 54 54 / 71%);
    -webkit-box-shadow: 4px 5px 15px 0px rgb(54 54 54 / 71%);
    -moz-box-shadow: 4px 5px 15px 0px rgb(54 54 54 / 71%);
}

.nav-circles {
    position: relative;
    width: 70%;
    height: 40%;
}

.nav-circle, .nav-circle::before {
    content: " ";
    margin: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto;
    transition: all 0.5s;
    background-color: #d3d3d3c4;
    position: absolute;
}

    .nav-circle::before {
        animation: mymove 2s infinite;
        position: absolute;
        background-color: #a7a7a79c
    }

.nc1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.nc2 {
    bottom: 0;
    left: 0;
    transform: translateX(-50%);
}

.nc3 {
    bottom: 0;
    left: 100%;
    transform: translateX(-50%);
}

.nav-arrow {
    position: absolute;
    bottom: 7%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
}

.na-1 {
    left: 25%;
    transform: rotate(35deg);
    animation: na1-anim 1.5s infinite;
}

.na-2 {
    left: 50%;
    bottom: 27%;
    animation: na2-anim 1.5s infinite;
}

.na-3 {
    right: 25%;
    transform: rotate(-35deg);
    animation: na3-anim 1.5s infinite;
}

@keyframes na1-anim {
    0% {
        transform: rotate(35deg) translateX(0px)
    }

    10% {
        transform: rotate(35deg) translateX(-2px)
    }

    20% {
        transform: rotate(35deg) translateX(-4px)
    }

    30% {
        transform: rotate(35deg) translateX(-6px)
    }

    40% {
        transform: rotate(35deg) translateX(-8px)
    }

    50% {
        transform: rotate(35deg) translateX(-10px)
    }

    60% {
        transform: rotate(35deg) translateX(-10px)
    }

    70% {
        transform: rotate(35deg) translateX(-8px)
    }

    80% {
        transform: rotate(35deg) translateX(-6px)
    }

    90% {
        transform: rotate(35deg) translateX(-4px)
    }

    100% {
        transform: rotate(35deg) translateX(0px)
    }
}

@keyframes na3-anim {
    0% {
        transform: rotate(-35deg) translateX(0px)
    }

    10% {
        transform: rotate(-35deg) translateX(2px)
    }

    20% {
        transform: rotate(-35deg) translateX(4px)
    }

    30% {
        transform: rotate(-35deg) translateX(6px)
    }

    40% {
        transform: rotate(-35deg) translateX(8px)
    }

    50% {
        transform: rotate(-35deg) translateX(10px)
    }

    60% {
        transform: rotate(-35deg) translateX(10px)
    }

    70% {
        transform: rotate(-35deg) translateX(8px)
    }

    80% {
        transform: rotate(-35deg) translateX(6px)
    }

    90% {
        transform: rotate(-35deg) translateX(4px)
    }

    100% {
        transform: rotate(-35deg) translateX(0px)
    }
}

@keyframes na2-anim {

    0% {
        transform: translateX(-50%) translateY(0px)
    }

    10% {
        transform: translateX(-50%) translateY(-2px)
    }

    20% {
        transform: translateX(-50%) translateY(-4px)
    }

    30% {
        transform: translateX(-50%) translateY(-6px)
    }

    40% {
        transform: translateX(-50%) translateY(-8px)
    }

    50% {
        transform: translateX(-50%) translateY(-10px)
    }

    60% {
        transform: translateX(-50%) translateY(-10px)
    }

    70% {
        transform: translateX(-50%) translateY(-8px)
    }

    80% {
        transform: translateX(-50%) translateY(-6px)
    }

    90% {
        transform: translateX(-50%) translateY(-4px)
    }

    100% {
        transform: translateX(-50%) translateY(0px)
    }
}

@-webkit-keyframes mymove {
    50% {
        transform: scale(2);
        opacity: 0
    }

    100% {
        transform: scale(2);
        opacity: 0
    }
}

.white {
    color: white;
}

.pnlm-container {
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    cursor: default;
    width: 100%;
    height: 100%;
    background: #f4f4f4 url('img/background.svg') repeat;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: 0;
    line-height: 1.4;
    /*content: content;*/
    direction: ltr;
}

.pnlm-container, .pnlm-load-button {
    font-family: Helvetica, "Nimbus Sans L", "Liberation Sans", Arial, sans-serif;
}

    .pnlm-container * {
        box-sizing: content-box;
    }

.pnlm-ui {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pnlm-grab {
    cursor: grab;
    cursor: url('img/grab.svg') 12 8, default;
}

.pnlm-grabbing {
    cursor: grabbing;
    cursor: url('img/grabbing.svg') 12 8, default;
}

.pnlm-sprite {
    background-image: url('../img/sprites.svg');
    /*background-image: url('img/arrow.svg');*/
}

.pnlm-container:-moz-full-screen {
    height: 100% !important;
    width: 100% !important;
    position: static !important;
}

.pnlm-container:-webkit-full-screen {
    height: 100% !important;
    width: 100% !important;
    position: static !important;
}

.pnlm-container:-ms-fullscreen {
    height: 100% !important;
    width: 100% !important;
    position: static !important;
}

.pnlm-container:fullscreen {
    height: 100% !important;
    width: 100% !important;
    position: static !important;
}

.pnlm-render-container {
    cursor: inherit;
    /* Fix display bug in Safari 7 */
    position: absolute;
    height: 100%;
    width: 100%;
}

.pnlm-controls {
    margin-top: 4px;
    cursor: pointer;
    z-index: 2;
    -webkit-transform: translateZ(9999px);
    transform: translateZ(9999px);
}

/*.pnlm-control:hover {
    background-color: #f8f8f8;
}*/

.three-btn-sidebar {
    position: absolute;
    top: 16px;
    left: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 200px;
    z-index: 1;
}

.side-box {
    top: 0;
    left: -100px;
    z-index: 1;
    transition: .7s;
    padding: 10px;
    left: 0;
    position: fixed;
    background-color: #000000c2;
    border-radius: 10px;
    height: 200px;
    overflow: hidden;
}

.kesho {
    position: fixed;
    left: 38px;
    top: 230px;
    opacity: 0;
    transition: .7s;
    cursor: pointer;
    width: 17px;
    padding: 4px;
    border-radius: 50%;
    background: #000000c2;
}

.op {
    opacity: 1 !important;
}

.open-aside {
    height: 100% !important;
    border-radius: 0;
}

.open-right {
    padding-right: 90px;
}

.left120 {
    left: 116px;
    transform: rotate(180deg)
}

.pnlm-controls-container {
    margin-top: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: calc(100% - 350px);
}


.pnlm-zoom-controls {
    width: 26px;
    height: 52px;
}

.pnlm-zoom-in {
    width: 100%;
    height: 50%;
    position: absolute;
    top: 0;
    border-radius: 3px 3px 0 0;
}

.pnlm-zoom-out {
    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0;
    background-position: 0 -26px;
    border-top: 1px solid #ddd;
    border-top-color: rgba(0, 0, 0, 0.10);
    border-radius: 0 0 3px 3px;
}

.separate-back, .menubar-toggle, .guide-info {
    width: 31px;
    height: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    cursor: pointer;
}

/*
.menubar-toggle {
 top: 80px;
}
.separate-back {
    top: 48px;
}
.guide-info {
    top: 16px;
}*/

.bar-img {
    width: 60%;
    height: 75%;
}

.pnlm-fullscreen-toggle-button, .pnlm-orientation-button, .pnlm-hot-spot-debug-indicator {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.pnlm-hot-spot-debug-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 26px;
    margin: -13px 0 0 -13px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 13px;
    display: none;
}

.pnlm-orientation-button-inactive {
    background-position: 0 -156px;
}

.pnlm-orientation-button-active {
    background-position: 0 -182px;
}

/*.pnlm-fullscreen-toggle-button-inactive {
    background-position: 0 -52px;
}

.pnlm-fullscreen-toggle-button-active {
    background-position: 0 -78px;
}*/

.pnlm-panorama-info {
    position: absolute;
    top: 0px;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 0 3px 3px 0;
    padding-right: 10px;
    color: #fff;
    text-align: left;
    display: none;
    z-index: 2;
    /* Fix Safari fullscreen bug */
    -webkit-transform: translateZ(9999px);
    transform: translateZ(9999px);
    padding: 5px;
    border-radius: 5px;
}

.pnlm-title-box {
    position: relative;
    font-size: 15px;
    /*display: table;*/
    /*padding-left: 5px;*/
    /*margin-bottom: 3px;*/
    max-width: 150px;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    direction: rtl;
}

.pnlm-author-box {
    position: relative;
    font-size: 12px;
    display: table;
    padding-left: 5px;
}

.pnlm-load-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 150px;
    margin: -75px 0 0 -100px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 3px;
    text-align: center;
    font-size: 100px;
    display: none;
    color: #fff;
}

    .pnlm-load-box p {
        margin: 20px 0;
    }

.pnlm-lbox {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    display: none;
}

.pnlm-loading {
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-name: pnlm-mv;
    -webkit-animation-name: pnlm-mv;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    height: 10px;
    width: 10px;
    background-color: #fff;
    position: relative;
}

@keyframes pnlm-mv {
    from {
        left: 0;
        top: 0;
    }

    25% {
        left: 10px;
        top: 0;
    }

    50% {
        left: 10px;
        top: 10px;
    }

    75% {
        left: 0;
        top: 10px;
    }

    to {
        left: 0;
        top: 0;
    }
}

@-webkit-keyframes pnlm-mv {
    from {
        left: 0;
        top: 0;
    }

    25% {
        left: 10px;
        top: 0;
    }

    50% {
        left: 10px;
        top: 10px;
    }

    75% {
        left: 0;
        top: 10px;
    }

    to {
        left: 0;
        top: 0;
    }
}

.pnlm-load-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 100px;
    margin: -50px 0 0 -100px;
    background-color: rgba(0, 0, 0, .7);
    border-radius: 3px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    border: none;
    padding: 0;
    line-height: 1.4;
}

    .pnlm-load-button:hover {
        background-color: rgba(0, 0, 0, .8);
    }

    .pnlm-load-button:focus {
        outline: none;
        box-shadow: 0px 0px 0px 1px #fff inset;
    }

    .pnlm-load-button div {
        display: table;
        text-align: center;
        width: 100%;
    }

    .pnlm-load-button p {
        display: table-cell;
        vertical-align: middle;
    }

.pnlm-info-box {
    font-size: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 150px;
    margin: -75px 0 0 -100px;
    background-color: #000;
    border-radius: 3px;
    display: table;
    text-align: center;
    color: #fff;
    table-layout: fixed;
    z-index: 1;
}

    .pnlm-info-box a, .pnlm-author-box a {
        color: #fff;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .pnlm-info-box p {
        display: table-cell;
        vertical-align: middle;
        padding: 0 5px 0 5px;
    }

.pnlm-error-msg {
    display: none;
}

.pnlm-interaction-msg {
    display: none;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.7);
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    width: 100%;
    height: 100%;
    margin: 0;
    top: 0;
    left: 0;
}

.pnlm-outline {
    border: 1px solid #fff;
    border-radius: 3px;
    padding: 0 2px;
}

.pnlm-about-msg {
    font-size: 11px;
    line-height: 11px;
    color: #fff;
    padding: 5px 8px 5px 8px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 3px;
    position: absolute;
    top: 50px;
    left: 50px;
    display: none;
    opacity: 0;
    -moz-transition: opacity .3s ease-in-out;
    -webkit-transition: opacity .3s ease-in-out;
    -o-transition: opacity .3s ease-in-out;
    -ms-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
    z-index: 1;
}

    .pnlm-about-msg a:link, .pnlm-about-msg a:visited {
        color: #fff;
    }

    .pnlm-about-msg a:hover, .pnlm-about-msg a:active {
        color: #eee;
    }

.pnlm-hotspot-base {
    position: absolute;
    visibility: hidden;
    cursor: default;
    vertical-align: middle;
    top: 0;
    z-index: 0;
    cursor: pointer;
}

.pnlm-hotspot {
    height: 26px;
    width: 26px;
    border-radius: 13px;
    z-index: 10000000;
}

    /*    .pnlm-hotspot:hover {
    background-color: rgba(255,255,255,0.2);
}*/

    .pnlm-hotspot.pnlm-info {
        background-position: 0 -104px;
    }

    .pnlm-hotspot.pnlm-scene {
        background-position: 0 -130px;
        /*animation: vool 1s ease infinite;*/
    }

/*@keyframes vool {
    to {
        background-position: 0px -133px;
    }
}*/

div.pnlm-tooltip span {
    visibility: hidden;
    position: absolute;
    top: 0;
    border-radius: 7px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    max-width: 1000px;
    padding: 5px 10px;
    margin-left: -220px;
    cursor: pointer;
    font-size: 10pt;
    display: flex;
    flex-direction: column-reverse;
    width: fit-content !important;
    white-space: nowrap;
}

div.pnlm-tooltip:hover span {
    visibility: visible;
}

    div.pnlm-tooltip:hover span:after {
        content: '';
        position: absolute;
        width: 0;
        height: 0;
        border-width: 10px;
        border-style: solid;
        border-color: rgba(0, 0, 0, 0.7) transparent transparent transparent;
        bottom: -20px;
        left: -10px;
        margin: 0 50%;
    }

.pnlm-compass {
    position: absolute;
    width: 50px;
    height: 50px;
    right: 4px;
    bottom: 4px;
    border-radius: 25px;
    background-image: url('img/compass.png');
    cursor: default;
    display: none;
}

.pnlm-world {
    position: absolute;
    left: 50%;
    top: 50%;
}

.pnlm-face {
    position: absolute;
    -webkit-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
}

.pnlm-dragfix, .pnlm-preview-img {
    position: absolute;
    height: 100%;
    width: 100%;
}

.pnlm-preview-img {
    background-size: cover;
    background-position: center;
}

.pnlm-lbar {
    width: 150px;
    margin: 0 auto;
    border: #fff 1px solid;
    height: 6px;
}

.pnlm-lbar-fill {
    background: #fff;
    height: 100%;
    width: 0;
}

.pnlm-lmsg {
    font-size: 12px;
}

.pnlm-fade-img {
    position: absolute;
    top: 0;
    left: 0;
}

.pnlm-pointer {
    cursor: pointer;
}

.top-fixed {
    top: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100000000
}

.rodal-mask-coustom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000d9;
    z-index: 555;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-modal {
    background: #0000009e;
    width: 600px;
    /*height:300px;*/
    padding: 20px;
    border-radius: 5px;
    direction: rtl;
    width: fit-content;
    height: fit-content;
    padding: 0;
}

.main-modal--head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.close-con-ico {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 50%;
    overflow: hidden;
    background: black;
    cursor: pointer;
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 3333;
    width: 38px;
    height: 38px;
}

.rodal-tt {
    font-weight: 700;
    font-size: 17px;
}

.rodal-body {
    display: flex;
    flex-wrap: wrap;
    padding: 0px;
}

.grid-rodal-items img {
    width: 7%;
    height: 100%;
    display: flex;
    margin: 10px;
}

.grid-rodal-items {
    padding: 5px;
    cursor: pointer;
    width: 100%;
    /* width: 227px; */
    /* border: 1px solid transparent !important; */
    border-radius: 3px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    /* background: rgba(255, 255, 255, 0.2); */
    /* border-radius: 16px; */
    /* box-shadow: 0 4px 30px rgb(0 0 0 / 10%);*/
    /* backdrop-filter: blur(12.3px); */
    -webkit-backdrop-filter: blur(12.3px);
    /*border: 1px solid rgba(255, 255, 255, 0.3);*/
    color: white;
    margin-top: 5px;
}

.reverseCol {
    display: flex;
    flex-direction: column-reverse;
}

.td-none {
    text-decoration: none;
}

.beta-titles {
    color: #938f8f;
    font-size: 13px;
}

.r-titles {
    color: #787878;
    font-size: 14px;
}

.rodal-row .grid-rodal-items {
    margin-left: 1%;
    margin-bottom: 1%;
}

    .rodal-row .grid-rodal-items:nth-child(2n) {
        margin-left: 0%;
    }

.instagram {
    color: #e75e5e;
    border-color: #e75e5e75;
}

.rodal-row {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    direction: rtl;
}

.bbw {
    border-bottom: 1px solid white;
}

.telegram {
    color: #0089ff;
    border-color: #0089ff63;
}

.whatsapp {
    color: #10ff00;
    border-color: #10ff0075;
}

.twitter {
    color: #001fff;
    border-color: #001fff47;
}

.website {
    color: #606060;
    border-color: #8585857a;
}

.meta {
    color: #4c4c9f;
    border-color: #4c4c9f6b;
}

.row-special {
    width: 100% !important;
    padding: 15px;
    /*border: 1px solid #d9d9d9 !important;*/
    cursor: pointer;
    width: fit-content;
    margin-bottom: 4%;
    background: #ededed !important;
    border-radius: 3PX;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .row-special svg {
        width: 40px;
        height: 40px;
        color: #ed6755;
    }


.white-board * {
    box-sizing: border-box;
}

.social-back {
    background: url('../img/shop 16.9.jpg');
    width: 100vw;
    height: 100vh;
    background-position: center !important;
    background-size: cover !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-img {
    position: absolute;
    width: 200px;
    top: 30%;
    transform: translateY(-30%);
    left: 8%;
}

    .brand-img img {
        width: 100%;
    }

.white-board {
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 400px;
    margin-bottom: 40px;
}

    .white-board::-webkit-scrollbar {
        width: 3px;
    }

    /* Handle */
    .white-board::-webkit-scrollbar-thumb {
        background: #363636;
        border-radius: 10px;
    }

        /* Handle on hover */
        .white-board::-webkit-scrollbar-thumb:hover {
            background: transparent;
        }

.w-100 {
    width: 100%;
}

/*__________________________Floor Elevator____________________________________*/

/** {

    margin: 0;
    direction: rtl;
    resize: none;
    font-size: 10pt;
    box-sizing: border-box;
    letter-spacing: 0.5px;
}
*/
.relative {
    position: relative;
}

.bold {
    font-weight: bold;
}

.flexCenter {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10pt;
}

.flexSpace {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flexCol {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.align-start {
    align-items: flex-start;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

main {
    /*background-color: #939393;*/
    background: linear-gradient(to bottom, #d5d7e5, #eee, #d5d7e5);
    width: 350px;
    height: 800px;
    border-radius: 25px;
    padding: 50px;
    /*   -webkit-box-shadow: 5px 5px 15px 5px #B0B0B0;
    box-shadow: 5px 5px 15px 5px #acacac;*/
    position: relative;
}

header {
    height: 120px;
    border-radius: 17px;
    /*background-image: url('../img/led1.png');*/
    background-color: #000000eb;
    background-size: cover;
    border: 4px solid lightgray;
    background-repeat: no-repeat;
    transition: 1s;
    overflow: hidden;
}

.button-row {
    padding: 10px;
    width: 100%;
}

.elevator-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    overflow: hidden;
    /*background-color: #626262;*/
    background-color: #a7a6a6;
    cursor: pointer;
    transition: .3s;
    margin: 10px 25px;
}

.btn-number {
    font-size: 30pt;
    font-weight: bold;
    color: rgb(46 46 46);
    padding: 15px;
    font-family: sans-serif;
    direction: ltr;
}

.num-back {
    /*    display: flex;
    justify-content: center;
    align-items: center;
    width: 83%;
    height: 83%;
    border-radius: 50%;
    background: linear-gradient(0deg, rgba(207,207,207,1) 29%, rgba(80,80,80,1) 100%);
    border: 5px solid gray;
    transition: .3s;
    outline: 2px solid black;*/
    display: flex;
    justify-content: center;
    align-items: center;
    width: 83%;
    height: 83%;
    border-radius: 50%;
    background: linear-gradient(0deg, rgba(207, 207, 207, 1) 29%, rgb(88 88 88) 100%);
    border: 5px solid #c1b8b8;
    transition: .3s;
    outline: 2px solid #545454;
}

.button-box {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    direction: ltr;
}

svg {
    transition: 1s;
    opacity: 0.7;
}

header:hover svg {
    height: 7em;
}

.fs-of {
    font-size: 60pt;
    overflow: hidden;
    margin-top: 40px;
}

.fs10 {
    font-size: 10pt;
}

/*.up-indicator {
    animation: arrowUp 1s infinite ease-in forwards;
}

.down-indicator {
    animation: arrowDown 1s infinite ease-in forwards;
}
*/


.up-indicator {
    animation: arrowUp 2s ease infinite;
}

.down-indicator {
    animation: arrowDown 2s ease infinite;
}

@keyframes arrowUp {
    0% {
        transform: translateY(0px)
    }

    10% {
        transform: translateY(-7px)
    }

    20% {
        transform: translateY(-12px)
    }

    30% {
        transform: translateY(-18px)
    }

    40% {
        transform: translateY(-25px)
    }

    50% {
        transform: translateY(-30px)
    }

    60% {
        transform: translateY(-25px)
    }

    70% {
        transform: translateY(-18px)
    }

    80% {
        transform: translateY(-12px)
    }

    90% {
        transform: translateY(-7px)
    }

    100% {
        transform: translateY(0px)
    }
}

@keyframes arrowDown {
    0% {
        transform: translateY(0px)
    }

    10% {
        transform: translateY(7px)
    }

    20% {
        transform: translateY(12px)
    }

    30% {
        transform: translateY(18px)
    }

    40% {
        transform: translateY(25px)
    }

    50% {
        transform: translateY(30px)
    }

    60% {
        transform: translateY(25px)
    }

    70% {
        transform: translateY(18px)
    }

    80% {
        transform: translateY(12px)
    }

    90% {
        transform: translateY(7px)
    }

    100% {
        transform: translateY(0px)
    }
}

/*@keyframes arrowDown {
    from {
        height: 90px;
    }

    to {
        height: 0;
    }
}

@keyframes arrowUp {
    from {
        height: 0
    }

    to {
        height: 90px;
    }
}*/

/********************* just for test the active mode (can delete it) ***************************/

.elevator-btn:hover .num-back {
    outline: 2px solid rgb(27, 183, 255);
}

.elevator-btn:hover .btn-number {
    color: rgb(3, 73, 131);
}


/*_______________________________________________________________________________________*/
.pnlm-hotspot.pnlm-elevator {
    background-image: url(img/elevator.png);
    background-size: cover;
    background-color: white;
}

 .pnlm-hotspot.pnlm-shop {
    background-image: url(../../common/img/shop.svg);
    background-size: 16px;
    background-color: white;
    padding: 0px;
    background-position: center;
    background-repeat: no-repeat;
}
.pnlm-hotspot.pnlm-banner {
    background-image: url(../img/info-main.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    width: 16px;
    height: 16px;
    background-color: #ffffff;
    border-radius: 50%;
} 
.exit {
    background-image: url(img/exit.png);
}

.pnlm-fullscreen-toggle-button img {
    width: 80%;
    height: 80%;
}

.pnlm-fullscreen-toggle-button span {
    position: absolute;
    color: white;
    left: 44px;
    font-size: 13px;
    white-space: nowrap;
}

.pin {
    background-image: url(img/pin.png);
}

.unpin {
    background-image: url(img/unpin.png);
    background-size: cover;
}

.pnlm-hotspot-background {
    background-size: cover;
    background-color: white;
}

.pnlm-hotspot.pnlm-enter {
    background-position: 0 -130px;
}

.pnlm-hotspot.pnlm-exit {
    background-position: 0 -130px;
}

.orientation {
    transform: rotate(-90deg);
    transform-origin: left top;
    width: 100vh;
    height: 100vw;
    overflow-x: hidden;
    position: absolute;
    top: 100%;
    left: 0;
}

.resizeable {
    resize: both;
    overflow: hidden;
    position: relative !important;
}

/*   .resizeable img {
        width: 100% !important;
        height: 100% !important;
    }*/

.point:hover:after {
    content: '';
    /* background-image: url("http://www.freeiconspng.com/uploads/original-file---svg-file-nominally-550--400-pixels-file-size-3--23.png");*/
    border-radius: 50%;
    width: 5px !important;
    height: 5px !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: red
}

.widget {
    display: block;
    position: absolute;
    border: 2px dashed red;
    z-index: 1000000;
}

.widget-rect {
    display: block;
    position: absolute;
    z-index: 1000000;
    color: red;
    border: 2px dashed rgb(107, 33, 6);
}

@keyframes fadeIn {
    0% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    60% {
        opacity: 0;
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.tag-point {
    content: '';
    /* background-image: url("http://www.freeiconspng.com/uploads/original-file---svg-file-nominally-550--400-pixels-file-size-3--23.png");*/
    border-radius: 50%;
    width: 10px !important;
    height: 10px !important;
    position: absolute;
    top: 50%;
    left: 50%;
    /*  opacity: 0;*/
    transform: translate(-50%, -50%);
    background-color: red;
    /*animation: fadeIn 3s infinite alternate;*/
}

.flasher {
    animation: fadeIn 2s infinite alternate;
}

.wrapper {
    width: 150px;
    height: 60px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.circle {
    width: 20px;
    height: 20px;
    position: absolute;
    border-radius: 50%;
    background-color: #fff;
    left: 15%;
    transform-origin: 50%;
    animation: circle .5s alternate infinite ease;
}

.mask_fsr_loading {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000000a1;
}

@keyframes circle {
    0% {
        top: 60px;
        height: 5px;
        border-radius: 50px 50px 25px 25px;
        transform: scaleX(1.7);
    }

    40% {
        height: 20px;
        border-radius: 50%;
        transform: scaleX(1);
    }

    100% {
        top: 0%;
    }
}

.circle:nth-child(2) {
    left: 45%;
    animation-delay: .2s;
}

.circle:nth-child(3) {
    left: auto;
    right: 15%;
    animation-delay: .3s;
}

.shadow {
    width: 20px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
    top: 62px;
    transform-origin: 50%;
    z-index: -1;
    left: 15%;
    filter: blur(1px);
    animation: shadow .5s alternate infinite ease;
}

@keyframes shadow {
    0% {
        transform: scaleX(1.5);
    }

    40% {
        transform: scaleX(1);
        opacity: .7;
    }

    100% {
        transform: scaleX(.2);
        opacity: .4;
    }
}

.shadow:nth-child(4) {
    left: 45%;
    animation-delay: .2s
}

.shadow:nth-child(5) {
    left: auto;
    right: 15%;
    animation-delay: .3s;
}

.wrapper span {
    position: absolute;
    top: 75px;
    font-family: 'Lato';
    font-size: 20px;
    letter-spacing: 12px;
    color: #fff;
    left: 31%;
}

/***********************pourya*******************************/

.main-modal {
    background: #0000009e;
    width: 600px;
    height: 300px;
    padding: 20px;
    border-radius: 5px;
    direction: rtl;
    width: fit-content;
    height: fit-content;
    padding: 15px;
}


.wellcom-text {
    width: 500px;
    font-weight: bold;
    padding: 20px;
    color: white;
    font-size: 14pt;
    margin: auto;
}

.wellcom-enter-btn {
    border: none;
    color: black;
    background-color: #c7af8b;
    border-radius: 5px;
    padding: 5px 10px;
    margin-top: 30px;
    width: 100%;
    font-weight: bold;
    font-size: 18px;
}

.golden {
    color: var(--golden) !important;
}

.p-cancel-btn, .p-exit-btn {
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    margin-top: 30px;
    width: 40%;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
}

.p-cancel-btn {
    color: black;
    background-color: #c7af8b;
}

.p-exit-btn {
    color: #c7af8b;
    background-color: black;
}

.tooltip-animation {
    visibility: visible !important
}

.platform {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    /*background-color: black;*/
    color: var(--black);
    margin-left: 10px;
    font-weight: 700;
    cursor: pointer;
}

    .platform img {
        transition: 0.3s;
        width: 60%;
        height: 60%;
    }

    .platform:hover img {
        transform: rotateY(180deg);
    }

.platform-title {
    font-weight: bold;
    font-size: 20px;
    color: white;
    direction: rtl;
    text-align: start;
    padding-right: 80px;
}

.bl2 {
    border-left: 2px solid white;
    padding-left: 40px;
    padding-bottom: 10px;
}


.platform-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 5px 0;
}

.platform-line {
    height: 100%;
    border-left: 2px solid white;
    position: absolute;
}

.anim-svg {
    animation: shake 2s infinite;
}

@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }

    30%, 50%, 70% {
        transform: translate3d(-2px, 0, 0);
    }

    40%, 60% {
        transform: translate3d(2px, 0, 0);
    }
}

/***********************pourya*******************************/

/************************* this class (.active) on click event should be add to div with ".num-back" class ***************************/
.active {
    outline: 2px solid rgb(27, 183, 255);
}

.full-popup-body .main-modal {
    background: transparent;
    width: 600px;
    height: 300px;
    border-radius: 5px;
    direction: rtl;
    width: 100vw;
    height: 100vh;
    padding: 0;
}

.full-popup-body .rodal-body {
    display: flex;
    flex-wrap: wrap;
    padding: 0px;
    width: 100vw;
    height: 100vh;
    overflow: auto;
}

.full-popup-body .sell-desc-text {
    max-height: 100%;
    overflow: auto;
    padding-left: 15px;
    margin-bottom: 0;
}

.full-popup-body .container-product {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 40px;
    background-color: white;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.full-popup-body .product-container-modal {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    height: unset;
}

.full-popup-body .right-side, .full-popup-body .left-side {
    width: 100%;
}

.full-popup-body .left-side {
    flex-direction: row;
    max-height: 184px;
}

.full-popup-body .right-side {
    justify-content: unset;
    height: 100%
}

.full-popup-body .image-swipper {
    width: 40%;
    margin: 10px auto;
    align-self: flex-start;
}

.full-popup-body ul {
    max-height: 200px;
}

.full-popup-body .product-title {
    font-size: 14pt;
}

.full-popup-body .product-features {
    width: 100%;
    height: 50%;
    margin-bottom: 20px;
}

.full-popup-body .other-images {
    display: none;
}

.full-popup-body .sell-description {
    margin-top: 0;
    width: 46%;
}

.sell-description {
    text-align: justify;
    font-size: 9pt;
    overflow: auto;
    margin: 20px 0;
    padding: 0 10px;
}

.sell-description-title {
    position: sticky;
    top: 0;
    background-color: white;
    padding: 5px 0;
    width: 100%;
}

.sell-description::-webkit-scrollbar {
    width: 3px;
}

/* Handle */
.sell-description::-webkit-scrollbar-thumb {
    background: lightgray;
    border-radius: 10px;
}

    /* Handle on hover */
    .sell-description::-webkit-scrollbar-thumb:hover {
        background: gray;
    }


.relative {
    position: relative;
}

.bold {
    font-weight: bold;
}

.pointer {
    cursor: pointer;
}

.flexCenter {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flexStart {
    display: flex;
    justify-content: start;
    align-items: center;
}

.flexSpace {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.w-100 {
    width: 100%;
}

.flex {
    display: flex;
}

.flexColumn {
    display: flex;
    flex-direction: column;
}

/* ********************************************************************************************************** */

.container-product {
    display: flex;
    align-items: center;
    flex-direction: column;
    /*max-height: 98vh;*/
    width: 1000px;
    padding: 40px;
    background-color: white;
    margin: 7px;
    border-radius: 7px;
}

.product-container-modal {
    display: flex;
    justify-content: space-between;
    height: 95%;
}

.top-div {
    display: flex;
    align-self: flex-end;
    font-size: 3em;
    font-weight: bold;
    font-family: serif;
    direction: ltr;
    border-bottom: 1px solid lightgray;
    width: 90%;
    margin-bottom: 30px;
}


.right-side, .left-side {
    width: 49%;
    /* justify-content: space-between;*/
}


.image-swipper {
    border-radius: 7px;
    width: 32vmin;
    margin: 0 auto;
    max-height: 60%;
    overflow: hidden;
}

.features-title {
    font-size: 11pt;
}

.features-title,
ul {
    margin-right: 40px;
}

.gray-text {
    color: gray;
}

.product-features {
    height: 58%;
}

ul {
    max-height: calc(100% - 53px);
    overflow: auto;
}

    /* width */
    ul::-webkit-scrollbar {
        width: 3px;
    }

    /* Handle */
    ul::-webkit-scrollbar-thumb {
        background: lightgray;
        border-radius: 10px;
    }

        /* Handle on hover */
        ul::-webkit-scrollbar-thumb:hover {
            background: gray;
        }

/* width */
.other-images::-webkit-scrollbar {
    width: 3px;
}

/* Handle */
.other-images::-webkit-scrollbar-thumb {
    background: lightgray;
    border-radius: 10px;
}

    /* Handle on hover */
    .other-images::-webkit-scrollbar-thumb:hover {
        background: gray;
    }

li {
    padding: 5px 0;
}

.product-title {
    font-weight: bold;
    font-size: 20px;
    padding: 0 10px;
    width: 100%;
    height: 5%;
    margin-bottom: 10px
}

.other-images {
    overflow: auto;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    max-height: 40%;
}

.single-image {
    width: 23%;
    height: 100px;
    margin: 0 0 5px 5px;
    border: 1px solid lightgray;
    border-radius: 7px;
    overflow: hidden;
}

.img {
    width: 100%;
    height: 100%;
}

.sell-box {
    border: 1px solid lightgray;
    padding: 15px;
    border-radius: 10px;
    margin: 0;
}

.sell-top {
    border-bottom: 1px solid lightgray;
    padding: 10px 0;
}

.price-box {
    padding: 10px 0;
}

.seller-price {
    color: gray;
}

.dark-text {
    font-weight: bold;
}

.gray-svg {
    margin-left: 3px;
}

.toman {
    font-size: 9px;
}

.extant {
    color: red;
    font-size: 9pt;
    font-weight: bold;
}

.discount {
    padding: 0 10px;
}

.discount-circle {
    background-color: red;
    border-radius: 25px;
    padding: 0 15px;
    color: white;
}

.buy-btn {
    display: block;
    margin: 0 auto;
    border-radius: 7px;
    border: none;
    outline: none;
    color: white;
    background-color: var(--purple);
    padding: 10px;
    width: 100%;
    cursor: pointer;
    text-align: center
}

.image-swipper .swiper {
    border-radius: 7px;
    width: 100%;
    height: 100%;
    border: 1px solid #dfdcdc52;
    position: relative;
}

.swiper {
    width: 100%;
    border-radius: 7px;
}

.swiper-scrollbar {
    display: none;
}

.sw-img {
    object-fit: contain;
}

.tick-svg {
    position: absolute;
    top: 13px;
    width: 15px;
    height: 15px;
    right: -9px;
}

.ml5 {
    margin-left: 5px;
}

.ml10 {
    margin-left: 10px;
}


.gray-text, .dark-text {
    font-size: 10pt;
}

.share-product {
    border: 1px solid lightgray;
    border-radius: 10px;
    width: 30px;
    padding: 5px;
    height: 30px;
    box-shadow: 0px 9px 17px 0px rgb(191 191 191 / 75%);
    cursor: pointer;
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 2;
    background: white;
}

.pnlm-hotspot.pnlm-pelak {
    background-position: 0 -104px;
}

.product-swiper {
    position: fixed;
    bottom: 120px;
    width: 70vw;
    margin: 0 auto;
    height: 100px;
    padding: 5px !important;
    background: #00000026;
}

.product-swiper-mobile {
    position: fixed;
    bottom: 70px;
    width: 70vw;
    margin: 0 auto;
    height: 45px;
    padding: 5px !important;
    background: #00000026;
}

.dark-card {
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 7px;
    position: relative;
    transition: .3s;
}

    .dark-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.dark-card-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    cursor: pointer;
}


#productSwiper .dark-card:hover {
    transform: translateY(-5px);
}

/*.close-svg {
    width: 40px;
}*/

.infos-parent {
    width: 50vw;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    color: white;
    font-weight: bold;
    font-size: 12pt;
    overflow: auto;
    max-height: 90vh;
}

    .infos-parent::-webkit-scrollbar {
        display: none;
    }

.top-infos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 40px;
}

.infos-description {
    text-align: justify;
    font-weight: 100;
    color: #b7b2b2;
}

.infos-map-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.infos-map {
    width: 100%;
    border-radius: 10px;
    border: 1px solid white;
    height: 130px;
}

.infos-title, .infos-map-title {
    display: flex;
    align-items: flex-end;
}

.shop-blue-tick {
    width: 30px;
    aspect-ratio: 1/1;
}

/************************************ Search Popup **********************************/
.search-popup-parent {
    width: 100vw;
    height: 100vh;
    display: flex;
    overflow: auto;
    justify-content: center;
    padding: 100px 20px 20px;
}

    .search-popup-parent::-webkit-scrollbar {
        width: 0;
    }

.search-dark-popup {
    color: white;
    width: 60%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

.search-dark-box {
    position: relative;
    width: 50%;
    animation: wide .5s ease;
    margin-bottom: 50px;
}

.search-dark-input {
    border: 2px solid white;
    border-radius: 25px;
    padding: 5px 15px;
    background: transparent;
    outline: none;
    width: 100%;
    transition: 1s;
    color: white;
    font-size: 12pt;
}

@keyframes wide {
    0% {
        width: 0;
    }

    20% {
        width: 10%;
    }

    40% {
        width: 20%;
    }

    60% {
        width: 30%;
    }

    80% {
        width: 40%;
    }

    100% {
        width: 50%;
    }
}

.search-dark-magnifier {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.search-result-list {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    /*overflow: auto;*/
    padding: 10px;
    flex-wrap: wrap;
}

    .search-result-list::-webkit-scrollbar {
        width: 3px;
    }

    /* Handle */
    .search-result-list::-webkit-scrollbar-thumb {
        background: #363636;
        border-radius: 10px;
    }

        /* Handle on hover */
        .search-result-list::-webkit-scrollbar-thumb:hover {
            background: transparent;
        }

.search-result-item {
    width: 23%;
    max-height: 320px;
    padding: 30px;
    border: 1px solid lightgray;
    border-radius: 10px;
    margin: 0 5px 10px;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    background-color: white;
    position: relative;
}

.search-prod-img {
    width: 100%;
    height: 50%;
    border-radius: 5px;
    margin-bottom: 10px;
    object-fit: contain;
}

.search-result-shops-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    /*border-bottom: 1px solid white;*/
    margin-bottom: 20px;
}

.search-result-shop {
    width: 12.5%;
    cursor: pointer;
    flex-direction: column;
    margin: 10px 0;
    max-height: 120px;
}

.search-item-lines {
    font-size: 9pt;
    padding: 5px 0;
    color: black;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.black {
    color: black;
}

.search-shop-line {
    font-size: 10pt;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: white;
    white-space: nowrap;
}

.search-circle-shop {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
    margin-bottom: 10px;
}

.search-shops-title {
    /*border-bottom: 1px solid white;*/
    width: 100%;
    display: flex;
    justify-content: flex-start;
    padding: 5px;
    font-weight: bold;
}

.search-item-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.search-off {
    padding: 3px 15px;
    background-color: red;
    color: white;
    border-radius: 25px;
    font-size: 10pt;
}

.search-final-price {
    padding: 10px 0;
    width: 100%;
}

.search-main-price {
    color: gray;
    font-size: 11pt;
    margin-right: auto;
}

.search-share-product {
    border: 1px solid lightgray;
    border-radius: 7px;
    width: 30px;
    padding: 5px;
    height: 30px;
    box-shadow: 0px 9px 17px 0px rgb(191 191 191 / 0%);
    cursor: pointer;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    background: white;
    transition: .3s;
}

    .search-share-product:hover {
        box-shadow: 0px 9px 17px 0px rgb(191 191 191 / 85%);
    }

.off-price {
    font-size: 10pt;
}

/************************************ Free Shop Popup **********************************/
.free-shop-parent {
    width: 100vw;
    height: 100vh;
    display: flex;
    overflow: auto;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
}

    .free-shop-parent::-webkit-scrollbar {
        width: 0;
    }

.free-shop-box {
    color: white;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    position: relative;
    border-radius: 10px;
    color: white;
    margin-top: 30px;
}

.free-shop-share {
    position: absolute;
    top: 30px;
    left: 30px;
    border: 1px solid #d8d7c3;
    border-radius: 10px;
    width: 30px;
    padding: 5px;
    height: 30px;
    box-shadow: 0px 9px 17px 0px rgb(191 191 191 / 0%);
    cursor: pointer;
    z-index: 2;
    background: #d8d7c3;
    transition: .3s;
}

    .free-shop-share:hover {
        transform: rotate(180deg);
    }

.free-shop-btn {
    padding: 7px 20px;
    background: var(--golden);
    border-radius: 10px;
    color: black;
    font-weight: bold;
    font-size: 11pt;
    margin-right: auto;
    cursor: pointer;
    transition: .3s;
}

    .free-shop-btn:hover {
        box-shadow: 1px 1px 15px #3c3b3b;
    }

.rent-tariff {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
}

.rent-tariff-item {
    padding: 5px;
}

.rent-tariff-box {
    padding: 15px 30px;
    border: 1px solid #d8d7c3;
    border-radius: 10px;
    width: 100%;
}

.rent-tariff-time {
    font-size: 11pt;
}

.rent-tariff-price {
    padding: 7px 70px;
    border-radius: 10px;
}

.three-months {
    background-color: var(--trans-bricky);
}

.six-months {
    background-color: var(--trans-purple);
}

.a-year {
    background-color: var(--nafti);
}

.free-shop-description {
    text-align: justify;
    align-self: flex-start;
}

.mr-auto {
    margin-right: auto;
    text-align: left;
}

/***********************************Tariff table***************************/

.tariff-list-parent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px;
    padding-top: 100px;
}

    .tariff-list-parent p, .tariff-list-parent h1 {
        padding: 20px;
    }

    .tariff-list-parent p {
        font-size: 12pt;
    }

    .tariff-list-parent h1 {
        font-size: 15pt;
    }

.tariff-table-parent {
    max-height: 550px;
    overflow: auto;
    width: 100%;
    padding-left: 10px;
}

    .tariff-table-parent::-webkit-scrollbar {
        width: 2px;
    }

    .tariff-table-parent::-webkit-scrollbar-thumb {
        background: gray;
        border-radius: 10px;
    }

        .tariff-table-parent::-webkit-scrollbar-thumb:hover {
            background: lightgray;
        }


.tariff-table .free-shop-parent {
    margin: 20px 0;
    width: 100%;
}

.tariff-table tr td:first-child {
    width: 50%;
    text-align: start;
}

.tariff-table tr:first-child {
    position: sticky;
    top: 0;
    background: #000000;
}

.tariff-table tr:nth-child(2) {
    position: sticky;
    top: 54px;
    background: #000000;
}

.tariff-table th, .tariff-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid white;
    border-collapse: collapse;
    font-size: 10pt;
}

.tariff-table th {
    font-size: 11pt;
    cursor: pointer;
    transition: .3s;
}

    .tariff-table th:hover {
        color: var(--golden);
    }


.tariff-description {
    display: flex;
    flex-direction: column;
    color: white;
    margin-top: 16px;
    width: 100%;
}

.feature {
    text-align: justify;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 15px;
}


    .feature b {
        margin-left: 5px;
        font-size: 12pt;
    }

    .feature span {
        font-size: 12pt;
    }

.footer {
    width: 100%;
    background: #00000091;
    padding: 0 10px;
    border-radius: 10px;
    margin: 20px 0;
}

.footer-single-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
    text-align: start;
}

.footer-title {
    font-size: 13pt;
    margin-top: 20px;
    margin-bottom: 15px;
    color: white;
}

.contact-tel-address {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--golden);
    margin-bottom: 20px;
}

.tel {
    font-size: 11pt;
    display: flex;
    text-align: start;
    align-items: center;
}

.tel-num {
    margin-right: 10px;
}


/************************************ Free Shop Popup End**********************************/


/**************************Guide map*****************************/

.guide-map {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    background-color: #000000c2;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: .5s;
    display: none;
}

    .guide-map svg {
        z-index: 2;
        transition: .5s;
    }

    .guide-map:hover svg {
        transform: rotateY(180deg);
    }

.guide-map-modal {
    width: 100vw;
    height: 100vh;
    overflow: auto;
    justify-content: start;
    align-items: start;
}

    .guide-map-modal::-webkit-scrollbar, .parent-img::-webkit-scrollbar {
        display: none;
    }

.parent-img {
    position: relative;
    display: block;
    width: 900px;
    height: 900px;
    margin: 0 auto;
}

.map-img {
    display: block;
    width: 100%;
    height: 100%;
}

.map-circle-points {
    width: 50px;
    height: 50px;
    position: absolute;
    cursor: pointer;
}

#mcp-1 {
    top: 286px;
    left: 285px;
}

#mcp-2 {
    top: 286px;
    left: 476px;
}

#mcp-3 {
    top: 286px;
    left: 613px;
}

#mcp-4 {
    top: 450px;
    left: 285px;
}

#mcp-5 {
    top: 450px;
    left: 476px;
}

#mcp-6 {
    top: 450px;
    left: 613px;
}

#mcp-7 {
    top: 604px;
    left: 285px;
}

#mcp-8 {
    top: 604px;
    left: 476px;
}

#mcp-9 {
    top: 604px;
    left: 613px;
}

#mcp-10 {
    top: 347px;
    left: 344px;
}

#mcp-11 {
    top: 373px;
    left: 569px;
}

/***********************************************Start hamburger menu ************************************/
.three-btn-sidebar, .side-box {
    display: none;
}

.hamburger-menu-parent {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 1;
    background-color: #000000e8;
    width: 38px;
    height: 38px;
    border-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
    overflow: hidden;
}

.burger-svg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    width: 38px;
    padding: 8px;
    cursor: pointer;
}

.open-burger {
    top: 0 !important;
    left: 0 !important;
    width: 100vw;
    height: 100lvh;
    border-radius: 0;
    z-index: 9;
}

.xsvg {
    width: 38px;
    height: 38px;
    background-color: #000000c2;
    border-radius: 7px;
    padding: 8px;
    top: 6px;
    left: 6px;
    cursor: pointer;
}

.hamburger-menu-content {
    display: none;
}

.open-burger .hamburger-menu-content {
    display: block;
    width: 100%;
    height: 100%;
    overflow: auto;
}

    .open-burger .hamburger-menu-content::-webkit-scrollbar {
        display: none;
    }

.open-burger .mini-search {
    border: 2px solid var(--golden);
    border-radius: 25px;
    background: black;
    outline: none;
    width: 100%;
    color: white;
    z-index: 2;
    direction: rtl;
    font-size: 9pt;
    padding: 5px 10px;
}

.mini-search-p {
    width: 300px;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    z-index: 4
}

.open-burger .mini-search::placeholder {
    color: var(--golden);
}

.open-burger .mini-mag {
    position: absolute;
    left: 6px;
    top: 6px;
    z-index: 2;
    width: 22px;
    height: 22px;
}

.selected-places-slider {
    display: none;
}

.open-burger .selected-places-slider {
    position: absolute;
    z-index: 2;
    bottom: 0;
    width: 100%;
    background-color: #000000c4;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.open-burger .option-circles {
    position: absolute;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /*box-shadow: 0px -1px 2px 0 #ab6600 inset, 0px 1px 1px 1px #664d00;*/
}

    .open-burger .option-circles .oc-text {
        position: absolute;
        color: var(--golden);
        font-size: 10pt;
        right: 52px;
        white-space: nowrap;
    }


    .open-burger .option-circles:active {
        box-shadow: unset;
    }

        .open-burger .option-circles:active img {
            width: 17px;
        }

.open-burger .map-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    left: 0;
    top: 20vh;
    overflow-y: auto;
    z-index: 2;
    padding-left: 10px;
    width: fit-content;
    direction: rtl;
    max-height: 300px;
    max-width: 200px;
}

.open-burger .per-map {
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 10px;
    flex-direction: row-reverse;
}

    .open-burger .per-map img {
        background-color: black;
        padding: 6px;
        border-radius: 5px;
        margin-right: 5px;
        margin-right: 5px;
        width: 40px;
        height: 40px;
        cursor: pointer;
    }

    .open-burger .per-map .map-name {
        color: var(--golden);
        white-space: nowrap;
        text-overflow: ellipsis;
        max-width: 80px;
        overflow: hidden;
        font-size: 10pt;
    }

.oc-1 {
    left: 53vw;
    top: 10px;
}

.oc-2 {
    left: 63vw;
    top: 10px;
}

.oc-3 {
    left: 73vw;
    top: 10px;
}

.oc-4 {
    right: 90px;
    top: 20vh;
}

.oc-5 {
    right: 90px;
    top: 10vh;
}

.oc-6 {
    left: 7px;
    top: 20vh;
}

.oc-7 {
    left: 7px;
    top: 35vh;
}

.oc-8 {
    left: 7px;
    top: 50vh;
}

.oc-9 {
    right: 90px;
    top: 30vh;
}

.oc-10 {
    right: 90px;
    top: 40vh;
}

.oc-11 {
    right: 90px;
    top: 50vh;
}

.open-burger .sp-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    cursor: pointer;
}

.open-burger .sp-img {
    aspect-ratio: 16/9;
    border-radius: 5px;
    overflow: hidden;
    width: 180px;
    position: relative;
}

.open-burger .sp-img-content {
    width: 100%;
    height: 100%;
}

.open-burger .selected-place-hover {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    transition: .7s;
    background-color: #00000094;
    cursor: pointer;
    border-radius: 7px;
}

.hov:hover .selected-place-hover {
    opacity: 1;
    width: 150%;
    height: 150%;
}

.open-burger .view-selected-svg {
    width: 25px;
    height: 25px;
    margin-left: 10px;
}

.open-burger .sp-name {
    font-weight: 100;
    padding-top: 5px;
    color: white;
    font-size: 8pt;
    max-width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    direction: rtl;
}
/* ------------------- sens list start -------------------- */
.scens-main-container {
  --scene-bg: #f7f8fa;
  --scene-panel: rgba(255, 255, 255, 0.94);
  --scene-panel-2: rgba(250, 251, 253, 0.96);
  --scene-border: rgba(17, 24, 39, 0.1);
  --scene-border-soft: rgba(17, 24, 39, 0.08);
  --scene-text: #1f2933;
  --scene-muted: #6b7280;
  --scene-primary: rgb(210, 172, 42);
  --scene-primary-soft: rgba(210, 172, 42, 0.14);
  --scene-primary-border: rgba(210, 172, 42, 0.32);

  position: relative;
  direction: rtl;
  width: 100%;
  max-width: 1280px;
  /* max-height: 80vh; */
  margin: auto;
  padding:26px;
  overflow: auto;
  border-radius: 24px;
  color: var(--scene-text);
  /* background:
    radial-gradient(circle at 18% 0%, rgba(210, 172, 42, 0.16), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(210, 172, 42, 0.1), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f5f6f8 100%);
  box-shadow:
    0 24px 80px rgba(17, 24, 39, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9); */
    padding-top: 84px;
}

/* .scens-main-container::before {
  content: "صحنه ها";
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
  color: #111827;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.2px;
} */

/* .scens-main-container::after {
  content: "";
  position: absolute;
  top: 45px;
  left: 50%;
  z-index: 10;
  width: 36px;
  height: 2px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--scene-primary);
  box-shadow: 0 0 14px rgba(210, 172, 42, 0.48);
} */

.scens-main-container::-webkit-scrollbar {
  width: 8px;
}

.scens-main-container::-webkit-scrollbar-track {
  background: transparent;
}

.scens-main-container::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.16);
}

.scene-search-wrapper {
  position: absolute;
  top: 26px;
  left: 50%;
  z-index: 11;
  width: min(420px, calc(100% - 52px));
  transform: translateX(-50%);
}

.scene-search-input {
  width: 100%;
  height: 34px;
  padding: 0 16px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 999px;
  outline: none;
  color: #111827;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 8px 24px rgba(17, 24, 39, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 600;
  text-align: right;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.scene-search-input::placeholder {
  color: #9ca3af;
  font-weight: 500;
}

.scene-search-input:focus {
  border-color: var(--scene-primary-border);
  box-shadow:
    0 0 0 4px var(--scene-primary-soft),
    0 10px 24px rgba(17, 24, 39, 0.08);
}

.scens-main {
  position: relative;
  width: 100%;
  margin: 0 0 14px;
  padding:18px;
  overflow: hidden;
  border: 1px solid var(--scene-border);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 250, 251, 0.92)),
    var(--scene-panel);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

.scens-main h2 {
  margin: 0;
  color: #111827;
  text-align: center;
}

.scens-main:has(+ .sub-scenses) {
  margin-bottom: 0;
  border-bottom-color: transparent;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.scense-category,
.sub-scense-category {
  /* position: absolute; */
  /* top: 15px; */
  /* right: 18px; */
  /* z-index: 4; */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* height: 24px; */
  /* color: #1f2937; */
  /* font-size: 12px; */
  font-weight: 800;
  line-height: 1;
}


.sub-scense-category::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 6px;
  background: linear-gradient(180deg, rgb(224, 188, 56), rgb(210, 172, 42));
  box-shadow: 0 0 14px rgba(210, 172, 42, 0.34);
}

.scens-main.sub-scenses {
  margin-top: -1px;
  /* padding-top: 48px; */
  border-top: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(253, 253, 253, 0.9), rgba(248, 249, 251, 0.86)),
    var(--scene-panel-2);
}

.scens-main.sub-scenses:last-child {
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.scens-main.sub-scenses::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 22px;
  left: 34px;
  z-index: 1;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(210, 172, 42, 0.34),
    rgba(210, 172, 42, 0.06)
  );
}

.sub-scense-category {
  left: 48px;
  /* right: auto; */
  color: #4b5563;
}

.sub-scense-category::after {
  width: 14px;
  height: 14px;
  border-radius: 5px;
  opacity: 0.9;
}

.scens-flex-box {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  margin: 0;
  padding: 0;
}

.scens-main-items {
  position: relative;
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--scene-border-soft);
  border-radius: 10px;
  background: #f3f4f6;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.11);
  cursor: pointer;
}

.scens-img-con {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  background-color: #eef0f3;
  cursor: pointer;
}

.scens-main-items img,
.scens-main-items video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.scens-main-items:hover img,
.scens-main-items:hover video {
  transform: scale(1.055);
  filter: brightness(0.82);
}

.scens-img-con::before {
  content: "برو به صحنه";
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  color: #fff;
  background: rgba(31, 41, 55, 0.54);
  backdrop-filter: blur(3px);
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.scens-img-con:hover::before {
  opacity: 1;
}

.scens-img-title {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  margin: 0;
  padding: 26px 34px 10px 34px;
  color: #ffffff;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(17, 24, 39, 0.5) 38%,
    rgba(17, 24, 39, 0.86) 100%
  );
  font-size: 12px;
  font-weight: 100;
  line-height: 1.35;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}

.scens-img-title::before {
  content: "▧";
  position: absolute;
  bottom: 13px;
  left: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

/* .scens-img-title::after {
  content: "صحنه";
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 9px;
  font-weight: 500;
} */

.scens-main-items:has(video) .scens-img-con::after {
  content: "▶";
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  padding-right: 1px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: #fff;
  background: rgba(210, 172, 42, 0.82);
  backdrop-filter: blur(8px);
  font-size: 10px;
  line-height: 1;
}

@media (max-width: 1100px) {
  .scens-flex-box {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 1000px) and (orientation: landscape) {

    .reward-toast__icon{
        display: none !important;
    }
}
@media (max-width: 860px) {
        .iconImage-responsive{
        width: 30px !important;
        height: 30px !important;
    }
    
  .scens-main-container {
    /* max-height: 86vh; */
    padding: 88px 16px 18px;
    border-radius: 18px;
    margin: auto 10px;
  }

  .scene-search-wrapper {
    width: min(380px, calc(100% - 32px));
  }

  .scens-flex-box {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .scens-main {
    padding: 50px 12px 14px;
    border-radius: 16px;
  }
}

@media (max-width: 620px) {
      .iconImage-responsive{
        width: 30px !important;
        height: 30px !important;
    }
  .scens-flex-box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scens-img-title {
    padding-inline: 28px;
    font-size: 11px;
  }
}

@media (max-width: 390px) {
  .scens-flex-box {
    grid-template-columns: 1fr;
  }
}
/* ------------------- sens list end -------------------- */
/***********************************************End hamburger menu ************************************/
/**
*
*
*
**/
/************************************Responsive Start*******************************/


/************************product command shop search******************************/

.contact_us_part_btn {
    position: absolute;
    z-index: 2;
    right: 10px;
    bottom: 10px;
    background: #a4833c;
    padding: 3px 10px;
    border-radius: 6px;
    cursor: pointer;
    color: white;
}

.context-menu {
    background-color: white;
    position: absolute;
    border-radius: 10px;
    box-shadow: 0.1em 0.1em 0.75em rgba(0, 0, 0, 0.3);
    padding: 15px;
    padding-bottom: 0;
    display: none;
    overflow: hidden;
    transition: 0.3s cubic-bezier(0.5, 0, 0, 1);
    cursor: default;
    user-select: none;
    backdrop-filter: blur(0.25em);
    direction: rtl;
    z-index: 10000000000;
    width: 183px;
}

    .context-menu .context-menu-item:first-child {
        padding-top: 0;
    }

    .context-menu .context-menu-item:last-child {
        border-bottom: unset;
    }

    .context-menu .context-menu-item {
        width: 100%;
        padding: 0.5em 0;
        color: var(--text_color);
        box-sizing: border-box;
        position: relative;
        border-bottom: 1px solid #E4E4E4;
        cursor: pointer;
    }

.context-menu-item:hover span {
    color: #FF9800
}

.context-menu-item:hover svg {
    stroke: #FF9800
}

.context-menu #voice_Ico .context-item-inner svg {
    transition: none;
}

.video_Ico_svg {
    transition: none;
}

#voice_Ico:hover svg {
    fill: #FF9800
}

.context-menu .context-menu-item::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    transition: 0.1s;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--text_color);
    opacity: 0;
}

.context-item-inner {
    display: flex;
    align-items: center;
}

    .context-item-inner svg {
        margin-left: 5px;
    }

.context-menu .context-menu-item .context-item-inner {
    transition: 0.1s;
}

.pnlm-hotspot.pnlm-link {
    background-position: 0 -130px;
    /*animation: vool 1s ease infinite;*/
}

.tinyModal .main-modal {
    padding: 0px;
    background: transparent;
}

#description_menu {
    top: 145px;
    /*left: 10px;*/
}

.bg_Info {
    background-image: url(../img/info-main.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    width: 16px;
    height: 16px;
    background-color: #ffffff;
    border-radius: 50%;
}


.bg_video {
    background-image: url(../img/video.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    width: 22px;
    height: 22px;
    background-color: #ffffff;
    border-radius: 50%;
}

.bg_voice {
    background-image: url(../img/voice.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    width: 22px;
    height: 22px;
    background-color: #ffffff;
    border-radius: 50%;
}

.bg_voice_animated {
    background-image: url(../img/voice.gif);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    width: 22px;
    height: 22px;
    background-color: #ffffff;
    border-radius: 50%;
}

.tinyModal .main-modal {
    padding: 0px;
    background: transparent;
}

#description_menu {
    top: 145px;
    /*left: 10px;*/
}

/* .icons_container_page {
    position: absolute;
    width: fit-content;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(var(--navy-rgb),.7);
    padding: 10px 10px;
    border-radius: 15px;
    transition:width, height .3s;
}

.icons_container_page div:first-child{
    margin-top: 0;
}
    .icons_container_page .pnlm-controls {
        width: 30px;
        height: 30px;
        margin-top: 10px;
    }

        .icons_container_page .pnlm-controls img {
            width: 100%;
        } */
.icons_container_page {
    position: absolute;
    width: fit-content;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    
    display: flex;
    flex-direction: column;
    align-items: center;
    
    z-index: 10;
    background: rgba(var(--navy-rgb), .7);
    padding: 10px 10px;
    border-radius: 15px;

    /* transition: width .3s ease, padding .3s ease; */
    /* height: fit-content; */
    /* height: 50px; */
    /* max-height: calc(100dvh - 80px);  */
    overflow-y: auto;  
    max-height: 50px;  
    overflow: hidden;
    transition: max-height 0.4s ease, width 0.3s ease, padding 0.3s ease;
}

/* spacing */
.icons_container_page div:first-child {
    margin-top: 0;
}

.icons_container_page .pnlm-controls {
    width: 30px;
    height: 30px;
    margin-top: 10px;
    /* animation: ; */
}
/* @keyframes  {
    
} */

.icons_container_page .pnlm-controls img {
    width: 30px;
    height: 30px;
}

/* =========================
   MODE 1: VERTICAL CLOSED
   فقط آیکون منو میمونه
========================= */
.icons_container_page:not(.vertical-open):not(.horizontal-open) .pnlm-controls,
.icons_container_page:not(.vertical-open):not(.horizontal-open) span , .icons_container_page:not(.horizontal-open) .label {
    /* display: none !important; */
    opacity: 0;
}

.icons_container_page:not(.vertical-open):not(.horizontal-open) .menu_toggle {
    display: flex;
}

/* =========================
   MODE 2: VERTICAL OPEN
   فقط آیکون‌ها، بدون label (فعلاً همونه)
========================= */
.icons_container_page.vertical-open {
    width: 60px;
   max-height: 100dvh;  /* بزرگ‌تر از هر چیزی که داری */
}

/* =========================
   MODE 3: HORIZONTAL OPEN
   label ها نمایش داده میشن
========================= */
.icons_container_page.horizontal-open {
    width: 200px;
    align-items: flex-start;
           max-height: 100dvh;  /* بزرگ‌تر از هر چیزی که داری */
}

/* label (اگر بعداً اضافه کردی) */
.icons_container_page.horizontal-open .label {
    display: inline-block;
    margin-left: 8px;
    font-size: 12px;
    color: #fff;
    white-space: nowrap;
}

/* آیتم‌ها در حالت افقی */
.icons_container_page.horizontal-open .pnlm-controls,
.icons_container_page.horizontal-open span {
    display: flex ;
    align-items: center;
    gap: 8px;
    width: 100%;
    display: flex;
    align-items: center;
}
.icons_container_page.horizontal-open .pnlm-controls img{
    width: 30px;

}
/* toggle */
.menu_toggle {
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.dynamic-menu{
    background: url('../img/arrDown.svg');
    width: 30px;
    height: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
    transition: .3s;
}
.vertical-open .dynamic-menu{
    transform: rotate(-90deg);
}
.horizontal-open .dynamic-menu{
   transform: rotate(180deg);
}
.icons_container_current_page {
    position: absolute;
    width: fit-content;
    top: 30px;
    right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

    .icons_container_current_page .pnlm-controls {
        width: 30px;
        height: 30px;
        margin-top: 10px;
    }

        .icons_container_current_page .pnlm-controls img {
            width: 100%;
        }

.onepxleft {
    transform: translateX(-2px);
}

.tiny_popup {
    background: white;
    max-width: 90vw;
    max-height: 90vh;
    overflow: auto;
    padding: 10px;
    border-radius: 16px;
}
.tiny_popup img{
    max-width: 100%;
}
#map {
    height: 300px;
}

.overriter-pop-up .tiny_popup {
    background: transparent !important;
    max-width: unset !important;
    max-height: unset !important;
    overflow: unset !important;
    padding: unset !important;
    border-radius: unset !important;
}

.overriter-pop-up-radius {
    border-radius: 16px;
    overflow: hidden;
}

.overriter-pop-up {
    background: white;
    max-width: 90vw;
    max-height: 90vh;
    overflow: auto;
    padding: 20px;
    min-width: 80vw;
    min-height: 80vh;
}

.no_padding_no_bg .main-modal {
    padding: 0;
    background: transparent;
}

.contact_us_container {
    position: relative;
}

.footer_contact {
    position: absolute;
    bottom: 0;
    /*background: red;*/
    width: 100%;
    right: 0;
    height: 26%;
    padding-top: 2%;
    display: flex;
    flex-direction: column;
}

    .footer_contact .icons_container {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

/*.icons_container .icons_icon{*/
/*    display: flex;*/
/*    align-items: center;*/
/*    margin-bottom: 10px;*/
/*    color: white;*/
/*}*/
.uniq_con {
    margin-right: 30px;
}

.d-flex {
    display: flex;
}

.contact_us_img {
    width: 100%;
}

.icons_icon .title {
    margin-right: 5px;
    direction: ltr;
    font-size: 3vmin;
}

.icons_icon img {
    width: 4vmin;
}

.icons_container .icons_icon {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: white;
    margin-right: 12px;
    width: 28%;
}

.arrow-scene {
    background-image: url("../img/arrow-black.svg");
}

.modal-contactUs {
    background: #121212;
    border: 1px solid #333;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

    .modal-contactUs * {
        margin: 0;
    }

    .modal-contactUs::-webkit-scrollbar {
        width: 0px;
        opacity: 0
    }

.banner {
    position: relative;
    overflow: hidden;
    height: 140px;
}

.text-gray-800 {
    --tw-text-opacity: 1;
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #444;
}

.rounded-md {
    border-radius: 0.375rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-gray-300 {
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}

.banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
}

.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.font-bold {
    font-weight: 700;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.pb-0 {
    padding-bottom: 0px;
}

.p-6 {
    padding: 1.5rem;
}

.relative {
    position: relative;
}

.text-gray-200 {
    --tw-text-opacity: 1;
    color: rgb(229 231 235 / var(--tw-text-opacity, 1));
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.text-gray-400 {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
    text-align: right;
    unicode-bidi: plaintext;
}

.leading-relaxed {
    line-height: 1.625;
    text-align: justify;
}

.mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.section-divider {
    height: 1px;
    background: #333;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.p-4 {
    padding: 1rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.address-card {
    background: #1a1a1a;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.mt-1 {
    margin-top: 0.25rem;
}

.ml-3 {
    margin-left: 0.75rem;
}

.w-5 {
    width: 1.25rem;
}

.h-5 {
    height: 1.25rem;
}

/*@media (min-width: 768px) {*/
/*    .md\:grid-cols-2 {*/
/*        grid-template-columns: repeat(2, minmax(0, 1fr));*/
/*    }*/
/*}*/

.gap-4 {
    gap: 1rem;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/*.grid-cols-1 {*/
/*    grid-template-columns: repeat(1, minmax(0, 1fr));*/
/*}*/

.grid {
    display: grid;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.p-3 {
    padding: 0.75rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.items-center {
    align-items: center;
}

.flex {
    display: flex;
}

.address-card {
    background: #1a1a1a;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.modal-contactUs a {
    color: inherit;
    text-decoration: inherit;
}

.text-blue-400 {
    --tw-text-opacity: 1;
    color: rgb(96 165 250 / var(--tw-text-opacity, 1));
}

.bg-gray-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}

.rounded-full {
    border-radius: 9999px;
}

.justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

.w-10 {
    width: 2.5rem;
}

.h-10 {
    height: 2.5rem;
}

.ml-3 {
    margin-left: 0.75rem;
}

.text-pink-400 {
    --tw-text-opacity: 1;
    color: rgb(244 114 182 / var(--tw-text-opacity, 1));
}

.covered-image {
    object-fit: cover;
    width: 100%;
    /* height: unset;*/
}

.unique_svg * {
    --tw-text-opacity: 1;
    stroke: rgb(96 165 250 / var(--tw-text-opacity, 1));
}

.overflow-hidden {
    overflow: hidden;
}

/* #music_node, #music_node2 ,#tour_voice_node {
    transform: scale(1.4);
}

#music_node2 {
    transform: scale(1.4) rotate(180deg);
} */

    /* #music_node2.mute {
        transform: scale(1) rotate(180deg) !important;
    } */

.mute {
    transform: scale(1) !important;
}

#popup {
    animation: show .2s;
}

@keyframes show {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.show_video_modal {
    display: flex !important;
    position: fixed;
    inset: 0;
    z-index: 2;
    background: #000000bd;
    width: 100%;
    height: 100%;
}

/* #video_scene img {
    transform: rotate(180deg);
} */

#video_scene video {
    width: 100%;
}

.video_scene_modal .main-modal {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.video_scene_modal .rodal-body {
    width: 100%;
    height: 100%;
}

#video_scene_el {
    height: 100vh;
    width: 100vw;
}

.iconImage {
    border-radius: 50%;
    border: 2px solid #fff;
}

#pannellumVideo {
    /* filter: brightness(0);*/
    /* position: fixed;*/
    /* transform: rotate(270deg);*/
    /* bottom: 10px;*/
    /* z-index: 1000000000;*/
    /* right: 2.5%;
    left: 2.5%;
    align-items: stretch;*/
    width: 98%;
    height: 100%;
    background: #000;
    --controls-h: 90px;
    clip-path: inset(calc(100% - var(--controls-h)) 0 0 0);
}

    #pannellumVideo::-webkit-media-controls-fullscreen-button {
        display: none;
    }

.video-control-container-ver {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    /*height: 90vh;
    width: 100px;*/
    background: antiquewhite;
    top: 50px;
    right: 10px;
    z-index: 1000000000;
}

.video-control-container-hor {
    position: fixed;
    display: flex;
    justify-content: left;
    align-items: center;
    height: 30px;
    width: 100vw;
    background-color:black;
    bottom: 0px;
    /*right: 10px;*/
    z-index: 1000000000;
}

    .video-control-container-hor.open {
        height: 80px;
    }

    .video-control-container-hor.close {
        height: 30px;
    }

.full-size {
    height: 100%;
    width: 100%;
}
.full-size-view {
    height: 90vh;
    width: 95vw;
}
.btn-show-control {
    height: 100%;
    width: 2%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.canvas-media-embedder {
    position: absolute;
    inset: 0px;
    pointer-events: none;
    z-index: 10;
    width: 100% !important;
    height: 100% !important
}

.pre-tour {
     display: flex;
    position: fixed;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 15px;
    width: 50px;
    align-items: center;
    justify-content: space-around;
    cursor: pointer;
    /* height: 30px; */
    z-index: 10;
    padding: 10px;
    height: 50px;
}

.pnlm-hotspot.pnlm-tourLink {
    background-position: 0 -130px;
    /*animation: vool 1s ease infinite;*/
}
.scense-category {
    width: 100%;
    color: black;
    text-align: center;
    font-size: large;
    font-weight: bold;
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e1e1e1;
}
.sub-scense-category {
    /* border-bottom: solid 2px white; */
    color: black;
    font-size: medium;
    font-weight: bold;
}
.sub-scenses {
    margin-right: 0
}

.wholePageCenetr {
    display: flex;
    align-items: center;
    transform: translate(-50%, -50%);
    position: absolute;
    border-radius: 5px;
    top: 50%;
    left: 50%;
    z-index: 2;
    background: #ffffff7a;
    box-shadow: 0px 0px 60px #000000;
    background: #000000b8;
}
.container-logInpage {
    display: flex;
    justify-content: center;
    color  : white;
    width: 450px;
    margin: auto;
    padding: 48px 20px;
    background-color: transparent;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    height: 300px;
}
.back-home {
    outline: none;
    border: none;
    border-radius  : 4px;
    cursor: pointer;
    padding: 6px;
    z-index: 40;
    position: absolute;
    top: 16px;
    left: 32px;
}
.first-step-loging {
    transition: 0.6s;
    width: 90%;
}
.use-alert {
    text-align: center;
    color: #202124;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.1px;
    line-height: 1.5;
    margin: 15px 0 !important;
}
.container-logInpage div span {
    color: white;
}


.container-logInpage div span {
    color: white;
}


.center-div {
    margin: auto;
    display: block;
}
.anticon {
    display: inline-flex;
    align-items: center;
    color: inherit;
    font-style: normal;
    line-height: 0;
    text-align: center;
    text-transform: none;
    vertical-align: -0.125em;
    text-rendering: optimizelegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
#PhoneInp {
    color: var(--golden);
}


.ant-form-item-control-input-content input, .ant-input:placeholder-shown {
    /* text-align: center; */
    background: rgba(255, 255, 255, 0);
    border-radius: 5px;
    box-shadow: 0 4px 30px rgb(0 0 0 / 10%);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--golden);
}


.first-step-loging .ant-input {
    background: transparent;
    color: black;
    font-weight: bold;
}


.ant-input:placeholder-shown {
    text-overflow: ellipsis;
}


.ant-input-rtl {
    direction: rtl;
}


.ant-input {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-variant: tabular-nums;
    list-style: none;
    font-feature-settings: 'tnum';
    position: relative;
    display: inline-block;
    width: 100%;
    min-width: 0;
    padding: 4px 11px;
    color: rgba(0, 0, 0, 0.85);
    font-size: 14px;
    line-height: 1.5715;
    background-color: #fff;
    background-image: none;
    border: 1px solid #d9d9d9;
    border-radius: 2px;
    transition: all 0.3s;
}
.btn-login {
    background: #00000099;
    border: none;
    color: white;
    border-radius: 5px;
    padding: 5px 10px;
    width: 100%;
}
.phoneInput {
    padding: 8px;
    margin: 24px 0;
    border-radius: 15px;
    direction: ltr;
    text-align: center;
    background: transparent;
    border: 1px solid gray;
}


button {
    cursor: pointer;
}


button, html [type="button"], [type="reset"], [type="submit"] {
    -webkit-appearance Changes the appearance of buttons and other controls to resemble native controls. : button;
}


button, select {
    text-transform: none;
}


button, input {
    overflow: visible;
}


input, button, select, optgroup, textarea {
    margin: 0;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
}


a, area, button, [role='button'], input:not([type='range']), label, select, summary, textarea {
    touch-action: manipulation;
}
/* ---------------------------shop pop up---------------------------- */
.shop-popup {
    direction: rtl;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 16px;
    font-family: inherit;
    /* max-height: calc(90vh - 100px); */
}

.shop-popup-card {
    width: 100%;
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.16);
    border: 1px solid rgba(109, 40, 217, 0.12);
}

.shop-popup-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.shop-popup-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.shop-popup-badge.free {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.1);
}

.shop-popup-badge.active {
    color: #059669;
    background: rgba(5, 150, 105, 0.12);
}

.shop-popup-title {
    margin: 0;
    color: #111827;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.5;
}

.shop-popup-subtitle {
    margin: 6px 0 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.8;
}

.shop-popup-icon {
    min-width: 62px;
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background: rgba(var(--primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.shop-popup-price-box {
    margin: 22px 0;
    padding: 18px 20px;
    border-radius: 20px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.shop-popup-price-label {
    font-size: 14px;
    opacity: 0.9;
}

.shop-popup-price {
    font-size: 24px;
    font-weight: 900;
    white-space: nowrap;
}

.shop-popup-price small {
    font-size: 13px;
    font-weight: 500;
    margin-right: 4px;
}

.shop-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.shop-info-item {
    background: #f9fafb;
    border: 1px solid #eef0f4;
    border-radius: 16px;
    padding: 14px 16px;
    min-width: 0;
}

.shop-info-label {
    display: block;
    color: #6b7280;
    font-size: 12px;
    margin-bottom: 6px;
}

.shop-info-value {
    display: block;
    color: #111827;
    font-size: 15px;
    font-weight: 700;
    word-break: break-word;
}

.shop-popup-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

.shop-popup-btn {
    min-height: 44px;
    padding: 0 22px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    transition: all 0.2s ease;
}

.shop-popup-btn.primary {
    color: #fff;
    background: var(--primary);
}

.shop-popup-btn.primary:hover {
    color: #fff;
    background: var(--primary-dark);
}

.shop-popup-btn.secondary {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.09);
}

.shop-popup-btn.secondary:hover {
    color: var(--primary-dark);
    background: rgba(var(--primary-rgb), 0.14);
}

.shop-popup-footer {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #6b7280;
    font-size: 13px;
}

.shop-popup-footer strong {
    display: block;
    color: #111827;
    margin-bottom: 4px;
}

.shop-popup-phone {
    color: var(--primary);
    font-size: 16px;
    font-weight: 900;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .shop-popup {
        padding: 10px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .shop-popup-card {
        border-radius: 20px;
        padding: 18px;
    }

    .shop-popup-header {
        align-items: center;
    }

    .shop-popup-title {
        font-size: 20px;
    }

    .shop-popup-icon {
        min-width: 52px;
        width: 52px;
        height: 52px;
        border-radius: 16px;
        font-size: 24px;
    }

    .shop-popup-price-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .shop-info-grid {
        grid-template-columns: 1fr;
    }

    .shop-popup-actions {
        flex-direction: column;
    }

    .shop-popup-btn {
        width: 100%;
    }

    .shop-popup-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* ----------------------------end shop pop up----------------------------  */
.iframe-wrapper {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .full-size-view {
    width: 100%;
    height: 100%;
    border: 0;
} */

.iframe-loading {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;

    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
}

.iframe-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 255, 255, 0.25);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: iframe-spin 0.8s linear infinite;
}

.iframe-loading-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

@keyframes iframe-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.tooltip_hsp{
    opacity: 0;
    transition: .3s;
}
.tooltip_hsp_p:hover .tooltip_hsp{
    opacity: 1;
}

.gift {
    background-image: url("../img/gift.svg");
    width:30px;
    height:30px;
    background-repeat: no-repeat;
}

.animation-emoji {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    overflow: visible;
    user-select: none;
}

    .animation-emoji:disabled {
        cursor: not-allowed;
        opacity: 0.6;
    }

.animation-emoji__main {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.animation-emoji__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: visible;
}

.animation-emoji__particle {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    transform: translate(-50%, -50%) scale(var(--scale));
    animation-name: animationEmojiParticle;
    animation-duration: var(--duration);
    animation-delay: var(--delay);
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    will-change: transform, opacity;
}

@keyframes animationEmojiParticle {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) translate(0, 0) rotate(0deg) scale(var(--scale));
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) translate(var(--x), var(--y)) rotate(var(--rotate)) scale(0);
    }
}
.reward-login-box {
    width: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background:
        radial-gradient(circle at top, rgba(var(--primary-rgb), 0.14), transparent 36%),
        linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    font-family: inherit;
}

.reward-login-card {
    width: min(100%, 380px);
    position: relative;
    overflow: hidden;
    padding: 34px 26px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(var(--primary-rgb), 0.18);
    box-shadow:
        0 24px 60px rgba(17, 24, 39, 0.12),
        0 8px 22px rgba(var(--primary-rgb), 0.12);
    text-align: center;
}

.reward-login-card::before {
    content: "";
    position: absolute;
    inset: -80px auto auto -80px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.12);
}

.reward-login-card::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -85px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.08);
}

.reward-icon-circle {
    width: 132px;
    height: 132px;
    position: relative;
    z-index: 1;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(var(--primary-rgb), 0.16), rgba(var(--primary-rgb), 0.05));
    border: 1px solid rgba(var(--primary-rgb), 0.18);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 14px 32px rgba(var(--primary-rgb), 0.16);
}

.reward-gift-icon {
    filter: drop-shadow(0 10px 16px rgba(var(--primary-rgb), 0.22));
}

.reward-login-title {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #1f2937;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.7;
}

.reward-login-desc {
    position: relative;
    z-index: 1;
    margin: 10px auto 24px;
    max-width: 310px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.9;
}

.reward-login-btn {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 48px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        rgb(var(--primary-rgb)) 0%,
        rgba(var(--primary-rgb), 0.78) 100%
    );
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    box-shadow:
        0 14px 28px rgba(var(--primary-rgb), 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        opacity 0.18s ease;
}

.reward-login-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 18px 34px rgba(var(--primary-rgb), 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.reward-login-btn:active {
    transform: translateY(0);
    opacity: 0.92;
}

@media (max-width: 480px) {
    .reward-login-box {
        padding: 16px;
    }

    .reward-login-card {
        padding: 28px 20px 22px;
        border-radius: 20px;
    }

    .reward-icon-circle {
        width: 116px;
        height: 116px;
    }

    .reward-gift-icon {
        width: 82px;
        height: 82px;
    }

    .reward-login-title {
        font-size: 18px;
    }
}
.reward-toast {
  width: 100%;
  min-height: 250px;
  pointer-events: auto;
  overflow: hidden;
  position: relative;
  padding: 24px 18px 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top, rgba(var(--primary-rgb), 0.22), transparent 58%),
    linear-gradient(180deg, rgba(var(--primary-rgb), 0.12), rgba(255, 255, 255, 0.96)),
    rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  box-shadow: 0 18px 45px rgba(40, 30, 15, 0.13);
  backdrop-filter: blur(16px);
  animation: toast-in-bottom 360ms cubic-bezier(.22, 1, .36, 1) both;
}

.reward-toast__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.reward-toast__icon {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(var(--primary-rgb), 0.22), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(var(--primary-rgb), 0.32);
  box-shadow:
    0 14px 30px rgba(var(--primary-rgb), 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.reward-toast__icon svg {
  width: 74px;
  height: 74px;
  display: block;
}

.reward-toast__body {
  width: 100%;
  min-width: 0;
  text-align: center;
}

.reward-toast__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  color: var(--nafti);
}

.reward-toast__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 600;
  color: var(--toast-muted);
}

.reward-toast__actions {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.reward-toast__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  background: var(--primary);
  box-shadow: 0 10px 22px rgba(var(--primary-rgb), 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.reward-toast__link:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(var(--primary-rgb), 0.3);
}

.reward-toast__close {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 30px;
  height: 30px;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--nafti);
  font-size: 18px;
  line-height: 1;
  z-index: 2;
}

.reward-toast__close:hover {
  background: rgba(var(--primary-rgb), 0.2);
}
.orientation-lock-overlay {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    display: none;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top, rgba(var(--orientation-primary-rgb), 0.16), transparent 34%),
        #ffffff;
    padding: 24px;
    direction: rtl;
}

.orientation-lock-overlay.is-active {
    display: flex;
}

.orientation-lock-card {
    width: min(100%, 420px);
    border: 1px solid rgba(var(--orientation-primary-rgb), 0.22);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 70px rgba(35, 27, 12, 0.13);
    padding: 28px 22px;
    text-align: center;
}

.orientation-lock-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 26px;
    background: rgba(var(--orientation-primary-rgb), 0.12);
    color: var(--orientation-primary);
}

.orientation-lock-title {
    margin: 0;
    color: #1f2330;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.7;
}

.orientation-lock-text {
    margin: 10px 0 0;
    color: #6f7280;
    font-size: 14px;
    line-height: 1.9;
}

.orientation-lock-refresh {
    width: 100%;
    min-height: 48px;
    margin-top: 22px;
    border: 0;
    border-radius: 16px;
    background: var(--orientation-primary);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(var(--orientation-primary-rgb), 0.3);
}

.orientation-lock-refresh:active {
    transform: translateY(1px);
}

.orientation-lock-hint {
    margin-top: 14px;
    color: #8a8d99;
    font-size: 12px;
    line-height: 1.8;
}
.scene-loading,
.scene-state {
  width: min(100% - 32px, 520px);
  min-height: 260px;
  margin: 40px auto;
  padding: 40px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 22px;
  text-align: center;
  border: 1px solid var(--sheet-border-gold);
  border-radius: var(--sheet-radius-lg);
  background:
    radial-gradient(
      circle at top,
      var(--sheet-gold-soft),
      transparent 60%
    ),
    var(--sheet-surface);
  box-shadow: var(--sheet-shadow-md);
}

.scene-loading__spinner {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border: 4px solid var(--sheet-gold-soft);
  border-top-color: var(--primary);
  border-right-color: rgba(
    var(--primary-rgb),
    0.55
  );
  border-radius: 50%;
  box-shadow: 0 0 24px var(--sheet-gold-glow);
  animation: scene-loading-spin 0.8s linear infinite;
}

.scene-loading__content {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}

.scene-loading__title,
.scene-state__title {
  color: var(--sheet-text);
  font-size: 17px;
  font-weight: 700;
}

.scene-loading__description,
.scene-state__description {
  color: var(--sheet-muted);
  font-size: 14px;
  line-height: 1.9;
}

.scene-state__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 28px;
  font-weight: 800;
  border: 1px solid var(--sheet-border-gold);
  border-radius: 50%;
  background: var(--sheet-gold-soft);
}

.scene-state--error .scene-state__icon {
  color: var(--danger);
  border-color: rgba(216, 72, 72, 0.25);
  background: var(--danger-soft);
}

.scens-img-con {
  cursor: pointer;
}

.scens-img-con:focus-visible {
  outline: 3px solid rgba(
    var(--primary-rgb),
    0.35
  );
  outline-offset: 3px;
}
.fsr-scenes,
.fsr-scenes *,
.fsr-scenes-loading,
.fsr-scenes-loading *,
.fsr-scenes-state,
.fsr-scenes-state * {
  box-sizing: border-box;
}

.fsr-scenes-modal-content-host {
  min-height: 0 !important;

  padding: 0 !important;

  overflow: hidden !important;

  background: #f4f5f8 !important;
}

.fsr-scenes {
  --fsr-scenes-primary:
    var(--primary, #d2ac2a);

  --fsr-scenes-primary-rgb:
    var(
      --primary-rgb,
      210,
      172,
      42
    );

  --fsr-scenes-navy:
    var(--navy, #0d1323);

  --fsr-scenes-navy-rgb:
    var(
      --navy-rgb,
      13,
      19,
      35
    );

  width: 100%;
  height: min(72dvh, 720px);
  min-height: 360px;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  direction: rtl;

  color: var(--fsr-scenes-navy);

  background: #f4f5f8;
}

/* Toolbar */

.fsr-scenes__toolbar {
  flex: 0 0 auto;

  display: flex;
  align-items: center;

  gap: 10px;

  padding: 12px 14px;

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.08);

  background:
    linear-gradient(
      135deg,
      rgba(
        var(--fsr-scenes-navy-rgb),
        0.99
      ),
      rgba(
        var(--fsr-scenes-navy-rgb),
        0.91
      )
    );
}

.fsr-scenes-search {
  position: relative;

  min-width: 0;
  flex: 1;

  display: flex;
  align-items: center;
}

.fsr-scenes-search__icon {
  position: absolute;

  top: 50%;
  right: 13px;

  z-index: 1;

  width: 18px;
  height: 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color:
    rgba(
      255,
      255,
      255,
      0.57
    );

  pointer-events: none;

  transform: translateY(-50%);

  transition: color 180ms ease;
}

.fsr-scenes-search__icon svg {
  width: 18px;
  height: 18px;
}

.fsr-scenes-search__icon circle,
.fsr-scenes-search__icon path {
  fill: none;

  stroke: currentColor;

  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fsr-scenes-search__input {
  width: 100%;
  height: 40px;

  padding: 0 41px 0 13px;

  border:
    1px solid
    rgba(255, 255, 255, 0.13);

  border-radius: 12px;

  outline: none;

  color: #fff;

  background:
    rgba(
      255,
      255,
      255,
      0.075
    );

  font: inherit;
  font-size: 12px;

  direction: rtl;

  appearance: none;
  -webkit-appearance: none;

  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.fsr-scenes-search__input::placeholder {
  color:
    rgba(
      255,
      255,
      255,
      0.52
    );
}

.fsr-scenes-search__input:hover {
  border-color:
    rgba(
      255,
      255,
      255,
      0.24
    );

  background:
    rgba(
      255,
      255,
      255,
      0.11
    );
}

.fsr-scenes-search__input:focus {
  color: var(--fsr-scenes-navy);

  border-color:
    rgba(
      var(--fsr-scenes-primary-rgb),
      0.86
    );

  background: #fff;

  box-shadow:
    0 0 0 3px
    rgba(
      var(--fsr-scenes-primary-rgb),
      0.16
    );
}

.fsr-scenes-search:focus-within
  .fsr-scenes-search__icon {
  color: var(--fsr-scenes-navy);
}

.fsr-scenes-search__input:focus::placeholder {
  color:
    rgba(
      var(--fsr-scenes-navy-rgb),
      0.43
    );
}

.fsr-scenes-search__input::-webkit-search-cancel-button {
  cursor: pointer;
}

.fsr-scenes__result-count {
  min-width: max-content;
  min-height: 32px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 5px 10px;

  border:
    1px solid
    rgba(
      var(--fsr-scenes-primary-rgb),
      0.32
    );

  border-radius: 10px;

  color: var(--fsr-scenes-primary);

  background:
    rgba(
      var(--fsr-scenes-primary-rgb),
      0.1
    );

  font-size: 11px;
  font-weight: 700;

  white-space: nowrap;
}

/* Content */

.fsr-scenes__content {
  flex: 1;
  min-height: 0;

  padding: 12px;

  overflow-y: auto;
  overflow-x: hidden;

  overscroll-behavior: contain;

  scrollbar-width: thin;

  scrollbar-color:
    rgba(
      var(--fsr-scenes-navy-rgb),
      0.22
    )
    transparent;
}

.fsr-scenes__content::-webkit-scrollbar {
  width: 5px;
}

.fsr-scenes__content::-webkit-scrollbar-thumb {
  border-radius: 999px;

  background:
    rgba(
      var(--fsr-scenes-navy-rgb),
      0.2
    );
}

.fsr-scenes__categories {
  display: flex;
  flex-direction: column;

  gap: 10px;
}

.fsr-scenes__categories[hidden] {
  display: none !important;
}

/* Categories */

.fsr-scenes-category {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;

  padding: 11px;

  overflow: visible;

  border:
    1px solid
    rgba(
      var(--fsr-scenes-navy-rgb),
      0.085
    );

  border-radius: 15px;

  color: var(--fsr-scenes-navy);

  background:
    rgba(
      255,
      255,
      255,
      0.98
    );

  box-shadow:
    0 6px 22px
    rgba(
      var(--fsr-scenes-navy-rgb),
      0.045
    );
}

.fsr-scenes-category[hidden] {
  display: none !important;
}

.fsr-scenes-category--sub {
  padding: 9px;

  border-radius: 12px;

  background:
    rgba(
      var(--fsr-scenes-navy-rgb),
      0.025
    );

  box-shadow: none;
}

/*
 * والد مجازی فقط دسته‌های فرزند را نگه می‌دارد.
 * برای همین نباید کارت سفید یا ارتفاع اضافه داشته باشد.
 */
.fsr-scenes-category--group {
  height: auto;
  min-height: 0;

  padding: 0;

  border: 0;

  border-radius: 0;

  background: transparent;

  box-shadow: none;
}

.fsr-scenes-category__header {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;

  display: flex;
  align-items: center;

  gap: 8px;

  margin: 0 0 9px;
  padding: 0;

  overflow: visible;

  border: 0;

  color: var(--fsr-scenes-navy);

  background: transparent;
}

.fsr-scenes-category--group
  > .fsr-scenes-category__header {
  min-height: 40px;

  margin-bottom: 8px;

  padding: 8px 11px;

  border:
    1px solid
    rgba(
      var(--fsr-scenes-primary-rgb),
      0.2
    );

  border-radius: 11px;

  color: #fff;

  background:
    linear-gradient(
      135deg,
      rgba(
        var(--fsr-scenes-navy-rgb),
        0.99
      ),
      rgba(
        var(--fsr-scenes-navy-rgb),
        0.92
      )
    );

  box-shadow:
    0 5px 14px
    rgba(
      var(--fsr-scenes-navy-rgb),
      0.1
    );
}

.fsr-scenes-category__marker {
  width: 9px;
  height: 9px;

  flex: 0 0 auto;

  border-radius: 4px;

  background:
    var(--fsr-scenes-primary);

  box-shadow:
    0 0 0 4px
    rgba(
      var(--fsr-scenes-primary-rgb),
      0.13
    );
}

.fsr-scenes-category__title {
  min-width: 0;
  flex: 1;

  overflow: hidden;

  color: inherit;

  font-size: 13px;
  font-weight: 800;

  line-height: 1.5;

  text-overflow: ellipsis;
  white-space: nowrap;
}

.fsr-scenes-category__count {
  min-width: 24px;
  height: 24px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding-inline: 7px;

  border-radius: 8px;

  color:
    rgba(
      var(--fsr-scenes-navy-rgb),
      0.68
    );

  background:
    rgba(
      var(--fsr-scenes-navy-rgb),
      0.055
    );

  font-size: 10px;
  font-weight: 700;
}

.fsr-scenes-category--group
  > .fsr-scenes-category__header
  .fsr-scenes-category__count {
  color:
    var(--fsr-scenes-primary);

  background:
    rgba(
      var(--fsr-scenes-primary-rgb),
      0.12
    );
}

.fsr-scenes-category__children {
  display: flex;
  flex-direction: column;

  gap: 8px;

  margin-top: 9px;
}

.fsr-scenes-category--group
  > .fsr-scenes-category__children {
  margin-top: 0;
}

/* Grid */

.fsr-scenes-grid {
  display: grid;

  grid-template-columns:
    repeat(
      auto-fill,
      minmax(165px, 1fr)
    );

  gap: 9px;
}

/* Scene card */

.fsr-scene-card {
  min-width: 0;
}

.fsr-scene-card[hidden] {
  display: none !important;
}

.fsr-scene-card__button {
  position: relative;

  width: 100%;

  display: block;

  padding: 0;

  overflow: hidden;

  border:
    1px solid
    rgba(
      var(--fsr-scenes-navy-rgb),
      0.09
    );

  border-radius: 12px;

  color: #fff;

  background:
    var(--fsr-scenes-navy);

  cursor: pointer;

  text-align: right;

  box-shadow:
    0 5px 15px
    rgba(
      var(--fsr-scenes-navy-rgb),
      0.09
    );

  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.fsr-scene-card__button:hover {
  border-color:
    rgba(
      var(--fsr-scenes-primary-rgb),
      0.68
    );

  box-shadow:
    0 8px 20px
    rgba(
      var(--fsr-scenes-navy-rgb),
      0.16
    );

  transform: translateY(-2px);
}

.fsr-scene-card__button:active {
  transform: translateY(0);
}

.fsr-scene-card__button:focus-visible {
  outline:
    3px solid
    rgba(
      var(--fsr-scenes-primary-rgb),
      0.55
    );

  outline-offset: 2px;
}

.fsr-scene-card__media-wrap {
  position: relative;

  width: 100%;

  display: block;

  aspect-ratio: 16 / 9;

  overflow: hidden;

  background:
    rgba(
      var(--fsr-scenes-navy-rgb),
      0.9
    );
}

.fsr-scene-card__media {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 320ms ease,
    filter 220ms ease;
}

.fsr-scene-card__button:hover
  .fsr-scene-card__media {
  transform: scale(1.045);
}

.fsr-scene-card__placeholder {
  position: absolute;

  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color:
    rgba(
      255,
      255,
      255,
      0.46
    );

  background:
    linear-gradient(
      135deg,
      rgba(
        var(--fsr-scenes-navy-rgb),
        0.98
      ),
      rgba(
        var(--fsr-scenes-navy-rgb),
        0.82
      )
    );
}

.fsr-scene-card__placeholder svg {
  width: 34px;
  height: 34px;
}

.fsr-scene-card__placeholder rect,
.fsr-scene-card__placeholder circle,
.fsr-scene-card__placeholder path {
  fill: none;

  stroke: currentColor;

  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fsr-scene-card__shade {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 42%,
      rgba(
        var(--fsr-scenes-navy-rgb),
        0.72
      )
      100%
    );

  pointer-events: none;
}

.fsr-scene-card__footer {
  min-width: 0;

  display: flex;
  align-items: center;

  gap: 7px;

  padding: 8px 9px;

  background:
    linear-gradient(
      135deg,
      rgba(
        var(--fsr-scenes-navy-rgb),
        1
      ),
      rgba(
        var(--fsr-scenes-navy-rgb),
        0.93
      )
    );
}

.fsr-scene-card__title {
  min-width: 0;
  flex: 1;

  overflow: hidden;

  color:
    rgba(
      255,
      255,
      255,
      0.94
    );

  font-size: 11px;
  font-weight: 700;

  line-height: 1.5;

  text-overflow: ellipsis;
  white-space: nowrap;
}

.fsr-scene-card__arrow {
  width: 24px;
  height: 24px;

  flex: 0 0 auto;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;

  color:
    var(--fsr-scenes-navy);

  background:
    var(--fsr-scenes-primary);
}

.fsr-scene-card__arrow svg {
  width: 15px;
  height: 15px;
}

.fsr-scene-card__arrow path {
  fill: none;

  stroke: currentColor;

  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Search empty */

.fsr-scenes-search-empty {
  min-height: 210px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 8px;

  padding: 20px;

  color:
    rgba(
      var(--fsr-scenes-navy-rgb),
      0.58
    );

  text-align: center;
}

.fsr-scenes-search-empty[hidden] {
  display: none !important;
}

.fsr-scenes-search-empty__icon {
  width: 42px;
  height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  color:
    var(--fsr-scenes-primary);

  background:
    rgba(
      var(--fsr-scenes-primary-rgb),
      0.12
    );
}

.fsr-scenes-search-empty__icon svg {
  width: 23px;
  height: 23px;
}

.fsr-scenes-search-empty__icon circle,
.fsr-scenes-search-empty__icon path {
  fill: none;

  stroke: currentColor;

  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fsr-scenes-search-empty strong {
  color:
    var(--fsr-scenes-navy);

  font-size: 13px;
}

.fsr-scenes-search-empty span:last-child {
  font-size: 11px;
}

/* Loading */

.fsr-scenes-loading,
.fsr-scenes-state {
  width: 100%;

  min-height:
    min(55dvh, 500px);

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 13px;

  padding: 24px;

  direction: rtl;

  color:
    var(--navy, #0d1323);

  background:
    radial-gradient(
      circle at top right,
      rgba(
        var(
          --primary-rgb,
          210,
          172,
          42
        ),
        0.12
      ),
      transparent 34%
    ),
    #f4f5f8;
}

.fsr-scenes-loading__spinner {
  width: 32px;
  height: 32px;

  flex: 0 0 auto;

  border:
    3px solid
    rgba(
      var(
        --primary-rgb,
        210,
        172,
        42
      ),
      0.2
    );

  border-top-color:
    var(--primary, #d2ac2a);

  border-radius: 50%;

  animation:
    fsr-scenes-spin
    0.75s
    linear
    infinite;
}

.fsr-scenes-loading__content {
  display: flex;
  flex-direction: column;

  gap: 4px;
}

.fsr-scenes-loading__title {
  color:
    var(--navy, #0d1323);

  font-size: 13px;
}

.fsr-scenes-loading__description {
  color:
    rgba(
      var(
        --navy-rgb,
        13,
        19,
        35
      ),
      0.52
    );

  font-size: 11px;
}

/* Empty and error state */

.fsr-scenes-state {
  flex-direction: column;

  gap: 9px;

  text-align: center;
}

.fsr-scenes-state__icon {
  width: 48px;
  height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  color:
    var(--primary, #d2ac2a);

  background:
    rgba(
      var(
        --primary-rgb,
        210,
        172,
        42
      ),
      0.12
    );
}

.fsr-scenes-state--error
  .fsr-scenes-state__icon {
  color: #b42318;

  background:
    rgba(180, 35, 24, 0.1);
}

.fsr-scenes-state__icon svg {
  width: 26px;
  height: 26px;
}

.fsr-scenes-state__icon circle,
.fsr-scenes-state__icon path {
  fill: none;

  stroke: currentColor;

  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fsr-scenes-state__title {
  color:
    var(--navy, #0d1323);

  font-size: 14px;
}

.fsr-scenes-state__description {
  max-width: 320px;

  color:
    rgba(
      var(
        --navy-rgb,
        13,
        19,
        35
      ),
      0.56
    );

  font-size: 11px;
  line-height: 1.8;
}

@keyframes fsr-scenes-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Mobile */

@media (max-width: 768px) {
  .fsr-scenes {
    height:
      calc(100dvh - 82px);

    min-height: 0;
  }

  .fsr-scenes__toolbar {
    gap: 6px;

    padding: 7px;
  }

  .fsr-scenes-search__input {
    height: 38px;

    padding-right: 38px;

    border-radius: 10px;
  }

  .fsr-scenes-search__icon {
    right: 11px;
  }

  .fsr-scenes__result-count {
    min-height: 30px;

    padding-inline: 7px;

    border-radius: 9px;

    font-size: 10px;
  }

  .fsr-scenes__content {
    padding: 6px;
  }

  .fsr-scenes__categories {
    gap: 6px;
  }

  .fsr-scenes-category {
    padding: 7px;

    border-radius: 11px;
  }

  .fsr-scenes-category--sub {
    padding: 6px;

    border-radius: 10px;
  }

  .fsr-scenes-category--group {
    padding: 0;

    border-radius: 0;
  }

  .fsr-scenes-category__header {
    gap: 6px;

    margin-bottom: 6px;
  }

  .fsr-scenes-category--group
    > .fsr-scenes-category__header {
    min-height: 34px;

    margin-bottom: 5px;

    padding: 6px 8px;

    border-radius: 9px;
  }

  .fsr-scenes-category__marker {
    width: 7px;
    height: 7px;

    box-shadow:
      0 0 0 3px
      rgba(
        var(--fsr-scenes-primary-rgb),
        0.12
      );
  }

  .fsr-scenes-category__title {
    font-size: 11px;
  }

  .fsr-scenes-category__count {
    min-width: 21px;
    height: 21px;

    padding-inline: 5px;

    border-radius: 7px;
  }

  .fsr-scenes-category__children {
    gap: 5px;

    margin-top: 5px;
  }

  .fsr-scenes-category--group
    > .fsr-scenes-category__children {
    margin-top: 0;
  }

  .fsr-scenes-grid {
    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      );

    gap: 5px;
  }

  .fsr-scene-card__button {
    border-radius: 9px;
  }

  .fsr-scene-card__media-wrap {
    aspect-ratio: 4 / 3;
  }

  .fsr-scene-card__footer {
    gap: 4px;

    padding: 5px 6px;
  }

  .fsr-scene-card__title {
    font-size: 9px;
  }

  .fsr-scene-card__arrow {
    width: 20px;
    height: 20px;

    border-radius: 6px;
  }

  .fsr-scene-card__arrow svg {
    width: 12px;
    height: 12px;
  }

  .fsr-scenes-loading,
  .fsr-scenes-state {
    min-height:
      calc(100dvh - 82px);

    padding: 14px;
  }
}

@media (max-width: 380px) {
  .fsr-scenes__toolbar {
    padding: 5px;
  }

  .fsr-scenes__result-count {
    padding-inline: 5px;
  }

  .fsr-scenes__content {
    padding: 4px;
  }

  .fsr-scenes-category {
    padding: 5px;
  }

  .fsr-scenes-category--group {
    padding: 0;
  }

  .fsr-scenes-grid {
    gap: 4px;
  }

  .fsr-scene-card__footer {
    padding: 4px 5px;
  }
}

@media (
  prefers-reduced-motion:
  reduce
) {
  .fsr-scenes-loading__spinner {
    animation: none;
  }

  .fsr-scene-card__button,
  .fsr-scene-card__media,
  .fsr-scenes-search__input,
  .fsr-scenes-search__icon {
    transition: none;
  }
}
/* =========================================
   Light theme adjustments
   ========================================= */

/* Toolbar */

.fsr-scenes__toolbar {
  border-bottom:
    1px solid
    rgba(
      var(--fsr-scenes-navy-rgb),
      0.08
    );

  background:
    rgba(255, 255, 255, 0.98);

  box-shadow:
    0 4px 14px
    rgba(
      var(--fsr-scenes-navy-rgb),
      0.055
    );
}

.fsr-scenes-search__input {
  border-color:
    rgba(
      var(--fsr-scenes-navy-rgb),
      0.11
    );

  color:
    var(--fsr-scenes-navy);

  background:
    rgba(
      var(--fsr-scenes-navy-rgb),
      0.035
    );
}

.fsr-scenes-search__input::placeholder {
  color:
    rgba(
      var(--fsr-scenes-navy-rgb),
      0.42
    );
}

.fsr-scenes-search__input:hover {
  border-color:
    rgba(
      var(--fsr-scenes-primary-rgb),
      0.42
    );

  background:
    rgba(
      var(--fsr-scenes-primary-rgb),
      0.045
    );
}

.fsr-scenes-search__input:focus {
  border-color:
    rgba(
      var(--fsr-scenes-primary-rgb),
      0.8
    );

  color:
    var(--fsr-scenes-navy);

  background: #fff;

  box-shadow:
    0 0 0 3px
    rgba(
      var(--fsr-scenes-primary-rgb),
      0.13
    );
}

.fsr-scenes-search__icon,
.fsr-scenes-search:focus-within
  .fsr-scenes-search__icon {
  color:
    rgba(
      var(--fsr-scenes-navy-rgb),
      0.5
    );
}

.fsr-scenes__result-count {
  border-color:
    rgba(
      var(--fsr-scenes-primary-rgb),
      0.38
    );

  color:
    #8a6900;

  background:
    rgba(
      var(--fsr-scenes-primary-rgb),
      0.11
    );
}

/* Main virtual category header */

.fsr-scenes-category--group
  > .fsr-scenes-category__header {
  border-color:
    rgba(
      var(--fsr-scenes-primary-rgb),
      0.24
    );

  color:
    var(--fsr-scenes-navy);

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 1),
      rgba(
        var(--fsr-scenes-primary-rgb),
        0.055
      )
    );

  box-shadow:
    0 4px 13px
    rgba(
      var(--fsr-scenes-navy-rgb),
      0.055
    );
}

/* Child categories */

.fsr-scenes-category--sub {
  border-color:
    rgba(
      var(--fsr-scenes-navy-rgb),
      0.075
    );

  background:
    rgba(255, 255, 255, 0.98);
}

/* Scene cards */

.fsr-scene-card__button {
  border-color:
    rgba(
      var(--fsr-scenes-navy-rgb),
      0.11
    );

  color:
    var(--fsr-scenes-navy);

  background: #fff;

  box-shadow:
    0 5px 14px
    rgba(
      var(--fsr-scenes-navy-rgb),
      0.08
    );
}

.fsr-scene-card__button:hover {
  border-color:
    rgba(
      var(--fsr-scenes-primary-rgb),
      0.62
    );

  box-shadow:
    0 8px 20px
    rgba(
      var(--fsr-scenes-navy-rgb),
      0.12
    );
}

/*
 * فقط یک تیرگی خیلی کم روی پایین تصویر
 * برای خوانایی و تفکیک تصویر
 */
.fsr-scene-card__shade {
  background:
    linear-gradient(
      180deg,
      transparent 65%,
      rgba(
        var(--fsr-scenes-navy-rgb),
        0.16
      )
      100%
    );
}

/* Card footer */

.fsr-scene-card__footer {
  border-top:
    1px solid
    rgba(
      var(--fsr-scenes-navy-rgb),
      0.07
    );

  background:
    rgba(255, 255, 255, 0.99);
}

.fsr-scene-card__title {
  color:
    var(--fsr-scenes-navy);
}

.fsr-scene-card__arrow {
  color:
    var(--fsr-scenes-navy);

  background:
    var(--fsr-scenes-primary);

  box-shadow:
    0 3px 8px
    rgba(
      var(--fsr-scenes-primary-rgb),
      0.24
    );
}

/* Image placeholder */

.fsr-scene-card__placeholder {
  color:
    rgba(
      var(--fsr-scenes-navy-rgb),
      0.36
    );

  background:
    linear-gradient(
      135deg,
      rgba(
        var(--fsr-scenes-navy-rgb),
        0.035
      ),
      rgba(
        var(--fsr-scenes-primary-rgb),
        0.07
      )
    );
}
@keyframes scene-loading-spin {
  to {
    transform: rotate(360deg);
  }
}