.market-row-one {
    display: flex; 
}

.market-row-two {
    display: flex; 
}

.market-item {
    background-color: #0058A4;
    width: 100%;
    margin: 10px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    font-weight: 700;
    transition: .2s ease-in-out;
	border-bottom: 3px solid transparent;
	z-index: 1;
}

.market-item i {
    font-size: 60px;
    margin-bottom: 20px;
    color: white;
}

.market-item p {
    margin: 0px 0px 10px 0px;
    color: white !important;
	font-size: 16px !important;
}

.market-item:hover {
    background-color: #112E52 !important;
    cursor: pointer;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.market-item p {
    padding: 0px 5px
}

.market-display {
    display: block;
    grid-template-columns: 30% 70%;
    max-width: 100%;
    height: 400px;
    align-items: center;
    margin-top: 20px;
	margin: 10px 10px;
}

.market-info h3::after {
    display: none !important;
}

.market-info h3, .market-info p {
    color: white;
	margin-bottom: 0px;
}

.market-image {
    background-image: url(https://www.svl.com/wp-content/uploads/2024/03/SVL-Office-Vela-min-e1713974925980.jpg);
    background-size: cover;
    background-position: center;
    height: 100%;
    z-index: -3;
    position: relative;
}

.market-info {
/*     background-color: #0058A4;
    background-position: 260px 117px;
    background-size: 50%;
    background-repeat: no-repeat;
    padding: 20px;
    height: 80%;
    width: 120%;
    z-index: 10;
    position: relative;
    z-index: -2; */
	
	background-color: #0058A4;
    background-position: 260px 117px;
    background-size: 50%;
    background-repeat: no-repeat;
    padding: 20px;
    width: auto;
    position: absolute;
}

.market-selected {
    position: relative;
    background-color: #112E52;
	border-bottom: 3px solid #FF8200;
	z-index: -2; 
}

.market-selected::before {
	font: var(--fa-font-solid);
    content: ' \f25a';
	color: white !important;
	left: 0;
	top: 0;
	position: absolute;
	z-index: 1;
	padding: 5px;
}

.market-selected::after {
	content: '';
	font-family: "Font Awesome 6 free"; 
	border-style: solid;
	border-width:  50px 50px 0px 0px;
	border-color: #679BC8 transparent transparent transparent;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
	position: absolute;
}