/*@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;700&family=Sarabun:wght@400;600;700&display=swap');*/


*{
    box-sizing: border-box;
}
h1,h2,h3,h4,h5,h6{
	font-family: "Sarabun", sans-serif;
}


img{
	max-width: 100%;
	max-height: 100%;
}
body,html{
	font-family: "Roboto","Open Sans", sans-serif;
	margin: 0;
	padding: 0;
	background-color: #222736;
	overflow-x: hidden;
	font-size: 14px;
    color: #e9ecef;
}

body{
	padding-top: 71px;
	display: flex;
	flex-direction: column;
	min-height: 100%;
}
footer{
	margin-top: auto;
}
header{
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 9;
}

section{
	position: relative;
}
.anchor{
	position: absolute;
	height: 0;
	width: 0;
	opacity: 0;
	pointer-events: none;
	top:-71px;
}
.container{
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
}

.row{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	overflow: visible;
}

header,footer{
	background-color: #2a3142;
}

a{
	color: #a6b0cf;
	text-decoration: none;
}
a:hover{
	color: #e9ecef;
}

.buttons .btn{
	margin: 0 5px;
}

.logo{
	display: block;
	height: 40px;
}

.menu{
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.menu li {
	margin: 0;
	list-style-type: none;
	border-bottom: 2px solid transparent;
	transition: all 0.4s;
}
.menu li:hover, .menu li.active{
	border-bottom: 2px solid #e9ecef;
	background-color: #222736;
}

.menu li a{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px 15px;
	text-decoration: none;
	transition: all 0.4s;
	height: 50px;
}

.btn{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 7px 16px;
	border-radius: 5px;
	background-color: #626ed4;
	color: #fff;
	cursor: pointer;
	transition: all 0.4s;
	border: 0;
	outline: transparent;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 12px;
}

.btn:hover{
	background-color: #3a49c9;
}


.main_text{
	padding: 5% 0 25% 0;
	width: 40%;
	text-align: left;
}

.main_text a{
	display: inline-block;
	margin-top: 65px;
}



.main_text a .btn{
	width: 250px;
	padding: 10px;
	font-size: 14px;
}

.main_img{
	width: 60%;
	padding: 5%;
}
h1{
	font-size: 44px;
	font-weight: 700;
	padding-bottom: 5px;
	margin: 0;
	color: #fff;
}
h2{
	font-size: 22px;
	font-weight: 700;
	padding: 0px;
	margin: 0 0 20px;
}
h5{
	font-size: 18px;
	margin: 0;
	padding: 0;
	color: #a6b0cf;
	margin-bottom: 5px;
}
h6{
	font-size: 16px;
	margin: 0;
	padding: 0;
	color: #a6b0cf;
}

section#main{
	background: url('../images/main_bg.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}


.row-top{
	align-items: flex-start;
}

.row-center{
	justify-content: center;
}

.price_column{
	display: flex;
	flex-direction: column;
	align-items: center;
    padding: 30px 15px 5px;
	margin: 0 20px;
	background-color: #2a3142;
	width: 250px;
	border-radius: 5px;
	transition: background-color 0.3s;
	cursor: default;
	min-height: 330px;
}

.price_column .btn {
    padding: 7px 45px;
}

.price_column hr{
	margin-top: 1rem;
    width: 100%;
    border-color: #a1a1a1;
}
.price_column:hover{
	background-color: #383f56;
}
.price_column:hover .features li::marker{
	color: #fff;
	font-weight: 700;
}
.price_column:hover h3,.price_column:hover .price{
	color: #fff;
}


.price_column h3{
	text-align: center;
	width: 100%;
	font-size: 1.5em;
	text-transform: uppercase;
	margin: 0;
	padding: 0;
	transition: all 0.6s;
}

.features{
	margin: 20px 0;
	padding: 0;
	list-style-type: none;
	width: 100%;
}

.features li {
    margin: 5px 0 0 10px;
    padding: 0;
    padding-left: 5px;
    list-style-type: '✓';
}
.features li sup{
    margin-top: -5px;
    display: inline-block;
}
.addition_info{
	font-size: 12px;
}

.features li::marker{
	color: #626ed4;
	transition: all 0.3s;
}

.price{
	font-size: 1.5em;
	font-weight: 700;
	margin-bottom: 20px;
	transition: all 0.6s;
	font-family: "Sarabun", sans-serif;
}
.price span{
	font-size: 0.7em;
	color: #e9ecef;
}

.advantage_column{
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 15px;
	margin: 0 50px;
	width: 210px;
	cursor: default;
}

.advantage_column:hover .advantage_img{
	background-color: #fff;
}

.advantage_img_dual{
    width: 48px;
    height: 48px;
    background-color: #a6b0cf;
    -webkit-mask-image: url('../images/dual.svg');
     mask-image: url('../images/dual.svg');
    -webkit-mask-size: cover;
    mask-size: cover;
    transition: all .5s;
}
.advantage_img_support{
    width: 48px;
    height: 48px;
    background-color: #a6b0cf;
    -webkit-mask-image: url('../images/support.svg');
     mask-image: url('../images/support.svg');
    -webkit-mask-size: cover;
    mask-size: cover;
    transition: all .5s;
}
.advantage_img_earn{
    width: 48px;
    height: 48px;
    background-color: #a6b0cf;
    -webkit-mask-image: url('../images/earn.svg');
     mask-image: url('../images/earn.svg');
    -webkit-mask-size: cover;
    mask-size: cover;
    transition: all .5s;
}

.advantage_column h4{
	text-align: center;
	width: 100%;
	font-size: 14px;
	text-transform: uppercase;
	margin: 10px 0;
	padding: 0;
	transition: all 0.6s;
}

.advantage_text{
	font-size: 12px;
	color: #a6b0cf;
}


.advantages_s{
	padding: 40px 0;
}

.functions_s{
	padding: 80px 0;
	position: relative;
}
.functions_s video{
	height: 480px;
	width: 850px;
}

.video{
	position: relative;
	background-color: #2a3142;
	z-index: 5;
}

.video_line{
	height: 10px;
	width: 200%;
	pointer-events: none;
	z-index: 0;
	background-color: #2a3142;
	position: absolute;
	top: calc(50% - 5px);
}

.play_button{
	position: absolute;
    width: 128px;
    height: 128px;
    top: calc(50% - 64px);
    left: calc(50% - 64px);
    cursor: pointer;
    background: url(../images/play.png);
    background-size: 100%;
}

.changelog_s{
	padding: 40px 0;
}

.changelog{
	display: flex;
	flex-direction: column;
	width: 90%;
	max-width: 640px;
}
.changelog-full{
	display: flex;
	flex-direction: column;
	max-height: calc(100vh - 240px);
	overflow-y: auto;
}
.changelog_row{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 7px;
}

.changelog_status{
	width: 75px;
	text-align: center;
	border-radius: 10px;
    margin-right: 40px;
    padding: 5px 10px;
    font-size: 10px;
    text-transform: uppercase;
}

.changelog_row_date{
	margin: 10px 0 10px 10px;
	font-weight: 700;
}

.changelog_status.fixed{
	background-color: #49536c;
}
.changelog_status.new{
	background-color: #626ed4;
}
.changelog_status.improved{
	background-color: #919baf;
}

.changelog_more{
	margin: 10px auto;
	background: url('../images/play.png');
	width: 32px;
	height: 32px;
	background-size: 100%;
	transform: rotate(90deg);
	cursor: pointer;
	opacity: 0.5;
	transition: all 0.6s;
}
.changelog_more:hover{
	opacity: 0.9;
}

.row-column{
	flex-direction: column;
	align-items: center;
}

.free_try_s h2 {
	margin-bottom: 5px;
}

.free_try_s{
	padding-bottom: 40px;
}

.free_try_s h6 {
    font-size: 14px;
    margin: 0;
    padding: 0;
    font-weight: 400;
    color: #a6b0cf;
    margin-bottom: 20px;
}

.free_try_s .btn{
	width: 150px;
	padding: 10px;
	font-size: 14px;
}

.faq_s{
	padding: 40px 0;
}




footer{
	padding: 15px;
}



.faq{
	width: 100%;
	max-width: 800px;
}

summary {
  outline: none;
  padding: 1rem;
  display: block;
  background: #2a3142;
  color: white;
  padding-left: 2.2rem;
  position: relative;
  cursor: pointer;
  transition: all 0.6s;
}

details {
  margin-top: 5px;
  background: #2a3142;
  transition: all 0.6s;
}

details p {
	margin: 0;
	padding: 10px;
	text-align: justify;
}
details summary::-webkit-details-marker {
  display:none;
}
details[open] > summary:before {
  transform: rotate(90deg);
}
details[open] > summary{
	background-color: #49536c;
}
summary:before {
  content: '';
  border-width: .4rem;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 1.3rem;
  left: 1rem;
  transform: rotate(0);
  transform-origin: .2rem 50%;
  transition: .25s transform ease;
}

.about_s{
	padding: 40px 0;
}

.about_img{
	width: 30%;
	margin-right: 20px;
}

.about_text{
	width: 40%;
	text-align: justify;
}

.pricing_s{
	padding-top: 40px;
	margin-top: -40px;
}



.menu_btn{
	display: none;
}

.text-center{
	text-align: center;
}

.features_s{
	padding: 10px 0 80px;
	margin-top: -40px;
}


.main-features{
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
    
}

@keyframes example {
  0%   {transform: translateX(-300%);}
  100%  {transform: translateX(0);}
}
@keyframes example2 {
  0%   {transform: translateX(300%);}
  100%  {transform: translateX(0);}
}
@keyframes example3 {
  0%   {opacity: 0;}
  100%  {opacity: 1;}
}
.features_s h2{
	animation-delay: 0.5s;
	opacity: 0;
	animation-name: example3;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

.main-features ul {
	margin: 15px 0 0;
	padding: 0;
	display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 90%;
    max-width: 900px;
}
.main-features ul li {
	list-style-type: none;
	margin: 8px;
	padding: 15px 20px;
	background-color: #2a3142;
	border-radius: 20px;
	width: 47%;
	transition: background 0.5s;
	text-align: center;
	transform: translateX(-300%);
	animation-name: example;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}
.main-features ul li:nth-child(2n){
	transform: translateX(300%);
	animation-name: example2;
}
.main-features ul li:hover {
	background-color: #383f56;
}
.main-features ul li:nth-child(1){
	animation-delay: 0.5s;
}
.main-features ul li:nth-child(2){
	animation-delay: 0.7s;
}
.main-features ul li:nth-child(3){
	animation-delay: 0.9s;
}
.main-features ul li:nth-child(4){
	animation-delay: 1.1s;
}
.main-features ul li:nth-child(5){
	animation-delay: 1.3s;
}
.main-features ul li:nth-child(6){
	animation-delay: 1.5s;
}
.owl-stage .owl-item{
	display: flex;
	align-items: center;
	justify-content: center;
}

.what-can-do{
    background-color: #2a3142;
    padding: 20px;
    border-radius: 20px;
    height: 300px;
    transition: background 0.3s;
    width: 90%;
    max-width: 800px;
}
.what-can-do:hover {
    background-color: #383f56;
}
.what-can-do-text{
	width: 50%;
}
.what-can-do-text h4{
	font-size: 20px;
	font-weight: 700;
	padding: 0px;
	margin: 0 0 20px;
}

.what-can-do-icon{
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.what-can-do-icon i{
	font-size: 85px;
}
.what-can-do-icon img{
	border-radius: 20px;
}

.under-construction{
	padding: 0;
	margin: 0;
	margin-top: 3px;
	width: 100%;
	font-size: 12px;
}


.col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
}
table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 1rem;
    color: #a8b2bc;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0,0,0,.05);
}
.supported_cards td, .supported_cards tr {
    transition: all .2s;
}
.supported_cards td:hover {
    background-color: #555876;
    color: #fff;
}
.table tr:hover {
    background-color: #36394c;
}
.table td, .table th {
    padding: 0.25rem;
}
.table-bordered, .table-bordered td, .table-bordered th {
    border: 1px solid #343b51;
}

.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-auto, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-auto, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-auto, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
}
.download_page .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
    align-items: flex-start;
}
.supported_cards {
    margin-top: 2rem;
}
.download_page{
	padding-top: 2rem;
}
.download_page b{
	font-family: "Sarabun", sans-serif;
}


