/* This is the core CSS of Tooltipster */
/* GENERAL STRUCTURE RULES (do not edit this section) */
/* line 5, ../../scss/_tooltipster.scss */
.tooltipster-base {
    /* this ensures that a constrained height set by functionPosition,
    if greater that the natural height of the tooltip, will be enforced
    in browsers that support display:flex */
    display: flex;
    pointer-events: none;
    /* this may be overriden in JS for fixed position origins */
    position: absolute;
}

/* line 15, ../../scss/_tooltipster.scss */
.tooltipster-box {
    /* see .tooltipster-base. flex-shrink 1 is only necessary for IE10-
    and flex-basis auto for IE11- (at least) */
    flex: 1 1 auto;
}

/* line 21, ../../scss/_tooltipster.scss */
.tooltipster-content {
    /* prevents an overflow if the user adds padding to the div */
    box-sizing: border-box;
    /* these make sure we'll be able to detect any overflow */
    max-height: 100%;
    max-width: 100%;
    overflow: auto;
}

/* line 30, ../../scss/_tooltipster.scss */
.tooltipster-ruler {
    /* these let us test the size of the tooltip without overflowing the window */
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden;
}

/* ANIMATIONS */
/* Open/close animations */
/* fade */
/* line 47, ../../scss/_tooltipster.scss */
.tooltipster-fade {
    opacity: 0;
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    -ms-transition-property: opacity;
    transition-property: opacity;
}

/* line 55, ../../scss/_tooltipster.scss */
.tooltipster-fade.tooltipster-show {
    opacity: 1;
}

/* grow */
/* line 61, ../../scss/_tooltipster.scss */
.tooltipster-grow {
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
    -webkit-backface-visibility: hidden;
}

/* line 74, ../../scss/_tooltipster.scss */
.tooltipster-grow.tooltipster-show {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

/* swing */
/* line 90, ../../scss/_tooltipster.scss */
.tooltipster-swing {
    opacity: 0;
    -webkit-transform: rotateZ(4deg);
    -moz-transform: rotateZ(4deg);
    -o-transform: rotateZ(4deg);
    -ms-transform: rotateZ(4deg);
    transform: rotateZ(4deg);
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
}

/* line 103, ../../scss/_tooltipster.scss */
.tooltipster-swing.tooltipster-show {
    opacity: 1;
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
    -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 1);
    -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
    -moz-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
    -ms-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
    -o-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
    transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
}

