html {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-user-select: none;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /*-webkit-backface-visibility: hidden;*/
    /*-webkit-transform: translate3d( 0, 0, 0 );*/
}

::-moz-selection,
::selection {
    background: #EEEFF0;
    text-shadow: none;
}

body {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #E2E7E8;
    margin: 0;
    padding: 0;
    overflow: auto;
}

body,
button,
input,
select,
textarea {
    color: #595E67;
    font-family: 'Signika Negative', Arial, 'Helvetica Neue', Helvetica, sans-serif;
}

a {
    cursor: pointer;
    color: #595E67;
    text-decoration: none;
}

a:hover,
a:focus {
    color: #32B6FF;
    text-decoration: none;
}

#editLinkLayout a:hover,
#editLinkLayout a:focus {
    color: #F2942C;
}

a:focus {
    outline: 0 none;
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dialog ul {
    list-style-type: circle;
    padding: 10px;
    margin: 0;
}

.dialog ol {
    list-style-type: decimal;
    padding: 10px;
    margin: 0;
}

/* MIXINS */
/* Colors */
.color-1 { color: #17BA9F; }
.color-2 { color: #B88DE1; }
.color-3 { color: #F2C500; }
.color-4 { color: #FF6058; }
.color-5 { color: #32B6FF; }
.color-6 { color: #F2942E; }
.color-7 { color: #F195BA; }
.color-8 { color: #B8C1D2; }
.color-9 { color: #98CA40; }
.color-10 { color: #CD0047; }

.bgcolor-1 { background-color: #17BA9F; }
.bgcolor-2 { background-color: #B88DE1; }
.bgcolor-3 { background-color: #F2C500; }
.bgcolor-4 { background-color: #FF6058; }
.bgcolor-5 { background-color: #32B6FF; }
.bgcolor-6 { background-color: #F2942E; }
.bgcolor-7 { background-color: #F195BA; }
.bgcolor-8 { background-color: #B8C1D2; }
.bgcolor-9 { background-color: #98CA40; }
.bgcolor-10 { background-color: #CD0047; }

#editLinkLayout .bgcolor-5 { background-color: #F2942E; }

.inactive.color-1 { color: #A2E3D9; }
.inactive.color-2 { color: #E3D1F3; }
.inactive.color-3 { color: #FAE899; }
.inactive.color-4 { color: #FFBFBC; }
.inactive.color-5 { color: #ADE2FF; }
.inactive.color-6 { color: #FAD4AB; }
.inactive.color-7 { color: #F9D5E3; }
.inactive.color-8 { color: #E3E6ED; }
.inactive.color-9 { color: #D6EAB3; }
.inactive.color-10 { color: #9A3055; }

.inactive {
    cursor: not-allowed;
    opacity: .3;
}

/* Loader */
.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -60px;
    margin-left: -60px;
    z-index: 101;
}

.loader input {
    position: absolute;
    top: 60px !important;
    left: 50% !important;
    margin-top: -20px !important;
    margin-left: -32px !important;
    background-color: #E2E7E8;
    font-size: 40px !important;
}

.loader + .modal,
.dialog + .modal {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, .15) !important;
    z-index: 51;
}

.loader + .modal ~ *,
.dialog + .modal ~ * {
    -webkit-filter: blur(1px);
}

/* Dialog */
.dialog,
.notification {
    position: absolute;
    top: 65px;
    bottom: 65px;
    left: 50%;
    width: 90%;
    max-width: 90%;
    min-height: 100px;
    box-shadow: 0 0 4px rgba(0, 0, 0, .5);
    border-radius: 8px;
    z-index: 110;
    overflow: hidden;
}

.dialog {
    background-color: #FFFFFF;
}

.notification {
    min-height: 50px;
    color: #FFFFFF;
    text-align: center;
    opacity: 1;
    transition: opacity .5s ease-out;
    z-index: 999;
}

.notification.norender {
    opacity: 0;
}

.notification .debug {
    font-size: 16px;
}

.dialog.fullscreen {
    top: 0;
    bottom: 0 !important;
    left: 0;
    right: 0;
    margin: 0 !important;
    width: 100%;
    height: 100%;
    max-width: 100%;
    border-radius: 0;
}

.device .dialog,
.device .notification {
    bottom: 9px;
}

.dialog > header {
    position: relative;
    width: 100%;
    height: 48px;
    padding: 0 15px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    z-index: 10;
    color: #FFFFFF;
    font-size: 40px;
    line-height: 48px;
}

.notification > header {
    position: relative;
    width: 100%;
    height: 5px;
    color: #000000;
    font-size: 20px;
    z-index: 3;
}

.dialog.fullscreen > header {
    border-radius: 0;
}

.dialog > main,
.notification > main {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#note-dialog > main {
    max-height: 300px;
}

.dialog.fullscreen > main {
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 48px;
}

.dialog > header h1 {
    margin: 0;
    font-size: 16px;
    text-transform: uppercase;
    width: 80%;
}

.dialog > header i,
.notification > header i {
    float: right;
    cursor: pointer;
    height: 100%;
}

.dialog + .modal {
    background: rgba(0, 0, 0, 0.35) !important;
}

.dialog ~ .dialog {
    z-index: 105;
}

/* Creditos LibroClick */
#creditosLC main {
    height: inherit;
}

/* Scrollbar */
.scrollbar,
.scrollbar .bar {
    border-radius: 4px;
}

.scrollbar .bar {
    width: 0;
    height: 0;
    position: relative;
}

.scrollbar {
    position: absolute;
    background-clip: content-box;
    background-color: #EEEFF0;
    z-index: 10;
}

.scrollbar:after {
    position: absolute;
    width: 8px;
    height: 8px;
    display: block;
    content: "";
    border-radius: 4px;
    background-color: #EEEFF0;
    z-index: 1;
}

.scrollbar.animate .bar,
.scrollbar.animate .handler {
    transition: width .5s ease-out, height .5s ease-out, top .5s ease-out, left .5s ease-out;
}

.scrollbar .handler {
    position: absolute;
    width: 20px;
    height: 20px;
    display: block;
    border-radius: 10px;
    z-index: 5;
    cursor: pointer;
}

.scrollbar.bottom,
.scrollbar.top {
    margin: 10px 0;
    left: 0;
    width: 100%;
    height: 8px;
    padding: 0 25px;
}

.scrollbar.top {
    top: 0;
}

.scrollbar.bottom {
    bottom: 0;
}

.scrollbar.bottom:after,
.scrollbar.top:after {
    margin-top: -8px;
    margin-left: -29px;
    left: 100%;
}

.scrollbar.left,
.scrollbar.right {
    margin: 0 20px;
    top: 0;
    width: 8px;
    height: 100%;
    padding: 25px 0;
}

.scrollbar.left {
    left: 0;
}

.scrollbar.right {
    right: 0;
}

.scrollbar.left:after,
.scrollbar.right:after {
    margin-top: -29px;
    top: 100%;
}

.scrollbar.bottom .bar,
.scrollbar.top .bar {
    margin-left: -2px;
    height: 8px;
}

.scrollbar.left .bar,
.scrollbar.right .bar {
    margin-top: -2px;
    width: 8px;
}

.scrollbar.bottom .handler,
.scrollbar.top .handler {
    right: -10px;
    top: -6px;
}

.scrollbar.left .handler,
.scrollbar.right .handler {
    right: -6px;
    bottom: -10px;
}

.scrollbar.animate + * {
    transition: margin-top .5s ease-out, margin-left .5s ease-out;
}

/*xxxx*/
#debug {
    position: fixed;
    bottom: 60px;
    right: 4px;
    width: 40%;
    height: 20%;
    padding: 5px 10px;
    border: solid 1px #CCCCCC;
    background: white;
    opacity: 0.8;
    overflow-y: auto;
    z-index: 20000;
    color: #444444;
    font-size: 10px;
    font-weight: bold;
}

/* Audio & Video */
.dialog .audio {
    position: relative;
    margin-top: 20px;
    width: 100%;
    padding: 0 20px 0 20px;
}

.dialog .video {
    position: relative;
    margin-bottom: -5px;
    width: 100%;
    min-height: 300px;
}

/* Structure */

/* Header, Main & Footer */
body > header,
body > main,
body > footer {
    position: fixed;
    width: 100%;
}

body > header,
body > footer {
    left: 0;
    height: 56px;
    background: #2F3641;
    box-shadow: 0 0 6px rgba(0, 0, 0, .4);
    color: #FFFFFF;
    z-index: 50;
}

body > header {
    top: 0;
    margin: 0;
    text-align: center;
    transition: margin .3s ease-out, opacity .3s ease-out;
}

body > header.norender {
    margin-top: -56px;
    opacity: 0;
}

body > header i,
body > footer i {
    font-size: 40px;
}

body > header i {
    height: 40px;
    line-height: 40px;
    position: relative;
    display: block;
    top: 9px;
}

body > main {
    height: 100%;
    padding: 56px 0;
    overflow: hidden;
    background: #E2E7E8;
    transition: padding-top .5s ease-out;
}

body.device > main {
    padding: 56px 0 0 0;
}

body > footer {
    bottom: 0;
}

/* === OLD TOOLS === */
header.tools a {
    color: #F2942E;
    position: relative;
    margin: 0 10px;
    height: 100%;
    display: inline-block;
    cursor: pointer;
}

header.tools a.active i {
    color: #FFFFFF;
}

/*xxx NAV xxx*/
#navigation {
    position: absolute;
    width: 100%;
    height: 100%;
    line-height: 56px;
}

#navigation section,
header.tools section {
    position: relative;
    height: 100%;
}

#navigation section.left,
header section.left {
    float: left;
}

#navigation section.right {
    float: right;
}

#navigation a {
    position: relative;
    margin: 0 10px;
    height: 100%;
    display: inline-block;
    cursor: pointer;
}

#navigation a.active i {
    color: #FFFFFF;
}


/* Footer */
body > footer {
    margin: 0;
    transition: margin .5s ease-out, opacity .3s ease-out;
}

body > footer.norender {
    margin-bottom: -56px;
    opacity: 0;
}

body > footer a {
    position: relative;
    height: 56px;
    display: inline-block;
}

body > footer a:hover {
    cursor: pointer;
}

body > footer i {
    color: #98CA40;
    height: 56px;
    line-height: 56px;
}

body > footer nav,
body > footer section {
    z-index: 10;
}

body > footer nav {
    float: left;
    display: inline-block;
}

body > footer nav a {
    margin-left: 5px;
}

body > footer article {
    position: relative;
    margin: 0 auto;
    width: 40%;
    text-align: center;
}

body > footer article input {
    position: relative;
    top: -15px;
    width: 80px;
    height: 34px;
    display: inline-block;
    outline: 0;
    border-radius: 5px;
    border: 0;
    background: #FFFFFF;
    color: #595E67;
    font-weight: 600;
    line-height: 34px;
    text-align: center;
}

body > footer section {
    float: right;
}

body > footer section > aside {
    position: relative;
    top: -5px;
    width: 200px;
    height: 30px;
    display: inline-block;
}

body > footer section div {
    width: 600px;
    height: 100%;
}

body > footer section .scrollbar {
    position: relative;
}

/* Index */
#index {
    position: relative;
    margin: 0 auto;
    width: 40%;
    height: 56px;
    display: table;
    font-size: 18px;
    font-weight: 400;
}

#index > a {
    width: 100%;
    height: 56px;
    line-height: 20px;
    display: table-cell;
    color: #FFFFFF;
    vertical-align: middle;
}

#index a[data-status=inactive],
#preview .dropdown a[data-status=inactive],
.worktools.dropdown a[data-status=inactive] {
    color: #9C9FA4;
}

#index button {
    background: transparent;
}

#index .arrow {
    margin-left: 5px;
    width: 34px;
    top: 1px;
}

#index ul {
    text-align: left;
}

#index li {
    margin-right: 50px;
    transition: background-color .125s ease-in;
}

#index li:hover {
    background-color: #EEEFF0;
}

/* Panel */
.panel {
    position: fixed;
    margin: 56px 0;
    bottom: 0;
    width: 100%;
    min-height: 300px;
    padding: 15px 20px;
    box-shadow: 0 0 6px rgba(0, 0, 0, .4);
    background-color: #FFFFFF;
    text-align: right;
    transition: margin .5s ease-out, opacity .3s ease-out;
}

.device .panel {
    margin-bottom: 0;
}

.panel.norender,
.panel.no-render {
    margin-bottom: -350px;
    opacity: 0;
}

.panel .button {
    margin-bottom: 15px;
    height: 40px;
    line-height: 38px;
    border-radius: 4px;
    border: solid transparent;
    border-width: 1px 1px 3px;
    border-bottom-color: #F2C500;
    background: #F5D133;
    cursor: pointer;
    color: #FFFFFF;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}

.panel section {
    position: relative;
    height: 180px;
    white-space: nowrap;
    clear: both;
    text-align: left;
}

/* Thumbnail */
.thumbnail {
    position: relative;
    width: auto;
    height: 145px;
    padding-bottom: 32px;
    box-sizing: content-box;
    display: inline-block;
    border: 0;
    opacity: 1;
}

.thumbnail i {
    display: none;
    opacity: 0;
    z-index: 2;
}

.thumbnail img,
#favorites section > a div {
    position: relative;
    height: 100%;
    border-radius: 2px;
    border: 2px solid #E2E7E8;
    transition: border .125s ease-out;
}

.thumbnail span {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 0 10px;
    text-align: center;
    transition: color .125s ease-out;
}

.thumbnail aside {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.dialog .favorites {
    text-align: center;
}

.dialog .favorites input {
    position: relative;
    margin: 15px 0;
    width: 90%;
    height: 34px;
    padding: 0 12px;
    border: 0;
    border-radius: 4px;
    background: #EEEFF0;
    color: #555555;
}

/* Forms */
button {
    margin-bottom: 15px;
    height: 40px;
    outline: 0;
    border-radius: 4px;
    border: 1px solid transparent;
    border-bottom: 2px solid #B8C1D2;
    background: #C7CAD1;
    cursor: pointer;
    color: #FFFFFF;
    line-height: 38px;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
}

button:active {
    background: #B8C1D2;
    border-bottom-color: #C7CAD1;
}

input[type=search] {
    width: 200px;
    height: 34px;
    padding: 0 12px;
    border: 0;
    border-radius: 4px;
    background: #EEEFF0;
    color: #555555;
    -webkit-appearance: none;
}

input[type=search]:focus {
    outline: 0;
}

input[type=search] + button[class~=icon-magnifier] {
    margin-left: -8px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 0 4px 4px 0;
    color: #FFFFFF;
    font-size: 24px;
    line-height: 1;
}

.dropdown {
    position: relative;
}

.dropdown button {
    position: relative;
    margin: 0;
    padding: 0;
    display: inline-block;
    outline: 0;
    border: 0;
}

.dropdown .arrow {
    transition: transform .5s;
    -webkit-transition: -webkit-transform .5s;
}

.dropdown.on .arrow {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
}

.dropdown i {
    margin-left: 5px;
}

.dropdown ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 300px;
    display: none;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, .3);
    background-color: #FFFFFF;
    z-index: 50;
    overflow: hidden;
    font-size: inherit;
    transition: height .5s ease-out;
    -webkit-overflow-scrolling: touch;
}

.dropdown.on ul {
    display: block;
}

.dropdown li a {
    width: 100%;
    padding: 10px 20px;
    display: inline-block;
    color: #595E67;
    font-size: 16px;
    line-height: 20px;
}

.dropdown.my {
    min-width: 250px;
    max-width: 50%;
    text-align: left;
    z-index: 50;
}

.dropdown.my.on {
    border-radius: 4px 4px 0 0;
    box-shadow: 0 1px 6px rgba(0, 0, 0, .3);
}

.dropdown.my > a {
    height: 34px;
    padding: 0 50px 0 15px;
    display: block;
    overflow: hidden;
    outline: 0 none;
    border-radius: 4px;
    background: #EEEFF0;
    z-index: 51;
    font-size: 15px;
    font-weight: 600;
    line-height: 34px;
}

.dropdown.my button {
    position: absolute;
    top: 0;
    right: 0;
    width: 34px;
    height: 34px;
    border-radius: 0 4px 4px 0;
}

.dropdown.my .arrow {
    position: absolute;
    right: 0;
    top: 0;
    width: 34px;
    height: 100%;
}

.dropdown.my ul {
    z-index: -1;
    font-size: 15px;
    font-weight: 600;
}

/* Dialog Debug, Error & Warning */
.debug,
.error,
.warning {
    position: relative;
    overflow: auto;
    padding: 20px;
    font-size: 14px;
    /*word-break: break-all;*/
    word-break: break-word;
}

.error,
.warning {
    text-align: center;
}

/* Icons */

.arrow {
    display: inline-block;
    width: 24px;
    height: 14px;
    /* DO NOT minimize below properties, it is on purpose to get a background color */
    background-image: url(../images/dropdown-arrow.png);
    background-repeat: no-repeat;
    background-position: center;
}

/** MODULES **/

/* Module Viewer */

#viewer {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    white-space: nowrap;
}

#viewer::-webkit-scrollbar { 
    display: none; 
}

#viewer > li {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 5px;
    display: inline-block;
    text-align: center;
    -webkit-transform: translate3d(0,0,0);
    -webkit-backface-visibility: hidden;
    /*transform-origin: 0 0;*/
    /*-webkit-overflow-scrolling: touch;*/
    /*-webkit-transform-origin: 0 0;*/
}

#viewer.animate > li {
    -webkit-transition: -webkit-transform .5s ease-out;
}

/*#viewer.animate > li {*/
/*transition: transform .25s;*/
/*-webkit-transition: -webkit-transform .25s;*/
/*}*/

#viewer .page {
    position: relative;
    width: 50%;
    height: 100%;
    display: inline-block;
    text-align: center;
}

#viewer.animate .page {
    -webkit-transition: -webkit-transform .25s ease-out;
}

#viewer .page:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -.25em;
}

#viewer.double .page {
    padding: 0 1px 0 0;
    text-align: right;
}

#viewer.double .page:last-of-type {
    padding: 0;
    text-align: left;
}

#viewer.single .page,
#viewer .page.cover {
    width: 100%;
    text-align: center !important;
}

#viewer .page .html-page {
    display: inline-block;
    vertical-align: middle;
    box-shadow: 0 0 3px 0 #444444;
    background: #FFFFFF no-repeat center;
}

#viewer .page img,
#viewer .page > canvas {
    width: 90%;
    height: 90%;
    display: inline-block;
    vertical-align: middle;
}

/*#viewer.animate .page img,*/
/*#viewer.animate .page > canvas {*/
/*transition: height .35s ease-out, width .35s ease-out;*/
/*}*/

#viewer .page img,
#viewer .page canvas {
    background-size: contain;
}

#viewer .page img.checkered,
#viewer .page canvas.checkered {
    background: url('../images/custom/checkered.png') repeat;
    background-size: 16px 16px;
}

#viewer .page img.rowed,
#viewer .page canvas.rowed {
    background: url('../images/custom/rowed.png') repeat;
    background-size: 16px 16px;
}

