/* ==================================================
  BEGIN REUSABLE MIXINS
================================================== */

/* ==================================================
  GLOBAL VARIABLES AND MIXINS
================================================== */

/* ==================================================
  PAGE WRAPPER (FOR SIDEBAR AND CONTENT FUNCTIONALITY)
================================================== */

.wrapper {
  display: -webkit-box;
  display: flex;
  width: 100%;
  -webkit-box-align: stretch;
          align-items: stretch;
}

#sidebar {
  background-color: #131313;
  min-width: 250px;
  max-width: 250px;
  min-height: 100vh;
}

#sidebar.active {
  margin-left: -250px;
}

#content {
  width: 100%;
}

@media (max-width: 768px) {
  #sidebar {
    margin-left: -250px;
  }

  #sidebar.active {
    margin-left: 0;
  }
}

.content-container,
.asset-container,
.feed-container {
  /* Page container */
  background-color: #fff;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.025);
}

/* ==================================================
  GENERIC/CORE STYLES
================================================== */

body {
  background-color: #F2F4F6;
}

h1 {
  font-size: 1.8em;
}

h2 {
  font-size: 1.4em;
}

/* ==================================================
  SIDEBAR, HEADER AND ACTION BAR STYLES
================================================== */

#sidebar .sidebar-header {
  background-color: #131313;
  text-align: center;
  border-bottom: 1px solid #1b2149;
  height: 65px;
  vertical-align: middle;
  line-height: 65px;
}

#sidebar .sidebar-header img {
  width: 80%;
  height: auto;
}

#sidebar ul {
  list-style-type: none;
  padding: 0;
}

#sidebar ul li {
  display: block;
  margin: 10px 0px;
}

#sidebar ul li a {
  display: block;
  padding: 10px 25px;
  color: #bdbfcf;
  width: 90%;
  margin: 0 auto;
  border-radius: 5px;
}

#sidebar ul li a:hover {
  text-decoration: none;
  background-color: #1b2149;
  color: #10BDA6;
}

#sidebar ul li a i {
  text-align: center;
  vertical-align: middle;
}

#sidebar ul li a svg {
  width: 30px;
  margin-right: 10px;
}

#content .header {
  background-color: #fff;
  display: block;
  padding: 0 25px;
  border-bottom: 1px solid #e6e7f1;
  height: 65px;
  vertical-align: middle;
  line-height: 65px;
}

#content .header .row:first-of-type a,
#content .header .row:first-of-type a:hover {
  text-decoration: none;
}

#content .header .row:first-of-type i {
  color: #2c3365;
  margin-right: 10px;
  cursor: hand;
  cursor: pointer;
}

#content .action-bar {
  background-color: #E8E8E8;
  padding: 25px;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.025);
  margin-bottom: 30px;
}

/* ==================================================
  ACTION BUTTONS (DELETE ON LISTINGS, e.g. companies.index)
================================================== */

.actions .action-delete {
  display: inline-block;
}

.actions a {
  color:#10BDA6;
}

.actions .action-delete a {
  cursor: hand;
  cursor: pointer;
}

.actions .action-delete a i {
  display: inline-block;
  margin-right: 10px;
  color: #10BDA6;
}

.actions .action-delete a i:hover {
  color: #202552;
}

.actions .action-delete a:last-child i {
  margin-right: 0;
}

/* ==================================================
  ASSET PAGE INDEX LISTING
================================================== */

.assets-listing .row {
  width: 100%;
  margin-bottom: 10px;
}

.assets-listing .card {
  width: 30%;
  margin: 5px;
}

.assets-listing .card .image {
  height: 180px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

/* ==================================================
  FEED DRAGGABLE ASSETS STYLES
================================================== */

.assets {
  margin-bottom: 10px;
}

.assets .asset-card {
  display: flex;
  background-color: #2c3365;
  color: #fff;
  border-radius: 5px;
  margin-right: 10px;
  cursor: move;
  flex-direction: column;
  /* Asset card sizes */
}

.assets .asset-card.portrait {
  width: 15%;
}

.assets .asset-card.landscape {
  width: 30%;
}

.assets .asset-card .image {
  display: block;
  position: relative;
  min-width: 300px;
}

.assets .asset-card .image .options {
  position: absolute;
  display: block;
  width: 100%;
  padding: 10px;
  text-align: right;
}

.assets .asset-card .image .options .info {
  color: #007bff;
  cursor: pointer;
  cursor: hand;
}

.assets .asset-card .image img {
  width: 100%;
  border-radius: 5px 5px 0 0;
}

.assets .asset-card h3 {
  padding: 10px;
  font-size: 1em;
}

.assets #assets-library,
.assets #feed-assets {
  overflow-x: scroll;
  overflow-y: hidden;
  /*white-space: nowrap;*/
  -webkit-overflow-scrolling: touch;
  display: flex;
  padding: 20px;
  height: 200px;
  background-color: #f7f7f7;
}

.assets #assets-library.portrait,
.assets #feed-assets.portrait {
  height: 360px;
}

.assets #assets-library.landscape,
.assets #feed-assets.landscape {
  height: auto;
}

/* ==================================================
  MODAL FOR ADDITIONAL ASSET DETAILS ON FEED CREATOR
================================================== */

#asset-details .modal-content .spinner-border {
  display: block;
  margin: 0 auto;
}

#asset-details .modal-content img,
#asset-details .modal-content video {
  width: auto;
  max-height: 500px;
  display: block;
  margin: 0 auto;
}

#asset-details .modal-content img.landscape,
#asset-details .modal-content video.landscape {
  width: 100%;
}

.login {
	background-color:#131313;
}

.btn-success {
  /*background-color: #10BDA6;*/
  background-color: #131313;
}

.btn-primary {
  background-color: #131313;
}

.btn-primary:hover{
  background-color: #131313;
}

.btn {
    border-color: #131313;
}

.btn:hover {
    background-color: #131313;
}


.form-control:focus {
  box-shadow: 0 0 0 .2rem #10BDA6;
}

a{
  color: #131313 ;
}

a:hover {
    color: #131313;
}

