/* Landscape phones and portrait tablets */
@media (max-width: 1000px) {
.column {
    width: 100%;
}
.row{
	display: inline !important;
}
}

.column{
	display:inline-block; 
	padding-top:1%; 
}

.row{
	width: 40em; 
	height: 30em; 
	display:inline-block; 
	vertical-align: middle;
}

.column1 {
  float: left;
}
  /* Clear floats after the columns */
.row1:after {
  content: "";
  display: table;
  clear: both;
}

sup:hover {
  cursor: pointer;
}

label {
  font-weight: 550;
  color: #000000;
}

html * {
  font-family: "Open Sans", helvetica, arial, verdana, sans-serif !important;
}
/* MODAL */
.modal-content {
  background-clip: padding-box;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.modal-dialog {
  z-index: 1000;
    /* must be higher then overlay z-index;
    */;
}

.overlay {
  z-index: 90;
    /* must be lower then .modal-dialog */
  position: fixed;
    /* hide full web site */
  opacity: 0.8;
    /* a bit transparent */
  -moz-opacity: 0.8;
    /* fix for transparent for old browsers */
  filter: alpha(opacity=80);
  width: 100%;
  height: 100%;
    /* full screen*/
  top: 0;
    /* must be 0 */
  left: 0;
}

.overlay {
  background: rgba(0,0,0,0.5);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#7F000000,endColorstr=#7F000000);
    /* IE6–IE8 */
  zoom: 1;
}

.modal .modal-body {
  background: #f8fafb;
}

.modal .modal-title {
  font-size: 26px;
}

.modal-dialog {
  position: relative;
  display: table;
 /* This is important */
  overflow-y: auto;
  overflow-x: auto;
  width: auto;
  min-width: 300px;
}
 