* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #35bce8;
  --secondary: #1e2146;
  --background: #191f2b;  
  --title: #020101;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.522vw, 10px);
}
ul {
  list-style: none;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
i {
  font-style: normal;
}
.content {
  max-width: 160rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 163rem;
  margin: 0 auto;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}
button,
input,
textarea {
  outline: none;
  border: none;
  font-family: unset;
  color: var(--title);
}
input[type="submit"],
button {
  cursor: pointer;
}
textarea {
  resize: none;
}
input[type="checkbox"] {
  cursor: pointer;
  appearance: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
select {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: unset;
  color: var(--title);
}
.flex {
  display: flex;
}
.wrap {
  flex-wrap: wrap;
}
.flex1 {
  flex: 1;
}
.flex2 {
  flex: 2;
}
.flex3 {
  flex: 3;
}
.between {
  justify-content: space-between;
}
.center {
  text-align: center;
}
.flex_start {
  justify-content: flex-start;
}
.flex_center {
  justify-content: center;
}
.flex_end {
  justify-content: flex-end;
}
.flex_top {
  align-items: flex-start;
}
.flex_middle {
  align-items: center;
}
.flex_bottom {
  align-items: flex-end;
}
body {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title);
  font-family: 'Geist', sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 17px;
}
.only_mobile {
  display: none;
}
.gap {
  gap: 3rem;
}
li.swiper-slide {
  height: auto;
}
.grecaptcha-badge {
  visibility: hidden;
}
#fullscreen-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
#fullscreen-loader::after {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 8px solid var(--primary);
  animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}
@keyframes l20-1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}
@keyframes l20-2 {
  0% {
    transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    transform: scaleY(1) rotate(135deg);
  }
  50% {
    transform: scaleY(-1) rotate(0deg);
  }
  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}
.btn{
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
  border-radius: 5px;
  font-size: 1.6rem;
}
.left_silder {
  padding: 4rem 2rem;
  color: #fff;
  min-width: 27rem;
  height: 100vh;
  position: fixed;
  top: 0;
  background-color: var(--background);
}
.left_silder .logo_box .img_cv{
  text-align: center;
}
.left_silder .logo_box img{ 
  max-width: 15rem;
} 
.left_silder .nav_list ul{
  margin: 2rem 0;
}
.left_silder .nav_list ul li a{
  padding: 1.5rem;
  border-radius: 5px;
  display: block;
}
.left_silder .nav_list ul li.active a{
  background-color: #282f3b;
}

#app > .right{
  padding: 2rem;
  padding-left: 29rem;
  flex: 1;
}

#app > .right .section_title{
  font-size: 2.1rem;
  margin-bottom: 1rem;
}
#app > .right .table {
  width: 100%; 
}
#app > .right .table table{
  width: 100%;
  border-spacing: 0; 
  border-collapse: collapse;
  border-radius: 5px;
  overflow: hidden;
}

#app > .right .table table tr th,
#app > .right .table table tr td{
  border-bottom: 1px solid #999;
  padding: 1.5rem;
  font-size: 1.6rem;
  text-align: center;
}

#app > .right .table table tr th{
  color: #fff;
  font-weight: bold;
  border-color:  var(--background);
  background-color:  var(--background);
}
#app > .right .filter_content{
  margin: 1.5rem 0;
}
#app > .right .filter_content .flex{
  gap: 1.5rem;
}
#app > .right .filter_content .flex p{
  display: flex;
  align-items: center;
}
#app > .right .filter_content .flex p input,
#app > .right .filter_content .flex p select
{
  border: #999 solid 1px;
  height: 100%;
  border-radius: 5px;
  padding: 0 1rem;
  margin-left: 1rem;
}

#app > .right .filter_content .flex p label{
  font-size: 1.8rem;
}

.form_model{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0; 
  transition: all .2s;
}

.form_model.active{
  opacity: 1;
  visibility: visible;
  z-index: 9;
  /* transform: scale(1); */
}
.form_model .form_model_content{
  position: relative;
  min-width: 80rem;
  max-height: 80%;
  overflow: auto;
  width: max-content;
  z-index: 11;
  padding: 4rem;
  border-radius: 6px;
  background-color: #fff; 
  transition: all .2s;
  transform: scale(0);

}
.form_model.active .form_model_content{
  transform: scale(1);
}

.form_model .form_model_content .form_title{
  text-align: center;
}
.form_model .form_model_content .form_title strong{
  font-size: 2.5rem;
}
.form_model .form_model_content p {
  margin-bottom: 2rem;
}
.form_model .form_model_content label{
  display: block;
  margin-bottom: .5rem;
}
.form_model .form_model_content input:not(.btn){
  padding: 1rem;
  border-radius: 5px;
  width: 100%;
  border: #999 solid 1px;
}
.form_model .form_model_content p.submit{
  text-align: right;
  margin: 1rem 0;
}
.form_model .form_model_over{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  z-index: 10;
  background-color: rgba(0,0,0,.5);
} 
td a:not(.btn){ 
  text-decoration: underline;
} 
td .status {
  padding: .4rem;
  display: block;
  background-color: #eee;
  border-radius: 5px;
  font-size: 1.4rem; 
}
td .status.connected{
  background-color: green;
  color: #fff;
}
td .status.connection_failed{
  background-color: red;
  color: #fff;
}
td .status.connecting{
  background-color: orange;
  color: #fff;
}


.loading{
  position: relative;
}

.loading:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/load.gif') no-repeat center;
  background-size: 45px;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 9;
}
.stop_auto_backup{
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 5px;
  border: #999 solid 1px;
  appearance: auto!important; 
}


.badge {
  color: #fff;
  display: inline-block;
  vertical-align: top;
  border-radius: 4px;
  padding: 6px 12px;
}

.bg-danger {
  background-color: #f44336;
}

.bg-warning {
  background-color: #ff9800;
}

.bg-good {
  background-color: #4caf50;
}

.gauge-container {
  text-align: center;
  padding: 2rem 0;
}

.gauge-outer {
  --pct: 0;
  --color: #f2f5f9;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: conic-gradient(var(--color) 0deg,
      var(--color) calc(var(--pct) * 3.6deg),
      #f2f5f9 calc(var(--pct) * 3.6deg),
      #f2f5f9 360deg);
  display: grid;
  place-items: center;
  transition: background 0.6s ease-out;
  margin: 0 auto;
}

.gauge-inner {
  width: 10rem;
  height: 10rem;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.gauge-inner .percent {
  font-size: 2.5rem;
  font-weight: 600;
}

.gauge-info {
  margin-top: 1rem;
}

.gauge-info .numbers {
  font-size: 2rem;
  font-weight: 600;
}

.gauge-info .label {
  color: #777;
  margin-top: 0.5rem;
  font-size: 1.4rem;
  font-weight: 400;
}