#viewer .page p {
    position: absolute;
    margin: -60px 0 0 0;
    top: 50%;
    left: 0;
    width: 100%;
    display: inline-block;
    color: #EFEFEF;
    font-size: 120px;
    text-align: center;
    opacity: 0.8;
}

#viewer .page span {
    display: inline-block;
    text-align: center;
}

#viewer .page > aside {
    position: absolute;
    /*margin-left: -.25em;*/
    z-index: 50;
    display: inline-block;
    background-size: contain !important;
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    -webkit-transform: translate3d(0,0,0);
}

#viewer .page .interactive {
    margin-left: 0;
}

.kinetic .interactive {
    /*display: none !important;*/
}

#viewer.double .page:first-of-type p {
    text-align: right;
}

#viewer.double .page:last-of-type p {
    text-align: left;
}

#viewer.double > li .page.cover p {
    text-align: center;
}

#viewer .interactive > * {
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    -webkit-transform: translate3d(0,0,0);
}

#viewer .interactive .link {
    cursor: pointer;
}

#viewer .interactive .text {
    border: 6px solid #F2942E;
    overflow: auto;
    background-color: #FFFFFF;
    cursor: text;
    font-size: 30px;
    text-align: left;
    white-space: pre-wrap;
}

#viewer .interactive .text ol {
    margin: 1em;
    list-style-type: decimal;
}

