﻿
/* Általános css-ek CounterBee-hez */



/*circle progress bar*/

#circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
	width: 100px;
    height: 100px;	
}

.loader {
  border: 12px solid #f3f3f3; /*   Light grey */
  border-top: 12px solid #FF7F45; /* #3498db Blue */
  border-radius: 50%;
  width: 100px;
  height: 100px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*circle progress bar*/



/*progress*/
progress
{
    width:5em;
    font-size:0.6em;
    height:0.6em;        
}
/*progress*/




/*timing buttons*/

.timing_button_box{
    width:24px;    
    float:right;
}

.timing_button{
    /*width:24px;*/
    font-size:2em;    
    cursor: pointer;
}



/*timing buttons*/

.timing_labels{
    width:200px;    
    float:left;
    /*border:1px solid red;*/
}

.timing_label{
    float:left;
}

/*timing labels*/

/* időméréshez */

input[type="checkbox"] {
height:1.6em;
width:1.6em;
accent-color: #ff7f45;
}




/*dialog x gombjához*/
.ui-dialog-titlebar-close{
	border:1px solid white;
	background-color:transparent;
	background-image:url(../../Image/X_32x32-white.png);
	background-repeat:no-repeat;
	background-size:16px;
	background-position:center;
}



/*táblázathoz*/
.table-button-open{
    cursor:pointer;
    background-color:#1fb36e !important;    /*zöld*/
    color:white !important;    
}


.table-button-open-blue{
    cursor:pointer;
    background-color:#007bff !important;    /*vil. kék*/
    color:white !important;    
}
/*táblázathoz*/



/*táblázaton belüli akció gombok stílusa*/
.table-action-icon
{}
.table-action-icon:hover
{
	background-color:#69809A;	
}


.btn-disable
{
	pointer-events: none;
    opacity: 0.15;
}


.btn-white
{
	background-color: white; 
}
/*táblázaton belüli akció gombok stílusa*/
