/* Import Reset */
@import 'reset.css';

/* Import Font */
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700,900,200italic,300italic,400italic,600italic,700italic,900italic);

/* Font sizes*/
body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1em;
}

h1 {
    font-size: 200%;
}

h2 {
    font-size: 180%;
}

h3 {
    font-size: 160%;
}

h4 {
    font-size: 140%;
}

h5 {
    font-size: 120%;
}

button {
    font-size: 1.1em;
    font-weight: 800;
}

button {
    background: white;
    border: 1px solid black;
    padding: 5px 10px;
}

button:hover {
    background: black;
    border: 1px solid black;
    color: white;
}

body {
    background: #eee;
}

.full-content {
    display: block;
    padding: 0 20px;
    margin: auto;
}

/* Header Page */
header {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #bebebe;
    padding: 15px 5px;
    height: auto;
    flex-direction:column;
}

header img {
    max-width: 100%;
    max-height: 30px;
    margin: 0 auto 10px;
    
}

main {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

footer {
    text-align: center;
}

/* Main Content */
.content {
    background: white;
    width: 100%;
    border: 1px solid #bebebe;
    margin: 20px auto 0;
}

.content .logo-resseller {
    margin-bottom: 10px;
    padding: 20px 20px 0px
}

    .content .logo-resseller img {
        max-width: 100%;
        max-height: 35px;
    }

.content p.name {
    font-size: 1.2em;
    font-weight: 900;
}

.content p span {
    font-weight: 400;
    padding-right: 4px;
}

.content .content-body {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

    .content .content-body .tdocs {
        margin-top: 10px;
        margin-bottom: 5px;
    }

.content .table-container {
    width: 100%;
    overflow: auto;
}

.content-head {
    display: block;
    justify-content: space-between;
    padding: 0 20px
}

.content-head .resseler,
.content-head .customer {
    width: 100%;
}

.content-head .resseler {
    margin-bottom: 20px;
}

.content-head p {
    font-size: 0.93em;
}

.content-head .info-lines p {
    font-size: 1em;
    font-weight: 400;
}

.content-head .info-lines p {
    padding-top: 30px;
}

.content-head .info-lines button {
    width: 100%;
    margin-top: 20px
}

table thead td {
    font-size: 1em;
    font-weight: 600;
    background-color: #e4e4e4;
}

table tbody tr td {
    font-size: 0.8em;
}

/* Footer */
footer {
    margin-top: auto;
    justify-items: center;
    padding: 10px;
}

    footer p {
        font-size: 0.96em;
    }

    footer a.linkfooter {
        font-weight: 500;
    }

    footer a.winmax4 {
        color: #F06324;
    }

    footer a.inovguest {
        color: #92bf1f;
    }


/* Pub banners */
.pub {
    width: 100%;
}

    .pub .banner_pub {
        width: 100%;
    }

    @media (min-width: 420px) {
        header {
            padding: 10px 0px;
            display: flex;
            height: 7vh;
            flex-direction: row;
        }

        header img {
            margin:0;
            margin-right: auto;
        }

        header button {
            margin-left: auto;
            padding: 10px 20px;
        }
    }

    @media (min-width: 760px) {
        header {
            padding: 20px 20px 20px;
        }

        .full-content {
            display: grid;
            grid-template-columns: auto;
            grid-template-areas:
                ' header '
                ' main  '
                ' footer';
            height: 100vh;
            padding: 0 20px;
            width: 720px;
            margin: auto;
        }

        header img {
            max-height: 50px;
            margin: 0;
        }

        .content-head {
            display: flex;
            justify-content: space-between;
            gap: 50px;
            padding: 0 20px
        }
            .content-head .resseler,
            .content-head .customer {
                display: flex;
                flex-direction: column;
                width: 50%;
            }

            .content-head .resseler {
                margin-bottom: 0px;
            }

        .customer .info-lines {
            margin-top: auto;
        }

        .content-head .info-lines p {
            padding-bottom: 50px;
        }

        .content-head .info-lines button {
            margin-top: 0px
        }

        .content .content-body .tdocs {
            margin-top: 25px;
        }

        .pub {
            width: 540px;
        }
    }

    @media (min-width: 960px) {
        .full-content {
            width: 920px;
        }

        .pub {
            width: 640px;
        }
    }

    @media (min-width: 1200px) {
        .pub {
            width: 860px;
        }

        .full-content {
            padding: 0 40px;
            width: 1120px;
        }
    }

/** Spinner **/
#html-spinner {
    width: 181px;
    height: 181px;
    border: 2px solid white;
    border-top: 2px solid black;
    border-radius: 50%;
    margin: auto;
}

#html-spinner {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1.2s;
    -webkit-animation-name: rotate;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-transition-property: -moz-transform;
    -moz-animation-name: rotate;
    -moz-animation-duration: 1.2s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    transition-property: transform;
    animation-name: rotate;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.material-symbols-outlined {
    font-size: 350px
}

.error {
    color: #910000
}

.ok {
    color: #095500;
}

.warning {
    color: #bca129;
}

/** Auth Page **/
.AuthFeedback {
    padding: 20px;
    text-align: center;
    margin: auto
}

.authh3 {
    margin-top: 30px;
}

.authp {
    margin-top: 30px;
}

.AuthContent {
    min-height: 600px;
    display: flex;
    align-items: center;
    align-content: center;
}
@font-face {
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    font-weight: 100;
    src: url(https://fonts.gstatic.com/s/materialsymbolsoutlined/v141/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1n-q_4MrImHCIJIZrDCvHeej.woff2) format('woff2');
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}


/** OverRides Backoffice **/
.input-group-flat .form-control:not(:last-child).is-invalid {
    border-right: 1px solid red;
}