/* fall */
/* line 120, ../../scss/_tooltipster.scss */
.tooltipster-fall {
    -webkit-transition-property: top;
    -moz-transition-property: top;
    -o-transition-property: top;
    -ms-transition-property: top;
    transition-property: top;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

/* line 133, ../../scss/_tooltipster.scss */
.tooltipster-fall.tooltipster-initial {
    top: 0 !important;
}

/* line 138, ../../scss/_tooltipster.scss */
.tooltipster-fall.tooltipster-dying {
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    -ms-transition-property: all;
    transition-property: all;
    top: 0 !important;
    opacity: 0;
}

/* slide */
/* line 150, ../../scss/_tooltipster.scss */
.tooltipster-slide {
    -webkit-transition-property: left;
    -moz-transition-property: left;
    -o-transition-property: left;
    -ms-transition-property: left;
    transition-property: left;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

/* line 163, ../../scss/_tooltipster.scss */
.tooltipster-slide.tooltipster-initial {
    left: -40px !important;
}

/* line 168, ../../scss/_tooltipster.scss */
.tooltipster-slide.tooltipster-dying {
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    -ms-transition-property: all;
    transition-property: all;
    left: 0 !important;
    opacity: 0;
}

#top-logo{
    left: 0;
    top: 0;
    height: 90px;
    position: fixed;
    z-index: 1;
}

/* Update animations */
/* We use animations rather than transitions here because
 transition durations may be specified in the style tag due to
 animationDuration, and we try to avoid collisions and the use
 of !important */
/* fade */
@keyframes tooltipster-fading {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/* line 196, ../../scss/_tooltipster.scss */
.tooltipster-update-fade {
    animation: tooltipster-fading 400ms;
}

/* rotate */
@keyframes tooltipster-rotating {
    25% {
        transform: rotate(-2deg);
    }
    75% {
        transform: rotate(2deg);
    }
    100% {
        transform: rotate(0);
    }
}
/* line 214, ../../scss/_tooltipster.scss */
.tooltipster-update-rotate {
    animation: tooltipster-rotating 600ms;
}

/* scale */
@keyframes tooltipster-scaling {
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
/* line 229, ../../scss/_tooltipster.scss */
.tooltipster-update-scale {
    animation: tooltipster-scaling 600ms;
}

/**
 * DEFAULT STYLE OF THE SIDETIP PLUGIN
 *
 * All styles are "namespaced" with .tooltipster-sidetip to prevent
 * conflicts between plugins.
 */
/* .tooltipster-box */
/* line 242, ../../scss/_tooltipster.scss */
.tooltipster-sidetip .tooltipster-box {
    background: #565656;
    border: 2px solid black;
    border-radius: 4px;
}

/* line 248, ../../scss/_tooltipster.scss */
.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
    margin-top: 8px;
}

/* line 252, ../../scss/_tooltipster.scss */
.tooltipster-sidetip.tooltipster-left .tooltipster-box {
    margin-right: 8px;
}

/* line 256, ../../scss/_tooltipster.scss */
.tooltipster-sidetip.tooltipster-right .tooltipster-box {
    margin-left: 8px;
}

/* line 260, ../../scss/_tooltipster.scss */
.tooltipster-sidetip.tooltipster-top .tooltipster-box {
    margin-bottom: 8px;
}

/* .tooltipster-content */
/* line 266, ../../scss/_tooltipster.scss */
.tooltipster-sidetip .tooltipster-content {
    color: white;
    line-height: 18px;
    padding: 6px 5px;
}

/* .tooltipster-arrow : will keep only the zone of .tooltipster-arrow-uncropped that
corresponds to the arrow we want to display */
/* line 275, ../../scss/_tooltipster.scss */
.tooltipster-sidetip .tooltipster-arrow {
    overflow: hidden;
    position: absolute;
}

/* line 280, ../../scss/_tooltipster.scss */
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
    height: 10px;
    /* half the width, for centering */
    margin-left: -10px;
    top: 0;
    width: 20px;
}

/* line 288, ../../scss/_tooltipster.scss */
.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
    height: 20px;
    margin-top: -10px;
    right: 0;
    /* top 0 to keep the arrow from overflowing .tooltipster-base when it has not
    been positioned yet */
    top: 0;
    width: 10px;
}

/* line 298, ../../scss/_tooltipster.scss */
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
    height: 20px;
    margin-top: -10px;
    left: 0;
    /* same as .tooltipster-left .tooltipster-arrow */
    top: 0;
    width: 10px;
}

/* line 307, ../../scss/_tooltipster.scss */
.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
    bottom: 0;
    height: 10px;
    margin-left: -10px;
    width: 20px;
}

/* common rules between .tooltipster-arrow-background and .tooltipster-arrow-border */
/* line 316, ../../scss/_tooltipster.scss */
.tooltipster-sidetip .tooltipster-arrow-background, .tooltipster-sidetip .tooltipster-arrow-border {
    height: 0;
    position: absolute;
    width: 0;
}

/* .tooltipster-arrow-background */
/* line 324, ../../scss/_tooltipster.scss */
.tooltipster-sidetip .tooltipster-arrow-background {
    border: 0px solid transparent;
}

/* line 328, ../../scss/_tooltipster.scss */
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
    border-bottom-color: #565656;
    left: 0px;
    top: 3px;
}

/* line 334, ../../scss/_tooltipster.scss */
.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
    border-left-color: #565656;
    left: -3px;
    top: 0px;
}

/* line 340, ../../scss/_tooltipster.scss */
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
    border-right-color: #565656;
    left: 3px;
    top: 0px;
}

