/*ÉRTESÍTÉS*/
#notification {
    display: flex;
    padding: 8px 15px 5px;
    background-color: #a6a6a6;
    color: #505050;
    width: max-content;
    margin: 20px auto 0;
    border-radius: 25px;
    transition: 0.3s;
    animation: connecting 0.3s forwards;
}

@keyframes connecting {
    from {
        margin-top: -40px
    }

    to {
        margin-top: 20px
    }
}

@keyframes connected {
    20% {
        background-color: #00bd00;
        color: white;
        margin-top: 20px
    }

    80% {
        background-color: #00bd00;
        color: white;
        margin-top: 20px
    }

    100% {
        background-color: #00bd00;
        color: white;
        margin-top: -40px;
    }
}

/*FEJRÉSZ*/
header {
    position: fixed;
    background-color: white;
    width: 100%;
    box-shadow: 0 20px 10px white;
    z-index: 1;
}

.header-placeholder {
    width: 100%;
    height: 176px;
}

#dalcim {
    text-align: center;
    font-size: 58pt;
    margin: 10px auto 0 auto;
    width: max-content;
}

#adatok {
    display: flex;
    align-items: center;
    font-size: 15pt;
    text-align: center;
    width: max-content;
    margin: 0 auto 10px auto;
}

#adatok .button-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    height: 41.2px;
    transition: 0.2s;
}

#adatok .keychange {
    display: inline-flex;
    justify-content: center;
    transition: 0.1s;
}

#adatok .adatok {
    all: none;
    font-size: inherit;
    color: inherit;
    text-align: center;
    padding: initial;
    padding: 4px 4px 2px;
}

#adatok .button-container:first-child:hover {
    color: white;
    background-color: black;
    padding: 0 8px;
}

hr {
    width: 150px;
    border: solid black;
    border-radius: 20px;
    margin: 10px auto 10px auto;
}

/*KOTTA*/
#container-kotta {
    position: fixed;
    overflow-y: scroll;
    scroll-behavior: smooth;
    width: 100%;
}

#kotta {
    margin: 20px auto 0;
    max-width: 90%;
    font-size: 24px;
}

.kotta-vertical .tag {
    padding-top: 10px;
    margin-right: 100px;

}

.tag {
    padding-top: 40px;
}

.title {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    width: max-content;
}

.tagname {
    font-size: 1.83em;
    -webkit-text-stroke: 1px black;
    height: 54px;
}

.separator {
    width: 0;
    height: 70px;
    margin: 0 10px 0 20px;
    border-color: #A6A6A6;
}

.akkordok {
    font-size: 0.8em;
    color: #A6A6A6;
}

.akkordsor {
    height: 1em;
}

.sor {
    font-size: 18pt;
    max-width: 80%;
    /*spacewidth -> cast-sheet.css!!*/
    display: flex;
    flex-wrap: wrap;
    min-width: max-content;
}

.kotta-vertical .sor {
    flex-wrap: nowrap;

}

.akkord {
    width: min-content;
    display: flex;
}

/* .keynote {} */

.sharpflat {
    font-size: 0.7em;
    align-self: center;
}

/* .modal {} */

.modify {
    font-size: 0.5em;
    align-self: first baseline;
}

.bass {
    font-size: 0.7em;
    align-self: center;
}

.szoveg {
    font-weight: 100;
    -webkit-text-stroke: 0.5px black;
    display: flex;
}

.kotojel {
    display: inline-block;
    margin: auto;
    text-align: center;
}

/*LÁBRÉSZ*/
#foot {
    position: fixed;
    background-color: white;
    box-shadow: 0 -20px 10px white;
    display: grid;
    align-items: center;
    width: 100%;
    height: auto;
    bottom: 0;
    left: 0;
}

.logo {
    display: flex;
    align-items: center;
}

#foot img {
    height: 20mm;
    margin: 10px 30px 5px;
}

#foot .left {
    margin: auto 0 auto auto;
    width: max-content;
}

#foot .right {
    margin: auto auto auto 0;
    width: max-content;
}

.felirat {
    font-size: 10pt;
    font-weight: 100;
    -webkit-text-stroke: 0.5px #A6A6A6;
    color: #a6a6a6;
    text-align: center;
    margin: 5px 0 10px 0;
}

/* TELEFONOS NÉZET */
@media screen and (max-width: 550px) {
    .header-placeholder {
        height: 118px;
    }

    #dalcim {
        font-size: 35pt;
        margin-top: 20px;
        width: max-content;
    }

    #kotta {
        margin-top: 15px;
    }

    #adatok {
        font-size: 12pt;
        margin-top: -10px;
    }

    #adatok .button-container {
        height: 30px;
    }

    #container-key:hover {
        margin-right: 5px;
    }

    hr {
        width: 100px;
        border: 2.2px solid black;
    }

    .tag {
        padding-top: 20px;
    }

    .title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .sor {
        font-size: 15px;
    }

    .logo {
        font-size: 10px;
        /*SPACEWIDTH: 4.65px*/
    }

    #foot img {
        height: 12mm;
        margin: 5px 15px 2.5px;
    }

    .felirat {
        font-size: 6pt;
    }

    #notification {
        font-size: 12px;
        padding: 6px 13px 3px;
    }
}