html {
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    /*background-image:url(http://static.cruiseline.eu/images/fondGM.jpg);*/
    background-attachment: fixed;
    background-color: #fff;
    background-position: center top;
    background-repeat: repeat-x;
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #314350;
    position: relative;
    text-rendering: optimizelegibility;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: auto;
    position: relative;
    counter-reset: myIndex;
}

@font-face {
    font-family: "Flaticon";
    src: url("./fonts/Flaticon.eot");
    src: url("./fonts/Flaticon.eot?#iefix") format("embedded-opentype"),
    url("./fonts/Flaticon.woff") format("woff"),
    url("./fonts/Flaticon.ttf") format("truetype"),
    url("./fonts/Flaticon.svg#Flaticon") format("svg");
    font-weight: normal;
    font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    @font-face {
        font-family: "Flaticon";
        src: url("./fonts/Flaticon.svg#Flaticon") format("svg");
    }
}

* {
    margin: 0;
    padding: 0;
}

.transition, .hover, .bouton {
    -webkit-transition: 0.3s ease 0s;
    -moz-transition: 0.3s ease 0s;
    -o-transition: 0.3s ease 0s;
    -ms-transition: 0.3s ease 0s;
    transition: 0.3s ease 0s;
}

.transition2 {
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}

.transitionAll * {
    -webkit-transition: 0.3s ease 0s;
    -moz-transition: 0.3s ease 0s;
    -o-transition: 0.3s ease 0s;
    -ms-transition: 0.3s ease 0s;
    transition: 0.3s ease 0s;
}

.transitionAll2 * {
    -webkit-transition: 0.6s ease 0s;
    -moz-transition: 0.6s ease 0s;
    -o-transition: 0.6s ease 0s;
    -ms-transition: 0.6s ease 0s;
    transition: 0.6s ease 0s;
}

.notransition {
    -moz-transition: none;
    -webkit-transition: none;
    -o-transition: color 0 ease-in;
    transition: none;
}

h1, h2, h3, h4, h5 {
    font-weight: normal;
    font-size: inherit;
}

*, *::before, *::after, *:not(.noborder) {
    box-sizing: border-box;
}

p {
    margin: 0;
}

/*******FLEX***********/
.flex {
    display: flex;
    display: -webkit-flex;
}

.flex-colonne {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -o-flex-direction: column;
    -ms-flex-direction: column;
}

.flex-colonne-reverse {
    display: flex;
    display: -webkit-flex;
    flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    -o-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
}

