@import url('https://fonts.googleapis.com/css?family=Roboto:400,500');
@import url(https://fonts.googleapis.com/css?family=Hind+Siliguri:400,700&subset=bengali);
@import url('form.css');
@import url('datatable.css');
@import url('container-header.css');

* {
	box-sizing: border-box;
	outline: none;
}

:-moz-any-link:focus {
	outline: none;
}

::placeholder {
	color: #999;
}

button:focus {
	border: none;
	outline: none;
}

textarea {
	resize: none;
}

body {
	margin: 0;
	font-family: 'Roboto', 'Hind Siliguri', sans-serif;
	line-height: 1.4;
	cursor: default;
}

body * {
	scrollbar-width: thin;
}

wrapper,
header,
container,
content,
footer,
inner-container {
	display: block;
}

inner-container {
	margin-left: 120px;
	width: 1000px;
}

content {
	width: 100%;
}

header {
	color: #fff;
	background: #690102;
	padding: 15px;
	height: 60px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 900000;
}

header h1 {
	margin: 0;
	color: #fff;
	font-size: 26px;
	font-weight: normal;
}

container {
	width: calc(1140px);
	width: 1130px;
	margin: 0 auto;
	margin-top: 60px;
	/**/
	/*margin-left:210px;*/

	background: #ccc;
	background: #fff;
	/*height:calc(100vh - 60px);
	overflow-y:auto;*/
	padding: 30px 0 60px 0;
}


input,
textarea,
select {
	font: inherit;
	padding: 6px 8px;
	font-size: 15px;
	border: 1px solid #ccc;
	border-radius: 2px;
	transition: all 0.5s;
	background: #fff;
	box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.08);
	box-sizing: border-box;
}

textarea {
	width: 100%;
}

input:focus,
textarea:focus,
select:focus {
	border: 1px solid #888;
}

.primary-btn,
.primary-btn-small,
.secondary-btn,
.secondary-btn-small {
	display: inline-block;
	font-family: inherit;
	font-size: 14px;
	padding: 8px 22px;
	border: none;
	border-radius: 3px;
	cursor: pointer;
	line-height: 1.2;
	box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.2);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-decoration: none;
}

.secondary-btn,
.secondary-btn-small {
	background: #e8e8e8;
	color: #555;
}

.primary-btn,
.primary-btn-small {
	background: #eb5424;
	color: #fff;
}

.primary-btn-small,
.secondary-btn-small {
	font-size: 13px;
	padding: 6px 15px;
}

.primary-btn:hover,
.primary-btn-small:hover,
.secondary-btn:hover,
.secondary-btn-small:hover {
	box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.primary-btn:active,
.primary-btn-small:active,
.secondary-btn:active,
.secondary-btn-small:active {
	box-shadow: inset 0 -38px 1px rgba(0, 0, 0, 0.1);
}

.primary-btn:disabled,
.primary-btn-small:disabled,
.secondary-btn:disabled,
.secondary-btn-small:disabled {
	background: #e8e8e8;
	color: #999;
	box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 800px) {

	.primary-btn,
	.secondary-btn {
		padding: 8px 16px;
	}

	.primary-btn-small,
	.secondary-btn-small {
		padding: 6px 12px;
	}
}

input-permalink {
	display: table;
	width: 100%;
	font: inherit;
	padding: 6px 8px;
	font-size: 15px;
	border: 1px solid #ccc;
	border-radius: 2px;
	transition: all 0.5s;
	background: #fff;
	box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.08);
	box-sizing: border-box;
}

input-permalink span,
input-permalink input {
	display: table-cell;
	white-space: nowrap;
}

input-permalink input {
	border: 1px solid #fff;
	padding: 0 5px;
	box-shadow: none;
	transition: none;
}

input-permalink input:hover,
input-permalink input:focus {
	border: 1px solid #fff;
}

input-permalink:active,
input-permalink:focus-within {
	border: 1px solid #888
}

input-permalink span {
	color: #4d555c;
	padding: 0 5px;
	background: #f5f5f5;
	border-radius: 2px;
	margin: 0 5px;
	width: 1%;
}

ul.buttons {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0px;
}

ul.buttons>li {
	display: inline-block;
	margin-left: 12px;
	font-size: 15px;
}

ul.buttons>li:first-child {
	margin-left: 0;
}