/* // BASE
	// - - - - - - - - - - - - - - */

html {
  height: 100%;
}

* {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100%;
	background-color: #fff;
	font-size: 14px;
	margin: 0;
	padding: 0;
	font-family: 'OpenSans', sans-serif;
	font-weight: 400;
	line-height: 120%;
	-ms-overflow-style: scrollbar;
	-webkit-app-region: drag;

}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
	font-family: 'Catamaran', sans-serif;
	font-weight: 900;
	line-height: 120%;
	margin: 0;
	margin-bottom: 5px;
	-webkit-user-select: none;
	cursor: default;
}

h1, .h1 {
	font-size: 26px;
}

h2, .h2 {
	font-size: 16px;
}

h3, .h3 {
	font-size: 16px;
	font-weight: 700;
}

.minimizebtn{
   position:absolute;
   top: 0px;
   right: 40px;
   padding: 10px;
   -webkit-app-region: no-drag;
   transition: all .24s ease-in-out;
   font-size: 12px;
   cursor: pointer;
}

.minimizebtn:hover {
	/*transform: scale(1.5);*/
	opacity: .5;
	-webkit-app-region: no-drag;
}

.close-btn{
   position:absolute;
   top: 0px;
   right: 7px;
   padding :10px;
   -webkit-app-region: no-drag;
   transition: all .24s ease-in-out;
   cursor: pointer;
}

.close-btn:hover {
	/*transform: scale(1.4);*/
	opacity: .5;
	-webkit-app-region: no-drag;
}

.row::before, .row::after {
	content: '';
	display: table;
	clear: both;
}


img {
	display: inline-block;
}

#global {
	position: relative;
	width: 100%;
    height: 100vh;
	overflow: auto;
	background-color: #f8f8f8;
}

a {
	transition: all .24s ease-in-out;
}

.button {
	display: inline-block;
	padding: 6px 12px;
	text-transform: uppercase;
	font-size: 12px;
	transition: all .24s ease-in-out;
	background-color: #eeeeee;
	background-color: rgba(238,238,238, .0);
	border-radius: 2px;
	cursor: pointer;
	-webkit-app-region: no-drag;
	-webkit-user-select: none;
}

.button:hover {
	background-color: rgba(238,238,238, .95);
}

.button.red {
	color: #F64B4B;
	background-color: rgba(246,75,75, .0);
	-webkit-app-region: no-drag;
}

.button.red:hover {
	background-color: rgba(246,75,75, .2);
}

.dsp-table {
	display: table;
	width: 100%;
	height: 100%;
	user-select: none;
}

.dsp-table-row {
	display: table-row;
}

.dsp-cell {
	display: table-cell;
	-webkit-app-region: no-drag;
	cursor: default;
}

.dsp-cell-choice {
	display: table-cell;
	-webkit-app-region: no-drag;
	border-radius: 15px;
	cursor: pointer;
	padding-left: 12px;
}

.dsp-cell.middle {
	vertical-align: middle;
	-webkit-app-region: no-drag;
}

/*
.dsp-cell-choice:hover {
	background-color: rgba(238,238,238, .95);
	-webkit-app-region: no-drag;
}
*/

.show-for-sr {
	border: 0;
	clip: rect(0,0,0,0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px
}

.hide {
	display: none;
}

.visible {
	display: block;
}



/* // STRUCTURE
	// - - - - - - - - - - - - - - */

#global-left {
	position: absolute;
	left: 0;
	top: 0;
	width: 30px;
	height: 100vh;
	background-color: #34323F;
	color: #fff;
	padding: 20px;
	overflow: hidden;
	overflow-y: auto;
	z-index: 100;
	transition: all .24s ease-in-out;
	overflow: auto;
}

#global-right {
	position: relative;
	color: #000;
	padding: 40px;
	padding-left: calc(30px + 40px);
	transition: all .24s ease-in-out;
	overflow: hidden;
	background-color: #f8f8f8;
}

