.card-layout-container {
    background-color: #f4f4f4;
    padding-top: 1em;
}

.card-layout {
    max-width: 450px;
    min-height: 500px;
    margin: auto;
    background-color: white;
    border-radius: 10px;
    border: 1px solid #CCCCCC;
}

    .card-layout-close {
        text-align: right;        
    }

        .card-layout-close > button {
            border: none;
            font-size: 18px;
            height: 24px;
            width: 24px;
            color: white;
            background-color: #2C2C2C;
            cursor: pointer;
			line-height: 0.75rem;
        }

        .card-layout-close > button::before {
            content: '\00D7';
        }

    .card-layout-logo {
        text-align: center;
        border-bottom: 1px solid #CCCCCC;
        padding-top: 16px;
        padding-bottom: 16px;
        margin-bottom: 16px;
    }

    .card-layout-logo > img {
        width: 130px;
    }

    .card-layout-close + .card-layout-logo {
        padding-top: 8px;
    }

.card-layout-title {
	font-family: "gt-walsheim-bold";
	font-size: 24px;
    text-align: center;
}

.card-layout-title, .card-layout-content {
    max-width: 350px;
    margin: 16px auto;
    padding-left: 16px;
    padding-right: 16px;
}

@media (max-width: 450px) {

    .card-layout-container {
        padding-top: 0px;
    }
}
