/**
* @title			Ol Full screen gallery
* @version   		4.0.0
* @copyright   		Copyright (C) 2020 olwebdesign.com, All rights reserved.
* @license   		GNU General Public License version 3 or later.
* @author url   	http://www.olwebdesign.com/
* @developers   	olwebdesign.com
*/

.fs_bg {
	position:fixed;
	z-index:-1;
	left:0;
	top:0;
	width:100%;
	height:100%;
	display:block;
}
.fs_gallery_wrapper {
    transition: width 400ms, opacity 500ms;
}

.fs_gallery_container .fs_slide iframe {
    z-index: 5;
    position: absolute;
    left: 50%;
}

.fs_gallery_container .fs_slide {
    background-position: center;
}

.fs_wrapper_global {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    padding: 0 10px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.fs_gallery_container {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all 400ms;
}

.show_menu .fs_gallery_container {
    right: -240px;
}

.show_fs_content .fs_gallery_container {
    right: -375px;
}

.show_menu.show_fs_content .fs_gallery_container {
    right: -615px;
}

.fullview .fs_gallery_container,
.fullview.show_menu .fs_gallery_container {
    right: 0px;
}

.fs_gallery_container li {
    padding: 0;
}

.fs_gallery_container li:before {
    display: none;
}

.fs_gallery_container.fade {
    opacity: 1;
}

.fs_gallery_container.fade li {
    transition: opacity 1000ms;
    -webkit-transition: opacity 1000ms;
}

.touched .fs_gallery_container.fade li {
    transition: none;
}

.fs_gallery_container.slip li {
    transition: opacity 1000ms, left 1000ms;
}

.touched .fs_gallery_container.slip li {
    transition: opacity 1000ms;
}

.fs_gallery_container li {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: block;
    opacity: 0;
    z-index: 24;
    background-position: center;
}

.fs_gallery_container.slip li.prev-slide {
    left: -100%;
}

.fs_gallery_container.slip li.next-slide {
    left: 100%;
}

.touched .fs_gallery_container.slip li.prev-slide,
.touched .fs_gallery_container.slip li.next-slide {
    opacity: 1;
    z-index: 25;
}

.fs_gallery_container li.current-slide {
    z-index: 25;
    opacity: 1;
}

.fs_gallery_container li {
    background-position: center !important;
}

.no_fit.fs_gallery_container li {
    background-size: cover !important;
}

.fit_always.fs_gallery_container li {
    background-size: contain !important;
}

.fit_width.fs_gallery_container li {
    background-size: 100% auto !important;
}

.fit_height.fs_gallery_container li {
    background-size: auto 100% !important;
}

.fs_gallery_container.zoom li {
    -ms-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5);

    transition: opacity 1000ms, transform 1000ms;
    -webkit-transition: opacity 1000ms, -webkit-transform 1000ms;
}

.fs_gallery_container.zoom li.current-slide {
    opacity: 1;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
}

/*Buttons & Thumbs*/
.fs_thmb_viewport {
    position: fixed;
    width: 52px;
    height: 196px;
    display: block;
    right: 20px;
    top: 50%;
    padding: 42px 0;
    margin-top: -101px;
    /*overflow:hidden;*/
    z-index: 44;
}

.fs_thmb_viewport .nav_button {
    position: absolute;
    right: 27px;
    top: 0;
}

.fs_thmb_viewport .nav-down {
    top: auto;
    bottom: -90px;
}

.fs_thmb_wrapper {
    height: 196px;
    width: 52px;
    border-radius: 52px;
    /*overflow:hidden;*/
}

.fs_thmb_wrapper li {
    list-style: none;
}

.fs_thmb_list {
    position: relative;
}

.fs_thmb_list li {
    list-style: none;
    width: 52px;
    height: 52px;
    display: block;
    padding: 10px;
    position: absolute;
    left: 0;
    cursor: pointer;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    transition: all 300ms;
    top: 72px;
    opacity: 0;
}

.fs_thmb_list li img {
    width: 32px;
    height: 32px;
    display: block;
    margin: 0;
    border-radius: 100%;
    transition: all 400ms;
}

.fs_thmb_list li.thmbCurrent img,
.fs_thmb_list li.current-slide img {
    width: 52px;
    height: 52px;
    display: block;
}

.fs_thmb_list li.thmbCurrent,
.fs_thmb_list li.current-slide {
    padding: 0;
}

.fs_thmb_list li.thmbPrev2 {
    top: -52px;
    opacity: 0;
}

.fs_thmb_list li.thmbPrev {
    top: 10px !important;
    opacity: 1 !important;
}

.fs_thmb_list li.thmbNext {
    top: 134px !important;
    opacity: 1 !important;
}

.fs_thmb_list li.thmbCurrent {
    top: 72px !important;
    opacity: 1 !important;
}

.fs_thmb_list li.thmbNext2 {
    top: 196px;
    opacity: 0;
}

.model_gallery,
.model_gallery .fs_gallery_container {
    width: 50%;
}

.fullview .model_gallery,
.fullview .model_gallery .fs_gallery_container {
    width: 100%;
}

.fs_title_wrapper {
    position: fixed;
    left: 30px;
    bottom: 58px;
    z-index: 44;
    max-width: 50%;
    transition: left 400ms;
}

.show_menu .fs_title_wrapper {
    left: 270px;
}

.show_fs_content .fs_title_wrapper {
    left: 405px;
}

.show_menu.show_fs_content .fs_title_wrapper {
    left: 645px;

}