/* line 346, ../../scss/_tooltipster.scss */
.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
    border-top-color: #565656;
    left: 0px;
    top: -3px;
}

/* .tooltipster-arrow-border */
/* line 354, ../../scss/_tooltipster.scss */
.tooltipster-sidetip .tooltipster-arrow-border {
    border: 10px solid transparent;
    left: 0;
    top: 0;
}

/* line 360, ../../scss/_tooltipster.scss */
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
    border-bottom-color: black;
}

/* line 364, ../../scss/_tooltipster.scss */
.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
    border-left-color: black;
}

/* line 368, ../../scss/_tooltipster.scss */
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
    border-right-color: black;
}

/* line 372, ../../scss/_tooltipster.scss */
.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
    border-top-color: black;
}

/* tooltipster-arrow-uncropped */
/* line 378, ../../scss/_tooltipster.scss */
.tooltipster-sidetip .tooltipster-arrow-uncropped {
    position: relative;
}

/* line 382, ../../scss/_tooltipster.scss */
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
    top: -10px;
}

/* line 386, ../../scss/_tooltipster.scss */
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
    left: -10px;
}

/* line 1, ../../scss/_tooltipster-sideTip-punk.scss */
.tooltipster-sidetip.tooltipster-punk .tooltipster-box {
    border-radius: 5px;
    border: none;
    border-bottom: 3px solid #ff2402;
    background: #2a2a2a;
}

/* line 8, ../../scss/_tooltipster-sideTip-punk.scss */
.tooltipster-sidetip.tooltipster-punk.tooltipster-top .tooltipster-box {
    margin-bottom: 7px;
}

/* line 12, ../../scss/_tooltipster-sideTip-punk.scss */
.tooltipster-sidetip.tooltipster-punk .tooltipster-content {
    color: #fff;
    padding: 5px 5px;
}
/* line 16, ../../scss/_tooltipster-sideTip-punk.scss */
.tooltipster-sidetip.tooltipster-punk .tooltipster-content p {
    margin-top: 5px;
    margin-bottom: 5px;
}

/* line 22, ../../scss/_tooltipster-sideTip-punk.scss */
.tooltipster-sidetip.tooltipster-punk .tooltipster-arrow-background {
    display: none;
}

/* line 26, ../../scss/_tooltipster-sideTip-punk.scss */
.tooltipster-sidetip.tooltipster-punk.tooltipster-bottom .tooltipster-arrow-border {
    border-bottom-color: #2a2a2a;
}

/* line 30, ../../scss/_tooltipster-sideTip-punk.scss */
.tooltipster-sidetip.tooltipster-punk.tooltipster-left .tooltipster-arrow-border {
    border-left-color: #2a2a2a;
}

/* line 34, ../../scss/_tooltipster-sideTip-punk.scss */
.tooltipster-sidetip.tooltipster-punk.tooltipster-right .tooltipster-arrow-border {
    border-right-color: #2a2a2a;
}

/* line 38, ../../scss/_tooltipster-sideTip-punk.scss */
.tooltipster-sidetip.tooltipster-punk.tooltipster-top .tooltipster-arrow-border {
    border-top-color: #ff2402;
}

/* line 21, ../../scss/main.scss */
body .threesixty-wrapper {
    margin: 0px auto;
    width: auto;
    max-width: 100%;
    height: 100%;
    position: relative;
    transition: all ease .4s;
    background: #3f3f3f;
    overflow-x: hidden;
}

body .threesixty-wrapper .drag_wrapper,
body .threesixty-wrapper .zoom_wrapper{
    position : relative;
    height : 100%;
    width : 100%;
    top : 0;
    left : 0;
}

body .threesixty-wrapper .zoom_wrapper{
    overflow: hidden;
}

body .threesixty-wrapper .drag_wrapper{
    transition: transform ease .4s;
    transform-origin: center center;
}