#viewer .interactive .text ul {
    margin: 1em;
    list-style: circle;
}

#viewer .interactive {
}

#temporary {
    display: none;
}

/* Controls */

.kinetic > footer .icon-document,
.kinetic > footer .icon-double,
.kinetic > footer .icon-fit,
.kinetic > footer .icon-fit-back,
.kinetic > footer .icon-next,
.kinetic > footer .icon-prev {
    opacity: .3;
}

/* Module index */
#preview {
    height: 300px;
    transition: margin .5s ease-out, height .5s ease-out, padding .5s ease-out, opacity .5s ease-out;
}

#preview.fullscreen {
    margin-bottom: 0;
    height: 100%;
    padding-top: 56px;
    padding-bottom: 60px;
}

#preview a:hover {
    color: #B88DE1;
}

.js-content #preview a:hover {
    color: #F2942E;
}

#preview .dropdown {
    min-width: 250px;
    max-width: 50%;
    text-align: left;
    z-index: 9999;
    -webkit-transform:translateZ(0);
}

#preview .arrow {
    position: absolute;
    right: 0;
    top: 0;
    width: 34px;
    height: 100%;
}

#preview .dropdown ul {
    max-height: 205px;
    font-size: 15px;
    font-weight: 600;
}

#preview .dropdown li a {
    width: 100%;
    font-size: 15px;
}

