@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*{
    font-family: "Poppins",sans-serif;
    margin:0;
    padding:0;
    box-sizing: border-box;
}

body.signout{
    background-repeat: no-repeat, repeat;
    background-color: rgba(36, 38, 38, 0.99);
    background-image: url("../img/bg/noisy-texture-300x300.png");
    background-position: center center;
    background-repeat: repeat;
    background-blend-mode: darken;

    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;

}

body.signin{
    background-color:#FFF;
}

.box *{
    font-family: 'Poppins', sans-serif;
}

.box{
    position: relative;
    width: 380px;
    height: 90vh;
    background: #1c1c1c;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.76);
}


/*.box::before{
    content: '';
    z-index: 1;
    position: absolute;
    top: -50%;
    left: -50%;
    width: 380px;
    height: 90vh;
    transform-origin: bottom right;
    background: linear-gradient(0deg,transparent, rgba(69, 243, 255, 0.7), rgba(69, 243, 255, 0.7));
    animation: animate 8s linear infinite;
}*/

.box::after{
    content: '';
    z-index: 1;
    position: absolute;
    top: -50%;
    left: -50%;
    width: 380px;
    height: 90vh;
    transform-origin: bottom right;
    background: linear-gradient(0deg,transparent, rgba(69, 243, 255, 0.7), rgba(69, 243, 255, 0.7));
    animation: animate 8s linear infinite;
    animation-delay: -3s;
}

@keyframes animate{
    0%
    {
        transform: rotate(0deg);
    }
    100%
    {
        transform: rotate(360deg);
    }
}

.box_inner{
    position: absolute;
    inset: 2px;
    background: rgb(27, 28, 28);
    padding: 50px 40px;
    border-radius: 8px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}


.box_inner h2{
    color: #0dcaf0;
    font-size:1.2em;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.1em;
    text-shadow: 1px 1px 4px #000;
    margin-bottom:40px !important;
}

.inputBox{
    position: relative;
    width: 100%;
    margin-top: 35px;
}

.inputBox input{
    position: relative;
    width: 100%;
    padding: 20px 10px 10px;
    background: transparent;
    outline: none;
    box-shadow: none;
    border: none;
    color: #23242a;
    font-size: 1em;
    letter-spacing: 0.05em;
    transition: 0.5s;
    z-index: 10;
}


.inputBox input:-webkit-autofill,
.inputBox input:-webkit-autofill:hover,
.inputBox input:-webkit-autofill:focus,
.inputBox input:-webkit-autofill:active{
    -webkit-transition: color 9999s ease-out, background-color 9999s ease-out;
    -webkit-transition-delay: 9999s;
    transition: color 9999s ease-out, background-color 9999s ease-out;
    transition-delay: 9999s;
}

.inputBox span{
    position: absolute;
    left: 0;
    padding: 20px 0px 10px;
    pointer-events: none;
    font-size: 1em;
    color: #8f8f8f;
    letter-spacing: 0.05em;
    transition: 0.5s;
}

.inputBox input:-webkit-autofill ~ span,
.inputBox input:valid ~ span,
.inputBox input:focus ~ span{
    color: #0dcaf0;
    transform: translateX(0px) translateY(-34px);
    font-size: 0.75em;
}

.inputBox i{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #0dcaf0;
    border-radius: 4px;
    overflow: hidden;
    transition: 0.5s;
    pointer-events: none;
    z-index: 9;
}

.inputBox input:-webkit-autofill ~ i,
.inputBox input:valid ~ i,
.inputBox input:focus ~ i{
    height: 44px;
}

.box_inner label{
    color: #0dcaf0 !important;
    font-size: 0.75em !important;
    padding-bottom:5px !important;
    margin-top:20px;
}

.box_inner select{
    background: transparent;
    border:none;
    border-bottom: 2px solid #0dcaf0 !important;
    color: #fff;
    outline: none;
    border-radius:0px;
}

.box_inner select:active,
.box_inner select:focus{
    background: transparent;
    border-bottom: 2px solid #0dcaf0 !important;
    color: #0dcaf0;
    outline: none;
    border-radius:4px;
}

.links{
    display: flex;
    justify-content: space-between;
}

.links a{
    margin: 10px 0;
    font-size: 0.75em;
    color: #8f8f8f;
    text-decoration: beige;
}

.links a:hover,
.links a:nth-child(2){
    color: #45f3ff;
}


button:active{
    opacity: 0.8;
}


.main_version_info{
    position: fixed;
    bottom:10px;
    left:50%;
    margin-left:-200px;
    width:400px;
    text-align:center;
    font-size:12px;
    color:rgba(255,255,255,0.3);
    z-index:1361;
}

.main_picture_info{
    text-decoration:none;
    position: fixed;
    bottom:10px;
    right:10px;
    font-size:10px;
    color:rgba(255,255,255,0.6);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
    z-index:1361;
}

.belepes_oldal_programnev{
    text-align: center;
}

.belepes_oldal_programnev img{
    height:80px;
    border-radius: 50%;
}

.btn-own-primary{
    background-color:#0dcaf0 !important;
    color:#FFF !important;
}

.btn-own-primary:hover{
    background-color: #0ba4c2 !important;
    color:#FFF !important;
}

.btn-own-secondary{
    background-color: #94b1b6 !important;
    color:#FFF !important;
}

.btn-own-secondary:hover{
    background-color: #748d92 !important;
    color:#FFF !important;
}

.btn-alert{
    background-color: #E00 !important;
    color:#FFF !important;
    border:1px solid #E00 !important;
}

.btn-alert:hover{
    background-color: #ba0505 !important;
}

.btn-own-back{
    color: #FFF !important;
    background-color: rgba(238, 144, 25, 0.9) !important;
    border-color: rgba(194, 118, 21, 0.9) !important;
}

