body {
	background-color: #f5f5f5 !important;
}

.wrapper {
    width: 1300px;
    margin: 0 auto;
}

.segment {
    position: relative;
    background: #fff;
    -webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, .15);
    box-shadow: 0 1px 2px 0 rgba(34, 36, 38, .15);
    padding: 15px 10px;
    border-radius: 5px;
    border: 1px solid rgba(34, 36, 38, .15);
    margin-bottom: 20px;
}

.segment-label {
    position: relative;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    border-radius: 0 .28571429rem .28571429rem 0;
    border: 0 solid transparent;

    display: inline-block;
    line-height: 1;
    vertical-align: baseline;
    margin: 0 .14285714em;
    background-color: #e8e8e8;
    background-image: none;
    padding: .5833em .833em;
    color: #fff;
    text-transform: none;
    font-weight: 700;
    font-size: 16px;

    left: calc(-1rem - 1.3em);
    padding-left: calc(1rem + 1.5em);
    padding-right: 1.5em;
}

.segment-label:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 0;
    background-color: transparent;
    border-style: solid;
    border-width: 0 1.2em 1.2em 0;
    border-color: transparent;
    border-right-color: inherit;
    width: 0;
    height: 0;
}

.segment-blue {
    background-color: #2185d0;
    border-color: #1a69a4;
}

.segment-teal {
    background-color: #00b5ad;
    border-color: #00827c;
}

.segment-label .fa {
    position: relative;
    font-size: 13px;
    top: -5px;
}

.segment-label .fa:hover {
    color: #c86f6f;
}


/* select technique start */

.queryForm {
	margin: 20px 15px 15px;
}

.queryForm label {
	margin-bottom: 8px;
}

/* #performIntegration {
	margin-left: 15px;
} */

.custom-input {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: calc(100% - 30px);
}

.descriptionForm {
	margin: 0 30px 15px;
	font-size: 16px;
}

.descriptionForm .panel-body {
	line-height: 1.6;
}
/* select technique end */


/* idr table start*/
.tableCard {
	position: relative;
	background-color: #fff;
	padding-top: 10px;
}

.tableCard p {
	position: absolute;
	top: 0;
	left: 0;
	color: rgb(107, 98, 98);
	width: 100%;
	font-size: 2rem;
	line-height: 1.4em;
	font-weight: normal;
	margin-top: 0px;
	margin-bottom: 0px;
	padding: 1rem;
}

.tableCard p .fa {
	font-size: 16px;
}


table.dataTable {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	/* border-bottom: 1px solid #ddd; */
}

.table {
	/* table-layout: fixed; */
	word-break: break-all;
	font-size: 14px;
}

.table thead {
	background-color: rgb(222, 221, 221);
}

.table thead .fa {
	position: relative;
	font-size: 11px;
	top: -5px;
}

.table thead .fa:hover {
	color: #c86f6f;
}

.table>tbody>tr th,
.table>tbody>tr td {
	border: 0 solid transparent;
}

.table>tbody>tr:nth-child(odd)>td,
.table>tbody>tr:nth-child(odd)>th {
	background-color: rgb(236, 243, 246);
}

.table>tbody>tr:nth-child(even)>td,
.table>tbody>tr:nth-child(even)>th {
	background-color: #fff;
}

.tableCard .row:nth-child(1) {
	padding: 0px 55px 5px 0px;
}

.tableCard .row:nth-child(3) {
	padding: 10px 10px 5px;
}


.badge-container {
	display: flex;
	align-items: center;
	gap: 8px;
}

.badge {
	border-radius: 8px;
	padding: 3px 10px;
	color: #fff;
	font-size: 13px;
	font-weight: 400;
	display: inline-block;
}

.badge-orange {
	background-color: #D5A350;
}

.badge-green {
	background-color: #5cb85c;
}

.jbrowse {
	border-radius: 4px;
	border: 0;
	padding: 0px 10px;
	color: #fff;
	font-size: 14px;
	background-color: #964B29;
}

.jbrowse:hover {
	background-color: #A8685D;
}

/* idr table end*/


/* downlaod btn start*/

.Btn {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 33px;
	height: 30px;
	border: 1px solid rgb(204, 204, 204);
	border-radius: 4px;
	background-color: rgb(255, 255, 255);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition-duration: 0.3s;
	/* box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.11); */
}

.svgIcon {
	fill: rgb(107, 98, 98);
}

.icon2 {
	width: 18px;
	height: 5px;
	border-bottom: 2px solid rgb(107, 98, 98);
	border-left: 2px solid rgb(107, 98, 98);
	border-right: 2px solid rgb(107, 98, 98);
}

.Btn:hover {
	background-color: #ededed;
	transition-duration: 0.3s;
}

.Btn:hover .icon2 {
	border-bottom: 2px solid #333;
	border-left: 2px solid #333;
	border-right: 2px solid #333;
}

.Btn:hover .svgIcon {
	fill: #333;
	animation: slide-in-top 1s linear infinite;
}

@keyframes slide-in-top {
	0% {
		transform: translateY(-10px);
		opacity: 0;
	}

	100% {
		transform: translateY(0px);
		opacity: 1;
	}
}

/* downlaod btn end*/