#preview > button {
    position: absolute;
    top: 30px;
    right: 10px;
    border: 0;
    background: none;
    color: #B88DE1;
    font-size: 40px;
    transition: top .5s ease-out;
}

#preview.fullscreen > button {
    top: 86px;
}

#preview.fullscreen > button:before {
    content: "\e012";
}

#preview.fullscreen section {
    height: 100%;
    padding: 0 0 70px 10px;
    overflow: auto;
}

#preview nav {
    overflow: auto;
}

#preview.fullscreen nav {
    white-space: normal;
}

#preview .thumbnail,
#favorites .thumbnail,
#search .thumbnail {
    margin: 15px 15px 0 0;
    opacity: 1;
    transition: margin .25s ease-out, opacity .75s ease-out;
}

#preview .thumbnail.norender {
    margin-left: 145px;
    opacity: 0;
}

#preview .thumbnail {
    z-index: 1;
}

#preview .thumbnail img {
    z-index: 1;
}

#preview .thumbnail img:hover,
#preview .thumbnail img.current {
    border-color: #B88DE1;
    z-index: 2;
}

.js-content #preview .thumbnail img.current {
    border-color: #E2E7E8;
    z-index: 2;
}

.js-content #preview .thumbnail img:hover {
    border-color: #F2942E;
    z-index: 2;
}

.js-content .active {
    border-color: #F2942E !important;
    z-index: 2 !important;
}

.js-content #preview #buttons {
    text-align: center;
    margin-top: 35px;
}

.js-content #preview {
    height: auto !important;
}

#preview .thumbnail img:nth-child(even) {
    margin-left: -6px;
}

#preview .thumbnail span,
#favorites .thumbnail span {
    height: 26px;
}

/* Module favorites */
#favorites a:hover {
    color: #F2C500;
}

#favorites button {
    min-width: 150px;
    border-bottom-color: #F2C500;
    background-color: #F5D133;
}

#favorites button.active,
#favorites button:active {
    border-bottom-color: #F5D133;
    background: #F2C500;
}

/* button add */
#favorites section > a {
    float: left;
}

#favorites section .wrapper {
    width: 115px;
    padding: 0;
    font-size: 38px;
    line-height: 145px;
}

#favorites section > a i {
    display: block;
    opacity: 1;
    z-index: auto;
    text-align: center;
}
/* //button add */

#favorites nav {
    overflow: auto;
    touch-action: pan-x;
}

#favorites .thumbnail {
    transition: opacity .25s ease-out, transform .25s ease-out;
    -webkit-transition: opacity .25s ease-out, -webkit-transform .25s ease-out;
}

#favorites .thumbnail.norender {
    opacity: 0;
    transform: scale3d(3.3, 3.3, 1);
    -webkit-transform: scale3d(3.3, 3.3, 1);
}

#favorites section > a:hover .wrapper,
#favorites .thumbnail:hover img,
#favorites .thumbnail img.current {
    border-color: #F2C500;
}

#favorites section > a:hover .wrapper,
#favorites .thumbnail:hover img,
#favorites .thumbnail img.current {
    border-color: #F2C500;
}

#favorites.editable nav .thumbnail i,
#favorites.editable nav .thumbnail aside {
    display: block;
    z-index: 1;
    opacity: 1;
    transition: opacity .5s ease-out;
}

#favorites nav i {
    position: absolute;
    margin-left: -16px;
    top: -18px;
    left: 100%;
    cursor: pointer;
    /*z-index: -1;*/
    opacity: 0;
    color: #595E67;
    font-size: 32px;
    transition: opacity .5s ease-out;
}

