﻿@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');

:root {
    --header-height: 46px;
    --footer-height: 48px;
    --nav-main-width: 300px;
    --hide-footer-border-width: 15px;
}

@media (max-width: 576px) {
    :root {
        --nav-main-width: 100%;
    }
}

html {
    height: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
}

* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}


    *::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }

hr {
    margin: 0.5rem 0 !important;
}


.scroll-hidden::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

header.main {
    position: fixed;
    width: 100%;
    height: var(--header-height);
    top: 0;
    left: 0;
    right: 0;
    background-color: #0082ff;
    z-index: 11;
}

    header.main a.menu-button {
        display: inline-flex;
        flex-direction: column;
        flex-flow: column;
        font-size: 26px;
        color: #fff;
        padding: 10px;
        cursor: pointer;
        margin-top: auto;
        margin-bottom: auto;
        text-decoration: none;
    }

        header.main a.menu-button i {
            /*font-weight: 300 !important;*/
        }



content.main {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    display: block;
    padding-top: var(--header-height);
    padding-bottom: var(--footer-height);
}

body.footer-main-auto-hide content.main {
    padding-bottom: 15px;
}

content.main nav.main {
    position: fixed;
    z-index: 10;
    background-color: #fff;
    width: var(--nav-main-width);
    top: var(--header-height);
    bottom: var(--footer-height);
    overflow-y: scroll;
    overflow-x: hidden;
    display: none;
    background-color: #0082ff;
    border-bottom: 1px solid #fff;
}

body.footer-main-auto-hide content.main nav.main {
    bottom: var(--hide-footer-border-width);
}

content.main nav.main ul.nav-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

    content.main nav.main ul.nav-list li {
        background-color: #0082ff;
        border-top: 1px solid #fff;
        border-left: 1px solid #fff;
        margin: 0;
        padding: 0;
    }

    content.main nav.main ul.nav-list.sub {
        padding: 0;
        margin-left: 7px;
        margin-top: -1px;
        margin-bottom: -1px;
    }

    content.main nav.main ul.nav-list li:last-child {
        border-bottom: 1px solid #fff;
    }

    content.main nav.main ul.nav-list li a {
        color: #fff !important;
        text-decoration: none;
        font-weight: lighter;
    }

    content.main nav.main ul.nav-list li:has(ul.show) {
        /*color: #0082ff !important;
        background-color: #fff !important;*/
    }

    content.main nav.main ul.nav-list li a.show {
        color: #fff !important;
        background-color: #028118 !important;
        font-style: italic;
    }

.nav-button {
    display: block;
    padding: 7px 0 7px 7px;
    cursor: pointer;
}

ul.nav-list.sub {
    display: none;
}

    ul.nav-list.sub.show {
        display: block;
    }

content.main content.layer {
    width: 100%;
    height: 100%;
    display: block;
    overflow-x: hidden;
    overflow-y: scroll;
    background-color: #fff;
}


.field-group-panel {
    padding: 0 0.25rem;
    margin-bottom: 0.125rem;
    border: 1px solid var(--root-border-color);
}



    .field-group-panel .row.field-group {
        margin-top: .150rem;
        margin-bottom: .150rem;
    }


        .field-group-panel .row.field-group .data-field .row {
            height: 100%;
        }


        .field-group-panel .row.field-group:first-child {
            margin-top: 0.300rem;
        }

        .field-group-panel .row.field-group:last-child {
            margin-bottom: 0.300rem;
        }

    .field-group-panel .field-group .data-field {
        margin-top: 0;
        /*margin-top: 0.125rem;*/
    }

        .field-group-panel .field-group .data-field .data-field-label label {
            display: flex;
            align-items: center;
        }

        .field-group-panel .field-group .data-field .data-field-value {
            display: flex;
            align-items: center;
        }



