/**
* Animace v čase
* 
* Komponenta animaci obrázků v čase
* 
* @category   Knihovny funkcí
* @copyright  Copyright (c) 2016 Foxtrot Technologies s.r.o. (www.foxtrot.cz)
* @version    1.2, 2024-01-08
*/

.fta_axe_cont {
    position: absolute;
    top: 50%;
    left: 5px;
    right: 35px;
    overflow: visible;
    -webkit-transform: translate(0,-50%);
    transform: translate(0,-50%);
    box-sizing: border-box;
    border: none;
}

.fta_slider_cont {
    position: absolute;
    top: 0;
    left: 5px;
    right: 35px;
    overflow: visible;
    box-sizing: border-box;
    border: none;
}

.fta_axe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    box-sizing: border-box;
    border: none;
    border-radius: 2px;
    background-color: #e7e7e7;
    background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
    background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
    background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
    background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
}

.fta_axe_fcst {
    position: absolute;
    top: 0;
    right: 0;
    height: 5px;
    box-sizing: border-box;
    border: none;
    border-radius: 2px;
    background-color: #8EBBF7;
    background-image: -moz-linear-gradient(top, #8EBBF7, #3C8FFF);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#8EBBF7), to(#3C8FFF));
    background-image: -webkit-linear-gradient(top, #8EBBF7, #3C8FFF);
    background-image: -o-linear-gradient(top, #8EBBF7, #3C8FFF);
    background-image: linear-gradient(to bottom, #8EBBF7, #3C8FFF);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8EBBF7', endColorstr='#ff3C8FFF', GradientType=0);
}

.fta_step_mark_cont, .fta_step_mark_cont_first, .fta_step_mark_cont_last {
    position: absolute;
    top: -5px;
    box-sizing: border-box;
    border: none;
    cursor: pointer;
}

.fta_step_mark_cont {
    transform: translate(-50%,0);
}

.fta_step_mark_cont_last {
    transform: translate(-100%,0);
}


.fta_step_mark, .fta_step_mark_first, .fta_step_mark_last {
    width: 14px;
    height: 14px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 10px;
    box-sizing: border-box;
    border: 1px solid #AAA;
    background-color: #e7e7e7;
    background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#dddddd));
    background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
    background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
    background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
}

.fta_step_mark {
    margin: 0 auto;
}

.fta_selected_step_mark {
    background-color: #FF8080;
    background-image: -moz-linear-gradient(top, #FF8080, #FF5454);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#FF8080), to(#FF5454));
    background-image: -webkit-linear-gradient(top, #FF8080, #FF5454);
    background-image: -o-linear-gradient(top, #FF8080, #FF5454);
    background-image: linear-gradient(to bottom, #FF8080, #FF5454);
}

.fta_step_mark_last {
    margin: 0 0 0 auto;
}

.fta_step_text, .fta_step_text_first, .fta_step_text_last {
    white-space: nowrap;
    color: #999;
    font-size: 9px;
    margin-top: 5px;
    user-select: none;
}

.fta_step_text {
    text-align: center;
}

.fta_step_text_first {
    text-align: left;
}

.fta_step_text_last {
    text-align: right;
}

.fta_date_cont {
    display: inline-table;
    color: #b41010;
}

.fta_now_icon {
    width: 25px;
    height: 25px;
    box-sizing: border-box;
    background-color: #aaa;
    border: 1px solid #AAA;
    border-radius: 3px;
    cursor: pointer;
    background-image: url("images/now_icon.png");
    background-position: center center;
    background-repeat: no-repeat;
    flex-grow: 0;
    flex-shrink: 0;
    margin-right: 2px;
}

.fta_controls_cont {
    position: absolute;
    top: 30px;
    right: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.fta_play_icon, .fta_playfast_icon {
    flex-grow: 0;
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    box-sizing: border-box;
    background-color: #aaa;
    border: 1px solid #AAA;
    border-radius: 3px;
    cursor: pointer;
    margin-right: 2px;
}

.fta_play_image, .fta_playfast_image, .fta_stop_image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 15px;
}

.fta_play_image {
    background-image: url("images/play_icon.svg");
}

.fta_playfast_image {
    background-image: url("images/fastplay_icon.svg");
}

.fta_stop_image {
    background-image: url("images/stop_icon.png");
}

.fta_slider_axe {
    position: absolute;
    top: 0;
    height: 3px;
    background-color: #BDBDBD;
    box-sizing: border-box;
    border: none;
}

.fta_slider_left, .fta_slider_right {
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    border-top: 21px solid #BDBDBD;
    box-sizing: border-box;
    cursor: e-resize;
}

.fta_slider_left {
    border-right: 17px solid transparent;
}

.fta_slider_right {
    border-left: 17px solid transparent;
    -webkit-transform: translate(-100%,0);
    transform: translate(-100%,0);
}

.fta_period_select {
	display: block;
    flex: 1 100%;
}

.fta_marks_cont {
    position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.fta_time_handle_cont {
    position: absolute;
    bottom: -35px;
    left: 0;
    width: 50px;
    height: 25px;
    border: 1px solid #5D0000;
    box-sizing: border-box;
    cursor: e-resize;
    background-color: #FFC0C0;
    border-radius: 3px;
    color: #BDBDBD;
    line-height: 23px;
    text-align: center;
    font-size: 10pt;
}

.fta_time_handle_cont:after, .fta_time_handle_cont:before {
	bottom: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.fta_time_handle_cont:after {
	border-color: rgba(0, 169, 224, 0);
	border-bottom-color: #5D0000;
	border-width: 7px;
	margin-left: -7px;
}

.fta_time_handle_cont:before {
	border-color: rgba(65, 65, 123, 0);
	border-bottom-color: #FFC0C0;
	border-width: 8px;
	margin-left: -8px;
}


.fta_bar_mark {
   box-sizing: border-box;
   width: 1px;
   height: 20px;
   border-right: 2px solid #BDBDBD;
   box-sizing: border-box;
}

.fta_bar_mark_cont, .fta_bar_mark_cont_first, .fta_bar_mark_cont_last {
    position: absolute;
    top: -9px;
    box-sizing: border-box;
    border: none;
    display: flex;
    flex-direction: column;
}

.fta_bar_mark_cont {
    transform: translate(-50%,0);
}

.fta_bar_mark_cont_last {
    transform: translate(-100%,0);
    align-items: flex-end;
}

.fta_hidden {
	display: none;
	visibility: hidden;
}