#global-left .statelist, #global-left .flaginfos {
	opacity: 0;
}

#main {
	position: relative;
	overflow: visible;
	/*height: 550;*/
}

#global.connected #global-left {
	width: 240px;
	opacity: 1;
}

#global.connected #global-right {
	padding-left: calc(240px + 40px);
}

#global.connected #global-left .statelist, #global.connected #global-left .flaginfos {
	opacity: 1;
	transition: opacity .24s ease-in-out;
}

/* // Statuts équipe
	// - - - - - - - - - - - - - - */

.statelist-list {
	list-style: none;
	margin: 0;
	padding: 0;
	-webkit-app-region: no-drag;
}

.statelist-user {
    display: block;
    margin: 5px 0;
    /* background-color: red; */
    border-radius: 13px 0px 0px 13px;
    -webkit-app-region: no-drag;
    width: fit-content;
}

.statelist-user.absentstatus .statelist-user-thumbbox {
	background-color: #B4B4B4;
	border-color: #B4B4B4;
}
.statelist-user.verybusystatus .statelist-user-thumbbox {
	background-color: #F64B4B;
	border-color: #F64B4B;
}
.statelist-user.availablestatus .statelist-user-thumbbox {
	 background-color: #96C85F;
	 border-color: #96C85F;
}
.statelist-user.meetingphonestatus .statelist-user-thumbbox {
	 background-color: #4A90E2;
	 border-color: #4A90E2;
}
.statelist-user.busystatus .statelist-user-thumbbox {
	 background-color: #F4E30F;
	 border-color: #F4E30F;
}
.statelist-user.breakstatus .statelist-user-thumbbox {
	 background-color: #53E0E8;
	 border-color: #53E0E8;
}
.statelist-user.meetingstatus .statelist-user-thumbbox {
	 background-color: #E272D5;
	 border-color: #E272D5;
}

.statelist-user:hover .statelist-user-thumb {
	transform: translateY(-50%) scale(1.42);
}

.statelist-user-txt {
	transition: all .24s ease-in-out;
}

.statelist-user:hover .statelist-user-txt {
	transform: translateX(4px);
}

.statelist-user-name a {
	transition: all .24s ease-in-out;
}

.statelist-user-name a:hover {
	opacity: .44;
}

.statelist-user-box {
	position: relative;
	padding-left: calc(40px + 10px);
	height: 24px;
	margin-right: 10px;
}

.statelist-user-thumbbox {
	position: absolute;
	width: 40px;
	height: 20px;
	top: 50%;
	transform: translateY(-50%);
	left: 2px;
	text-align: center;
	border-radius: 1000px;
	border: solid 1px #fff;
}

.statelist-user-thumbbox:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 25%;
	transform: translateY(-50%) translateX(50%);
	width: 6px;
	height: 6px;
	border-radius: 1000px;
	background-color: rgba(0,0,0, .18);
}

.with-phone .statelist-user-box {
	padding-left: calc(56px + 10px);
}

.with-phone .statelist-user-thumbbox {
	width: 56px;
}

.with-phone .statelist-user-thumbbox:before {
	display: none;
}

.statelist-user-phone {
	position: relative;
	top: 50%;
	padding-right: 8px;
	transform: translateY(-50%);
	display: block;
	width: 100%;
	text-align: right;
	font-size: 12px;
	font-weight: 700;
	line-height: 100%;
	color: rgba(0,0,0, .60);
}


.statelist-user-thumb img {
	display: block;
	border: none;
	width: 100%;
	transition: all .24s ease-in-out;
}

.statelist-user-thumb {
	position: absolute;
	display: block;
	width: 20px;
	height: 20px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 1000px;
	overflow: hidden;
	border: solid 1px #fff;
	z-index: 5;
	transition: all .24s ease-in-out;
}