.flex-row {
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.flex-row-reverse {
    display: flex;
    display: -webkit-flex;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.flex-nowrap {
    display: flex;
    display: -webkit-flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.flex-wrap {
    display: flex;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.justify-evenly {
    justify-content: space-evenly;
}

.justify-center {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify-around {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.justify-between {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.justify-end {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.hori-start {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.hori-center {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.hori-end {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}


.vert-start {
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
}

.vert-center {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
}

.vert-end {
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
}

.grow0 {
    flex-grow: 0;
}

.grow1 {
    flex-grow: 1;
}

.grow2 {
    flex-grow: 2;
}

.grow3 {
    flex-grow: 3;
}

.grow4 {
    flex-grow: 4;
}

.grow5 {
    flex-grow: 5;
}

.grow10 {
    flex-grow: 10;
}

.flex1 {
    flex: 1 1 0;
    -webkit-flex: 1 1 0;
}
.flex2 {
    flex: 2 2 0;
    -webkit-flex: 2 2 0;
}

.flex10 {
    flex: 0 0 10px;
    -webkit-flex: 0 0 10px;
}

.flex15 {
    flex: 0 0 15px;
    -webkit-flex: 0 0 15px;
}

.flex20 {
    flex: 0 0 20px;
    -webkit-flex: 0 0 20px;
}

.flex25 {
    flex: 0 0 25px;
    -webkit-flex: 0 0 25px;
}

.flex30 {
    flex: 0 0 30px;
    -webkit-flex: 0 0 30px;
}

.flex35 {
    flex: 0 0 35px;
    -webkit-flex: 0 0 35px;
}

.flex40 {
    flex: 0 0 40px;
    -webkit-flex: 0 0 40px;
}

.flex50 {
    flex: 0 0 50px;
    -webkit-flex: 0 0 50px;
}

.flex55 {
    flex: 0 0 55px;
    -webkit-flex: 0 0 55px;
}

.flex60 {
    flex: 0 0 60px;
    -webkit-flex: 0 0 60px;
}

.flex65 {
    flex: 0 0 65px;
    -webkit-flex: 0 0 65px;
}

.flex70 {
    flex: 0 0 70px;
    -webkit-flex: 0 0 70px;
}

.flex75 {
    flex: 0 0 75px;
    -webkit-flex: 0 0 75px;
}

.flex80 {
    flex: 0 0 80px;
    -webkit-flex: 0 0 80px;
}

.flex90 {
    flex: 0 0 90px;
    -webkit-flex: 0 0 90px;
}

.flex100 {
    flex: 0 0 100px;
    -webkit-flex: 0 0 100px;
}

.flex120 {
    flex: 0 0 120px;
    -webkit-flex: 0 0 120px;
}

.flex130 {
    flex: 0 0 130px;
    -webkit-flex: 0 0 130px;
}

.flex140 {
    flex: 0 0 140px;
    -webkit-flex: 0 0 140px;
}

.flex150 {
    flex: 0 0 150px;
    -webkit-flex: 0 0 150px;
}

.flex160 {
    flex: 0 0 160px;
    -webkit-flex: 0 0 160px;
}

.flex170 {
    flex: 0 0 170px;
    -webkit-flex: 0 0 170px;
}

.flex180 {
    flex: 0 0 180px;
    -webkit-flex: 0 0 180px;
}

.flex200 {
    flex: 0 0 200px;
    -webkit-flex: 0 0 200px;
}

.flex240 {
    flex: 0 0 240px;
    -webkit-flex: 0 0 240px;
}

.flex250 {
    flex: 0 0 250px;
    -webkit-flex: 0 0 250px;
}

.flex270 {
    flex: 0 0 270px;
    -webkit-flex: 0 0 270px;
}

.flex280 {
    flex: 0 0 280px;
    -webkit-flex: 0 0 280px;
}

.flex300 {
    flex: 0 0 300px;
    -webkit-flex: 0 0 300px;
}

.flex350 {
    flex: 0 0 350px;
    -webkit-flex: 0 0 350px;
}

.flex400 {
    flex: 0 0 400px;
    -webkit-flex: 0 0 400px;
}

.flex450 {
    flex: 0 0 450px;
    -webkit-flex: 0 0 450px;
}

.flex550 {
    flex: 0 0 550px;
    -webkit-flex: 0 0 550px;
}

.flex580 {
    flex: 0 0 580px;
    -webkit-flex: 0 0 580px;
}

.flexauto {
    flex: auto;
    -webkit-flex: auto;
}

.flex00auto {
    flex: 0 0 auto;
}

.col2 {
    column-count: 2;
}

.collineccc {
    column-rule: solid 1px #ccc
}

.colgap20 {
    column-gap: 20px;
}

.colgap30 {
    column-gap: 30px;
}


.gap2P {
    gap: 2%;
}

.gap3P {
    gap: 3%;
}

.gap5P {
    gap: 5%;
}

.gap10P {
    gap: 10%;
}

/*.gap2P {*/
/*    margin-right: -2%;*/
/*}*/
/*.gap2P>* {*/
/*    margin-right: 2%;*/
/*}*/
/*.gap3P {*/
/*    margin-right: -3%;*/
/*}*/
/*.gap3P>* {*/
/*    margin-right: 3%;*/
/*}*/
/*.gap5P {*/
/*    margin-right: -5%;*/
/*}*/
/*.gap5P>* {*/
/*    margin-right: 5%;*/
/*}*/

/*******MARGIN***********/
.top-1 {
    margin-top: -1px;
}

.left-1 {
    margin-left: -1px;
}

.right-1 {
    margin-right: -1px;
}

.bottom-1 {
    margin-bottom: -1px;
}

.bottom-5 {
    margin-bottom: -5px;
}

.bottom5 {
    margin-bottom: 5px
}

.bottom10 {
    margin-bottom: 10px
}

.bottom15 {
    margin-bottom: 15px
}

.bottom20 {
    margin-bottom: 20px
}

.bottom30 {
    margin-bottom: 30px
}

.bottom40 {
    margin-bottom: 40px
}

.bottom50 {
    margin-bottom: 50px
}

.bottom90 {
    margin-bottom: 90px;
}

.top5 {
    margin-top: 5px;
}

.top7 {
    margin-top: 7px;
}

.top10 {
    margin-top: 10px;
}

.top15 {
    margin-top: 15px;
}

.top20 {
    margin-top: 20px;
}

.top25 {
    margin-top: 25px;
}

.top30 {
    margin-top: 30px;
}

.top35 {
    margin-top: 35px;
}

.top40 {
    margin-top: 40px;
}

.top50 {
    margin-top: 50px;
}

.top60 {
    margin-top: 60px;
}

.top70 {
    margin-top: 70px;
}

.top80 {
    margin-top: 80px;
}

.top90 {
    margin-top: 90px;
}

.top100 {
    margin-top: 100px;
}

.top10P {
    margin-top: 10%;
}

.top12P {
    margin-top: 12.5%;
}

.top25P {
    margin-top: 25%;
}

.top50P {
    margin-top: 50%;
}

.left1 {
    margin-left: 1px;
}

.left5 {
    margin-left: 5px;
}

.left10 {
    margin-left: 10px;
}

.left15 {
    margin-left: 15px;
}

.left20 {
    margin-left: 20px;
}

.left25 {
    margin-left: 25px;
}

.b0 {
    bottom: 0
}

.b20 {
    bottom: 20px
}

.t0 {
    top: 0
}

.t105P {
    top: 105%
}

.t2 {
    top: 2px
}

.l0 {
    left: 0
}

.l10 {
    left: 10px
}

.r0 {
    right: 0
}

.r2 {
    right: 2px
}

.r5 {
    right: 5px
}

.l0P {
    left: 0%;
}

.l15P {
    left: 15%;
}

.l20P {
    left: 20%;
}

.l30P {
    left: 30%;
}

.left30 {
    margin-left: 30px;
}

.left40 {
    margin-left: 40px;
}

.left50 {
    margin-left: 50px;
}

.left60 {
    margin-left: 60px;
}

.left80 {
    margin-left: 80px;
}

.left100 {
    margin-left: 100px;
}

.left1P {
    margin-left: 2%;
}

.left2P {
    margin-left: 2%;
}

.left4P {
    margin-left: 4%;
}

.left5P {
    margin-left: 5%;
}

.left10P {
    margin-left: 10%;
}

.left8P {
    margin-left: 8%;
}

.auto {
    margin: 0 auto
}

.autolr {
    margin-left: auto;
    margin-right: auto
}

.padB10 {
    padding-bottom: 10px
}

.padB20 {
    padding-bottom: 20px
}

.padB30 {
    padding-bottom: 30px
}

.padB40 {
    padding-bottom: 40px
}

.padT5 {
    padding-top: 5px
}

.padT10 {
    padding-top: 10px
}

.padT20 {
    padding-top: 20px
}

.padT40 {
    padding-top: 40px
}

.padT33P {
    padding-top: 33%
}

.padT45P {
    padding-top: 45%
}

.padT55P {
    padding-top: 55%
}

.padT65P {
    padding-top: 65%
}

.padT100P {
    padding-top: 100%
}

.padB50P {
    padding-bottom: 50%
}

.pad5 {
    padding: 5px
}

.pad10 {
    padding: 10px
}

.pad20 {
    padding: 20px
}

.pad30 {
    padding: 30px
}

.pad40 {
    padding: 40px
}

.pad60 {
    padding: 60px
}

.pad50 {
    padding: 5px 0
}

.pad100 {
    padding: 10px 0
}

.pad200 {
    padding: 20px 0
}

.pad400 {
    padding: 40px 0
}

.pad600 {
    padding: 60px 0
}

.pad4020 {
    padding: 40px 20px
}

.pad604040 {
    padding: 60px 40px 40px
}

.pad600 {
    padding: 60px 0
}

.pad2010 {
    padding: 20px 10px
}

.pad510 {
    padding: 5px 10px !important;
}

.pad710 {
    padding: 7px 10px
}

.pad1510 {
    padding: 15px 10px
}

.pad20100 {
    padding: 20px 10px 0
}

.pad010 {
    padding: 0 10px
}

.pad105 {
    padding: 10px 5px
}

.pad020 {
    padding: 0 20px
}

.pad030 {
    padding: 0 30px
}

.pad040 {
    padding: 0 40px
}

.pad2040 {
    padding: 20px 40px
}

.pad500 {
    padding: 50px 0
}

.pad520 {
    padding: 5px 20px !important
}

.pad205 {
    padding: 20px 5px !important
}

.padLR50 {
    padding-left: 50px !important;
    padding-right: 50px !important
}

.padLR100 {
    padding-left: 100px !important;
    padding-right: 100px !important
}

.pad1020 {
    padding: 10px 20px !important
}

.pad5 {
    padding: 5px;
}

.pad1 {
    padding: 1px;
}

.pad05 {
    padding: 0 5px;
}

.pad2P {
    padding: 2%;
}

.pad02P {
    padding: 0 2%;
}

.padL5 {
    padding-left: 5px;
}

.padL10 {
    padding-left: 10px;
}

.padL20 {
    padding-left: 20px;
}

.padL30 {
    padding-left: 30px;
}

.padL40 {
    padding-left: 40px;
}

.padL1P {
    padding-left: 1%;
}

.padL2P {
    padding-left: 2%;
}

.padL5P {
    padding-left: 5%;
}

.padL10P {
    padding-left: 10%;
}

.padR5 {
    padding-right: 5px;
}

.padR10 {
    padding-right: 10px;
}

.padR20 {
    padding-right: 20px;
}

.padR30 {
    padding-right: 30px;
}

.padR40 {
    padding-right: 40px;
}

.padR1P {
    padding-right: 1%;
}

.padR2P {
    padding-right: 2%;
}

.padR5P {
    padding-right: 5%;
}

.padR10P {
    padding-right: 10%;
}

.right5 {
    margin-right: 5px;
}

.right10 {
    margin-right: 10px;
}

.right15 {
    margin-right: 15px;
}

.right20 {
    margin-right: 20px;
}

.right40 {
    margin-right: 40px;
}

.right1P {
    margin-right: 1%;
}

.right2P {
    margin-right: 2%;
}

.right5P {
    margin-right: 5%;
}

.leftright1P {
    margin-left: 0.5%;
    margin-right: 0.5%
}

.pad0 {
    padding: 0 !important;
}

/*******POSITION***********/
.vmiddle {
    vertical-align: middle;
}

.vtop {
    vertical-align: top !important;
}

.vbottom {
    vertical-align: bottom !important;
}

.left {
    float: left
}

.right {
    float: right
}

.spacer {
    clear: both
}

.center {
    text-align: center
}

.absolute {
    position: absolute
}

.relative {
    position: relative
}

.fixed {
    position: fixed
}

.hiddeny {
    overflow-x: hidden
}

.hidden {
    overflow: hidden
}

.hide {
    visibility: hidden
}

.block {
    display: block
}

.inblock {
    display: inline-block
}

.table {
    display: table
}

.cell {
    display: table-cell;
    vertical-align: middle
}

.cell.top {
    vertical-align: top !important
}

.row {
    display: table-row
}

.none {
    display: none
}

/*.blockMobile{display:none}*/
a {
    cursor: pointer;
    color: inherit;
    text-decoration: none;
}

.z-1 {
    z-index: -1
}

.z0 {
    z-index: 0
}

.z1 {
    z-index: 1
}

.z2 {
    z-index: 2
}

.z3 {
    z-index: 3
}

.z10 {
    z-index: 10
}

.z20 {
    z-index: 20
}

.z21 {
    z-index: 21
}

.z100 {
    z-index: 100
}

.z999 {
    z-index: 999
}

/*******APPARENCE***********/
.ombre {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2)
}

.ombre2 {
    box-shadow: 0 0px 20px rgba(0, 0, 0, 0.3)
}

.ombre3 {
    box-shadow: 0 3px 37px -8px rgba(0, 0, 0, 1)
}

.ombreBloc {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.ombre0015 {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.ombre0025 {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
}

.ombreBlocRed {
    box-shadow: 0 0px 20px 0px rgb(0 0 0 / 50%);
}

.ombreInset {
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.6) inset, 0 -10px 10px -10px rgba(0, 0, 0, 0.6) inset
}

.spacing05 {
    border-collapse: separate;
    border-spacing: 5px 0
}

.spacing010 {
    border-collapse: separate;
    border-spacing: 10px 0
}

.spacing020 {
    border-collapse: separate;
    border-spacing: 20px 0
}

.radius {
    border-radius: 5px
}

.radius10 {
    border-radius: 10px;
}

.radius20 {
    border-radius: 20px;
}

.radius30 {
    border-radius: 30px;
}

.radius50 {
    border-radius: 50px;
}

.radius50P {
    border-radius: 50%;
}

ul li {
    list-style: none
}

.bullet li::before {
    color: #314350;
    content: "•";
    left: 0;
    position: absolute;
    line-height: 20px;
    font-size: 20px;
}

.bullet li {
    position: relative;
    padding-left: 15px
}

img {
    border: none
}

.line10 {
    line-height: 10px;
}

.line12 {
    line-height: 12px;
}

.line15 {
    line-height: 15px;
}

.line17 {
    line-height: 17px;
}

.line18 {
    line-height: 18px
}

.line20 {
    line-height: 20px
}

.line22 {
    line-height: 22px;
}

.line25 {
    line-height: 25px;
}

.line28 {
    line-height: 25px;
}

.line30 {
    line-height: 30px;
}

.line35 {
    line-height: 35px;
}

.line40 {
    line-height: 40px
}

.line45 {
    line-height: 45px
}

.line50 {
    line-height: 50px
}

.line60 {
    line-height: 60px
}

.line80 {
    line-height: 80px
}

.line90 {
    line-height: 90px
}

.line100 {
    line-height: 100px
}

.line120 {
    line-height: 120px
}

.line160 {
    line-height: 160px
}

.scrollY, .scroll {
    overflow-y: auto;
    overflow-x: hidden;
}

.scrollX {
    overflow-x: auto;
    overflow-y: hidden;
}

.op0 {
    opacity: 0 !important
}

.op01 {
    opacity: 0.1 !important
}

.op02 {
    opacity: 0.2 !important
}

.op03 {
    opacity: 0.3 !important
}

.op05 {
    opacity: 0.5 !important
}

.op07 {
    opacity: 0.7 !important
}

.op08 {
    opacity: 0.8 !important
}

.op1 {
    opacity: 1 !important
}

.rotate {
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.rotate90 {
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.rotate270 {
    -ms-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}

.originlt {
    -ms-transform-origin: left top 0;
    -webkit-transform-origin: left top 0;
    transform-origin: left top 0;
}

.trigauche::before {
    border-bottom: 10px solid transparent;
    border-right: 10px solid #fff;
    border-top: 10px solid transparent;
    content: " ";
    height: 0;
    left: -10px !important;
    position: absolute;
    top: 10px;
    width: 0;
}

.trigauche.fg::before {
    border-right: 10px solid #eee;
}

.trigauche.big.fbl::before {
    border-bottom: 15px solid transparent;
    border-right: 15px solid #0099cc;
    border-top: 15px solid transparent;
    content: " ";
    height: 0;
    left: -15px !important;
    position: absolute;
    top: calc(50% - 15px);
    width: 0;
}

.trigauche.haut.big.fbl::before {
    border-bottom: 15px solid transparent;
    border-right: 15px solid #0099cc;
    border-top: 15px solid transparent;
    content: " ";
    height: 0;
    left: -15px !important;
    position: absolute;
    top: 10px;
    width: 0;
}

.tribas::before {
    border-left: 10px solid rgba(0, 0, 0, 0);
    border-right: 10px solid rgba(0, 0, 0, 0);
    border-top: 10px solid #fff;
    bottom: -10px;
    content: " ";
    height: 0;
    left: 30px;
    position: absolute;
    width: 0;
}

.trihaut::before {
    border-left: 10px solid rgba(0, 0, 0, 0);
    border-right: 10px solid rgba(0, 0, 0, 0);
    border-bottom: 10px solid #fff;
    top: -10px;
    content: " ";
    height: 0;
    left: calc(50% - 10px);
    position: absolute;
    width: 0;
}

.trihautgauche::before {
    border-left: 10px solid rgba(0, 0, 0, 0);
    border-right: 10px solid rgba(0, 0, 0, 0);
    border-bottom: 10px solid #fff;
    top: -10px;
    content: " ";
    height: 0;
    left: 10px;
    position: absolute;
    width: 0;
}

.trihautgauche.fn::before {
    border-left: 10px solid rgba(0, 0, 0, 0);
    border-right: 10px solid rgba(0, 0, 0, 0);
    border-bottom: 10px solid #222;
    top: -10px;
    content: " ";
    height: 0;
    left: 10px;
    position: absolute;
    width: 0;
}

.trihaut.fn::before {
    border-bottom: 10px solid #222;
}

.tribas.fbl::before {
    border-top: 10px solid #25a3bc;
}

.tridroite::before {
    border-bottom: 15px solid transparent;
    border-left: 15px solid #fff;
    border-top: 15px solid transparent;
    content: " ";
    height: 0;
    right: -15px !important;
    position: absolute;
    top: calc(50% - 15px);
    width: 0;
}

.tricomp::before {
    border-bottom: 50px solid transparent;
    border-left: 30px solid #bbb;
    border-top: 50px solid transparent;
    content: " ";
    height: 0;
    position: absolute;
    right: -30px !important;
    top: 0;
    width: 0;
    z-index: 999;
}

.tridroite.fg::before {
    border-left: 15px solid #eee
}

.tridroite.fbl::before {
    border-left: 15px solid #0099cc
}

/*******WIDTH***********/
.w10 {
    width: 10px
}

.w15 {
    width: 15px
}

.w20 {
    width: 20px
}

.w25 {
    width: 25px
}

.w30 {
    width: 30px
}

.w35 {
    width: 35px
}

.w40 {
    width: 40px
}

.w50 {
    width: 50px
}

.w55 {
    width: 55px
}

.w60 {
    width: 60px
}

.w70 {
    width: 70px
}

.w80 {
    width: 80px
}

.w90 {
    width: 90px
}

.w100 {
    width: 100px
}

.w110 {
    width: 110px
}

.w120 {
    width: 120px
}

.w130 {
    width: 130px
}

.w140 {
    width: 140px
}

.w150 {
    width: 150px
}

.w160 {
    width: 160px
}

.w170 {
    width: 170px
}

.w180 {
    width: 180px
}

.w190 {
    width: 190px
}

.w200 {
    width: 200px
}

.w220 {
    width: 220px
}

.w240 {
    width: 240px
}

.w250 {
    width: 250px
}

.w260 {
    width: 260px
}

.w270 {
    width: 270px
}

.w280 {
    width: 280px
}

.w290 {
    width: 290px
}

.w300 {
    width: 300px
}

.w320 {
    width: 320px
}

.w330 {
    width: 330px
}

.w350 {
    width: 350px
}

.w400 {
    width: 400px
}

.w420 {
    width: 420px
}

.w440 {
    width: 440px
}

.w450 {
    width: 450px
}

.w500 {
    width: 500px
}

.w550 {
    width: 550px
}

.w560 {
    width: 560px
}

.w580 {
    width: 580px
}

.w600 {
    width: 600px
}

.w650 {
    width: 650px
}

.w730 {
    width: 730px
}

.w800 {
    width: 800px
}

.w900 {
    width: 900px
}

.w1000 {
    width: 1000px
}

.w1200 {
    width: 1200px
}

.w740 {
    width: 740px
}

.maxw600 {
    max-width: 600px
}

.maxw800 {
    max-width: 800px
}

.maxw1000 {
    max-width: 1000px
}

.maxw1200 {
    max-width: 1200px
}

.maxsection {
    max-width: 1980px;
    width: 80%
}

.maxw1400 {
    max-width: 1400px
}

.w3P {
    width: 3%
}

.w4P {
    width: 4%
}

.w5P {
    width: 5%
}

.w6P {
    width: 6%
}

.w8P {
    width: 8%
}

.w9P {
    width: 9%
}

.w10P {
    width: 10%
}

.w12P {
    width: 12%
}

.w13P {
    width: 13%
}

.w14P {
    width: 14%
}

.w15P {
    width: 15%
}

.w166P {
    width: 16.6667%
}

.w18P {
    width: 18%
}

.w19P {
    width: 19%
}

.w20P {
    width: 20%
}

.w21P {
    width: 21%
}

.w22P {
    width: 22%
}

.w23P {
    width: 23%
}

.w235P {
    width: 23.5%
}

.w24P {
    width: 24%
}

.w25P {
    width: 25%
}

.w28P {
    width: 28%
}

.w29P {
    width: 29%
}

.w30P {
    width: 30%
}

.w32P {
    width: 32%
}

.w33P {
    width: 33.3%
}

.w34P {
    width: 34%
}

.w35P {
    width: 35%
}

.w40P {
    width: 40%
}

.w41P {
    width: 41%
}

.w44P {
    width: 44%
}

.w45P {
    width: 45%
}

.w46P {
    width: 46%
}

.w48P {
    width: 48%
}

.w485P {
    width: 48.5%
}

.w49P {
    width: 49%
}

.w50P {
    width: 50%
}

.w52P {
    width: 52%
}

.w55P {
    width: 55%
}

.w58P {
    width: 58%
}

.w59P {
    width: 59%
}

.w60P {
    width: 60%
}

.w62P {
    width: 62%
}

.w65P {
    width: 65%
}

.w66P {
    width: 66%
}

.w68P {
    width: 68%
}

.w70P {
    width: 70%
}

.w72P {
    width: 72%
}

.w74P {
    width: 74%
}

.w75P {
    width: 75%
}

.w77P {
    width: 77%
}

.w78P {
    width: 78%
}

.w80P {
    width: 80%
}

.w85P {
    width: 85%
}

.w88P {
    width: 88%
}

.w90P {
    width: 90%
}

.w95P {
    width: 95%
}

.w96P {
    width: 96%
}

.w98P {
    width: 98%
}

.w100P {
    width: 100%
}

.w50vw {
    width: 50vw
}

.w80vw {
    width: 80vw
}

.w90vw {
    width: 90vw
}

.w100vw {
    width: 100vw
}

.w26P {
    width: 26%
}

.h0 {
    height: 0px
}

.h5 {
    height: 5px
}

.h10 {
    height: 10px
}

.h12 {
    height: 12px
}

.h15 {
    height: 15px
}

.h20 {
    height: 20px
}

.h25 {
    height: 25px
}

.h30 {
    height: 30px
}

.h35 {
    height: 35px
}

.h40 {
    height: 40px
}

.h45 {
    height: 45px
}

.h49 {
    height: 49px
}

.h50 {
    height: 50px
}

.h55 {
    height: 55px
}

.h60 {
    height: 60px
}

.h65 {
    height: 65px
}

.h70 {
    height: 70px
}

.h75 {
    height: 75px
}

.h80 {
    height: 80px
}

.h90 {
    height: 90px
}

.h100 {
    height: 100px
}

.h110 {
    height: 110px
}

.h118 {
    height: 118px
}

.h120 {
    height: 120px
}

.h125 {
    height: 125px
}

.h130 {
    height: 130px
}

.h140 {
    height: 140px
}

.h150 {
    height: 150px
}

.h160 {
    height: 160px
}

.h170 {
    height: 170px
}

.h180 {
    height: 180px
}

.h190 {
    height: 190px
}

.h200 {
    height: 200px
}

.h210 {
    height: 210px
}

.h220 {
    height: 220px
}

.h230 {
    height: 230px
}

.h240 {
    height: 240px
}

.h250 {
    height: 250px
}

.h260 {
    height: 260px
}

.h280 {
    height: 280px
}

.h290 {
    height: 290px
}

.h300 {
    height: 300px
}

.h320 {
    height: 320px
}

.h330 {
    height: 330px
}

.h340 {
    height: 340px
}

.h350 {
    height: 350px
}

.h360 {
    height: 360px
}

.h400 {
    height: 400px
}

.h500 {
    height: 500px
}

.h530 {
    height: 530px
}

.h550 {
    height: 550px
}

.h600 {
    height: 600px
}

.h10P {
    height: 10%
}

.h20P {
    height: 20%
}

.h25P {
    height: 25%
}

.h33P {
    height: 33.333%
}

.h40P {
    height: 40%
}

.h45P {
    height: 45%
}

.h50P {
    height: 50%
}

.h60P {
    height: 60%
}

.h70P {
    height: 70%
}

.h75P {
    height: 75%
}

.h80P {
    height: 80%
}

.h100P {
    height: 100%
}

.h75vh {
    height: 75vh
}

.h50vh {
    height: 50vh
}

.h70vh {
    height: 70vh
}

.h85vh {
    height: 85vh
}

.hauto {
    height: auto !important
}

.w0 {
    width: 0;
}

.maxh200 {
    max-height: 200px
}

.maxh480 {
    max-height: 480px
}

.calcvh {
    height: calc((var(--vh, 1vh) * 100) - var(--px))
}

.maxcalcvh {
    max-height: calc((var(--vh, 1vh) * 100) - var(--px))
}


/*******BORDER***********/
.br {
    border-right: 1px solid #ccc;
}

.brb {
    border-right: 1px solid #fff;
}

.bl {
    border-left: 1px solid #ccc
}

.bt {
    border-top: 1px solid #ccc;
}

.btbl {
    border-top: 1px solid #09c;
}

.btp {
    border-top: 1px dashed #ccc;
}

.bb {
    border-bottom: 1px solid #ccc
}

.bbbl {
    border-bottom: 1px solid #09c
}

.bbb {
    border-bottom: 1px solid #fff !important
}

.bn {
    border: none
}

.ba {
    border: 1px solid #ccc
}

.ban {
    border: 1px solid #314350
}

.bab {
    border: 1px solid #fff
}

.babl {
    border: 1px solid #09c
}

.bt-dashed {
    border-top: 3px dashed #09c;
}

.bar {
    border: 1px solid #F44336 !important;
}

.bav {
    border: 1px solid #21c347
}

/*******BACKGROUND***********/
.fn07 {
    background-color: rgba(0, 0, 0, 0.7)
}

.cover {
    background-size: cover;
    background-position: center;
}

.bgfixed {
    background-attachment: fixed
}

.after {
    position: relative
}

.after.absolute {
    position: absolute
}

.after::after {
    background-color: #000;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    width: 100%;
}

.after.fbl::after {
    background-color: #047FC0 !important
}

.after.clair::after {
    background-color: #000;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.3;
    position: absolute;
    top: 0;
    width: 100%;
}

.after.fonce::after {
    background-color: #000;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.8;
    position: absolute;
    top: 0;
    width: 100%;
}

.after.radiant::after {
    opacity: 0.8;
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 10%, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0) 85%, rgba(0, 0, 0, 1) 100%);
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.9) 10%, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0) 85%, rgba(0, 0, 0, 1) 100%);
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 10%, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0) 85%, rgba(0, 0, 0, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=1);
}


/*******FONTS***********/
.icon:before, .icon:after {
    font-family: "Flaticon";
    font-style: 1rem;
}

[class^="fa-"] {
    font-size: 1rem !important;
    font-style: normal !important;
}

.fa-check:before {
    font-family: "Flaticon";
    content: "\f119" !important;
}

.fa-check.bleu {
    color: #2bb04a !important;
}

.fa-xmark:before {
    font-family: "Flaticon";
    content: "\f131" !important;
}

.fa-circle:before {
    content: "•" !important;
}

.font9 {
    font-size: 9px;
}

.font8 {
    font-size: 8px;
}

.font10 {
    font-size: 10px;
}

.font11 {
    font-size: 11px;
}

.font12 {
    font-size: 12px;
}

.font14 {
    font-size: 14px;
}

.font15 {
    font-size: 15px;
}

.font16 {
    font-size: 16px;
}

.font18 {
    font-size: 18px;
}

.font20 {
    font-size: 20px;
}

.font22 {
    font-size: 22px;
}

.font24 {
    font-size: 24px;
}

.font25 {
    font-size: 25px;
}

.font26 {
    font-size: 26px;
}

.font28 {
    font-size: 28px;
}

.font30 {
    font-size: 30px;
}

.font35 {
    font-size: 35px;
}

.font40 {
    font-size: 40px;
}

.font50 {
    font-size: 50px;
}

.font60 {
    font-size: 60px;
}

.font120 {
    font-size: 120px;
}

.font150 {
    font-size: 150px;
}

.font100 {
    font-weight: 100;
    letter-spacing: 0 !important
}

.font300 {
    font-weight: 300
}

.font400 {
    font-weight: 400
}

.font500 {
    font-weight: 500
}

.font600 {
    font-weight: 600
}

.font700 {
    font-weight: 700
}

.font900 {
    font-weight: 700
}

.light {
    font-weight: 100
}

.bold {
    font-weight: bold
}

.fontnormal {
    font-weight: normal
}

.upper {
    text-transform: uppercase;
}

.capital {
    text-transform: capitalize;
}

.lower, .first {
    text-transform: lowercase;
}

.first::first-letter {
    text-transform: uppercase !important;
}

.pointer, .liencache, .target {
    cursor: pointer
}

.cursorhb {
    cursor: ns-resize
}

.italic {
    font-style: italic
}

.barre {
    text-decoration: line-through
}

.underline {
    text-decoration: underline
}

.nounder {
    text-decoration: none
}

.center {
    text-align: center
}

.justify {
    text-align: justify
}

.txtRight {
    text-align: right
}

.txtLeft {
    text-align: left !important
}

.etc {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}
.nowrap{white-space: nowrap}

.letter0 {
    letter-spacing: 0px
}

.letter3 {
    letter-spacing: 3px
}

.letter5 {
    letter-spacing: 5px
}

.letter10 {
    letter-spacing: 10px
}

.txtombre {
    text-shadow: 0 2px 2px #000000
}

.blur4 {
    filter: blur(4px);
}

.preline {
    white-space: pre-line;
}


/*******FORM***********/
select {
    font-family: 'Poppins';
    font-size: 14px;
    background: transparent;
    border: none;
    outline: none;
    display: inline-block;
    cursor: pointer;
    padding-right: 26px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0 !important;
    width: 98% !important;
    height: 35px;
    color: inherit;
    padding-left: 2px;
    -webkit-padding-start: 2px;
}

.select.pad0 select {
    position: absolute;
    top: 0
}

.select.pad0 {
    height: 30px !important
}

select.pad0 {
    padding: 0px !important;
}

select::-ms-expand {
    display: none;
}

select[readonly] {
    pointer-events: none;
}

.spinner {
    background: url("http://static.cruiseline.eu/images/spinner.png") no-repeat center center;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    select {
        padding-right: 25px
    }
}

label.select {
    position: relative;
    padding: 0;
    display: block;
    height: 35px;
    line-height: 35px
}

label.select.none {
    display: none
}

label.select::after {
    font-family: "Flaticon";
    content: "\f10b";
    color: #999;
    font-size: 18px;
    pointer-events: none;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0px;
    width: 24px;
    height: 35px;
    line-height: 33px;
    box-sizing: inherit;
}

.input::after, .check:not(.icon)::after, .textarea::after {
    box-sizing: inherit;
    font-size: 18px;
    line-height: 35px;
    height: 35px;
    pointer-events: none;
    position: absolute;
    right: 5px;
    text-align: center;
    top: 0;
    width: 24px;
    color: #999
}

.combo.after::after {
    box-sizing: inherit;
    font-size: 14px;
    line-height: 35px;
    height: 35px;
    pointer-events: none;
    position: absolute;
    left: 0;
    text-align: center;
    top: 0;
    width: 24px;
}

.combo.after.line30::after, .check:not(.icon).line30::after {
    line-height: 30px !important;
    height: 30px !important
}

label.select::before {
    background: transparent none repeat scroll 0 0;
    content: "";
    display: block;
    height: 35px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 24px;
    box-sizing: inherit;
}

label.select.pad0::after, label.select.pad0::before {
    height: 25px !important;
    line-height: 25px !important
}

option {
    padding: 5px 0;
    color: #575759 !important
}

option.orange {
    color: #fe6867 !important
}

option:nth-child(even) {
    background-color: #eee;
}

option:nth-child(odd) {
    background-color: #fff;
}

input, select {
    font-weight: 600
}

input[type=text], input[type=password], input[type=email], input[type=number], input[type="tel"], input[type="date"], button {
    font-family: 'Poppins';
    background-color: transparent;
    border: none;
    resize: none;
    font-size: 14px;
    text-align: inherit;
    padding-left: 5px;
    color: #575759;
}

input.font20 {
    font-size: 20px
}

.input.icon input {
    padding-right: 30px
}

input[type=submit] {
    border: none;
    resize: none;
}

input.orange {
    color: #fe6867
}

input.bleu {
    color: #6382A9
}

input.vert {
    color: #82B440
}

input.blanc {
    color: #fff
}

input.font12 {
    font-size: 12px;
    padding-left: 0
}

input.valide, select.valide {
    border: 1px solid #21c347 !important;
    position: relative;
}

/*.relative.valide:after {
    font-family: "Flaticon";
    content: "\f119";
    height: 20px;
    line-height: 20px;
    width: 20px;
    position: absolute;
    right: 5px;
    top: 12px;
    border-radius:20px;
    color:#21c347;
    text-align:center;
    font-size:11px;
    background-color: #fff;
    border: 1px solid #21c347 !important;
    z-index: 2;
}*/
.vide_champ_input {
    height: 20px;
    line-height: 20px;
    width: 20px;
    position: absolute;
    right: 5px;
    top: 17px;
    border-radius: 20px;
    /* color: #ff4000;*/
    text-align: center;
    font-size: 9px;
    background-color: #fff;
    /*border: 1px solid #ff4000 !important;*/
    z-index: 2;
    cursor: pointer;
}

.champ_error {
    color: #ff4000;
    border: 1px solid #ff4000 !important;
}

.champ_correct {
    color: #000;
    /*border: 1px solid #ff4000 !important;*/
}

/* Chrome, Safari, Edge */
input:-webkit-autofill {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    -webkit-text-fill-color: inherit !important; /* Utiliser la couleur par défaut du texte */
    background-color: inherit !important; /* Arrière-plan hérité */
    transition: background-color 0s ease-in-out 99999s; /* Empêche les transitions */
}

/* Firefox */
input:-moz-autofill {
    box-shadow: none !important;
    -moz-text-fill-color: inherit !important; /* Utiliser la couleur par défaut du texte */
    background-color: inherit !important;
}

/* Internet Explorer/Edge (anciennes versions) */
input:-ms-autofill {
    box-shadow: none !important;
    -ms-text-fill-color: inherit !important;
    background-color: inherit !important;
}

.check_input input {
    margin-top: 10px
}

.check_input select {
    padding-top: 5px;
    margin-top: 8px !important;
}

input::placeholder {
    visibility: hidden;
}

.placeholder-visible input::placeholder {
    visibility: visible !important;
}

input[type="tel"]::placeholder {
    visibility: visible;
}

input[type="date"] {
    -webkit-appearance: none; /* Pour Safari/Chrome */
    -moz-appearance: none; /* Pour Firefox */
    appearance: none; /* Standard */
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

textarea {
    border: none;
    resize: none;
    color: #575759;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Poppins';
    background-color: transparent;
    padding: 10px 0 0 5px;
}

input[type=file] {
    padding: 3px 0 3px 2px;
    resize: none;
    border-radius: 5px
}

input[type=submit] {
    border: none;
}

input[readonly=readonly], input[readonly=readonly]:focus {
    background-color: transparent;
    color: #999 !important;
    cursor: no-drop;
    -moz-user-select: -moz-none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -o-user-select: none;
    user-select: none
}

button {
    color: inherit;
}

*:focus {
    outline: none;
}

.select.disabled, .ms-choice.disabled {
    background-color: #eee;
}

.select.ed {
    width: calc(100% - 40px);
}

.input, .check:not(.icon), .combo {
    position: relative;
    height: 35px;
    line-height: 35px
}

.textarea {
    position: relative;
}

.check:not(.icon).line30, .combo.line30 {
    line-height: 30px !important;
    height: 30px !important
}


.placeholder, .placeholder_date {
    top: 0;
    border-radius: 5px;
    height: 46px;
    line-height: 46px;
    font-size: 14px;
    background-color: #fff;
    -webkit-transition: 0.3s ease 0s;
    -moz-transition: 0.3s ease 0s;
    -o-transition: 0.3s ease 0s;
    -ms-transition: 0.3s ease 0s;
    transition: 0.3s ease 0s;
    font-weight: 400;
    padding-left: 5px;
}

.placeholder.active, .placeholder_date.active {
    z-index: 2;
    top: 3px;
    line-height: 15px;
    height: 15px;
    font-size: 13px;
    background-color: transparent;
    font-weight: 400;
    color: inherit;
}

.placeholder.active.rouge {
    color: #F44336
}

.placeholder_date:after {
    position: absolute;
    content: "";
    right: 0;
    top: 15px;
    width: 25px;
    height: 20px;
    background-color: #fff;
    z-index: 2;
}

.input.blanc .placeholder.active, .select.blanc .placeholder.active {
    color: #fff
}

.input.rouge {
    color: #F44336 !important
}

.iti.iti--allow-dropdown.iti--show-flags {
    top: 5px
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    opacity: 0.5;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    opacity: 0.5;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    opacity: 0.5;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    opacity: 0.5;
}

/*******POPUP***********/
.popup, .pop {
    margin: 0 auto;
    width: 100%
}

#popupContact, #popupImg, #blocContact {
    background: #222;
    bottom: 0;
    display: none;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 2;
    opacity: 0.7
}

#popupContenu {
    background: #fff;
    box-shadow: 0 3px 10px 0 #222;
    display: none;;
    position: fixed;
    z-index: 2;
    border-radius: 5px
}

#popContent {
    box-shadow: 0 3px 10px 0 #222;
    border-radius: 5px
}

#popupLoad {
    background: rgba(255, 255, 255, 0.8) url("https://static.cruiseline.eu/images/gfx/loader_n.gif") no-repeat scroll center center;
    bottom: 0;
    display: none;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
}

#popupBlanc {
    background-color: rgba(255, 255, 255, 0.7);
    bottom: 0;
    display: none;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 2;
}

.loading {
    background-image: url("https://static.cruiseline.eu/images/gfx/loader_n.gif");
    background-position: center center;
    background-repeat: no-repeat;
}

.loadingb {
    background-image: url("https://static.cruiseline.eu/images/gfx/loader.gif");
    background-position: center center;
    background-repeat: no-repeat;
}

.loader {
    background-image: url("https://static.cruiseline.eu/images/gfx/loading.gif");
    background-position: center center;
    background-repeat: no-repeat;
}

.loaderR {
    background-image: url("https://static.cruiseline.eu/images/gfx/loading.gif");
    background-position: right center;
    background-repeat: no-repeat;
}


/***********BLOCK****************/
.bloc3 {
    margin-left: 5%
}

.bloc4 {
    margin-left: 4%
}

.bloc4.w235P {
    margin-left: 2%
}

.bloc5 {
    margin-left: 2.5%
}

.bloc3:nth-child(3n+1), .bloc4:nth-child(4n+1), .bloc42:nth-child(4n+1), .bloc5:nth-child(5n+1) {
    margin-left: 0 !important
}

.canvasjs-chart-credit {
    display: none !important
}

.box:before {
    padding-top: 50%
}


/**********ALT****************/
.altg:not(.absolute):not(.fixed), .altd:not(.absolute):not(.fixed), .alth:not(.absolute):not(.fixed), .altb:not(.absolute):not(.fixed) {
    position: relative
}

.altg::before, .altd::before, .alth::before, .altb::before, .altg::after, .altd::after, .alth::after, .altb::after {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.1s ease 0s;
    -moz-transition: 0.1s ease 0s;
    -o-transition: 0.1s ease 0s;
    -ms-transition: 0.1s ease 0s;
    transition: 0.1s ease 0s;
}

.altg:hover::before, .altd:hover::before, .alth:hover::before, .altb:hover::before, .altg:hover::after, .altd:hover::after, .alth:hover::after, .altb:hover::after,
.altg.visible::before, .altd.visible::before, .alth.visible::before, .altb.visible::before, .altg.visible::after, .altd.visible::after, .alth.visible::after, .altb.visible::after {
    opacity: 1;
    visibility: visible;
}

.altg::after, .altd::after, .alth::after, .altb::after {
    z-index: 999;
}

.altg::before, .altd::before, .alth::before, .altb::before {
    background-color: #FD3F26; /*#6382A9*/
    color: #fff;
    content: attr(data-alt);
    font-size: 12px;
    font-weight: 700;
    height: 30px;
    line-height: 30px;
    position: absolute;
    text-align: left;
    white-space: nowrap;
    z-index: 999;
    padding: 0 10px;
    font-family: 'Poppins', 'helvetica', sans-serif;
}

.altg::after {
    border-bottom: 7px solid transparent;
    border-left: 7px solid #FD3F26; /*#6382A9*/
    border-top: 7px solid transparent;
    content: " ";
    height: 0;
    left: -10px !important;
    position: absolute;
    top: calc(50% - 7px);
    width: 0;
}

.altd::after {
    border-bottom: 7px solid transparent;
    border-right: 7px solid #FD3F26; /*#6382A9*/
    border-top: 7px solid transparent;
    content: " ";
    height: 0;
    right: -10px !important;
    position: absolute;
    top: calc(50% - 7px);
    width: 0;
}

.altb::after {
    border-left: 7px solid rgba(0, 0, 0, 0);
    border-right: 7px solid rgba(0, 0, 0, 0);
    border-bottom: 7px solid #FD3F26; /*#6382A9*/
    bottom: -10px;
    content: " ";
    height: 0;
    left: calc(50% - 7px);
    position: absolute;
    width: 0;
    top: inherit;
}

.alth::after {
    border-left: 7px solid rgba(0, 0, 0, 0);
    border-right: 7px solid rgba(0, 0, 0, 0);
    border-top: 7px solid #FD3F26; /*#6382A9*/
    top: -10px;
    content: " ";
    height: 0;
    left: calc(50% - 7px);
    position: absolute;
    width: 0;
}

.altd[data-alt]::before {
    top: calc(50% - 15px);
    left: calc(100% + 10px);
}

.altg[data-alt]::before {
    top: calc(50% - 15px);
    right: calc(100% + 10px);
}

.altb[data-alt]::before {
    bottom: -40px;
    left: calc(50% - 15px);
}

.alth[data-alt]::before {
    top: -40px;
    left: calc(50% - 15px);
}

.altb.gauche[data-alt]::before, .alth.gauche[alt]::before {
    right: 0 !important;
    left: inherit
}

.altb.droite[data-alt]::before, .alth.droite[alt]::before {
    left: 0 !important;
    right: inherit
}

.altb.droite::after {
    left: 10px !important
}

.compte, .count {
    counter-increment: myIndex;
}

.compte:before, .count:before {
    content: counter(myIndex);
}

.slidedown.icon:not(.absolute), .slide.icon:not(.absolute) {
    position: relative;
    padding-left: 30px;
}

.slidedown.icon:not(.absolute):after, .slide.icon:not(.absolute):after {
    position: absolute;
    left: 5px;
    top: 0;
}

.slidedown.droite.icon:not(.absolute), .slide.droite.icon:not(.absolute) {
    position: relative;
    padding-right: 30px;
    padding-left: 0px;
}

.slidedown.droite.icon:not(.absolute):after, .slide.droite.icon:not(.absolute):after {
    position: absolute;
    right: 5px;
    top: 0;
    left: inherit
}

.draggable {
    box-shadow: 0 0 0 5px #0099cc
}

@keyframes sonarVertFonce {
    0% {
        box-shadow: 0 0 0 0 rgba(43, 176, 74, 1);
    }
    100% {
        box-shadow: 0 0 0 10px rgba(43, 176, 74, 0);
    }
}

.legende.sonarVertFonce {
    animation: 1.5s linear 0s normal none infinite running sonarVertFonce;
    background-color: rgba(201, 246, 69, 0) !important;
}

@keyframes sonarBleu {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 153, 204, 1);
    }
    100% {
        box-shadow: 0 0 0 10px rgba(0, 153, 204, 0);
    }
}

