/* ************************************************************************************** */
* {
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    overflow: auto;
}

a,
span,
a:hover,
a:active,
button {
    text-decoration: none;
}

a,
div a:hover,
div a:active,
div a:focus,
button {
    text-decoration: none;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

p {
    margin: 0;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
    margin: 0;
}

ul,
a {
    list-style: none;
    margin: 0;
    padding: 15px;
}

img {
    max-width: 100%;
}

.cm-overflow {
    overflow: hidden;
}

.container {
    padding: 0 15px;
}

a {
    color: transparent;
}



/* ***************************************************************************************************************** */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}

.arrow {
    position: absolute;
    top: 50%;
    font-size: 40px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transform: translateY(-50%);
    z-index: 10;
}

.arrow.left {
    left: 20px;
}

.arrow.right {
    right: 20px;
}

#app_header {
    position: sticky;
    top: 0;
    background-color: white;
    box-shadow: 0px 0px 7px 0px #0000003D;
}








.app_wrapper {
    max-width: 530px;
    margin: 0 auto;
    width: 100%;
    height: 100vh;
    height: calc(100vh - 0px);
    overflow-x: hidden;
    position: relative;
    background-color: #fff;
    scrollbar-color: #eee #3e3e40;
    scrollbar-width: none;
}

.app-container {
    padding: 12px;
    /* max-width: 480px; */
    margin: auto;
}

.app-header {
    display: flex;
    align-items: start;
    gap: 16px;
}

.app-header img {
    width: 80px;
    height: 80px;
}

.app-info h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.install_subtext {
    margin: 8px 0 0 0;
    font-size: 14px;
    color: #0B57D0;
    font-weight: 500;
}

.install-btn {
    /* margin-top: 12px; */
    background-color: #0B57D0;
    color: white;
    padding: 10px;
    border: none;
    width: 100%;
    height: 48px;
    font-size: 16px;
    border-radius: 40px 0 0 40px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.section {
    margin-top: 24px;
}

/* .section h2 {
     font-size: 16px;
     margin-bottom: 8px;
 } */

.images {
    display: flex;
    overflow-x: auto;
    gap: 7px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
}

.images::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

.images img {
    width: 175px;
    height: 180px;
    border-radius: 8px;
    object-fit: cover;
}

.review {}

.footer {
    margin-top: 24px;
    font-size: 14px;
}

.app-meta {
    display: flex;
    justify-content: space-between;
    margin: 16px 0;
    font-size: 13px;
    color: #444;
    text-align: center;
    align-items: center;
}

.meta-slider {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.meta-slider::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

.meta-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    position: relative;
    min-width: 120px;
    border: 0;
    background: transparent;
}
.download_mb{
    cursor: pointer;
}
.meta-item {
    flex: 1;
    position: relative;
}

.meta-item::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -5px;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-right: 1.21px solid #78787866;
    height: 29px;
}

.meta-item:last-child::after {
    border-right: none;
}

.meta-item img {
    width: 18px;
    height: 18px;
    /* margin-bottom: 4px; */
}

.install-section {
    display: flex;
    gap: 4px;
    height: 48px;
    cursor: pointer;
}

.loader {
    width: 13px;
    height: 13px;
    border: 2px solid #ffffff;
    border-top: 2px solid #333;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.install_bottom_btn {
    border-radius: 0px !important;
    position: fixed !important;
    bottom: 0 !important;
    height: 50px !important;
    max-width: 530px !important;
    width: 100% !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    z-index: 200 !important;
    transform: translate(-50%, 0%);
    left: 50%;
    right: 50%;
}


.install_arrow {
    width: 48px;
    height: 48px;
    border-radius: 0px 40px 40px 0px;
    border: 0px;
    background-color: #0B57D0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.meta_rating {
    font-size: 14.82px;
    font-weight: 500;
    color: #444;
    margin: 0;
    border: none;
    background-color: transparent;
}

.rating_star {
    font-size: 16.82px;
    font-weight: 500;
    color: #0B57D0;
}

.meta_review_text {
    font-size: 14.82px;
    font-weight: 500;
    color: #444;
    margin: 7px 0 0 0;
}

.meta_size {
    font-size: 14.82px;
    font-weight: 500;
    color: #444;
    margin: 7px 0 0 0;
}

.meta_age_icon {
    margin: 0px;
    border: 1px solid #232427;
    border-radius: 14%;
    padding: 0px;
}

.meta_age {
    font-size: 14.82px;
    font-weight: 500;
    color: #444;
    margin: 10px 0 0 0;
}

.meta_download {
    font-size: 14.82px;
    font-weight: 500;
    color: #444;
    margin: 7px 0 0 0;
}

.about_header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    width: 100%;
    justify-content: space-between;
    border: none;
    background-color: transparent;
    padding: 0px;
    color: black;
    font-size: 18px;
}

