/* modal */
.modalContainer{
    position: absolute;
    display: none;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    font-family: "Arial Narrow", serif;
    z-index: 20;
    background-color: transparent;
}
.modalContent{
    display: flex;
    justify-content: center;
    align-items: center;
    height: inherit;
    width: inherit;
}
.fixOnTop{
    align-items: start !important;
}
.modalGridRow{
    font-family: Omnes Black, sans-serif;
}
.modalGridRow > label{
    font-size: 13px;
    font-weight: 600;
    color: var(--hapWhite);
}
.modalFrame{
    display: flex;
    flex-direction: column;
    background: #4f4f4f;
    color: white;
    box-shadow: 2px 2px 15px white;
    border-radius: 1rem;
    font-family: var(--dbFontFamily);
}
.modalFrame .tableRow:not(.tableHeader){
    color: black !important;
}
.modalTitle{
    font-family: Omnes Black, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    padding: 1rem !important;
    background-color: var(--hapGreen);
    color: var(--hapDarkBlue);
}
.modalFooter{
    background-color: var(--hapBlue);
    padding: 1rem;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}
.modalTitle2{
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    background-color: #343434;
}
.modalInner{
    padding: 2rem;
    max-height: 90vh;
    border-top: 1px solid grey;
    border-bottom: 1px solid grey;
    overflow-y: auto;
    overflow-x: hidden;
    color: #313131;
    background-color: var(--hapBlue);
}
.modalControls{
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}
.modalRow{
    display: flex;
    padding: 3px 0;
    column-gap: 1rem;
}
.modalInput{
    outline: none;
    background-color: #e9ebea;
    border: none;
    border-radius: 4px;
    min-height: 30px;
    color: var(--hapDarkBlue);
    padding: 10px;
    font-size: 16px;
}
.modalSelect{
    background-color: var(--hapWhite);
    color: black !important;
    min-height: 25px;
    height: 39px;
}
.modalButton{
    background-color: var(--dbColorDark1);
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    border: 2px solid var(--dbColorDark1);
    border-radius: 4px;
    width: 100%;
    transition: 0.3s;
    cursor: pointer;
}
.modalButtonMini{
    background-color: var(--dbColorDark1);
    color: white;
    padding: 1px 2px;
    font-size: 8px;
    /*text-transform: uppercase;*/
    text-align: center;
    text-decoration: none;
    border: 2px solid var(--dbColorDark1);
    border-radius: 2px;
    transition: 0.3s;
    cursor: pointer;
}
.modalButton:hover{
    background-color: transparent;
    color: var(--dbColorDark1);
}
.modalGridRow{
    display: inline-grid;
    width: 100%;
    padding: 3px;
    grid-template-columns: 10% 10% 10% 10% 10% 10% 10% 10% 10% 10%;
    align-items: center;
}
.modalGridRow12{
    display: inline-grid;
    width: 100%;
    padding: 3px;
    grid-template-columns: 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33%;
}
.btnCancel{
    font-family: var(--menuFont);
    color: var(--hapWhite);
    padding: 5px 0;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
    cursor: pointer;
    background-color: transparent;
    border: 2px solid #862525;
    border-radius: 4px;
}
.btnCancel:hover{
    background-color: #862525;
}
.btnOK{
    font-family: var(--menuFont);
    color: var(--hapWhite);
    padding: 5px 0;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
    cursor: pointer;
    background-color: transparent;
    border: 2px solid #1a6c1a;
    border-radius: 4px;
}
.btnOK:hover{
    background-color: #1a6c1a;
}

