/*
 *
 * Landing Pianeta 30
 * BY ing. Nicolò Chiellini n.chiellini@4sigma.it
 *
 */
:root {
    --scrollbar-width: 0px;
    --bianco: #fff;
    --nero: #000;
    --grigio: #808080;
    --verde: #12a53a;
    --grigio-scuro: #404040;
    --verde-light: #e4f2e5;
    --verde-ultra-light: #e7f6eb;
    --vh: 1vh;
}
html {
    width: 100%;
    min-height: 100%;
    margin: 0px;
    float: left;
    padding: 0px;
    font-family: 'Lexend';
    background-image:url('../img/pianeta30_bg.jpg');
    background-size: 100% 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
body {
    border: none;
    padding: 0px;
    margin: 0px;
    width: 100%;
    min-height: 100vh;
    float: left;
    -webkit-text-size-adjust: 100%;
    font-size: 12px;
    line-height: 15px;
    font-weight: 400;
    position: relative;
    color: var(--grigio);
    overflow-x: hidden;
}

td {
    border: none;
    text-align: left;
    margin: 0px;
    padding: 0px;
}
div, p, h1, h2, h3, h4, h5, h6, ul,
footer, header, nav, article, main, aside,
section, form, fieldset {
    float: left;
    margin: 0px;
    padding: 0px;
    width: 100%;
    text-align: left;
    text-decoration: none;
    -webkit-text-size-adjust: 100%;
}
img {
    text-decoration: none;
    border: none;
    vertical-align: middle;
}
svg {
    border: none;
    border-image-width: 0;
    stroke-width: 0px;
}
iframe {
    margin: 0px;
    padding: 0px;
    border: none;
}
video[poster] {
    height:100%;
    object-fit: cover;
}
video {
    max-width: 100%;
}
table, td, tr {
    margin: 0px;
    padding: 0px;
    border: none;
}
table {
    float: left;
}
label {
    cursor: pointer;
}
a {
    outline: none;
    text-decoration: none;
    cursor: pointer;
    color: var(--verde);
    transition: color 0.2s;
    -webkit-transition: color 0.2s;
}
li {
    outline: none;
}

i, em, .italic {
    font-style: italic;
    font-weight: inherit;
}
i strong, em strong {
    font-style: italic;
}
.underline {
    text-decoration: underline;
}
a:focus {
    outline: none;
}
.hidden {
    display: none;
}
.over_hidden {
    overflow: hidden;
}
.block {
    display: block;
}
.flex {
    display: flex;
}
.mobile {
    display: none;
}
.opacity_0 {
    opacity: 0;
}
.opacity_03 {
    opacity: 0.3;
}
.opacity_05 {
    opacity: 0.5;
}
.opacity_06 {
    opacity: 0.6;
}
.inline-block {
    display: inline-block;
}
.inline-desktop {
    display: inline;
}
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.pointer {
    cursor: pointer;
}
.wait {
    cursor: wait;
}
.left {
    float: left;
}
.right {
    float: right;
}
.none {
    float: none;
}
.clear {
    clear: both;
}
.v_top {
    vertical-align: top;
}
.text_top {
    vertical-align: text-top;
}
.v_middle {
    vertical-align: middle;
}
.v_bottom {
    vertical-align: bottom;
}
.m_auto {
    margin: 0px auto
}
.w_auto {
    width: auto;
}
.max_w100pe {
    max-width: 100%;
}
.max_w80pe {
    max-width: 80%;
}
.max_w70pe {
    max-width: 70%;
}
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.text-justify {
    text-align: justify;
}
.text-truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.extralight {
    font-weight: 100;
}
.light {
    font-weight: 200;
}
.normal {
    font-weight: 400;
}
.style-normal {
    font-style: normal;
}
.strike {
    text-decoration: line-through;
}
.medium {
    font-weight: 500;
}
.semibold {
    font-weight: 600;
}
.bold,
strong,
b {
    font-weight: 700;
}
.extrabold {
    font-weight: 900;
}
.black,
.nero,
.blacklink,
.blacklink:visited,
.black_white_lnk {
    color: var(--nero);
}
.white, .bianco {
    color: var(--bianco);
}
.red {
    color: red;
}
.grigio {
    color: var(--grigio);
}
.grigio-scuro {
    color: var(--grigio-scuro);
}
.cover {
    background-size: 100% 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.noscroll {
    position: fixed;
    overflow-y:scroll
}
.modal-box {
    display: none;
    position: fixed;
    padding: 40px 20px 40px 40px;
    background-color: #fff;
    color: #000;
    text-align: center;
    z-index: 9999;
    top: -500px;
    opacity: 1;
    box-sizing: border-box;
    width: 700px;
    left: 50%;
    margin-left: -350px;
    border-radius: 5px;
    box-shadow: 0px 0px 25px 0px rgb(0 0 0 / 15%);
    max-height: 70vh;
}
/* MAIN */
.page {
    max-width: 700px;
    float: none;
    margin: 0px auto;

}
#main {
    min-height: 100vh;
    position: relative;
    z-index: 100;
}
#logo {
    width: 100%;
    margin-top: 20px;
}
#player-cont {
    min-height: 530px;
    margin: 20px 0px 40px 0px;
    border-radius: 10px;
    position: relative;

}
#player-body,
#player-bottom {
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
}
#player-body {
    border-radius: 10px;
}
#bg-lettura {
    position: absolute;
    top: 50px;
    right: calc(50vw + 370px);
}
#bg-terra {
    position: absolute;
    bottom: 0px;
    left: -260px;
}
#bg-svarione {
    position: absolute;
    bottom: 120px;
    right: -320px;
}
#player-top {
    height: 170px;
    background-color: var(--verde-light);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    box-sizing: border-box;
    padding: 20px 40px;
    position: relative;
    z-index: 5;
    box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.1);
}
#player-top-logo {
    display: block;
    float: left;
    background-color: #fff;
    height: 130px;
    width: 130px;
    line-height: 120px;
    border-radius: 10px;
    padding: 5px;
    box-sizing: border-box;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
}
#player-top-logo img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
}
#player-top-details {
    width: calc(100% - 150px);
    float: right;
    min-height: 130px;
    box-sizing: border-box;
    padding: 20px 0px;
}
#player-top-text-left,
#player-top-text-right {
    width: 50%;
}
#player-top-text-left h1 {
    font-size: 15px;
    color: var(--verde);
    font-weight: 900;
}
#player-top-text {
    border-bottom: 0.5px solid #bfbfbf;
    padding-bottom: 10px;
    margin-bottom: 10px;

}
#player-bottom {
    min-height: 100px;
    padding: 20px 40px;
    background-color: white;
    box-sizing: border-box;
    border-radius: 10px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}