.flag-20-15 {
    width: 20px;
    height: 15px;
}

    .flag-20-15 span {
        padding-left: 25px;
    }

    .flag-20-15.tr-TR {
        background-image: url(/flags/4x3/tr-TR.svg);
    }

    .flag-20-15.en-GB {
        background-image: url(/flags/4x3/en-GB.svg);
    }

    .flag-20-15.es-ES {
        background-image: url(/flags/4x3/es-ES.svg);
    }

    .flag-20-15.de-DE {
        background-image: url(/flags/4x3/de-DE.svg);
    }

    .flag-20-15.fr-FR {
        background-image: url(/flags/4x3/fr-FR.svg);
    }

footer.main {
    position: fixed;
    z-index: 11;
    width: 100%;
    height: var(--footer-height);
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--root-background-color) !important;
}

body.footer-main-auto-hide footer.main {
    bottom: calc(-1*(var(--footer-height) - var(--hide-footer-border-width)));
    border-top: var(--hide-footer-border-width) solid var(--root-background-color);
}

    body.footer-main-auto-hide footer.main:hover {
        bottom: 0;
        border-top: 1px solid #fff;
    }

footer.main .item-container {
    padding: 5px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

    footer.main .item-container .command-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        height: 100%;
    }

        footer.main .item-container .command-container .dx-widget.dx-button-normal {
            margin: 0 2px;
            -webkit-transition: background 0.5s;
            transition: background 0.5s;
            height: 100%;
        }

        footer.main .item-container .command-container .dx-widget.dx-button-normal {
            background-color: #fff;
        }


            footer.main .item-container .command-container .dx-widget.dx-button-normal:hover i.dx-icon {
                color: #fff;
            }

            footer.main .item-container .command-container .dx-widget.dx-button-normal:hover {
                background-color: #000;
                color: #fff;
            }



footer.main #FooterStateButton {
    color: #fff;
    cursor: pointer;
    float: left;
    font-size: 24px;
    padding: 0 5px;
}

    footer.main #FooterStateButton i {
        transform: rotate(90deg);
    }

body.footer-main-auto-hide footer.main #FooterStateButton i {
    transform: rotate(0deg);
}



div.dx-show-invalid-badge.dx-texteditor.dx-editor-outlined.dx-state-readonly.dx-widget.label-readonly-data {
    display: flex;
    height: 100%;
    align-items: center;
    padding: 7px 9px;
}


.ml-info-container {
    padding: 1.25rem;
    margin: 1.25rem 0.5rem;
    border: 1px solid var(--root-background-color);
    border-left-width: 0.25rem;
    border-radius: 0.25rem;
    border-left-color: var(--root-background-color);
}

.ml-info-header h5 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
    font-size: 1.25rem;
}

.ml-info-content p {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.ml-info-content a.go-to {
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
    color: var(--root-background-color);
}


.ml-info-content .high-light.red {
    text-decoration: underline;
    font-weight: 600;
    color: #f00;
}

div.section-header-content {
    position: fixed;
    top: calc(var(--header-height) - 1px);
    left: 0;
    right: 0;
    height: 42px;
    z-index: 10;
    border-bottom: 1px solid #0082ff;
}

    div.section-header-content + content.main {
        padding-top: calc(var(--header-height) + 40px);
    }

.section-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px 0;
    height: 42px;
}

    .section-header span.title {
        font-weight: normal;
        font-size: 16px;
        margin: 0;
        padding: 0;
    }

.mbox-title {
    font-weight: lighter;
}


    .mbox-title.success {
        color: #00ff21;
    }

    .mbox-title.error {
        color: #f00;
    }

    .mbox-title.warning {
        color: #ff6a00;
    }

    .mbox-title.info {
        color: #0082ff;
    }

.mbox-message {
    font-size: 16px;
    font-weight: lighter;
}

iframe.popup-iframe {
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
}

.full-height-content {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.full-height-layer {
    position: absolute;
    height: 100%;
}


body header.main div.section-0 {
    width: 30%;
}

body header.main div.section-1 {
    color: #fff;
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}

body header.main div.section-2 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 30%;
}

    body header.main div.section-2 a {
        display: block;
        padding: 5px;
        cursor: pointer;
        color: #fff;
        margin: 0 5px;
    }

.text-end {
    text-align: right !important;
}