.legende.sonarBleu {
    animation: 1.5s linear 0s normal none infinite running sonarBleu;
}

@keyframes sonar {
    0% {
        color: transparent;
    }
    20% {
        box-shadow: 0 0 0 0 rgba(234, 20, 138, 1);
        color: #fff;
    }
    75% {
        box-shadow: 0 0 0 20px rgba(234, 20, 138, 0);
        color: #fff;
    }
    90% {
        color: #fff;
    }
    100% {
        color: transparent;
    }
}

@keyframes sonarAfter {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    20% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    90% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}


@keyframes sonarVignette {
    0% {
        box-shadow: 0 0 0 0 rgba(234, 20, 138, 1);
    }
    100% {
        box-shadow: 0 0 0 10px rgba(234, 20, 138, 0);
    }
}

.vignette.sonar, .legende.sonar {
    border-radius: 10px;
    animation: 1.5s linear 0s normal none infinite running sonarVignette;
    background-color: rgba(234, 20, 138, 0) !important;
}

@keyframes valideVignette {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 153, 204, 1);
    }
    100% {
        box-shadow: 0 0 0 10px rgba(0, 153, 204, 0);
    }
}

.vignette.valide {
    border-radius: 10px;
    animation: 1.5s linear 0s normal none infinite running valideVignette;
    background-color: rgba(68, 194, 96, 0) !important;
}

