﻿body {
    --white: #FFF;
    --white-75: rgba(255,255,255,0.85);
    --white-100: #fefefe;
    --white-200: #f5f5f5;
    --white-300: #f2f2f2;
    --white-400: #f1f1f1;
    --white-500: #e7e7e7;
    --white-600: #d7d7d7;
    /* darks */
    --dark-600: #646464;
    --dark-700: #5c5c5c;
    --dark-800: #505050;
    --dark-900: #4f4f4f;
    /* greens */
    --green: #0ea937; /*Success*/
    /* reds */
    --red-500: #ee402f; /* Error*/
    /* blues */
    --blue-900: #30444E;
    /* End Colors */
    /* Images */
    --headerBackground: var(--headerConfig);
    --bodyBackground: var(--bodyConfig);
    --logoUrl: transparent url(/images/mtransparentewhite.png) no-repeat center center;
    /* definitions */
    --mainColor: var(--theme);
    --font: var(--fontFamily);
    --formBackground: var(--white-75);
    --disabledColor: var(--dark-800);
    --disalbledBorder: var(--white-600);
    --disabledBackground: var(--white-200);
    --inputBorderColor: var(--dark-600);
    --smallDescriptionColor: var(--dark-700);
    --successBackgroundColor: var(--green);
    --errorBackgroundColor: var(--theme-400);
    --btnTextColor: var(--white);
    --tabBorderTop: var(--theme-200);
    --timelineTabBackground: var(--white-300);
    --timelineTabActiveBackground: var(--theme-500);
    --confirmationBackground: var(--white-500);
    --sessionsBorderLeft: var(--theme-600);
    --sessionsBeforeBorder: var(--theme-500);
    --sessionsColor: var(--dark-900);
    --sessionsTimeColor: var(--theme-900);
    --footerBackground: var(--footerBackgroundColor);
    --buttonDark: var(--blue-900);
    --evenBackground: var(--white-400);
    --oddBackground: var(--white-100);
    --errorBackground: var(--red-500);
}

* {
    font-family: var(--font), sans-serif;
    /*outline: none !important;*/
}



html, body {
    margin: 0;
    padding: 0;
    background: var(--bodyConfig);
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#head {
    background: var(--headerBackground);
    height: 140px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    text-align: center;
}

    .logo img {
        max-height: 100px;
        max-width: 100%;
    }

.form {
    width: 80%;
    background: var(--formBackground);
    padding: 40px 40px;
    box-sizing: border-box;
    -webkit-box-shadow: 0px 3px 6px 0px #A3A3A3;
    box-shadow: 0px 3px 6px 0px #A3A3A3;
    display: table;
    margin: 0 auto 60px auto;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
    text-align: center;
}

.modal-content {
    background-color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
}

.default-audio-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f3f3f3;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .default-audio-controls button {
        background: none;
        border: none;
        font-size: 20px;
        cursor: pointer;
        margin: 0 5px;
        color: #007BFF; /* Change to your preferred color */
    }

    .default-audio-controls #progressContainer {
        background-color: #ccc;
        height: 8px;
        flex-grow: 1;
        margin: 0 10px;
        position: relative;
    }

    .default-audio-controls #progressBar {
        background-color: #007BFF; /* Change to your preferred color */
        height: 100%;
        width: 0;
        transition: width 0.1s;
    }

    .default-audio-controls i {
        padding: 0 5px;
    }

        .default-audio-controls i:hover {
            color: #0056b3; /* Change to your preferred hover color */
        }

.cookie-alert {
    display: grid;
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #F7F7F7;
    color: #333333;
    padding: 10px;
    display: none;
    font-size: 14px;
    max-width: 700px;
}

.cookie-alert-buttons {
    width: 100%;
    margin-top: 10px;
    float: left;
}

#cookie-preferences {
    float: left;
    background-color: #777777;
}

#accept-cookies {
    float: right;
    background-color: #1694BA;
}

#cookie-preferences, #accept-cookies {
    padding: 5px 10px;
    border: none;
    text-transform: uppercase;
    font-size: 14px;
    color: #FFF;
    font-weight: bold;
}

.footer-container {
    width: 80%;
    margin: 0 auto;
    padding: 21px 0px;
}

.follow-container {
    float: right;
}

footer hr {
    border: 1px solid #31323f;
    height: 0;
}

footer a {
    color: var(--hiperlinkColorFooter);
    text-decoration: underline;
    line-height:26px;
}

    footer a:hover {
        color: var(--white);
    }

