/*-------------------------------------------------------------------
/- Window
/------------------------------------------------------------------*/

#settingsWindow {}

/*-------------------------------------------------------------------
/- Settings Panel
/------------------------------------------------------------------*/

#settingsPanel {}

#settingsPanel > div {
	width: 100% !important;
	margin: 0;
}

/*-------------------------------------------------------------------
/- Header
/------------------------------------------------------------------*/

#settingsPanel-header {
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	padding: 20px;
	height: 90px;
	font-weight: 300;
	font-size: 28px;
	letter-spacing: 1px;
}

/*-------------------------------------------------------------------
/- Theme Toggle
/------------------------------------------------------------------*/

.switch-input {
  display: none;
}
.switch-label {
  position: relative;
  display: inline-block;
  min-width: 112px;
  cursor: pointer;
  font-weight: 500;
  text-align: left;
  margin: 16px;
  padding: 16px 0 16px 44px;
}
.switch-label:before, .switch-label:after {
  content: "";
  position: absolute;
  margin: 0;
  outline: 0;
  top: 50%;
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.switch-label:before {
  left: 1px;
  width: 34px;
  height: 14px;
  background-color: #9E9E9E;
  border-radius: 8px;
}
.switch-label:after {
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #FAFAFA;
  border-radius: 50%;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.14), 0 2px 2px 0 rgba(0, 0, 0, 0.098), 0 1px 5px 0 rgba(0, 0, 0, 0.084);
}
.switch-label .toggle--on {
  display: none;
}
.switch-label .toggle--off {
  display: inline-block;
}
.switch-input:checked + .switch-label:before {
  background-color: #caa5fa;
}
.switch-input:checked + .switch-label:after {
  background-color: #a769f6;
  -ms-transform: translate(80%, -50%);
  -webkit-transform: translate(80%, -50%);
  transform: translate(80%, -50%);
}
.switch-input:checked + .switch-label .toggle--on {
  display: inline-block;
}
.switch-input:checked + .switch-label .toggle--off {
  display: none;
}

/*-------------------------------------------------------------------
/- Theme Color Dropdown
/------------------------------------------------------------------*/

.themeDropdown {
	text-align: left;
}

.settingsSelect {
	background: none;
	outline: none;
}

.settingsSelect select {
	background: transparent;
	padding: 0; /* If you add too much padding here, the options won't show in IE */
	border: none;
	border-bottom: 1px solid rgba(255,255,255,0.5);
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 400;
	transition: all 0.3s;
}

.settingsSelect select option {
	color: #000000;
}

/*-------------------------------------------------------------------
/- Sortable
/------------------------------------------------------------------*/

.settingsPanel-sectionConfig {
	display: block;
	padding: 15px;
}

.sectionConfigLists {
	display: flex;
}

.settingsPanel-sectionConfig .instructions {
	display: block;
	width: 100%;
	padding: 0;
	padding-top: 10px;
	font-size: 12px;
	font-style: italic;
}

.sectionConfigDivider,
.sectionConfigActive,
.sectionConfigInactive {
	display: inline-block;
	padding: 10px;
	width: 100%;
}

#sectionConfigActiveList,
#sectionConfigInactiveList {
	min-height: 50%;
	background-color: rgba(0,0,0,0.1);
	padding: 5px;
}

.sectionConfig-title {
	display: block;
	width: 100%;
	text-align: left;
	margin: 10px;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: bold;
}

.sectionConfig-subtitle {
	font-size: 12px;
}

.sortable-item {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	align-content: center;
	height: 40px;
	margin: 5px;
	overflow: hidden;
	border-radius: 5px;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
	transition: 0.3s background, box-shadow;
	font-size: 10px;
	color: rgba(255,255,255,0.8);
}

.sortable-item-grabbed {
	box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.4);
}

.sortable-item .seriesIcon {
	display: flex;
	flex-grow: 0;
	height: 20px;
	width: 20px;
	margin-left: 10px;
	margin-right: 0;
	opacity: 0.4;
}

.sortable-item .name {
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	align-content: center;
	padding: 10px;
	padding-right: 0;
	text-align: left;
	flex-grow: 1;
}

.sortable-item .name hr {
	display: inline-block;
	height: 2px;
	width: 100%;
	border: none;
	color: rgba(255,255,255,0.2);
	background-color: rgba(255,255,255,0.2);
}

.sortable-item .handle {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	height: 40px;
	width: 40px;
	margin: 0;
	padding: 10px;
	cursor: grab;
}

.sortable-item .handle img {
	display: block;
	margin: 0;
	padding: 0;
	height: 100%;
	opacity: 0.5;
}

/*-------------------------------------------------------------------
/- Save/Reset Buttons
/------------------------------------------------------------------*/

.settingsPanel-buttonContainer {
	display: flex;
	padding: 20px;
	padding-top: 0;
}

#settings-resetButton,
#settings-saveButton {
	height: 40px;
	width: 50%;
	margin: 5px;
	padding: 10px;
}

#settings-resetButton img,
#settings-saveButton img {
	height: 80%;
	margin-left: 10px;
}

/*-------------------------------------------------------------------
/- Responsive Styling
/------------------------------------------------------------------*/

/*Very small phones (original iPhones, etc.)*/
@media only screen and (max-width : 400px) {
	.sortable-item {
		font-size: 10px;
	}
}

/*Extra small devices (portrait phones, less than 576px)*/
@media only screen and (max-width: 575px) {
	
}

/*Small devices (landscape phones, 576px and up)*/
@media only screen and (min-width: 576px) {
	.sortable-item .handle {
		width: 60px;
	}
}

/*Medium devices (tablets, 768px and up)*/
@media only screen and (min-width: 768px) {
	#settingsPanel {
		border-radius: 5px;
		max-width: 700px;
		min-height: 0;
	}
	#settingsPanel #settingsPanel-header {
		font-weight: 100;
		font-size: 35px;
	}
	.sectionConfigActive,
	.sectionConfigInactive {
		padding: 10px;
		width: 50%;
	}
	.sortable-item {
		font-size: 14px;
	}
}

/*Large devices (desktops, 992px and up)*/
@media only screen and (min-width: 992px) {
	
}

/*Extra large devices (large desktops, 1200px and up)*/
@media only screen and (min-width: 1200px) {
	
}

/*Extra large devices (extra large desktops, 1500px and up)*/
@media only screen and (min-width: 1500px) {
	
}