/*
* Software Name : abcdesktop.io
* Version: 0.2
* SPDX-FileCopyrightText: Copyright (c) 2020-2021 Orange
* SPDX-License-Identifier: GPL-2.0-only
*
* This software is distributed under the GNU General Public License v2.0 only
* see the "license.txt" file for more details.
*
* Author: abcdesktop.io team
* Software description: cloud native desktop service
*/
/*Supporting colours*/
/* Font sizes */
/* Spacing */
/* Border radii */
/* Icon / button sizes */
/* Opacities */
/* Breakpoints */
/* Mixin : désactiver la sélection */
/* Mixin : autoriser la sélection */
/* Mixin : bouton circulaire "glass" (ex: #settings-back-button) */
/*
* Styles communs aux dialogues settings et tipsinfo
* Importé par settings.less et tipsinfo.less
*/
.max-size {
  width: 100%;
  height: 100%;
}
.writeSpaceNoWrap {
  white-space: nowrap;
}
.searchSection {
  height: 25px;
  width: 25%;
  position: absolute;
  top: 10px !important;
  right: 35px !important;
  left: unset !important;
}
.searchSection img {
  width: 25px;
  cursor: pointer;
}
.searchSection input {
  width: calc(100% - 30px);
}
div.card-container {
  margin-top: 15px;
}
#settings-window p,
#settings-window span,
#settings-window td {
  user-select: text !important;
  -moz-user-select: text !important;
}
#settings-window {
  overflow-y: hidden;
  overflow-x: hidden;
  height: 100%;
}
div.settings-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  min-height: 35px;
  width: 100%;
}
div.settings-title h5#settings-title {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.window-dialog-settings div.modal-dialog {
  max-width: none !important;
  overflow-y: auto;
  overflow-x: hidden;
}
#settings-window div.tab {
  overflow-y: auto;
  overflow-x: hidden;
}
#settings-window .tab {
  height: 100%;
}
.settings-back-button {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, filter 0.15s ease, transform 0.1s ease;
  display: none;
  flex: 0 0 auto;
}
.settings-back-button:hover {
  background-color: rgba(255, 255, 255, 0.16);
  border-color: rgba(101, 174, 205, 0.45);
}
.settings-back-button:active {
  transform: scale(0.92);
}
.settings-back-button img {
  height: 13px;
  width: 13px;
  pointer-events: none;
}
.settings-close-button {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, filter 0.15s ease, transform 0.1s ease;
  display: block;
  flex: 0 0 auto;
}
.settings-close-button:hover {
  background-color: rgba(255, 255, 255, 0.16);
  border-color: rgba(101, 174, 205, 0.45);
}
.settings-close-button:active {
  transform: scale(0.92);
}
.settings-close-button img {
  height: 13px;
  width: 13px;
  pointer-events: none;
}
.settings-title .searchSection {
  position: static !important;
  top: unset !important;
  right: unset !important;
  left: unset !important;
  flex: 0 0 auto;
  width: auto;
  margin-left: auto;
}
.settings-title .searchSection input#input-search-section {
  width: 180px;
}
.btn-settings {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.65);
  transition: background 0.15s ease, color 0.15s ease;
  line-height: unset !important;
}
.btn-settings:hover {
  background: rgba(255, 255, 255, 0.11);
  color: #FFFFFF;
}
.btn-settings-active {
  background: linear-gradient(135deg, #65AECD 0%, #7ebbd5 100%) !important;
  border-color: transparent !important;
}
/*
.btn-check+.btn-settings-active {
  background: linear-gradient(135deg, @tertiary 0%, mix(white, @tertiary, 16%) 100%) !important;
  border-color: transparent !important;
  // color: @quaternary !important;
  // font-weight: 600;
}
*/
.btn-check + .btn:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.16);
  border-color: transparent !important;
}
.text-bg-primary {
  color: #1E1E1E;
  background: linear-gradient(135deg, #65AECD 0%, #7ebbd5 100%) !important;
}
#input-search-section {
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 8px;
  height: 25px;
  box-shadow: none !important;
  background: rgba(255, 255, 255, 0.07) url(../../../img/search1.svg) 6px center no-repeat;
  background-size: 16px;
  text-indent: 25px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
#input-search-section:focus {
  background-color: rgba(255, 255, 255, 0.11);
  border-color: #65AECD !important;
}
/* ============================================================
   Shared modern content styling for settings tab bodies
   (cards / tables / buttons used across system, user, logs,
   speedtest, localisation, screen-background and container tabs)
   ============================================================ */