.about_title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.about_subtext {
    font-size: 14px;
    color: #787878;
    line-height: 20px;
    font-weight: 400;
}

.badge_text {
    margin-top: 20px;
    border: 1px solid #78787852;
    border-radius: 8px;
    width: max-content;
    padding: 8px 13px 8px 13px;
    color: #787878;
    font-size: 14px;
    font-weight: 400;
}

.safety-list {
    margin-top: 24px;
    border: 1px solid #78787852;
    border-radius: 12px;
    padding: 20px;
}

.safety-item {
    font-size: 14px;
    font-weight: 400;
    color: #787878;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.safety-item:last-child {
    margin-bottom: 0px;
}

#safety-details {
    display: none;
}

.details-link {
    text-decoration: none;
    color: #0B57D0;
    font-size: 14px;
    font-weight: 500;
    padding: 0px;
}

.verifled_text {
    display: flex;
    gap: 12px;
    color: #787878;
    font-weight: 500;
    font-size: 14px;
}

.rating-summary {
    margin-top: 24px;
    display: flex;
    gap: 12px;
}

.rating_summary_title {
    font-weight: 500;
    font-size: 56px;
    line-height: 45px;
}

.five_star_rating {
    color: #0B57D0;
    font-size: 17px;
}

.star_subtext {
    font-size: 14px;
    color: #787878;
    font-weight: 500;
}

.rating-bars {
    width: 250px;
    font-family: sans-serif;
}

.bar-group {
    display: flex;
    align-items: center;
    margin: 4px 0;
}

.bar-group span {
    width: 20px;
    font-size: 14px;
}

.bar-bg {
    background-color: #e5e7eb;
    width: 100%;
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
    margin-left: 8px;
}

.bar-fill {
    background-color: #0b57d0;
    /* Google Play blue */
    height: 100%;
}

.user_review {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #787878;
    font-weight: 500;
    margin: 20px 0;
}

.review_date {
    font-size: 14px;
    color: #0B57D0;
    font-weight: 500;
    margin-bottom: 12px;
}

.review_helpful {
    font-weight: 400;
    font-size: 12px;
    color: #787878;
    margin: 12px 0;
}

.feedback_text {
    font-size: 12px;
    color: #787878;
    display: flex;
    gap: 12px;
    align-items: center;
}

.helpful_btn {
    border: 1px solid #78787852;
    padding: 7px 16px;
    border-radius: 50px;
    background-color: transparent;
    font-size: 14px;
    font-weight: 400;
    color: #787878;
}

.support-section {
    font-family: sans-serif;
    margin: 24px 0 50px 0;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.support_url {
    padding: 0;
    text-decoration: none;
    color: #000000;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 3px;
}

.support_email {
    padding: 5px 0 0 0;
    font-size: 15px;
    color: #787878;
}

.about_developer {
    font-weight: 500;
    font-size: 16px;
    color: #000000;
    margin-bottom: 8px;
}

.about_developer_subtext {
    font-weight: 400;
    font-size: 14px !important;
    color: #787878 !important;
    padding: 0px !important;
    margin-bottom: 4px;
}

.accordion-heading img {
    transition: transform 0.3s ease;
}

.accordion-heading.accordion-opened img {
    transform: rotate(180deg);
}

/* **************************************** images full screen ******************************************* */
.preview-img {
    max-width: 100px;
    cursor: pointer;
    margin: 5px;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-img {
    /* max-width: 90%;
  max-height: 80vh; */
    width: 100%;
}

.lightbox-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    display: flex;
    justify-content: space-between;
}

.lightbox-nav button {
    background: none;
    border: none;
    color: white;
    font-size: 2em;
    cursor: pointer;
}

.close {
    position: absolute;
    top: 7px;
    right: 14px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

/* **************************************** install popup ******************************************** */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    /* dim background */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    z-index: 9;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup {
    position: fixed;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 22px;
    transition: bottom 0.3s ease-in-out;
    z-index: 10;
    font-size: 16px;
    z-index: 10000;
}

.popup.open {
    bottom: 0;
}

.popup-option {
    display: flex;
    align-items: center;
    padding: 0 0 20px 0;
}

.popup-option:last-child {
    padding: 0 0 0px 0;
}

.popup-option:last-child {
    border-bottom: none;
}

.popup-option span {
    margin-left: 12px;
    font-size: 18px;
    color: #787878;
}

.popup-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    margin-right: 10px;
}

/* ****************************************** installGuide ********************************************* */

#installGuideContainer {
    padding: 0px;
}

.installguide_title {
    font-weight: 500;
    font-size: 20px;
    text-align: center;
}

.install_subtitle {
    font-weight: 500;
    font-size: 20px;
    color: #232427;
    margin: 24px 0 12px 0;
    padding: 0 12px;
}

