/*RESET*/
* {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;	
    //-webkit-text-stroke-width: .05px;
	//-webkit-text-stroke-color: white;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	margin: 0px;
	padding: 0px;	
	list-style: none;
    outline: none;
    text-decoration: none;	
}
body {
    font-family: 'Lato', sans-serif;
}
.modal-content {
    position: relative;
    background-color: #f7f7f7;
    background-clip: padding-box;
    border-radius: 6px;
    outline: 0;
    max-height: 600px;
    overflow-y: auto;
}
.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    width: 100%;
    height: 100%;
}
.modal-header h1 {
    font-size: 26px;
    width: 220px;
    color: #364153;
    margin: 0 auto 15px auto;
    text-transform: uppercase;
    font-weight: 800;
    text-align: center;
}
.modal-header p {
    font-size: 16px;
    max-width: 600px;
    color: #364153;
    margin: 0 auto;
    font-weight: 400;
}
    
.modal-header .close {
    margin-top: -2px;
}
button.close {
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
}
.modal-body {
    position: relative;
    padding: 20px 0 0 0;
}
.modal-body .content {
	max-width: 700px;
	margin: auto;  
}
.modal-body .list {
	width: 100%;
	margin: auto;
	text-align: center;
}
.modal-body .list li {
	width: 215px;
	margin: 10px 3px 10px 3px;
	display: inline-block;
	vertical-align: top;
	text-align: center;
}
.modal-body .list .borders {
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}
.modal-body .list li .image {
	width: 215px;
	height: 130px;
	display: block;
	box-sizing: border-box;
	margin-bottom: 15px;
}
.modal-body .list li .name {
    display: block;
    color: #364153;
	font-weight: 800;
    text-transform: uppercase;
    font-size: 18px;
	letter-spacing: 2px;
    font-weight: 800;
}
.modal-body .list li .text {
    margin: 10px 0;
    height: 110px;
    display: block;
    font-size: 14px;
    line-height: 15px;
	font-weight: 100;
	color: #484848;
    text-align: left;
    padding: 0 10px 0 16px;
    overflow: hidden;
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}
.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}
.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid #d7d7d7;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

<!-- Responsive elements -->
@media (min-width: 768px) {
.modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
    box-shadow: 0 5px 15px rgba(0,0,0,.5);
}
}
@media (max-width: 400px) {
    .modal-body .list li {
    border-bottom: 1px solid #ccc; 
}
.modal-body .list .borders {
    border-left: none;
    border-right: none;
}
.modal-header p {
    font-size: 13px;
    line-height: 14px;
}
.modal-body .list li .text {
    height: inherit;
}
}