/* line 27, ../../scss/main.scss */
body .threesixty-wrapper .threesixty {
    display: block;
    width: 100%;
    height: auto;
}
/* line 32, ../../scss/main.scss */
body .threesixty-wrapper .threesixty .ui-spinner {
    margin: 270px auto;
}
/* line 37, ../../scss/main.scss */
body .threesixty-wrapper .label {
    margin: 20px auto;
    display: block;
}

/* line 44, ../../scss/main.scss */
.threesixty-wrapper .threesixty {
    cursor: ew-resize;
}

.threesixty-wrapper .threesixty.zoom_active{
    cursor: move;
}

/* line 48, ../../scss/main.scss */
.threesixty-wrapper,
.threesixty,
.threesixty img {
    max-width: 100%;
    position: relative;
}

/* line 55, ../../scss/main.scss */
.threesixty img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    display: block !important;
}

/* line 66, ../../scss/main.scss */
.threesixty-wrapper .threesixty {
    overflow: hidden;
}
/* line 68, ../../scss/main.scss */
.threesixty-wrapper .threesixty img.active {
    transition: transform .5s ease-out;
}
/* line 72, ../../scss/main.scss */
.threesixty-wrapper .zoom {
    position: absolute;
    top: 105px;
    right: 17px;
    padding: 4px 7px;
    z-index: 998;
    cursor: pointer;
    background: rgba(255, 255, 255, .7);
    font-size: 18px;
    opacity : .7;
//display : none;
}
/* line 80, ../../scss/main.scss */
.threesixty-wrapper .zoom .moins {
    display: none;
}
/* line 83, ../../scss/main.scss */
.threesixty-wrapper .zoom:hover {
    background: rgba(255, 255, 255, 1);
    o1
}
/* line 90, ../../scss/main.scss */
.threesixty-wrapper.zoom1 .threesixty img {
    transform: scale(2.5);
}
/* line 94, ../../scss/main.scss */
.threesixty-wrapper.zoom1 .hotspots,
.threesixty-wrapper.zoom1 .hotspots_points {
    display: none !important;
}
/* line 99, ../../scss/main.scss */
.threesixty-wrapper.zoom1 .zoom .plus {
    display: none;
}
/* line 102, ../../scss/main.scss */
.threesixty-wrapper.zoom1 .zoom .moins {
    display: inline;
}

/* line 109, ../../scss/main.scss */
.threesixty img.active {
    opacity: 1;
}

/* line 113, ../../scss/main.scss */
.threesixty img:first-child {
    position: relative;
}

/* line 117, ../../scss/main.scss */
.hotspots {
    position: absolute;
    top: 150px;
    right: 0;
    padding: 5px;
    width: 80px;
    display: none;
    transition: all .4s;
//opacity: .5;
    height: calc(100% - 155px);
    overflow: auto;
//box-shadow: 1px 1px 8px #737373;
    background: rgba(0,0,0,.1);
}
/* line 127, ../../scss/main.scss */
.hotspots:hover {
    opacity: 1;
}

/* line 132, ../../scss/main.scss */
.hotspots img {
    margin-bottom: 5px;
    display: block;
    width: 100%;
    cursor: pointer;
//border-radius: 5px;
    border: 3px solid #333;
//transition: all .3s;
}

/* line 140, ../../scss/main.scss */
.hotspots img:hover {
    opacity: .8;
    border-color: rgba(255,255,255,.1);
//border: none;
}
.hotspots_points .spot_point span.titre {
    position: absolute;
    background: #333;
    color: #FFF;
    border-radius: 5px;
    font-size: 12px;
    top: -25px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    padding: 0px 10px;
}

.hotspots_points .spot_point .infos {
    background: #222;
    color: #FFF;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    z-index: 999;
    padding: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.9);
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.9);
    height: 0;
    width: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: opacity .5s;
    transition: opacity .5s;

}

.hotspots_points .spot_point .infos img {
    width: 200px;
    margin-bottom: 3px;
}

.hotspots_points .spot_point .infos p {
    margin-bottom: 0;
    font-size: 12px;
}

