﻿.table-cell-width
{
    width: 300px;
}
.full-width
{
    width: 100%;
}
.table-customers
{
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.table-customers-cell
{
    border: 1px dotted #dddddd;
    text-align: center;
    padding: 20px;
    width: 33%;
}
.logo-container
{
    height: 200px;
	position: relative;
}
.customer-logo
{
    bottom: 0;
    left: 0;
    margin: auto;
    max-width: 200px;
    right: 0;
    top: 0;
}
.customer-name
{
    font-weight: bold;
    font-size: 1.2em;
}

.customer-logo-svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}