    body {
		font-family: 'Oswald', sans-serif !important;
		background-color: #4492f4 !important;
	}
	
	.selectize-dropdown-content {
	    padding: 0px 10px 0px 10px !important;
	    width: 100% !important;
	}

	.selectize-dropdown {
	  width: auto !important;
	}

	.modal-backdrop {
	    visibility: hidden !important;
	}
	.modal.in {
	    background-color: rgba(0,0,0,0.5);
	}

	.form-required-error {
		border-color: red !important;
    		border-width: thick !important;
	}

	.source-title{
		font-family: 'Anton', sans-serif;
		color: #337ab7;
	}
	
	.display-title{
		font-family: 'Anton', sans-serif;
		color: #000000;
	}

	.center-block {
	  display: block;
	  margin-right: auto;
	  margin-left: auto;
	}

	.btn:focus {
	  outline: none !important;
	}

	.vcenter {
	    display: inline-block;
  		vertical-align: middle;
  		float: none;
	}
	
	.white-shadowed {
	    -webkit-filter: drop-shadow(5px 5px 5px #ffffff);
  		filter: drop-shadow(5px 5px 5px #ffffff);
	}
	
	.black-shadowed {
	    -webkit-filter: drop-shadow(5px 5px 5px #222);
  		filter: drop-shadow(5px 5px 5px #222);
	}
	
	@media (max-width: 991px) {
	  .btn-group.my-btn-group-responsive > .btn {
	    display: block;
	    width: 100%;
	  }
	  
	  /* making the border-radius correct */
	  .btn-group.my-btn-group-responsive > .btn:first-child {
	    border-radius: 6px 6px 0 0;
	  }
	  .btn-group.my-btn-group-responsive > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
	    border-top-right-radius: 6px;
	  }
	  .btn-group.my-btn-group-responsive > .btn:last-child:not(:first-child) {
	    border-radius: 0 0 6px 6px;
	  }
	  
	  /* fixing margin */
	  .btn-group.my-btn-group-responsive .btn + .btn {
	    margin-left: 0;
	  }
	  
	}
	
	/* Customize the label (the container) */
.check-box-container {
  display: table;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.check-box-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 30px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.check-box-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.check-box-container 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 */
.check-box-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.check-box-container .checkmark:after {
	left: 7px;
	top: 1px;
	width: 15px;
	height: 20px;
	border: solid white;
	border-width: 0 6px 6px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}