/*
https://dribbble.com/shots/2350297-Day-007-Settings-Daily-UI
*/
* {
  padding: 0;
  margin: 0;
  font-family: 'Lato', sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #9199a5;
}

.container {
  width: 360px;
  height: 600px;
  overflow: hidden;
}

.menu {
  list-style: none;
  background: #424c5a;
  display: flex;
  height: 72px;
  align-items: center;
  border-bottom: 1px solid #2c323a;
}

.menu-item {
  font-size: 2em;
  text-align: center;
  flex-basis: 25%;
  color: #5a6676;
  cursor: pointer;
}

.menu-item.active {
  position: relative;
  color: white;
}

.menu-item.active:after {
  content: '';
  position: absolute;
  width: 1em;
  height: 0;
  bottom: -11px;
  left: calc(50% - 0.5em);
  border: 1px solid #f7ab78;
}

.settings {
  padding: 25px;
  background: #424c5a;
  height: 400px;
  display: block;
  border-top: 1px solid #697280;
}

.setting {
  margin-bottom: 17px;
}

.setting .name {
  text-transform: uppercase;
  color: white;
  font-size: 12px;
}

.setting .info {
  color: #8a8b93;
  font-size: 12px;
  margin-top: 5px;
  width: 290px;
}

.setting .switch {
  float: right;
  margin-top: -10px;
}

.checkbox {
  display: inline-block;
  vertical-align: top;
}

.checkbox-label {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  padding-left: 10px;
}

.footer {
  background-color: #424c5a;
  text-align: center;
  height: 70px !important;
}

.button {
  margin-top: 11px;
  width: 85px;
  padding: 16px 0;
  color: white;
  text-transform: uppercase;
  border: 0;
  outline: none;
  cursor: pointer;
}

.button.save {
  background: #2f5082;
  margin-left: 10px;
}

.button.save:hover {
  background: #4c6890;
}

.button.cancel {
  background: #556070;
}

.button.cancel:hover {
  background: #8c96a5;
}

.button.clear {
  background: #c78152;
}

.button.clear:hover {
  background: #f7af80;
}

.button.DatabaseButton {
  background: #2f5082;
}

.button.DatabaseButton:hover {
  background: #446ba7;
}

.button.DatabaseButtonCancel {
  background: #c78152;
}

.button.DatabaseButtonCancel:hover {
  background: #da8e5a;
}

/* Controls */
/* Switch */
.switch {
  position: relative;
}

.switch label {
  width: 37px;
  height: 21px;
  position: absolute;
  background: #5a6676;
  top: 6px;
  left: -5px;
  border-radius: 50px;
}

.switch label:after {
  content: '';
  width: 13px;
  height: 13px;
  border-radius: 50px;
  position: absolute;
  top: 4px;
  left: 4px;
  background: white;
  transition: all 0.1s;
}

.switch input[type="checkbox"] {
  visibility: hidden;
}

.switch input[type="checkbox"]:checked+label {
  background: #f3a978;
}

.switch input[type="checkbox"]:checked+label:after {
  left: 20px;
}

/* Checkbox  */
.checkbox {
  width: 30px;
  height: 30px;
  background: #343f4c;
  position: relative;
}

.checkbox label {
  width: 28px;
  height: 28px;
  position: absolute;
  top: 1px;
  left: 1px;
}

.checkbox label:before {
  content: '';
  width: 9px;
  height: 5px;
  border: 3px solid #ffaf7b;
  position: absolute;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
  top: 8px;
  left: 8px;
  opacity: 0;
}

.checkbox input[type="checkbox"] {
  visibility: hidden;
}

.checkbox input[type="checkbox"]:checked+label:before {
  opacity: 1;
}

/* Slider */
.slider {
  width: 100%;
}