.hotspots_points .spot_point .infos .edit {
    position: absolute;
    width: 24px;
    height: 24px;
    bottom: 2px;
    right: 6px;
    background: #FFF;
    border-radius: 30px;
    line-height: 25px;
    color: #333;
    font-size: 12px;
    -webkit-box-shadow: 1px 1px 3px #333;
    box-shadow: 1px 1px 3px #333;
    text-align: center;
    cursor: pointer;
}

.hotspots_points .spot_point .infos .edit:hover {
    background: #f00;
    color: #FFF;
}

.hotspots_points .spot_point:hover .infos {
    width: 300px;
    height: 300px;
    opacity: 1;
}

.hotspots_points .spot_point .infos .titre {
    position: absolute;
    background: #333;
    color: #FFF;
    border-radius: 5px;
    font-size: 12px;
    bottom: 0;
    width: 100%;
    padding: 10px;
    left: 0;
    -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    display : none;
}

.hotspots_points .spot_point:hover .titre{
    display : block;
}

.hotspots_points .spot_point .infos .glyphicon{
    position : absolute;
    top : 50%;
    left : 50%;
    transform: translateY(-50%) translateX(-50%);
    font-size : 40px;
    opacity: 0.5;
}

.hotspots_points .spot_point .infos {
    background: #222;
    color: #FFF;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    z-index: 999;
    padding: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.9);
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.9);
    height: 0;
    width: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
}

.hotspots_points .spot_point .infos img {
    width: 200px;
    margin-bottom: 3px;
    transform: scale(4);
    transform-origin: 56% 34%;
}


.hotspots_points .spot_point .infos p {
    margin-bottom: 0;
    font-size: 12px;
}

.hotspots_points .spot_point .infos .edit {
    position: absolute;
    width: 24px;
    height: 24px;
    bottom: 2px;
    right: 6px;
    background: #FFF;
    border-radius: 30px;
    line-height: 25px;
    color: #333;
    font-size: 12px;
    -webkit-box-shadow: 1px 1px 3px #333;
    box-shadow: 1px 1px 3px #333;
    text-align: center;
    cursor: pointer;
}

.hotspots_points .spot_point {
    position: absolute;
    height: 25px;
    width: 25px;
    border-radius: 30px;
    padding-top: 3px;
    border: 0px solid red;
    top: 0;
    left: 0;
    background: #f9d900;
    color: #fff;
    cursor: pointer;
    -webkit-box-shadow: 1px 1px 12px #000;
    box-shadow: 1px 1px 12px #000;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: none;
}

.hotspots_points .spot_point.pouce {
    background: #67aa13;
    padding-top: 4px;
}

.hotspots_points .spot_point .glyphicon-thumbs-up {
    display: none;
}

.hotspots_points .spot_point .glyphicon-warning-sign {
    display: block;
}

.hotspots_points .spot_point.pouce .glyphicon-thumbs-up {
    display: block;
}

.hotspots_points .spot_point.pouce .glyphicon-warning-sign {
    display: none;
}

/* line 158, ../../scss/main.scss */
#tolltipContentWrapper {
    display: none;
}

#player_carlab_zoom_modale{
    position : fixed;
    top : 0;
    left : 0;
    width : 100%;
    height : 100%;
    background: rgba(0,0,0,0.9);
    opacity: 0;
    z-index : 10000;
    height : 0;
    overflow : hidden;
//transform: translateY(-50px);
    transition: transform .5s, opacity .5s;
}

#player_carlab_zoom_modale .close{
    position : absolute;
    top : 10px;
    right : 10px;
    color: white;
    text-shadow: 1px 1px 1px #333;
    background: #000;
    border-radius: 100px;
    cursor: pointer;
    opacity : 1;
    font-size : 30px;
    height: 31px;
    width: 30px;
    z-index : 99;
}

#player_carlab_zoom_modale.active{
    opacity : 1;
    transform: translateY(0px);
    height : 100%;
}

#player_carlab_zoom_modale img{
    display : block;
    height : auto;
    width: auto;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}


#hotpot_preview_modal.active{
    opacity: 1;
    background: #000000c7;
    transform: none;
    display: block;
}

