/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 7.3.2019, 12:52:59
    Author     : Schnaubelt
*/

#ztscb div.rotate
{
    writing-mode: vertical-lr;
    margin-left: auto;
    margin-right: auto;
}

#ztscb table{
    padding: 10px;
}

#ztscb .border td, #ztscb .border th {
    border: solid 1px #828282;
}

#ztscb input{
    border:1px solid #00a1e0;
}

#ztscb textarea{
    border:1px solid #00a1e0;
}

#ztscb .chyba, #ztscb .red{
    color: red;
}

#ztscb .widthauto{
    width: auto;
}

#ztscb label{
    font-weight: bold;
    color: #002b59;
}

#ztscb .row{
    display: flex;
}

#ztscb .col{
    flex: 1;
}

#ztscb .radio{
    width: auto;
}

#ztscb .radio-label, #ztscb .checkbox-label{
    font-weight: normal;
    padding-left: 5px;
}
#ztscb .radio-label:hover, #ztscb .checkbox-label:hover{
    color: #ff5200;
}

#ztscb .radio:checked + .radio-label, #ztscb .checkbox:checked + .checkbox-label{
    color: #ff5200;
}

#ztscb .center {
    text-align: center;
}

#ztscb .left {
    text-align: left;
}

#ztscb .right {
    text-align: right;
}

#ztscb fieldset{
    border: solid 1px #00a1e0;
}

#ztscb .floatr{
    float: right;
}

#ztscb .width25pr {
    width: 24%;
    float:left;
}

#ztscb .width50pr {
    width: 49% !important;
    float:left;
}

#ztscb .width33pr {
    width: 32%;
    float:left;
}

#ztscb .width48pr {
    width: 48%;
    float:left;
}

#ztscb input[type="text"]{
    width: 100%;
}

#ztscb input[type="button"], #ztscb  input[type="submit"]{
    background-color: #00a1e0;
    color: white;
    font-weight: bold;
}

#ztscb input[type="button"]:hover, #ztscb  input[type="submit"]:hover{
    background-color: #70d6ff;
    border-color: #70d6ff;
}

#ztscb textarea{
    resize: none;
    width: 100%;
    height: 100%;
}

#ztscb .ucastnici {
    min-height: 400px;
}

#ztscb #ucastnici-table {
    line-height: 25px;
}

#ztscb #ucastnici-table th{
    padding: 0px 15px 0px 15px;
}

#ztscb #ucastnici-table span{
    font-size: 25px;
}

#ztscb #ucastnici-table span:hover{
    color: #ff5200;
}

/*-----------------TOOLTIP------------------- */
.tooltip {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.tooltip .tooltiptext {
    visibility: hidden;
    background-color: #00a1e0;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    top: -2px;
    left: 102%;

    clear: both;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}