.android_setting_point {
    display: flex;
}

.android_setting_text {
    font-weight: 400;
    font-size: 16px;
    color: #232427;

}

.step {
    margin-bottom: 10px;
    padding: 0 12px;
}

.step img {
    max-width: 100%;
    padding: 12px 0 0 0;
    /* margin-left: 12px;     */
}

/* .install_guide_btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 64px 0px #0000003D;
    padding: 20px 24px;
    position: sticky;
    bottom: 0px;
    background: white;
} */

.install_guide_btn {
    position: fixed;
    bottom: 0;
    background-color: white;
    /* padding: 16px env(safe-area-inset-left) calc(16px + env(safe-area-inset-bottom, 0)); */
    padding: 16px 16px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    width: -webkit-fill-available;
    max-width: 498px;
}

.install_guide_btn p {
    font-size: 14px;
    font-weight: 500;
    color: #787878;
    margin-bottom: 12px;
}

.install_guide_btn button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: none;
    background-color: #0B57D0;
    color: white;
    border-radius: 40px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

/* Center the button on desktop */
@media (min-width: 768px) {
    .install_guide_btn {
        text-align: center;
    }

}

/* ******************************************* popup install ******************************************* */
/* Popup container */
.popup-home-to-screen {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 123, 255, 0.95);
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90%;
    width: 300px;
    animation: slideUp 0.3s ease-out;
}

/* Popup content */
.popup-content-home-to-screen {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

/* Close button */
.popup-content-home-to-screen button {
    align-self: flex-end;
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s;
}

.popup-content-home-to-screen button:hover {
    transform: scale(1.1);
}

.review-container {
    display: flex;
    flex-direction: column;
    overflow-x: auto;
    gap: 8px;
    scroll-snap-type: x mandatory;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
}

.review {
    flex: 0 0 100%;
    /* Show 80% of the container width */
    scroll-snap-align: start;
    box-sizing: border-box;
}

.review button:hover {
    color: #0B57D0;
    background-color: #0b57d03b;
    border-color: transparent;
}

#topic_tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    /* padding: 10px 0px 0 0; */
}

.topic-tab {
    padding: 6px 20px;
    border-radius: 6px;
    border: none;
    background: transparent;
    border: 1px solid #b6b6b6;
    color: #333;
    cursor: pointer;
    font-size: 14px;
    text-wrap-mode: nowrap;
}

.topic-tab.active {
    background: #2563eb;
    color: #fff;
    border: transparent;
}

.topic-tab .checkmark {
    display: none;
    font-size: 14px;
    padding-right: 3px;
}

.topic-tab.active .checkmark {
    display: inline;
}

.scrolling-tabs {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 10px 0;
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: #888 #f1f1f1;
    /* Firefox */
}


.scrolling-tabs>* {
    flex: 0 0 auto;
    min-width: 120px;
}

/* Chrome, Edge, Safari */
.scrolling-tabs::-webkit-scrollbar {
    height: 6px;
}

.scrolling-tabs::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.scrolling-tabs::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.scrolling-tabs::-webkit-scrollbar-thumb:hover {
    background: #555;
}



#review_section {
    margin: 0 0 50px 0;
}

.review_box_helpful {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    font-size: 15px;
}

.review_box_date_rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviewpage_helpful {
    border: 1px solid #78787852;
    padding: 6px 11px;
    border-radius: 50px;
    background-color: transparent;
    font-size: 13px;
    font-weight: 400;
    color: #000000;
    border-radius: 6px;
    cursor: pointer;
    margin: 0 2px;
}

.reviewpage_helpful:hover {
    color: #0B57D0;
    background-color: #0b57d03b;
    border-color: transparent;
}

.reviewpage_title {
    font-size: 16px;
}

/* .accordion-body {
  overflow: hidden;
  transition: max-height 0.4s ease;
  max-height: 0;
} */

/* ******************************************************************************************** */
.about_header_text {
    font-size: 16px;
    margin-bottom: 5px;
}

.about_page_header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0px;
}

.about_page_title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #383a3d;
}

.about_page_subtext {
    font-size: 16px;
    color: #5f6368;
    margin-bottom: 10px;
}

.feature_title {
    font-size: 17px;
    font-weight: 500;
    color: #5f6368;
    margin-bottom: 5px;
}

.feature_subtext {
    font-size: 16px;
    color: #5f6368;
    margin-bottom: 5px;
}

.feature_block {
    margin-bottom: 12px;
}

.about_more_info {
    font-size: 17px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 15px;
}

.about_more_text {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 500;
}

.whats_new {
    border-top: 1px solid black;
    padding: 12px;
}

.about_page_text {
    font-size: 16px;
    color: #5f6368;
    margin-bottom: 15px;
}