.panel section a span {
    margin-top: 5px;
    height: 20px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Module search */
#search {
    padding: 0 10px 10px 10px;
    text-align: left;
    height: 400px;
}

#search .dropdown.my {
    max-width: 100%;
}

#search a:hover {
    color: #FF6058;
}

#search section {
    position: relative;
}

#search input[type=search] {
    width: 80%;
}

#search #search_input {
    margin-top: 15px;
}

#search #search_input input {
    /*box-sizing: border-box;*/
    /*width: 100% !important;*/
    width: 95%;
}

#search #search_input button {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
}

#search .status {
    width: 90%;
    padding: 15px 10px 5px;
}

#search output {
    position: absolute;
    width: 97%;
    height: 280px;
    overflow: auto;
    display: none;
    border-top: 1px solid #EEEFF0;
    margin-top: 10px;
}

#search .thumbnail {
    padding-bottom: 45px;
}

#search .thumbnail span {
    top: 146px;
}

#search .thumbnail img:hover,
#search .thumbnail img.current {
    border-color: #FF6058;
}

#search .thumbnail i,
#search .thumbnail input {
    display: none;
}

.search_result {
    /*background: rgba(255, 255, 0, 0.5);*/
    background: rgba(255, 96, 88, 0.5);
    position: absolute;
    /*margin-left: -0.25em;*/
    border-style: dotted;
    border-color: red;
    border-width: 1px;
    border-radius: 1px;
    display: inline-block;
    -webkit-transform-origin: 0 0;
}

/* Module worktools */
#worktools {
    width: 100%;
    height: 100%;
    padding-bottom: 50px;
}

.resource #worktools {
    background: #FFFFFF;
}

.worktools.dropdown {
    margin: 0;
    max-width: 100%;
}

.btn-submit {
    width: 34px !important;
    height: 34px !important;
    padding: 0 !important;
}

.btn-submit i {
    line-height: 34px;
}

#worktools .buttons {
    display: block;
    position: absolute;
    width: 64px;
    height: 100%;
    text-align: center;
    color: #32B6FF;
    font-size: 30px;
    text-decoration: none;
    z-index: 10;
    background-color: #EEEFF0;
}

#worktools .buttons a {
    display: block;
    width: 64px;
    height: 64px;
    line-height: 64px;
    text-align: center;
    color: #32B6FF;
    font-size: 30px;
    text-decoration: none;
}

#worktools .buttons .active, 
#worktools .buttons .active :hover {
    color: #FFFFFF;
    background-color: #84D3FF;
}

#worktools .filters {
    width: 100%;
    padding: 15px;
    display: table;
}

#worktools #filtercombos {
    width: 47%;
}

#worktools .dropdown {
    min-width: inherit !important;
    max-width: inherit !important;
}

#worktools .biblioteca {
    min-width: 250px;
    width: 48%;
    text-align: left;
    margin: 0 10px 10px 0;
    float: left;
}

#worktools .filter_all {
    position: absolute;
    top: 15px;
    right: 15px;
    /*left: 15px;*/
    width: 37%;
}

#worktools .filter_unique {
    position: relative;
    width: 97%;
}

#worktools #filtersearch input {
    box-sizing: border-box;
    width: 98% !important;
}

#worktools #filtersearch button {
    position: absolute;
    right: 2px;
    padding: 0;
}

#worktools #wrapper {
    padding-left: 64px;
}

#editLinkLayout #worktools .buttons {
    display: block;
    position: absolute;
    width: 64px;
    height: 100%;
    text-align: center;
    color: #F2942E;
    font-size: 30px;
    text-decoration: none;
    z-index: 10;
    background-color: #EEEFF0;
}

#editLinkLayout #worktools .buttons a {
    display: block;
    width: 64px;
    height: 64px;
    line-height: 64px;
    text-align: center;
    color: #F2942E;
    font-size: 30px;
    text-decoration: none;
}

#editLinkLayout #worktools .buttons .active, 
#editLinkLayout #worktools .buttons .active :hover {
    color: #FFFFFF;
    background-color: #F0A656;
}

/* Fix para libroClick en iPad */
#worktools.white {
    -webkit-backface-visibility: hidden;
}

#editLinkLayout #listItems div.elements .item-pic > div {
    width: 100%;
    font-size: 60px;
    text-align: center;
    padding-top: 30px;
    color: #F0A656;
}

#listItems div.elements .item-pic > div {
    width: 100%;
    font-size: 60px;
    text-align: center;
    padding-top: 30px;
    color: #32B6FF;
}

.disabled {
    pointer-events: none;
    cursor: default;
}

.full-screen {
    padding: 0 !important;
}

.full-screen > section {
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    margin: 0;
}

.full-screen section main,
.full-screen section main div {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    padding-top: 48px;
}

.full-screen header {
    z-index: 100;
}

.elements.inactive {
    opacity: 0.7;
}

#listItems .listItemInactive {
}

#listItems .item[name=''] {
    cursor: default;
    opacity: 0.7;
}

#listItems {
    overflow: auto;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    padding: 20px 20px 20px 84px;
    height: 85%;
}

#listItems .clearfix {
    padding-right: 5%;
}

#listItems .item {
    float: left;
    margin: 0 1% 15px 0;
    text-decoration: none;
    outline: 0 none;
    min-height: 185px;
    max-width: 190px;
    text-align: center;
    width: 250px;
}

#listItems .item p {
    width: 100%;
    display: block;
    white-space: initial;
    text-align: left;
    line-height: 18px;
    height: 36px;
    text-overflow: ellipsis;
}

#listItems.library .item {
    width: auto;
}

#listItems.library .item-pic {
    max-height: 100px;
    width: 100px;
    height: auto;
}

#listItems.library .item-name {
    font-size: 13px;
    width: 100px;
}

#listItems .item.active .item-pic {
    border-color: #32B6FF;
}

#listItems .item .item-pic img {
    /*width: 100%;
    height: 150px;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;*/
}

#listItems .item-pic {
    margin-bottom: 10px;
    height: 134px;
    overflow: hidden;
    width: 100%
    /*display: inline-block;*/
}

#listItems .item-name {
    color: #595E67;
    margin: 0;
    overflow: hidden;
    font-size: 16px;
    width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#listItems .item-idExt {
    color: #32B6FF !important;
}

/* Module Tools */
.hide, .hidden {
    display: none;
}