.statelist-user-dot {
	display: block;
	position: absolute;
	right: -1px;
	bottom: -1px;
	width: 9px;
	height: 9px;
	border-radius: 1000px;
	border: solid 1px #fff;
	z-index: 20;
	background-color: #B4B4B4;
}

.statelist-user-name {
	font-weight: 700;
}

.statelist-user-name a {
	text-decoration: none;
	color: #fff;
}

.statelist-user-status {
	display: inline-block;
	vertical-align: middle;
	padding: 2px 4px;
	padding-bottom: 1px;
	border-radius: 2px;
	background-color: #B4B4B4;
	color: #fff;
	text-transform: uppercase;
	font-size: 10px;
	font-weight: bold;
	margin-left: 4px;
}

.statelist-user.absentstatus .statelist-user-dot,
.statelist-user.absentstatus .statelist-user-status {
	background-color: #B4B4B4;
}

.statelist-user.verybusystatus .statelist-user-dot,
.statelist-user.verybusystatus .statelist-user-status {
	background-color: #F64B4B;
}

.statelist-user.availablestatus .statelist-user-dot,
.statelist-user.availablestatus .statelist-user-status {
	background-color: #96C85F;
}

.statelist-user.meetingphonestatus .statelist-user-dot,
.statelist-user.meetingphonestatus .statelist-user-status {
	background-color: #4A90E2;
}

.statelist-user.busystatus .statelist-user-dot,
.statelist-user.busystatus .statelist-user-status {
	background-color: #F4E30F;
}

.statelist-user.breakstatus .statelist-user-dot,
.statelist-user.breakstatus .statelist-user-status {
	background-color: #53E0E8;
}

.statelist-user.meetingstatus .statelist-user-dot,
.statelist-user.meetingstatus .statelist-user-status {
	background-color: #E272D5;
}


/* // MAIN :
	// - - - - - - - - - - - - - - */
.content-main{
	position: relative;
	z-index: 1;
	min-width: 340px;
}

/* // MAIN : header
	// - - - - - - - - - - - - - - */
.headermain {
	position: relative;
	z-index: 5;
}

.headermain-title {
	margin-bottom: 25px;
}


/* // Main : connexion utilisateur
	// - - - - - - - - - - - - - - */
.userconnect {
	display: none;
	position: relative;
	background-color: transparent;
	width: 100%;
	max-width: 600px;
}

.userconnect.active {
	display: block;
	transition: opacity .24s ease-in-out, transform 0s ease-in-out 0s;
}

.userconnect-title {
	margin-bottom: 25px;
}

.userconnect-form-col {
	width: 50%;
	float: left;
}

.tad-box{
	padding-left: 10px;
}

.usermenu-txt-tad {
	position: relative;
    margin-left: 35px;
}

.userconnect-form-col:first-child {
	padding-right: 20px;
}

.userconnect-form-line {
	display: block;
	margin-bottom: 16px;
}

.userconnect-form-label {
	display: inline-block;
	position: relative;
	padding-top: 16px;
	width: 100%;
}

.userconnect-form-label-txt {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	text-transform: uppercase;
	color: #B4B4B4;
	font-weight: 700;
}

.userconnect-form-input {
	display: block;
	height: 32px;
	border: none;
	border-radius: 2px;
	padding: 0 12px;
	border: solid 1px rgba(0,0,0, .2);
	width: 100%;
	-webkit-app-region: no-drag;
}

.userconnect-form-input:focus {
	border-color: #4A90E2;
	outline: none;
}

.userconnect-form-btn {
	border: none;
	outline: none;
	border-radius: 2px;
	font-weight: bold;
	padding: 12px 32px;
	background-color: #4A90E2;
	color: #fff;
}

.userconnect-form-btn:hover {
	background-color: rgba(0,0,0, .6);
}



/* // MAIN : user infos
	// - - - - - - - - - - - - - - */
.userinfos {
	position: relative;
	z-index: 5;
}