/* Select */
.selectContainer, .selectContainer *{
    font-family: Omnes Black, sans-serif;
    font-size: 16px;
}
.selectContainer{
    position: relative;
    display: flex;
    justify-content: space-between;
    /*min-width: 100px;*/
    min-height: 25px;
    padding: 0px 20px 1px 5px;
    background-color: transparent;
    color: white;
    cursor: pointer;
}
.selectInput{
    background-color: inherit;
    color: inherit;
    border: none;
    width: 100%;
}
.inputReadOnly{
    /*pointer-events: none;*/
}
.selectArrow{
    position: absolute;
    font-size: 20px;
    font-weight: 700;
    right: 8px;
    top: 8px;
    transform: rotate(-90deg);
    transition: 0.3s;
}
.selectOpen{
    transform: rotate(90deg);
    right: 6px;
}
.selectList{
    position: absolute;
    width: 100%;
    left: 0;
    background-color: white;
    border: inherit;
    max-height: 200px;
    overflow-y: auto;
}
.selectListItem{
    color: black;
    font-family: inherit;
    padding: 3px 3px;
    cursor: pointer;
    transition: 0.3s;
}
.selectListItem:not(.selectListItemGroup):hover{
    color: white;
    background-color: grey;
}
.selectListItemGroup{
    background-color: grey;
    font-weight: bolder;
    cursor: auto;
}
.selectedListItem{
    color: white;
    background-color: darkslategrey;
}
.selectNonResult{
    display: none;
}
.selectDisabledItem{
    color: darkgrey;
    pointer-events: none;
}

.ppInfo{
    color: var(--hapWhite)
}
.pp-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    color: var(--hapWhite);
}
.pp-accordion{
    display: flex;
    flex-direction: column;
    background-color: var(--hapBlue);
    padding: 1rem;
    border-radius: 1rem;
    cursor: pointer;
}
.pp-titleBar{
    display: flex;
    align-items: center;
    gap: 2rem;
    color: var(--hapWhite);
}
.pp-icon{
    width: 25px;
    height: 25px;
    background: url(/Public/System/icons/down.svg);
    background-size: cover;
    background-repeat: no-repeat;
}
.pp-title{
    font-weight: 600;
}
.pp-body{
    display: none;
    border-top: 1px solid var(--hapDarkBlue);
    padding-top: 1rem;
    gap: 1rem;
}
.pp-warning{
    font-size: 12px;
    color: var(--hapRed);
}
.pp-kidProfileImage{
    width: 132px;
    height: 132px;
    border: 2px solid var(--hapLightBlue);
    border-radius: 50%;
    margin-bottom: 1rem;
}
.pp-name{
    color: var(--hapGreen);
    font-size:40px;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pp-controls{
    display: flex;
    justify-content: right;
    gap: 1rem;
}
.pp-button{
    color:  var(--hapWhite);
    border:  2px solid var(--hapGreen);
    border-radius:  26px;
    padding:  10px;
    text-decoration:  none;
    background-color: transparent;
}
.pp-kidData{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 50%;
}
.pp-dataField{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    height: 36px;
    border-radius: 16px;
    border: 2px solid var(--hapWhite);
    background-color: var(--hapDarkBlue);
}
.pp-label{
    color: var(--hapWhite);
    font-weight: 600;
}
.pp-data{
    color: var(--hapGreen);
}
.pp-profileRow{
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}
.pp-rowTitle{
    color: var(--hapWhite);
    font-weight: 600;
}
.pp-block{
    display: flex;
    border: 2px solid var(--hapWhite);
    border-radius: 2rem;
    padding: 2rem;
    background-color: var(--hapDarkBlue);
}
.pp-medal{
    width: 200px;
    height: 200px;
    background-repeat: no-repeat;
    opacity: 0.2;
}
.pp-pointBox{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 300px;
    font-size: 80px;
    font-weight: 800;
    color: var(--hapGreen);
    padding-bottom: 120px;
}
.pp-medal-wrapper{
    position: relative;
    width: 200px;
    height: 200px;
}
.progress-ring {
    position: absolute;
    top: -3px;
    left: -3px;
    transform: rotate(-90deg); /* hogy 12 óránál kezdődjön */
}

.background-ring {
    fill: none;
    stroke: #000000;
    stroke-width: 3;
}

.progress-ring__circle {
    fill: none;
    stroke: gold;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 590.619; /* 2 * π * r (r=54) */
    /*stroke-dashoffset: 200;*/
    transition: stroke-dashoffset 2s ease;
}