body, html {
	font-family: 'Heebo';
	margin: 0;
	padding: 0;
	height: 100%;
	background: #f4f5ff;
	box-sizing: border-box;
}
.card{
	background: white;
	width: 100%;
	border-radius: 8px;
}
.flex{
	display : flex;
}
.flex-center{
	justify-content: center;
}
.flex-end{
	justify-content: end;
}
.flex-space{
	justify-content: space-between;
}
input:focus{
    outline: none;
}
.alert-danger{
	padding: 12px;
	box-sizing: border-box;
	background: #ffc0c0;
	border: 1px solid #c83737;
	border-radius: 6px;
	color: #b53333;
	margin-bottom: 10px;
}
.relative{
	position : relative;
}
.container {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width : 1140px;
} 
.mr{
	margin-right: 5px;
}
.ml{
	margin-left: 5px;
}
.d-none{
	display : none !important;
}
/*MODAL*/
.modal{
	position: fixed;
	background: #00000063;
	width: 100%;
	height: 100%;
	top: 0;
}
.modal > .content-modal{
	max-width: 730px;
	background: white;
	margin: auto;
	margin-top: 80px;
	height: auto;
	min-height: 100px;
	border-radius: 6px;
	position: relative;
}
.content-modal > div{
	padding: 10px;
	position: relative;
}
.content-modal > .modal-header{
	border-bottom: 1px solid #8080804f;
}
.content-modal > .modal-header > .title{
	font-size: 25px;
}
.content-modal > .modal-header > .close{
	opacity: 0.5;
	position: absolute;
	right: 15px;
	width: 17px;
	top: 15px;
	cursor: pointer;
}
.content-modal > .modal-footer{
	border-top: 1px solid #8080804f;
}
/*Select*/
select {
  width: 100%;
  background: white;
  border: 1px solid #bfbfbf;
  border-radius: 4px;
  font-size: 16px;
  padding: 5px;
  cursor: pointer;
}
/*Textarea*/
textarea{
	background: white;
	border: 1px solid #bfbfbf;
	border-radius: 4px;
	max-width: 100%;
	outline: none;
	font-size: 15px;
	padding: 10px;
}
/*Button*/
button{
	cursor : pointer;
}
.btn{
	padding: 6px;
	box-sizing: border-box;
	background-color: #1400ffe5;
	color: white;
	font-weight: bold;
	border: 1px solid #00f;
	border-radius: 5px;
}
.btn:hover {
  background-color: #3538ff;
}
.btn-success{
	background-color: #00c845e5 !important;
	border: 1px solid #00cc46 !important;
}
.btn-success:hover {
  background-color: #008a30e5;
}


@media (max-width: 1200px) {
    .modal > .content-modal{
		margin: 80px 20px 0px 20px !important;
	}
}