.note {
    padding: 20px;
    text-align: center;
}

.clearfix:before, 
.clearfix:after {
    content: '\0020';
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    zoom: 1;
}

.textEditor textarea {
    position: relative;
    width: 100%;
    height: 83%;
    padding: 20px;
    border: 0;
    resize: none;
}

.textEditor textarea:focus {
    outline: 0;
}

.dialog > main > iframe {
    position: relative;
    width: 100%;
    height: 100%;
    border: 0;
    background-color: #FFFFFF;
}

/* Module Draw */
#tools i {
    font-style: normal;
}

.dialog .open {
    list-style: none;
}

.dialog .open li {
    height: 40px;
    padding: 10px 20px;
    color: #595E67;
    line-height: 20px;
    transition: background-color .125s ease-in;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.dialog .open li:hover {
    background-color: #EEEFF0;
}

.dialog .close button {
    vertical-align: middle;
}

.dialog .close button:nth-of-type(2) {
    font-size: 32px;
}

/* Module help */
#help video {
    position: absolute;
    width: 100%;
    height: 420px;
}

/*noinspection CssInvalidPseudoSelector*/
.av #help video::-webkit-media-controls-fullscreen-button {
    display: none;
}

.credits {
    position: absolute;
    right: 0;
    margin-left: 100%;
    font-size: 45px;
    box-shadow: 0 0 6px rgba(0, 0, 0, .7);
    z-index: 999;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    text-align: center;
}

.credits i {
    height: 100%;
    width: 100%;
    padding: 2px;
    color: white;
    font-size: 170px;
}

.creditsDialog {
    height: 90% !important;
    overflow: auto;
}

/* Mi Libro */
.custom.edit #button-mybook {
    display: block !important;
    z-index: 55;
}

#preview.fullscreen.mybook_index {
    padding-bottom: 135px;
}

.mybook_index {
    position: absolute;
    height: 100%;
    width: 75%;
    padding-bottom: 56px;
}

.mybook_index section ul {
    width: 100%;
}

.mybook_index section ul li {
    float: left;
}

.mybook_panel {
    position: absolute;
    top: 0;
    right: 0px;
    /*width: 320px;
    width: 25%;
    min-width: 320px;*/
    height: 100%;
    padding: 0;
    display: none;
}

.mybook_panel > div {
    height: 100%;
}

.edit .mybook_panel {
    display: block;
}

.mybook_panel .panel-book {
    position: absolute;
    top: 56px;
    right: 0;
    width: 320px;
    height: 100%;
    min-height: 300px;
    /*min-width: 310px;*/
    box-shadow: 0 0 6px rgba(0, 0, 0, .4);
    background-color: #FFFFFF;
}

.mybook_panel .navigation {
    text-align: left;
    padding: 0;
    min-width: 320px;
}

#mybook > nav > a:last-child {
    float: right;
}

.mybook_panel .navigation a {
    display: inline-block;
    height: 56px;
    margin: 0 10px;
    line-height: 56px;
    font-size: 40px;
    color: #FFFFFF;
    cursor: pointer;
}

.mybook_panel > section > nav {
    padding: 15px 20px;
}

#button-mybook {
    position: absolute;
    display: block;
    top: 80px;
    right: 0;
    width: 56px; height: 56px;
    line-height: 56px;
    text-align: center;
    font-size: 32px;
    border-radius: 0;
    border: 0 none;
    box-shadow: 0 0 5px rgba(0, 0, 0, .5);
    /*z-index: 150;*/
}

#pages-my-book {
    overflow-y: auto;
    width: 100%;
    position: absolute;
    top: 56px;
    bottom: 0;
    margin-bottom: 112px;
}

#pages-my-book .erase {
    z-index: 999;
    position: absolute;
    cursor: pointer;
    color: rgba(0, 0, 0, .7);
    border: 1px solid rgba(0, 0, 0, .7);
    background: #FFFFFF;
    border-radius: 30px;
    height: 20px;
    line-height: 15px;
    font-size: 15px;
    width: 20px;
    top: -10px;
    right: -5px;
    text-align: center;
    display: none;
}

#pages-my-book .erase:after {
    position: absolute;
    content: 'X';
    font-size: 12px;
    left: 5px;
    top: 2px;
}

[draggable=true] {
    -khtml-user-drag: element;
    -webkit-user-drag: element;
    -khtml-user-select: none;
    -webkit-user-select: none;
}

.sortable-view {
    height: inherit;
    width: 100%;
    position: absolute;
}

.sortable-view > li {
    position: relative;
    /*padding-left: 30px;*/
    width: 80px;
    height: 90px;
    float: left;
    text-align: center;
    margin-left: 15px;
    margin-top: 15px;
}

.sortable-view > li.over {
    background-color: transparent;
    border: 3px dotted rgba(0, 0, 0, 0.3);
}

.sortable-view > li.over:after {
    display: none;
}

.sortable-view > li.over > * {
    visibility: hidden;
}

.sortable-view > li img {
    height: 90px;
    border: 1px solid #C5C5C5;
}

#addPages .circles-nav {
    text-align: center;
    margin: 15px 0;
}

#addPages .circles-nav a {
    display: inline-block;
    margin: 0 5px;
    width: 80px; height: 80px;
    border: 1px solid #666666;
    background-color: #FFFFFF;
    border-radius: 40px;
}

#addPages .circles-nav .rowed {
    background: url(../images/custom/rowed.png);
}

#addPages .circles-nav .checkered {
    background: url(../images/custom/checkered.png);
}

#addPages .circles-nav .active {
    border-color: #CD0047 !important;
}

#addPages .number-selector {
    display: inline-block;
    padding: 5px 10px;
    vertical-align: middle;
    background-color: #EEEFF0;
    border-radius: 4px;
}

#addPages .number-selector input {
    border: none;
    outline: none;
    width: 24px;
    margin: 0 15px;
    font-size: 18px;
    text-align: center;
    background-color: transparent;
    padding: 0;
}

#addPages .number-selector span {
    cursor: pointer;
    font-size: 24px;
}

.centerContent {
    text-align: center;
}

#addPages #add {
    width: 150px;
    margin-bottom: 0;
    margin-top: 20px;
    border-bottom-color: #AA0101;
}

#mybook {
    margin-left: 0;
    opacity: 1;
    transition: .5s all;
    z-index: 55;
}

#mybook.norender {
    margin-left: 100%;
    opacity: 0;
    display: none;
}


