@import url("https://fonts.googleapis.com/css?family=Roboto:400,700");
:root {
  --dashboard-strip-color: #3b4d77;
  --klip-toolbar-color: #6977f3;
  --regular-purple: #5460bd;
  --light-purple: #7295e6;
}

body,
p,
td,
h1,
h2,
h3,
h4,
span,
div {
  font-family: "Roboto", sans-serif;
}
body {
  background-color: #f0f2f4;
}
/*Login screen*/
.fancy-background {
  background: linear-gradient(rgb(105, 119, 243) 0%, rgb(84, 96, 189) 80%)
    no-repeat 50% 50% fixed;
}
.rounded-box {
  border-radius: 0.75rem;
  box-shadow: 0px 27px 50px -16px rgba(0, 0, 0, 0.5);
}

/*Admin*/
.admin-tab-strip {
  margin-top: 10px;
}

.admin-tab:hover {
  background-color: transparent;
  border: 0;
}
.admin-tab.active {
  border-bottom-color: none;
  border: 0;
  color: #fff;
  font-weight: bold;
  background: var(--klip-toolbar-color);
  border-radius: 0.5rem;
}
.admin-tab a {
  padding: 15px;
}
.admin-tab a:hover {
  color: var(--light-purple);
  text-decoration: none;
}

/*Dashboard Tabs Strip*/
.dashboard-tab-strip {
  background-color: var(--dashboard-strip-color);
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0;
}
/*Add Dashboard/Tab Button*/
#button-add-tab {
  background: none;
  cursor: pointer;
  top: 0;
  order: 2;
  padding: 0;
  border-radius: 50%;
  background: var(--light-purple);
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
}
.circle-add {
  height: 30px;
  width: 100%;
  opacity: 1;
  padding: 0;
  display: block;
}
/*Dashboard Tabs container*/
ul.dashboard-tabs {
  padding: 0 20px;
  display: flex;
  flex-direction: row;
}
/*Dashboard Tab*/
.dashboard-tab {
  border-right: 1px solid rgba(154, 184, 255, 0.3);
  color: white;
  cursor: pointer;
  display: inline-block;
  padding: 13px;
  position: relative;
  border-radius: 0.75rem;
  margin: 10px 0;
  margin-right: 10px;
  border: 0;
}
.dashboard-tab:first-child {
  padding-left: 0;
}

.dashboard-tab:hover {
  background-color: transparent;
  color: var(--light-purple);
}
/*Active Dashboard Tab*/
.dashboard-tab.active {
  background-color: var(--regular-purple);
  padding-right: 40px;
  padding-left: 13px;
  border-radius: 0.75rem 0.75rem 0 0;
  border: 0;
}
.dashboard-tab.active:after {
  content: "";
  display: block;
  position: absolute;
  height: 30px;
  width: 100%;
  background-color: var(--regular-purple);
  bottom: -21px;
  left: 0;
}
/* Klip */
.klip {
  background-color: white;
  border-radius: 0.75rem 0.75rem 0 0.75rem;
}
.klip:hover .klip-toolbar {
  background-color: var(--dashboard-strip-color);
}
/* Klip Header */
.klip-toolbar {
  color: #fff;
  font-weight: 400;
  position: relative;
  background-color: var(--klip-toolbar-color);
  padding: 15px 100px 15px 15px;
  transition: background 0.2s ease;
}
.klip-body {
  background-color: white;
}

/* Sample Data Flag */
.klip-reconfigure-data-button {
  display: none;
}
.toolbar-tab {
  border-radius: 0.75rem;
}

/*When scrolling in dashboard*/
.fixed-header .dashboard-tab,
.fixed-header .dashboard-tab.active {
  margin: 0;
  border-radius: 0;
  height: 100%;
}
.fixed-header .dashboard-tab.active:after {
  display: none;
}
.fixed-header #button-add-tab {
  border-radius: 0;
  background: transparent;
  height: auto;
  width: auto;
  margin-top: 0;
}
