.cesHidden{
	display: none !important; 
}
.customSearch{
	position: relative;
	text-align: center;
	padding: 60px 0;
	min-height:800px;
	h2{
		font-weight: 900;
	}
	h2,h5{
		width:60%;
		display: inline-block;
	}
	.customSearchBody{
		width: 100%;
		display: grid;
		grid-template-columns: 310px 1fr;
		text-align: left;
		margin-top: 40px;
		gap: 40px;
		.filterBy{
			width: 100%;
			border-bottom: 2px #8c72f0 solid;
			font-size: 20px;
			font-weight: 600;
			padding-bottom: 10px;
			i{
				margin: 0 10px;
				color: #4628ba;
				cursor: pointer;
				display: none;
				float: right;
			}
		}
		.searchGroups{
			display: flex;
			flex-direction: column;
			gap: 15px;
			padding: 15px 0;
			label{
				color: #232323;
				font-size: 16px;
				font-weight: 600;
				cursor: pointer;
				display: flex;
				justify-content: space-between;				
				align-items: center;
				margin: 0;				
			}
			.cesItemsList{
				>div{
					width: 100%;
					display:flex;
					gap:0;
					>label{
						flex-grow: 1;
						margin: 0;
						font-size: 12px;
						line-height: 16px;
						font-weight: 400;
					}
					>input{
						min-height: 22px;
					}
				}
			}
			.cesItemsList.Closed{
				>div{
					display:none;
				}
			}			
		}
		.cesFastFiltersWrap{
			display: flex;
			flex-wrap: wrap;
			gap: 10px;
			margin:0;
			>div{
				cursor: pointer;
				display: flex;
				align-items: center;
				gap: 10px;
				margin:0;
				color: #232323;
				border: 1px #d8d8d8 solid;			
				padding: 0 5px;
				border-radius: 5px;				
				label {
					margin:0;
					cursor: pointer;
				}
				input{
					min-height: 20px;
					cursor: pointer;
				}
			}
		}
		.cesPaternWrap{
			padding: 10px 0;
			display: flex;
			gap: 10px;
			align-items: center;
			font-size: 20px;
			input{
				width: 100%;
				border-radius: 8px;
				padding-left: 10px;
			}
			i{
				margin: 0 10px;
				color: #4628ba;
				cursor: pointer;
				display: none;
			}
		}
		.cesSearchResultWrap{
			width: 100%;
			display: flex;
			gap: 0;
			flex-direction: column;
			.cesResultLabel{
				line-height: 50px;
				font-size: 16px;
				#count{
					font-weight: 600;
				}
			}
			.cesResultWrap{
				display: grid;
				width: 100%;
				grid-template-columns: repeat(3, 1fr); 
				gap: 20px;
				.cesBank{
					width: 100%;
					aspect-ratio: 0.9;
					overflow: hidden;
					border: 2px #8c72f0 solid;
					border-radius: 10px;
					padding: 10px;
					display: flex;
					flex-direction: column;
					label{
						color: #232323;
						font-size: 24px;
						font-weight: 600;						
					}
					.bankDescription{
						flex-grow:1;
						padding: 10px 0 0 0;
						display: block;
						overflow: hidden;
						text-overflow: ellipsis;
						line-height: 18px;
						font-size: 11px;
						position: relative;
					}
					.bankDescription::after{
						content: "";
						position: absolute;
						background: linear-gradient(180deg,rgba(255, 255, 255, 0) 20%, rgb(255, 255, 255) 100%);
						display: block;
						width: 100%;
						height: 100%;
						top: 0;
						left:0;
					}					
					button{
						align-self: center;
						width: 100%;
						border-radius: 4px;
						line-height: 40px;
						font-size: 15px;
						color: #FFF;
						font-weight: 900;
						border: 0;						
						background-color: #4628ba;
					}
					.bankCountry{
						width: min-content;
						padding: 0 10px;
						background-color: #4628ba;
						color: #FFF;
						border-radius: 6px;
						font-size: 13px;
						font-weight: 600;						
						white-space: nowrap;
					}
				}
			}
		}
	}
	.Icon {
		display: block;
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
	}
	.Icon.Right{background-image: url("./i/IconRight.svg"); width: 12px; height: 12px;}
	.Icon.Down{background-image: url("./i/IconDown.svg");  width: 22px; height: 22px;}
}
.customSearch::before{
  position: absolute;
  right: 70px;
  top: 60%;
  content: "";
  height: 500px;
  width: 500px;
  z-index: -1;
  animation: rotate-animation 30s infinite linear;
  margin-left: -250px;
  margin-top: -250px;
  background: url(/wp-content/themes/aveit/img/shape/globe.webp);
    background-size: auto;
  background-size: contain;
}
.cesCover{
	position: fixed;
	width: 100%;
	height:100%;
	top: 0;
	left:0;
	background-color: rgba(0,0,0,0.3);
	z-index:1000;
}
.cesModalClose.Icon.Close {
	display: block;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-image: url("./i/Close.svg");
	position: fixed;
	top: 40px;
	right: 40px;
	width: 45px;
	height: 45px;
	cursor: pointer;
	z-index: 100001;
}
.cesModal{
	position: fixed;
	width: 50%;
	height:80%;
	top: 50%;
	left: 50%;
	background-color: #FFF;
	z-index:1001;	
	border-radius: 10px;
	transform: translate(-50%,-50%);
	padding:20px;
	display: flex;
	flex-direction: column;
	gap: 10px;	
	overflow: auto;
	overflow-x: hidden;
	.Icon {
		display: block;
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
	}
	.Icon.Telegram{background-image: url("./i/Telegram.svg"); width: 12px; height: 12px;}
	.Icon.Close{
		background-image: url("./i/Close.svg");  
		width: 22px; 
		height: 22px;
	}
	.cesContactLine{
		width: 100%;
		display: flex;
		align-items: center;
		align-content: baseline;
		justify-content: space-between;
	}
	.cesbankRequest{
		display: flex;
		align-items: center;
		align-content: baseline;
		justify-content: space-between;
		gap:10px;
		margin-bottom: 20px;
		.Icon{
			width: 22px;
			height: 22px;
			cursor: pointer;
		}
	}
	.cesBankName.withPad,
	.cesContactLine.withPad{
		padding-right: 180px;
	}
	.cesBankName{
		color: #232323;
		font-size: 24px;
		font-weight: 600;						
	}
	.cesBankCountry{
		width: min-content;
		padding: 1px 13px;
		background-color: #4628ba;
		color: #FFF;
		border-radius: 6px;
		font-size: 17px;
		font-weight: 600;	
		white-space: nowrap;		
	}
	.cesBankDescription{
		flex-grow: 1;
		min-height: 70px;
        max-width: calc(100vw - 40px);
	}
	.cesBankLogo{
		position: absolute;
		width: 160px;
		top: 20px;
		right: 20px;
	}
	.cesBankDataItem{
		width: 100%;
		display: flex;
		flex-direction: column;
		gap:0;
		max-width: calc(100vw - 40px);
		.cesDataLabel{
			font-size: 12px;
			font-weight: 300;
			line-height: 10px;
		}
		.cesDataValue{
			color: #232323;
			font-weight: 500;
			font-size: 17px;
		}
		.cesRefValues{
			width: 100%;
			display: flex;
			gap:10px;
			flex-wrap: wrap;
			margin-top: 6px;
			span{
				display: inline-block;
				padding: 0 5px;
				border: 2px #8c72f0 solid;
				border-radius: 3px;
				line-height: 17px;
				font-size: 12px;
				font-weight: 600;
			}
		}
	}
}
.cesMoreWrap{
	padding: 20px;
	text-align: center;
	button{
		align-self: center;
		width: initial;
		border-radius: 4px;
		line-height: 40px;
		font-size: 15px;
		color: #FFF;
		font-weight: 900;
		border: 0;						
		background-color: #4628ba;
		padding: 0 30px;
	}
}
@keyframes showMobMenuPlay {
  0% {
    transform: translate(100%,0);
  }
  100% {
    transform: translate(0,0);
  }
}
@keyframes hideMobGameMenuPlay {
  0% {
    transform: translate(0,0);
  }
  100% {
    transform: translate(100%,0);
  }
}
@media screen and (max-width: 1200px) {
	.customSearch {
		.customSearchBody{
			grid-template-columns: 250px 1fr;
		}
	}	
}
@media screen and (max-width: 1000px) {
	.customSearch {
		.customSearchBody{
			grid-template-columns: 200px 1fr;
			.cesSearchResultWrap {
				.cesResultWrap {			
					grid-template-columns: repeat(2, 1fr);
				}
			}
		}
	}
}
@media screen and (max-width: 700px) {
	.cesModal{
		width: 100vw;
		height: 100vh;
		border-radius: 0;
		padding-top: 60px;
		.cesBankLogo{
			top:60px
		}
	}
	.cesModalClose.Icon.Close{
		top: 20px;
		right:20px;
		background-size: 80%;
		background-color: #000;
		border-radius: 8px;
		width: 30px;
		height: 30px;		
	}
	.customSearch {
		.customSearchBody{
			padding: 10px;
			grid-template-columns: 100%;
			.filterBy{
				i{
					display: inline-block;
					font-size: 22px;
				}
			}			
			.searchGroups{
				position: fixed;
				background-color: #FFF;
				z-index: 1000000;
				height: 100%;
				width: 100%;
				top: 0;
				left: 0;
				margin:0;
				padding:20px;
				transform: translate(0,100%);
			}	
			.searchGroups.Opened{
				transform: translate(0,0);
				animation-name: showMobMenuPlay;
				animation-duration: 300mS;
				animation-timing-function: linear;
			}
			.searchGroups.Closed{
				transform: translate(100%,0);
				animation-name: hideMobGameMenuPlay;
				animation-duration: 300mS;
				animation-timing-function: linear;
			}			
			.cesSearchResultWrap {
				.cesPaternWrap{
					font-size: 14px;
					i{
						display: inline-block;
						font-size: 22px;
					}
				}				
				.cesResultWrap {			
					grid-template-columns: repeat(2, 1fr);
					gap: 5px;
					.cesBank{
						width: 100%;
						aspect-ratio: 0.7;					
					}
				}
			}
		}
	}	
}