.fancybox-iframe{
	font-family: "Roboto","Open Sans", sans-serif;
	margin: 0;
	padding: 0;
	background-color: #222736!important;
	overflow-x: hidden;
	font-size: 14px;
    color: #e9ecef!important;
}
.icons {
    margin: 0 10px;
    font-size: 28px;
}
.icons.hide{
	opacity: 0;
	pointer-events: none;
}

.cookie {
	position: fixed;
	bottom: 0;
    display: none;
    justify-content: center;
    width: 100%;
    background-color: #2a3142;
    z-index: 50000;
    transform: translateY(120%);
    transition: transform 0.6s;
}
.cookie .container{
	padding: 20px;
	max-width: 750px;
	display: flex;
    align-items: center;
    justify-content: space-between;
}
.cookie .btn{
	text-transform: none;
    flex-shrink: 0;
    margin-left: 20px;
}

@media (max-width:1240px){
	.container{
		max-width: 980px;
	}
	.functions_s video {
    height: 396px;
    width: 700px;
}


}


@media (max-width:981px){
	.container{
		width: 95%;
		max-width: 767px;
	}
	h1 {
    font-size: 42px;
}
h6 {
    font-size: 14px;}
  
.price_column {
    margin: 0 20px;
}
}

@media (max-width:768px){
.icons.hide{
	display: none;
}
.cookie .container{
	padding: 10px 5px;
	flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.cookie .btn{
	text-transform: none;
    flex-shrink: 0;
    margin-left: 0;
    margin-top: 10px;
}


.logo{
	margin-right: auto;
}

	body{
	padding-top: 56px;
}
.anchor{top:-56px}
	.features_s{
		margin-top: 0;
	}
	.download_page table{
		font-size: 0.9em;
	}
	.supported_cards {
    font-size: .9em;
}
	.col-sm-6{
	    flex: 0 0 100%;
    max-width: 100%;
}

#main .row{
	flex-direction: column;
}
.main_text{
	width: 100%;
	text-align: center;
	padding: 5% 0 0 0;
}
.main_text .btn{
	margin-left: auto;
	margin-right: auto;
}

.advantages_s{
	display: none;
}

.pricing_s .row,.advantages_s .row,.about_s .row{
	flex-direction: column;
}
.pricing_s .row-center,.advantages_s .row-center{
	justify-content: flex-start;
	align-items: center;
}
.price_column {
    margin: 20px 0;
    width: 300px;
}
.advantage_column {
    margin: 20 0;
    width: 250px;
}



 .functions_s video {
    height: 47vw;
    width: 100%;
}
.video{
width: 90%;
}
.faq{
	width: 90%;
}
.about_img {
    width: 90%;
    margin-bottom: 20px;
}

.about_text {
    width: 90%;
}

.play_button {
    width: 16%;
    height: 29%;
    top: 35%;
    left: 43%;
    background-repeat: no-repeat;
}

header .btn{
	display: none;
}
.functions_s {
    padding: 60px 0 20px;}

.about_s {
    padding: 0 0 40px;
}



}