/* === TOOL MENU === */
header > #tools_menu {
    background-color: #2F3641;
    height:56px;
}

header > #tools_menu a {
    vertical-align: middle;
    color:#f2942e;
}

header > #tools_submenu a i.label,
header > #tools_submenuL2 a i.label {
    font-size:16px;
}

header > #tools_submenu a,
header > #tools_submenuL2 a {
    color:#ffffff;
    vertical-align:middle;
}

header > #tools_submenu,
header > #tools_submenuL2 {
    display:none;
    background: #f2942e;
    height:56px;
}

header > #tools_menu section,
header > #tools_submenu section,
header > #tools_submenuL2 section {
    height:56px;
}


/* Nuevo tools */
#tools {
    background-color: #2F3641;
    height:56px;
    width: 100%;
}

#tools nav {
    height: 100%;
    overflow-y: hidden;
}

#tools nav a {
    top: 0;
    height: 100%;
}

#tools nav:nth-of-type(1) {
    position: absolute;
    top: 0;
    left: 0;
    overflow-x: auto;
    text-align: left;
    box-sizing: border-box;
    white-space: nowrap;
    /* Momentum */
    /* Lo desactivo porque no se puede limitar a que solo lo haga horizontalmente y no vertical. */
    /*-webkit-overflow-scrolling: touch;*/
    padding-left: 60px;
}

/*hiding the scrollbar*/
#tools nav:nth-of-type(1)::-webkit-scrollbar {
    display: none;
 }

#tools nav:nth-of-type(1) a:nth-of-type(1) {
    color: #f2942e !important;
    background-color: #2F3641 !important;
    position: fixed;
    height: 56px;
    z-index: 9999;
    left: 0;
    /*box-shadow: 4px 0 6px -2px rgba(0, 0, 0, .5);*/
}

#tools nav:nth-of-type(2) {
    float: right;
    background-color: #2F3641 !important;
}

#tools nav:nth-of-type(2) a {
    color: #f2942e !important;
}

#tools nav:nth-of-type(3) {
    float: right;
    box-shadow: -7px 0px 6px -6px rgba(50, 50, 50, 0.5);
}

#tools.tools-submenu {
    background-color: #F2942E;
}

#tools.tools-submenu a {
    color: #FFFFFF;
}

#tools.tools-submenu a p {
    line-height: 56px;
}

#tools a {
    vertical-align: middle;
    color: #f2942e;
    position: relative;
    padding: 0 10px;
    display: inline-block;
    cursor: pointer;
}

#tools a.active {
    background-color: rgba(255, 255, 255, .25);
}

#tools .menu a i.label,
#tools .icon-label {
    font-size: 16px;
}

#tools .submenu a {
    color: #ffffff;
    vertical-align: middle;
}

#tools .submenu {
    display: none;
    background: #f2942e;
    height: 56px;
    width: 100%;
    line-height: 56px;
    overflow: hidden;
}

#tools section {
    height: 56px;
}

/* Mini Modal */
.minimodal #tools_modal_header h4 {
    color: white;
}

.minimodal .modal-dialog {
    width: 385px;
}

.minimodal #tools_modal_header {
    padding-left: 20px;
    padding-right: 15px;
    background-color: #f2942e;
}

.minimodal .modal-footer {
    text-align: center;
    padding: 20px 0;
}

.minimodal .modal-footer .btn {
    padding-left: 0;
    padding-right: 0;
    width: 140px;
    margin: 0 10px;
}

/* Botones de colores */
.color-btn {
    display: block;
    width: 50px; 
    height: 50px;
    border-radius: 25px;
}

.color-btn.active {
    border: 3px solid #9E9E9E;
    box-shadow: 0 0 1px #fff inset;
}

/* Botones de colores */
.color-btn {
    display: block;
    width: 50px; 
    height: 50px;
    border-radius: 25px;
    cursor: pointer;
}

.color-btn.active {
    border: 3px solid #9E9E9E;
    box-shadow: 0 0 1px #fff inset;
}

.colors-catalog {
    padding: 0 15px 0;
}

.colors-catalog .col {
    float: left;
    width: 20%;
}

.colors-catalog .col .color-btn {
    margin: 15px auto;
}

.colors-catalog .col:nth-child(even) .color-btn {
    margin: 25px auto;
}

.colors-catalog .col:nth-child(even) {
    padding-top: 25px;
}

