
/* style form */
form{
    width: 320px;
    /* height: 500px; */
    margin: 2rem auto 2rem;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.3),
                -1px -1px 3px rgba(0,0,0,0.3);
    border-radius: 1rem;
    overflow: hidden;
    padding-top: 1rem;
}
/* style place holder */
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #cad2da;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #cad2da;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #cad2da;
}
:-moz-placeholder { /* Firefox 18- */
  color: #cad2da;
}

/*logo section style*/
form .logo{
    position: relative;
    width:1rem;
    height:3rem;
    transform: skew(-10deg) translateX(-50%);
    background-color: #feba55;
    left: 50%;
    margin: 0;
    margin-top: 1rem;
    /* margin-bottom: 4rem; */
    padding: 0;
}
form .logo:before,
form .logo:after{
    content: '';
    position: absolute;
    width: 100%;
}
form .logo:before{
    background-color: #40a9f8;
    left:-1.2rem;
    height: 2rem;
    bottom: 0;
}
form .logo:after{
    width: 0;
	height: 0;
	border-bottom: 1.2rem solid red;
	border-right: 1.2rem solid transparent;
    bottom: 0;
    left: 1.2rem;
}
form a{
    text-decoration: none;
}
/*field style*/
/*user name section & password section*/
form .user-name,
form .password{
    width: 90%;
    height: 5rem;
    margin: 2rem auto;
    padding-left: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
    box-shadow: 0 1px 0 rgba(0,0,0,0.25);
    transition: all 0.5s;
}
/* form  .container-1{
    display: flex;
    justify-content: space-around;
} */
form .user-name label,
form .password label{
    color: #789c9e;
}
form .user-name .container-1 .user,
form .password .container-1 .lock{
    color: #789c9e;
}
form .container-1 input[type='text'],
form .container-1 input[type='password']{
    outline: none;
    border: 1px solid transparent;
    padding:0 0.4rem;
    background: border-box;
}
form .container-1 a{
    color: #789c9e;
    transition: color 0.3s;
}
form .container-1 a:hover{
    color: #40a9f8;
}
form .container-1 input[type='text']:focus,
form .container-1 input[type='password']:focus{
    color: #40a9f8;
}
form .sign{
    display: flex;
    height:5rem;
    justify-content: space-around;
    align-items: center;
}
form .sign button{
    outline: none;
    border: none;
    padding: 1rem;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    background: linear-gradient(to bottom,#58d9e5 30%,#40a9f8 70%);
    transition: background 0.5s ease-in-out;
}
form .sign button:hover{
    background: linear-gradient(to bottom,#40a9f8 30%,#58d9e5 70%);
}
form .sign a{
    color: #789c9e;
    transition: color 0.3s;
}
form .sign a:hover{
    color: #40a9f8;
}
form .container-2{
    display: flex;
    height: 80px;
    position: relative;
}
form .balls{
    width: 140px;
    height: 140px;
    background-image: linear-gradient(to right,#58d9e5 30%,#40a9f8 70%);
    border-radius: 50%;
    position: absolute;
}
form .balls:before,
form .balls:after{
    content: '';
    display: block;
    position: absolute;
    width:60px;
    height: 60px;
    border-radius: 50%;
}
form .balls:first-of-type{
    left: 30%;
    top:1rem;
    z-index: 2;
}
form .balls:first-of-type:before{
    width:120px;
    height:120px;
    left:-60px;
    top:30px;
    background-image: linear-gradient(to right,#58d9e5 30%,#40a9f8 70%);
}
form .balls:first-of-type:after{
    left: -92px;
    top: 42.5px;
    background-image: linear-gradient(to right,#58d9e5 30%,#40a9f8 70%);
}
form .balls:last-of-type{
    top:2rem;
    left:48%;
    z-index:1;
}
form .balls:last-of-type:before{
    background: aqua;
    right: -37px;
    top: 16px;
    background-image: linear-gradient(to right,#58d9e5 30%,#40a9f8 70%);
}

.heading {
  font-size: larger;
  font-weight: 900;
  color: #49baee;
}

body {
    color: #566787;
    background: #f5f5f5;
    font-family: 'Varela Round', sans-serif;
    font-size: 13px;
}
.table-wrapper {
    background: #fff;
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 3px;
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
}
.table-title {        
    padding-bottom: 15px;
    background: #40a9f8;
    /* background: linear-gradient(to bottom,#58d9e5 30%,#40a9f8 70%); */
    color: #fff;
    padding: 16px 30px;
    margin: -20px -25px 10px;
    border-radius: 3px 3px 0 0;
}
.table-title h2 {
    margin: 5px 0 0;
    font-size: 24px;
}
.table-title .btn-group {
    float: right;
}
.table-title .btn {
    color: #fff;
    float: right;
    font-size: 13px;
    border: none;
    min-width: 50px;
    border-radius: 2px;
    border: none;
    outline: none !important;
    margin-left: 10px;
}
.table-title .btn i {
    float: left;
    font-size: 21px;
    margin-right: 5px;
}
.table-title .btn span {
    float: left;
    margin-top: 2px;
}
table.table tr th, table.table tr td {
    border-color: #e9e9e9;
    padding: 12px 15px;
    vertical-align: middle;
}
table.table tr th:first-child {
    width: 60px;
}
table.table tr th:last-child {
    width: 100px;
}
table.table-striped tbody tr:nth-of-type(odd) {
    background-color: #fcfcfc;
}
table.table-striped.table-hover tbody tr:hover {
    background: #f5f5f5;
}
table.table th i {
    font-size: 13px;
    margin: 0 5px;
    cursor: pointer;
}	
table.table td:last-child i {
    opacity: 0.9;
    font-size: 22px;
    margin: 0 5px;
}
table.table td a {
    font-weight: bold;
    color: #566787;
    display: inline-block;
    text-decoration: none;
    outline: none !important;
}
table.table td a:hover {
    color: #2196F3;
}
table.table td a.editTanent {
    color: chocolate;
}
table.table td a.deleteTanent {
    color: #F44336;
}
table.table td i {
    font-size: 19px;
}
table.table .avatar {
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 10px;
}
.pagination {
    float: right;
    margin: 0 0 5px;
}
.pagination li a {
    border: none;
    font-size: 13px;
    min-width: 30px;
    min-height: 30px;
    color: #999;
    margin: 0 2px;
    line-height: 30px;
    border-radius: 2px !important;
    text-align: center;
    padding: 0 6px;
}
.pagination li a:hover {
    color: #666;
}	
.pagination li.active a, .pagination li.active a.page-link {
    background: #03A9F4;
}
.pagination li.active a:hover {        
    background: #0397d6;
}
.pagination li.disabled i {
    color: #ccc;
}
.pagination li i {
    font-size: 16px;
    padding-top: 6px
}
.hint-text {
    float: left;
    margin-top: 10px;
    font-size: 13px;
}    
/* Custom checkbox */
.custom-checkbox {
    position: relative;
}
.custom-checkbox input[type="checkbox"] {    
    opacity: 0;
    position: absolute;
    margin: 5px 0 0 3px;
    z-index: 9;
}
.custom-checkbox label:before{
    width: 18px;
    height: 18px;
}
.custom-checkbox label:before {
    content: '';
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    background: white;
    border: 1px solid #bbb;
    border-radius: 2px;
    box-sizing: border-box;
    z-index: 2;
}
.custom-checkbox input[type="checkbox"]:checked + label:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 3px;
    width: 6px;
    height: 11px;
    border: solid #000;
    border-width: 0 3px 3px 0;
    transform: inherit;
    z-index: 3;
    transform: rotateZ(45deg);
}
.custom-checkbox input[type="checkbox"]:checked + label:before {
    border-color: #03A9F4;
    background: #03A9F4;
}
.custom-checkbox input[type="checkbox"]:checked + label:after {
    border-color: #fff;
}
.custom-checkbox input[type="checkbox"]:disabled + label:before {
    color: #b8b8b8;
    cursor: auto;
    box-shadow: none;
    background: #ddd;
}
/* Modal styles */
.modal .modal-dialog {
    max-width: 400px;
}
.modal .modal-header, .modal .modal-body, .modal .modal-footer {
    padding: 20px 30px;
}
.modal .modal-content {
    border-radius: 3px;
}
.modal .modal-footer {
    background: #ecf0f1;
    border-radius: 0 0 3px 3px;
}
.modal .modal-title {
    display: inline-block;
}
.modal .form-control {
    border-radius: 2px;
    box-shadow: none;
    border-color: #dddddd;
    font-size: small;
}
.modal textarea.form-control {
    resize: vertical;
}
.modal .btn {
    border-radius: 2px;
    /* min-width: 100px; */
}	
.modal form label {
    font-weight: normal;
}
.error-message {
    color:chocolate;
}

.inputBox {
    width: 250px;
}


.logoutButton {
  --figure-duration: 100ms;
  --transform-figure: none;
  --walking-duration: 100ms;
  --transform-arm1: none;
  --transform-wrist1: none;
  --transform-arm2: none;
  --transform-wrist2: none;
  --transform-leg1: none;
  --transform-calf1: none;
  --transform-leg2: none;
  --transform-calf2: none;

  background: none;
  border: 0;
  color: #f4f7ff;
  cursor: pointer;
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  outline: none;
  padding: 0 0 0 20px;
  perspective: 100px;
  position: relative;
  text-align: left;
  width: 130px;
  -webkit-tap-highlight-color: transparent;


  &::before {
    /* background-color: #1f2335; */
    background-color: #40a9f8;
    /* background: linear-gradient(to bottom,#58d9e5 30%,#40a9f8 70%); */
    border-radius: 5px;
    content: '';
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: none;
    transition: transform 50ms ease;
    width: 100%;
    z-index: 2;
  }

  &:hover {
    .door {
      transform: rotateY(20deg);
    }
  }

  &:active {
    &::before {
      transform: scale(.96);
    }

    .door {
      transform: rotateY(28deg);
    }
  }

  &.clicked {
    &::before {
      transform: none;
    }

    .door {
      transform: rotateY(35deg);
    }
  }

  &.door-slammed {
    .door {
      transform: none;
      transition: transform 100ms ease-in 250ms;
    }
  }

  &.falling {
    animation: shake 200ms linear;

    .bang {
      animation: flash 300ms linear;
    }

    .figure {
      animation: spin 1000ms infinite linear;
      bottom: -1080px;
      opacity: 0;
      right: 1px;
      transition: transform calc(var(--figure-duration) * 1ms) linear,
        bottom calc(var(--figure-duration) * 1ms) cubic-bezier(0.7, 0.1, 1, 1) 100ms,
        opacity calc(var(--figure-duration) * 0.25ms) linear calc(var(--figure-duration) * 0.75ms);
      z-index: 1;
    }
  }

  &--light {
    &::before {
      background-color: #f4f7ff;
    }

    .button-text {
      /* color: #1f2335; */
      color: #1f2335;
    }


    .door,
    .doorway {
      fill: #1f2335;
    }
  }
}

.button-text {
  color: #f4f7ff;
  font-weight: 500;
  position: relative;
  z-index: 10;
}

svg {
  display: block;
  position: absolute;
}

.figure {
  bottom: 5px;
  /* fill: #4371f7; */
  fill: #103191;
  right: 18px;
  transform: var(--transform-figure);
  transition: transform calc(var(--figure-duration) * 1ms) cubic-bezier(0.2, 0.1, 0.80, 0.9);
  width: 30px;
  z-index: 4;
}

.door,
.doorway {
  bottom: 4px;
  fill: #f4f7ff;
  right: 12px;
  width: 32px;
} 

.door {
  transform: rotateY(20deg);
  transform-origin: 100% 50%;
  transform-style: preserve-3d;
  transition: transform 200ms ease;
  z-index: 5;

  path {
    /* fill: #4371f7;
    stroke: #4371f7; */
    fill: #103191;;
    stroke: #103191;;
    stroke-width: 4;
  }
}

.doorway {
  z-index: 3;
}

.bang {
  opacity: 0;
}

.arm1, .wrist1, .arm2, .wrist2, .leg1, .calf1, .leg2, .calf2 {
  transition: transform calc(var(--walking-duration) * 1ms) ease-in-out;
}

.arm1 {
  transform: var(--transform-arm1);
  transform-origin: 52% 45%;
}

.wrist1 {
  transform: var(--transform-wrist1);
  transform-origin: 59% 55%;
}

.arm2 {
  transform: var(--transform-arm2);
  transform-origin: 47% 43%;
}

.wrist2 {
  transform: var(--transform-wrist2);
  transform-origin: 35% 47%;
}

.leg1 {
  transform: var(--transform-leg1);
  transform-origin: 47% 64.5%;
}

.calf1 {
  transform: var(--transform-calf1);
  transform-origin: 55.5% 71.5%;
}

.leg2 {
  transform: var(--transform-leg2);
  transform-origin: 43% 63%;
}

.calf2 {
  transform: var(--transform-calf2);
  transform-origin: 41.5% 73%;
}

@keyframes spin {
  from { transform: rotate(0deg) scale(0.94); }
  to { transform: rotate(359deg) scale(0.94); }
}

@keyframes shake {
  0% { transform: rotate(-1deg); }
  50% { transform: rotate(2deg); }
  100% { transform: rotate(-1deg); }
}

@keyframes flash {
  0% { opacity: 0.4; }
  100% { opacity: 0; }
}

  button {
    margin: 20px;
  }

  @keyframes loader-element {
    0% {
      transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }

  .loader-element div {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 20px solid #40a9f8;
    border-top-color: transparent;
    border-radius: 50%;
  }

  .loader-element div {
    animation: loader-element 1s linear infinite;
    top: 100px;
    left: 100px;
  }


  .loader-element {
    transform: translateZ(0) scale(1);
    backface-visibility: hidden;
    transform-origin: 0 0;

    z-index: 999999 !important;
    position: absolute;
    top: 25vh;
    left: 43vw;
  }


  .text-right { 
    text-align: -webkit-right
  }