.about_page_list {
    padding: 0px;
}

.about_page_subtitle {
    line-height: 20px;
}

.more-info-section {
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    padding: 12px;
}

.game-info-section {
    /* border-top: 1px solid black; */
    /* border-bottom: 1px solid black; */
    padding: 12px;
    margin:  0 0 50px 0;
}

.gameinfo_subtext {
    font-size: 16px;
    color: #5f6368;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
}

.gameinfo_text {
    font-weight: 500;
    color: #272a2d;
}

#privacy-info-container{
    margin: 0 0 50px 0;
}
/* ******************************************************* data safety ******************************************************** */
.data_safety_back {
    padding: 0px;
}

.data_safety_top {
    background-color: #EAE9EE;
    padding: 8px 15px 15px 15px;
}

.data_title {
    font-size: 25px;
}

.data_subtext {
    font-size: 16px;
    margin-top: 8px;
}

.devloper_text {
    font-size: 16px;
    line-height: 20px;
}

.data_safety_link {
    padding: 0;
    text-decoration: underline !important;
    border-color: black;
    color: black !important;
}

.data_safety_subtext {
    font-size: 16px;
    line-height: 20px;
}

.data_safety_border {
    height: 1px;
    width: 100%;
    background-color: #a1a1a1;
    margin-top: 22px;
}

.app-header {
    display: flex;
    align-items: start;
    gap: 35px;
    margin-top: 6px;
}

.back-icon {
    width: 24px;
    height: 24px;
    margin-right: 16px;
    cursor: pointer;
}

.app-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.info-card {
    background-color: #fff;
    border-radius: 16px 16px 0 0;
    padding: 16px;
}

.info-banner {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    margin-top: 20px;
}

.info-banner img {
    width: 30px;
    height: 30px;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    margin: 16px 0 16px 0;
}

.item {
    margin-bottom: 16px;
}

.item-label {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 6px;
}

.item div,
.item a {
    font-size: 14px;
    color: #3c4043;
    line-height: 1.5;
}

.item a {
    color: #1a73e8;
    text-decoration: none;
}

#data-safety-page {
    background-color: #EAE9EE;
}

.datasafety_arrow_img {
    width: 25px;
    height: 25px;
}

.data_shared_text {
    font-size: 16px;
}

.accordion-content {
    display: none;
    padding: 15px 15px 0 15px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #a1a1a157;
}

.accordion-content {
    display: none;
}

.accordion-header {
    background-color: #fff;
    border: none;
    width: 100%;
    text-align: left;
    padding: 15px 0px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon,
.item-icon {
    width: 22px;
    height: 22px;
}

.data_collected_accordion {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.section-title {
    display: flex;
    /* align-items: center; */
    flex-direction: column;
    gap: 20px;
}

.section-icon {
    width: 45px;
    height: 45px;
}

.section-card {
    margin: 20px 0 0 0;
}

.section-title-text {
    margin-top: 10px;
}

.section-content {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.item-title {
    font-size: 17px;
    color: #000000;
    font-weight: 500;
    margin-bottom: 5px;
}

.datasafety_privacy_link {
    text-decoration: underline;
    padding: 0;
    color: #333333;
}

.data_safety_see_detalis {
    color: #0b57d0;
    padding: 0;
}

/* ******************************************************* rating & reviews ******************************************************** */
.review_tab_text {
    padding: 0 14px 10px 14px;
}

.rating-tab {
    padding: 6px 20px;
    border-radius: 6px;
    border: none;
    background: transparent;
    border: 1px solid #b6b6b6;
    color: #333;
    cursor: pointer;
    font-size: 14px;
}

.rating-tab.active {
    background: #2563eb;
    color: #fff;
    border: transparent;
}

.rating-tab .checkmark {
    display: none;
    font-size: 14px;
    padding-right: 3px;
}

.rating-tab.active .checkmark {
    display: inline;
}

.review_topic {
    font-size: 14px;
    margin: 10px 0 10px 0;
}

#selected_tab_title {
    font-size: 16px;
    padding: 20px 0;
}

/* .scrolling-tabs {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scrolling-tabs::-webkit-scrollbar {
    display: none;
} */

/* Animation */
@keyframes slideUp {
    from {
        transform: translate(-50%, 100%);
        opacity: 0;
    }

    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

/* Medium screens */
@media (max-width: 768px) {
    .popup {
        padding: 18px;
        font-size: 15px;
        max-width: 90%;
    }
}

@media (max-width: 767px) {
    .arrow {
        display: none;
    }
}

@media (min-width: 768px) {
    .scrolling-tabs {
        overflow-x: scroll;
        /* Force scroll on desktop */
    }
}

/* Small screens */
@media (max-width: 480px) {
    .popup {
        padding: 14px;
        font-size: 14px;
        max-width: 93%;
    }
}