@keyframes activeVignette {
    0% {
        box-shadow: 0 0 0 0 rgba(68, 194, 96, 1);
    }
    100% {
        box-shadow: 0 0 0 10px rgba(68, 194, 96, 0);
    }
}

.vignette.active {
    border-radius: 10px;
    animation: 1.5s linear 0s normal none infinite running activeVignette;
    background-color: rgba(0, 153, 204, 0) !important;
}

.area.dispo.sonar {
    background: rgba(234, 20, 138, 1);
    color: #fff;
}

.area.dispo.sonar::before {
    background: rgba(234, 20, 138, 0.8);
}

.area.dispo.sonar::before, .area.dispo.sonar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: ripple 1.5s linear infinite 0s;
    z-index: -1;
}

.area.dispo.sonar::after {
    animation: ripple 1s linear infinite 0.5s;
}

@keyframes ripple {
    0% {
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        opacity: 1
    }

    100% {
        top: -16px;
        right: -16px;
        bottom: -16px;
        left: -16px;
        opacity: 0
    }
}

.area.active, .legende.active {
    box-shadow: 0 0 0 3px #44C260;
    background-color: #44C260 !important;
    color: #fff !important
}

.area.valide, .legende.valide {
    box-shadow: 0px 0px 0px 3px #0099cc;
    background-color: #0099cc !important;
    color: #fff !important
}

