/* @import url('https://fonts.googleapis.com/css?family=Merriweather:700,900|Comfortaa|Open+Sans:100,300,400,500,700'); */
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000');

/* Reset */
*{
  margin:0;
  padding:0;
  outline:none;
  /* box-sizing: border-box; */
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent;
}

/* Custom Scrollbar works on Firefox only */
*{
  scrollbar-width: thin;
  scrollbar-height: thin;
  scroll-behavior: smooth;
}

/* Custom Scrollbar works on Chrome/Edge/Safari */
*::-webkit-scrollbar{
  width: 0.5rem;
  height: 0.5rem;
}

[data-letters]:after{
  width: 2rem;
  height: 2rem;
  color: white;
  min-width: 2rem;
  min-height: 2rem;
  background: plum;
  margin-left: 1rem;
  font-size: 0.9rem;
  border-radius: 50%;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  content: attr(data-letters);
}

body{
  width:100vw;
  height:100vh;
  overflow:hidden;
  font-weight:300;
  font-family:"Mulish", sans-serif;
}
a{
  color:#232020;
  cursor:pointer;
  user-select:none;
  text-decoration:none;
}
button{
  cursor:pointer;
  user-select:none;
}
a::-moz-focus-inner,
button::-moz-focus-inner{
  border:0;
}
b,
strong{
  font-weight:bold
}
small,
.small{
  font-size:85%;
}
.h1, h1,
.h2, h2,
.h3, h3,
.h4, h4,
.h5, h5,
.h6, h6{
  color:inherit;
  font-weight:500;
  line-height:1.25;
  font-family:inherit;
}
h1{
  font-size:2.5rem;
}
h2{
  font-size:2.25rem;
}
h3{
  font-size:2rem;
}
h4{
  font-size:1.75rem;
}
h5{
  font-size:1.5rem;
}
h6{
  font-size:1.25rem;
}
p{
  font-size:1rem;
}
::placeholder{
  opacity:1;
  color:#B6BCC3;
}
input,
select,
button,
optgroup,
textarea{
  font-family:"Mulish", sans-serif;
}
textarea{
  resize: none;
}
select{
  text-transform: none;
  -o-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-size: 8px 8px;
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="24" viewBox="0 0 32 24"><polygon points="0,0 32,0 16,24" style="fill: black"></polygon></svg>');
}

img{
  position: relative;
}

/* Chrome & Others */
img[alt]:after{
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  padding: 1rem;
  font-size: 2rem;
  content: "\e97e";
  font-weight: 300;
  position: absolute;
  text-align: center;
  align-items: center;
  object-fit: contain;
  display: inline-flex;
  border-radius: 0.15rem;
  box-sizing: border-box;
  justify-content: center;
  font-family: 'font-icons', sans-serif;
}

.tasks ol,
.tasks ul{
  padding:0.5rem 1.5rem;
}
.relative{
  position: relative;
}
.absolute{
  position: absolute;
}
:required{
  box-shadow: none;
  color: inherit;
}
:invalid{
  box-shadow:none;
}
.spacer-100{
  height: 100px;
}
.spacer-50{
  height: 50px;
}
.spacer-25{
  height: 25px;
}
.w-12{
  width: 12rem;
  max-width: 12rem;
}
.h-3{
  height: 3rem;
}
.toggle-wrapper{
  padding: 0.5rem 0;
}
.toggle-option{
  width:3rem;
  display:flex;
  height:1.4rem;
  position:relative;
  align-items:center;
  justify-content:space-between;
}
.toggle{
  top:0;
  left:0;
  right:0;
  bottom:0;
  transition:.4s;
  cursor:pointer;
  position:absolute;
  border-radius:2.1rem;
  background-color:#cccccc;
}
.toggle:before{
  left:4px;
  bottom:2px;
  content:"";
  width:1.1rem;
  height:1.1rem;
  transition:.4s;
  border-radius:50%;
  position:absolute;
  background-color:white;
}
.toggle.on{
  background-color:#232020;
}
.toggle.on:before{
  transform:translateX(1.4rem);
}
.trash{
  align-self:center;
  color:#d24646 !important;
  border-color:#d24646 !important;
}
.hide{
  display:none !important;
}
.noopacity{
  opacity: 0 !important
}
.h-100{
  height:100% !important;
}
.w-auto{
  width:auto !important;
}
.nopadding{
  padding:0 !important;
}
.bg-transparent{
  background: transparent !important;
}
@keyframes fadeEffect{
  from{
    opacity:0;
  }
  to{
    opacity:1;
  }
}
.added{
  animation: added 0.5s;
}
@keyframes added{
  0% {
    background: #8ae88a;
  }
  100% {
    background: inherit;
  }
}
.trashed {
  animation: trashed 0.3s;
}
@keyframes trashed {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-50%);
  }
}


