/**
* Komentáře
* 
* Knihovna pro práci s uživatelskými komentáři
* 
* @category   Komponenty
* @copyright  Copyright (c) 2016 Foxtrot Technologies s.r.o. (www.foxtrot.cz)
* @version    1.3, 2023-06-06
*/

.foxComments_top_bar {
    border-bottom: solid 1px #212121;
    padding: 1vh 0;
    margin: 0 0 5px 0;
}

.foxComments_main_title {
    font-family: 'AvenirDemi';
    font-size: 14pt;
}

.foxComments_iconButton {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 4vh;
    padding: 1vh;
    cursor: pointer;
    background-color: #000;
    border-radius: 3px;    
}

.foxComments_iconButton:hover {
    background-color: rgb(109, 109, 109);
}

.foxComments_iconButton_icon {
    height: 1.5vh;
    width: auto;
    margin: 0 0.6vw 0 0;
}


.foxComments_iconButton_fullIcon {
    height: 2vh;
    width: auto;
}

.foxComments_iconButton_text {
    font-family: 'AvenirDemi';
    color: #fff;
    white-space: nowrap;
    padding: 0.3vh 0 0 0;
    font-size: 12pt;
    font-weight: normal;
}

.foxComments_list_cont {
    padding: 2vh 0;
}

.foxComments_infoText {
    font-family: 'AvenirDemi';
    font-size: 12pt;
    font-weight: normal;
    color: #212121;
}

.foxComments_smallIconButton {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 3vh;
    width: 3vh;
    flex: 0 0 3vh;
    cursor: pointer;
    background-color: #000;
    border-radius: 3px;
}

.foxComments_smallIconButton:hover {
    background-color: rgb(109, 109, 109);
}

.foxComments_smallIconButton_icon {
    height: 1.7vh;
    width: auto;
    margin: 0;
}

.foxComments_navNbrs {
    font-family: 'Avenir';
    font-size: 12pt;
    color: #212121;
    margin: 0 0.5vw;
}

#foxComments_prevButt {
    margin-left: 3px;
}

#foxComments_nextButt {
    margin-right: 3px;
}

.foxComments_modalBck {
    background-color: rgba(0,0,0,0.6);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.foxComments_dialogCont {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff9f1;
    border-radius: 5px;
    border: solid 2px #212121;
    display: flex;
    flex-direction: column;
    padding: 10px;
    width: 80vw;
    height: 90vh;
}

.foxComments_dialogTitleBar {
    margin: 0 0 1vh 0;
}

.foxComments_dialogTitle {
    font-family: 'AvenirDemi';
    font-size: 14pt;
    color: #212121;
    text-decoration: underline;
    margin: 0 0 1vh 0;
}

.foxComments_dialogCloseIcon {
    width: 4vh;
    height: 4vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 11pt;
    font-family: 'AvenirDemi';
    background-color: #000;
    color: #fff;
    border-radius: 3px;
    padding: 0.3vmin 0 0 0;
    cursor: pointer;
}

.foxComments_inputHead, .foxComments_inputHeadMand {
    font-family: 'AvenirDemi';
    padding: 0.3vh 1vw 0 0;
    min-width: 10vw;
    white-space: nowrap;
    font-size: 12pt;
    font-weight: normal;
    color: #212121;
}

.foxComments_inputHeadMand:before {
	content: '*';
	color: #f13b3b;
	margin: 0 0.3vw 0 0;
} 

.foxComments_input {
    border: none;
    outline: 0;
    flex: 1 100%;
    background-color: #f3f3f3;
    height: 3vh;
    padding: 0 0.2vw;
    font-family: 'Avenir';
    font-size: 12pt;
    font-weight: normal;
    color: #212121;
}

.foxComments_inputCont {
    border: solid 1px #d3d3d3;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0.5vh 1vw;
    min-height: 4vh;
}

.foxComments_titleCont {
    margin: 5px 2vw 0 0;
}

.foxComments_title {
    font-family: 'AvenirDemi';
    font-size: 14pt;
    color: #212121;
}

.foxComments_viewsCont {
    align-items: center;
    margin: 0 2vw 0 0;
}

.foxComments_viewCnt {
    font-family: 'Avenir';
    font-size: 12pt;
}

.foxComments_repliesCont {
    align-items: center;
}

.foxComments_repliesCnt{
    font-family: 'Avenir';
    font-size: 12pt;
}

.foxComments_ck-content {
    font-family: 'Avenir';
    font-size: 12pt;
}

.foxComments_ck-content p {
    margin: 0.3vh 0;
}

.foxComments_commentEditorCont {
    height: 30vh;
}

.foxComments_dialogCont .foxComments_commentEditorCont, #foxComments_commentView {
    height: unset;
    flex: 1;
    max-height: unset;
}