#hotpot_preview_modal .modal-body{
    padding : 0;
}

#hotpot_preview_modal .modal-dialog{
    transform: none;
    width: 652px;
    max-width: 100%;
}

/************************************************************************************************/
/* EDIT TOOLS */
/************************************************************************************************/

#hotspots_edit_tools {
    position: fixed;
    top: 0px;
    right: 0;
    height: auto;
    width: 455px;
    z-index: 10001;
    color: #FFF;
}

#hotspots_edit_tools_menu {
    text-align: left;
    overflow: hidden;
    height: 106px;
}

#hotspots_edit_tools_menu .btn {
    margin: 0px;
    display: block;
    float: left;
    border-radius: 0;
    background-color: rgba(0,0,0,0.75);
    border-right: 1px solid #ffffff;
    height: 90px;
    width : 90px;
    z-index: 1;
    padding : 0;
    text-align: center;
    transition: all ease .2s;
    position: relative;
}

#hotspots_edit_tools_menu .btn.disabled,
#hotspots_edit_tools_menu .btn.disabled:hover{
    cursor: default;
    background: #797979;
}

#hotspots_edit_tools_menu .btn.disabled img{
    opacity: 0.6;
}

#hotspots_edit_tools_menu .btn.disabled:hover:after{
    display : none;
}

.btn-pin {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    font-size: 13px;
    line-height: 25px;
    position: absolute;
    bottom: 10%;
    right: 10%;
    box-shadow: 0px 0px 0px 2px rgba(51,51,51,0.1);
}

#btn-negative .btn-pin {
    color: #000000;
    background-color: #ffdd00;
}

#btn-positive .btn-pin {
    color: #ffffff;
    background-color: #68aa13;
}

#hotspots_edit_tools_menu .btn img{
    height: 100%;
    width: auto;
}

#hotspots_edit_tools_menu .btn.active,
#hotspots_edit_tools_menu .btn.hover,
#hotspots_edit_tools_menu .btn:hover{
    background: #68aa13;
}

#hotspots_edit_tools_menu .btn.hover:after {
    border-top: 15px solid #68aa13;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -15px;
    width: 0;
    height: 0;
    margin: auto;
}

#defects_list, #highlights_list {
    display: none;
    position: absolute;
    top: 110px;
    left: 0;
    min-width: 450px;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    border-radius: 10px;
    overflow: hidden;
}

#highlights_list{
    left : -90px;
}

#defects_list.active, #highlights_list.active{
    display : block;
}

#defects_list .titre, #highlights_list .titre{
    color: #ffffff;
    background-color: #333333;
    height: 50px;
    line-height: 50px;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}

#defects_list .hotspots_list_item, #highlights_list .hotspots_list_item {
    border-top: 1px solid #EEE;
    padding: 8px 10px 8px 13px;
    font-size: 13px;
    font-weight: 200;
    text-align: left;
    cursor: pointer;
    background: #FFF;
    color: #3a3a3a;
}

#defects_list .hotspots_list_item:hover, #highlights_list .hotspots_list_item:hover{
    background: #F2F2F2;
}

#defects_list .hotspots_list_item span.text, #highlights_list .hotspots_list_item span.text{
    font-weight: 700;
    color: #000;
    font-size : 16px;
    height : 45px;
    line-height : 45px;
    vertical-align: middle;
}

#defects_list .hotspots_list_item span.num, #highlights_list .hotspots_list_item span.num {
    color: #999999;
    font-size : 18px;
    margin: 0px 15px;
    text-align: center;
    font-family : "Roboto Condensed", sans-serif;
    line-height: 50px;
    font-size: 18px;
    height : 45px;
    line-height : 45px;
    vertical-align: middle;
}

#defects_list .hotspots_list_item.active, #highlights_list .hotspots_list_item.active {
    background: #68aa13;
    color: #FFF;
    border-top: 1px solid #696969;
}

#defects_list .hotspots_list_item.active span.num, #highlights_list .hotspots_list_item.active span.num,
#defects_list .hotspots_list_item.active span.text, #highlights_list .hotspots_list_item.active span.text{
    color: #FFF;
}

