html, body {
    position: relative;
    background-color: var(--itap-beigeUb);
}

.skip-to-main-content-link {
    position: absolute;
    left: -9999px;
    z-index: 1500;
    padding: 1em;
    background-color: black;
    color: white;
    opacity: 0;

    &:focus {
        left: 50%;
        transform: translateX(-50%);
        opacity: 1;
    }
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 4px 0 var(--itap-cafeUb);

    .logo-ub {
        margin: auto 24px;
    }

    abbr {
        font-size: 3rem;
        text-decoration: none;
        font-weight: bold;
        letter-spacing: 0.3em;
        cursor: pointer;
    }

    ul {
        > li {
            display: inline-block;
            padding: 0 1em;

            &.current {
                background-color: var(--itap-orange);
                color: black;
            }
        }

        &.dropdown-menu {
            & > li {
                display: block;
            }
        }
    }

    .navbar-toggler {
        margin-right: 1em;
    }

    .fi {
        margin-right: 0.5em;
    }
}

a.nav-link {
    color: var(--itap-marronUb);
}

main {
    .container {
        padding-top: 1em;
    }
}

.form-error {
    ul {
        padding-left: 0;
        list-style-type: none;

        li {
            color: var(--itap-rougeUb);
            font-weight: bold;
        }
    }
}

footer {
    margin-top: 3rem;
    padding: 0;
    color: var(--itap-beigeUb);
    background-color: var(--itap-marronUb);

    a:link,
    a:visited,
    a:hover,
    a:active {
        color: var(--itap-beigeUb);
    }

    .copyright {
        padding-top: 0.5rem;
        border-top: 1px solid var(--itap-beigeUb);
    }
}

.home {
    .section-block {
        margin-top: 2rem;
        margin-bottom: 2rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 6px;
    / / box-shadow: 0 0.5 em 1 em - 0.125 em var(--itap-cafeUb), 0 0 px 0 1 px var(--itap-cafeUb);
        border: 1px solid var(--itap-cafeUb);

        /*.section-title {

            }*/
    }

    /*#footer-title {
          display: none;
      }*/
}

label.required:after {
    content: " *";
    color: red;
}

.tagCell {
    input[type="text"] {
        background-color: transparent;
    }
}

h2.display-6 {
    font-size: 1.5rem;
    font-weight: 400;
}

div.about-img {
    text-align: center;
}

.autocomplete {
    position: relative;
    z-index: 1000;

    &.has-value {
        input[type=text] {
            display: none;
        }

        .suggestions {
            display: none;
        }
    }

    .suggestions {
        position: absolute;
        width: 100%;
        font-size: 0.9em;

        ul {
            list-style-type: none;
            padding: 0;
            margin: 0;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .2);
            max-height: 200px;
            overflow-y: auto;
            position: absolute;
            width: 100%;
            background-color: #fff;
            display: none;

            &.has-suggestions {
                display: block;
            }

            li {
                padding: 0.4em;

                &:hover {
                    cursor: pointer;
                    background-color: var(--itap-masticUb);
                }

                p {
                    margin: 0;
                }

                .item-info {
                    margin-left: 1em;
                    font-style: italic;
                }
            }
        }
    }
}

.gdprcookie {
        ul {
            li {
                label {
                    margin-left: 0.5em;
                }
            }
        }
}
