@charset "utf-8";

.stylerow {
	display: flex;
	justify-content: space-between;
}
.stylerowleft {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.stylerowright{
	width:20%;
	max-width: 150px;
	overflow: hidden;	
	flex-grow: 0;
    flex-shrink: 0;
}
.stylerowright__imagewrapper{
position: relative;
padding-top: 56.25%;
}
.stylerowright__image{
	position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.stylerowright__image > img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media all and (max-width:499px){
	.stylerowright{
		width: 30%;
	}
}