.copyright, .poweredby {
    color: #FFF;
    font-size: 13px;
}

.copyright {
    float: left;
}

.about-container {
    color: #FFF;
    font-size: 13px;
    float: left;
}

.poweredby {
    float: right;
}

.mini-logo {
    background: var(--logoUrl);
    background-size: 148px;
    height: 47px;
    width: 148px;
    display: block;
}

.minilogo-container {
    margin-top: 18px;
}

a#mainlink {
    background: var(--btnBackgroundColor);
    color: var(--btnTextColor);
    font-weight: 700;
    padding: 4px;
    position: absolute;
    z-index: -1;
    opacity: 0;
}

    a#mainlink:active, a#mainlink:focus {
        opacity: 1;
        z-index: 999;
    }




input:disabled:not(.secret-key), textarea:disabled, select:disabled, input[readonly], textarea[readonly], select[readonly] {
    color: var(--disabledColor) !important;
    opacity: 1 !important;
    border: 1px solid var(--disalbledBorder) !important;
    background: var(--disabledBackground);
    cursor: default;
}

input:disabled:not(.secret-key), select:disabled, input[readonly], select[readonly] {
    pointer-events: none;
}

label[readonly] {
    pointer-events: none;
    cursor: default;
}

.captcha-container > label {
    width: 100%;
    display: block;
    float: left;
    font-size: 16px;
}

.input {
    margin: 14px 0px;
    float: left;
    width: 100%;
}

    .input > label {
        width: 100%;
        display: block;
        float: left;
        font-size: 16px;
    }

    .input input:not([type='checkbox'], [type='radio']), .input select {
        width: 100%;
        margin: 0;
        padding: 8px 6px;
        float: left;
        box-sizing: border-box;
        border: 1px solid var(--inputBorderColor);
    }

    .input textarea {
        resize: none;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
        height: 200px;
        padding: 10px 6px;
        border: 1px solid var(--inputBorderColor);
    }

    .input ul {
        list-style: none;
        margin: 0;
        padding: 0 0 0 0px;
    }

        .input ul li input, .input ul li label {
            float: left;
            display: inline-block;
        }

        .input ul li {
            width: 100%;
            display: block;
            float: left;
        }

            .input ul li input {
                margin: 4px 4px 0px -2px;
            }

                .input ul li input[readonly] {
                    margin: 8px 4px 0px 0px;
                }

            .input ul li span {
                padding: 3px;
                display: inline-block;
            }

            .input ul li label {
                padding-top: 3px !important;
                display: inline-block;
                padding-bottom: 3px;
            }

            .input ul li input[type=checkbox] {
                margin: 8px 8px 0px 0px;
            }

            .input ul li label {
                margin-right: 10px;
                padding-top: 0px;
            }

h3, .main-title {
    margin: 0;
    padding: 0;
    font-size: 24px;
    padding-bottom: 10px;
}

small {
    font-size: 14px;
    color: var(--smallDescriptionColor);
    width: 100%;
    float: left;
    line-height: 1.5em;
}

.red {
    color: var(--mainColor);
}

.news-area {
    display: block;
    padding-bottom: 40px;
    font-size: 15px;
}

a.btn {
    background-color: var(--btnBackgroundColor);
    color: var(--btnTextColor);
    text-decoration: none;
    padding: 10px 20px;
    margin: 10px 20px 0px 0px;
    float: left;
    font-size: 16px;
}

    a.btn.dark {
        background-color: var(--btnDarkBackgroundColor);
    }

.voice {
    background-color: var(--btnDarkBackgroundColor);
    color: var(--btnTextColor);
    text-decoration: none;
    padding: 10px 20px;
    margin: 10px 20px 0px 0px;
    float: left;
    font-size: 16px;
    border: 0;
    outline: 0 !important;
}

input.btn {
    background-color: var(--btnBackgroundColor);
    color: var(--btnTextColor);
    padding: 10px 20px;
    margin: 10px 20px 0px 0px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

    input.btn.dark {
        background-color: var(--btnDarkBackgroundColor);
    }

.hidden {
    display: none;
}

hr {
    margin: 10px 0;
    padding: 0;
}

.ui-state-active {
    background: #ee7367 !important;
    border: 1px solid var(--mainColor) !important;
}

.error {
    border: 1px solid var(--mainColor) !important;
}

.ajs-error {
    background: var(--errorBackground) !important;
    color: var(--btnTextColor);
    font-size: 14px;
    padding: 10px !important;
}

.ajs-success {
    background: var(--successBackgroundColor) !important;
    color: var(--btnTextColor);
    font-size: 14px;
    padding: 10px !important;
}

.captcha-container {
    float: left;
    width: 100%;
}

.form-submit {
    float: left;
    padding-top: 20px;
}

#img-captcha {
    float: left;
}