#settings-window .card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: background 0.15s ease, border-color 0.15s ease;
}
#settings-window .card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}
#settings-window .card-title,
#settings-window h6 {
  color: #65AECD;
}
#settings-window table.table {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.08);
}
#settings-window table thead th {
  color: #65AECD;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
}
#settings-window table.table-striped > tbody > tr:nth-of-type(odd) > * {
  background: rgba(255, 255, 255, 0.03);
  color: #FFFFFF;
  box-shadow: none;
}
#settings-window table td,
#settings-window table th {
  border-color: rgba(255, 255, 255, 0.08) !important;
}
#settings-window .btn:not(.btn-settings):not(.btn-settings-active) {
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}
#settings-window .btn:not(.btn-settings):not(.btn-settings-active):hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.28);
}
#settings-window .btn:not(.btn-settings):not(.btn-settings-active):active {
  transform: translateY(1px);
}
#settings-window .btn-info {
  background: linear-gradient(135deg, #4BB4E6 0%, #68c0ea 100%);
  border-color: transparent;
  color: #1E1E1E;
  font-weight: 600;
}
#settings-window .btn-danger {
  background: linear-gradient(135deg, #CD3C14 0%, #d55b3a 100%);
  border-color: transparent;
  color: #FFFFFF;
  font-weight: 600;
}
#settings-window .btn-dark {
  background: rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
}
/* ============================================================
   Settings tab switcher (#panel-settings): the grid of navigation
   cards is a plain Bootstrap row/col-* layout (see index.mustache.html)
   so the responsive column counts (2 / 3 / 4 / 6 per line) come for
   free from bootstrap.min.css instead of a custom CSS grid + @media
   rules here.
   ============================================================ */
#settings-window #panel-settings {
  padding: 16px;
}
#settings-window #panel-settings .tab-header {
  height: 130px;
  width: auto;
  float: none;
  text-align: center;
  font-size: 15px;
  color: #FFFFFF;
  font-weight: bold;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}
#settings-window #panel-settings .tab-header:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}
#settings-window #panel-settings .tab-header:hover span:nth-child(3) {
  opacity: 1;
}
/* Bootstrap's .card-body defaults to padding: 1.25rem, which is too wide
   for the compact square tab-header cards: reset it to fill the card and
   keep the icon/title/description centered like the previous plain divs. */
