html, body{
	font-family: 'Exo';
}

body{
	background: url('blue_dots_overlay.png');
	min-height: 100vh;
}

.card-title{
	color: #0e4da7;
}

.card {
	cursor: pointer;
	border:none;
	transition: 200ms;
	border-bottom: 5px solid #ef8300;
}
.card:hover {
	border-bottom: 5px solid #0e4da7;
}

.card img {
	width: 100%;
    height: 170px;
    object-fit: contain;
    padding: 10px;
    transition: 200ms;
}

.card:hover img {
	transform: scale(1.1);
}

.configurator-box{
	position: fixed;
	top:0;
	left:0;
	width: 100vw;
	height: 100vh;
/*	background: white;*/
	visibility: hidden;
	opacity: 0;
	transform: scale(0);
	transition: 200ms;
}

.configurator-box.open{
	visibility: visible;
	opacity: 1;
	transform: scale(1);
}

.configurator-box iframe{
	width: 100%;
	height: 100%;
}

.configurator-box .close{
	position: fixed;
    left: 10px;
    top: 10px;
    background: #0e4da7;
    border: none;
    border-radius: 6px;
    color: white;
    padding: 15px 30px;
    font-weight: bold;
    font-size: 16px;
}

.nav-pills a{
	background:white;
	margin:10px;
	color: #0e4da7;
}
.nav-pills a.active{
	background:#ef8300!important;
}
