/*
General
 */
.link {
  text-decoration: none;
}

.vigor-component {
  border: none;
  padding: 0;
}

.component-area {
  position: relative;
  padding: 0;
  border: none;
}

.app-wrapper {
  position: relative;
}

/*
Layouts
 */
.example-app-wrapper {
  position: relative;
  min-height: 100%;
}

.example-header {
  position: relative;
  padding: 0px 20px;
  height: 80px;
}

.example-content-wrapper {
  position: relative;
  padding: 0 0 100px 260px;
}

.example-main-section {
  position: relative;
}

.example-main-content {
  position: relative;
  width: 100%;
  transition: width 0.2s ease-in;
}

.example-right-column {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 0%;
  overflow: hidden;
  background: #eee;
  transition: width 0.2s ease-in;
}

.example-layout-main--show-sidepanel .example-main-content {
  width: 40%;
}

.example-layout-main--show-sidepanel .example-right-column {
  width: 60%;
}

.example-footer {
  width: 100%;
  height: 100px;
  position: absolute;
  bottom: 0;
  left: 0;
}

/*
Header
 */
.example-header h1 {
  margin: 0;
  padding: 0;
  float: left;
  width: 70%;
  line-height: 80px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: lighter;
  color: #bbb;
}

.component-area--header {
  float: right;
  width: 30%;
  height: 100%;
}

.example-main-menu {
  padding: 0;
  margin: 0;
  height: 80px;
}

.social-media::after,
.navigation::after,
.main-menu::after {
  content: "";
  display: table;
  clear: both;
}

.main-menu__list-item {
  display: table;
  height: 100%;
  float: left;
  margin: 0 6px;
}

.main-menu__link {
  display: table-cell;
  vertical-align: middle;
}

/*
Sidebar
 */
.example-sidebar {
  width: 260px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: #222;
  z-index: 1;
}

/*
Submenu
 */
.example-sub-menu {
  list-style: none;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 10px 0px;
  margin: 0;
}

.sub-menu__link {
  display: block;
  padding: 8px 14px;
  color: #999;
}

.sub-menu__link:hover,
.sub-menu__link--active {
  background: #323232;
  color: white;
}




/*
Example components
*/
/* Login*/
.example-login {
  height: 300px;
  margin: 100px auto;
  width: 100%;
  max-width: 460px;
}

.login__field {
  font-size: 18px;
  line-height: 30px;
  padding: 10px;
  display: block;
  margin: 10px 0;
  width: 100%;
}

.login__button {
  text-transform: uppercase;
  line-height: 30px;
  font-size: 14px;
  border: none;
  padding: 10px 20px;
  min-width: 140px;
  width: 100%;
  cursor: pointer;
}


/*Marquee*/
.example-marquee {
  position: relative;
  max-height: 400px;
  background: pink;
}
.example-marquee::after {
  content: "";
  display: block;
  padding-bottom: 57%;
}

.example-marquee p {
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -10px;
  text-align: center;
}

/*Profile Overview*/
.example-profile-overview {
  position: relative;
  height: 220px;
  background: silver;
}
.example-profile-overview p {
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -10px;
  text-align: center;
}

/* Social Media Component*/
.example-social-media {
  position: relative;
}

.example-social-media a {
  display: block;
  width: 25%;
  height: 50px;
  float: left;
  padding: 0;
  margin: 0;
  text-indent: -999em;
  background: rgb(22, 123, 216);
  box-sizing: border-box;
  border: 1px solid rgb(75, 75, 75);
}
.example-social-media a:hover {
  background: rgb(15, 140, 255);
}

/* List Component*/
.example-list {
  position: relative;
  max-width: 600px;
  margin: 40px auto;
}

.example-generic-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #ccc;
}

.list__link {
  display: block;
  border-bottom: 1px solid #ccc;
  padding: 18px 10px;
}
.list__link:hover {
  background: #eee;
}

/* Dummy List Component*/
.dummy-list-component {
  margin: 40px auto;
  max-width: 560px;
  padding: 20px;
  border: 1px solid #ccc;
}
