/*//////////////////////////////////////////*/
/* PWA install page */
/*//////////////////////////////////////////*/

/* Intro */

#install .intro{
	display: flex;
    justify-content: space-between;
    align-items: center;
	gap: 30px;
	width: 100%;
	max-width: 1300px;
	min-height: 100vh;
	padding: 15px 15px 30px;
	margin: 0 auto;
}
#install .intro .desc{
	width: 45%;
	padding: 120px 0;
}
#install .intro .img{
	width: 55%;
}
#install .intro .img img{
	display: block;
	width: 100%;
	height: auto;
}
@media (max-width: 899px) {
	#install .intro{
		flex-direction: column-reverse;
    	justify-content: center;
		text-align: center;
	}
	#install .intro .desc,
	#install .intro .img{
		width: 100%;
		max-width: 500px;
		padding: 0;
	}
	#install .intro .img img{
		max-width: 400px;
		margin: 0 auto;
	}
}

/* About */

#install .about{
	margin: 90px 0 60px;
}
@media (max-width: 599px) {
	#install .about{
		background: #e1f1ff;
		padding-top: 20px;
		margin-top: 30px;
	}
}
#install .about .text{
	display: flex;
    align-items: center;
	padding: 10px 0;
	height: calc(100% - 30px);
    position: relative;
}
#install .about .text:before{
	content: '';
	width: 2000px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
	background: #e1f1ff;
    border-radius: 0 10px 10px 0;
    z-index: 5;
}
@media (max-width: 999px) {
	#install .about .text:before{
	    right: -15px;
	    border-radius: 0;
	}
}
#install .about .text p{
	padding-right: 10px;
    position: relative;
    z-index: 10;
}
#install .about .item{
	max-width: 320px;
	margin: 0 auto 30px;
	height: calc(100% - 30px);
}
#install .about .item i{
	display: block;
	font-size: 60px;
    color: #0046fe;
}
#install .about .item p{
	padding-top: 10px;
}

/* Screenshots */

#install .screenshots{
	position: relative;
}
@media (max-width: 1299px) {
	#install .screenshots{
		margin: 0 -15px;
	}
}
#install .screenshots:before,
#install .screenshots:after{
	content: '';
	width: 150px;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 10;
}
@media (max-width: 799px) {
	#install .screenshots:before,
	#install .screenshots:after{
		display: none;
	}
}
#install .screenshots:before{
	background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	left: 0;
}
#install .screenshots:after{
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
	right: 0;
}
#install .screenshots .slider{
	position: relative;
	z-index: 5;
}
#install .screenshots .slider .item{
	width: 300px;
	margin: 0 5px;
	filter: saturate(0.15);
	opacity: 0.2;
	transition: all 200ms linear;
}
@media (max-width: 599px) {
	#install .screenshots .slider .item{
		width: 260px;
	}
}
#install .screenshots .slider .item.slick-current{
	filter: saturate(1);
	opacity: 1;
}
#install .screenshots .slider .item .img{
	width: 100%;
	aspect-ratio: 9 / 16;
	border-radius: 15px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}
#install .screenshots .slider ul{
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
	margin-top: 15px;
}
#install .screenshots .slider ul li button{
	display: block;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    border: 0;
    font-size: 0;
    cursor: pointer;
	background: #e1f1ff;
	transition: all 200ms linear;
}
#install .screenshots .slider ul li.slick-active button{
    width: 30px;
	background: #0046fe;
}

/* Get */