#player-bottom a {
    display: inline-block;
    float: left;
    margin-top: 5px;
}
#player-bottom img {
    height: 30px;
}
.player-bottom-logo-box {
    width: auto;
}
#player-file-list-cont {
    min-height: 240px;
    padding: 10px 10px 10px 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-sizing: border-box;
    position: relative;
    z-index: 4;
    background-color: white;
}
#player-file-list {
    max-height: 220px;
    overflow-y: auto;
    box-sizing: border-box;
    padding-right: 20px;
}
.player-file {
    display: block;
    float: left;
    height: 50px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-sizing: border-box;
    padding: 10px 20px 10px 55px;
/*     background-color: yellow; */
    position: relative;
    margin-bottom: 5px;
    color: var(--grigio);
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}
.player-file-info {
    width: 50px;
    height: 50px;
    display: block;
    float: left;
    text-align: center;
    line-height: 50px;
    position: absolute;
    left: 0px;
    top: 0px;
    color: var(--grigio-scuro);
}
.player-file.sel {
    background-color: var(--verde);
    color: #fff;
}
.player-file.sel .player-file-info,
.player-file.sel .artista {
    color: #fff;
}
#player-core-info {
    width: calc(100% - 115px);
}
#player-core-controls {
    width: 115px;
    padding-top: 20px;
}
#player-audio-duration {
    width: 75px;
    display: block;
    float: left;
    text-align: center;
    padding-top: 14px;
}
#player-btn-toggle-play-pause {
    width: 40px;
    height: 40px;
    display: block;
    float: right;
    border-radius: 20px;
    text-align: center;
    line-height: 40px;
    background-color: var(--verde);
    color: white;
}
#player-btn-toggle-play-pause img {
    height: 15px;
}
.audio-barra-bg {
    display: block;
    float: left;
    height: 5px;
    border-radius: 5px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #cdd9ce;
    margin-top: 10px;
}
.audio-barra-avanzamento {
    display: block;
    float: left;
    height: 5px;
    width: 0%;
    background-color: #aeb9af
}
#player-btn-toggle-play-pause.player-is_pause img:first-child,
#player-btn-toggle-play-pause:last-child {
    display: inline;
}
#player-btn-toggle-play-pause.player-is_pause img:last-child,
#player-btn-toggle-play-pause img:first-child {
    display: none;
}
@media only screen and (min-width:1201px) and (max-width:10000px) {
    .player-file:hover {
        background-color: var(--verde-ultra-light);
    }
    .player-file.sel:hover {
        background-color: var(--verde);
        color: #fff;
    }
}
@media only screen and (min-width:320px) and (max-width:767px) {
    #bg-lettura,
    #bg-terra,
    #bg-svarione {
        display: none;
    }
    body {
        padding-left: 5px;
        padding-right: 5px;
        box-sizing: border-box;
    }
    #player-top-details {
        width: 100%;
    }
    #player-top-logo {
        position: absolute;
        top: 10px;
        left: 10px;
    }
    #player-top {
        height: auto;
        min-height: 170px;
        padding: 20px 10px;
    }
    #player-top-text {
        border-bottom: none;
        padding-left: 150px;
        box-sizing: border-box;
    }
    #player-top-text-left, #player-top-text-right {
        width: 100%;
    }
    #player-top-text-left {
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 0.5px solid #bfbfbf;
    }
    #player-core {
        margin-top: 10px;
        position: relative;
    }
/*    #player-audio-duration {
        position: absolute;
        bottom: -30px;
        right: 0px;
    }*/
    #player-audio-duration {
        text-align: right;
        padding-right: 5px;
        box-sizing: border-box;
    }
    #player-core-controls {
        width: 115px;
        position: absolute;
        right: 0px;
        margin-top: 0px;
        bottom: -15px;
    }
    #player-core-info {
        width: calc(100% - 115px);
    }
    .player-file-info {
        width: 30px;
    }
    #player-file-list-cont {
        padding: 10px 5px 10px 10px;
    }
    .player-file {
        min-height: 50px;
        height: auto;
        width: 100%;
        padding: 10px 70px 10px 35px;
        position: relative;
    }
    .player-file .durata {
        position: absolute;
        top: 11px;
        right: 20px;
    }
    #player-file-list {
        padding-right: 0px;
    }
    #player-bottom {
        padding: 10px 10px;
        min-height: 50px;
    }
}
