/*naptárbejegyzések alsó aláhúzása*/
.keret{
    border-bottom: 1px solid black;
    max-height: 24px;
    min-height: 24px;
    white-space: nowrap; 
    
    overflow: hidden;
    text-overflow: clip;
    
}
/*naptárbejegyzések oszlopbeállítása*/
.oszlop{
    max-width: 100px;
    border: 1px solid black;
}

/*egérmutató*/
.egermutato_nyil{
    cursor: default;
}
.egermutato_foglal{
    cursor: pointer;
}

.kotelezoAdat{
    color: red;
}

/*modalok beállítása*/
.modal-header, h4, .close {
    /*background-color: #b3b3b3;*/
    background-color: rgb(0, 70, 102);
    color:white !important;
    text-align: center;
    font-size: 30px;
    padding:0px;
    /*margin:10px;*/
    border: 10px solid rgb(0, 70, 102);
    
}
.modal-footer {
    background-color: #f9f9f9;

}
.foglalLista{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.foglalGombok{
    display: block;
    text-align: center;
    padding: 16px;
    text-decoration: none;
    float: left;
}

.adatkikeret{
    border: 1px solid black;
}


.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}


.navbar-inverse{
    background-color: rgb(0, 70, 102);
    border-color: rgb(0, 70, 102);
    color: white;
}
.navbar-inverse .navbar-nav>.active>a, .navbar-inverse .navbar-nav>.active>a:focus, .navbar-inverse .navbar-nav>.active>a:hover{
    
    background-color: rgb(0, 143, 230);
    border-color: rgb(0, 143, 230);
    color: white;
    
}

.navbar-inverse .navbar-brand{
    color: white;
}
.navbar-inverse .navbar-nav>li>a{
    color: white;
}

.navbar-inverse .navbar-nav>.open>a, .navbar-inverse .navbar-nav>.open>a:focus, .navbar-inverse .navbar-nav>.open>a:hover{
    background-color: rgb(0, 143, 230);
    border-color: rgb(0, 143, 230);
    color: white;
}

.szovegek{
    text-align: center;
    font-size: 20px;
}

.col-lg-2, #orvoski, #sugoki{
    margin-top: 30%
}           

.col-xs-12, #orvoski, #sugoki{
    margin-top: 0px;
}  
.col-sm-12, #orvoski, sugoki{
    margin-top: 0px;
}  


.footer{
    display: block;
    position: relative;    
    bottom: 0;
    width: inherit;
    /*height: 10%;*/
    margin-left: auto;
    margin-right: auto;
    background-color: rgb(0, 70, 102);
    color: white;
    text-align: center;
    border-radius: 4px;
    
}

#adatokkiir_foglalas_1024{
        display: none;
    }
#orvoski_1024{
        display: none;
        text-align: center;
    }    

.udvozles{
    font-size: 28px;
}    
.footer_bal{
    text-align: left;
    width: 40%;
    position: relative;
    left: 10%;
    top: 0;
}
.footer_jobb{
    text-align: right;
    position: relative;
    
}

#btnBejelentkezes, #reg, #emailUjra{
    background-color: rgb(0, 143, 230);
    border-color: rgb(0, 143, 230);
}

.menugomb{
    background-color: rgb(0, 70, 102);
    border-color: #46b8da;

    padding: 6px;
    margin: 1px;
    color: #fff;
    width: 100%;

    font-size: 14px;
    font-weight: 400;
    text-align: center;
    /*white-space: nowrap;*/
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 4px;
    display: inline-block;
}

.menugomb:hover{
    background-color: rgb(0, 143, 230);
    border-color: rgb(0, 143, 230);

    padding: 6px;
    margin: 1px;
    color: #fff;
    width: 100%;

    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    text-align: center;
    /*white-space: nowrap;*/
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 4px;
    display: inline-block;
}

@media screen and (max-width: 1200px) {
    #orvoski_1024{
        display: block;
        text-align: center;
    }
    #orvoski_nagy{
         display: none;
    }
    #adatokkiir_nagy{
        width: 100%;
        text-align: center;
    }
    #adatokkiir_foglalas_nagy{
        display: none;
    }
    #adatokkiir_foglalas_1024{
        display: block;
        text-align: center;
        width: 100%;
    }

    .footer_bal{
        text-align: left;
        margin-left: 5%;
        position: relative;
        left: 0;
        width: 100%;
    }
    .footer_jobb{
         text-align: left;
         margin-left: 5%;
    }
}


/*.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid blue;
  border-bottom: 16px solid blue;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  position: fixed;
  top: 40%;
  left: 45%;
  margin-left: auto;
  margin-right: auto;

}
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}*/

