/**
* Tutor
* 
* Komponenta pro výuku aplikace
* 
* @category   Komponenty
* @copyright  Copyright (c) 2017 Foxtrot Technologies s.r.o. (www.foxtrot.cz)
* @version    1.5, 2018-10-08
*
*/

.foxTutor_hidden {
    display: none;
    visibility: hidden;
}

.foxTutor_icon_butt {
    position: absolute;
    background-color: #000000;
    border-radius: 50%;
    cursor: pointer;
    border: solid 1px #c7c7c7;
    width: 6rem;
    height: 6rem;
    top: 0;
    user-select: none;
    -webkit-user-select: none;
    box-sizing: border-box;
}

.foxTutor_prev_icon {
    left: 0;
    background-image: url("images/prev.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.foxTutor_play_icon {
    left: 1rem;
    background-image: url("images/play.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.foxTutor_pause_icon {
    left: 1rem;
    background-image: url("images/pause.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.foxTutor_next_icon {
    left: 7.5rem;
    background-image: url("images/next.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.foxTutor_close_icon {
    right: 0;
    background-image: url("images/close.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

#foxTutor_modal_cont {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
    background-color: rgba(0,0,0,0.4);
    user-select: none;
    -webkit-user-select: none;
}

.foxTutor_cont {
    position: absolute;
    top: 0;
    left: 0;
    width: 90vw;
    max-width: 300px;
    height: auto;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
}

.foxTutor_cont_landscape {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 90vw;
    height: auto;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
}

#foxTutor_table, #foxTutor_table tbody, #foxTutor_table td, #foxTutor_table tr {
	background-color: unset;
	border: none;
}

#foxTutor_tutor {
    position: relative;
    display: block;
    user-select: none;
    -webkit-user-select: none;
}

#foxTutor_tutor_spacer {
    position: relative;
    width: 100%;
    height: 1rem;
    user-select: none;
    -webkit-user-select: none;
}

#foxTutor_tutor_small_spacer {
    position: relative;
    width: 100%;
    height: 0.5rem;
    user-select: none;
    -webkit-user-select: none;
}

#foxTutor_text_block {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
}

#foxTutor_tutor_icons_cont {
    position: relative;
    width: 100%;
    height: 6rem;
    user-select: none;
    -webkit-user-select: none;
}

#foxTutor_comment_head {
    position: relative;
    display: flex;
    width: 100%;
    color: #000;
    background-color: #C8C8C8;
    border: solid 1px #000;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
}

#foxTutor_comment_head p {
    font-size: 10pt;
    margin: 0.5rem 0.5rem; /* Important */
    font-weight: bold;
}

.foxTutor_comment, .foxTutor_comment_with_head {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    color: #000;
    background-color: #fff;
    border: solid 1px #000;
    text-align: left;
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
}

#foxTutor_counter {
    position: absolute;
    display: flex;
    right: 0.5rem;
    top: 0.5rem;
    height: 1.5rem;
    width: auto;
    min-width: 1.5rem;
    border: solid 1px #444;
    border-radius: 1.25rem;
    -webkit-border-radius: 1.25rem;
    user-select: none;
    -webkit-user-select: none;
    background-color: #444;
    color: #C8C8C8;
    box-sizing: border-box;
}

#foxTutor_counter p {
    font-size: 1.0rem;
    text-align: center;
    margin: auto; /* Important */
    box-sizing: border-box;
    padding: 0.05rem 0 0 0;
}

.foxTutor_comment {
    border-radius: 5px;
}

.foxTutor_comment_with_head {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}