.area.active:before, .area.valide:before, .legende.active:before, .legende.valide:before {
    left: -3px;
    top: -3px;
    content: " ";
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    position: absolute;
    box-shadow: 0 0px 20px 5px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

#pop_pont:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #fff transparent;
    left: 12px;
    top: -10px;
    z-index: 1;
}

#pop_pont:after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 12px 12px 12px;
    border-color: transparent transparent #0099cc transparent;
    left: 10px;
    top: -14px;
    z-index: 0;
}

#pop_pont {
    border: 2px solid #0099cc
}

.tiny * {
    font-family: 'Poppins', sans-serif !important;
    font-size: 12px !important;
    line-height: 18px !important;
}

.tiny.forf li {
    list-style: none;
    position: relative;
    padding-left: 12px;
}

.tiny.forf li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-size:16px;
}

.black {
    color: #111
}

.bulle {
    border-radius: 20px;
    border-top-left-radius: 0px;
    box-shadow: 0 0px 25px 0px rgba(0, 0, 0, 0.2)
}

.etoile:not(.icon).bleu {
    background: rgba(0, 0, 0, 0) url("https://static.cruiseline.eu/images/etoileBleu.png") repeat-x scroll left center;
}

.etoile:not(.icon).jaune {
    background: rgba(0, 0, 0, 0) url("https://static.cruiseline.eu/images/etoileJaune.png") repeat-x scroll left center;
}

