:root {
    --tg-theme-bg-color: #FFFFFF;
    --tg-theme-secondary-bg-color: #efefef;
    --tg-theme-text-color: #000000;
    --tg-theme-button-color: #007bff;
    --tg-theme-button-text-color: #FFFFFF;
}

* {
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
    user-select: none;
}

body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--tg-theme-bg-color);
}

.frame-container {
    width: 100%;
    height: 100%;
    background-color: var(--tg-theme-bg-color);
}

.page-container {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    position: absolute;
    background-color: var(--tg-theme-bg-color);
}

.container-scroll-h {
    align-items: flex-start;
    display: flex;
    flex-wrap: nowrap;
    list-style: none;
    overflow-x: scroll;
    box-sizing: border-box;
    width: 100%;
    scrollbar-width: none; 
    -ms-overflow-style: none; 
}

.container-scroll-h::-webkit-scrollbar { 
    display: none;
}

.container-scroll-h-categories {
    padding: 16px;
    gap: 16px;
    position: sticky;
    top: 0;
    background-color: var(--tg-theme-bg-color);
}

.container-scroll-h-screenshot-list-preview {
    padding: 0px 16px;
    gap: 16px;
    height: 360px;
}

.container-flex-space-between {
    display: flex; 
    box-sizing: border-box;
    justify-content: space-between;
    width: 100%;
}

.container-item-flex-equal {
    box-sizing: border-box;
    flex: 1;
}

.image {
    background-size: cover; 
    background-position: center;
}

.image-rounded {
    border-radius: 30%;   
}

.image-rounded-10 {
    border-radius: 10%;   
}

.image-rounded-20px {
    border-radius: 20px;   
}

.image-small {
    width: 60px;
    height: 60px;
}

.image-medium {
    width: 70px;
    height: 70px;
}

.image-full-size-parent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-app-screenshot-item-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}


.item-app {
    display: flex;
    align-items: center;
    padding: 16px;
}

.item-app-content {
    flex: 1;
}

.item-in-scroll-h-content-size {
    flex: 0 0 auto;
}

.button-action {
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    overflow: hidden;
    cursor: pointer; 
    outline: none;
}

.button-action-primary {
    border: 2px solid var(--tg-theme-button-color);
    background-color: var(--tg-theme-button-color);
    color: var(--tg-theme-button-text-color);
}

.button-action-secondary {
    border: 2px solid var(--tg-theme-button-color);
    background-color: var(--tg-theme-bg-color);
    color: var(--tg-theme-button-color);
}

.button-ripple-primary {
}

.button-ripple-primary:hover {
}

.button-ripple-primary:active {
}

.button-ripple-secondary {
}

.button-ripple-secondary:hover {
}

.button-ripple-secondary:active {
}

.rating-bar-item {
    font-size: 24px;
    font-weight: 400;
    color: var(--tg-theme-button-color);
    text-align: center;
}

.text-headline-large {
    font-size: 32px;
    font-weight: 400;
    color: var(--tg-theme-text-color);
}

.text-headline-medium {
    font-size: 28px;
    font-weight: 500;
    color: var(--tg-theme-text-color);
}


.text-headline-small {
    font-size: 24px;
    font-weight: 500;
    color: var(--tg-theme-text-color);
}

.text-title-large {
    font-size: 22px;
    font-weight: 400;
    color: var(--tg-theme-text-color);
}

.text-title-medium {
    font-size: 16px;
    font-weight: 500;
    color: var(--tg-theme-text-color);
}


.text-title-small {
    font-size: 14px;
    font-weight: 500;
    color: var(--tg-theme-text-color);
}

.text-body-large {
    font-size: 16px;
    font-weight: 400;
    color: var(--tg-theme-text-color);
}

.text-body-medium {
    font-size: 14px;
    font-weight: 400;
    color: var(--tg-theme-text-color);
}

.text-body-small {
    font-size: 12px;
    font-weight: 400;
    color: var(--tg-theme-text-color);
}