#CaptchaCode {
    float: left;
    margin: 16px 0px 0px 14px;
}

.confirm-area ul {
    padding-left: 0px !important;
}

.error-big {
    width: 100%;
    background: var(--errorBackgroundColor);
    display: block;
    padding: 9px;
    color: var(--btnTextColor);
    margin-bottom: 21px;
}

ul.tab-container {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

    ul.tab-container li {
        display: inline-block;
        padding: 6px 18px;
        min-width: 160px;
        background-color: var(--timelineTabBackground);
        cursor: pointer;
        text-align: center;
    }

        ul.tab-container li.active {
            background-color: var(--timelineTabActiveBackground);
            color: var(--btnTextColor);
            cursor: default;
        }

div.tab-container:not(.hidden) {
    border-top: 1px solid var(--tabBorderTop);
    background: rgba(255,255,255, 0.8);
    display: table;
    width: 100%;
    padding: 20px 18px 18px 18px;
    box-sizing: border-box;
}

.btnCopy, .btnUpload, .btnDownload {
    float: left !important;
    margin: 0px 0px 0px 0px !important;
    width: auto !important;
    border: 0px !important;
    height: 35px;
    font-size: 11px;
    padding: 20px 6px 0 6px !important;
    cursor: pointer;
}

.btnCopy {
    background: #efefef url(../images/copy.png) no-repeat center 6px;
}

.btnUpload {
    background: #efefef url(../images/upload.png) no-repeat center 6px;
}

.btnDownload {
    background: #efefef url(../images/download.png) no-repeat center 6px;
}

#qrcode, #loadedQr {
    float: left;
    margin-top: 10px;
}

.clearfix {
    clear: both;
}

#secretCode, .secret-key {
    width: 700px !important;
}

.confirmation-area {
    background: var(--confirmationBackground);
    margin-top: 26px;
    float: left;
    padding: 4px 14px 14px 14px;
    box-sizing: border-box;
    width: 100%;
}

    .confirmation-area h3 {
        font-size: 16px;
        padding: 0;
        margin: 0;
    }

#loading {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.4);
    display: none;
}

    #loading img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }

.sessions {
    margin: 20px 0 0 8px;
    border-radius: 12px;
    position: relative;
    list-style: none;
    padding: 0;
}

    .sessions li {
        padding-bottom: 30px;
        border-left: 1px solid var(--sessionsBorderLeft);
        position: relative;
        padding-left: 20px;
        margin: 0;
    }

        .sessions li:last-child {
            border: 0px;
            padding-bottom: 0;
        }

        .sessions li:before {
            content: '';
            width: 15px;
            height: 15px;
            background: white;
            border: 1px solid var(--sessionsBeforeBorder);
            box-shadow: 3px 3px 0px #bab5f8;
            box-shadow: 2px 2px 0px #ffd2d2;
            border-radius: 50%;
            position: absolute;
            left: -9px;
            top: 0px;
        }

        .sessions li:first-child:before {
            left: -9px;
        }

        .sessions li:last-child:before {
            left: -8px;
        }

        .sessions li .time {
            color: var(--sessionsTimeColor);
            float: left;
            margin-top: -6px;
            width: 130px;
        }

        .sessions li .text {
            float: left;
            margin-top: -6px;
            margin-left: 20px;
        }

        .sessions li p {
            color: var(--sessionsColor);
            padding: 0;
            margin: 0;
        }

.events_enabled {
    pointer-events: all !important;
}

#download {
    margin-top: 155px !important;
}

#reader {
    float: left;
    margin-bottom: 16px;
}

/*.language_evz_guard {
    display: flex;
    justify-content: end;
    gap: 5px;
}*/

#authentication {
    display: flex;
    justify-content: end;
    align-content: center;
    align-items: center;
    gap: 20px;
    color: var(--theme);
}

    #authentication a {
        color: var(--theme);
        text-decoration: none;
    }

small.no-padding {
    padding: 0;
}

.idiomaLabel {
    font-size: 14px;
    color: #000;
    padding-right: 4px;
}