#install .get{
	margin: 90px 0;
}
#install .get .title{
	margin: 0 auto 30px;
}
#install .get .c2a{
	padding: 30px;
	background: #e1f1ff;
    border-radius: 10px;
}
@-webkit-keyframes get {
	0% { -webkit-box-shadow: 0 0 0 0 rgba(0, 70, 254, 0.4); }
	70% { -webkit-box-shadow: 0 0 0 25px rgba(0, 70, 254, 0); }
	100% { -webkit-box-shadow: 0 0 0 0 rgba(0, 70, 254, 0); }
}
@-moz-keyframes get {
	0% { -moz-box-shadow: 0 0 0 0 rgba(0, 70, 254, 0.4); }
	70% { -moz-box-shadow: 0 0 0 25px rgba(0, 70, 254, 0); }
	100% { -moz-box-shadow: 0 0 0 0 rgba(0, 70, 254, 0); }
}
@keyframes get {
	0% { box-shadow: 0 0 0 0 rgba(0, 70, 254, 0.4); }
	70% { box-shadow: 0 0 0 25px rgba(0, 70, 254, 0); }
	100% { box-shadow: 0 0 0 0 rgba(0, 70, 254, 0); }
}
#install .get .c2a a{
	-webkit-animation: get 900ms ease-in-out infinite;
	-moz-animation: get 900ms ease-in-out infinite;
	animation: get 900ms ease-in-out infinite;
}
#install .get .inner{
	display: flex;
    align-items: center;
	gap: 30px;
	padding: 30px 30px 0;
	background: #e1f1ff;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
@media (max-width: 699px) {
	#install .get .inner{
		flex-direction: column-reverse;
		padding: 30px 0 0;
		gap: 0;
	}
}
#install .get .inner .img{
	width: 50%;
	margin-top: 30px;
	padding: 60px 30px 60px;
	position: relative;
	z-index: 5;
	background-image: url('/assets/app/images/phone.png?v12');
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 400px auto;
	filter: drop-shadow(0 0 30px rgba(43, 50, 103, 0.25));
}
@media (max-width: 999px) {
	#install .get .inner .img{
		background-size: 300px auto;
	}
}
@media (max-width: 699px) {
	#install .get .inner .img{
		width: 100%;
	}
}
#install .get .inner .img .qr{
	display: block;
	width: 200px;
	height: auto;
	margin: 0 auto;
}
#install .get .inner .desc{
	width: 50%;
	position: relative;
	z-index: 10;
}
@media (max-width: 699px) {
	#install .get .inner .desc{
		width: 100%;
		padding: 0 30px 30px;
		text-align: center;
	}
}
#install .get .inner .desc .url{
	display: inline-block;
	background: #ffffff;
	padding: 15px 25px;
	border-radius: 25px;
    filter: drop-shadow(0 0 30px rgba(43, 50, 103, 0.25));
}

/*//////////////////////////////////////////*/
/* install modal */
/*//////////////////////////////////////////*/

.pma_modal_overlay { 
	display: none; 
	position: fixed; 
	top: 0; left: 0; right: 0; bottom: 0; 
	background: rgba(0, 0, 0, .5); 
	justify-content: center; 
	align-items: center; 
	z-index: 99999; 
}
.pma_modal_overlay .pma_modal_content { 
	width: 340px; 
	max-width: calc(100% - 30px); 
	padding: 20px;
	background: #ffffff; 
	border-radius: 10px; 
	position: relative; 
}
.pma_modal_overlay .pma_modal_content .app { 
	display: flex; 
	flex-direction: column; 
	align-items: center; 
	margin-bottom: 20px;
}
.pma_modal_overlay .pma_modal_content .app span{ 
	display: block;
	font-size: 16px;
}
.pma_modal_overlay .pma_modal_content .app div{ 
	background: #ffffff; 
	border-radius: 15px;
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
	margin: 20px 0 10px;
}
.pma_modal_overlay .pma_modal_content .app strong{ 
	display: block;
	font-size: 18px;
	font-weight: 500;
}
.pma_modal_overlay .pma_modal_content .button_install { 
	width: 100%; 
	background: #0046fe; 
	color: #ffffff; 
	border: none; 
	border-radius: 5px; 
	font-size: 16px; 
	cursor: pointer; 
	font-weight: 500; 
	padding: 10px 0;
	margin-bottom: 10px;
	transition: .3s; 
}
.pma_modal_overlay .pma_modal_content .button_install:hover { 
	background: #0019ad; 
}
.pma_modal_overlay .pma_modal_content .button_install:active { 
	transform: scale(.98); 
}
.pma_modal_overlay .pma_modal_content .button_install:disabled { 
	opacity:0.7; cursor: not-allowed; 
}
.pma_modal_overlay .pma_modal_content .button_skip { 
	all: initial; 
	font:inherit; 
	width: 100%; 
	text-align: center; 
	cursor: pointer; 
	color: #8b8b8b; 
	font-size: 14px; 
	text-decoration: underline;
}