/* fx checkbox */
.fx-checkbox {
    display: block;
    box-sizing: border-box;
    font-family: var(--f_asap);
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
    text-align: left;
    color: #000000;
    padding: 2px 0 0 0;
    margin: 0 0 10px 0;
    user-select: none;
}

.fx-checkbox:last-child {
    margin: 0;
}

.fx-checkbox.uppercase {
    text-transform: uppercase;
}

.fx-checkbox.center {
    text-align: center;
}

.fx-checkbox.font-roboto {
    font-family: var(--f_roboto);
}

.fx-checkbox label {
    display: inline-block;
    padding: 0 0 0 42px;
    margin: 0;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.fx-checkbox label.white {
    color: #ffffff;
}

.fx-checkbox label:before {
    content: '';
    display: block;
    box-sizing: border-box;
    width: 28px;
    height: 28px;
    border: 3px solid #000000;
    border-radius: 0;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #ffffff;
    background-image: none;
    background-position: center center;
    background-size: 70% 70%;
    background-repeat: no-repeat;
    transition: all 0.2s ease-out;
}

.fx-checkbox.checked label:before {
    background-image: url('/images/svg/fx/fx_checkbox/checkbox_check.svg');
    background-color: var(--c_yellow);
}

.fx-checkbox:not(.checked):hover label:before {
    background-color: var(--c_yellow_light);
}

.fx-checkbox input {
    display: none;
}

/* fx checkbox - small version
--------------------------------------------- */
.fx-checkbox.small {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
}

.fx-checkbox.small label {
    padding: 0 0 0 26px;
}

.fx-checkbox.small label:before {
    width: 18px;
    height: 18px;
    border: 2px solid #000000;
}

/* fx checkbox radio
--------------------------------------------- */
.fx-checkbox-radio {
    display: inline-block;
    box-sizing: border-box;
    min-width: 24px;
    min-height: 24px;
    padding: 0;
    margin: 0;
    position: relative;
    cursor: pointer;
}

.fx-checkbox-radio:before {
    content: '';
    display: block;
    box-sizing: border-box;
    width: 24px;
    height: 24px;
    padding: 0;
    margin: 0;
    border: 3px solid #222222;
    border-radius: 50%;
    background-color: #ffffff;
    background-image: none;
    background-position: center center;
    background-size: 8px 8px;
    background-repeat: no-repeat;
    transition: all 0.2s ease-out;
    user-select: none;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}

.fx-checkbox-radio.checked:before {
    background-image: url('/images/svg/fx/fx_checkbox_radio/checkbox_check.svg');
    background-color: var(--c_yellow);
}

.fx-checkbox-radio:not(.checked):hover:before {
    background-color: var(--c_yellow_light);
}

.fx-checkbox-radio label {
    display: inline-block;
    font-family: inherit;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    text-transform: inherit;
    color: #000000;
    padding: 0 0 0 32px;
    margin: 0;
    cursor: pointer;
    user-select: none;
}

.fx-checkbox-radio input {
    display: none;
}

/* fx checkbox radio - small version
--------------------------------------------- */
.fx-checkbox-radio.small {
    min-width: 20px;
    min-height: 20px;
}

.fx-checkbox-radio.small:before {
    width: 20px;
    height: 20px;
    border: 2px solid #222222;
    background-size: 6px 6px;
}

.fx-checkbox-radio.small label {
    font-size: 16px;
    line-height: 20px;
    padding: 0 0 0 28px;
}

/* fx select
--------------------------------------------- */
.fx-select {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 42px;
    padding: 0;
    margin: 0;
    position: relative;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

.fx-select.disabled {
    pointer-events: none;
    filter: grayscale(1);
    opacity: 0.6;
}

select.fx-select {
    opacity: 0;
}

.fx-select select.hide {
    display: none;
    opacity: 0;
}

.fx-select ._mask {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 42px;
    font-family: var(--f_asap);
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    color: #000000;
    padding: 6px 6px 6px 15px;
    margin: 0;
    border-radius: 0;
    border: 3px solid #000000;
    background-color: #ffffff;
    outline: none;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.2s ease-out;
    white-space: nowrap;
    overflow: hidden;
    user-select: none;
}

.fx-select ._mask.active {
    background-color: #ffffff;
}

.fx-select ._mask.placeholder {
    color: #b8b8b8;
}

.fx-select ._mask ._red {
    display: inline;
    color: #cc0000;
    font-weight: 700;
    font-size: 20px;
    vertical-align: top;
}

.fx-select ._mask ._neutral {
    display: inline;
    color: inherit;
    font-weight: 700;
    font-size: 20px;
    vertical-align: top;
}

.fx-select ._mask:before {
    content: '';
    display: block;
    box-sizing: border-box;
    width: 43px;
    height: 36px;
    background-color: var(--c_yellow);
    border-left: 3px solid #000000;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

.fx-select.mod-black ._mask:before {
    background-color: #000000;
}

.fx-select ._mask:after {
    content: '';
    width: 40px;
    height: 36px;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 0.2s ease-out;
    z-index: 4;
    background-color: transparent;
    background-image: url('/images/svg/fx/fx_select/arrow.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 16px 16px;
    user-select: none;
}

.fx-select.mod-black ._mask:after {
    background-image: url('/images/svg/fx/fx_select/arrow_yellow.svg');
}

.fx-select ._mask.active:after {
    transform: scaleY(-1);
}

.fx-select ul._options {
    display: none;
    box-sizing: border-box;
    width: 100%;
    max-height: 240px;
    margin: 0;
    padding: 0;
    list-style-type: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 20;
    background-color: #ffffff;
    border: 3px solid #707070;
    border-top: none;
    overflow: scroll;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.2);
}

.fx-select ul._options li {
    display: block;
    box-sizing: border-box;
    height: 36px;
    font-family: var(--f_asap);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
    color: #7b7b7b;
    padding: 8px 15px;
    margin: 0;
    border-top: 1px solid #e0e0e0;
    transition: all 0.15s ease-out;
    background-color: #ffffff;
    white-space: nowrap;
}

.fx-select ul._options li:hover,
.fx-select ul._options li.active {
    color: #000000;
    background-color: var(--c_yellow_light);
}

.fx-select ul._options li ._red {
    display: inline;
    color: #cc0000;
    font-weight: 700;
    font-size: 20px;
    vertical-align: top;
}

.fx-select ul._options li ._neutral {
    display: inline;
    color: inherit;
    font-weight: 700;
    font-size: 20px;
    vertical-align: top;
}

.fx-select ul._options li.hide-pseudocode ._red,
.fx-select ul._options li.hide-pseudocode ._neutral {
    display: none;
}

/* fx big switch
--------------------------------------------- */
.fx-big-switch {
    display: block;
    box-sizing: border-box;
    height: 80px;
    padding: 22px 0 22px;
    margin: 0;
}

.fx-big-switch ._bar {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 36px;
    padding: 0;
    margin: 0;
    position: relative;
}

.fx-big-switch ._bar ._stripe {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    border: 6px solid #ffffff;
    border-radius: 20px;
    transition: border-color 0.2s ease-out;
    position: relative;
}

.fx-big-switch ._bar ._dot {
    display: block;
    box-sizing: border-box;
    width: 80px;
    height: 80px;
    padding: 0;
    margin: 0;
    background-color: #ffffff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s ease-out;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5);
}

.fx-big-switch ._bar ._dot ._checked,
.fx-big-switch ._bar ._dot ._unchecked {
    display: block;
    box-sizing: border-box;
    line-height: 0;
    width: 50px;
    height: 50px;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: all 0.2s ease-out;
    user-select: none;
}

.fx-big-switch.checked ._bar ._dot ._checked {
    opacity: 1;
}
.fx-big-switch.unchecked ._bar ._dot ._checked {
    opacity: 0;
}

.fx-big-switch.checked ._bar ._dot ._unchecked {
    opacity: 0;
}
.fx-big-switch.unchecked ._bar ._dot ._unchecked {
    opacity: 1;
}

.fx-big-switch ._bar ._dot.checked ._checked {
    opacity: 1;
}
.fx-big-switch ._bar ._dot.unchecked ._checked {
    opacity: 0;
}

.fx-big-switch ._bar ._dot.checked ._unchecked {
    opacity: 0;
}
.fx-big-switch ._bar ._dot.unchecked ._unchecked {
    opacity: 1;
}

.fx-big-switch .image-checked,
.fx-big-switch .image-unchecked {
    display: none;
}

.fx-big-switch input {
    display: none;
}

.fx-big-switch ._stripe ._label-checked,
.fx-big-switch ._stripe ._label-unchecked {
    display: block;
    box-sizing: border-box;
    font-family: var(--f_asap);
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
    line-height: 100%;
    text-align: left;
    text-transform: uppercase;
    color: #000000;
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: -12px;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.2s ease-out;
    user-select: none;
    cursor: default;
}

.fx-big-switch.move ._stripe ._label-checked,
.fx-big-switch.move ._stripe ._label-unchecked {
    color: #c0c0c0;
}

.fx-big-switch.checked ._stripe ._label-checked {
    opacity: 1;
}

.fx-big-switch.unchecked ._stripe ._label-unchecked {
    opacity: 1;
}

.fx-big-switch ._stripe ._label-checked {
    right: 20px;
}

.fx-big-switch ._stripe ._label-unchecked {
    left: 20px;
}

/* basket select */
.fx-basket-select {
    display:block;
    box-sizing:border-box;
    height: 30px;
    padding:0;
    margin:0;
    cursor: pointer;
    position: relative;
}

.fx-basket-select ._cnt {
    display: block;
    box-sizing: border-box;
    height:30px;
    padding:0 32px 0 12px;
    margin:0;
    position: relative;
    border:1px solid #ccc;
    border-radius: 8px;    
}

.fx-basket-select.open ._cnt {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.fx-basket-select ._cnt:after {
    content:'';
    display: block;
    box-sizing: border-box;
	width:20px;
    height:20px;
    padding: 0;
    margin: 0;
	position:absolute;
	right:6px;
    top:50%;
    transform: translateY(-50%);
	transition:all 0.2s ease-out;
    z-index:14;
    background-color:transparent;
    background-image:url('/images/svg/fx/fx_basket_select/arrow_down.svg');
    background-repeat:no-repeat;
    background-position:center center;
    background-size:14px 14px;
    user-select: none;
}

.fx-basket-select.open ._cnt:after {
    transform: translateY(-50%) scaleY(-1);
}

.fx-basket-select ._cnt ._text {
    display: block;
    box-sizing: border-box;
    font-family: var(--f_lato);
    font-size:13px;
    font-weight: 400;
    line-height: 28px;
    text-overflow: ellipsis;
    white-space: nowrap;
    color:#404040;
    padding:0;
    margin:0;
    overflow: hidden;
    user-select: none;
}

.fx-basket-select ._wrap-list {
    display: none;
    box-sizing: border-box;
    width:100%;
    padding: 0;
    margin: 0;
    position: absolute;
    left:0;
    bottom:0;
    transform: translateY(100%);
    z-index: 16;
    border:1px solid #ccc;
    border-top:none;
    border-radius: 8px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    overflow: hidden;    
}

.fx-basket-select.open ._wrap-list {
    display: block;
}

.fx-basket-select ul {
    display:none;
}

.fx-basket-select ul._list {
    display:block;
    box-sizing:border-box;
    width:100%;    
    padding:0;
    margin:0;
    list-style-type: none;    
}

.fx-basket-select ul._list.limit-height {    
    max-height: 240px;
    overflow-y: scroll;
}

.fx-basket-select ul._list::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
 
.fx-basket-select ul._list::-webkit-scrollbar-track {
    background: #f2f2f2;
}

.fx-basket-select ul._list::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background: #ddd;
}

.fx-basket-select ul._list li {
    display: block;
    box-sizing: border-box;
    height:30px;
    font-family: var(--f_lato);
    font-size:13px;
    font-weight: 400;
    line-height: 28px;
    text-overflow: ellipsis;
    white-space: nowrap;    
    color:#404040;
    padding:0 12px 0 12px;
    margin: 0;
    background-color: #fff;
    transition: all 0.2s ease-out;
    overflow: hidden;
}

.fx-basket-select ul._list li:hover {
    background-color: #f2f2f2;
}

.fx-basket-select ul._list li.active {
    font-weight:700;
    color:#000;
    background-color: #f2f2f2;
}

/* basket checkbox */
.fx-basket-checkbox {
    display:block;
    box-sizing:border-box;
    padding:0;
    margin:0;
}

.fx-basket-checkbox ul {
    display:none;
}

.fx-basket-checkbox ul._list {
    display:block;
    box-sizing:border-box;
    width:100%;    
    padding:0;
    margin:0;
    list-style-type: none;    
}

.fx-basket-checkbox ul._list li {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    box-sizing: border-box;
    font-family: var(--f_lato);
    font-size:13px;
    font-weight: 400;
    line-height: 20px;
    text-overflow: ellipsis;
    white-space: normal;    
    color:#404040;
    padding: 0;
    margin: 0 0 14px 0;
    background-color: #fff;
    transition: all 0.2s ease-out;
    cursor: pointer;
}

.fx-basket-checkbox ul._list li:last-child {
    margin:0;
}

.fx-basket-checkbox ul._list li:hover {
    color:#000;
}

.fx-basket-checkbox ul._list li ._icon {
    flex-grow: 0;
    flex-shrink: 0;
    display:block;
    box-sizing:border-box;
    width:20px;
    height:20px;
    padding:0;
    margin:0 8px 0 0;
    border:1px solid #ccc;
    border-radius: 4px;
    position: relative;
    user-select: none;
    transition: all 0.2s ease-out;
}

.fx-basket-checkbox ul._list li.checked ._icon,
.fx-basket-checkbox ul._list li:hover ._icon {
    border:1px solid #606060;
    background-color:var(--c_yellow);
}

.fx-basket-checkbox ul._list li ._icon:after {
    content: '';
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    background-color:transparent;
    background-image:url('/images/svg/fx/fx_basket_checkbox/checked.svg');
    background-repeat:no-repeat;
    background-position:center center;
    background-size:12px 12px;
    opacity: 0.0;
    transition: all 0.2s ease-out;
}

.fx-basket-checkbox ul._list li.checked ._icon:after {
    opacity: 1.0;
}

.fx-basket-checkbox ul._list li ._text {
    flex-grow: 1;
    flex-shrink: 1;    
    display:block;
    box-sizing:border-box;    
    padding:0;
    margin:0;
    user-select: none;
}

.fx-basket-checkbox ul._list li .image {
    display: none;
}

.fx-basket-checkbox ul._list li ._image {
    display: block;
    box-sizing: border-box;
    width:20px;
    height:20px;
    padding: 0;
    margin: 0;
    position: relative;
}

.fx-basket-checkbox ul._list li ._image svg {
    display: block;
    box-sizing: border-box;
    width:26px;
    height:26px;
    padding: 0;
    margin: 0;
    position: absolute;
    left:-3px;
    top:-3px;
    pointer-events: none;
}

.fx-basket-checkbox ul._list li[data-value="gill"] ._image svg {
    width:28px;
    height:28px;
    left:-4px;
    top:-4px;
}

.fx-basket-checkbox ul._list li[data-value="galileo"] ._image svg,
.fx-basket-checkbox ul._list li[data-value="siris"] ._image svg {
    width:30px;
    height:30px;
    left:-5px;
    top:-5px;
}

.fx-basket-checkbox ul._list li[data-value="marita"] ._image svg {
    width:32px;
    height:32px;
    left:-6px;
    top:-6px;
}

/* basket range */
.fx-basket-range {
    display:block;
    box-sizing:border-box;
    padding:0;
    margin:0;
}

.fx-basket-range ._cnt {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.fx-basket-range ._cnt ._controls {
    flex-grow:1;
    flex-shrink:1;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.fx-basket-range ._cnt ._controls ._separator {
    flex-grow:0;
    flex-shrink:0;
    display: block;
    box-sizing: border-box;
    width: 40px;
    height: 30px;    
    font-size:16px;
    font-weight: 400;
    line-height:30px;
    text-align: center;
    color:#808080;
    padding: 0;
    margin: 0;    
}

.fx-basket-range ._cnt ._controls ._separator ._text {
    display: inline;
}

.fx-basket-range ._cnt ._controls ._from {
    flex-grow:1;
    flex-shrink:1;
    display: block;
    box-sizing: border-box;
    text-align: center;
    padding: 0;
    margin: 0;
}

.fx-basket-range ._cnt ._controls ._to {
    flex-grow:1;
    flex-shrink:1;
    display: block;
    box-sizing: border-box;
    text-align: center;
    padding: 0;
    margin: 0;
}

.fx-basket-range input {
    display: block;
    box-sizing: border-box;
    height:30px;
    width:100%;
    font-family: var(--f_roboto);
    font-size:14px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
    color:#404040;
    padding: 0;
    margin:0 auto;
    border:1px solid #ccc;
    border-radius:8px;
    outline:none;
    background-color: #fff;
}

.fx-basket-range input:focus {
    background-color: #fff;
}

/* lightbox */
.fx-lightbox-bg {
    display: none;
    box-sizing: border-box;
    width: 100vw;
    height: 100vh;
    padding: 0;
    margin: 0;
    background-color: rgba(0,0,0,0.65);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 4000;
}

.fx-lightbox-core {
    display: none;
    box-sizing: border-box;
    width: 88vw;
    height: 82vh;
    padding: 50px 100px 50px 100px;
    margin: 0;
    background-color: #fff;
    position: fixed;
    left: 6vw;
    top: 10vh;
    z-index: 4008;
    border-radius: 12px;
    transition: transform 0.2s ease-out;
}

.fx-lightbox-core .btn-close {
    display: block;
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    padding: 0;
    margin: 0;
    position: absolute;
    right: 6px;
    top: 6px;
    background-color: transparent;
    background-image:url('/images/svg/fx/fx_lightbox/close.svg');
    background-repeat:no-repeat;
    background-position:center center;
    background-size: 80% 80%;
    opacity: 0.6;
    transition: all 0.2s ease-out;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.fx-lightbox-core .btn-close.touch,
.notouch .fx-lightbox-core .btn-close:hover {
    opacity: 1.0;
}

.fx-lightbox-core .btn-prev {
    display: block;
    box-sizing: border-box;
    width: 60px;
    height: 60px;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all 0.2s ease-out;
    background-color: transparent;
    background-image:url('/images/svg/fx/fx_lightbox/prev_desktop.svg');
    background-repeat:no-repeat;
    background-position:center center;
    background-size: 80% 80%;
    -webkit-tap-highlight-color: transparent;
    filter: drop-shadow(0px 0px 4px rgba(0,0,0,0.0));
    opacity: 0.9;
}

.fx-lightbox-core .btn-prev.touch,
.notouch .fx-lightbox-core .btn-prev:hover {
    filter: drop-shadow(0px 0px 4px rgba(0,0,0,0.3));
    opacity: 1.0;
}

.fx-lightbox-core .btn-next {
    display: block;
    box-sizing: border-box;
    width: 60px;
    height: 60px;
    padding: 0;
    margin: 0;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all 0.2s ease-out;
    background-color: transparent;
    background-image:url('/images/svg/fx/fx_lightbox/next_desktop.svg');
    background-repeat:no-repeat;
    background-position:center center;
    background-size: 80% 80%;
    -webkit-tap-highlight-color: transparent;
    filter: drop-shadow(0px 0px 4px rgba(0,0,0,0.0));
    opacity: 0.9;
}

.fx-lightbox-core .btn-next.touch,
.notouch .fx-lightbox-core .btn-next:hover {
    filter: drop-shadow(0px 0px 4px rgba(0,0,0,0.3));
    opacity: 1.0;
}

.fx-lightbox-core .wrap-slider {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 0 0 110px 0;
    margin: 0;
}

.fx-lightbox-core .wrap-slider .slider {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}

.fx-lightbox-core .wrap-slider .slider .clipper {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.fx-lightbox-core .wrap-slider .slider .slide {
    display: none;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
}

.fx-lightbox-core .wrap-slider .slider .slide .loader {
    display: block;
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    padding: 0;
    margin: 0;
    background-image:url('/images/svg/fx/fx_lightbox/loader.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 24;
  }

.fx-lightbox-core .wrap-slider .slider .slide .image {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    line-height:0;
    padding: 0;
    margin:0;
    position: relative;
    z-index: 8;
    user-select: none;
  }
  
  .fx-lightbox-core .wrap-slider .slider .slide .image .normal {
    display: none;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    line-height: 0;
  }
  
  .fx-lightbox-core .wrap-slider .slider .slide .image .normal.display {
    display: flex;
  }
  
  .fx-lightbox-core .wrap-slider .slider .slide .image .normal img {
    display: inline-block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
  }

.fx-lightbox-core .wrap-slider .slider .nav {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 60px;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 0;
    bottom: -50px;
    transform: translateY(100%);
    overflow: hidden;
}

.fx-lightbox-core .wrap-slider .slider .nav .holder {
    display: block;
    box-sizing: border-box;
    height: 100%;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
}

.fx-lightbox-core .wrap-slider .slider .nav .holder .item {
    display: block;
    box-sizing: border-box;
    width: 60px;
    height: 60px;
    line-height: 0;
    padding: 0;
    margin: 0 15px 0 0;
    position: absolute;
    left: 0;
    top: 0;
    transition: filter 0.2s ease-out, box-shadow 0.2s ease-out;
    filter: grayscale(1.0);
    cursor: pointer;
    user-select: none;
    overflow: hidden;
}

.fx-lightbox-core .wrap-slider .slider .nav .holder .item.active,
.fx-lightbox-core .wrap-slider .slider .nav .holder .item:hover {
    filter: grayscale(0.0);
}

.fx-lightbox-core .wrap-slider .slider .nav .holder .item img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width: 1280px) {

    .fx-lightbox-core {
        padding: 50px 70px 50px 70px;
    }

    .fx-lightbox-core .btn-prev {
        width: 50px;
        height: 50px;
        left: 10px;
    }

    .fx-lightbox-core .btn-next {
        width: 50px;
        height: 50px;
        right: 10px;
    }
}

@media only screen and (max-width: 960px) {

    .fx-lightbox-core {
        padding: 50px 50px 50px 50px;
    }

    .fx-lightbox-core .btn-prev {
        left: 0;
    }

    .fx-lightbox-core .btn-next {
        right: 0;
    }
}

@media only screen and (max-width: 768px) {

    .fx-lightbox-core {
        padding: 50px 40px 20px 40px;
    }

    .fx-lightbox-core .btn-prev {
        width: 40px;
        height: 40px;
    }

    .fx-lightbox-core .btn-next {
        width: 40px;
        height: 40px;
    }

    .fx-lightbox-core .wrap-slider {
        padding: 0 0 70px 0;
    }

    .fx-lightbox-core .wrap-slider .slider .nav {
        height: 50px;
        bottom: -20px;
    }

    .fx-lightbox-core .wrap-slider .slider .nav .holder .item {
        width: 50px;
        height: 50px;
        margin: 0 10px 0 0;
    }
}

@media only screen and (max-width: 360px) {

    .fx-lightbox-core {
        padding: 50px 30px 20px 30px;
    }

    .fx-lightbox-core .btn-prev {
        width: 30px;
        height: 30px;
    }

    .fx-lightbox-core .btn-next {
        width: 30px;
        height: 30px;
    }
}