.vip_layout-content_root {
    --min-height: 100vh;
    --header-height-with-safe-area: var(--height-layout-header-mobile-with-safe-area);
    --content-min-height: calc(var(--min-height) - var(--header-height-with-safe-area));
}

@supports (height:100dvh) {
    .vip_layout-content_root {
        --min-height: 100dvh;
    }
}

@media screen and (min-width: 1024px) {
    .vip_layout-content_root {
        --header-height-with-safe-area: calc(68px + env(safe-area-inset-top));
    }
}

.vip_layout-content_root {
    min-height: var(--content-min-height);
    flex-grow: 1;
	position: relative;
}

.vip_root {
    --container__padding: var(--spacing-16);
    --container__max-width--tablet: 840px;
    padding-block: var(--container-page-content-padding-top-mobile)var(--container-page-content-padding-bottom-mobile);
    padding-inline: var(--container__padding);
    margin: 0 auto;
	position: relative;
}

@media (min-width: 768px) {
	.vip_root {
        max-width: var(--container__max-width--tablet);
    }
}

@media (min-width: 1024px) {
    .vip_root {
        padding-block: var(--container-page-content-padding-top-desktop) var(--container-page-content-padding-bottom-desktop);
    }
}

.vip_root {
    flex-direction: column;
    display: flex;
}

.vip_block-header {
	text-align: center;
    flex-direction: row;
    justify-content: center;
    display: flex;
    position: relative;
    align-items: center;
}

.vip_block-header picture {
	height: 100px;
}

.vip_block-header picture img {
	height: 100%;
    width: auto;
    object-fit: cover;
}

.vip_root .vip_block {
    width: 100%;
    scroll-margin-top: 80px;
}

.vip_block-header_title {
    letter-spacing: 0;
    text-transform: uppercase;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: 20px;
}

@media (min-width: 768px) {
    .vip_block-header_title {
        letter-spacing: -.44px;
        font-size: 22px;
        line-height: 26px;
    }
}

.vip_block-header_title-text {
	display: contents;
}

.vip_block-header_title-text span {
    font-size: 44px;
    line-height: 40px;
}

@media (min-width: 768px) {
    .vip_block-header_title-text span {
        font-size: 70px;
        line-height: 60px;
    }
}

.vip-manager-block_root {
    
    text-align: center;
    border-radius: calc(var(--tab-rounding-square-tab) * 2);
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px;
    display: flex;
	position: relative;
    overflow: hidden;
    background: #06101f;
    border: 1px solid rgb(205 205 205 / 20%);
}