.etoile:not(.icon).gris {
    background: rgba(0, 0, 0, 0) url("https://static.cruiseline.eu/images/etoileGris.png") repeat-x scroll left center;
}

.etoile:not(.icon) {
    background: rgba(0, 0, 0, 0) url("https://static.cruiseline.eu/images/etoile.png") repeat-x scroll left center;
    height: 10px;
    width: 50px;
}

.etoile.big.h15:not(.icon) {
    height: 15px;
    width: 75px;
}

.etoile.big.gris:not(.icon) {
    background: rgba(0, 0, 0, 0) url("https://static.cruiseline.eu/images/etoileBigGris.png") repeat-x scroll left center;
    background-size: contain;
}

.etoile.big.jaune:not(.icon) {
    background: rgba(0, 0, 0, 0) url("https://static.cruiseline.eu/images/etoileBigJaune.png") repeat-x scroll left center;
    background-size: contain;
}

.etoile.big.gccc:not(.icon) {
    background: rgba(0, 0, 0, 0) url("https://static.cruiseline.eu/images/etoileBigCcc.png") repeat-x scroll left center;
    background-size: contain;
}

.etoile.big.bleu:not(.icon) {
    background: rgba(0, 0, 0, 0) url("https://static.cruiseline.eu/images/etoileBigBleu.png") repeat-x scroll left center;
    background-size: contain;
}