.userinfos-title-name.absentstatus { color: #B4B4B4; }
.userinfos-title-name.verybusystatus { color: #F64B4B; }
.userinfos-title-name.availablestatus { color: #96C85F; }
.userinfos-title-name.meetingphonestatus { color: #4A90E2; }
.userinfos-title-name.busystatus { color: #F4E30F; }
.userinfos-title-name.breakstatus { color: #53E0E8; }
.userinfos-title-name.meetingstatus { color: #E272D5; }


.usermenu-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}

.usermenu-box {
	display: inline-block;
	position: relative;
	padding: 5px 10px;
	padding-left: 30px;
	margin: 4px;
	text-transform: uppercase;
	font-family: 'Catamaran', sans-serif;
	cursor: pointer;
	color: #B4B4B4;
	transition: all .24s ease-in-out;
}

.usermenu-item:first-child .usermenu-box {
	margin-left: 0;
	-webkit-app-region: no-drag;
}

#disconnect {
	color: #F64B4B;
}

.usermenu-ico {
	position: absolute;
	display: inline-block;
	font-size: 13px;
	margin: 0;
	top: 50%;
	left: 12px;
	margin-top: calc(-13px / 2);
}

.usermenu-info-bad {
	margin-left: 40px;
}


/* // MAIN : choix statut
	// - - - - - - - - - - - - - - */

.statechoice {
	position: relative;
}

.statechoice-list {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 11px;
}

.statechoice-item {
	padding: 8px 0;
}

.statechoice-box {
	position: relative;
	display: block;
	width: 360px;
	height: 48px;
	padding: 10px 0;
	padding-left: calc(44px + 10px);
	border-radius: 1000px 0 0 1000px;
	transition: all .24s ease-in-out;
	cursor: pointer;
	background: linear-gradient(to right, #ffffff, #f8f8f8);
}

.statechoice-content {
	cursor: pointer;
	display: block;
	transition: all .24s ease-in-out;
}

/*
.statechoice-box.absentstatus { background-color: rgba(180, 180, 180, 0.200); }
.statechoice-box.verybusystatus { background-color: rgba(246, 75, 75, 0.200); }
.statechoice-box.availablestatus { background-color: rgba(149, 200, 95, 0.200); }
.statechoice-box.meetingphonestatus { background-color: rgba(74, 145, 226, 0.200); }
.statechoice-box.busystatus { background-color: rgba(244, 229, 15, 0.200); }
.statechoice-box.breakstatus { background-color: rgba(83, 225, 232, 0.200); }
.statechoice-box.meetingstatus { background-color: rgba(226, 114, 213, 0.200); }
*/

.statechoice-box:hover {
	cursor: pointer;
}

.statechoice-box:hover .statechoice-content {
	opacity: .75;
	transform: translateX(4px);
	cursor: pointer;
}

.statechoice-box:hover .statechoice-color {
	opacity: .86;
	border: solid 1px rgba(0,0,0, .4);
}


.statechoice-color {
	position: absolute;
	width: 44px;
	height: 44px;
	border-radius: 1000px;
	overflow: hidden;
	left: 2px;
	top: 50%;
	margin-top: calc(-44px / 2);
	background-color: #B4B4B4;
	border: solid 1px transparent;
	transition: all .24s ease-in-out;
	cursor: pointer;
	-webkit-app-region: no-drag;
	box-shadow: inset 0px 0px 2px 0px rgba(0,0,0,0.15);
}

.statechoice-color::before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: calc(-32px / 2);
	margin-left: calc(-32px / 2);
	width: 32px;
	height: 32px;
	border-radius: 1000px;
	background-color: rgba(0,0,0, .15);
	z-index: 1;
	opacity: 0;
	transition: all .24s ease-in-out;
	transform: scale(.6);
}

.statechoice-check {
	display: block;
	position: absolute;
	font-size: 12px;
	color: #fff;
	top: 50%;
	left: 50%;
	margin-top: calc(-12px / 2);
	margin-left: calc(-12px / 2);
	z-index: 25;
	opacity: 0;
	transition: all .24s ease-in-out;
	transform: scale(1.2);
}

.statechoice-color:hover {
	opacity: .86;
	border: solid 1px rgba(0,0,0, .4);
}

.statechoice-item.active .statechoice-check,
.statechoice-item.active .statechoice-color::before {
	transform: scale(1);
	opacity: 1;
}

.statechoice-item.active .statechoice-color:hover::before {
	transform: scale(.9);
}

.statechoice-title {
	display: block;
	font-weight: 700;
}

.statechoice-box.absentstatus .statechoice-color {
	background-color: #B4B4B4;
	/*border: solid 1px #B4B4B4;*/
}

.statechoice-box.verybusystatus .statechoice-color {
	background-color: #F64B4B;
	/*border: solid 1px #F64B4B;*/
}

.statechoice-box.availablestatus .statechoice-color {
	background-color: #96C85F;
	/*border: solid 1px #96C85F;*/
}

.statechoice-box.meetingphonestatus .statechoice-color {
	background-color: #4A90E2;
	/*border: solid 1px #4A90E2;*/
}

.statechoice-box.busystatus .statechoice-color {
	background-color: #F4E30F;
	/*border: solid 1px #F4E30F;*/
}

.statechoice-box.breakstatus .statechoice-color {
	background-color: #53E0E8;
	/*border: solid 1px #53E0E8;*/
}

.statechoice-box.meetingstatus .statechoice-color {
	background-color: #E272D5;
	/*border: solid 1px #E272D5;*/
}


.flaginfos {
	margin: 5px 0;
	font-style: italic;
	opacity: .5;
	position: fixed;
	bottom:0%;
}

.remote-work {
	font-size: 9px;
	position: absolute;
	display: inline-block;
	width: 30px;
	height: 17px;
	border-radius: 1000px;
	overflow: hidden;
	border: solid 1px #fff;
	z-index: 5;
	text-align: center;
	margin-left: 0.25rem;
	line-height: 1rem;
}
/*
.tad:hover {
	background-color: #fff;
	color: #000;
}
*/
.tad.hide {
	visibility: hidden;
}


/* The switch - the box around the slider */
.switch {
	position: absolute;
	margin-top: -2px;
	display: inline-block;
	width: 30px;
	height: 18px;
  }

  /* 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: 10px;
	width: 10px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
  }

  input:checked + .slider {
	background-color: #2196F3;
  }


  input:checked + .slider + {
	background-color: #2196F3;
  }

	input:checked + .slider.absentstatus { background-color: #B4B4B4; }
	input:checked + .slider.verybusystatus { background-color: #F64B4B; }
	input:checked + .slider.availablestatus { background-color: #96C85F; }
	input:checked + .slider.meetingphonestatus { background-color: #4A90E2; }
	input:checked + .slider.busystatus { background-color: #F4E30F; }
	input:checked + .slider.breakstatus { background-color: #53E0E8; }
	input:checked + .slider.meetingstatus { background-color: #E272D5; }


  input:focus + .slider {
	box-shadow: 0 0 1px #2196F3;
  }

  input:checked + .slider:before {
	-webkit-transform: translateX(12px);
	-ms-transform: translateX(12px);
	transform: translateX(12px);
  }

  /* Rounded sliders */
  .slider.round {
	border-radius: 34px;
  }

  .slider.round:before {
	border-radius: 50%;
  }

.phones-switch-wrapper{
	margin-top: 20px;
}



.ihaveaquestion {
	font-size: 10px;
	position: absolute;
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 100%;
	overflow: hidden;
	border: solid 1px #fff;
	z-index: 5;
	text-align: center;
	margin-left: 0.25rem;
	line-height: 1rem;
	cursor: pointer;
	margin-left: 15px;
}
.ihaveaquestion:hover {
	background-color: #fff;
	color: #000;
}
.ihaveaquestion.hide {
	position: absolute;
	display: inline-block;
	visibility: hidden;
	width: 20px;
	height: 20px;
	border-radius: 100%;
	overflow: hidden;
	border: solid 1px #fff;
	z-index: 5;
	text-align: center;
	margin-left: 0.25rem;
	line-height: 1rem;
	cursor: pointer;
}

.ihaveaquestion.time {
	background-color: #34323F;
	color: #fff;
	cursor: default;
}

.ihaveaquestion.time:hover {
	background-color: #34323F;
	color: #fff;
	cursor: default;
}

/* // SIGNATUR
	// - - - - - - - - - - - - - - */

.signpp {
	display: inline-block;
	position: absolute;
	right: 20px;
	bottom: 20px;
	text-align: right;
	color: #58595B;
}

.signpp-box {
	position: relative;
	vertical-align: bottom;
	padding-top: 2px;
	padding-right: calc(28px + 6px);
}

.signpp-txt {
	margin: 0;
}

.signpp-ico {
	position: absolute;
	font-size: 28px;
	color: #58595B;
	right: 0;
	top: 0;
}

.signpp-txt-name {
	text-transform: uppercase;
	font-weight: bold;
	font-family: 'Catamaran', sans-serif;
}


@media screen and (max-width: 600px) {

	h1 {
		font-size: 22px;
	}

	#global.connected #global-left {
		width: 30px;
		opacity: 1;
	}

	#global.connected #global-right {
		padding-left: calc(30px + 40px);
		transition: padding-left 0.24s ease-in-out;
	}

	#global.connected #global-left .statelist{
		opacity: 0;
		transition: opacity 0s ease-in-out;
	}

	#global.showUser #global-left {
		width: 240px;
		opacity: 1;
		-webkit-box-shadow: 7px 0px 29px 3px rgba(128,128,128,1);
		-moz-box-shadow: 7px 0px 29px 3px rgba(128,128,128,1);
		box-shadow: 7px 0px 29px 3px rgba(128,128,128,1);
		transition: width 0.24s ease-in-out, box-shadow .54s ease-in-out;
	}

	#global.showUser #global-right {
		padding-left: calc(30px + 240px);
		transition: padding-left 0.24s ease-in-out;
	}

	#global.showUser #global-left .statelist {
		opacity: 1;
    	transition: opacity .84s ease-in-out;
	}


}

