/* HEY LOOK HERE - NOTE - if you're adding a custom variable, make sure '!default' in not at the end, otherwise,
 Bootstrap will enforce the factory default color */
/*------------------------------------------------*/
/*----               Variables                ----*/
/*------------------------------------------------*/
/*------------------------------------------------*/
/*----               RESETS                   ----*/
/*------------------------------------------------*/
.sticky {
  position: -webkit-sticky;
  position: sticky;
}

label {
  margin-bottom: 0;
}

div {
  -webkit-animation: all 0.1s appear;
          animation: all 0.1s appear;
}

.grabbable {
  cursor: all-scroll;
  /* fallback if grab cursor is unsupported */
  cursor: grab;
  cursor: -webkit-grab;
  /* (Optional) Apply a "closed-hand" cursor during drag operation. */
}
.grabbable:active {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

@media (max-width: 767px) {
  .inactiveMobile {
    position: absolute;
    z-index: 0;
  }

  .hide-small {
    display: none;
  }
}
.grabbable {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  cursor: -webkit-grab;
}

/* (Optional) Apply a "closed-hand" cursor during drag operation. */
.grabbable:active {
  cursor: grabbing !important;
  cursor: -webkit-grabbing;
}

/*----------------------------------------------------------------*/
/*----               Library Content Component                ----*/
/*----------------------------------------------------------------*/
.library-content {
  max-width: 1440;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
}

/*------------------------------------------------------------------*/
/*----               ContentWithPanels Component                ----*/
/*------------------------------------------------------------------*/
.library-content .content-with-panels .left-panel {
  background-color: #efefef;
}
@media (min-width: 426px) {
  .library-content .content-with-panels .right-panel {
    border-left: 1px solid #dededf;
  }
}
.library-content .content-with-panels .left-panel,
.library-content .content-with-panels .right-panel,
.library-content .content-with-panels .center-panel {
  height: 700px;
}
.library-content .hlc-empty-state-cards-wrapper {
  height: 700px;
}
.library-content .img-slot {
  width: 100%;
  height: 100%;
  position: relative;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  background: #dededf;
  color: #292929;
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.library-content .img-slot .multi-img {
  width: 96px;
  height: 64px;
}
.library-content .img-slot > *,
.library-content .img-slot .thumbnail-box {
  height: 100%;
  width: 100%;
}
.library-content .img-slot .ghost-thumb {
  width: 4.5em;
  height: 4em;
  max-height: 100%;
  max-width: 100%;
}

@media (max-width: 767px) {
  .library-view-toggle {
    display: none;
  }
}

/*-----------------------------------------------------------------*/
/*----               Library-Checkbox Component                ----*/
/*-----------------------------------------------------------------*/
.library-checkbox {
  /* The container */
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add a blue background */
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark when checked */
  /* Style the checkmark/indicator */
}
.library-checkbox--container {
  margin: 15px;
}
.library-checkbox .container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.library-checkbox .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.library-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border: 3px solid #606065;
  border-radius: 3px;
}
.library-checkbox .container:hover input ~ .checkmark {
  background-color: #efefef;
}
.library-checkbox .container input:checked ~ .checkmark {
  background-color: #5796ea;
  border: 3px solid #5796ea;
}
.library-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.library-checkbox .container input:checked ~ .checkmark:after {
  display: block;
}
.library-checkbox .container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark .container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.staged {
  background-color: #e1eefb !important;
}

@-webkit-keyframes appear {
  0% {
    width: 0px;
  }
  100% {
    width: 400px;
  }
}

@keyframes appear {
  0% {
    width: 0px;
  }
  100% {
    width: 400px;
  }
}
@keyframes appear {
  0% {
    width: initial;
  }
  100% {
    width: 0px;
  }
}
.moderation-badge {
  background-color: #e1eefb;
  color: #1460aa;
}

/*# sourceMappingURL=LibraryContent~e7080f8c.946bd06c.chunk.css.map*/