body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333;
	background-color: #FFF;
	margin: 0;
	padding: 0;
}
*{
	box-sizing: border-box;
}

a {
	-moz-user-select: none;
	color: #1155CC !important;
	font-family: "verdana", "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
h3 {
	margin:0;
	padding:10px 5px 10px 5px;
	text-align: center;
}

h2 span{
	color: #00b7d5;
}


.site-header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 25px;
	max-width: 1400px;
	margin: auto;
	box-sizing: border-box;
}


.login-form{
	width: 100%;
	box-sizing: border-box;
	display: block;
	max-width: 400px;
	margin: auto;
}

input{
	box-sizing: border-box;
}

.login-form input[type=text],.login-form input[type=password]{
	width: 100%;
	border: 2px solid #00b7d5;
	background: #fff;
	padding: 1rem;
	margin-bottom: 1rem;
}

h1{
	text-align: right;
}

h1 span{
	display: block;
	font-size: 14px;
	font-weight: normal;
	margin-top: .5rem;
}


.login-form input[type=submit], .login-form button{
	width: 100%;
	border: none;
	background: #00b7d5;
	padding: 1rem;
	margin-bottom: 1rem;
	color: #fff;
}

.login-form button{
	max-width: 200px;
	margin: 0;
	transition: all .2s;
}

.login-form button:hover{
	background: #363839;
	cursor: pointer;
}


.list-droplets{
	max-width: 1400px;
	margin: auto;
	padding: 25px;
}

.list-droplets__header{
	background: #363839;
	color: #fff;
	padding: 20px 10px;
    font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.list-droplets__header--title{

}

.list-droplets__header--more{
	
	
}

.list-droplets__header--more a{
	color: #363839 !important;
	transition: all .2s;
	display: inline-block;
	padding: 10px;
	background: #fff;
	font-size: 12px;
	text-decoration: none;
}

.list-droplets__header--more a:hover{
	background: #00b7d5;
}

.list-droplets__droplet{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px;
	font-size: 14px;
	background: #d0d2d3;
	/* flex-wrap: wrap; */
}

.list-droplets__droplet:nth-child(odd){
	background: #f6f6f5;
}


.list-droplets__droplet--status span{
	width: 10px;
	height: 10px;
	display: inline-block;
	border-radius: 50%;
	background: #f6f6f5;
}

.list-droplets__droplet--name{
	width: 50%;
	text-align: left;
}

.list-droplets__droplet--ip{
	width: 20%;
	text-align: left;
}

.list-droplets__droplet--status{
	width: 10%;
	text-align: right;
}

.list-droplets__droplet--id{
	width: 20%;
	text-align: right;
}

.list-droplets__droplet--id a{
	background: #00b7d5;
	color: #fff !important;
	padding: 1rem;
	transition: all .2s;
	width: 200px;
	display: inline-block;
	text-align: center;
	font-size: 12px !important;
}

.list-droplets__droplet--id a:hover{
	background: #363839;
	text-decoration: none;
}

.list-droplets__droplet--status span.active{
	background: #01cd74;
}

.list-droplets__droplet--status span.off{
	background: #ff4e00;
}

.navigation{
	max-width: 1400px;
	margin: auto;
	padding: 25px;
}

.navigation a{
	background: #00b7d5;
	color: #fff !important;
	padding: 1rem;
	transition: all .2s;
	width: 200px;
	display: inline-block;
	text-align: center;
}

.navigation a:hover, .navigation a.active{
	background: #363839;
	text-decoration: none;
}


@media only screen and (max-width: 1024px) {
	.site-header{
		flex-direction: column;
		width: 100%;
	}

	h1{
		text-align: center;
	}

	/* .list-droplets__droplet--id{
		width: 100%;;
	} */

	/* .list-droplets__droplet--id button,
	.list-droplets__droplet--id a{
		margin-top: 10px;
		max-width: 100% !important;
		/* display: block;
		width: 100%; */
	} */

	/* .list-droplets__droplet--name{
		width: 100%;
		margin-bottom: 10px;
	} */

	.navigation a{
		width: auto;
	}

	/* .list-droplets__droplet{
		flex-direction: column;
	}
	.list-droplets__droplet--name,
	.list-droplets__droplet--ip{
		width: 100%;
		text-align: center;
	}
	 */

}