/*.fullview.show_menu .fs_title_wrapper,
.fullview .fs_title_wrapper {
	left:-50%;
}*/

h1.fs_title {
    font-size: 36px;    
    line-height: 38px;
    font-weight: 300;
    margin: 0 0 20px -3px;
}

h3.fs_descr {
    font-size: 20px;
    line-height: 22px;
    font-weight: 300;
    margin: 0 0 20px -1px;
    background: none !important;
}

.fs_share_block {
    position: fixed;
    left: 30px;
    top: 50%;
    margin-top: 24px;
    height: 32px;
    display: block;
    z-index: 44;
    width: 32px;
    overflow: hidden;
    border-radius: 32px;
    transition: width 300ms, left 400ms;
}

.fs_share_block.fs_template {

}

.fs_share_block_single {
    height: 32px;
    display: block;
    z-index: 15;
    width: 32px;
    overflow: hidden;
    border-radius: 32px;
    transition: width 300ms, left 400ms;
}

.show_share.fs_share_block,
.show_share.fs_share_block_single {
    width: 242px;
}

.show_menu .fs_share_block {
    left: 270px;
}

.fullview.show_menu .fs_share_block,
.fullview .fs_share_block {
    left: -250px;
}

.share_box {
    width: 208px;
    height: 32px;
    position: absolute;
    top: 0;
    left: 32px;
    display: block;
    /*overflow:hidden;*/
    opacity: 0;
    transition: opacity 300ms;
}

.show_share .share_box {
    opacity: 1;
}

.share_box a {
    margin-left: 20px;
    float: left;
}

.fs_controls_append {
    left: 50%;
    top: 50%;
    width: 32px;
    height: 32px;
    display: block;
    margin: 24px 0 0 -16px;
    position: fixed;
    z-index: 45;
    transition: margin-left 400ms, opacity 400ms, z-index 400ms;
}

.fs_controls_append #fs_play-pause.disabled {
    opacity: 0;
}

.fs_controls_append #fs_play-pause:hover,
.fs_controls_append #fs_play-pause.disabled:hover {
    opacity: 1;
}

.fs_controls_append #fs_play-pause {
    transition: opacity 300ms;
}

.show_menu .fs_controls_append {
    margin-left: 224px;
}

.show_fs_content .fs_controls_append {
    margin-left: 359px;
}

.show_fs_content.show_menu .fs_controls_append {
    margin-left: 599px;
}

.fullview.show_menu .fs_controls_append,
.fullview .fs_controls_append {
    opacity: 0;
    margin-left: -16px;
    z-index: -1;
}

.fs_side_controls {
    position: fixed;
    left: 30px;
    top: 50%;
    margin-top: -100px;
    height: 280px;
    display: block;
    transition: left 400ms;
    z-index: 30;
}

.fs_side_controls.no_prev_link,
.fs_side_controls.no_next_link {
    height: 218px;
    margin-top: -69px;
}

.show_menu .fs_side_controls {
    left: 270px;
}

.show_fs_content .fs_side_controls {
    left: 405px;
}

.show_fs_content.show_menu .fs_side_controls {
    left: 645px;
}

.fullview.show_menu .fs_side_controls,
.fullview .fs_side_controls {
    left: -300px;
}

.fs_ctrl_prevPost,
.fs_ctrl_info,
.fs_ctrl_like,
.fs_share_block_single {
    margin-bottom: 30px;
    position: relative;
}

span.fs_span_prev,
span.fs_span_info,
span.fs_span_like,
span.fs_span_next {
    font-size: 12px;
    line-height: 32px;
    position: absolute;
    left: -12px;
    top: -1px;
    white-space: nowrap;
    word-wrap: break-word;
    opacity: 0;
    cursor: default;
    transition: opacity 300ms, left 300ms;
}

span.fs_span_info {
    top: 62px;
}

span.fs_span_like {
    top: 124px
}

span.fs_span_next {
    top: 248px
}

span.fs_span_prev.hovered,
span.fs_span_info.hovered,
span.fs_span_like.hovered,
span.fs_span_next.hovered {
    opacity: 1;
    left: -7px;
}

.fs_nextPost_link,
.fs_prevPost_link {
    opacity: 0;
    z-index: -15;
    position: fixed;
    left: -100%;
    top: -100%;
}

.fs_side_controls.no_next_link .fs_ctrl_nextPost,
.fs_side_controls.no_next_link .fs_span_next {
    display: none;
}

.fs_side_controls.no_prev_link .fs_ctrl_prevPost,
.fs_side_controls.no_prev_link .fs_span_prev {
    display: none;
}

.fs_side_controls.no_prev_link span.fs_span_info {
    top: -1px;
}

.fs_side_controls.no_prev_link span.fs_span_like {
    top: 62px
}

.fs_side_controls.no_prev_link span.fs_span_next {
    top: 186px
}

.nav-up {
    width: 32px;
    height: 32px;
    margin-left: 24px;
    margin-top: 20px;
    background-position: 0px 0px;
    background: url(../img/goodwin_sprite.png) no-repeat 0 0;
}

.nav-up:hover {
    width: 32px;
    height: 32px;
    background-position: 0px -64px;
}

.nav-down {
    width: 32px;
    height: 32px;
    margin-left: 24px;
    background: url(../img/goodwin_sprite.png) no-repeat 0 0;
    background-position: -32px 0px;
}

.nav-down:hover {
    width: 32px;
    height: 32px;
    background-position: -32px -64px;
}
