/* Card */
.card {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  background: #fff;
  margin: 20px 10px;
  cursor: pointer;
}
.card:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

/* Selectable */
.card .selectable {
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 4px solid transparent;
}




.card .selectable .check {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 20px;
  height: 20px;
}
.card .selectable .check:before {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  content: '';
  border: 20px solid;
  border-color: transparent;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.card .selectable .check .checkmark {
  display: block;
  font: 20px sans-serif;
  line-height: 20px;
  text-align: center;
  color: transparent;
}
.card .selectable.selected {
  border-color: #e15b63;
}
.card .selectable.selected .check:before {
  border-color: #e15b63 #e15b63 rgba(0, 0, 255, 0) rgba(255, 0, 0, 0);
}
.card .selectable.selected .check .checkmark {
  color: #fff;
}

.content {
  padding: 6px;height: 100px;width: 100px;
}


.content .title{
  margin: 0;font-style: italic;
  margin-top: 12px; text-align: center;width: 100%;font-size: 12px;line-height: 20px;margin-left: -2px;
  background-color:rgba(256, 256, 256, 0.2);
}
.content .db {
	margin: 0; display: none;
  padding: 1px;
}

.column {
 
  width: 100%;
}
/*.column > .title {
  text-align: center;
	width: 100%;
	
}*/

button.card {
  display: block;
  cursor: pointer;
  width: 100%;
  margin: 20px auto;
  text-align: center;
  padding: 16px;
  border-color: transparent;
  border-radius: 10px;
  background: #e15b63 !important;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  outline: none;
}
button.card:focus {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}


/* Main wrapper for grid */
.content {
  display: block;
}

/* Individual columns */
.card {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
	    overflow: hidden;position: relative;
}

[type=submit], [type=reset], button, html [type=button] {
     -webkit-appearance:none; 
}

#app{
  margin-top: -40px;;
}



<style>
.close {
  float: right;
  font-size: 20px;
  font-weight: bold;
  line-height: 18px;
  color: #000000;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
.close:hover {
  color: #000000;
  text-decoration: none;
  opacity: 0.4;
  filter: alpha(opacity=40);
  cursor: pointer;
}
.alert {
	
  padding: 8px 35px 8px 14px;
margin-top:2px !important;
margin-bottom:2px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  background-color: #fcf8e3;
  border: 1px solid #fbeed5;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  color: #c09853;
	font-size: 13px;
}
.alert-heading {
  color: inherit;
}
.alert .close {
  position: relative;
  top: 6px;
  right: -10px;
  line-height: 18px;
}
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #468847;
 
}
.alert-danger,
.alert-error {
  background-color: #f2dede;
  border-color: #eed3d7;
  color: #b94a48;
  
}