.right-disabled{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height:100%;
	z-index: 10;
	background-color: rgba(121, 121, 121, 0.3);
	transition: background-color 1.24s ease-in-out;
}


/* // SETTINGS : screen
	// - - - - - - - - - - - - - - */

.content-settings {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	background-color: #fff;
	z-index: 1000;
	opacity: 0;
	transform: translateY(-200%);
	transition: opacity .24s ease-in-out, transform 0s ease-in-out .24s;
}

.content-settings-switch-label{
	text-transform: none;
}

.content-settings.active {
	opacity: 1;
	transform: translateY(0);
	transition: opacity .24s ease-in-out, transform 0s ease-in-out 0s;
}

.content-settings-close {
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	padding: 4px;
	transition: all .24s ease-in-out;
	cursor: pointer;
	font-size: 18px;
	color: #000;
	opacity: .3;
	-webkit-app-region: no-drag;
	z-index: 1000;
}

.content-settings-zone.settingskeyboard{
	padding-top: 0px;
}

.settingskeyboard-form-input{
	-webkit-app-region: no-drag;
	width: 95%;
	border-radius: 4px;
	padding: 3px 5px;
	margin: 0px 0;
	border: 1px solid #ccc;
	display: table-cell;
}

.notvalid{
	-webkit-box-shadow: 0px 0px 12px 0px rgba(191,0,0,1);
	-moz-box-shadow: 0px 0px 12px 0px rgba(191,0,0,1);
	box-shadow: 0px 0px 12px 0px rgba(191,0,0,1);
}