.loader {
  font-size: 10px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  text-indent: -9999em;
  animation: mulShdSpin 1.1s infinite ease;
  transform: translateZ(0);
  
  
}
@keyframes mulShdSpin {
  0%,
  100% {
    box-shadow: 0em -2.6em 0em 0em  #004666, 
        1.8em -1.8em 0 0em rgba(0, 70, 102, 0.2), 
        2.5em 0em 0 0em rgba(0, 70, 102, 0.2), 
        1.75em 1.75em 0 0em rgba(0, 70, 102, 0.2), 
        0em 2.5em 0 0em rgba(0, 70, 102, 0.2), 
        -1.8em 1.8em 0 0em rgba(0, 70, 102, 0.2), 
        -2.6em 0em 0 0em rgba(0, 70, 102, 0.5), 
        -1.8em -1.8em 0 0em rgba(0, 70, 102, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(0, 70, 102, 0.7), 
        1.8em -1.8em 0 0em #ffffff, 
        2.5em 0em 0 0em rgba(0, 70, 102, 0.2), 
        1.75em 1.75em 0 0em rgba(0, 70, 102, 0.2), 
        0em 2.5em 0 0em rgba(0, 70, 102, 0.2), 
        -1.8em 1.8em 0 0em rgba(0, 70, 102, 0.2), 
        -2.6em 0em 0 0em rgba(0, 70, 102, 0.2), 
        -1.8em -1.8em 0 0em rgba(0, 70, 102, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(0, 70, 102, 0.5), 
        1.8em -1.8em 0 0em rgba(0, 70, 102, 0.7), 
        2.5em 0em 0 0em #ffffff, 
        1.75em 1.75em 0 0em rgba(0, 70, 102, 0.2), 
        0em 2.5em 0 0em rgba(0, 70, 102, 0.2), 
        -1.8em 1.8em 0 0em rgba(0, 70, 102, 0.2), 
        -2.6em 0em 0 0em rgba(0, 70, 102, 0.2), 
        -1.8em -1.8em 0 0em rgba(0, 70, 102, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(0, 70, 102, 0.2), 
        1.8em -1.8em 0 0em rgba(0, 70, 102, 0.5), 
        2.5em 0em 0 0em rgba(0, 70, 102, 0.7), 
        1.75em 1.75em 0 0em #ffffff, 
        0em 2.5em 0 0em rgba(0, 70, 102, 0.2), 
        -1.8em 1.8em 0 0em rgba(0, 70, 102, 0.2), 
        -2.6em 0em 0 0em rgba(0, 70, 102, 0.2), 
        -1.8em -1.8em 0 0em rgba(0, 70, 102, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(0, 70, 102, 0.2), 
        1.8em -1.8em 0 0em rgba(0, 70, 102, 0.2), 
        2.5em 0em 0 0em rgba(0, 70, 102, 0.5), 
        1.75em 1.75em 0 0em rgba(0, 70, 102, 0.7), 
        0em 2.5em 0 0em #ffffff, 
        -1.8em 1.8em 0 0em rgba(0, 70, 102, 0.2), 
        -2.6em 0em 0 0em rgba(0, 70, 102, 0.2), 
        -1.8em -1.8em 0 0em rgba(0, 70, 102, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(0, 70, 102, 0.2), 
        1.8em -1.8em 0 0em rgba(0, 70, 102, 0.2), 
        2.5em 0em 0 0em rgba(0, 70, 102, 0.2), 
        1.75em 1.75em 0 0em rgba(0, 70, 102, 0.5), 
        0em 2.5em 0 0em rgba(0, 70, 102, 0.7), 
        -1.8em 1.8em 0 0em #ffffff, 
        -2.6em 0em 0 0em rgba(0, 70, 102, 0.2), 
        -1.8em -1.8em 0 0em rgba(0, 70, 102, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(0, 70, 102, 0.2), 
        1.8em -1.8em 0 0em rgba(0, 70, 102, 0.2), 
        2.5em 0em 0 0em rgba(0, 70, 102, 0.2), 
        1.75em 1.75em 0 0em rgba(0, 70, 102, 0.2), 
        0em 2.5em 0 0em rgba(0, 70, 102, 0.5), 
        -1.8em 1.8em 0 0em rgba(0, 70, 102, 0.7), 
        -2.6em 0em 0 0em #ffffff, 
        -1.8em -1.8em 0 0em rgba(0, 70, 102, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(0, 70, 102, 0.2), 
        1.8em -1.8em 0 0em rgba(0, 70, 102, 0.2), 
        2.5em 0em 0 0em rgba(0, 70, 102, 0.2), 
        1.75em 1.75em 0 0em rgba(0, 70, 102, 0.2), 
        0em 2.5em 0 0em rgba(0, 70, 102, 0.2), 
        -1.8em 1.8em 0 0em rgba(0, 70, 102, 0.5), 
        -2.6em 0em 0 0em rgba(0, 70, 102, 0.7), 
        -1.8em -1.8em 0 0em #ffffff;
  }
}

#flash {
    animation-name: eltunes;
    animation-delay: 10s;
    animation-duration: 3s;
    animation-fill-mode: forwards;

}

@keyframes eltunes {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