#settings-window #panel-settings .tab-header .card-body {
  height: 100%;
  width: 100%;
  padding: 8px;
  cursor: pointer;
}
#settings-window #panel-settings .tab-header div img {
  height: 42px;
  width: 100%;
  margin-bottom: 8px;
  pointer-events: none;
}
#settings-window #panel-settings .tab-header span {
  font-size: 12px;
}
#settings-window #panel-settings .tab-header span:nth-child(3) {
  font-size: 13px;
  color: #65AECD;
  font-weight: 100;
  opacity: 0;
  height: 15px;
  pointer-events: none;
  width: 100%;
  transition: opacity 0.15s ease;
}
/** System tab **/
#settings-window #system-tab {
  display: none;
}
#system-tab-switch-buttons,
#screenColor-tab-switch-buttons {
  height: 45px;
  padding-bottom: 10px;
}
.line-spacing {
  margin-bottom: 0.5rem;
}
#system-tab img.logo-animation {
  position: relative;
  cursor: pointer;
}
#system-tab img.icon {
  width: 100px;
}
#settings-window #system-tab h6 {
  color: #65AECD;
}
#settings-window #system-tab p {
  font-size: 14px;
  white-space: nowrap;
  margin-bottom: 0.5rem;
}
#settings-window #system-tab .settings-versions {
  margin-top: 15px;
}
#settings-window #system-tab #system-overview span {
  display: block;
  padding-top: 5px;
  user-select: initial;
  -webkit-user-select: initial;
  -moz-user-select: initial;
  white-space: nowrap;
}
#settings-window #system-tab #system-user-container {
  display: none;
}
/*system-display*/
#settings-window #system-tab #system-display {
  display: none;
}
span#user-agent {
  white-space: nowrap;
}
#settings-window #system-tab #system-display .grid-screen-details {
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 75%;
}
#settings-window #system-tab #system-display .grid-screen-details div {
  width: 30%;
}
#settings-window #system-tab #system-display .grid-screen-details div span.info {
  width: 100%;
  padding-top: 5px;
  display: block;
}
#settings-window #system-tab .active-system-view {
  display: flex;
}
#settings-window #system-tab h4,
#settings-window #system-tab span.key-info {
  color: #65AECD;
}
#settings-window #system-tab #system-display span {
  white-space: nowrap;
  padding-top: 5px;
}
#settings-window #system-tab #settings-system-view-display h4,
#settings-window #system-tab div.card-container {
  margin-top: 15px;
}
@media screen and (max-height: 795px) {
  .display-line-spacing {
    display: none;
  }
}
/*system-storage*/
/*system-support*/
#settings-window #system-tab #settings-system-view-support div ul {
  list-style: none;
  padding: 0;
}
#settings-window #system-tab #settings-system-view-support div p {
  font-size: 20px;
}
#settings-window #system-tab #settings-system-view-support div ul li {
  margin-bottom: 5px;
}
#settings-window #system-tab #settings-system-view-support div ul li img {
  height: 30px;
}
#settings-window #system-tab #settings-system-view-support img.logo-abcdesktop {
  height: 120px;
}
/** User tab */
#settings-window #user-tab {
  display: none;
}
.wrapper-user-current-session {
  width: 50%;
}
#settings-window #user-tab #views-user {
  height: 85%;
}
#settings-window #user-tab #user-tab-switch-buttons {
  height: 45px;
  padding-bottom: 10px;
}
#settings-window #user-tab #settings-user-browser {
  white-space: nowrap;
  overflow: hidden;
}
#settings-window #user-tab #user-current-session img {
  width: 60px;
  height: 60px;
}
#settings-window #user-tab #historyblock {
  display: block;
  overflow: auto;
}
#settings-window #user-tab table {
  width: 100%;
  display: table;
  box-sizing: border-box;
  font-size: 12px;
}
#settings-window #user-tab #history img {
  height: 25px;
}
#settings-window #user-tab th {
  font-weight: bold;
  text-align: left;
}
#settings-window #user-tab #historyblock div:nth-child(1) {
  width: 100%;
}
#settings-window #user-tab div.divider {
  height: 10px;
  width: 100%;
}
@media screen and (max-height: 1000px) {
  #views-user {
    height: 85%;
  }
}
@media screen and (max-height: 740px) {
  #views-user {
    height: 70%;
  }
}
@media screen and (max-height: 535px) {
  #views-user {
    height: 60%;
  }
}
@media screen and (max-height: 420px) {
  #views-user {
    height: 50%;
  }
}
/** Logs tab */
#settings-window #logs-tab {
  display: none;
}
#settings-window #logs-tab #logTable {
  width: 100%;
}
#settings-window #logs-tab td {
  font-family: monospace;
  color: #65AECD;
}
#settings-window #logs-tab thead td {
  color: #FFFFFF;
}
#settings-window #logs-tab .logDate {
  width: 100px;
}
#settings-window #logs-tab .logCode {
  width: 150px;
}
#settings-window #logs-tab pre {
  margin: 0;
}
#settings-window #logs-tab .container-logs {
  width: 100%;
  height: 100%;
  font-family: monospace;
  color: #32C832;
  overflow-x: auto;
  white-space: nowrap;
}
#settings-window #logs-tab .container-logs.card {
  margin-top: 0 !important;
}
#settings-window #logs-tab .container-logs .card-body {
  padding: 14px 18px;
}
/** Localisation tab */
#settings-window #localisation-tab {
  display: none;
  overflow: auto;
}
#settings-window #localisation-tab h6 {
  color: #65AECD;
}
#settings-window #localisation-tab span {
  display: block;
  user-select: initial;
  -webkit-user-select: initial;
  -moz-user-select: initial;
  text-align: left;
  margin-bottom: 0.5rem;
}
#map {
  height: 420px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media screen and (max-height: 1360px) {
  #map {
    height: 285px;
  }
}
@media screen and (max-height: 1090px) {
  #map {
    height: 135px;
  }
}
/** printer tab */
#settings-window #printers-tab {
  display: none;
}
#settings-window #printers-tab #printerlist {
  width: 100%;
  height: calc(100% - 30px);
  list-style: none;
  margin: 0;
  padding: 0;
  float: left;
  overflow: auto;
}
#settings-window #printers-tab #printer-section-list {
  height: 100%;
}
#settings-window #printers-tab #printerlist li {
  width: 100%;
  position: relative;
  cursor: pointer;
}
#settings-window #printers-tab #printerlist li:hover {
  background-color: #2D2D2D;
}
#settings-window #printers-tab #printerlist li.selected {
  background: #2D2D2D;
}
#settings-window #printers-tab #printerlist li .colorPrinter {
  height: 25px;
  position: absolute;
  bottom: 0px;
  left: 60px;
  pointer-events: none;
}
#settings-window #printers-tab #printerlist li div.container {
  padding-top: 10px;
}
#settings-window #printers-tab #printerlist li .printerLogo {
  height: 50px;
  margin: 10px;
  pointer-events: none;
}
#settings-window #printers-tab #printerlist li span {
  display: block;
  font-size: 17px;
  line-height: 70px;
  text-indent: 20px;
  pointer-events: none;
}
#settings-window #printers-tab .blockButton {
  height: 30px;
  width: 30px;
  position: absolute;
  font-size: 25px;
  line-height: 27px;
  text-align: center;
  cursor: pointer;
  bottom: 0px;
}
#settings-window #printers-tab form {
  height: 100%;
  background: #2D2D2D;
  overflow: auto;
}
#settings-window #printers-tab fieldset {
  padding: 0 5px 5px 5px;
  margin: 10px;
}
#settings-window #printers-tab fieldset legend {
  font-weight: bold;
  font-size: 1rem;
  color: #65AECD;
}
#settings-window #printers-tab label {
  margin-top: 10px;
  display: block;
}
#settings-window #printers-tab label.inline {
  display: inline;
  margin-right: 50px;
}
#settings-window #printers-tab input,
textarea,
select {
  padding: 3px;
  border-radius: 5px;
  background: #FFFFFF;
}
#settings-window #printers-tab select {
  margin-top: 10px;
}
#settings-window #printers-tab input[type=radio],
#settings-window #printers-tab input[type=checkbox] {
  background-color: transparent;
  border: none;
  width: 10px;
  height: 10px;
  margin-top: 20px;
}
#settings-window #printers-tab input[type=submit],
input[type=reset] {
  width: 100px;
  cursor: pointer;
  margin-left: calc(50% - 50px);
}
#settings-window #printers-tab #morePrinter {
  background: #65AECD;
  left: 0px;
}
#settings-window #printers-tab #removePrinter {
  background: #FFFFFF;
  left: 30px;
  color: #666666;
}
#settings-window #printers-tab #searchPrinters {
  height: calc(100% - 35px);
  width: 100%;
  background: #2D2D2D;
  padding-top: 10px;
  overflow: auto;
}
#settings-window #printers-tab #searchPrinters input[type='text'] {
  height: 30px;
  margin: 0 auto;
  text-indent: 35px;
  box-sizing: border-box;
  background: url(../../../img/search.svg) no-repeat 5px #FFFFFF;
  background-size: 25px;
  width: 80%;
}
#settings-window #printers-tab #searchPrinters #buttonBar {
  height: 50px;
  width: 100%;
}
#settings-window #printers-tab #searchPrinters #buttonBar button {
  height: 30px;
  width: 80px;
  margin: 10px;
  border: none;
  background: #FFFFFF;
  cursor: pointer;
}
#settings-window #printers-tab #searchPrinters #buttonBar button#addPrinter,
#settings-window #printers-tab #searchPrinters #buttonBar button#customPrinter {
  background: #65AECD;
  color: #FFFFFF;
}
#settings-window #printers-tab #searchPrinters #buttonBar button#addPrinter:disabled,
#settings-window #printers-tab #searchPrinters #buttonBar button#customPrinter:disabled {
  background: #2D2D2D;
  color: #474B55;
  cursor: not-allowed;
}
#settings-window #printers-tab #searchPrinters #printerTable {
  width: 100%;
  max-height: 250px;
  overflow: auto;
  display: block;
}
#settings-window #printers-tab #searchPrinters #printerTable .printer {
  height: 120px;
  width: 20%;
  cursor: pointer;
  float: left;
  position: relative;
  box-sizing: border-box;
}
#settings-window #printers-tab #searchPrinters #printerTable .printer.selected {
  border: 1px solid #65AECD;
  background: #2D2D2D;
}
#settings-window #printers-tab #searchPrinters #printerTable .printer:hover {
  background: #2D2D2D;
}
#settings-window #printers-tab #searchPrinters #printerTable .printer img.printerLogo {
  height: 60px;
  width: 100%;
  margin: 15px 0px;
  pointer-events: none;
}
#settings-window #printers-tab #searchPrinters #printerTable .printer img.colorPrinter {
  height: 20px;
  top: 60px;
  left: 100px;
  position: absolute;
}
#settings-window #printers-tab #searchPrinters #printerTable .printer span {
  display: block;
  width: 100%;
  pointer-events: none;
  text-align: center;
}
#settings-window #printers-tab form#printerSettings #printMediaSupported {
  width: 100%;
}
/** speedtest tab */
#settings-window #speedtest-tab {
  display: block;
  width: 100%;
  text-align: center;
}
#settings-window #speedtest-tab #startStopBtn {
  display: inline-block;
  color: #1E1E1E;
  background: linear-gradient(135deg, #65AECD 0%, #7ebbd5 100%);
  border-radius: 20px;
  transition: box-shadow 0.15s ease, transform 0.1s ease;
  box-sizing: border-box;
  width: 150px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin-top: 15px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(101, 174, 205, 0.35);
}
#settings-window #speedtest-tab #startStopBtn:hover {
  box-shadow: 0 6px 20px rgba(101, 174, 205, 0.45);
}
#settings-window #speedtest-tab #startStopBtn:active {
  transform: translateY(1px);
}
#settings-window #speedtest-tab #startStopBtn.running {
  background: linear-gradient(135deg, #CD3C14 0%, #d55b3a 100%);
  border-color: #CD3C14;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(205, 60, 20, 0.35);
}
#settings-window #speedtest-tab #startStopBtn:before {
  content: "Start";
}
#settings-window #speedtest-tab #startStopBtn.running:before {
  content: "Abort";
}
#settings-window #speedtest-tab #test {
  padding-top: 2%;
}
#settings-window #speedtest-tab div.testArea {
  display: inline-block;
  width: 170px;
  height: 140px;
  position: relative;
  text-align: center;
  box-sizing: border-box;
}
#settings-window #speedtest-tab div.testName {
  position: absolute;
  top: 0.1em;
  left: 0;
  width: 100%;
  font-size: 20px;
  z-index: 9;
}
#settings-window #speedtest-tab div.meterText {
  position: absolute;
  bottom: 1.55em;
  left: 0;
  width: 100%;
  font-size: 27px;
  z-index: 9;
}
#settings-window #speedtest-tab div.meterText:empty:before {
  content: "0.00";
}
#settings-window #speedtest-tab div.unit {
  position: absolute;
  bottom: 1em;
  left: 0;
  width: 100%;
  z-index: 9;
}
#settings-window #speedtest-tab div.testArea canvas {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#settings-window #speedtest-tab div.testGroup {
  display: inline-block;
}
/** audio tab */
#settings-window #audio-tab #outputSettings #sounds_level .sound_level_active {
  background-color: #65AECD !important;
}
#settings-window #audio-tab #outputSettings #sounds_level > div {
  width: 16px;
  background-color: #2D2D2D;
  display: inline-block;
  border-radius: 5px;
  border: solid 1px #65AECD;
  cursor: pointer;
}
#settings-window #audio-tab #outputSettings #sounds_level #sound_level1 {
  height: 24px;
}
#settings-window #audio-tab #outputSettings #sounds_level #sound_level2 {
  height: 40px;
}
#settings-window #audio-tab #outputSettings #sounds_level #sound_level3 {
  height: 72px;
}
#settings-window #audio-tab #outputSettings #sounds_level #sound_level4 {
  height: 100px;
}
#settings-window #audio-tab #outputSettings #sound_level_desc {
  width: 40%;
  margin: 0;
  display: inline-block;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #settings-window #audio-tab #outputSettings #sound_level_test {
    width: 60px !important;
    height: 60px !important;
  }
}
#settings-window #audio-tab #outputSettings #sound_level_test {
  width: 30px;
  cursor: pointer;
}
#audio-tab #outputSettings .range-field {
  position: relative;
}
#audio-tab #outputSettings table input[type=range] {
  position: relative;
  background-color: transparent;
  border: none;
  outline: none;
  width: 65%;
  margin: 15px 0;
  padding: 0;
}
#audio-tab #outputSettings table input[type=range]:focus {
  outline: 1px solid #65AECD;
}
#audio-tab #outputSettings table input[type=range] + .thumb {
  position: absolute;
  top: 10px;
  left: 0;
  border: none;
  height: 0;
  width: 0;
  border-radius: 50%;
  background-color: #65AECD;
  margin-left: 7px;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#audio-tab #outputSettings table input[type=range] + .thumb .value {
  display: block;
  width: 30px;
  text-align: center;
  color: #65AECD;
  font-size: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#audio-tab #outputSettings table input[type=range] + .thumb.active {
  border-radius: 50% 50% 50% 0;
}
#audio-tab #outputSettings table input[type=range] + .thumb.active .value {
  color: #FFFFFF;
  margin-left: 7%;
  margin-top: 25%;
  font-size: 93%;
}
#audio-tab #outputSettings table input[type=range] {
  -webkit-appearance: none;
}
#audio-tab #outputSettings table input[type=range]::-webkit-slider-runnable-track {
  height: 3px;
  background: #474B55;
  border: none;
}
#audio-tab #outputSettings table input[type=range]::-webkit-slider-thumb {
  border: none;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: #65AECD;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
  -webkit-appearance: none;
  background-color: #65AECD;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  margin: -5px 0 0 0;
}
#audio-tab #outputSettings table input[type=range]::-moz-range-track {
  height: 3px;
  background: #474B55;
  border: none;
}
#audio-tab #outputSettings table input[type=range]::-moz-focus-inner {
  border: 0;
}
#audio-tab #outputSettings table input[type=range]::-moz-range-thumb {
  border: none;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: #65AECD;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
  margin-top: -5px;
}
#audio-tab #outputSettings table input[type=range]::-ms-track {
  height: 3px;
  background: transparent;
  border-color: transparent;
  border-width: 6px 0;
  /*remove default tick marks*/
  color: transparent;
}
#audio-tab #outputSettings table input[type=range]::-ms-fill-lower {
  background: #2D2D2D;
}
#audio-tab #outputSettings table input[type=range]::-ms-fill-upper {
  background: #474B55;
}
#audio-tab #outputSettings table input[type=range]::-ms-thumb {
  border: none;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: #65AECD;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
