/**
 * Theme Name:  spartanofear
 * Theme URI:   http://wordpress.org/themes/spartanofear
 * Author:      Ismael
 * Description: Theme for https://vktu.ru/.
 */


@font-face {font-family: 'Roboto-Medium'; src: url(fonts/Roboto-Regular.ttf); font-display: swap; }

:root {
   --primary: #2b6ba8;
   --secondary: #f6ef33;
   --header: #1a5684;
   --footer: #1a5684;
   --background: #eaf0f7;
   --links: #ffffff;
   --content-text: #454545;
   --content-links: #103852;
   --table-bg: #ffffff;
   --button-text: #ffffff;
   --border-radius: 30px;
}

/* Banner tg */

	.tg-block {
        background: #2C5580;
        display: flex;
        justify-content: center;
        height: 200px;
		margin-bottom: 20px;
		margin-top: 20px;
    }
    .tg-block_wrapper {
        display: flex;
        align-items: center;
		justify-content: center;
		gap: 30px;
    }
    .tg-block_wrapper .tg-block_image img {
        width: 252px;
        height: 200px;
    }
    .tg-block_wrapper .tg-block_text {
        color: #FFF;
		font-family: Tahoma;
        font-size: 26px;
        font-weight: 700;
        line-height: 28px;
        text-transform: uppercase;
    }
    .tg-block_wrapper .tg-block_text button {
        border-radius: 8px;
		font-family: Tahoma;
        background: #F4ED5C;
        color: #28270F;
        border: none;
        font-size: 18px;
        font-weight: 700;
        padding: 12px 24px;
        width: 400px;
        margin-top: 15px;
		cursor: pointer;
    }
	.tg-block_wrapper .tg-block_text button:hover {
        opacity: 0.9;
    }

	@media screen and (max-width: 1200px) {
    .tg-block {
        height: 100px;
    }
	.tg-block_wrapper {
		gap: 0px;	
	}
	.tg-block_wrapper .tg-block_image img {
    	height: 100px;
		width: 126px;
	
	}
	.tg-block_wrapper .tg-block_text {
		padding-left: 10px;
		font-size: 12px;
		line-height: 16px;
	}
	.tg-block_wrapper .tg-block_text button {
		width: 100%;
		max-width: 239px;
		padding: 5px 24px;
		margin-top: 10px;
	}
}

@media screen and (max-width: 480px) {
	.tg-block {
		position: relative;
		overflow: hidden;
	}
	.tg-block_wrapper .tg-block_image {
		position: absolute;
		top: 0;
		left: 1%;
	}
	.tg-block_wrapper {
		padding-left: 20px;
		padding-right: 20px;
		justify-content: flex-end;
		width: 100%;
	}

    .tg-block_wrapper.mirror {
        justify-content: center;
        padding: 0;
    }
}

@media screen and (max-width: 400px) {
	.tg-block_wrapper .tg-block_image {
		left: -10%;
	}
}

@media screen and (max-width: 360px) {
	.tg-block_wrapper .tg-block_image {
		display: none;
	}
	.tg-block_wrapper {
		justify-content: center;
	}
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}
body { 
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
	position: relative;
	background: var(--background);
    color: var(--content-text);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}


img {display:block; max-width:100%; }


footer {
	margin-top: auto;
}
a {
	color: var(--links);
    text-decoration: none; 
	font-size: 18px;
    transition: 0.3s; 
}
input, button {
    border: none; 
    box-shadow: none; 
    outline: none;
    transition: 0.3s;
}
h1, h2, h3, h4, h5, h6 {
    padding-bottom: 20px;
}
h1 {
	font-size: 36px;
	line-height: 40px;
}
h2 {
	font-size: 32px;
	line-height: 40px;
}
h3 {
	font-size: 26px;
	line-height: 36px;
}
h4, h5, h6 {
	font-size: 20px;
    line-height: 28px;
}
p, li, span, b, i, tr, td {
	font-size: 18px;
    line-height: 28px;
}
p {
 margin-bottom: 20px;
}
blockquote {
  border-left: 3px solid var(--secondary);
  color: var(--content-text);
  font-size: 1.25em;
  font-style: italic;
  line-height: 1.8em;
  padding: 1em 2em;
  margin: 20px 0;
}
blockquote p {
	margin-bottom: 0px;
}
.container {
    display: block;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1180px;
	width: 100%;
}
.content_page {
    margin-top: 75px;
	margin-bottom: 20px;
}
.content_page a {
	color: var(--content-links);
}
.mt-0 {
	margin-top: 62px;
}

amp-script {
    opacity: 1;
}

.wp-block-table {overflow-x:auto;}

