header
{
    background: #0cb8e2;
    color: white;
    border-bottom: 1px solid white !important;
}
/* a,a:focus,a:hover
{
    color: white;
} */
.icon-bar
{
    background-color: white;
}
.navbar-nav-right
{
    float: right;
}
@media (max-width:768px)
{
    .navbar-nav-right
    {
        float: left;
    } 
}
/* .nav>li>a
{
    
} */
/* .nav>li>a:hover,.nav>li>a:focus
{
    border-bottom: 4px solid white;
    background: transparent;
} */
.a_header
{
    background: transparent;
    border-bottom: 4px solid transparent;
    color: white;
}
.a_header:hover, .a_header:focus
{
    background: transparent !important;
    border-bottom: 4px solid white;
    color: white;
}
.navbar-brand,.navbar-brand:hover, .navbar-brand:focus
{
    border: none;
}
.setting_form
{
    padding-bottom: 1rem;
}
.p_container_checkbox,.p_container_checkbox>input[type='checkbox'],.p_container_checkbox>label
{
    cursor: pointer;
}
input[type='checkbox']
{
    /* padding-top: 5px; */
}
.text-checkbox
{
    padding-left: 0.5rem;
}
.required
{
    color:red;
}
.button_settings
{
    margin-bottom: 1.5rem;
}
.padding-bottom-1r
{
    padding-bottom: 1rem;
}
.padding-bottom-0_5r
{
    padding-bottom: 1rem;
}
.padding0
{
    padding: 0;
}
.log-info
{
    color: blue;
}
.log-warn
{
    color: orange;
}
.log-error
{
    color: red;
}
.table-logs
{
    font-family: monospace;
    font-size: 12px;
}
.table>tbody>tr>td
{
    padding: 3px;
}
.table-logs-container
{
    max-height: 680px;
    overflow: auto;
}
.help
{
    cursor: help;
}
.btn-dowload-logs
{
    float: left;
    margin-top: 2.5rem;
    margin-left: 1.5rem;
}
.h1-logs
{
    float: left;
}
.input_show_password
{
    cursor: pointer;
    position: absolute;
    top:3.5rem;
    right: 2.5rem;
    color:#c1c1c1;
}
.input_show_password.fa-eye
{
    color: #31708f;
}


:root {
  --duration: 1.5s;
  --container-size: 250px;
  --box-size: 33px;
  --box-border-radius: 25%;
}

.loader {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: -10rem 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
}

