.input-field.sel:before {
	position: absolute;
	content: "";
	display: block;
	width: .5rem;
	height: .5rem;
	border-right: 2px solid #000;
	border-bottom: 2px solid #000;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	bottom: 1.1rem;
	right: 1rem;
	z-index: 5;
	pointer-events: none;
}
.review{
	border: 1px solid #ccc;
	box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.25);
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.25);
	width: 100%;
	display: flex;
	flex-direction: column;
}
.review .platform{
	display: flex;
	align-items: center;
	width: 100%;
}
.review .head{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}
.review .logo{
	margin-right:10px;
}
.review .logo img{
	width:50px;
}
.review .stars{
	display: flex;
	align-items: center;
	margin: 10px 0;
}
.review .stars div{
	color: #ffce00;
}
.review .stars svg{
	height: 25px;
	width: 25px;
}
.review .name{
	display: flex;
	align-items: center;
}
.review .name svg{
	margin-left: 5px;
	width: 20px;
}
.review .body{
	padding: 15px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.review .text{
	height: 100px;
	overflow-y: scroll;
}
.review .location{
	padding: 15px;
	background-color: #ededed;
	display: flex;
	align-items: center;
	flex-grow: 0;
}
.review .location svg{
	height: 40px;
	width: 40px;
}
.review .location div:last-child{
	margin-left:20px;
}
#review-slider{
	overflow: hidden;
	position: relative;
}
.swiper-slide {
  height: auto !important;
  display: flex;
}
.swiper-nav.swiper-button-prev, .swiper-nav.swiper-button-next{
	background-color: rgba(0,0,0,.5) !important;
	display: flex !important;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	top: 100px;
}
.swiper-nav.swiper-button-prev:after, .swiper-nav.swiper-button-next:after{
	font-size: 16px;
}
@media(min-width: 480px){
	.review .head{
		flex-direction: row;
		margin-bottom: 20px;
	}
	.review .text{
		padding-left: 35px;
		padding-right: 35px;
	}
	.swiper-nav.swiper-button-prev, .swiper-nav.swiper-button-next{
		top: 50%;
		margin-top: -15px;
	}
}