/* 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;
}

/* 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: 800px;
    height: 100%;
    position: relative;
}
/* 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;
}

/* 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: fixed;
    top: 10px;
    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: 50px;
    right: 0;
    padding: 5px;
    width: 80px;
    display: none;
    transition: all .4s;
    opacity: .5;
}
/* 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;
}

/* line 140, ../../scss/main.scss */
.hotspots img:hover {
    opacity: .8;
}
.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: auto;
    height: auto;
    opacity: 1;
}

.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 {
    position: absolute;
    height: 25px;
    width: 25px;
    border-radius: 30px;
    padding-top: 3px;
    border: 0px solid red;
    top: 0;
    left: 0;
    background: red;
    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: #15b115;
    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%;
}

#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;
}

#car_title{
    position: fixed;
    z-index: 9999;
    background: rgba(0,0,0,.3);
    color: #FFF;
    font-size: 17px;
    text-align: center;
    padding: 6px 30px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px 5px 0 0;
}

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

@media (max-height: 600px) and (orientation: landscape) {
    .threesixty-wrapper .zoom img{
        width: 50px;
    }
    #player_carlab_zoom_modale .close{
        font-size: 50px;
        height: 50px;
        width: 50px;
    }
}
