* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Open Sans' , sans-serif;
}

body{
	padding-bottom: 70px;
	background-color: #EBEAEA;
}

p {
	margin: 12px 0;
	font-size: 15px;
	text-align: justify;
	font-family: 'Open Sans' , sans-serif;
}

header {
	width: 100%;
	margin-top: 20px;
	margin-bottom: 20px;
	overflow: hidden;
}

.right {
	float: right;
}

header nav, .app-documention-main-container, .nav-list-options{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	background: white;
	width: 90%;
	max-width: 1200px;
	border-radius: 10px;
	padding: 5px 20px;
	margin: 0px auto;
	margin-top: 20px;
}

.nav-list-options {
	padding: 15px 20px;
	justify-content: flex-start;
}

.nav-list-options * {
	margin-right: 15px;
}

.app-info-container{
	width: 150px;
	display: flex;
	overflow: hidden;
    align-items: center;
}

.app-info-container img {
	width: 50px;
	height: auto;
	cursor: pointer;
}

.app-info-container h2{
    color: #8c8c8c;
    font-size: 16px;
    margin-left: 5px;
	display: inline-block;
}

.app-presentation h1{
	font-size: 25px;
	color: #2D71E1;
}

.form-control{
	padding: 7px;
	border-radius: 4px;
	border: 1px solid lightgray;
}

.form-control:focus{
	outline: none;
	border: 1px solid #2D71E1;
}

.button-primary{
	color: white;
	padding: 7px;
	border-radius: 4px;
	background-color: #2D71E1;
	border: 1px solid #2D71E1;
	transition: all ease 1s;
}

.button-active{
	color: white;
	padding: 7px;
	border-radius: 4px;
	background-color: #2D71E1;
	border: 1px solid #2D71E1;
	transition: all ease 1s;
}

.button-primary:hover{
	color: #2D71E1;
	cursor: pointer;
	background-color: white;
	border: 1px solid #2D71E1;
}

.button-white{
	padding: 7px;
	color: #2D71E1;
	cursor: pointer;
	border-radius: 4px;
	background-color: white;
	border: 1px solid #2D71E1;
}

.button-white:hover{
	color: white;
	padding: 7px;
	border-radius: 4px;
	background-color: #2D71E1;
	border: 1px solid #2D71E1;
	transition: all ease 1s;
}

.app-documention-main-container{
	padding: 20px;
}

.model-request-container{
	width: 100%;
	overflow: hidden;
}

.title{
	font-family: 'Open Sans' , sans-serif;
    font-size: 28px;
    font-weight: bold;
    color: #1798af;
}

.subtitle {
	color: #8c8c8c;
	font-size: 17px;
	margin-bottom: 10px;
	font-family: 'Open Sans' , sans-serif;
}

.request-container {
	width: 100%;
	margin-top: 15px;
	overflow: hidden;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}

.request-container-header{
	display: flex;
	padding: 10px;
	cursor: pointer;
	flex-direction: row;
	align-items: center;
	transition: all ease 1s;
}

.request-container-header * {
	display: inline-block;
	margin: 0 10px;
}

.get-method {
	background-color: #BCE0F1;
}

.post-method {
	background-color: #C4E1C6;
}

.put-method {
	background-color: #F6BFA0;
}

.delete-method {
	background-color: #F69292;
}

.border-get {
	border: 2px solid #BCE0F1;
}

.border-post {
	border: 2px solid #C4E1C6;
}

.border-put {
	border: 2px solid #F6BFA0;
}

.border-delete {
	border: 2px solid #F69292;
}

.request-container-body {
	padding: 20px;
	max-height: 1720px;
	transition: max-height 0.50s ease-out;
}

.request-container-body .content{
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.request-container-body .content .description {
	width: 18%;
	overflow: hidden;
}

.request-container-body .content .body {
	width: 49%;
	overflow: hidden;
}

.request-container-body .content .request {
	width: 49%;
	overflow: hidden;
}

.request-body-content {
	padding: 20px;
	height: 500px;
	margin: 15px 0;
	overflow: auto;
	border-radius: 4px;
	border: 2px solid #2D71E1;
}

.property {
	color: #2D71E1;
	margin-right: 10px;
}

.type{
	color: #E6344A;
	margin-right: 10px;
}

.slide-up{
	max-height: 0;
	padding: 0 20px;
	overflow: hidden;
	transition: max-height 0.25s ease-out;
}

.no-link{
	text-decoration: none;
	color: #000;
}

.button-request{
	width: 200px;
	margin-bottom: 10px;
}

.hidden{
	overflow: hidden;
}

.no-params{
	color: lightgray;
	text-align: center;
	margin-top: 190px;
}

.loading{
	width: 20%;
	margin:auto;
	height: auto;
	display: block;
}

.message-container{
	top: -155px;
	color: #fff;
	width: 300px;
	right: -155px;
	padding: 15px;
	position: fixed;
	overflow: hidden;
	border-radius: 4px;
	transition: all ease 1s;
}

.show-message {
	top: 15px;
	right: 15px;
}

.message-success {
	background-color: #08B428;
}

.message-error {
	background-color: #DF1648;
}

.block{
	display: block;
	margin: 5px 0;
}

.display-inline{
	display: inline-block;
	margin-bottom: 10px;
}

.display-inline label{
	margin: 0 10px;
}

.input-block{
	display: block;
	width: 50%;
}

.ul-tables-list {
	padding-left: 20px;
}

article{
	width: 100%;
}

.note {
	padding:20px;
	color: #0066d2;
	margin: 10px 0;
	border-radius: 4px;
	background-color: #BCE0F1;
}

.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    margin-top: -1500px;
    background-color: rgba(0,0,0,.7);
    transition: all ease 0.5s;
}

.modal-content {
    position: fixed;
	top: 12px;
    left: 50%;
    display: block;
    width: 900px;
    height: calc(100% - 40px);
    margin-left: -450px !important;
    margin-top: -1500px;
    z-index: 1500;
    background-color: #EBEAEA;
    transition: all ease 0.5s;
}

.modal-content iframe {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 1000px;
}

.modal-container, .modal-content {
    visibility: hidden !important;
}

.visibility {
    visibility: visible !important;
    margin-top: 0 !important;
}

.container-notes {
	margin:auto;
	width: 90%;
	max-width: 1200px;
	border-radius: 4px;
	background-color: #fff;
}

.container-notes .note{
	margin:0 auto;
	padding: 10px;
	border-radius: 0;
	background-color: #fff;
	border-bottom: 1px solid #EBEAEA;
}

.container-notes .note img{
	width: 40px;
	height: auto;
}

.container-notes .note a {
	color: gray;
	bottom: 12px;
	margin-left: 12px;
	position: relative;
	text-decoration: none;
}