﻿.container {
    max-width: 2000px;
    display: block;
    height: auto;
    vertical-align: middle;
    padding-left: 4%;
    padding-right: 4%;
    margin-top: 1%;
}

.navbar-header {
    display: flex;
    width: 100%;
}

#navbar-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    margin: auto 0 auto auto;
    overflow: auto;
    /*flex-wrap: wrap;*/
}

@media (max-width: 1024px) {
    #navbar-list {
        display: none;
    }
}

#logo {
    float: left;
    margin-left: 4%;
    overflow: auto;
    max-height: 152px;
    max-width: 951px;
}

@media (max-width: 1024px) {
    #logo {
        margin-left: 0;
        width: 100%;
    }
}

.nav-item {
    max-width: 100%;
    height: auto;
}

#logoutBtn {
    width: max-content;
}

#userDisplayNameLi {
    overflow: hidden;
    min-width: 100px;
}

#userIcon {
    display: none;
}

.icon {
    max-width: 30px;
    aspect-ratio: 1/1;
}

/*.langDiv{
    margin-left:auto;
    margin-right:1%;
}*/

.loading-background {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 5000;
    display: none;
}

.loader {
    top: 50%;
    left: 50%;
    display: flex;
    transform: translate(-50%, -50%);
    position: absolute;
}

    .loader div {
        margin: 10px;
        width: 20px;
        height: 20px;
        background-color: white;
        border-radius: 50%;
        animation-duration: 0.8s;
        animation-iteration-count: infinite;
    }

.one {
    animation-name: load-one;
}

@keyframes load-one {
    30% {
        transform: translateY(-70%);
    }
}

.two {
    animation-name: load-two;
}

@keyframes load-two {
    50% {
        transform: translateY(-70%);
    }
}

.three {
    animation-name: load-three;
}

@keyframes load-three {
    70% {
        transform: translateY(-70%);
    }
}

/*svg {
    width: 60px;
}*/

#chatPluginDiv {
    position: fixed;
    width: 70px;
    height: auto;
    text-align: center;
    right: 20px;
    z-index: 2;
    /*background-color:blue;*/
}

#lineAdd {
    max-width: 200px;
    /*padding: 5px;*/
}

    #lineAdd > svg {
        width: 60px;
        cursor: pointer;
    }

#linePopup {
    height: auto;
    display: none;
    min-width: 300px;
    position: absolute;
    border-radius: 10px;
    z-index: 3;
    background-color: ghostwhite;
}

#lineCloseBtn {
    float: right;
}

.in {
    animation: linear;
    animation-name: in;
    animation-duration: 0.5s;
    right: 0;
    bottom: 90px;
}

@keyframes in {
    0% {
        visibility: hidden;
        right: -50vh;
    }

    100% {
        visibility: visible;
        right: 0;
    }
}

.out {
    animation: linear;
    animation-name: out;
    animation-duration: 0.5s;
    right: -100vw;
    bottom: 90px;
}

@keyframes out {
    0% {
        visibility: visible;
        right: 0;
    }

    100% {
        visibility: hidden;
        right: -50vh;
    }
}

.slideUp {
    animation-duration: 1s;
    animation-name: slideUp;
    transition-timing-function: ease-in;
    bottom: 90px;
}

@keyframes slideUp {
    0% {
        display: block;
        bottom: -100vh;
    }

    100% {
        display: block;
        bottom: 90px;
    }
}

.lineTitle {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
    padding: 10px;
    background-color: #06C755;
    color: white;
    text-align: left;
}

#lineIcon {
    width: fit-content;
    display: inline-block;
}

    #lineIcon > svg {
        width: 30px;
    }

.lineContainer {
    padding-top: 20px;
    text-align: center;
}

    .lineContainer > img {
        height: 200px;
        width: 200px;
    }

.lineDetails {
    padding: 20px;
    text-align: center;
}

    .lineDetails > span {
        display: block;
    }

.footer {
    position: absolute;
    display: block;
    width: 100%;
    bottom: 0;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    padding-top: 15px;
    padding-bottom: 2px;
    height: auto;
    background-color: #bebebe;
    line-height: 1;
}

.footerContact {
    display: flex;
    justify-content: center;
}

    .footerContact > p {
        font-size: 12px;
        margin-right: 10px;
        line-height: 0;
    }

a {
    text-decoration: none;
    cursor: pointer;
}

.langBtn {
    position: absolute;
    bottom: 15px;
    left: 2%;
}

@media (min-height: 1000px) {
    .container {
        margin-top: 4%;
    }
}

@media (max-width: 1280px) {
}

@media (max-width: 600px) {
    .container {
        margin-bottom: 80px;
    }

    #userDisplayNameLi {
        display: none;
    }

    #userIcon {
        display: initial;
    }

    .nav-item {
        max-width: max-content;
    }

    .icon {
        margin-top: 5px;
    }

    .icon, svg {
        max-width: 25px;
        /*height: 100%;*/
    }

    #lineAdd > svg {
        min-width: 60px;
    }

    .footer {
        padding-bottom: 5px;
    }

    .footerContact {
        display: inline-block;
        justify-content: center;
    }

        .footerContact > p {
            margin-right: 0;
            font-size: 12px;
        }

    p {
        font-size: 18px;
        color: black;
    }

    #linePopup {
        min-width: 250px;
        height: auto;
    }

    .lineContainer > img {
        height: 150px;
        width: 150px;
    }
}

@media (max-width: 320px) {
    .icon, svg {
        max-width: 20px;
    }

    .footer > p {
        font-size: 15px;
    }

    .footerContact > p {
        font-size: 10px;
    }

    /*    #chatPluginDiv {
        right:4vh;
    }*/
}