.btn-own-back:hover{
    background-color: rgba(212, 124, 12, 1) !important;
}

.btn-own-success{
    color: #FFF !important;
    background-color: #00BB00 !important;
    border-color: #009200 !important;
}

.btn-own-success:hover{
    background-color: #009200 !important;
}

.btn-own-danger{
    color: #FFF !important;
    background-color: #DD0000 !important;
    border-color: #ba0000 !important;
}

.btn-own-danger:hover{
    background-color: #ba0000 !important;
}

.btn-own-windowclose{
    position: absolute;
    top:0px;
    right:0px;
    width:30px;
    height:30px;
    background-color:#E00;
    color:#FFF;
    padding:2px 5px;
    font-weight:bold;
    text-align: center;
    border:0px;
}

.btn-own-windowclose-radius{
    position: absolute;
    top:0px;
    right:0px;
    width:30px;
    height:30px;
    background-color:#E00;
    color:#FFF;
    padding:2px 5px;
    font-weight:bold;
    text-align: center;
    border:0px;
    border-top-right-radius: 10px;
}


.filter_header{
    padding:10px 25px;
}

.subpage_container{
    padding:10px 25px;
}

.subpage_container table{
    width:100%;
}

.subpage_container table tr{

}

.subpage_container table tr th{

}

.subpage_container table tr td{

}

.subpage_container table tr:hover td{

}

.inner_content {
    background-color: #FFF;
    padding: 25px;
    border-radius: 10px;
    min-height: 80vh;
    margin-top: 100px;
}

.inner_content h3 input{
    color:#0a9ebb;
    font-weight:bold;
}

.inner_content h3{
    color:#0a9ebb;
    font-weight:bold;
}

.szerkesztheto_doboz{
    position: relative;
}

.szerkesztheto_doboz input{
    border:0px;
    padding:5px;
    pointer-events: none;
    font-size:inherit;
    font-weight:inherit;
    overflow:visible;
    width:100%;
    white-space: break-spaces;
}

.szerkesztheto_doboz.editing input{
    border:1px solid #CCC;
    pointer-events: auto;
    overflow:hidden;
    white-space: nowrap;
}

.szerkesztheto_doboz button.szerkesztes_gomb{
    position: absolute;
    top:5px;right:5px;
    width:40px;
    height:40px;
    background-color: transparent;
    color:#0a9ebb;
    border-radius: 5px;
    border:0px solid #C00;
    cursor:pointer;
}

.szerkesztheto_doboz .szerkesztheto_egysor{
    margin-top:5px;
}

.szerkesztheto_doboz .szerkesztheto_egysor:first-child{

}

.szerkesztheto_doboz .szerkesztheto_egysor .tobb_input_egysorban{
}

.szerkesztheto_doboz.editing .szerkesztheto_egysor .tobb_input_egysorban div{

}

.szerkesztheto_egysor .tobb_input_egysorban div input{
    width:100% !important;
}

.nem_szerkesztheto_egysor{
    margin-top:5px;
}

.newErtesitesAblak{
    cursor:pointer;
    text-align: left;
    position:fixed;
    bottom:20px;
    right:20px;
    height:auto;
    min-height:50px;
    width:100%;
    max-width:300px;
    padding:15px;
    border-radius:8px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.4);
    z-index: 1400;
}

.newSikeresAblak{
    background-color: #dffadf;
    color: #508250;
}

.newHibaAblak{
    background-color: #fadfdf;
    color: #843131;
}

.newDefaultAblak{
    background-color: #faefdf;
    color: #9e640c;
}

.newErtesitesAblak h1{
    font-size:18px;
    font-weight:bold;
}

.newErtesitesAblak p{
    font-size:14px;
    font-weight:normal;
    margin-bottom:0px;
}

.new_window_container{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:flex;
    justify-content: center;
    align-items: center;
    z-index:1309;
}

.new_window_content{
    width:500px;
    height:auto;
    padding:20px;
    border-radius:10px;
    background-color:#FFF;
    z-index:1310;
    min-height:200px;
}

.inner_content .form-group{

}

.form-group label{
    color:#0a9ebb;
    font-size:12px;
}

.egy_license_page{
    border-radius:10px;
    border:1px solid #EEE;
    width:100%;
    box-sizing: border-box;
    padding:20px;
    position: relative;
}

.egy_license_page h4{
    font-weight:bold;
    color:#333;

}



.licensz_szerkesztes_gomb{
    position: absolute;
    right:10px;
    top:10px;
    transition: border-radius 0.5s;
}


.porges_gomb.width50{
    width:50px;
    height:50px;
}

.porges_gomb.width45{
    width:45px;
    height:45px;
}

.porges_gomb.width40{
    width:40px;
    height:40px;
}

.porges_gomb.width35{
    width:35px;
    height:35px;
}

.porges_gomb.width30{
    width:30px;
    height:30px;
}

.porges_gomb.width25{
    width:25px;
    height:25px;
}

.porges_gomb.width20{
    width:20px;
    height:20px;
}

.porges_gomb{
    transition: border-radius 1s;
}

.porges_gomb:hover{
    border-radius:50%;
    animation: porges 2s ease;
    animation-iteration-count: 1;
}

@keyframes porges {
    0%  {
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}


.egy_pq_db{
    align-items: center;
    justify-content: center;
    text-align: center;
    padding:35px 25px;
    text-decoration: none;
    color: #2b7780;
    background-color: rgba(10, 158, 187, 0.12);
    margin:20px;
    border-radius:10px;
    font-size:20px;
    max-width:450px;
}

.egy_pq_db:hover{
    background-color: #2b7780;
    color: rgb(242, 253, 255);
}

.valami {
    color: rgba(224, 122, 22,1)
}