.settingskeyboard-item{
	display: table;
	width: 100%;
}

.settingskeyboard-label{
	display: table-row;
}

.delete-input{
	padding: 4px;
	display: table-cell;
	float: right;
	-webkit-app-region: no-drag;
	cursor : pointer;
}

.settingskeyboard-name{
	padding-bottom: 20px;
	width: 90px;
	display: table-cell;
}

.button-input {
    background-color: white;
    border: none;
    color: black;
    border: 2px solid #4CAF50; /* Green */
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-app-region: no-drag;
    float: right;
}

.button-input:hover {
    background-color: #4CAF50; /* Green */
    color: white;
}

.button-input-reset {
    background-color: white;
    border: none;
    color: black;
    border: 2px solid #008CBA; /* blue */
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-app-region: no-drag;
    float: right;
}

.button-input-reset:hover {
    background-color: #008CBA; /* blue */
    color: white;
}

.button-input-empty:hover {
    background-color: #f44336; /* red */
    color: white;
}
.button-input-empty {
    background-color: white;
    border: none;
    color: black;
    border: 2px solid #f44336; /* red */
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-app-region: no-drag;
    float: right;
}

ul.input{
    list-style-type: none;
    padding: 0;
}

li.input{

}

.settingsbrightness-slider-input {
    -webkit-appearance: none;
    width: 95%;
    height: 15px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
    -webkit-app-region: no-drag;
}