.ui-slider {
  appearance: none;
  /* margin-top: 5px; */
  -webkit-appearance: none;
  width: 305px;
  height: 6px;
  border-radius: 2px;
  outline: none;
  border: 0 !important;
  background: linear-gradient(to right, #4e6179 0%, #ffaf7a 54%, #ffaf7a 100%);
  margin-left: 5px;
}

.ui-slider-handle {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 2px;
  outline: none;
  border: 0;
  background: linear-gradient(to right, #4e6179 0%, #ffaf7a 54%, #ffaf7a 100%);
}

.fa-gear {
  background-image: url(ayarlar-disabled.png);
  width: 32px;
  height: 32px;
  display: inline-block;
  vertical-align: bottom;
}

.active>.fa-gear {
  background-image: url(ayarlar.png);
  width: 32px;
  height: 32px;
  display: inline-block;
  vertical-align: bottom;
}

.fa-ayar {
  background-image: url(genel-disabled.png);
  width: 32px;
  height: 32px;
  display: inline-block;
  vertical-align: bottom;
}

.active>.fa-ayar {
  background-image: url(genel.png);
  width: 32px;
  height: 32px;
  display: inline-block;
  vertical-align: bottom;
}

.fa-dashboard {
  background-image: url(dashboard-disabled.png);
  width: 32px;
  height: 32px;
  display: inline-block;
  vertical-align: bottom;
}

.active>.fa-kontrol {
  background-image: url(kontrol.png);
  width: 32px;
  height: 32px;
  display: inline-block;
  vertical-align: bottom;
}

.fa-kontrol {
  background-image: url(kontrol-disabled.png);
  width: 32px;
  height: 32px;
  display: inline-block;
  vertical-align: bottom;
}

.active>.fa-dashboard {
  background-image: url(dashboard.png);
  width: 32px;
  height: 32px;
  display: inline-block;
  vertical-align: bottom;
}

.form {
  width: 315px;
  margin-top: 5px;
  cursor: pointer;
}

.file-upload-wrapper {
  position: relative;
  width: 100%;
  height: 30px;
}

.file-upload-wrapper:after {
  content: attr(data-text);
  font-size: 13px;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  padding: 0px 15px;
  display: block;
  width: calc(100% - 40px);
  pointer-events: none;
  z-index: 20;
  height: 30px;
  line-height: 30px;
  color: #999;
  border-radius: 5px 10px 10px 5px;
  font-weight: 300;
}

.file-upload-wrapper:before {
  content: 'YUKLE';
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  height: 30px;
  background: #de9b6e;
  color: #ffffff;
  font-weight: 700;
  z-index: 25;
  font-size: 12px;
  line-height: 30px;
  padding: 0 15px;
  pointer-events: none;
  border-radius: 0 5px 5px 0;
}

.file-upload-wrapper:hover:before {
  background: #c78152;
}

.file-upload-wrapper input {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  height: 20px;
  margin: 0;
  padding: 0;
  display: block;
  cursor: pointer;
  width: 100%;
}

.txtKeyWordList {
  margin: 0;
  display: block;
  width: 100%;
  border-radius: 5px;
  margin-top: 5px;
  font-size: 13px;
  background: #fff;
  padding: 0px 10px;
  display: block;
  z-index: 20;
  height: 60px;
  color: #999;
  border-radius: 5px;
  font-weight: 300;
  resize: none;
}

:focus {
  outline: 0;
}

.cancelled {
  color: #ffffff;
  padding: 5px 10px 5px 10px;
  background-color: #dd4b39 !important;
  border-radius: 4px;
  font-size: 9px;
}

.started {
  color: #fff;
  padding: 5px 10px 5px 10px;
  background-color: #00a65a !important;
  border-radius: 4px;
  font-size: 9px;
}

.footer-line1 {
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, #ffffff00 0%, #2c323a 50%, #ffffff00 100%);
}

.footer-line2 {
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, #ffffff00 0%, #697280 50%, #ffffff00 100%);
}

.applogs p {
  display: inline-block;
}

.applogs i {
  margin-top: 5px;
  font-size: 9px;
  text-align: right;
  float: right;
}

.hatavar {
  background-color: #9e0606;
  padding: 2px 4px;
  border-radius: 2px;
  text-transform: capitalize;
  font-size: 9px;
  color: #fff;
}

.text-input {
  width: 100%;
  border-radius: 5px;
  margin-top: 5px;
  font-size: 13px;
  background: #fff;
  padding: 0px 10px;
  display: block;
  color: #999;
  border-radius: 5px;
  font-weight: 300;
  border: none;
  outline: none;
  height: 30px;
}

div#container {
  position: relative;
  left: 25%;
  top: 100px;
}

.bg-green {
  background-color: #00a65a !important;
}

.bg-green,
.bg-green-active {
  color: #fff !important;
}

.bg-red {
  height: 50px !important;
  background-color: #ce0000 !important;
  /* font-size: 10px; */
}

.bg-red,
.bg-red-active {
  color: #fff !important;
}

.bg-red>.info-box-icon {
  font-size: 23px;
  line-height: 50px;
  height: 50px;
}

.info-box {
  display: block;
  height: 75px;
  background: #fff;
  width: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  margin-bottom: 15px;
  font-size: 13px !important;
}

.info-box-icon {
  border-top-left-radius: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 2px;
  display: block;
  float: left;
  height: 75px;
  width: 90px;
  text-align: center;
  font-size: 40px;
  line-height: 75px;
  background: rgba(0, 0, 0, 0.2);
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.info-box-content {
  padding: 7px 10px;
  margin-left: 90px;
}

.info-box-text {
  text-transform: uppercase;
}

.progress-description,
.info-box-text {
  display: block;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.info-box .progress,
.info-box .progress .progress-bar {
  border-radius: 0;
}

.info-box .progress {
  background: rgba(0, 0, 0, 0.2);
  margin: 5px -10px 5px -10px;
  height: 2px;
}

.progress,
.progress>.progress-bar,
.progress .progress-bar,
.progress>.progress-bar .progress-bar {
  border-radius: 1px;
}

.progress,
.progress>.progress-bar {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.progress {
  overflow: hidden;
}

.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #fbff00;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  -webkit-transition: width .6s ease;
  -o-transition: width .6s ease;
  transition: width .6s ease;
}

#divAyarlar>div:nth-child(6)>div.info>div.slider.ui-slider.ui-corner-all.ui-slider-horizontal.ui-widget.ui-widget-content>span {
  background-color: white;
  border-radius: 100%;
  margin-top: -5px;
  width: 20px;
  height: 20px;
}

#divAyarlar>div:nth-child(6)>div.info>div.slider.ui-slider.ui-corner-all.ui-slider-horizontal.ui-widget.ui-widget-content>span:active {
  background-color: #f3a978;
  border: 1px solid #ffffff;
}

.ChecBoxlar {
  width: 310px;
  display: block;
  float: left;
  margin-top: 10px;
}

.CheckBoxWrapper {
  float: left;
  width: 100px;
}

.CheckBoxWrapper:last-child {
  margin: 0 0px 20px 0;
}

.CheckBoxTitle {
  margin-top: 3px;
  margin-left: 13px;
  display: inline-block;
  color: white;
  /* margin-bottom: 5px; */
  position: absolute;
  /* float: right; */
  font-size: 12px;
}

.squaredThree {
  width: 70px;
  position: relative;
}

.squaredThree label {
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, #222222 0%, #45484d 100%);
  border-radius: 4px;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.4);
}

.squaredThree label:after {
  content: '';
  width: 9px;
  height: 5px;
  position: absolute;
  top: 4px;
  left: 4px;
  border: 3px solid #f5904d;
  border-top: none;
  border-right: none;
  background: transparent;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.squaredThree label:hover::after {
  opacity: 0.3;
}

.squaredThree input[type=checkbox] {
  visibility: hidden;
}

.squaredThree input[type=checkbox]:checked+label:after {
  opacity: 1;
}

#divAyarlar>div:nth-child(3)>div.info>div.slider.ui-slider.ui-corner-all.ui-slider-horizontal.ui-widget.ui-widget-content>span {
  background-color: white;
  border-radius: 100%;
  margin-top: -5px;
  width: 20px;
  height: 20px;
}

#divAyarlar>div:nth-child(3)>div.info>div.slider.ui-slider.ui-corner-all.ui-slider-horizontal.ui-widget.ui-widget-content>span:active {
  background-color: #f3a978;
  border: 1px solid #ffffff;
}