/* html,
body {
  font-feature-settings: "onum" 1, "pnum" 1, "kern" 1, "liga" 1, "dlig" 1;
}

* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-family: "MuseoSans", Museo Sans, Gill Sans, Helvetica, San Serif;
} */

*:focus {
  outline: 0;
}

body {
  background-color: #191c2e;
}
body.no-scroll {
  overflow: hidden;
  position: fixed;
}

a {
  text-decoration: none;
  color: inherit;
}

embed {
  width: 95%; /* para hacerlo responsive */
  height: 100vh;
}

img {
  border: none;
  outline: none;
}

.small-font {
  font-size: 10px;
  font-weight: 200;
}

.large-font {
  font-size: 20px;
  font-weight: 200;
}

.icon-hover {
  opacity: 0.7;
}
.icon-hover:hover {
  opacity: 1;
}

.topbar {
  position: fixed;
  width: 100%;
  height: 100px;
  background-color: #3fad92;
  z-index: 10;
  top: 0;
  left: 0;
}
.topbar .logo {
  position: relative;
  width: 60%;
  height: 100%;
  padding: 20px 40px;
  float: left;
}
.topbar .logo img {
  height: 100%;
}

@media screen and (max-width: 900px) {
  .topbar .logo {
    width: 40%;
  }
  .topbar .search {
    width: 60%;
  }
}

@media screen and (max-width: 600px) {
  .topbar .logo {
    padding: 20px 10px;
  }
}

.toolbar {
  position: fixed;
  width: 100%;
  height: 100px;
  top: 218px;
  transition: top 0.3s ease;
  left: 0;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  color: #e5e5e7;
  z-index: 1;
  background-color: #191c2e;
}

/* Media query para pantallas pequeñas */
@media screen and (max-width: 600px) {
  .toolbar {
    top: 200px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 820px) {
  .toolbar {
    top: 200px;
    padding: 10px 20px;
  }
}

.toolbar .crumbs {
  width: 30%;
  padding-right: 20px;
}
.toolbar .crumbs.full-size {
  /* width: 100% !important; */
  padding-right: 0;
  margin: -15px 20px;
}
.toolbar .crumbs .crumbs-previous {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 200;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  margin-bottom: 17px;
}
.toolbar .crumbs .crumbs-previous .crumb-icon {
  width: 6px;
  height: 8px;
  transform: rotate(180deg);
}
.toolbar .crumbs .crumbs-previous .crumb-icon path {
  fill: #e5e5e7;
}
.toolbar .crumbs .crumbs-previous:hover {
  opacity: 0.8;
}
.toolbar .crumbs .crumbs-current {
  display: block;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.toolbar .tools {
  display: flex;
  align-items: center;
}

.toolbar .tools .download-all {
  margin-left: 50px;
  width: 150px;
  height: 80%;
  background-color: #2c2f42;
  border-radius: 3px;
  align-self: center;
}
.toolbar .tools .download-all a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 10px 20px;
}
.toolbar .tools .download-all a .icon {
  width: 36px;
  height: 26px;
  margin-right: 10px;
}
.toolbar .tools .download-all a .icon path {
  fill: #e5e5e7;
}
.toolbar .tools .download-all:hover {
  background-color: #363a51;
}
.toolbar .tools .close-file {
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.toolbar .tools .close-file .icon path {
  fill: #e5e5e7;
}
.toolbar .tools ul {
  width: 100%;
  height: 100%;
  display: flex;
}
.toolbar .tools ul a {
  max-width: 150px;
  width: 100%;
  margin-right: 30px;
}
.toolbar .tools ul li {
  list-style: none;
  width: 100%;
  height: 100%;
  max-width: 150px;
  min-width: 150px;
  background-color: #2c2f42;
  padding: 18px;
  border-radius: 3px;
  color: #e5e5e7;
  display: inline-block;
}
.toolbar .tools ul li .icon {
  width: 26px;
  height: 26px;
  float: right;
}
.toolbar .tools ul li .icon path {
  fill: #e5e5e7;
}
.toolbar .tools ul li.view-topbar-button {
  line-height: 26px;
}
.toolbar .tools ul li.view-topbar-button .topbar-button-label {
  display: inline-block;
}
.toolbar .tools ul li.view-topbar-button .topbar-button-label span {
  display: block;
  line-height: 6px;
}
.toolbar .tools ul li.view-topbar-button:hover {
  background-color: #363a51;
}
.toolbar .tools ul li.view-topbar-button#view-download .topbar-button-label {
  margin-top: -5px;
}

@media screen and (max-width: 900px) {
  .toolbar .crumbs {
    width: 50%;
  }
  .toolbar .tools .download-all {
    width: 140px;
    margin-left: 20px;
  }
  .toolbar .tools .download-all a {
    padding: 10px;
  }
}

@media screen and (max-width: 600px) {
  .toolbar {
    padding: 20px 16px;
  }
  .toolbar .tools .download-all {
    width: 50px;
  }
  .toolbar .tools .download-all .download-label {
    display: none;
  }
  .toolbar .tools .download-all a .icon {
    margin: 0;
  }
}

.contents {
  position: relative;
  width: calc(100% - 40px);
  min-height: calc(100vh - 100px - 100px);
  background-color: #232535;
  margin: 0px auto 0px;
  padding: 26px 0px 26px 26px;
  color: #e5e5e7;
}

.contents .preview {
  padding-right: 26px;
  text-align: center;
}
.contents .preview img,
.contents .preview video {
  max-width: 100%;
}

.page {
  background-color: #232535;
}
.contents .preview .pages img {
  background-color: #fff;
}

@media screen and (max-width: 900px) {
}
@media screen and (max-width: 600px) {
}

@media screen and (min-width: 1600px) {
}

@media screen and (min-width: 2160px) {
}

@media screen and (max-width: 1160px) {
}

@media screen and (max-width: 900px) {
  .contents {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 600px) {
  .contents {
    padding: 26px 0px 26px 16px;
  }

  .contents .preview {
    padding-right: 16px;
  }
}

@media screen and (max-width: 500px) {
}