.vip-manager-block_root::before {
	content: "";
    background: radial-gradient(circle at top right, #0072ff00, transparent 35%), linear-gradient(18deg, #06101f78 43%, #0468d1ad 55%, #03204480 72%);
    border-radius: calc(var(--tab-rounding-square-tab) * 2);
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    filter: blur(50px);
}

@media (min-width: 768px) {
    .vip-manager-block_root {
        text-align: start;
        flex-direction: row;
        padding: 24px;
    }
}

.vip-manager-block_textContainer {
    width: 260px;
    height: 80px;
    margin-bottom: 12px;
	position: relative;
}

@media (min-width: 768px) {
    .vip-manager-block_textContainer {
        width: 300px;
        height: 80px;
        margin-bottom: 0;
    }
}

.vip-manager-block_titleContainer {
    justify-content: center;
    align-items: center;
    gap: 8px;
    display: flex;
}

@media (min-width: 768px) {
    .vip-manager-block_titleContainer {
        justify-content: flex-start;
    }
}

.vip-manager-block_titleContainer .vip-manager-block_title {
    color: #f0f2f5;
    letter-spacing: -.02em;
    font-size: 26px;
    font-weight: 600;
    line-height: 114%;
}

.vip-manager-block_titleContainer .vip-manager-block_badge {
    color: #000;
    letter-spacing: 0;
    text-align: center;
    background: #fff;
    border-radius: 999px;
    min-width: 24px;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 600;
    line-height: 133%;
    position: relative;
}

:is(.vip-manager-block_titleContainer .vip-manager-block_badge) .vip-manager-block_dot {
    background-color: var(--color-accent);
    border: 1.5px solid #2c76cd;
    border-radius: 999px;
    width: 8px;
    height: 8px;
    display: block;
    position: absolute;
    top: -1px;
    right: -1px;
}

@media (min-width: 768px) {
    :is(.vip-manager-block_titleContainer .vip-manager-block_badge) .vip-manager-block_dot {
        border: 1.5px solid var(--border-active);
    }
}

.vip-manager-block_textContainer .vip-manager-block_description {
    color: #ffffffad;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 143%;
}

.vip-manager-block_managers {
    gap: var(--spacing-16);
    display: flex;
	position: relative;
}

@media (max-width: 768px) {
    .vip-manager-block_managers {
		gap: var(--spacing-6);
	}
}

.vip-manager-block_managers picture {
	border-radius: 999px;
    overflow: hidden;
    background: var(--color-bg-card-soft-hover);
    border: 1px solid var(--border-soft);
}

.vip-manager-block_managers picture img {
    display: block;
    width: 100px;
    height: 100px;
    pointer-events: none;
    object-fit: cover;
}

:is(.vip_root .vip_block):not(:last-child) {
    margin-bottom: 24px;
}

.vip-players-block_root {
    text-align: center;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    display: flex;
	gap: 16px;
}

.vip-players-block_textContainer {
	letter-spacing: -.44px;
    font-size: 28px;
    line-height: 32px;
    text-transform: uppercase;
    font-weight: 600;
}

.vip-players-block_textContainer span {
	font-size: 36px;
    font-weight: 800;
}

.vip-players-block_players {
	display: flex;
	justify-content: center;
    flex-direction: row;
    align-items: center;
	gap: 4px;
	background: var(--gradient-primary);
    border-radius: 24px;
    padding: 16px;
	width: 100%;
}

.vip-players-block_players-counter {
    width: 86px;
    height: 100px;
	background: var(--color-background-base-primary);
    pointer-events: none;
    border: 1.5px solid var(--border-active);
	border-radius: var(--tab-rounding-square-tab);
	display: flex;
    justify-content: center;
    align-items: center;
}

.vip-players-block_players-counter span {
	font-size: 58px;
    font-weight: 800;
	color: var(--color-text-main);
}

.vip-players-block_players-counter span.no-active {
	color: var(--color-bg-deep);
}

.personal-approach_block {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.personal-approach-block_title {
    text-align: center;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 800;
    line-height: 120%;
}

.personal-approach-block_container {
    gap: var(--spacing-20);
    display: grid;
	justify-items: center;
}

.personal-approach-card_root {
    position: relative;
    border-radius: var(--tab-rounding-square-tab);
    color: #fff;
	border: 0;
    width: 100%;
    height: auto;
    background: none;
    padding: 0;
    overflow: hidden;
}

@media (min-width: 1024px) {
	.personal-approach-card_root {
		border-radius: calc(var(--tab-rounding-square-tab) * 2);
	}
}

.personal-approach-cardBanner_root {
	position: relative;
    overflow: hidden;
}

.personal-approach-card_root picture {
	display: contents;
}

.personal-approach-card_root picture img {
	aspect-ratio: none;
    display: block;
}

.personal-approach-card_grid {
	padding: 28px;
    flex-direction: column;
    align-items: start;
    display: flex;
    position: absolute;
    inset: 0;
}

.personal-approach-card_text {
	font-size: 28px;
    line-height: 32px;
    display: flex;
    flex-direction: column;
    text-transform: none;
    font-weight: 600;
	color: var(--color-text-main);
    -webkit-user-select: none;
    user-select: none;
}

.personal-approach-card_text strong {
	font-weight: 800;
	text-transform: uppercase;
}

.personal-approach-card_button_root {
	justify-content: space-between;
    align-self: stretch;
    align-items: end;
    margin-top: auto;
    display: flex;
}

.modal-vip-block_button {
    --button-width: 140px;
}

.personal-approach-card_root.freespins {

}

.personal-approach-card_root.lottery {

}

.personal-approach-card_root.gifts {

}

.personal-approach-card_root.wheel {

}

.vip-totalspent-block_root {
    text-align: center;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    display: flex;
    gap: 16px;
}

.vip-totalspent-block_title {
	text-align: center;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 800;
    line-height: 120%;
}

.vip-totalspent-block_total {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    gap: 4px;
	background: var(--gradient-primary-hover);
    border-radius: 24px;
    padding: 16px;
	width: 100%;
}

.vip-totalspent-block_total-counter {
    width: 86px;
    height: 100px;
    background: var(--color-background-base-primary);
    pointer-events: none;
    border: 1.5px solid var(--border-active);
    border-radius: var(--tab-rounding-square-tab);
    display: flex;
    justify-content: center;
    align-items: center;
}

.vip-totalspent-block_total-counter span {
    font-size: 58px;
    font-weight: 800;
    color: var(--color-text-main);
}

.vip-totalspent-block_total-counter span.no-active {
    color: var(--color-bg-deep);
}

@media (max-width: 1024px) {
	.vip-players-block_players-counter {
		width: 60px;
		height: 70px;
	}
	
	.vip-players-block_players-counter span {
		font-size: 42px;
	}
	
	.vip-totalspent-block_total-counter {
		width: 60px;
		height: 70px;
	}
	
	.vip-totalspent-block_total-counter span {
		font-size: 42px;
	}
}

@media (max-width: 768px) {
	.personal-approach-block_title {
		font-size: 22px;
	}
	
	.vip-players-block_textContainer {
		font-size: 22px;
		line-height: 26px;
	}
	
	.vip-players-block_textContainer span {
		font-size: 28px;
	}
	
	.vip-totalspent-block_title {
		font-size: 22px;
	}
	
	.vip-players-block_players {
		padding: 12px;
	}
	
	.vip-totalspent-block_total {
		padding: 12px;
	}
	
	.vip-players-block_players-counter {
		width: 55px;
		height: 60px;
	}
	
	.vip-players-block_players-counter span {
		font-size: 36px;
	}
	
	.vip-totalspent-block_total-counter {
		width: 55px;
		height: 60px;
	}
	
	.vip-totalspent-block_total-counter span {
		font-size: 36px;
	}
}

@media (max-width: 480px) {
    .vip-players-block_players-counter {
		width: 40px;
        height: 50px;
	}
	
	.vip-players-block_players-counter span {
		font-size: 28px;
	}
	
	.vip-totalspent-block_total-counter {
		width: 40px;
        height: 50px;
	}
	
	.vip-totalspent-block_total-counter span {
		font-size: 28px;
	}
}

.vip-end-block-root {
	border-radius: 20px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 269px;
    display: flex;
    position: relative;
    overflow: hidden;
	background: var(--color-bg-deep);
}

@media (min-width: 768px) { 
	.vip-end-block-root {
        height: 466px;
    }
}

@media (min-width: 1024px) {
	.vip-end-block-root {
        height: 476px;
    }
}

@media (min-width: 1440px) {
	.vip-end-block-root {
        height: 564px;
    }
}

.vip-end-block-root {
    width: 100%;
    scroll-margin-top: 80px;
}

.vip-end-block-root picture {
	display: contents;
}

.vip-end-block-root picture img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
	display: block;
	pointer-events: none;
}

.vip-end-block-container {
	z-index: 1;
    text-align: center;
    flex-direction: column;
    padding-bottom: 24px;
    display: flex;
	background: #0309147a;
	width: 100%;
}

.vip-end-block-title {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 800;
    line-height: 20px;
}

@media (min-width: 1024px) {
    .vip-end-block-title {
        letter-spacing: -.44px;
        font-size: 22px;
        line-height: 26px;
    }
}

.vip-end-block-title span {
    letter-spacing: -1.36px;
    font-size: 34px;
    line-height: 38px;
}

@media (min-width: 1024px) {
    .vip-end-block-title span {
        letter-spacing: -2.16px;
        font-size: 54px;
        line-height: 60px;
    }
}



.car-banner-block_container {
    height: 134px;
    margin: 12px 0;
    position: relative;
}

@media (min-width: 768px) {
    .car-banner-block_container {
        display: contents;
    }
}

.car-banner-block_wideShell {
    width: 100vw;
    transform: translateX(calc(-50% - var(--spacing-16)));
    justify-content: center;
    display: flex;
    position: absolute;
    left: 50vw;
    overflow: hidden;
}

@media (min-width: 768px) {
    .car-banner-block_wideShell {
        display: contents;
    }
}

.car-banner-block_wideShell picture {
    display: contents;
}

.car-banner-block_wideShell picture img {
	-webkit-user-select: none;
    user-select: none;
    height: 134px;
    margin-top: 12px;
	display: block;
	pointer-events: none;
}

@media (min-width: 768px) {
	.car-banner-block_wideShell picture img {
		height: 100%;
	}
}

.vip-status-block_root {
    border-radius: 20px;
    flex-direction: column;
    align-items: center;
    padding: 24px 0 24px;
    display: flex;
    position: relative;
    overflow: hidden;
	min-height: 120px;
    background: linear-gradient(180deg, #010715 0%, #06101f 100%);
}

.vip-status-block_root::after {
	content: "";
    background: linear-gradient(180deg, #06101f24 0%, #06101fab 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

@media (min-width: 480px) {   
	.vip-status-block_root {
		min-height: 200px;
	}
}

@media (min-width: 768px) {   
	.vip-status-block_root {
		min-height: 240px;
	}
}

@media (min-width: 1024px) {
	.vip-status-block_root {
		min-height: 320px;
	}
}

.vip-status-block_root picture {
	display: contents;
}

.vip-status-block_image {
	height: 100%;
    object-fit: contain;
    position: absolute;
    bottom: 0;
	display: block;
	pointer-events: none;
}

.vip-status-block_image.vip-status-block_start {
    top: 0;
    left: 0;
}



.vip-status-block_image.vip-status-block_end {
    top: 0;
    right: 0;
}

.vip-status-block_container {
    z-index: 1;
    text-align: center;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    max-width: 360px;
    height: 100%;
    padding: 0 14px;
    display: flex;
	gap: 12px;
}

@media (min-width: 1024px) {
    .vip-status-block_container {
        max-width: 544px;
    }
}

.vip-status-block_middleImage {
    width: 140px;
	display: block;
	pointer-events: none;
}

@media (min-width: 768px) {
    .vip-status-block_middleImage {
        width: 240px;
    }
}

@media (min-width: 1024px) {
    .vip-status-block_middleImage {
        width: 290px;
    }
}

.vip-status-block_title {
    letter-spacing: -.44px;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 800;
    line-height: 26px;
}

@media (min-width: 1024px) {
    .vip-status-block_title {
        letter-spacing: -.56px;
        font-size: 28px;
        line-height: 32px;
    }
}

.vip-status-block_subTitle {
    color: #ffffffa3;
    white-space: pre-wrap;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 20px;
}

.vip-status-block_button {
    z-index: 1;
    color: var(--color-bg-card);
    cursor: pointer;
    letter-spacing: 0;
    background: radial-gradient(circle at top right, rgb(159 159 159 / 55%), transparent 35%), linear-gradient(135deg, #585a61 0%, #f3f3f6 52%, #bdbec7 100%);
    outline: 2px solid #cbcbd3b5;
    border-radius: 12px;
    align-items: center;
	justify-content: center;
    width: max-content;
    min-width: 103px;
    height: 44px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    display: flex;
    position: relative;
	
}

.vip-status-block_button:active {
    opacity: 0.86;
}