* {
	font-family: 'Open Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;	
}
p,li,dt,dd,a,blockquote,input,textarea,label,td,th {
	font-size:13px;
}
h1,.h1 {
	font-size:28px;
}
@media(max-width:767px){
    h1,.h1 {
    	font-size:18px;
    }
}
h2,.h2 {
	font-size:18px;
	font-weight:700;
}

hr {
	border-color: #A1A4AC;
	border-top-width: 1px;
	border-bottom: 0px;
}
.btn {
	padding: 13px 20px;
	text-transform: uppercase;
	font-weight: 700;
	line-height: 1;
	display: inline-block;
	color:#34373F;
}
a.btn {
	cursor:pointer;
}
.btn-ghost {
	border: 2px solid #E1242A;
}
.btn-white {
	border-color:white;
	color:white;
	text-decoration:none;
}

dl {
	display: flex;
	flex-wrap: wrap;
	margin: 5px 0px 0px;
}
dt {
	font-weight: 600;
	min-width: 300px;
	margin-bottom: 10px;
}
dd {
	font-weight: 600;
	font-size: 15px;
	margin-left: 0px;
	flex-grow: 1;
	width: calc(100% - 300px);
}
@media(max-width:767px){
    dt {
    	margin-bottom: 0px;
    }
    dd {
        margin-bottom: 10px;
    }
    dd:last-child {
        margin-bottom: 0px;
    }
    dt,
    dd {
    	width:100%;
    }
}

.alert {
  position: relative;
  padding: 1em;
  margin-bottom: 15px;
}
.alert-info {
  background: rgb(207, 244, 252);
  border: 1px solid rgba(5, 81, 96, 0.5);
  color: rgb(5, 81, 96);
}
.alert-success {
  background: rgb(209, 231, 221);
  border: 1px solid rgba(10, 54, 34, 0.5);
  color: rgb(10, 54, 34);
}
.alert-danger {
  background: rgb(248, 215, 218);
  border: 1px solid rgba(88, 21, 28, 0.5);
  color: rgb(88, 21, 28);
}