#foxComments_view_outer_cont {
    position: relative;
}

#foxComments_commentView {
    border: solid 1px #212121;
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}



.foxComments_commentEditorCont .ck-content, .foxComments_textCont .ck-content {
    font-size: 10pt;
    color: #212121;
    flex: 1;
}

.foxComments_commentEditorCont .ck-content p, .foxComments_textCont .ck-content p {
    margin: 0;
}

.foxComments_commentEditorCont .ck.ck-editor{
    display: flex;
    flex-direction: column;
    flex: 1;
}

.foxComments_commentEditorCont .ck.ck-editor__main {
    display: flex;
    flex-direction: column;
    flex: 1; 
    position: relative;
}

.foxComments_commentEditorCont .ck-editor__editable {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: auto;
}

.foxComments_commentEditorCont .ck-content .text-tiny, .foxComments_textCont .ck-content .text-tiny {
    font-size: 8pt !important;
}

.foxComments_commentEditorCont .ck-content .text-small, .foxComments_textCont .ck-content .text-small {
    font-size: 10pt !important;
}

.foxComments_commentEditorCont .ck-content .text-big, .foxComments_textCont .ck-content .text-big {
    font-size: 12pt !important;
}

.foxComments_commentEditorCont .ck-content .text-huge, .foxComments_textCont .ck-content .text-huge {
    font-size: 14pt !important;
}

.foxComments_checkbox {
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-grow: 0;
	flex-shrink: 0;    
}

#foxComments_followDisc {
    margin: 0 2vw 0 0;
}

.foxComments_commentCont, .foxComments_commentContForum {
    border: solid 1px #c9c8c8;
    margin: 0 0 2vh 0;
    padding: 5px;
}

.foxComments_commentContForum {
    padding: 0 0 5px 0;
}

.foxComments_commentDataCont {
    cursor: pointer;
    padding: 0 5px;
}

.foxComments_commentDataCont:hover {
    background-color: #eeeeee;
}

.foxComments_commentTopBarCont {
    margin: 0 0 5px 0;
}

.foxComments_date {
    font-family: 'Avenir';
    font-size: 12pt;
    color: #949494;
    margin: 0 0 0 1vw;
    font-style: italic;
}

.foxComments_lastHead {
    font-family: 'AvenirDemi';
    font-size: 12pt;
    color: #212121;
}

.foxComments_userIcon {
    height: 4vh;
    width: 4vh;
    margin: 0 0.5vw 0 0;
    border-radius: 2vh;
}

.foxComments_userNme {
    font-family: 'AvenirDemi';
    font-size: 12pt;
    color: #212121;
}

.foxComments_userNmeForum {
    font-family: 'Avenir';
    font-size: 12pt;
    color: #212121;
}

.foxComments_achiIcon {
    height: 2vh;
    width: auto;
    margin: 0 0.3vw 0 0;    
}

.foxComments_sep {
    border-top: solid 1px #dcdcdc;
    height: 1px;
}

.foxComments_vertSep {
    border-left: solid 1px #dcdcdc;
    width: 1px;
    height: 3vh;
}

.foxComments_textCont {
    padding: 5px;
    background-color: #fafafa;
    max-height: 20vh;
    overflow-x: hidden;
    overflow-y: auto;
}

.foxComments_buttonsCont {
    margin: 5px 0 0 0;
}

.foxComments_fleCont {
    margin: 0 0 1vh 0;
    padding: 3px 0;
    cursor: pointer;
}

.foxComments_fleCont:hover {
    background-color: #eeeeee;
}

.foxComments_fleImg {
    height: 3vh;
    width: auto;
    flex-shrink: 0;
    flex-grow: 0;
    cursor: pointer;
}

.foxComments_nme {
    font-family: 'Avenir';
    font-size: 14pt;
    color: #212121;
}

.foxComments_fleNme {
    font-family: 'Avenir';
    font-size: 12pt;
    color: #878787;
}

.foxComments_filesCont {
    padding: 0 0 0 1vw;
}