.bleu-fonce {
    color: #182128;
}

.tunnel.info li > *::before {
    background-color: #182128;
    height: 30px;
    line-height: 30px;
    width: 30px;
}

.tunnel.info li::before {
    background-color: #182128;
    height: 2px;
    bottom: 15px;
}

.info-content {
    display: none;
    position: absolute;
    top: 25px;
    left: 90%;
    width: 600px;
    padding: 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.popup-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: white;
    padding: 50px 30px 20px;;
    width: 35%;;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    text-align: center;
}

.steps-container {
    display: flex;
    gap: 30px;
    max-width: 800px;
    margin: 20px auto;

}

.large {
    font-size: 1.5em;
}

.step-block {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #182128;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 35px;
    cursor: pointer;
    color: #7d7c7c;
}


/* Info icon styling */
.info-gray {
    cursor: pointer;
    color: #555;
}

.bandeau-new {
    position: absolute;
    top: 11px;
    right: -22px;
    transform: rotate(40deg);
    background-color: #92c5dd;
    color: #fff;
}


.step-title {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 12px;
    color: #182128;
}

.step-text {
    color: #182128;
    line-height: 1.6;
}

.info-container:hover .info-content {
    display: block;
}

/* Style for the container to position the content near the icon */
.info-container {
    position: relative;
    display: inline-block; /* Allows the info-content to float relative to the icon */
}