.settingsbrightness-slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #34323F;
    cursor: pointer;
}

.settingsbrightness-slider-input::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #34323F;
    cursor: pointer;
}

.content-settings-close:hover {
	opacity: 1;
	-webkit-app-region: no-drag;
}

.content-settings-zone {
	padding: 12px 0;
}

.settingsinfos-dev{
	display: inline-block;
	position: absolute;
	/*left: 20px;*/
	bottom: 20px;
}

.python-running{
	display: none;
}
.python-running.isrunning{
	display: inline-block;
}

.no-drag{
	-webkit-app-region: no-drag;
}

.version-news {
	-webkit-app-region: no-drag;
	margin-bottom: -4px;
	font-size: 10px;
	display: inline-block;
	position:relative;
	width: 20px;
	height: 20px;
	border-radius: 100%;
	overflow: hidden;
	border: solid 1px rgb(39, 39, 39);
	z-index: 500;
	text-align: center;
	margin-left: 0.25rem;
	line-height: 1rem;
	cursor: pointer;
}
.version-news:hover {
	background-color:#34323F;
	color: #fff;
}

.more-phones {
	-webkit-app-region: no-drag;
	margin-bottom: -4px;
	font-size: 10px;
	display: inline-block;
	position:relative;
	width: 20px;
	height: 20px;
	border-radius: 100%;
	overflow: hidden;
	border: solid 1px rgb(255, 255, 255);
	z-index: 500;
	text-align: center;
	margin-left: 0.25rem;
	line-height: 1rem;
	cursor: pointer;
}
.more-phones:hover {
	background-color:#fff;
	color: #34323F;
}


/* // SIGNATUR
	// - - - - - - - - - - - - - - */

.signpp {
	display: inline-block;
	position: absolute;
	right: 20px;
	bottom: 20px;
	text-align: right;
	color: #58595B;
}

.signpp-box {
	position: relative;
	vertical-align: bottom;
	padding-top: 2px;
	padding-right: calc(28px + 6px);
}

.signpp-txt {
	margin: 0;
}

.signpp-ico {
	position: absolute;
	font-size: 28px;
	color: #58595B;
	right: 0;
	top: 0;
}

.signpp-txt-name {
	text-transform: uppercase;
	font-weight: bold;
	font-family: 'Catamaran', sans-serif;
}