#settings-window #audio-tab #audioHttpBuffer.input {
  width: 65%;
}
#audio-tab #outputSettings div #sliderscheduleBuffersTimeout,
#audio-tab #outputSettings div #slideraudioHttpReadBuffer {
  width: 65%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: -20px;
  margin-top: 25px;
}
.audioexplain {
  width: 100%;
  justify-content: space-around;
  text-align: center;
  margin-bottom: 1%;
}
#audio-tab #outputSettings div table {
  width: 100%;
  padding-top: 1%;
}
#audio-tab #outputSettings div table td {
  padding-bottom: 1%;
}
#audio-tab #outputSettings div table tr:nth-child(1) td:nth-child(2) {
  vertical-align: bottom;
}
#audio-tab #outputSettings div table tr td:nth-child(1) {
  width: 35.5%;
  text-align: center;
}
#audio-tab #outputSettings div table tr td:nth-child(2) {
  padding-left: 3%;
}
#settings-window #audio-tab #audioQuality::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #65AECD;
  cursor: pointer;
}
#settings-window #audio-tab #audioQuality::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #65AECD;
  cursor: pointer;
}
/** screen tab */
/*Settings panel colors*/
#panel_colors {
  width: 100%;
  display: block;
}
#screen-background-tab #modes-screen #panel_colors #color-list {
  width: 100%;
  height: 100%;
  overflow: auto;
}
.colors_blocks {
  display: inline-block;
  width: 75px;
  margin: 2%;
  height: 75px;
  cursor: pointer;
  vertical-align: bottom;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: transform 0.1s ease, border-color 0.15s ease;
}
.colors_blocks:hover {
  transform: scale(1.06);
  border-color: rgba(255, 255, 255, 0.35);
}
#screen-background-tab #modes-screen #panel_colors #color-list::-webkit-scrollbar {
  height: 10%;
  width: 2%;
  border-radius: 100%;
}
#screen-background-tab #modes-screen #panel_colors #color-list::-webkit-scrollbar-thumb {
  height: 10%;
  background: #474B55;
}
#show_color {
  border: solid 1px #666666;
  height: 20%;
  width: 13%;
  background: #FFFFFF;
  margin-bottom: 20%;
  display: inline-block;
  transform: rotate(90deg);
  border-radius: 100%;
}
#screen-background-tab #modes-screen #panel_colors #color-list #div_img_show_picker_color #img_show_picker_color {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}
#img_show_picker_color {
  -webkit-user-drag: none;
}
#img_color {
  margin-left: 5%;
}
/*Pictures section*/
#panel_picture #list_background_img #drop_background_div {
  text-align: center;
  color: #65AECD;
  border: 2px dashed rgba(255, 121, 0, 0.45) !important;
  border-radius: 4px;
  max-width: 100px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