/* Pulse Animation */
.pulse{
  cursor: pointer;
  animation: pulse 2s infinite;
  background: #c6c6c6 !important;
  box-shadow: 0 0 0 rgba(198,198,198, 0.4);
}
.pulse:hover{
  animation: none;
}

@-webkit-keyframes pulse{
  0%{
    -webkit-box-shadow: 0 0 0 0 rgba(198,198,198, 0.4);
  }
  70%{
    -webkit-box-shadow: 0 0 0 10px rgba(198,198,198, 0);
  }
  100%{
    -webkit-box-shadow: 0 0 0 0 rgba(198,198,198, 0);
  }
}
@keyframes pulse{
  0%{
    -moz-box-shadow: 0 0 0 0 rgba(198,198,198, 0.4);
    box-shadow: 0 0 0 0 rgba(198,198,198, 0.4);
  }
  70%{
    -moz-box-shadow: 0 0 0 10px rgba(198,198,198, 0);
    box-shadow: 0 0 0 10px rgba(198,198,198, 0);
  }
  100%{
    -moz-box-shadow: 0 0 0 0 rgba(198,198,198, 0);
    box-shadow: 0 0 0 0 rgba(198,198,198, 0);
  }
}
/* Pulse Animation */


/* Blinking Background */
.blink-bg{
  animation: blinkingBackground 2s infinite;
}
@keyframes blinkingBackground{
  0%		{ background-color: #ffffff; }
  25%		{ background-color: #ffecec; }
  50%		{ background-color: #ffebeb; }
  75%		{ background-color: #ffecec; }
  100%  { background-color: #ffffff; }
}
/* Blinking Background */


.close-icon{
  width: 1rem;
  height: 1rem;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.15rem;
  color: #ffffff;
  line-height: 1rem;
  text-align: center;
  border-radius: 50%;
  background-color: #d24646;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.close-icon:hover{
  color: #ffffff;
  background-color: #f38585;
}

.required{
  color:#ec4254 !important;
}
.space-between{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
}
.space-between .dropdown,
.space-between .controls{
  flex: 1;
}
.space-between a,
.space-between button{
  margin-left: 0.5rem;
}
.space-between a:first-child,
.space-between button:first-child{
  margin-left: 0;
}
.short-text{
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.short-text *{
  display: inline-block;
}

/* Structures */
#app{
  width:100%;
  height:100%;
  display:flex;
}
#wrapper{
  flex:1;
  height:100%;
  display:flex;
  overflow: hidden;
  flex-direction:column;
}
#scrollable{
  flex:1;
  z-index: 1;
  overflow-y:auto;
  overflow-x:hidden;
}
.empty{
  width:100%;
  height:100%;
  display:flex;
  font-size:1.5rem;
  text-align:center;
  align-items:center;
  flex-direction:column;
  border-radius: 0.25rem;
  box-sizing: border-box;
  justify-content:center;
  text-transform: capitalize;
}
.empty i{
  font-size:5rem;
  margin-bottom:1rem;
}
.empty.bg{
  padding: 5rem 0;
  border-radius: 0.25rem;
}
.empty small{
  margin-top: 1rem;
  font-size: 0.95rem;
}
.empty.small i{
  font-size: 3rem;
}
#scrollable .content{
  padding:1rem;
  position:relative;
}

.coming-soon{
  top:0;
  left:0;
  z-index:1;
  width:100%;
  height:100%;
  display:flex;
  font-size:2rem;
  position:absolute;
  align-items:center;
  justify-content:center;
  background-color:rgba(255,255,255,0.5);
}

/* Inputs, Buttons */
.group-section{
  margin-bottom: 1.5rem;
  border-radius: 0.25rem;
  padding: 0.5rem 0.5rem 2rem 0.5rem;
}
.group-section .group{
  padding: 0 0.5rem;
}
.group-section .group:last-child{
  margin-bottom: 0;
}
.group-section h4{
  top: -1.25rem;
  padding: 0 1rem;
  font-weight: 500;
  font-size: 1.15rem;
  position: relative;
  margin-bottom: 0.5rem;
  display: inline-block;
  text-transform: uppercase;
}
.group{
  display:block;
  margin-bottom:1rem;
}
.group label{
  display:flex;
  align-items:center;
  margin-bottom:0.5rem;
}
.group.space-between label{
  margin: 0;
}
.group .dropdown{
  display:block;
}
.multi-controls{
  display:flex;
}
.controls{
  width:100%;
  display:block;
  font-size:1rem;
  color: inherit;
  line-height:1.5;
  border-radius:0.25rem;
  box-sizing:border-box;
  padding:0.5rem 0.75rem;
  -webkit-appearance: none;
  transition:border-color ease-in-out .15s,
  box-shadow ease-in-out .15s;
  font-family:"Mulish", sans-serif;
}
input[type="range"]{
  width: 100%;
  outline: none;
}
.multi-controls .controls:first-child{
  border-radius:0.25rem 0 0 0.25rem;
  margin-right:-1px;
}
.controls.small{
  width:8rem;
}
.multi-controls .controls:last-child{
  border-radius:0 0.25rem 0.25rem 0;
}
.help-text{
  display: flex;
  color: #ababab;
  margin: 0.25rem 0;
  align-items: center;
  justify-content: flex-start;
}
.btn{
  opacity:1;
  outline:none;
  color:#292b2c;
  font-size:1rem;
  cursor:pointer;
  font-weight:400;
  user-select:none;
  text-align:center;
  align-self:center;
  white-space:nowrap;
  padding:0.5rem 1rem;
  display:inline-block;
  border-radius:0.25rem;
  vertical-align:middle;
  text-overflow:ellipsis;
  border:1px solid #292b2c;
  background-color:#f1f1f1;
}
.btn::-moz-focus-inner{
  border:0;
}
.btn:hover{
  opacity:0.8;
}
.btn-secondary{
  color:#333;
  border-color:#ccc;
  background-color:#fff;
}
.btn.btn-trash,
.btn.btn-trash:focus{
  color:#fff;
  border-color:#d24646;
  background-color:#d24646;
}
.btn.btn-success,
.btn.btn-success:focus{
  color:#fff;
  border-color:#28ab4a;
  background-color:#4ab12a;
}
.btn.btn-upload{
  display:flex;
  position:relative;
  justify-content:center;
}
.btn.btn-upload input[type=file]{
  left:0;
  opacity:0;
  width:100%;
  height:100%;
  cursor:pointer;
  position:absolute;
}
.btn.btn-upload i{
  margin-right:0.5rem;
}
.btn.btn-circle{
  padding:0;
  border-radius:50%;
  align-items:center;
  display:inline-flex;
  justify-content:center;
  box-shadow:0 2px 5px -2px rgba(0,0,0,0.35);
}
.btn.btn-square{
  border-radius:0;
}
.btn.btn-icon{
  padding:0.25rem;
}
.btn.btn-lg{
  font-size:1.5rem;
  padding:1rem 1.5rem;
}
.btn.btn-md{
  font-size:1.25rem;
  padding:0.75rem 1.25rem;
}
.btn.btn-sm{
  font-size:0.85rem;
  padding:0.5rem 0.75rem;
}
.btn.btn-xs{
  font-size:0.7rem;
  padding:0.25rem 0.5rem;
}
.btn.btn-save.disabled{
  border-color:#666;
  background-color:#666;
}
.btn.btn-save.btn-icon.disabled{
  border-color:#232020;
  background-color:#232020;
}
.btn.btn-block{
  display:block !important;
}
.disabled,
input[readonly],
input[disabled]{
  cursor:default;
  pointer-events:none;
  opacity:0.75 !important;
}

/* Loader */
._spinner{
  top:0;
  left:0;
  right:0;
  bottom:0;
  display:none;
  position:absolute;
}
._modal ._spinner{
  top:0;
}
._loading ._spinner,
._requesting ._spinner{
  z-index:100;
  display:flex;
  align-items:center;
  justify-content:center;
  background-color:#464a4c10;
}
/* Loader Default */
.loader-default,
.loader-default:before,
.loader-default:after{
  width: 1rem;
  height: 3rem;
  animation: load1 1s infinite ease-in-out;
  -webkit-animation: load1 1s infinite ease-in-out;
}
.loader-default{
  font-size: 0;
  margin: 0 auto;
  position: relative;
  transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  animation-delay: -0.16s;
  -webkit-animation-delay: -0.16s;
}
.loader-default:before,
.loader-default:after{
  top: 0;
  content: '';
  position: absolute;
}
.loader-default:before{
  left: -2rem;
  animation-delay: -0.32s;
  -webkit-animation-delay: -0.32s;
}
.loader-default:after{
  left: 2rem;
}
@keyframes load1{
  0%,
  80%,
  100%{
    height: 3rem;
    box-shadow: 0 0;
  }
  40%{
    height: 4rem;
    box-shadow: 0 -2rem;
  }
}

/* Progress Bar */
.progressbar{
	overflow: hidden;
	height: 20px;
	background-color: #ccc;
	border-radius: 16px;
	-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
	box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
  margin-bottom: 20px;
}
.progressbar-bar{
	width: 0;
	height: 100%;
	color: #fff;
  display: flex;
	text-align: center;
  align-items: center;
  justify-content: center;
	background-color: #388087;
}
.progressbar-striped .progressbar-bar{
  background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  background-size: 40px 40px;
}
.progressbar.active .progressbar-bar{
	-webkit-animation: progress-bar-stripes 2s linear infinite;
	animation: progress-bar-stripes 2s linear infinite;
	-moz-animation: progress-bar-stripes 2s linear infinite;
}


/* Speedometer */
.speedogauge-wrapper {
  display: inline-block;
  width: auto;
  margin: 0 auto;
  padding: 20px 15px 15px;
}
.speedogauge {
  background: #e7e7e7;
  box-shadow: 0 -3px 6px 2px rgba(0, 0, 0, 0.50);
  width: 200px;
  height: 100px;
  border-radius: 100px 100px 0 0 !important;
  position: relative;
  overflow: hidden;
}
.speedogauge.min-scaled {
  transform: scale(0.5);
}
.speedogauge-center {
  content: '';
  color: #fff;
  width: 60%;
  height: 60%;
  background: #15222E;
  border-radius: 100px 100px 0 0 !important;
  position: absolute;
  box-shadow: 0 -13px 15px -10px rgba(0, 0, 0, 0.28);
  right: 21%;
  bottom: 0;
  color: #fff;
  z-index: 10;
}
.speedogauge-center .label,
.speedogauge-center .number {
  display: block;
  width: 100%;
  text-align: center;
  border: 0 !important;
}
.speedogauge-center .label {
  font-size: 1.2em;
  margin: 1em 0 0 0;
}
.speedogauge-center .number {
  opacity: 0.6;
  font-size: 0.75em;
}
.needle{
  width: 80px;
  height: 7px;
  background: #15222E;
  border-bottom-left-radius: 100% !important;
  border-bottom-right-radius: 5px !important;
  border-top-left-radius: 100% !important;
  border-top-right-radius: 5px !important;
  position: absolute;
  bottom: -2px;
  left: 20px;
  transform-origin: 100% 4px;
  transform: rotate(0deg);
  transition: transform 0.5s ease-in-out;
  box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.38);
  display: block;
  z-index: 9;
}
.slice-colors{
  height: 100%;
}
.slice-colors .st{
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border: 50px solid transparent;
}
.four .slice-colors .st.slice-item:nth-child(2){
  border-top: 50px #f1c40f solid;
  border-right: 50px #f1c40f solid;
  background-color: #1eaa59;
}
.four .slice-colors .st.slice-item:nth-child(4) {
  left: 50%;
  border-bottom: 50px #E84C3D solid;
  border-right: 50px #E84C3D solid;
  background-color: #e67e22;
}


/* Css Spinner */
.lds-spinner{
  width: 35px;
  height: 35px;
  position: relative;
  align-items: center;
  display: inline-flex;
  justify-content: center;
}
.lds-spinner div{
  transform-origin: 50%;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after{
  left: 0;
  top: 5px;
  width: 2px;
  height: 5px;
  content: " ";
  display: block;
  position: absolute;
  border-radius: 50%;
  background: #232020;
}
.lds-spinner div:nth-child(1){
  animation-delay: -1.1s;
  transform: rotate(0deg);
}
.lds-spinner div:nth-child(2){
  animation-delay: -1s;
  transform: rotate(30deg);
}
.lds-spinner div:nth-child(3){
  animation-delay: -0.9s;
  transform: rotate(60deg);
}
.lds-spinner div:nth-child(4){
  animation-delay: -0.8s;
  transform: rotate(90deg);
}
.lds-spinner div:nth-child(5){
  animation-delay: -0.7s;
  transform: rotate(120deg);
}
.lds-spinner div:nth-child(6){
  animation-delay: -0.6s;
  transform: rotate(150deg);
}
.lds-spinner div:nth-child(7){
  animation-delay: -0.5s;
  transform: rotate(180deg);
}
.lds-spinner div:nth-child(8){
  animation-delay: -0.4s;
  transform: rotate(210deg);
}
.lds-spinner div:nth-child(9){
  animation-delay: -0.3s;
  transform: rotate(240deg);
}
.lds-spinner div:nth-child(10){
  animation-delay: -0.2s;
  transform: rotate(270deg);
}
.lds-spinner div:nth-child(11){
  animation-delay: -0.1s;
  transform: rotate(300deg);
}
.lds-spinner div:nth-child(12){
  animation-delay: 0s;
  transform: rotate(330deg);
}
@keyframes lds-spinner{
  0%{
    opacity: 1;
  }
  100%{
    opacity: 0;
  }
}


/* Modal */
.modal{
  opacity:0;
  z-index:-1;
  width:100vw;
  height:100vh;
  display:flex;
  position:absolute;
  transform:translate(-100%);
}
.modal.center{
  align-items:center;
  justify-content:center;
}
.modal.right{
  justify-content:flex-end;
}
.modal.open{
  opacity:1;
  z-index:102;
  transform:translate(0);
  background-color:rgba(0,0,0,0.4);
}
.modal .modal-content{
  display:flex;
  max-width:40rem;
  background-color:#fff;
  flex-direction:column;
  box-shadow:0 10px 15px 0 rgba(0,0,0,0.2),0 5px 20px 0 rgba(0,0,0,0.15);
}
.modal.center .modal-content{
  opacity:0;
  margin-left:5rem;
  border-radius:0.5rem;
  transform:scale(0.5);
  transition:transform 0.3s cubic-bezier(0, 0.8, 0.6, 1);
}
.modal.center.open .modal-content{
  opacity:1;
  transform:scale(1);
}
.modal.right .modal-content{
  height:100%;
  width:30rem;
  background-color:#fff;
  transform:translate3d(100%, 0, 0);
  transition:transform 0.3s cubic-bezier(0, 0.8, 0.6, 1);
}
.modal.right.open .modal-content{
  transform:translate3d(0, 0, 0);
}
.modal .modal-header{
  padding:1rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.modal .modal-header .close{
  font-size: 1.25rem;
}
.modal .modal-header .modal-title{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal .modal-body{
  flex:1;
  padding:1rem;
  overflow-y:auto;
  overflow-x:hidden;
  position:relative;
}
.modal.center .modal-body{
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.modal .modal-footer{
  padding:1rem;
  display:flex;
  align-items:center;
  justify-content:flex-end;
}
.modal .modal-footer .btn{
  margin-left:1rem;
}
.modal-title{
  display:block;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
}
.modal-header-right{
  display: flex;
  align-items: center;
}

/* Notify Message */
#messages{
  left:50%;
  bottom:2rem;
  z-index:103;
  position:absolute;
  transform:translateX(-50%);
}
#messages div{
  opacity:0;
  margin:1rem;
  display:flex;
  min-width:15rem;
  max-width:25rem;
  position:relative;
  border-radius:10px;
  align-items:center;
  padding:0.75rem 1rem;
  align-items:flex-start;
  transform:translate3d(0, 200%, 0);
  box-shadow:0 5px 10px 0 rgba(0,0,0,0.2);
  transition:opacity 0.3s, transform 0.3s cubic-bezier(0, 0.8, 0.6, 1);
}
#messages .close{
  top:0;
  right:5px;
  border:none;
  outline:none;
  cursor:pointer;
  padding:0.25rem;
  background:none;
  position:absolute;
}
#messages .show{
  opacity:1;
  transform:translate3d(0, 0, 0);
}
.message-box h3{
  font-size:1rem;
  margin:0 0 0.5rem 0;
}
.message-box i{
  padding:0.25rem;
  border-radius:5px;
  margin-right:0.5rem;
}
.message-info i{
  color:#ffffff;
  background:#006CE5;
}
.message-error i{
  color:#ffffff;
  background:#EA4E2C;
}
.message-success i{
  color:#ffffff;
  background:#3FBE61;
}
.message-warning i{
  color:#ffffff;
  background:#EE9500;
}
.message-box p{
  margin:0;
  color:#333D48;
  font-size:1rem;
  font-weight:500;
  line-height:1.55rem;
}
.message-box p span.short-text{
  max-width:200px;
  display:inline-block;
  margin-right:0.25rem;
}
.message-info{
  background:#E5EFFA;
  border:1px solid #006CE5;
}
.message-error{
  background:#FCEDE9;
  border:1px solid #EA4E2C;
}
.message-success{
  background:#EAF7EE;
  border:1px solid #3FBE61;
}
.message-warning{
  background:#FEF7EA;
  border:1px solid #EE9500;
}

/* Switch */
.switch{
  width:60px;
  height:34px;
  position:relative;
  display:inline-block;
}
.switch input{
  width:0;
  height:0;
  opacity:0;
}
.slider{
  top:0;
  left:0;
  right:0;
  bottom:0;
  cursor:pointer;
  transition:.4s;
  position:absolute;
  background-color:#ccc;
  -webkit-transition:.4s;
}
.slider:before{
  left:4px;
  content:"";
  width:26px;
  bottom:4px;
  height:26px;
  transition:.4s;
  position:absolute;
  background-color:white;
  -webkit-transition:.4s;
}
input:checked + .slider{
  background-color:#2196F3;
}
input:focus + .slider{
  box-shadow:0 0 1px #2196F3;
}
input:checked + .slider:before{
  transform:translateX(26px);
  -ms-transform:translateX(26px);
  -webkit-transform:translateX(26px);
}
/* Rounded sliders */
.slider.round{
  border-radius:34px;
}
.slider.round:before{
  border-radius:50%;
}

/* Tooltip */
[tooltip]{
  z-index: 101;
  position:relative;
  display:inline-block;
}
[tooltip]::before{
  left:50%;
  opacity:0;
  content:"";
  top:-0.4rem;
  z-index:100;
  position:absolute;
  border-style:solid;
  transform:translateX(-50%);
  border-width:0.25rem 0.4rem 0 0.4rem;
  border-color:rgba(0,0,0,1) transparent transparent transparent;
}

[tooltip-position='left']::before{
  top:50%;
  left:0%;
  margin-left:-0.75rem;
  transform:translatey(-50%) rotate(-90deg);
}
[tooltip-position='top']::before{
  left:50%;
}
[tooltip-position='bottom']::before{
  top:100%;
  margin-top:0.5rem;
  transform:translateX(-50%) translatey(-100%) rotate(-180deg);
}
[tooltip-position='right']::before{
  top:50%;
  left:100%;
  margin-left:0;
  transform:translatey(-50%) rotate(90deg);
}
[tooltip]::after{
  left:50%;
  opacity:0;
  z-index:1;
  color:#fff;
  top:-0.4rem;
  min-width:3rem;
  font-size:0.8rem;
  position:absolute;
  text-align:center;
  white-space:nowrap;
  pointer-events:none;
  line-height:initial;
  content:attr(tooltip);
  border-radius:0.25rem;
  padding:0.25rem 0.5rem;
  background:rgba(0,0,0,1);
  transform:translateX(-50%) translateY(-100%);
}
[tooltip-position='left']::after{
  left:0%;
  top:50%;
  margin-left:-0.45rem;
  transform:translateX(-100%) translateY(-50%);
}
[tooltip-position='top']::after{
  left:50%;
}
[tooltip-position='bottom']::after{
  top:100%;
  margin-top:0.5rem;
  transform:translateX(-50%) translateY(0%);
}
[tooltip-position='right']::after{
  top:50%;
  left:100%;
  margin-left:0.45rem;
  transform:translateX(0%) translateY(-50%);
}
[tooltip]:hover::after,[tooltip]:hover::before{
  opacity:1;
}

/* Message */
.alert{
  padding:0.5rem 1rem;
  border-radius:0.25rem;
  box-shadow:0 2px 3px 0 rgba(0,0,0,0.15);
}
.alert-warning{
  color:#fff;
  background-color:#f2a531;
}
.alert-error{
  color:#fff;
  background-color:#d24646;
}
.alert-success{
  color:#fff;
  background-color:#70b65d;
}
.alert-info{
  color:#fff;
  background-color:#1bbdb2;
}

/* Table */
.table-responsive{
  overflow: auto;
  border-width: 1px;
  border-style: solid;
  border-radius: 0.25rem;
}
.table-responsive .table,
.table-responsive table{
  border: none;
}
.table, table{
  margin:0;
}
.table{
  width:100%;
  margin:0 auto;
  border-spacing:0;
  position:relative;
  border-radius:0.25rem;
  box-sizing:content-box;
  border-collapse:separate;
}
.table thead th{
  padding:1rem;
  text-align:left;
  font-weight:bold;
  white-space: nowrap;
  vertical-align:middle;
  box-sizing:content-box;
}
.table tbody td{
  padding:1rem;
  vertical-align:middle;
  box-sizing:content-box;
  -webkit-hyphens:auto;
  -moz-hyphens:auto;
  -ms-hyphens:auto;
  hyphens:auto;
}
.table thead th:last-child{
  text-align:right;
  white-space: nowrap;
  border-top-right-radius:0.25rem;
}
.table tbody td:last-child{
  text-align:right;
  white-space: nowrap;
}
.table thead th:first-child{
  text-align:left;
  border-top-left-radius:0.25rem;
}
.table tbody td:first-child{
  text-align:left;
}
.table tbody td:last-child .table-btn{
  color:#555555;
  width:1.5rem;
  height:1.5rem;
  border-radius:50%;
  align-items:center;
  display:inline-flex;
  margin-left: 0.3rem;
  justify-content:center;
  border:1px solid #555555;
}
.table tbody td:last-child{
  border-right:none;
}
.table th br,
.table td br{
  display:none;
}
.table tbody td:last-child a{
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  align-items: center;
  display: inline-flex;
  justify-content: center;
}
.table .table-lists{
  list-style: none;
}
.table .table-lists li{
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.table .table-lists li:last-child{
  margin-bottom: 0;
}
.table .table-lists li i{
  font-size: 1.25rem;
  margin-right: 0.5rem;
}
.table .table-lists li span{
  font-size: 0.85rem;
}
.sticky-cols{
  right: 0;
  width: 1%;
  z-index: 9999;
  position: sticky;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.07);
}
th.sticky-cols{
  z-index: 0;
  box-shadow: none;
}

.terms{
  padding:1rem;
  margin:2rem 0;
  border-radius:0.5em;
  border:1px solid #ddd;
  background-color:#f7f7f7;
}
.terms label{
  cursor:pointer;
  margin-bottom:0;
  display:inline-block;
  padding-left:1.25rem;
}
.terms p{
  font-size:0.9rem;
}
.terms input{
  float:left;
  margin-top:5px;
  position:static;
  margin-left:-1.25rem;
}
.terms ul{
  font-size:0.9rem;
  margin:1rem 0 0 1rem;
}
.terms li{
  margin-bottom:0.5rem;
}


/* Play Nodes */
.email .flowchart-operator-inputs-outputs{
  background:#fff url("../images/opt-email.png") no-repeat scroll 0 50% / 25%
}
.sms .flowchart-operator-inputs-outputs{
  background:#fff url("../images/opt-sms.png") no-repeat scroll 0 50% / 25%
}
.call .flowchart-operator-inputs-outputs{
  background:#fff url("../images/opt-call.png") no-repeat scroll 0 50% / 20%
}
.tweet .flowchart-operator-inputs-outputs{
  background:#fff url("../images/opt-twitter.png") no-repeat scroll 0 50% / 30%
}
.favorite .flowchart-operator-inputs-outputs{
  background:#fff url("../images/opt-twitter.png") no-repeat scroll 0 50% / 30%
}
.follow .flowchart-operator-inputs-outputs{
  background:#fff url("../images/opt-twitter.png") no-repeat scroll 0 50% / 30%
}
.linkedin .flowchart-operator-inputs-outputs{
  background:#fff url("../images/opt-linkedin.png") no-repeat scroll 0 50% / 28%
}
.lnmessage .flowchart-operator-inputs-outputs{
  background:#fff url("../images/opt-linkedin.png") no-repeat scroll 0 50% / 28%
}


.btn-action{
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 1rem;
  padding: 0.25rem;
  border-radius: 50%;
  align-items: center;
  display: inline-flex;
  transform: scale(0.95);
  justify-content: center;
  transition: transform 0.1s;
}
.btn-action:hover{
  transform:scale(1.05);
  box-shadow: 0 4px 4px -2px rgba(0,0,0,0.1);
}
.btn-action.small{
  width: 0.6rem;
  height: 0.6rem;
  font-size: 0.6rem;
}
.btn-action.medium{
  width: 0.8rem;
  height: 0.8rem;
  font-size: 0.8rem;
}


.card{
  margin: 1rem;
  display: flex;
  padding: 2rem;
  height: 13rem;
  border-radius: 0.8rem;
  flex-direction: column;
  justify-content: center;
}
.card h1,
.card h2,
.card h3,
.card h4,
.card h5,
.card h6{
  display: flex;
  align-items: center;
}
.card h5 i,
.card h5 span{
  font-size: 1.25rem;
  margin-right: 1rem;
}
.card h6 i,
.card h6 span{
  font-size: 1.15rem;
  margin-right: 1rem;
}
.card .small{
  font-size: 60%;
}
.card.add{
  align-items: center;
  border-width: 0.15rem;
  border: #bfbaba dashed;
  background-color: #f2f1f138;
}
.card.add a{
  color: #cdcdcd;
  font-size: 5rem;
}
.card-footer{
  margin-top: auto;
  position: relative;
}
.card-footer p{
  font-weight: 500;
  overflow: hidden;
  font-size: 1.25rem;
  white-space: nowrap;
  padding-right: 7.5rem;
  text-overflow: ellipsis;
}
.card-footer p i,
.card-footer p span{
  font-size: 1.1rem;
  margin-right: 0.75rem;
}
.card-footer-right a{
  bottom: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  border-radius: 50%;
  position: absolute;
  align-items: center;
  justify-content: center;
}

/* Grid System */
.style-grid{
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}
.style-grid .style-wrap{
  display: flex;
  margin: 0.25rem 0;
  align-items: flex-start;
  justify-content: space-between;
}
.style-grid .style-wrap label{
  font-size: 0.85rem;
  margin-top: 0.25rem;
  margin-bottom: 0.15rem;
}
.style-grid .style-wrap div:first-child{
  margin-right: 0.5rem;
}

.column-grid{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.column-grid .grid{
  display: flex;
  color: #232020;
  list-style: none;
  padding: 0.35rem;
  border-radius: 0.25rem;
  transform: translateZ(0);
  border: 2px solid #ceb3ff;
}
.column-grid .grid-wrap{
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.column-grid .grid-wrap small{
  font-weight: bold;
  margin-top: 0.25rem;
}
.column-grid .grid:hover{
  transform: scale(1.05);
  box-shadow: 0 4px 4px -2px rgba(0,0,0,0.1);
}
.column-grid .grid.active{
  border: 2px solid #232020;
}
.column-grid .grid img{
  width: 2rem;
  height: 2rem;
}
/* Grid System */

.app-short-text{
  white-space: nowrap;
  display: inline-block;
  text-overflow: ellipsis;
  overflow: hidden !important;
}



/* Number Block  */
.number-block{
  display: flex;
  padding: 1rem;
  overflow: auto;
  min-height: 6.25rem;
  align-items: center;
  background-color: #fff;
  border-radius: 0.25rem;
  justify-content: center;
  justify-content: space-between;
  box-shadow: 0 4px 7px 0 rgba(0,0,0,0.07);
}
.number-block.reverse{
  flex-direction: row-reverse;
}
.number-block i{
  font-size: 5rem;
}
.number-text{
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.number-text h1{
  width: 100%;
  display: flex;
  font-weight: bolder;
  align-items: center;
  flex-direction: column;
  justify-content: space-around;
}
.number-text.reverse{
  flex-direction: column-reverse;
}
.number-text p{
  font-weight: 500;
  margin-bottom: 1rem;
}
.number-text.reverse p{
  margin-top: 1rem;
  margin-bottom: 0;
}



/* Rotation Keyframes & CSS */
@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotating {
  line-height: unset;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}
/* Rotation Keyframes & CSS */



/* Fancy Upload */
.input-upload input[type="text"].controls{
  border-radius:0.25rem 0 0 0.25rem;
}
.input-upload .btn.btn-upload{
  align-items:center;
  align-self: stretch;
  border-radius:0 0.25rem 0.25rem 0;
}
.input-upload .upload-trash{
  margin:0;
  z-index:3;
  left:-27px;
  padding:0.5rem;
  position:absolute;
  border-radius:0.25rem 0 0 0.25rem;
}
.input-upload .upload-trash i{
  margin:0;
}



/* Arrows */
.arrow-top:after {
  right: 0;
  top: -1rem;
  content: " ";
  border-top: none;
  position: absolute;
  border-bottom: 1rem solid #dddddd;
  border-right: 1rem solid transparent;
  border-left: 1rem solid transparent;
}
.arrow-right:after{
  top: 1rem;
  right: -1rem;
  content: " ";
  position: absolute;
  border-right: none;
  border-left: 1rem solid #dddddd;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
}
.arrow-bottom:after{
  right: 0;
  content: " ";
  bottom: -1rem;
  position: absolute;
  border-bottom: none;
  border-top: 1rem solid #dddddd;
  border-left: 1rem solid transparent;
  border-right: 1rem solid transparent;
}
.arrow-left:after{
  top: 1rem;
  left: -1rem;
  content: " ";
  border-left: none;
  position: absolute;
  border-right: 1rem solid #dddddd;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
}

.uppercase{
  text-transform: uppercase;
}
.lowercase{
  text-transform: lowercase;
}
.capitalize{
  text-transform: capitalize;
}

.mb-1{
  margin-bottom: 1rem !important;
}

/* Pulse Effect */
.blob-red {
  background: rgba(255, 82, 82, 1);
  animation: pulse-red 2s infinite;
  box-shadow: 0 0 0 0 rgba(255, 82, 82, 1);
}
@keyframes pulse-red {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 82, 82, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
  }
}

.blob-green {
  background: rgb(132, 189, 118, 1);
  animation: pulse-green 2s infinite;
  box-shadow: 0 0 0 0 rgb(132, 189, 118, 1);
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(132, 189, 118, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(132, 189, 118, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(132, 189, 118, 0);
  }
}

.blob-white {
  background: white;
  animation: pulse-white 2s infinite;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
}

@keyframes pulse-white {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
/* Pulse Effect */


#acknowledged-btn{
  width: 0;
  height: 0;
  opacity: 0;
  z-index: -1;
  position: absolute;
}