.loader>.container {
  width: var(--container-size);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.📦 {
  width: var(--box-size);
  height: var(--box-size);
  position: relative;
  display: block;
  -webkit-transform-origin: -50% center;
          transform-origin: -50% center;
  border-radius: var(--box-border-radius);
}
.📦:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: lightblue;
  border-radius: var(--box-border-radius);
  box-shadow: 0px 0px 10px 0px rgba(28, 159, 255, 0.4);
}
.📦:nth-child(1) {
  -webkit-animation: slide var(--duration) ease-in-out infinite alternate;
          animation: slide var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(1):after {
  -webkit-animation: color-change var(--duration) ease-in-out infinite alternate;
          animation: color-change var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(2) {
  -webkit-animation: flip-1 var(--duration) ease-in-out infinite alternate;
          animation: flip-1 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(2):after {
  -webkit-animation: squidge-1 var(--duration) ease-in-out infinite alternate;
          animation: squidge-1 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(3) {
  -webkit-animation: flip-2 var(--duration) ease-in-out infinite alternate;
          animation: flip-2 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(3):after {
  -webkit-animation: squidge-2 var(--duration) ease-in-out infinite alternate;
          animation: squidge-2 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(4) {
  -webkit-animation: flip-3 var(--duration) ease-in-out infinite alternate;
          animation: flip-3 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(4):after {
  -webkit-animation: squidge-3 var(--duration) ease-in-out infinite alternate;
          animation: squidge-3 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(5) {
  -webkit-animation: flip-4 var(--duration) ease-in-out infinite alternate;
          animation: flip-4 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(5):after {
  -webkit-animation: squidge-4 var(--duration) ease-in-out infinite alternate;
          animation: squidge-4 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(2):after {
  background-color: #1C9FFF;
}
.📦:nth-child(3):after {
  background-color: #1FB1FD;
}
.📦:nth-child(4):after {
  background-color: #22C7FB;
}
.📦:nth-child(5):after {
  background-color: #23D3FB;
}

@-webkit-keyframes slide {
  0% {
    background-color: #1795FF;
    -webkit-transform: translatex(0vw);
            transform: translatex(0vw);
  }
  100% {
    background-color: #23D3FB;
    -webkit-transform: translatex(calc(var(--container-size) - (var(--box-size) * 1.25)));
            transform: translatex(calc(var(--container-size) - (var(--box-size) * 1.25)));
  }
}

@keyframes slide {
  0% {
    background-color: #1795FF;
    -webkit-transform: translatex(0vw);
            transform: translatex(0vw);
  }
  100% {
    background-color: #23D3FB;
    -webkit-transform: translatex(calc(var(--container-size) - (var(--box-size) * 1.25)));
            transform: translatex(calc(var(--container-size) - (var(--box-size) * 1.25)));
  }
}
@-webkit-keyframes color-change {
  0% {
    background-color: #1795FF;
  }
  100% {
    background-color: #23D3FB;
  }
}
@keyframes color-change {
  0% {
    background-color: #1795FF;
  }
  100% {
    background-color: #23D3FB;
  }
}
@-webkit-keyframes flip-1 {
  0%, 15% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  35%, 100% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
}
@keyframes flip-1 {
  0%, 15% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  35%, 100% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
}
@-webkit-keyframes squidge-1 {
  5% {
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-transform: scalex(1) scaley(1);
            transform: scalex(1) scaley(1);
  }
  15% {
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-transform: scalex(1.3) scaley(0.7);
            transform: scalex(1.3) scaley(0.7);
  }
  25%, 20% {
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-transform: scalex(0.8) scaley(1.4);
            transform: scalex(0.8) scaley(1.4);
  }
  55%, 100% {
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scalex(1) scaley(1);
            transform: scalex(1) scaley(1);
  }
  40% {
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scalex(1.3) scaley(0.7);
            transform: scalex(1.3) scaley(0.7);
  }
}
@keyframes squidge-1 {
  5% {
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-transform: scalex(1) scaley(1);
            transform: scalex(1) scaley(1);
  }
  15% {
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-transform: scalex(1.3) scaley(0.7);
            transform: scalex(1.3) scaley(0.7);
  }
  25%, 20% {
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-transform: scalex(0.8) scaley(1.4);
            transform: scalex(0.8) scaley(1.4);
  }
  55%, 100% {
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scalex(1) scaley(1);
            transform: scalex(1) scaley(1);
  }
  40% {
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scalex(1.3) scaley(0.7);
            transform: scalex(1.3) scaley(0.7);
  }
}
@-webkit-keyframes flip-2 {
  0%, 30% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50%, 100% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
}
@keyframes flip-2 {
  0%, 30% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50%, 100% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
}
@-webkit-keyframes squidge-2 {
  20% {
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-transform: scalex(1) scaley(1);
            transform: scalex(1) scaley(1);
  }
  30% {
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-transform: scalex(1.3) scaley(0.7);
            transform: scalex(1.3) scaley(0.7);
  }
  40%, 35% {
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-transform: scalex(0.8) scaley(1.4);
            transform: scalex(0.8) scaley(1.4);
  }
  70%, 100% {
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scalex(1) scaley(1);
            transform: scalex(1) scaley(1);
  }
  55% {
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scalex(1.3) scaley(0.7);
            transform: scalex(1.3) scaley(0.7);
  }
}
@keyframes squidge-2 {
  20% {
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-transform: scalex(1) scaley(1);
            transform: scalex(1) scaley(1);
  }
  30% {
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-transform: scalex(1.3) scaley(0.7);
            transform: scalex(1.3) scaley(0.7);
  }
  40%, 35% {
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-transform: scalex(0.8) scaley(1.4);
            transform: scalex(0.8) scaley(1.4);
  }
  70%, 100% {
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scalex(1) scaley(1);
            transform: scalex(1) scaley(1);
  }
  55% {
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scalex(1.3) scaley(0.7);
            transform: scalex(1.3) scaley(0.7);
  }
}
@-webkit-keyframes flip-3 {
  0%, 45% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  65%, 100% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
}
@keyframes flip-3 {
  0%, 45% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  65%, 100% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
}
@-webkit-keyframes squidge-3 {
  35% {
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-transform: scalex(1) scaley(1);
            transform: scalex(1) scaley(1);
  }
  45% {
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-transform: scalex(1.3) scaley(0.7);
            transform: scalex(1.3) scaley(0.7);
  }
  55%, 50% {
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-transform: scalex(0.8) scaley(1.4);
            transform: scalex(0.8) scaley(1.4);
  }
  85%, 100% {
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scalex(1) scaley(1);
            transform: scalex(1) scaley(1);
  }
  70% {
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scalex(1.3) scaley(0.7);
            transform: scalex(1.3) scaley(0.7);
  }
}
@keyframes squidge-3 {
  35% {
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-transform: scalex(1) scaley(1);
            transform: scalex(1) scaley(1);
  }
  45% {
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-transform: scalex(1.3) scaley(0.7);
            transform: scalex(1.3) scaley(0.7);
  }
  55%, 50% {
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-transform: scalex(0.8) scaley(1.4);
            transform: scalex(0.8) scaley(1.4);
  }
  85%, 100% {
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scalex(1) scaley(1);
            transform: scalex(1) scaley(1);
  }
  70% {
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scalex(1.3) scaley(0.7);
            transform: scalex(1.3) scaley(0.7);
  }
}
@-webkit-keyframes flip-4 {
  0%, 60% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  80%, 100% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
}
@keyframes flip-4 {
  0%, 60% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  80%, 100% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
}
@-webkit-keyframes squidge-4 {
  50% {
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-transform: scalex(1) scaley(1);
            transform: scalex(1) scaley(1);
  }
  60% {
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-transform: scalex(1.3) scaley(0.7);
            transform: scalex(1.3) scaley(0.7);
  }
  70%, 65% {
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-transform: scalex(0.8) scaley(1.4);
            transform: scalex(0.8) scaley(1.4);
  }
  100%, 100% {
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scalex(1) scaley(1);
            transform: scalex(1) scaley(1);
  }
  85% {
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scalex(1.3) scaley(0.7);
            transform: scalex(1.3) scaley(0.7);
  }
}
@keyframes squidge-4 {
  50% {
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-transform: scalex(1) scaley(1);
            transform: scalex(1) scaley(1);
  }
  60% {
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-transform: scalex(1.3) scaley(0.7);
            transform: scalex(1.3) scaley(0.7);
  }
  70%, 65% {
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-transform: scalex(0.8) scaley(1.4);
            transform: scalex(0.8) scaley(1.4);
  }
  100%, 100% {
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scalex(1) scaley(1);
            transform: scalex(1) scaley(1);
  }
  85% {
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scalex(1.3) scaley(0.7);
            transform: scalex(1.3) scaley(0.7);
  }
}
/*AUTH*/
.form-horizontal{
    background: #fff;
    padding-bottom: 40px;
    border-radius: 15px;
    text-align: center;
   }
   .form-horizontal .heading{
    display: block;
    font-size: 35px;
    font-weight: 700;
    padding: 35px 0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 30px;
   }
   .form-horizontal .form-group{
    padding: 0 40px;
    margin: 0 0 25px 0;
    position: relative;
   }
   .form-horizontal .form-control{
    background: #f0f0f0;
    border: none;
    border-radius: 20px;
    box-shadow: none;
    padding: 0 20px 0 45px;
    height: 40px;
    transition: all 0.3s ease 0s;
   }
   .form-horizontal .form-control:focus{
    background: #e0e0e0;
    box-shadow: none;
    outline: 0 none;
   }
   .form-horizontal .form-group i{
    position: absolute;
    top: 12px;
    left: 60px;
    font-size: 17px;
    color: #c8c8c8;
    transition : all 0.5s ease 0s;
   }
   .form-horizontal .form-control:focus + i{
    color: #00b4ef;
   }
   .form-horizontal .fa-question-circle{
    display: inline-block;
    position: absolute;
    top: 12px;
    right: 60px;
    font-size: 20px;
    color: #808080;
    transition: all 0.5s ease 0s;
   }
   .form-horizontal .fa-question-circle:hover{
    color: #000;
   }
   .form-horizontal .main-checkbox{
    float: left;
    width: 20px;
    height: 20px;
    background: #11a3fc;
    border-radius: 50%;
    position: relative;
    margin: 5px 0 0 5px;
    border: 1px solid #11a3fc;
   }
   .form-horizontal .main-checkbox label{
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
   }
   .form-horizontal .main-checkbox label:after{
    content: "";
    width: 10px;
    height: 5px;
    position: absolute;
    top: 5px;
    left: 4px;
    border: 3px solid #fff;
    border-top: none;
    border-right: none;
    background: transparent;
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
   }
   .form-horizontal .main-checkbox input[type=checkbox]{
    visibility: hidden;
   }
   .form-horizontal .main-checkbox input[type=checkbox]:checked + label:after{
    opacity: 1;
   }
   .form-horizontal .text{
    float: left;
    margin-left: 7px;
    line-height: 20px;
    padding-top: 5px;
    text-transform: capitalize;
   }
   .form-horizontal .btn{
    float: right;
    font-size: 14px;
    color: #fff;
    background: #00b4ef;
    border-radius: 30px;
    padding: 10px 25px;
    border: none;
    text-transform: capitalize;
    transition: all 0.5s ease 0s;
   }
   @media only screen and (max-width: 479px){
    .form-horizontal .form-group{
    padding: 0 25px;
    }
    .form-horizontal .form-group i{
    left: 45px;
    }
    .form-horizontal .btn{
    padding: 10px 20px;
    }
   }
   /*AUTH END*/