#panel_picture #list_background_img #drop_background_div:hover {
  border-color: #65AECD !important;
  background: rgba(255, 121, 0, 0.08);
}
#panel_picture #list_background_img #drop_background_div #input_drop_background {
  display: none;
}
#panel_picture #list_background_img {
  width: 100%;
}
#panel_picture #list_background_img div img {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: block;
  cursor: pointer;
}
#panel_picture #list_background_img::-webkit-scrollbar {
  height: 10%;
  width: 2%;
  border-radius: 100%;
}
#panel_picture #list_background_img::-webkit-scrollbar-thumb {
  height: 10%;
  background: #474B55;
}
.dz_clickable {
  border-style: dashed;
  border-width: 2px;
  border-color: #65AECD;
}
.pictures_blocks {
  display: inline-block;
  margin: 2%;
  border: solid 1px rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  height: 75px;
  width: 75px;
  transition: transform 0.1s ease, border-color 0.15s ease;
}
.pictures_blocks:hover {
  transform: scale(1.06);
  border-color: rgba(255, 255, 255, 0.35);
}
#drop_background {
  -webkit-user-drag: none;
}
#screen-background-tab #modes-screen {
  height: calc(100% - 40px - 40px);
}
#screen-background-tab #modes-screen > div {
  height: 100%;
  width: 100%;
}
/** screen_details tab */
#screenDetails-tab {
  overflow: hidden;
}
.grid-screen-details {
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 75%;
}
.grid-screen-details div {
  width: 30%;
}
#screenDetails-tab h5 {
  color: #65AECD;
}
#screenDetails-tab span {
  white-space: nowrap;
  overflow: hidden;
  padding-top: 5px;
}
#screenDetails-tab .wrapper-scren-detials {
  width: 100%;
  height: 100%;
}
#screenDetails-tab .wrapper-scren-detials .sub-wrapper-scren-detials {
  width: 100%;
}
.grid-screen-details div span.info {
  width: 100%;
  padding-top: 5px;
  display: block;
}
.grid-screen-details div span.value {
  color: #65AECD;
}
#screenDetails-tab p:first-child {
  text-align: center;
  margin-top: 0;
  padding-top: 24px;
}
#screenDetails-tab h3:first-child {
  margin-top: 0;
}
/** task_manager tab */
#container-tab {
  overflow: hidden;
}
#container-tab p.message {
  display: none;
  color: #FFFFFF;
  position: absolute;
  width: 100%;
  top: 30%;
  text-align: center;
  font-size: xx-large;
}
#container-tab #task-manager-container-list {
  height: 100%;
  width: 100%;
}
#container-tab #task-manager-container-list div.wrap {
  overflow-y: auto;
  width: 100%;
  height: 100%;
  padding: 15px;
}
#container-tab #task-manager-container-list div.wrap div.row div.align_left {
  text-align: left;
}
#container-tab #task-manager-container-list div.wrap div.row {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 8px;
  padding-top: 6px;
  padding-bottom: 6px;
  transition: background 0.15s ease;
}
#container-tab #task-manager-container-list div.wrap div.row:hover {
  background: rgba(255, 255, 255, 0.04);
}
#container-tab #task-manager-container-list div.wrap div.row img {
  width: 30px;
}
#container-tab #task-manager-container-list div.wrap div.row div.icon {
  text-align: right;
  vertical-align: middle;
}
#container-tab #task-manager-container-list div.wrap div.row div.col button:nth-child(2) {
  margin-left: 10px;
  margin-right: 10px;
}
#container-tab #task-manager-container-infos {
  height: 0%;
  width: 100%;
  margin: 0 auto;
  overflow-y: auto;
}
#container-tab #task-manager-container-list,
#container-tab #task-manager-container-infos {
  transition: height 0.5s;
}
#container-tab #task-manager-container-infos #task-manager-container-logs {
  display: none;
  height: calc(100% - 3rem);
  margin: 0 auto;
  overflow-x: auto;
  white-space: nowrap;
  font-family: monospace;
  color: #32C832;
  user-select: text;
}
#container-tab #task-manager-container-infos #task-manager-container-env {
  display: none;
  height: calc(100% - 3rem);
  margin: 0 auto;
  overflow-y: auto;
}
#container-tab #task-manager-container-infos #task-manager-container-env #task-manager-container-env-table-container-env {
  color: white;
}
div::-webkit-scrollbar,
ul::-webkit-scrollbar {
  width: 11px;
}
div::-webkit-scrollbar-track,
ul::-webkit-scrollbar-track {
  background: #474B55;
}
div::-webkit-scrollbar-thumb,
ul::-webkit-scrollbar-thumb {
  background-color: #2D2D2D;
  border-radius: 6px;
  border: 3px solid #474B55;
}