@media (max-width:580px){

	.main-features ul li{
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		height: 60px;
		padding: 0 3%;
		margin: 10px 0;
	}


	.menu{
	flex-direction: column;
    text-align: left;
    align-items: flex-start;
    width: 200px;
    position: absolute;
    top: 40px;
    right: -2.5%;
    background-color: #2a3142;
    z-index: 50;
    transform: translateX(120%);
    transition: transform 0.3s;
    height: calc(100vh - 56px);
	}


	.menu.show{
		 transform: translateX(0);
	}

.menu_btn{
	display: block;
	    background: transparent;
    border: none;
    outline: transparent;
    cursor: pointer;
}

.menu_btn span {
    width: 28px;
    height: 3px;
    background-color: #e9ecef;
    margin: 4px 0;
    display: block;
    transition: all 0.4s;
}
.menu_btn:hover span{
	background-color: #fff;
}
.menu li a {
    height: 45px;
    justify-content: flex-start;
}

.menu li {
    width: 100%;
    border-bottom: 1px solid #505050;
}

.menu li:last-child {
    border-bottom: 1px solid transparent!important;
}


.menu li:hover {
    border-bottom-width: 1px;
}
}





@media (max-width:550px){
	h1 {
    font-size: 38px;
}

}


@media (max-width:420px){
h1 {
    font-size: 34px;
}

h2 {
    font-size: 18px;
}
.free_try_s h6 {
    font-size: 12px;
  }

}