#defects_list .hotspots_list_item.active img{
    -webkit-filter: saturate(0%) brightness(250%);
    filter: saturate(0%) brightness(250%);
}

#defects_list .hotspots_list_item.active span.num, #highlights_list .hotspots_list_item.active span.num{
    color: #FFF;
}

.hotspots_list_item .glyphicon-thumbs-up{
    color: #67aa13;
}

.hotspots_list_item .glyphicon-warning-sign{
    color: #ffde01;
}

/************************************************************************************************/
/* ZOOM SLIDER */
/************************************************************************************************/

#modale_zoom_slider,
#highlights_modale_zoom_slider,
#defects_modale_zoom_slider{
    position: fixed;
    z-index: 10;
    bottom: 0;
    right: 0;
    background-color: rgba(51,51,51,0.1);
    padding: 15px 20px;
    z-index : 100;
    width : 350px;
}

#highlights_modale_zoom_slider,
#defects_modale_zoom_slider{
    z-index : 10000;
//display : none;
}

#modale_zoom_slider img,
#highlights_modale_zoom_slider img,
#defects_modale_zoom_slider img{
    display : block;
    float : left;
    cursor: pointer;
    width : 47px;
    position: relative;
}

#modale_zoom_slider img.plus,
#highlights_modale_zoom_slider img.plus,
#defects_modale_zoom_slider img.plus{
    margin-left : -2px;
}

#modale_zoom_slider input,
#highlights_modale_zoom_slider input,
#defects_modale_zoom_slider input{
    width: calc(100% - 92px);
    float : left;
    margin-top : 20px;
}

/************************************************************************************************/
/* NEXT PREV BUTTONS */
/************************************************************************************************/

#hotspot_modale_previous_frame,
#hotspot_modale_next_frame,
#highlights_modale_previous_frame,
#highlights_modale_next_frame {
    position: fixed;
    top: 50%;
    left: 0px;
    width: 90px;
    height: 90px;
    margin-top : -30px;
    background-color: #000000;
    text-align: center;
    line-height: 60px;
    font-size: 25px;
    font-weight: 200;
    cursor: pointer;
    -webkit-transition: all ease .4s;
    transition: all ease .4s;
    z-index: 1000;
}

#hotspot_modale_previous_frame img,
#hotspot_modale_next_frame img,
#highlights_modale_previous_frame img,
#highlights_modale_next_frame img{
    width : 100%;
    height: auto;
}

#hotspot_modale_previous_frame:hover,
#hotspot_modale_next_frame:hover,
#highlights_modale_previous_frame:hover,
#highlights_modale_next_frame:hover {
    background: #68aa13;
}

#hotspot_modale_next_frame,
#highlights_modale_next_frame{
    left: auto;
    right : 0;
}

#highlights_hotspot_modale_previous_frame,
#highlights_modale_next_frame{
    z-index : 10000;
}

/************************************************************************************************/
/* HOTSPOTS MODALES */
/************************************************************************************************/

.hotspots_modale{
    position: fixed;
    top : 0;
    left : 0;
    width : 100%;
    height : 100%;
    z-index : 9999;
    display : none;
}

.hotspots_modale.active{
    display : block;
}

.hotspots_modale img{
    position : absolute;
    display : block;
    top : 0;
    left : 0;
    width : 100%;
    height: auto;
}

.hotspots_modale .infos{
    height : 90px;
    line-height : 90px;
    background-color: rgba(51,51,51,0.5);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #FFF;
    padding: 5px 10px;
    font-family: "Roboto Condensed", sans-serif;
    font-size : 30px;
}

.hotspots_modale .infos span{
    position: relative;
    display: inline-block;
    vertical-align : middle;
}

.hotspots_modale .infos img{
    position: relative;
    display: inline-block;
    width: 40px;
    float: left;
    top: auto;
    left: auto;
    vertical-align: middle;
    margin: 24px 15px 0px 5px;
}

/************************************************************************************************/
/* RANGE INPUT */
/************************************************************************************************/

