/* Tooltip container */
.i-info {
    font-size: 13px;
    position: absolute;
    float: left;
    top: 4px;
    left: 105%;
    display: block;
    width: 15px;
    height: 15px;
    padding: 3px;
    background: #f2880b;
    color: white;
    line-height: 10px;
    text-align: center;
    border-radius: 50%;
}
.tooltip-cnd {
    position: relative;
    display: inline-block;
}

.tooltip-cnd .tooltiptext-cnd::after {
    content: " ";
    position: absolute;
    top: 100%; /* At the bottom of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}

/* Tooltip text */
.tooltip-cnd .tooltiptext-cnd {
    visibility: hidden;

    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
    background-color: #363d42;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    width: 250px;
    bottom: 104%;
    margin-right: -142px;
    right: 0;
    font-size:12px;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip-cnd:hover .tooltiptext-cnd {
    visibility: visible;
}

.label-desc-div {
    display: none;
}

@media screen and (max-width: 690px) {
    .tooltip-cnd {
        display: none;
    }

    .label-desc-div {
        display: block;
    }
}
.con-tooltip {

    position: relative;
    display: inline-block;
    /*transition: all 0.3s ease-in-out;*/

}

input[type=password]::-ms-reveal {
    display:none!important;
}
input[type=password]:focus::-ms-reveal {
    display:none!important;
}

/*tooltip */
.tooltip {
    visibility: hidden;
    z-index: 1;
    width: 100%;
    padding: 20px;
    background: #489ba5;
    color: #FFF;
    position: absolute;
    top:-140%;
    left: -25%;
    /*transform: translateY(9px);
    transition: all 0.3s ease-in-out;*/
    font-size: 1.5rem;
    line-height: 1.4em;
    font-family: "latoregular", Tahoma, Geneva, Helvetica, sans-serif;
}


/* tooltip  after*/
.tooltip::after {
    content: " ";
    width: 0;
    height: 0;

    border-style: solid;
    border-width: 12px 12.5px 0 12.5px;
    border-color: #333 transparent transparent transparent;

    position: absolute;
    left: 40%;

}

.con-tooltip:hover .tooltip{
    visibility: visible;
    transform: translateY(-10px);
    opacity: 1;
    transition: .3s linear;
    animation: odsoky 1s ease-in-out infinite  alternate;

}
@keyframes odsoky {
    0%{
        transform: translateY(6px);
    }

    100%{
        transform: translateY(1px);
    }

}

.tooltip span {
    width: 12%;
    display: flex;
    float: left;
    /* line-height: 1em; */
    font-size: 2em;
    margin-top: 4px;
}
/*hover ToolTip*/
.left:hover {transform: translateX(-6px); }
.top:hover {transform: translateY(-6px);  }
.bottom:hover {transform: translateY(6px);}
.right:hover {transform: translateX(6px); }



/*left*/

.left .tooltip{ top:-20%; left:-170%; }

.left .tooltip::after{
    top:40%;
    left:90%;
    transform: rotate(-90deg);
}




/*bottom*/

.bottom .tooltip { top:115%; left:-20%; }

.bottom .tooltip::after{
    top:-17%;
    left:40%;
    transform: rotate(180deg);
}



/*right*/

.right .tooltip { top:-20%; left:115%; }

.right .tooltip::after{
    top:40%;
    left:-12%;
    transform: rotate(90deg);
}



label.cabinet{
    display: block;
    cursor: pointer;
}

label.cabinet input.file{
    position: relative;
    height: 100%;
    width: auto;
    opacity: 0;
    -moz-opacity: 0;
    filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    margin-top:-30px;
}

#upload-demo{
    width: 250px;
    height: 250px;
    padding-bottom:25px;
    margin:auto;
}
figure figcaption {
    position: absolute;
    bottom: 0;
    color: #fff;
    width: 100%;
    padding-left: 9px;
    padding-bottom: 5px;
    text-shadow: 0 0 10px #000;
}

.img-thumbnail {
    display: inline-block;
    max-width: 100%;
    height: auto;
    padding: 4px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#cropImagePop{
    pointer-events: none;
}
#cropImagePop > .modal-dialog{
    pointer-events: all;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}
.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}
.modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform .3s ease-out;
    -o-transition: -o-transform .3s ease-out;
    transition: transform .3s ease-out;
    -webkit-transform: translate(0,-25%);
    -ms-transform: translate(0,-25%);
    -o-transform: translate(0,-25%);
    transform: translate(0,-25%);
}

.modal-content {
    width: 40%;
    margin: 20% auto;
    position: relative;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 6px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
    box-shadow: 0 3px 9px rgba(0,0,0,.5);
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.modal-body {
    position: relative;
    padding: 15px;
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}


.infobulle {

}

a.infobulle {
    color:#7d60a5;
}
.infobulle span {
    position:absolute;
    margin-left: -145px;
    margin-top: -240px;
    color:#09c;
    background:#fff;
    padding:15px;
    border-radius:3px;
    box-shadow:0 0 2px rgba(0,0,0,.5);
    transform:scale(1) rotate(0);
    transition:all .25s;
    opacity:0;

}

.infobulle:hover span, .infobulle:focus span{
    opacity:1;
}

.new-dt-inline{
    color: #979797;
    font-size: .875rem;
    font-weight: 400;
    text-transform: uppercase;
}

@media screen and (min-width: 640px) {
    .reqbar{
        display: block;
        width: 4px;
        /* height: 150px; */
        height:70%;
        /* margin-left: 24px; */
        background: #78ba58;
        content: "";
        /* transform: translateY(-12px); */
        border-radius: 500px;
        -ms-flex-item-align: end;
        align-self: flex-end;
        float: right;
    }
    .reuse-photo-billetique-text{
        max-width: 95%;
    }
}
@media screen and (max-width: 639px) {
    .reqbar{
        display: block;
        width: 30%;
        height: 4px;
        /* margin-left: 24px; */
        background: #78ba58;
        content: "";
        /* transform: translateY(-12px); */
        border-radius: 500px;
        -ms-flex-item-align: end;
        align-self: flex-end;
        /* float: right; */
        margin-left: auto;
        margin-right: auto;
        margin-top:15px;
    }

    .req-mobile-margin-top-5{
        margin-top:5px;
    }
}


.choice-photo{
    background-color: #bee6ab;
    border-radius: 15px;
}

.label-for-radio{
    font-weight: bold;
}

.boutique-back-action{
    display: inline-flex;
    align-items: center;
}

.boutique-back-action > span{
    width: 18px;
    margin-right: 3px;
}