/* Rewrite WP styles */

.wp-block-button__link {
	background: var(--primary) !important;
	color: var(--links) !important;
}

.wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block-button.aligncenter {
    margin-left: auto;
    margin-right: auto;
    width: calc(50% - var(--wp--style--block-gap, .5em)*0.5) !important; 
}

.wp-block-button__link {
	border-radius: var(--border-radius) !important;
	white-space: nowrap;
}

.wp-container-1, .wp-container-2, .wp-container-3 {
    justify-content: center;
    margin-bottom: 20px;
}

.wp-block-button__link:hover {
	filter: drop-shadow(1px 1px 6px var(--primary));
    transition: .3s;
}

.wp-block-separator {
    margin-bottom: 20px;
}

.wp-block-table td, .wp-block-table th {
    border: none !important;
	padding: 20px !important;
}


.rank-math-breadcrumb a, .rank-math-breadcrumb span {
	font-size: 14px;
}

.rank-math-breadcrumb span:not(.separator) {padding-bottom: 1px;
border-bottom: 1px solid #000;}

/* IMG content */

.wp-block-image { margin: 0 auto; margin-bottom:20px;width: 100%; max-width: 800px;}
.wp-block-image figure {margin: 0 auto; display: flex; justify-content: center;
flex-direction: column;}

.wp-block-image img {height:auto; margin: 0 auto; margin-bottom: 15px;}
.wp-block-image figcaption {text-align: center; color: #595959; font-size: 14px;}

.wp-block-column {width:50%;}
.wp-block-columns img {max-height: 500px !important; width: auto;
max-width: 100% !important; margin:0 auto; margin-bottom: 15px;}

.wp-block-gallery {justify-content: center;}
.wp-block-gallery img {margin-bottom:20px;}

@media (max-width: 1200px) {
.wp-block-column {width:100%;}
.wp-block-columns img {max-height: 300px !important;}
.wp-block-columns {flex-wrap:wrap!important;}	
}




/* Lists */

ul {
	list-style: none;
}

li {
	padding: 0 5px;
}

.content_page ul, .content_page ol {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.content_page li {
    position: relative;
    padding-left: 25px;
    width: 48%;
    padding-bottom: 10px;
}

.content_page ul, ol {
    list-style: none;
    margin-bottom: 20px;
}
.content_page ul li {
	padding: 2px 20px 5px 30px;
	display: block;
	position: relative; 
}   
.content_page ul li::before {
	content: ' ';
	background-image: url("/wp-content/uploads/2022/11/icons8-sport-18.png");
	height: 16px;
	width: 16px; 
	background-size: cover;
	display: block;
	position: absolute;
	top: 8px;
	left: 0;
}
.content_page ol {
    counter-reset: orderedlist;
}
.content_page ol li {
    padding: 5px 20px;
    display: block;
}
.content_page ol li::before {
    counter-increment: orderedlist;
    content: counter(orderedlist);
    height: 24px;
  	margin-left: -20px;
    padding-right: 10px;
}

.wp-block-column ul li, .wp-block-column ol li {width:100%!important;}

/* Table */

.wp-block-table {
    margin: 0px !important;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.wp-block-table table {
    background: var(--table-bg);
    border-radius: 5px;
}
th, td {
    padding: 15px;
    text-align: left;
}
tr {
	border-bottom: 1px solid #eee;
}
tr:last-child {
	border-bottom: none;
}


/* Back to Top button  */

.scrollToTop {
	background: var(--primary); 
	width:30px; 
	height:30px; 
	border-radius: var(--border-radius); 
	position:fixed; 
	bottom:90px; 
	right:30px;
	display:flex; 
	justify-content:center; 
	align-items:center; 
	cursor: pointer;
	z-index:2;
}
.scrollToTop img {
	width:15px; height:15px;
}

/* Header */

header {
	position: fixed;
	top: 0;
	left: 0; 
	width: 100%;
	height: 62px;
    background: var(--header);
	box-shadow: 0 0 50px 5px rgba(0, 0, 0, 0.1);
    z-index: 30;
}
.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
	height: 100%;
    padding: 10px 20px;
}
.menu-wrapper { 
	display: flex;
    align-items: center;
    justify-content: center; 
}
.menu {
	display: flex;
	align-items: center;
}

.menu a {
	font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}

a[aria-current] {
   color: var(--secondary) !important;
} 

/* Burger */

.burger {
	display: none;
}

.menu_mobile {
  background: var(--header);
  box-shadow: 0 2px 7px rgba(0,0,0,.6);
  width: 100%;
  padding: 0 30px;
  max-width: 350px;
  height: 100vh;
  position: fixed;
  top: 0;
  right: -100%;
  display: block;
  transition: right 0.8s;
  z-index: 10;
}
.menu_mobile.show  {
	right: 0; 
	transition: right 0.8s;  
}
header .overlay {
  display: none;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}
header .overlay.active {
	display: block;
}
.close {
	display: flex;
    justify-content: center;
    padding: 20px 0;
}
.menu_mobile .menu-header-menu-container ul {
	display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.menu_mobile .menu-header-menu-container ul li::before {
	content: none;
}
.menu_mobile .menu-header-menu-container li {
	padding: 10px;
}
.menu_mobile .menu-header-menu-container li a {
	color: #FFF;
}

/* AMP burger */

button.burger {
	display: flex;
	background: transparent;
}

amp-sidebar {
	width: 100%;
    max-width: 350px;
	background: var(--header);
}

.closeButton { 
	display: flex;
    justify-content: center;
    align-items: center;
	background: transparent;
	padding: 20px 0;
    margin: auto;
}
.closeButton img {
	width: 24px;
    height: 24px;
}

.pinup-menu ul {
	display: flex;
	flex-direction: column;
	align-items: baseline;
	padding: 0 20px;
    width: 100%;
}

.pinup-menu ul li {
	padding: 10px 0;
}

/* Slots */

.slots {
    display: flex;
    flex-wrap: wrap;
	 margin-bottom: 20px;
}

.item {
    flex: 0 0 25%;
    max-width: 25%;
    position: relative;
    padding: 10px;
}

.image {
    width: 100%;
    background: #2b6ba8;
    border-radius: 5px;
}

.item-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 0px 0px 5px #000;
    color: #fff;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.button-slot {
    text-align: end;
}

/* Button */

.button {
   	padding: 10px 15px;
    border-radius: var(--border-radius);
    font-weight: 700;
    color: var(--button-text);
    font-size: 14px;
	text-transform: uppercase;
    cursor: pointer;
	transition: .3s;
	border: none;
}
.reg-button {
	background: var(--secondary);
	border: 1px solid var(--secondary); 
	color:#000;
	   position: relative;
    display: flex;
    justify-content: space-between;
    gap: 5px;
    align-items: center;
	
}
.reg-button img {
    position: relative;
    top: 1px;
}
.footer-block-btn .reg-button {
    justify-content: center;
}
.reg-button img {
    position: relative;
    top: 1px;
}
.reg-button:hover {
    filter: drop-shadow(1px 1px 6px var(--primary));
}
.login-button {
	background: var(--primary);
	border: 1px solid var(--primary);
}
.login-button:hover {
	 filter: drop-shadow(1px 1px 6px var(--secondary));
}

.pulse {
  box-shadow: -1px -1px 5px 5px rgb(43 107 168);
  -webkit-animation: pulse 1.5s infinite;
}
.pulse:hover {
  -webkit-animation: none;
}

.footer-block-btn button {width:48%;}



@-webkit-keyframes pulse {
  0% {
    @include transform(scale(.9));
  }
  70% {
    @include transform(scale(1));
    box-shadow: 0 0 0 20px rgba(28, 198, 141, 0);
  }
    100% {
    @include transform(scale(.9));
    box-shadow: 0 0 0 0 rgba(28, 198, 141, 0);
  }
}

/* Footer */

.footer-wrap {
	padding: 20px 0;
	display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu-footer-menu-container ul li:before {
	content: none;
}
.footer-menu {
	text-align: right;
    display: flex;
    flex-direction: column;
	margin: 0;
	padding: 0;
}
.left-wrap {
	display: flex;
    flex-direction: column;
}
.footer-menu ul li:before {
	content: none;
}
.footer-menu a {
	color: #fff;
	font-size: 14px;
}
.footer-bg {
	background: var(--footer);
	color: #fff;
	width: 100%;
}

/* Fix Footer */

.footer-block-btn {
	z-index: 9;
    position: fixed;
    bottom: 0;
    left: 0;
    height: 59px;
    padding-right: 10px;
    padding-left: 10px;
    background-color: var(--header);
    display: flex;
    justify-content: space-between;
    align-items: center; width: 100%;
}

.mobile-footer-block {
	display: none;
}

/* FAQ */

.content_page .rank-math-answer {display: none;}
.content_page.pam_content .rank-math-answer {display: block;}
.rank-math-answer.active { display: block;}

.rank-math-list-item {
    background: #fff url('/wp-content/uploads/2022/11/open.png') no-repeat;
    background-size: 25px;
    background-position: 96% 19px; 
    cursor: pointer; 
    position: relative;
    padding: 15px 50px 15px 15px; 
    margin-bottom: 20px; 
	border-left: 5px solid var(--primary);
}
.rank-math-list-item.minus {
    background: #fff url('/wp-content/uploads/2022/11/close-2.png') no-repeat;
    background-size: 20px;
    background-position: 96% 19px;
}

.rank-math-question {
    text-align:left; 
    padding-bottom:0;
}
.rank-math-question span { 
    font-size:20px!important;
    line-height:30px!important; 
    padding-bottom:0;
}


/* 404 page */

.error-page {
	display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
    font-size: 40px;
    font-weight: 600;
}
.error-page p {
	font-size: 18px;
	font-weight: 400;
	text-align: center;
}
/* Кнопка с апк  в контенте*/

.buttonWrapper {
/* 	display: none;  */
	width: 100%;
    display: flex;
    justify-content: center;
	padding: 22px 0;
    background: linear-gradient(270deg, #124E77 0%, #2191DD 100%);
    position: relative;
}

.buttonWrapper img.bigDroid {
    position: absolute;
    left: 0;
    top: 16px;
    width: 137px;
    height: 86px;
}

.buttonWrapper button {
	font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    display: block;
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    background: #F9E843;
    color: #000;
    padding: 18px 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
}

.buttonWrapper img {
	width: 18px;
    height: 18px;
    margin-right: 10px;
}

@media (max-width:650px){
    .buttonWrapper button {
        padding: 12px 0;
        width: 225px;
        font-size: 16px;
        position: relative;
        z-index: 99;
    }

    .buttonWrapper img.bigDroid {
        top:4px;
        z-index: 1;
    }
}

@media (max-width:470px){
    .buttonWrapper {
        justify-content: right;
        padding: 22px 22px 22px 0;
    }
}

/* Banner */

/*.mainBanner {
	top: 60px;
	position: relative;
    height: 400px;
    margin: 0 20px;
    background-repeat: no-repeat;
	background-size: contain;
    background-position: center center;
    background-image:url(https://vktu.ru/wp-content/uploads/2023/06/back-desctop-min.png);
}
.mainBannerInner {
	height: 100%;
    align-items: center;
    display: flex;
}
.mainBannerText {
	width:100%;
	text-align: center;
}
.textFirst {
    color: #FFF;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding-bottom: 0;
}
.textSecond {
    color: #FFF;
    font-size: 120px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    line-height: 1;
}
.textSecond span {
    color: #102E5B;
    font-size: 120px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.textThird {
    color: #FFF;
    font-size: 34px;
    font-weight: 500;
    letter-spacing: 2.04px;
    text-transform: uppercase;
    padding-top: 10px;
}
.bannerButton {
    padding: 15px 25px;
    color: #FFF;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 140px;
    background: #53BE2E;
}
.bannerImg {
	width:48%;
}
.bannerImg img {
	width: 528px; 
	height: 325px; 
	max-width:100%; 
	max-height: 325px; 
	object-fit: contain;
	margin-top: 50px;
}*/

@-webkit-keyframes pulse{
  0%{-webkit-transform:scaleX(1);transform:scaleX(1)}
  50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}
  to{-webkit-transform:scaleX(1);transform:scaleX(1)}
}


@media (max-width: 1200px) {
	.desctop-button {
		display: none;
	}
	.burger {
	display: flex;
    align-items: center;	
}
	.menu {
		display: none;
	}
	
	.item {
    flex: 0 0 50%;
    max-width: 50%;
	}
	
	.image {
		height: 150px;
    object-fit: contain;
	}
	.content_page {
    margin-top: 60px;
	}
	.mobile-footer-block {
	display: flex;
}
	
}

@media (max-width: 780px) {
	.content_page li {
    width: 100%;
}
    h1 {
        font-size: 26px;
    	line-height: 36px;
    }
    h2 {
        font-size: 22px;
        line-height: 30px;
    }
    h3 {
        font-size: 20px;
        line-height: 28px;
    }
    h4, h5, h6 {
        font-size: 18px;
        line-height: 26px;
    }
	p, li, span, b, i, tr, td {
	font-size: 16px;
    line-height: 24px;
	}
}

@media (max-width: 680px) {
	.wp-block-image .alignleft {
	float: none !important;
    margin: auto !important;
	}
	.wp-block-image .alignright {
    float: none !important;
    margin: auto !important;
	}
	.wp-block-pullquote {
    margin: 20px 0px !important;
    padding: 20px !important;
	font-weight: 400;
	}
	.info-slider-text-title {
		font-size: 9px;
	}
	.info-slider-text {
		padding: 0 20px;
	}
	.info-slider-text-descr, .info-slider-text-descr span {
		font-size: 18px;
	}
	.main-banner img {
		height: 300px;
		filter: brightness(0.5);
	}
	.wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block-button.aligncenter {
    width: 100% !important; 
}
	.footer-wrap {
		flex-direction: column;
	}
	.footer-menu {
		text-align: center;
	}
	.item {
    flex: 0 0 100%;
    max-width: 100%;
}
}

@media (max-width: 440px) {
	.menu-wrapper .login-button {
		display: none;
	}
	.logo img {
    width: 108px;
    object-fit: contain;
}
	.wp-block-buttons>.wp-block-button.wp-block-button__width-50 {
    width: 100% !important;
}
}




/* Main banner */
/* .mainBanner {position:relative; margin-top:62px;height:300px;}
.mainBannerInner {display:flex; justify-content:space-between; max-width: 1100px;
width: 100%; margin: 0 auto;}
.bannerText {width:48%; padding-left:60px; padding-top:60px;}
.bannerText button {padding: 10px 15px;font-weight: 700; font-size:16px; color:#000;
    display:flex; align-items:center; cursor:pointer; transition:0.4s;}
.bannerText button img {width:20px; height:20px; background:#072338; border-radius:50%; padding:6px; margin-right: 8px;}
.bannerText .firstTitle span {color:#f6ef33; text-transform: uppercase; font-size:18px; position:relative; padding: 0 20px;}
.bannerText .firstTitle span:before {content:''; width:15px; height:2px; background:#f6ef33;
position:absolute; top:12px; left:0; }
.bannerText .firstTitle span:after {content:''; width:15px; height:2px; background:#f6ef33;
position:absolute; top:12px; right:0; }
.bannerText .secondTitle {font-weight: 700; font-size:50px; line-height:50px; color:#fff;}
.bannerText .bonus {color:#fff; font-size:24px; line-height:30px; font-weight: 500;}
.bannerText .bonus .marked {border-bottom:2px dotted #fff; display: inline-block; margin-left: 15px;}
		
.bannerImg {width:48%;}
.bannerImg img {width: 400px; height: 349px;}

@media (max-width: 1250px) {
.mainBanner {height:400px; top: 48px; background-image: url(https://vktu.ru/wp-content/uploads/2023/06/banner-mobile-min.jpg);}
}


@media (max-width: 800px) {
	    .mainBanner {
        margin: 0 auto 35px auto;
        width: 100%;
        min-height: 142px;
        height: auto;
        border-radius: 3px;
		background-size: cover;
    }
    .mainBannerText {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 10px;
    }
    .textFirst {
        font-size: 12px;
		margin-bottom: 0 !important;
    }
    .textSecond {
        font-size: 52px;
    }
    .textSecond span {
        font-size: 52px;
    }
    .textThird {
        margin-bottom: 20px;
    font-size: 15px;
    padding-top: 0;
    }
    .bannerButton {
        position: absolute;
        top: 80%;
        padding: 15px 24px;
		font-size: 17px;
		border: 2px solid #fff;
    }
}*/

@media (max-width: 480px) {
/*.bannerImg amp-img {
    width: 170px;
    height: 170px;
  }
	
	.bannerImg {
		margin: 0;
	}
	
	.bannerText .bonus {
		margin-bottom: 10px;
	}
	
	.bannerText {
		padding-top: 0;
	}
	
	.secondTitle {
		margin-top: 10px;
		margin-bottom: 0;
	}
	
 	.mainBanner {
		margin-top: 16px;
	} */
}

/* Main banner end */


.wp-block-media-text {display: grid; grid-template-columns: 50% 1fr;
grid-template-rows: auto; box-sizing: border-box;}


/* App page  */
.content_page.app_page {
	margin-top: 40px;
}
.app_block {
    padding: 140px 20px 0 20px;
  	max-width: 1180px;
  	width: 100%;
  	margin: 0 auto;
}
.app_top {
    display: flex;
	margin-bottom: 40px;
	margin-top: 40px;
}
.app_head {
	font-size:32px;
	color: #29333D;
	font-style: Tahoma ,sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	padding-bottom: 20px;
}

.app_left {
    max-width: 200px;
    height: 200px;
	width: 100%;
    margin-right: 20px;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    display:flex;
    justify-content:center;
    align-items:center;
    padding: 0 20px;
    background: #fff;
}
.app_right {
    width: calc(100% - 220px);
    display: flex;
    align-content: space-between;
    flex-wrap: wrap;
	gap: 16px;
	height: 190px;
}

.app_right .name {
    color: var(--black);
    font-family: 'Tahoma', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    text-transform: uppercase;
    width: 100%;
}
.app_right .name span {
	font-size: 27px;
	line-height: 27px;
	font-family: 'Tahoma', sans-serif;
	font-weight: 400;
	color: #454545;
	width: 100%;
	text-transform: uppercase;
}
.app_right .stars {
    display: flex;
    align-items: center;
    width: 100%;
}
.app_right .stars .star {
    margin-right: 8.5px;
}
.app_right .stars .star svg {
	width:28px;
    height:28px;
}
.app_right .star {
	display: flex;
	justify-content: center;
	align-items: center;
}
.app_right .stars .number {
    color: #29333D;
    font-family: 'Tahoma', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-left: 5px;
    width: 100%;
}
.app_right .stars .number .review_number {
	 color: #454545;
    font-family: 'Tahoma', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-left: 5px;
    width: 100%;
}
.app_right .downloads {
    display: flex;
    width: 100%;
	gap: 20px;
}
.app_right .downloads .apk {
	display: flex;
    justify-content: center;
    align-items: end;
	font-family: 'Tahoma', sans-serif;
	font-size: 18px;
	color: #29333D;
	font-weight: 700;	
}
.apk_info , .weight_number , .downloads_info  {
	height: 19px;
}
.app_right .downloads .weight {
	display: flex;
    justify-content: center;
    align-items: end;
	font-family: 'Tahoma', sans-serif;
	font-size: 18px;
	color: #29333D;
	font-weight: 700;	
}
.app_right .downloads .weight span {
	font-family: 'Tahoma', sans-serif;
	font-size: 18px;
	color: #4A9EF8;
	font-weight: 400;
}
.app_right .downloads .downloads_number {
	display: flex;
    justify-content: center;
    align-items: end;
	font-family: 'Tahoma', sans-serif;
	font-size: 18px;
	color: #29333D;
	font-weight: 700;	
}
.app_right .downloads .downloads_number span {
	font-family: 'Tahoma', sans-serif;
	font-size: 18px;
	color: #29333D;
	font-weight: 700;
}
.app_right .downloads .downloads_number .info__blue {
	font-family: 'Tahoma', sans-serif;
	font-size: 18px;
	color: #4A9EF8;
	font-weight: 700;
}
.app_right .downloads .number {
    padding-right: 20px;
    padding-left: 6px;
}
.app_right .downloads span {
    color:  var(--black);
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.app_right .app_button {
    width: 100%;
}
.app_bottom_mobile .weight  {
	display: none;
}
.app_bottom_mobile .downloads_number {
	display: none;
}
.app_right .app_button button, .app_button.app_button_mobile button, .app_page .fixed_buttonsInner button {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    display: block;
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    background: #14A0FF;
    color: #fff;
    padding: 18px 0;
    position: relative;
    cursor: pointer;
    display:flex;
    justify-content:center;
}
	.stars  img {
		height: 18px;
		width: 18px;
	}
	.apk img {
		height: 18px;
		width: 18px;
	}
	.weight img {
		height: 18px;
		width: 18px;
	}
	.downloads_number img {
		height: 18px;
		width: 18px;
	}
hr {
	background-color:#CBD4DF;
	height: 2px;
}
.app_right .app_button img, .app_button.app_button_mobile img, .app_page .fixed_buttonsInner button img {
	width: 18px;
    height: 18px;
    margin-right:10px;
}

.app_right .app_button button:hover {
    background: rgba(33, 167, 30, 0.7);
}

.app_bottom {
    margin-top: 40px;
}
.app_bottom .title {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}
.app_imgs {
    display: flex;
}
.app_imgs img {
    width: 120px;
    height: 245px;
    
}
.app_button.app_button_mobile {
    display:none;
}
.carousel-wrapper {
	display:none;
}

.app_page .fixed_buttons {display: none; position: fixed; width: 100%; padding: 8px 0; justify-content: center; bottom: 0; left: 0; z-index:8; background: #fff;}
.app_page .fixed_buttonsInner {display:flex; justify-content:center; align-items:center;}
.app_page .fixed_buttonsInner a {text-decoration: none;}

@media screen and (max-width: 650px) {
	.app_top {
		margin-bottom: 10px;
	}
	.app_left {
    width: 100px;
    height: 100px;
    border-radius: 22px;
	}
	.app_right {
    height: 87px;
	}
	.app_head {
		font-size: 20px;
		line-height: 20px;
	}
.app_right .downloads .weight {
		display: none;
	}
	.app_right .downloads .downloads_number {
		display: none;
	} 
	.app_right .name {
		font-size: 24px;
        line-height: 22px;
	}
		.app_right .downloads .apk {
		font-size: 17px;
	}
	.app_right .stars .number {
		font-size: 17px;
	}
		.app_right .stars .number .review_number {
		font-size: 14px;
	}
		.app_right .name {
		font-size: 17px;
		line-height: 17px;
	}
		.app_right .name span {
	    font-size: 17px;
		line-height: 17px;
	}
.app_bottom_mobile {
		display: flex;
		gap: 20px;
		justify-content: flex-start;
		align-items: center;
		padding-left: 10px;
	}
	.downloads_info span {
		font-size: 17px;
	}
.app_bottom_mobile .weight {
		display: flex;
		justify-content: center;
		align-items: end;
		font-family: 'Tahoma', sans-serif;
		font-size: 17px;
		color: #29333D;
		font-weight: 700;	
	}
	.weight_number span {
	font-family: 'Tahoma', sans-serif;
	font-size: 17px;
	color: #4A9EF8;
	font-weight: 700;
	}
.app_bottom_mobile .downloads_number {
		display: flex;
		justify-content: center;
		font-family: 'Tahoma', sans-serif;
		font-size: 17px;
		color: #29333D;
		font-weight: 700;	
	}
 .info__blue {
	font-family: 'Tahoma', sans-serif;
	font-size: 20px;
	color: #4A9EF8;
	font-weight: 700;
}
	   .app_button.app_button_desktop {
    	display:none;
    }
    .app_button.app_button_mobile {
    	display:flex;
		justify-content: center;
        width:97%;
		margin: 14px 0 20px 10px;

	}
}

@media screen and (max-width: 560px) {
	   .app_top {
    	width:100%;
        margin:0 auto;
		margin-bottom: 15px;
    }
/* 	.app_right {
    height: 141px;
    padding-top: 35px;
	} */

    .app_left {
        padding: 0 10px;
        margin-right: 12px;
		margin-top: 20px;
    }
    .app_right {
        width: calc(100% - 100px);   
		padding-top: 25px;
    }
/*     .app_right .name {
    	font-size:24px;
        line-height:22px;
    } */
/* 	.app_right .name span {
		display: none;
	} */
 .app_bottom_mobile .title {
    	width:90%;
        margin:0 auto;
        padding-bottom:0;
    }
    .app_right .stars .star {
  		margin-right: 6px;
    }
/*     .app_right .downloads span {
    	font-size:16px;
    }  */
}
@media screen and (max-width: 400px) {
	.app_right .stars .number .review_number {
		padding-left: 0;
	}
.app_bottom_mobile .weight {
		font-size: 15px;
	}
	.weight_number span{
	    font-size: 15px;
	}
.app_bottom_mobile .downloads_number {
		font-size: 15px;
	}
	.downloads_info span {
	    font-size: 15px;
	}
	.info__blue {
	     font-size: 15px;
	}
		.app_right .name span {
		display: none;
	}
			.app_right .stars .number .review_number {
		font-size: 12px;
	}
}
@media screen and (max-width: 320px) {
	.app_right .stars .number .review_number {
		padding-left: 0;
	}
.app_bottom_mobile .weight {
		font-size: 13px;
	}
	.weight_number span{
	    font-size: 13px;
	}
.app_bottom_mobile .downloads_number {
		font-size: 13px;
	}
	.downloads_info span {
	    font-size: 13px;
	}
	.info__blue {
	     font-size: 13px;
	}

		.app_right .stars .number .review_number {
		display: none;
	}
}


/* carousel */
.carousel-wrapper { /*justify-content:center;*/ margin-bottom: 30px; flex-wrap: wrap; flex-direction: column; }
.carousel {width:120px; height:245px; }
.carousel-item {background: var(--section); border-radius: 10px; padding: 10px; display: flex; justify-content:center; align-items:center;
    width:120px; height: 100%;}
.carousel_desktop {position: relative; width: 120px; height: 245px; overflow: hidden; border-radius: 10px;}
.carousel_desktop .carousel-item {position: absolute; top: 0; left: 0; width:100%; height:100%;
    transform: translateX(100%);  }
.carousel_desktop .carousel-item.shown { transform: translateX(0); animation: 0.3s fadeInRight linear;}
.carousel_desktop .buttons {position: absolute; top:100px;left:0; width:100%; z-index: 2;
    justify-content: space-between; display: none;}
.carousel_desktop .buttons button {width: 34px; height: 34px; border-radius: 50%;}
.carousel_desktop .buttons .prev {background:rgba(0,122,204) url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" fill="%23fff"><path d="M15 8.25H5.87l4.19-4.19L9 3 3 9l6 6 1.06-1.06-4.19-4.19H15v-1.5z"/></svg>')no-repeat;
    background-position: 50% 50%; background-size: 18px 18px;}
.carousel_desktop .buttons .next {background:rgba(0,122,204) url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" fill="%23fff"><path d="M9 3 7.94 4.06l4.19 4.19H3v1.5h9.13l-4.19 4.19L9 15l6-6z"/></svg>')no-repeat;
    background-position: 50% 50%; background-size: 18px 18px; }

.dots {display: flex; justify-content: center; width:120px;}
.dots .dot {width: 10px; height: 10px; background: #007acc; display: inline-block; border-radius: 50%; margin: 0 5px;}    
.dots .dot:hover {background: #225384;}
.dots .dot.active {background: #002f5e;}
.dots_pam_content {margin-top: 15px;}

.amp-carousel-button-prev, .amp-carousel-button-next {
	opacity:0;
}
.amp-carousel-slide amp-img {
	width: 120px; 
    height: 245px;
}


@-webkit-keyframes fadeInRight{
    0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}
    to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}
@keyframes fadeInRight{
    0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}
    to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}


/* modal box */
.app_imgs .modal_link {
  width: 120px;
  height: 245px;
  margin-right: 40px;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.9);
  z-index: 10000;
  height:100%;
  padding:5px;
  opacity: 0;
  pointer-events: none;
}
.modal:target {
  opacity: 1;
  pointer-events: auto;
}

.modal .close {
  position: absolute;
  right: 100px;
  top: 30px;
  color: #fff;
  padding: 5px;
  border-radius: 50%;
  background: #0265a7;
  width: 30px;
  height: 30px;
}
.modal .close:hover {
  background: #007acc;
}

.modal_inner {
  width:100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.modal_inner img, .modal_inner amp-img img {
  width: 280px;
  height: 572px;

}






@media screen and (max-width: 1200px) {
  .app_page .fixed_buttons {
    display: none;
  }

    .app_block {
        padding-top: 90px;
    }
    .app_imgs {
    	display:none;
    }
    .carousel-wrapper {
		display:flex;
	}
  .modal_inner img {
    width: 220px;
    height: 449px;
  }
  .content_page.app_page {
    margin-top: 0px;}
  .carousel.carousel_pam {
    margin-top: 15px;
  }
  .modal_inner img, .modal_inner amp-img img {
    width: 220px;
    height: 449px;
  
  }
    
}

@media screen and (max-width: 550px) {
    .app_block {
        width:100%;
    }
/*     .app_top {
    	width:90%;
        margin:0 auto;
    } */
   .app_button.app_button_desktop {
    	display:none;
    }
/*     .app_button.app_button_mobile {
    	display:block;
        width:90%;
        margin:0 auto;
        margin-top:14px;
	} */
    .app_left {
  		width: 100px;
        height: 100px;
        padding: 0 10px;
        margin-right: 12px;
    }
    .app_right {
        width: calc(100% - 100px);
    }
    .app_right .name {
    	font-size:24px;
        line-height:22px;
    }
    .app_right .stars .star svg {
        width:20px;
        height:20px;
	}
    .app_bottom .title {
    	width:90%;
        margin:0 auto;
        padding-bottom:0;
    }
    .app_right .stars .star {
  		margin-right: 6px;
    }
    .app_right .stars .number {
    	font-size:16px;
    }
    .app_right .downloads svg {
    	width:14px;
        height:14px;
    }
    .app_right .downloads span {
    	font-size:16px;
    }
    .carousel_desktop {
    	margin:0 auto;
    }
    .dots {
    	width:100%;
    }
    
    .carousel {
    	margin: 0 auto;
    }

    .modal .close {
      right: 20px;
      top: 10px;
    }
    
}



@media screen and (max-width: 360px) {
    .app_right .downloads {
    	flex-wrap:wrap;
    }
    .app_right .downloads .number {
    	padding-bottom: 5px;
    }
}

img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

figure img {
    border-radius: 14px;
    margin: 30px auto;
}

.promo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.promo-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

table {
    border-collapse: collapse;
    width: 100%;
    box-sizing: border-box;
}

th, td {
    padding: 3px;
    text-align: left;
    border-bottom: 1px solid #DDD;
}

tr:hover {background-color: #D6EEEE;}

.wrapper {
    width: 100%;


}

.content {
    width: 100%;

}





.responsive-table th,
.responsive-table td {
    padding: 5px 5px;
    border: 1px solid #ddd;
    text-align: left;
}

.responsive-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.responsive-table {
    width: 100%;
    border-collapse: collapse;
}

.responsive-table th,
.responsive-table td {
    padding: 5px 5px;
    border: 1px solid #ddd;
    text-align: left;
}

.responsive-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}