input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    margin: 8px 0;
}
input[type=range]:focus {
    outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
    background: rgba(255, 255, 255, 0.78);
    border-radius: 0px;
    border: 0.4px solid #ffffff;
}
input[type=range]::-webkit-slider-thumb {
    box-shadow: 0.5px 0.5px 3.5px #333333, 0px 0px 0.5px #404040;
    border: 4.6px solid #ffffff;
    height: 21px;
    width: 21px;
    border-radius: 21px;
    background: #68aa13;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -8.4px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
    background: rgba(255, 255, 255, 0.78);
}
input[type=range]::-moz-range-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
    background: rgba(255, 255, 255, 0.78);
    border-radius: 0px;
    border: 0.4px solid #ffffff;
}
input[type=range]::-moz-range-thumb {
    box-shadow: 0.5px 0.5px 3.5px #333333, 0px 0px 0.5px #404040;
    border: 4.6px solid #ffffff;
    height: 21px;
    width: 21px;
    border-radius: 21px;
    background: #68aa13;
    cursor: pointer;
}
input[type=range]::-ms-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent;
}
input[type=range]::-ms-fill-lower {
    background: rgba(242, 242, 242, 0.78);
    border: 0.4px solid #ffffff;
    border-radius: 0px;
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}
input[type=range]::-ms-fill-upper {
    background: rgba(255, 255, 255, 0.78);
    border: 0.4px solid #ffffff;
    border-radius: 0px;
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}
input[type=range]::-ms-thumb {
    box-shadow: 0.5px 0.5px 3.5px #333333, 0px 0px 0.5px #404040;
    border: 4.6px solid #ffffff;
    height: 21px;
    width: 21px;
    border-radius: 21px;
    background: #68aa13;
    cursor: pointer;
    height: 5px;
}
input[type=range]:focus::-ms-fill-lower {
    background: rgba(255, 255, 255, 0.78);
}
input[type=range]:focus::-ms-fill-upper {
    background: rgba(255, 255, 255, 0.78);
}

#player_360_INT_Canvas{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

#orientation_change{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #68aa13;
    color: #FFF;
    text-align: center;
    z-index: 10010;
}

#orientation_change p{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    font-size: 18px;
}

#orientation_change .glyphicon{
    display: block;
    margin-bottom: 20px;
    font-size: 60px;
}

#orientation_change{
    display: none;
}

@media (orientation: portrait) {
    #orientation_change{
        display: block !important;
    }
}

@media (max-height: 600px) and (orientation: landscape) {
    #orientation_change{
        display: none;
    }

    #hotspots_edit_tools_menu{
        width: 240px;
        height: 45px;
        right: 0;
        left: auto !important;
        position: fixed;
        text-align: right;
    }
    #hotspots_edit_tools_menu .btn{
        height: 45px;
        width: 45px;
        display: inline-block;
        float: none;
        margin-left: -5px;
    }

    .btn-pin {
        width: 15px;
        height: 15px;
        font-size: 10px;
        line-height: 15px;
    }

    .threesixty-wrapper .zoom img{
        width: 50px;
    }
    #player_carlab_zoom_modale .close{
        font-size: 50px;
        height: 50px;
        width: 50px;
    }
    #modale_zoom_slider, #highlights_modale_zoom_slider, #defects_modale_zoom_slider{
        width: 300px;
        padding: 15px 0px 15px 20px;
    }
    #modale_zoom_slider img, #highlights_modale_zoom_slider img, #defects_modale_zoom_slider img{
        width: 35px;
    }
    #modale_zoom_slider input, #highlights_modale_zoom_slider input, #defects_modale_zoom_slider input{
        margin-top: 15px;
    }
    #hotspot_modale_previous_frame, #hotspot_modale_next_frame, #highlights_modale_previous_frame, #highlights_modale_next_frame{
        width: 60px;
        height: 60px;
    }

    #player_logo {
        position: fixed;
        top: 0px;
        left: 0px;
        height: 40px;
        z-index: 1;
    }
}