/* HTML: <div class="loader"></div> */
.loader {
    width: 120px;
    height: 20px;
    transform: skewX(-45deg);
    background: linear-gradient(#09c 0 0) left -30px top 0/30px 20px no-repeat #ccc;
    animation: l3 1s infinite linear;
}

@keyframes l3 {
    100% {
        background-position: right -30px top 0
    }
}

.iti {
    width: 100%;
}


/*************SWITCH****************/
.switch {
    background-color: white;
    background-image: linear-gradient(to bottom, #e0e0e0, white 25px);
    border-radius: 18px;
    box-shadow: 0 -1px white inset, 0 1px 1px rgba(0, 0, 0, 0.05) inset;
    cursor: pointer;
}

.switch.disabled {
    cursor: default;
    filter: grayscale(1);
}

.curseur {
    background-color: #eceeef;
    border-radius: inherit;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15) inset, 0 0 3px rgba(0, 0, 0, 0.2) inset;
    height: inherit;
    font-family: "Flaticon";
}

.switch.off .curseur::before {
    opacity: 1
}

.switch.off .curseur::after {
    opacity: 0
}

.curseur {
    background-color: rgb(43, 176, 74) !important;
}


.switch.off .curseur {
    background-color: rgb(167, 167, 167) !important;
}

.curseur::after, .curseur::before {
    line-height: 1;
    margin-top: -0.45em;
    position: absolute;
    top: 50%;
    -webkit-transition: 0.2s ease 0s;
    -moz-transition: 0.2s ease 0s;
    -o-transition: 0.2s ease 0s;
    -ms-transition: 0.2s ease 0s;
    transition: 0.2s ease 0s;
    text-align: center;
    width: 60%
}

.point {
    background: white linear-gradient(to bottom, white 40%, #f0f0f0) repeat scroll 0 0;
    border-radius: 10px;
    box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
    height: calc(100% - 3px);
    left: calc(65% - 2px);
    position: absolute;
    top: 2px;
    width: 35%;
}

.switch.off .point {
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    left: 2px !important;
    right: 100%
}


@media (max-width: 700px) {

    .popup-content {
        width: 80%; /* Smaller width on mobile */
        max-width: 350px;
        padding: 10px;
    }

    .steps-container {
        padding: 0;
        gap: 10px;
    }

    .step-block {
        width: 100%;
        margin-bottom: 10px;
    }

    .step-title {
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 12px;
        color: #182128;
    }

    .step-text {
        color: #182128;
        font-size: 10px;
    }

    .close-btn {
        top: 1%;
        right: 2%;
        font-size: 20px;
    }
}

@media (max-width: 1024px) {

    .popup-content {
        width: 90%; /* Smaller width on mobile */
    }
}

input.iti__search-input {
    border: 1px solid #ccc !important;
    padding: 8px;
    font-size: 12px;
}

/* Style du texte de placeholder */
input.iti__search-input::placeholder {
    color: #888 !important;
}

/* Compatibilité avec anciens navigateurs */
input.iti__search-input::-webkit-input-placeholder {
    color: #888 !important;
}

input.iti__search-input:-ms-input-placeholder {
    color: #888 !important;
}

input.iti__search-input::-ms-input-placeholder {
    color: #888 !important;
}

/* Badge recommandé */
.badge {
    position: absolute;
    top: -12px;
    left: 5px;
    background-color: #dff5e9;
    color: #00c272;
    padding: 3px 6px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 8px;
}

.badge_mobile {
    position: absolute;
    top: -16px;
    left: 5px;
    background-color: #dff5e9;
    color: #00c272;
    padding: 2px 2px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 8px;
}

.option {
    border: 1px solid #ccc;
    border-left: 4px solid #494848;
    border-radius: 8px;
    flex: 1;
    /* padding: 20px;*/
    position: relative;
    background-color: #fff;
    transition: border-left 0.3s ease;
}

.option.selected {
    border-left: 4px solid #00c272; /* Bord gauche vert */
    box-shadow: 0 0 8px rgba(0, 194, 114, 0.1);
}

.option.active {
    border-left: 4px solid #00c272; /* Bord gauche vert */
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.txt_virgule{
    position: relative;
    margin-right: 9px;
}
.txt_virgule:last-child {
    margin-right: 0;
}
.txt_virgule:not(:last-child)::after {
    content: ",";
    position: absolute;
    right: -4px;
}

.grayButton{
    background-color: #918e8e !important;
    color: #373535 !important;
}
