.occurrences_list{
	margin-top: 20px;
}

#occurrences_table{
	border: none;
}

#occurrences_table thead{
	font-size: 11px;
	color: #B9B8B8;
	letter-spacing: 0;
	line-height: 15px;
}

#occurrences_table thead th, table.dataTable thead td{
	border-bottom: 1px solid #EBEBEB;
}

#occurrences_table thead th{
	padding: 10px;
}

#occurrences_table tbody{
	font-size: 11px;
	color: #706B6B;
	letter-spacing: 0;
	line-height: 15px;
	border: none;
}

#occurrences_table tbody i{
	font-size: 18px;
	color: #B9B8B8;
	margin-left: 13.6px;
}

#occurrences_table tbody tr:hover td,
#occurrences_table tbody tr:hover th,
#occurrences_table tbody tr td,
#occurrences_table tbody tr th {
    background-color: white;
    cursor: pointer;
}

table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td{
	border-top: 1px solid #EBEBEB;
}


#occurrences_table tbody .icons-container{
	display: inline-block;
}

#occurrences_table tbody .filter-button{
	margin: 0px !important;
	cursor: default;
}


#occurrences_table tbody .occurrence-details, #occurrences_table tbody .occurrence-details table tr th, #occurrences_table tbody .occurrence-details table tr td{
	background: #F2F4F6;
}

#occurrences_table tbody .occurrence-details table tr th{
	font-size: 11px;
	color: #B9B8B8;
	letter-spacing: 0;
	line-height: 15px;
	border: none;
	padding-bottom: 4px;
}

#occurrences_table tbody .occurrence-details table tr td{
	font-size: 11px;
	color: #706B6B;
	letter-spacing: 0;
	line-height: 15px;
	border: none;
	padding-top: 0px;
}

#occurrences_table tbody .occurrence-details table{
	margin-bottom: 8px;
}

.mobile_content{
	display: none;
}



/************************* CUSTOM SELECT *************************/
.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: 100%;
  height: 36px;
  font-size: 13px;
  color: #706B6B;
  letter-spacing: 0;
  line-height: 15px;

}

.select-styled
{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: white;
  padding: 8px 15px;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  border: 1px solid rgba(235,235,235,1);
  border-radius: 4px;
  margin-top: 4px;
}
.select-styled:after {
  content: "";
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-color: #B9B8B8 transparent transparent transparent;
  position: absolute;
  top: 13px;
  right: 10px;
}
select-styled:active:after, .select-styled.active:after {
  top: 6px;
  border-color: transparent transparent #B9B8B8 transparent;
}

.select-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: rgba(235,235,235,1);
  border-radius: 4px;
}
.select-options li {
  margin: 0;
  padding: 12px 0;
  text-indent: 15px;
  border: 1px solid rgba(235,235,235,1);
  -moz-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;

  font-size: 13px;
  color: #706B6B;
  letter-spacing: 0;
  line-height: 15px;

  border-radius: 4px;
}
.select-options li[rel="hide"] {
  display: none;
}



/**************************** PAGINATION ****************************/
.pagination-area{
	margin-top: 25px;
	padding: 0px;
}

.pagination-area .dataTables_paginate>a, .pagination-area .dataTables_paginate span a{
	background-color: rgba(255,255,255,1);
	padding: 10px 8px;
	border-right: 1px solid #EBEBEB;
	cursor: pointer;
	text-decoration: none !important;
	outline: none;
}
.pagination-area .dataTables_paginate span a{
	padding: 10px 15px;
}

.pagination-area .dataTables_paginate>a:first-child{
	border-radius: 4px 0px 0px 4px;
}
.pagination-area .dataTables_paginate>a:last-child{
	border-radius: 0px 4px 4px 0px;
	border-right: none;
}

.pagination-area a i{
	vertical-align: middle;
	font-size: 18px;
}

.paginate_button.current{
	background-color: rgba(49,129,238,1) !important;
	color: white;
}



/**************************** CUSTOM CHECKBOX ****************************/
/* Customize the label (the container) */
.custom-checkbox {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 20px;
	height: 20px;
  width: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.custom-checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.custom-checkbox input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.custom-checkbox .checkmark:after {
  left: 8px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}



/********************* DELETE MULTIPLE OCCURRENCES *********************/
.delete-multiple-button{
	position: absolute;
	bottom: 36px;
	right: 41px;
	display: none;
	padding: 20px 22px;
	border-radius: 50%;
	background-color: #EE4445;
	color: white;
	cursor: pointer;
	z-index: 10;
	box-shadow: 4px 4px 16px 8px rgba(0,0,0,0.2);
}



/********************* RESPONSIVE *********************/
@media screen and (max-width: 812px) {
	.occurrences_list{
		padding: 10px;
	}
	#occurrences_table thead{
		display: none;
	}
	.pagination-area{
		margin-bottom: 20px;
	}

	.desktop_content{
		display: none !important;
	}
	.mobile_content{
		display: inline-block !important;
		max-width: 100%;
		font-size: 11px;
		letter-spacing: 0;
		line-height: 15px;
	}
	.mobile_content .col-xs-12{
		padding: 0px;
	}
	.mobile_content .col-xs-4{
		color: #B9B8B8;
		padding: 0px;
	}
	.mobile_content .col-xs-8{
		padding-right: 0px;
	}

	tbody tr td:nth-child(2), tbody tr td:nth-child(3), tbody tr td:nth-child(4), tbody tr td:nth-child(5), tbody tr td:nth-child(6), tbody tr td:nth-child(7){
		display: none !important;
	}

	.delete-multiple-button{
		bottom: 60px;
		right: 20px;
	}
}