.skiptranslate.goog-te-gadget > :not(div) {
    display: none;
}

.fileUpload {
    display: none;
}

.uploadLog {
    border-spacing: 0px;
    border-collapse: collapse;
    width: 100%;
    background: rgba(255,255,255,0.8);
}

    .uploadLog img {
        max-width: 100px;
        max-height: 100px;
    }

    .uploadLog tr:nth-child(even) {
        background: var(--evenBackground);
    }

    .uploadLog tr:nth-child(odd) {
        background: var(--oddBackground);
    }

    .uploadLog .first-cell {
        width: 140px;
        vertical-align: middle;
        text-align: center;
    }

    .uploadLog .center-align {
        text-align: center;
    }

    .uploadLog .left-align {
        text-align: left;
    }

select:not([readonly]):not([disabled]) {
    background-color: var(--btnTextColor);
}

.div-table {
    display: table;
}

.div-table-row {
    display: table-row;
}

.div-table-cell {
    display: table-cell;
    vertical-align: middle;
}

footer {
    background-color: var(--footerBackground);
    display: grid;
    margin-top: auto;
}

    footer svg {
        width: 16px;
        color: #fff !important;
        fill: #fff;
    }

    footer a.svg-wrapper {
        padding: 2px;
        border-radius: 50px;
        background-color: #303140 !important;
        color: rgba(255,255,255,0.78);
        line-height: 1;
        background: transparent;
        vertical-align: middle;
        transition: all 0.01s;
        justify-content: center;
        align-items: center;
        display: inline-flex;
        flex-wrap: wrap;
        align-content: center;
        width: 30px;
        height: 30px;
        margin-left: 10px;
    }

    footer span.svg-wrapper {
        display: inline-flex;
        align-items: center;
        flex-wrap: wrap;
        align-content: center;
        align-self: center;
    }

    footer .follow-title {
        color: #ffffff;
    }

    footer .follow-container {
        float: right;
        top: 0;
    }

.textwidget {
    float: left;
}

.btnUploadFile {
    background-color: var(--btnDarkBackgroundColor) !important;
}

@media screen and (max-width: 720px) {
    #head {
        height: 100px;
    }

    .logo {
        height: 70px;
        background-size: auto 70px;
    }

        .logo img {
            max-width: 100%;
        }

    .form {
        width: 90%;
        padding: 40px 20px
    }

    h3 {
        font-size: 24px;
        width: 100%;
        float: left;
        margin: 10px 0 10px 0;
    }

    .cookie-alert {
        left: 5%;
        right: 5%;
        bottom: 5%;
        top: 5%;
        /*height: auto;
        width: calc(100% - 20px);
        max-width: calc(100% - 20px);*/
        box-sizing: border-box;
        font-size: 22px;
        align-content: center;
    }

    #cookie-preferences, #accept-cookies {
        font-size: 16px;
    }

    .news-area {
        font-size: 18px;
    }

    .about-container {
        font-size: 15px;
    }

    .copyright, .poweredby {
        font-size: 15px;
    }

    a.btn, .btn, input.btn {
        width: 100% !important;
        box-sizing: border-box;
        float: left;
        font-size: 18px;
        text-align: center;
    }

    small {
        font-size: 15px;
    }

    table {
        font-size: 14px;
    }

    label {
        font-size: 16px;
        padding-top: 6px;
        float: left;
    }

        label > span:not(.red) {
            float: left;
            display: inline-block;
            padding-top: 4px;
        }

    .input textarea {
        font-size: 15px;
    }

    .confirmation-area h3 {
        font-size: 16px;
    }

    .captcha-container > label {
        font-size: 18px;
    }

    .input > label {
        font-size: 18px;
    }

    #CaptchaCode {
        margin: 6px 0 6px 0 !important;
    }

    .input ul li label {
        padding-top: 4px;
    }

    input [type='text'], select {
        font-size: 15px;
        padding: 4px 4px;
    }

    .form-submit {
        width: 100%;
    }

    .confirm-area ul li input[type=checkbox] {
        margin-top: 6px;
    }

    #secretCode, .secret-key {
        width: 100% !important;
    }

    ul.tab-container li {
        width: 50%;
        font-size: 18px;
        min-width: 50%;
        box-sizing: border-box;
        float: left;
    }

    .sessions {
        font-size: 16px;
    }

        .sessions li .time, .sessions li .text {
            margin-top: -2px;
        }

    #qrcode, #loadedQr {
        max-width: 200px;
    }
}
