<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/** COVER Actions
 * --------------------- */

.cactions{

    margin-top: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.cactions a{
    display: block;
}
.cactions .btn-print img,
.cactions .btn-license img {
  opacity: 0.65;
}
.cactions .icon-print{
    max-width: 50px;
    --credits-icon-color: rgba(0,0,0,.3);
    transition: transform .2s ease-in-out;
    transform:scale(1);
}
.cactions .icon-print:hover,
.cactions .icon-print:focus,
.cactions .icon-print:active{
    --credits-icon-color: rgba(0,0,0,.6);
    transform:scale(1.3);
}

.cactions .icon-credits{
    max-width: 50px;
    --credits-icon-color: rgba(0,0,0,.3);
    transition: transform .2s ease-in-out;
    transform:scale(1);
}
.cactions .icon-credits:hover,
.cactions .icon-credits:focus,
.cactions .icon-credits:active{
    --credits-icon-color: rgba(0,0,0,.6);
    transform:scale(1.3);
}

/** MODAL
 * --------------------- */
.fsmodal{

}
.fsmodal-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 70%;
    max-width: 700px;
    z-index: 200;
    padding: 60px;
    overflow: visible;

    color: #222;
    background-color: #fff;
    border-radius: 0;

    -webkit-transform: translate(-50%, -200%);
    -ms-transform: translate(-50%, -200%);
    transform: translate(-50%, -200%);

    transition: transform 0.4s ease-out;
}
.fsmodal-backdrop{
    opacity: 0;
}
.fsmodal.open .fsmodal-backdrop{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    color: #FFF;
    background-color: rgba(0,0,0, .75);
    z-index:110;
    opacity: 1;
    cursor: pointer;
    transition: opacity 0.3s ease-out;

}
.fsmodal.open .fsmodal-container {
    top: 50%;
    margin-bottom: 10%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.fsmodal-close{
    display: block;
    float: right;
    width: 40px;
    height: 40px;
    overflow: hidden;
    cursor: pointer;
    font-size:26px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background-color: #000;
}
.fsmodal-close:hover,
.fsmodal-close:focus{
    color: #fff;
    background-color: #333;
}
.fsmodal-head{
    display: block;
    overflow: hidden;
}
.fsmodal-title{
    font-size: 40px;
}
.fsmodal-body{
    display: block;
    overflow-y: auto;
    max-height: 80%;
    clear: both;
    font-size: 14px;
}
.fsmodal-body a{
    color: #990025;
    text-decoration: none;
}
.fsmodal-body a:active,
.fsmodal-body a:focus,
.fsmodal-body a:hover{
    text-decoration: underline;
}

.btn-license{
    cursor: pointer;
}

.btn-license img{
    max-width:120px;
    opacity:0.65;
}

.btn-license:hover img{
    opacity:0.95;
}

/** RESPONSIVE
 * ------------------------ */

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    /** ---- Modal ---- */
    .fsmodal-container{
        width: 90%;
        padding: 40px;
    }
    .fsmodal-title{
        font-size: 24px;
    }
    .fsmodal-body{
        font-size: 12px;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    /** ---- Modal ---- */
    .fsmodal-container{
        width: 90%;
        padding: 50px;
    }
    .fsmodal-title{
        font-size: 24px;
    }
    .fsmodal-body{
        font-size: 12px;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    /** ---- Modal ---- */
    .fsmodal-container{
        width: 85%;
        padding: 50px;
    }
    .fsmodal-title{
        font-size: 28px;
    }
    .fsmodal-body{
        font-size: 14px;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

}


/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

}
</pre></body></html>