/* Catalogo de colores */
.colorcat-01 { background-color: #00ff00; }
.colorcat-02 { background-color: #009141; }
.colorcat-03 { background-color: #009896; }
.colorcat-04 { background-color: #ffff00; }
.colorcat-05 { background-color: #fdc700; }
.colorcat-06 { background-color: #00ffff; }
.colorcat-07 { background-color: #009ee0; }
.colorcat-08 { background-color: #6fcdee; }
.colorcat-09 { background-color: #e2001a; }
.colorcat-10 { background-color: #ec8b00; }
.colorcat-11 { background-color: #ff00ff; }
.colorcat-12 { background-color: #e3007c; }
.colorcat-13 { background-color: #000; }

#color-minimodal .modal-dialog {
    position: absolute;
    top: 50%;
    margin-top: -200px;
    left: 50%;
    margin-left: -193px;
}

#tools .menu section a.active,
#tools .menu section a.activeMenu ,
#tools .menu section .activeWithSubmenu {
    color: white;
}

#tools .menu section a.active i,
#tools .menu section a.activeMenu i,
#tools .menu section .activeWithSubmenu i {
    position: relative;
    z-index: 2;
}

#tools .menu section a i.label{
    font-size: 16px;
}

/*#tools .menu section .activeWithSubmenu:after {
    content: '';
    position: absolute;
    top: 35px; left: 50%;
    height: 0; width: 0;
    margin-left: -30px;
    border: solid transparent;
    border-color: rgba(136, 183, 213, 0);
    border-top-color: #2f3641;
    border-width: 30px;
    pointer-events: none;
    z-index: 1;
}*/

/* Boton de selección de color */
.icon-btn-color-select {
 position: relative;
 top: 10px;
 display: inline-block;
 width: 35px; height: 35px;
 border-radius: 20px;
 border: 2px solid #fff;
}

 #tools_modal_body ul {
    display:block;
    position:static;
    box-shadow:inherit;
}

/* Listado de tipos de links */
.link-list {
    font-size: 20px;
}

.link-list li{
    margin: 0 auto;
}

.link-list li a {
    width: 100%;
    padding: 10px 20px;
    display: inline-block;
    color: #595E67;
    font-size: 16px;
    line-height: 20px;
}

.link-list li:hover {
    background-color: #EEEFF0;
}

.text_box {
    padding: 10px 20px;
    font-weight: bold;
}

.wrapper {
    padding: 20px;
    text-align: center;
}

.wrapper label, 
.wrapper input , 
.wrapper span{
    width: 100%;
    margin-bottom: 10px;
    border-radius: 5px;
    display:block;
    text-align: left;
}

.submenu .submenu_left .active {
    /*background-image: url("../images/active-arrow.png");
    background-size: 20px 10px;
    background-repeat: no-repeat;
    background-color: transparent;
    background-position: top center;*/
    background-color: rgba(255, 255, 255, .25);
}

.submenu .submenu_right .active {
    background-color: rgba(255, 255, 255, .25);
}

.open_ul {
    padding: 0;
    margin: 10px 20px;
}

.open_ul li {
    margin-left: 1em;
    list-style-type: circle;
}

.warning_tools {
    text-align:justify;
    padding: 20px;
}

.editor {
    margin-top: 5%;
}

/**
 * Fix 3581 parte 2
 * Descripción del problema: Android 4.4 (acer): La ventana del editor de texto no se ajusta al ancho de la pantalla y las opciones de copiar y pegar no se visualizan.
 * Descripción de la solución: Se colocaba por bootstrap 1070px siempre que el tablet tuviera un width minimo de 1020px lo que hace que el div del editor este mal ajustado.
 * @author Mario Poyato <mario.poyato@inmediastudio.es>
**/
div.editor.container {
    width: auto !important;
}

/* Fix para listas dentro de cajas de texto */
aside ul li span {
    width: auto !important;
}

aside ol li span {
    width: auto !important;
}

/**
 * Fix de imagen no centrada en los recursos o libroclick
 * Descripción del problema: La imagen del recurso no se ajusta al ancho total por lo que se desplaza un poco a la izquierda (en realidad es más grande que el marco).
 * Descripción de la solución: Con esta regla CSS se obliga a que la imagen este se ajuste completamente al ancho del elemento.
 * @author Mario Poyato <mario.poyato@inmediastudio.es>
**/
main#worktools div#listItems div.elements a.item div.item-pic img {
    height: 100%;
}


/* REJILLA RECURSOS */

/* Botones Presentación Rejilla */
.icos-rejilla{
    display: table-cell;
    vertical-align: middle;
    width: 90px;
}
.icos-rejilla .icon{
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-right: 3px;
    background-color: #ECECEC;
    color: #b1b1b1;
    position: relative;
    cursor: pointer;
}
.icos-rejilla .icon span{
    position: absolute;
}
span.ICONO_grid-ico {
    font-size: 21px;
    top: 8px;
    left: 6px;
}
span.ICONO_listado-ico{
    font-size: 26px;
    top: 5px;
    left: 3px;
}
.icos-rejilla .active span{
    color: white;
}

.icos-rejilla .active{
    background-color: #32B6FF !important;
}


/* Etiquetas Estado */
span.estado {
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 25px;
    margin: -13px 0 8px 154px;
}
span.estado::after {
    display: block;
    width: 100%;
    padding-top: 6px;
    font-size: 0.7rem;
    color: black;
    text-align: center;
    font-weight: bold;
}
span.borrador, span.estado_1{background-color: #CFCEC9;}
span.borrador::after, span.estado_1::after  {content: "D";}
span.revision, span.estado_2{background-color: #F0FCA5;}
span.revision::after, span.estado_2::after  {content: "R";}
span.publicada, span.estado_3{background-color:  #5FFB8F;}
span.publicada::after, span.estado_3::after  {content: "P";}
span.finalizada, span.estado_4{background-color: #00D052;}
span.finalizada::after, span.estado_4::after  {content: "F";}
span.lectura, span.estado_5{background-color: #FFA637;}
span.lectura::after, span.estado_5::after  {content: "L";}
span.correccion, span.estado_6{background-color: #FCF34C;}
span.correcion::after, span.estado_6::after  {content: "C";}
span.importacion, span.estado_7{background-color: #FF5E1F;}
span.importacion::after, span.estado_7::after  {content: "RI";}
span.desarrollo, span.estado_8{background-color: #CFCEC9;}
span.desarrollo::after, span.estado_8::after  {content: "D";}
span.fin-lectura, span.estado_9{background-color: #F0FCA5;}
span.fin-lectura::after, span.estado_9::after {content: "FL";}

#listItems .item h3{
    line-height: 1.2rem;
}
h4.id{
    font-size: 0.8rem;
    text-transform: uppercase;
}
#listItems .item{
    margin-bottom: 30px !important;
}


/*Maquetación Listado*/
#listItems.listado{
    padding-top: 10px;
}
/*.listado .elements:first-child{
    border-top: 1px solid #d9d9d9;    
}*/
.listado .elements{
    position: relative;
    width: auto;
    border-bottom: 1px solid #d9d9d9;
    float: none;
    height: auto;
    padding: 0.7rem 0;
    margin: 0 0 0 54px !important;
}
.listado .elements a.item{
    max-width: none !important;
    width: 100% !important;
    min-height: auto !important;
    height: auto !important;
    margin: 0 !important;
    float: none !important;
    text-align: left;
}
.listado .item-pic{
    border: none !important;
    height: auto !important;
}
.elements .item-pic{
    border: 2px solid #E2E7E8;
}    
.listado .elements .item-pic div{
    position: absolute;
    left: -46px;
    width: auto !important;
    border: none;
    height: auto;
    line-height: normal;
    top: 20px;
    font-size: 32px !important;
    padding-top: 0 !important;
}
.listado .estado{
    position: absolute;
    right: 0;
    top: 80%;
}
.listado .elements p.item-name{
    width: 95% !important;
    height: auto !important;
    font-size: 0.9rem !important;
    line-height: 1.2rem !important;
}

.listado .elements .item-pic .ICONO_recursos_02_web{
    font-size: 26px !important;
}

.listado .item-thumbnail img{
    position: absolute;
    left: -46px;
    width: auto;
    border: none;
    height: 100px !important;
    line-height: normal;
    font-size: 32px;
    float: left;
    top: 2px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.listado .elements .item-thumbnail+p.item-name{
    height: 78px !important;
    margin-left: 125px !important;
    font-size: 18px !important;
}